
    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_bf9770ad65bc2a26626c5afb.woff2')format("woff");}.ff1_c00000{font-family:ff1_c00000;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00000;src:url('chunks/assets/font_80e54e867933fa345138115b.woff2')format("woff");}.ff2_c00000{font-family:ff2_c00000;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00000;src:url('chunks/assets/font_10a3df50442e2f45511b35e4.woff2')format("woff");}.ff3_c00000{font-family:ff3_c00000;line-height:1.070312;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00000{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00000{vertical-align:0.000000px;}
.ls0_c00000{letter-spacing:0.000000px;}
.sc__c00000{text-shadow:none;}
.sc0_c00000{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00000{-webkit-text-stroke:0px transparent;}
.sc0_c00000{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00000{word-spacing:0.000000px;}
._2_c00000{margin-left:-1.094824px;}
._0_c00000{width:1.055110px;}
._1_c00000{width:2.499671px;}
.fc0_c00000{color:rgb(0,0,0);}
.fs1_c00000{font-size:84.240000px;}
.fs0_c00000{font-size:95.760000px;}
.y0_c00000{bottom:0.000000px;}
.y14_c00000{bottom:195.330000px;}
.y13_c00000{bottom:237.810000px;}
.y12_c00000{bottom:282.990000px;}
.y11_c00000{bottom:328.170000px;}
.y10_c00000{bottom:373.575000px;}
.yf_c00000{bottom:418.755000px;}
.ye_c00000{bottom:463.935000px;}
.yd_c00000{bottom:509.115000px;}
.yc_c00000{bottom:556.635000px;}
.yb_c00000{bottom:607.065000px;}
.ya_c00000{bottom:657.465000px;}
.y9_c00000{bottom:707.865000px;}
.y8_c00000{bottom:758.265000px;}
.y7_c00000{bottom:808.665000px;}
.y6_c00000{bottom:859.065000px;}
.y5_c00000{bottom:909.510000px;}
.y4_c00000{bottom:959.909400px;}
.y3_c00000{bottom:1001.309400px;}
.y2_c00000{bottom:1042.710000px;}
.y1_c00000{bottom:1093.110000px;}
.h3_c00000{height:61.329023px;}
.h2_c00000{height:69.715898px;}
.h4_c00000{height:72.434883px;}
.h0_c00000{height:1262.880000px;}
.h1_c00000{height:1263.000000px;}
.w0_c00000{width:892.980000px;}
.w1_c00000{width:893.250000px;}
.x0_c00000{left:0.000000px;}
.x9_c00000{left:128.555850px;}
.x2_c00000{left:141.876000px;}
.x8_c00000{left:173.190000px;}
.x3_c00000{left:192.629850px;}
.x7_c00000{left:239.295000px;}
.x4_c00000{left:243.795150px;}
.x1_c00000{left:259.275000px;}
.xa_c00000{left:275.115000px;}
.xe_c00000{left:281.055000px;}
.x6_c00000{left:355.935000px;}
.xb_c00000{left:377.895000px;}
.xd_c00000{left:395.535000px;}
.xc_c00000{left:406.545000px;}
.x5_c00000{left:425.265000px;}
@media print{
.v0_c00000{vertical-align:0.000000pt;}
.ls0_c00000{letter-spacing:0.000000pt;}
.ws0_c00000{word-spacing:0.000000pt;}
._2_c00000{margin-left:-0.973177pt;}
._0_c00000{width:0.937876pt;}
._1_c00000{width:2.221929pt;}
.fs1_c00000{font-size:74.880000pt;}
.fs0_c00000{font-size:85.120000pt;}
.y0_c00000{bottom:0.000000pt;}
.y14_c00000{bottom:173.626667pt;}
.y13_c00000{bottom:211.386667pt;}
.y12_c00000{bottom:251.546667pt;}
.y11_c00000{bottom:291.706667pt;}
.y10_c00000{bottom:332.066667pt;}
.yf_c00000{bottom:372.226667pt;}
.ye_c00000{bottom:412.386667pt;}
.yd_c00000{bottom:452.546667pt;}
.yc_c00000{bottom:494.786667pt;}
.yb_c00000{bottom:539.613333pt;}
.ya_c00000{bottom:584.413333pt;}
.y9_c00000{bottom:629.213333pt;}
.y8_c00000{bottom:674.013333pt;}
.y7_c00000{bottom:718.813333pt;}
.y6_c00000{bottom:763.613333pt;}
.y5_c00000{bottom:808.453333pt;}
.y4_c00000{bottom:853.252800pt;}
.y3_c00000{bottom:890.052800pt;}
.y2_c00000{bottom:926.853333pt;}
.y1_c00000{bottom:971.653333pt;}
.h3_c00000{height:54.514688pt;}
.h2_c00000{height:61.969688pt;}
.h4_c00000{height:64.386562pt;}
.h0_c00000{height:1122.560000pt;}
.h1_c00000{height:1122.666667pt;}
.w0_c00000{width:793.760000pt;}
.w1_c00000{width:794.000000pt;}
.x0_c00000{left:0.000000pt;}
.x9_c00000{left:114.271867pt;}
.x2_c00000{left:126.112000pt;}
.x8_c00000{left:153.946667pt;}
.x3_c00000{left:171.226533pt;}
.x7_c00000{left:212.706667pt;}
.x4_c00000{left:216.706800pt;}
.x1_c00000{left:230.466667pt;}
.xa_c00000{left:244.546667pt;}
.xe_c00000{left:249.826667pt;}
.x6_c00000{left:316.386667pt;}
.xb_c00000{left:335.906667pt;}
.xd_c00000{left:351.586667pt;}
.xc_c00000{left:361.373333pt;}
.x5_c00000{left:378.013333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2a3b617eece928e45ae9505a.woff2')format("woff");}.ff1_c00001{font-family:ff1_c00001;line-height:1.070312;font-style:normal;font-weight:normal;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_68770d6310dea4b296be35ef.woff2')format("woff");}.ff2_c00001{font-family:ff2_c00001;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00001;src:url('chunks/assets/font_357b2f5eb882b9c84bebfacc.woff2')format("woff");}.ff3_c00001{font-family:ff3_c00001;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00001;src:url('chunks/assets/font_896862e55213dbbc897fb57f.woff2')format("woff");}.ff4_c00001{font-family:ff4_c00001;line-height:0.811035;font-style:normal;font-weight:normal;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_2c661173fbe578d4a1a8299a.woff2')format("woff");}.ff5_c00001{font-family:ff5_c00001;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00001{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00001{vertical-align:0.000000px;}
.ls0_c00001{letter-spacing:0.000000px;}
.sc__c00001{text-shadow:none;}
.sc0_c00001{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00001{-webkit-text-stroke:0px transparent;}
.sc0_c00001{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00001{word-spacing:-36.829440px;}
.ws0_c00001{word-spacing:-26.959680px;}
.ws2_c00001{word-spacing:0.000000px;}
._7_c00001{margin-left:-6.896558px;}
._5_c00001{margin-left:-5.415464px;}
._6_c00001{margin-left:-3.529394px;}
._0_c00001{margin-left:-1.481646px;}
._8_c00001{width:1.115276px;}
._f_c00001{width:3.047887px;}
._9_c00001{width:4.238366px;}
._a_c00001{width:5.351088px;}
._b_c00001{width:7.004040px;}
._3_c00001{width:8.014054px;}
._4_c00001{width:9.427910px;}
._c_c00001{width:10.730620px;}
._d_c00001{width:11.883437px;}
._e_c00001{width:13.144891px;}
._17_c00001{width:14.205289px;}
._18_c00001{width:15.425451px;}
._19_c00001{width:16.553812px;}
._14_c00001{width:20.482932px;}
._13_c00001{width:21.544148px;}
._11_c00001{width:24.116168px;}
._10_c00001{width:25.369872px;}
._12_c00001{width:39.706184px;}
._16_c00001{width:58.641149px;}
._15_c00001{width:59.642942px;}
._2_c00001{width:149.344042px;}
._1_c00001{width:1972.084032px;}
.fc0_c00001{color:rgb(0,0,0);}
.fs0_c00001{font-size:66.240000px;}
.fs1_c00001{font-size:84.240000px;}
.y0_c00001{bottom:0.000000px;}
.y2d_c00001{bottom:143.316450px;}
.y2c_c00001{bottom:164.370300px;}
.y2b_c00001{bottom:185.250150px;}
.y2a_c00001{bottom:206.309850px;}
.y29_c00001{bottom:227.370150px;}
.y28_c00001{bottom:248.250000px;}
.y27_c00001{bottom:269.309700px;}
.y26_c00001{bottom:290.370000px;}
.y25_c00001{bottom:320.250000px;}
.y24_c00001{bottom:341.354850px;}
.y23_c00001{bottom:362.415150px;}
.y22_c00001{bottom:383.295000px;}
.y21_c00001{bottom:404.354700px;}
.y20_c00001{bottom:425.415000px;}
.y1f_c00001{bottom:455.295000px;}
.y1e_c00001{bottom:476.354700px;}
.y1d_c00001{bottom:497.415000px;}
.y1c_c00001{bottom:518.294850px;}
.y1b_c00001{bottom:539.355150px;}
.y1a_c00001{bottom:560.415450px;}
.y19_c00001{bottom:581.295300px;}
.y18_c00001{bottom:602.355000px;}
.y17_c00001{bottom:632.445600px;}
.y16_c00001{bottom:653.325450px;}
.y15_c00001{bottom:674.385150px;}
.y14_c00001{bottom:695.445450px;}
.y13_c00001{bottom:716.325300px;}
.y12_c00001{bottom:737.385000px;}
.y11_c00001{bottom:767.445450px;}
.y10_c00001{bottom:788.325300px;}
.yf_c00001{bottom:809.385600px;}
.ye_c00001{bottom:830.445300px;}
.yd_c00001{bottom:851.325150px;}
.yc_c00001{bottom:872.430000px;}
.yb_c00001{bottom:902.490750px;}
.ya_c00001{bottom:923.370600px;}
.y9_c00001{bottom:944.430300px;}
.y8_c00001{bottom:965.490600px;}
.y7_c00001{bottom:986.370450px;}
.y6_c00001{bottom:1007.430150px;}
.y5_c00001{bottom:1028.490450px;}
.y4_c00001{bottom:1049.370300px;}
.y3_c00001{bottom:1070.430000px;}
.y2_c00001{bottom:1109.310000px;}
.y1_c00001{bottom:1185.300000px;}
.h2_c00001{height:56.957344px;}
.h3_c00001{height:61.329023px;}
.h0_c00001{height:1262.880000px;}
.h1_c00001{height:1263.000000px;}
.w0_c00001{width:892.980000px;}
.w1_c00001{width:893.250000px;}
.x0_c00001{left:0.000000px;}
.x1_c00001{left:127.655850px;}
.x2_c00001{left:148.896150px;}
@media print{
.v0_c00001{vertical-align:0.000000pt;}
.ls0_c00001{letter-spacing:0.000000pt;}
.ws1_c00001{word-spacing:-32.737280pt;}
.ws0_c00001{word-spacing:-23.964160pt;}
.ws2_c00001{word-spacing:0.000000pt;}
._7_c00001{margin-left:-6.130274pt;}
._5_c00001{margin-left:-4.813746pt;}
._6_c00001{margin-left:-3.137239pt;}
._0_c00001{margin-left:-1.317018pt;}
._8_c00001{width:0.991356pt;}
._f_c00001{width:2.709233pt;}
._9_c00001{width:3.767437pt;}
._a_c00001{width:4.756522pt;}
._b_c00001{width:6.225813pt;}
._3_c00001{width:7.123603pt;}
._4_c00001{width:8.380364pt;}
._c_c00001{width:9.538329pt;}
._d_c00001{width:10.563055pt;}
._e_c00001{width:11.684348pt;}
._17_c00001{width:12.626923pt;}
._18_c00001{width:13.711512pt;}
._19_c00001{width:14.714500pt;}
._14_c00001{width:18.207050pt;}
._13_c00001{width:19.150354pt;}
._11_c00001{width:21.436594pt;}
._10_c00001{width:22.550998pt;}
._12_c00001{width:35.294386pt;}
._16_c00001{width:52.125465pt;}
._15_c00001{width:53.015948pt;}
._2_c00001{width:132.750259pt;}
._1_c00001{width:1752.963584pt;}
.fs0_c00001{font-size:58.880000pt;}
.fs1_c00001{font-size:74.880000pt;}
.y0_c00001{bottom:0.000000pt;}
.y2d_c00001{bottom:127.392400pt;}
.y2c_c00001{bottom:146.106933pt;}
.y2b_c00001{bottom:164.666800pt;}
.y2a_c00001{bottom:183.386533pt;}
.y29_c00001{bottom:202.106800pt;}
.y28_c00001{bottom:220.666667pt;}
.y27_c00001{bottom:239.386400pt;}
.y26_c00001{bottom:258.106667pt;}
.y25_c00001{bottom:284.666667pt;}
.y24_c00001{bottom:303.426533pt;}
.y23_c00001{bottom:322.146800pt;}
.y22_c00001{bottom:340.706667pt;}
.y21_c00001{bottom:359.426400pt;}
.y20_c00001{bottom:378.146667pt;}
.y1f_c00001{bottom:404.706667pt;}
.y1e_c00001{bottom:423.426400pt;}
.y1d_c00001{bottom:442.146667pt;}
.y1c_c00001{bottom:460.706533pt;}
.y1b_c00001{bottom:479.426800pt;}
.y1a_c00001{bottom:498.147067pt;}
.y19_c00001{bottom:516.706933pt;}
.y18_c00001{bottom:535.426667pt;}
.y17_c00001{bottom:562.173867pt;}
.y16_c00001{bottom:580.733733pt;}
.y15_c00001{bottom:599.453467pt;}
.y14_c00001{bottom:618.173733pt;}
.y13_c00001{bottom:636.733600pt;}
.y12_c00001{bottom:655.453333pt;}
.y11_c00001{bottom:682.173733pt;}
.y10_c00001{bottom:700.733600pt;}
.yf_c00001{bottom:719.453867pt;}
.ye_c00001{bottom:738.173600pt;}
.yd_c00001{bottom:756.733467pt;}
.yc_c00001{bottom:775.493333pt;}
.yb_c00001{bottom:802.214000pt;}
.ya_c00001{bottom:820.773867pt;}
.y9_c00001{bottom:839.493600pt;}
.y8_c00001{bottom:858.213867pt;}
.y7_c00001{bottom:876.773733pt;}
.y6_c00001{bottom:895.493467pt;}
.y5_c00001{bottom:914.213733pt;}
.y4_c00001{bottom:932.773600pt;}
.y3_c00001{bottom:951.493333pt;}
.y2_c00001{bottom:986.053333pt;}
.y1_c00001{bottom:1053.600000pt;}
.h2_c00001{height:50.628750pt;}
.h3_c00001{height:54.514688pt;}
.h0_c00001{height:1122.560000pt;}
.h1_c00001{height:1122.666667pt;}
.w0_c00001{width:793.760000pt;}
.w1_c00001{width:794.000000pt;}
.x0_c00001{left:0.000000pt;}
.x1_c00001{left:113.471867pt;}
.x2_c00001{left:132.352133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9875586a09908d936c48fc98.woff2')format("woff");}.ff1_c00002{font-family:ff1_c00002;line-height:1.070312;font-style:normal;font-weight:normal;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_a8f79ccbd34021ddebd73c86.woff2')format("woff");}.ff2_c00002{font-family:ff2_c00002;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00002;src:url('chunks/assets/font_896862e55213dbbc897fb57f.woff2')format("woff");}.ff3_c00002{font-family:ff3_c00002;line-height:0.811035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00002{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00002{vertical-align:0.000000px;}
.ls1_c00002{letter-spacing:0.000000px;}
.ls0_c00002{letter-spacing:0.400320px;}
.sc__c00002{text-shadow:none;}
.sc0_c00002{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00002{-webkit-text-stroke:0px transparent;}
.sc0_c00002{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00002{word-spacing:-26.959680px;}
.ws1_c00002{word-spacing:0.000000px;}
._a_c00002{margin-left:-4.721383px;}
._2_c00002{margin-left:-3.179592px;}
._d_c00002{margin-left:-2.040742px;}
._0_c00002{margin-left:-1.039867px;}
._6_c00002{width:1.106457px;}
._3_c00002{width:2.317857px;}
._8_c00002{width:3.577682px;}
._9_c00002{width:4.839252px;}
._c_c00002{width:5.858960px;}
._12_c00002{width:7.200846px;}
._7_c00002{width:8.280213px;}
._5_c00002{width:9.516141px;}
._4_c00002{width:10.996900px;}
._13_c00002{width:12.517717px;}
._14_c00002{width:13.711283px;}
._e_c00002{width:14.772558px;}
._f_c00002{width:16.149015px;}
._10_c00002{width:20.866540px;}
._11_c00002{width:22.028833px;}
._b_c00002{width:31.644776px;}
._1_c00002{width:2459.703168px;}
.fc0_c00002{color:rgb(0,0,0);}
.fs0_c00002{font-size:66.240000px;}
.fs1_c00002{font-size:84.240000px;}
.y0_c00002{bottom:0.000000px;}
.y2a_c00002{bottom:215.310000px;}
.y29_c00002{bottom:236.370000px;}
.y28_c00002{bottom:257.250000px;}
.y27_c00002{bottom:278.310000px;}
.y26_c00002{bottom:299.370000px;}
.y25_c00002{bottom:320.250000px;}
.y24_c00002{bottom:341.355000px;}
.y23_c00002{bottom:362.415000px;}
.y22_c00002{bottom:392.295000px;}
.y21_c00002{bottom:413.355000px;}
.y20_c00002{bottom:434.415000px;}
.y1f_c00002{bottom:455.295000px;}
.y1e_c00002{bottom:476.355000px;}
.y1d_c00002{bottom:497.415000px;}
.y1c_c00002{bottom:527.295000px;}
.y1b_c00002{bottom:548.355000px;}
.y1a_c00002{bottom:569.415000px;}
.y19_c00002{bottom:590.295000px;}
.y18_c00002{bottom:611.385000px;}
.y17_c00002{bottom:632.445000px;}
.y16_c00002{bottom:662.325000px;}
.y15_c00002{bottom:683.385000px;}
.y14_c00002{bottom:704.445000px;}
.y13_c00002{bottom:725.325000px;}
.y12_c00002{bottom:746.385000px;}
.y11_c00002{bottom:776.445000px;}
.y10_c00002{bottom:797.325000px;}
.yf_c00002{bottom:818.385000px;}
.ye_c00002{bottom:839.445000px;}
.yd_c00002{bottom:860.325000px;}
.yc_c00002{bottom:881.430000px;}
.yb_c00002{bottom:911.490000px;}
.ya_c00002{bottom:932.370000px;}
.y9_c00002{bottom:953.430000px;}
.y8_c00002{bottom:974.490000px;}
.y7_c00002{bottom:995.370000px;}
.y6_c00002{bottom:1016.430000px;}
.y5_c00002{bottom:1037.490000px;}
.y4_c00002{bottom:1058.370000px;}
.y3_c00002{bottom:1079.430000px;}
.y2_c00002{bottom:1118.310000px;}
.y1_c00002{bottom:1185.300000px;}
.h2_c00002{height:56.957344px;}
.h3_c00002{height:61.329023px;}
.h0_c00002{height:1262.880000px;}
.h1_c00002{height:1263.000000px;}
.w0_c00002{width:892.980000px;}
.w1_c00002{width:893.250000px;}
.x0_c00002{left:0.000000px;}
.x1_c00002{left:127.647750px;}
.x2_c00002{left:148.896150px;}
.x3_c00002{left:191.550000px;}
@media print{
.v0_c00002{vertical-align:0.000000pt;}
.ls1_c00002{letter-spacing:0.000000pt;}
.ls0_c00002{letter-spacing:0.355840pt;}
.ws0_c00002{word-spacing:-23.964160pt;}
.ws1_c00002{word-spacing:0.000000pt;}
._a_c00002{margin-left:-4.196785pt;}
._2_c00002{margin-left:-2.826304pt;}
._d_c00002{margin-left:-1.813993pt;}
._0_c00002{margin-left:-0.924327pt;}
._6_c00002{width:0.983517pt;}
._3_c00002{width:2.060317pt;}
._8_c00002{width:3.180162pt;}
._9_c00002{width:4.301557pt;}
._c_c00002{width:5.207964pt;}
._12_c00002{width:6.400752pt;}
._7_c00002{width:7.360189pt;}
._5_c00002{width:8.458792pt;}
._4_c00002{width:9.775022pt;}
._13_c00002{width:11.126859pt;}
._14_c00002{width:12.187807pt;}
._e_c00002{width:13.131163pt;}
._f_c00002{width:14.354680pt;}
._10_c00002{width:18.548036pt;}
._11_c00002{width:19.581185pt;}
._b_c00002{width:28.128689pt;}
._1_c00002{width:2186.402816pt;}
.fs0_c00002{font-size:58.880000pt;}
.fs1_c00002{font-size:74.880000pt;}
.y0_c00002{bottom:0.000000pt;}
.y2a_c00002{bottom:191.386667pt;}
.y29_c00002{bottom:210.106667pt;}
.y28_c00002{bottom:228.666667pt;}
.y27_c00002{bottom:247.386667pt;}
.y26_c00002{bottom:266.106667pt;}
.y25_c00002{bottom:284.666667pt;}
.y24_c00002{bottom:303.426667pt;}
.y23_c00002{bottom:322.146667pt;}
.y22_c00002{bottom:348.706667pt;}
.y21_c00002{bottom:367.426667pt;}
.y20_c00002{bottom:386.146667pt;}
.y1f_c00002{bottom:404.706667pt;}
.y1e_c00002{bottom:423.426667pt;}
.y1d_c00002{bottom:442.146667pt;}
.y1c_c00002{bottom:468.706667pt;}
.y1b_c00002{bottom:487.426667pt;}
.y1a_c00002{bottom:506.146667pt;}
.y19_c00002{bottom:524.706667pt;}
.y18_c00002{bottom:543.453333pt;}
.y17_c00002{bottom:562.173333pt;}
.y16_c00002{bottom:588.733333pt;}
.y15_c00002{bottom:607.453333pt;}
.y14_c00002{bottom:626.173333pt;}
.y13_c00002{bottom:644.733333pt;}
.y12_c00002{bottom:663.453333pt;}
.y11_c00002{bottom:690.173333pt;}
.y10_c00002{bottom:708.733333pt;}
.yf_c00002{bottom:727.453333pt;}
.ye_c00002{bottom:746.173333pt;}
.yd_c00002{bottom:764.733333pt;}
.yc_c00002{bottom:783.493333pt;}
.yb_c00002{bottom:810.213333pt;}
.ya_c00002{bottom:828.773333pt;}
.y9_c00002{bottom:847.493333pt;}
.y8_c00002{bottom:866.213333pt;}
.y7_c00002{bottom:884.773333pt;}
.y6_c00002{bottom:903.493333pt;}
.y5_c00002{bottom:922.213333pt;}
.y4_c00002{bottom:940.773333pt;}
.y3_c00002{bottom:959.493333pt;}
.y2_c00002{bottom:994.053333pt;}
.y1_c00002{bottom:1053.600000pt;}
.h2_c00002{height:50.628750pt;}
.h3_c00002{height:54.514688pt;}
.h0_c00002{height:1122.560000pt;}
.h1_c00002{height:1122.666667pt;}
.w0_c00002{width:793.760000pt;}
.w1_c00002{width:794.000000pt;}
.x0_c00002{left:0.000000pt;}
.x1_c00002{left:113.464667pt;}
.x2_c00002{left:132.352133pt;}
.x3_c00002{left:170.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_565a8935673af41dffdeb2e4.woff2')format("woff");}.ff1_c00003{font-family:ff1_c00003;line-height:1.070312;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00003;src:url('chunks/assets/font_29330835aea547aff17629a7.woff2')format("woff");}.ff2_c00003{font-family:ff2_c00003;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00003;src:url('chunks/assets/font_3db4320c61638db3bf638bd8.woff2')format("woff");}.ff3_c00003{font-family:ff3_c00003;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00003{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00003{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00003{vertical-align:0.000000px;}
.ls5_c00003{letter-spacing:0.000000px;}
.ls0_c00003{letter-spacing:0.305420px;}
.ls3_c00003{letter-spacing:80.173800px;}
.ls2_c00003{letter-spacing:80.206200px;}
.ls1_c00003{letter-spacing:116.904600px;}
.ls4_c00003{letter-spacing:123.589200px;}
.sc__c00003{text-shadow:none;}
.sc0_c00003{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00003{-webkit-text-stroke:0px transparent;}
.sc0_c00003{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00003{word-spacing:-18.414720px;}
.ws1_c00003{word-spacing:0.000000px;}
._8_c00003{margin-left:-14.716204px;}
._9_c00003{margin-left:-12.629589px;}
._5_c00003{margin-left:-10.514159px;}
._7_c00003{margin-left:-8.914834px;}
._4_c00003{margin-left:-7.523595px;}
._3_c00003{margin-left:-5.883030px;}
._a_c00003{margin-left:-3.756500px;}
._0_c00003{margin-left:-1.124635px;}
._6_c00003{width:1.221680px;}
._2_c00003{width:131.343984px;}
._d_c00003{width:759.248502px;}
._e_c00003{width:1141.057627px;}
._b_c00003{width:1474.909430px;}
._11_c00003{width:1632.235723px;}
._12_c00003{width:1651.641264px;}
._10_c00003{width:1775.776233px;}
._f_c00003{width:1812.672978px;}
._c_c00003{width:1956.213875px;}
._1_c00003{width:2008.560368px;}
.fc0_c00003{color:rgb(0,0,0);}
.fs0_c00003{font-size:66.240000px;}
.fs2_c00003{font-size:72.000000px;}
.fs1_c00003{font-size:84.240000px;}
.y0_c00003{bottom:0.000000px;}
.y22_c00003{bottom:104.255850px;}
.y21_c00003{bottom:134.496150px;}
.y20_c00003{bottom:164.370000px;}
.y1f_c00003{bottom:203.250000px;}
.y1e_c00003{bottom:233.310000px;}
.y1d_c00003{bottom:263.370000px;}
.y1c_c00003{bottom:293.250000px;}
.y1b_c00003{bottom:323.310000px;}
.y1a_c00003{bottom:353.415000px;}
.y19_c00003{bottom:383.295000px;}
.y18_c00003{bottom:413.355000px;}
.y17_c00003{bottom:443.415000px;}
.y16_c00003{bottom:473.475000px;}
.y15_c00003{bottom:503.355000px;}
.y14_c00003{bottom:542.415000px;}
.y13_c00003{bottom:572.295000px;}
.y12_c00003{bottom:602.355000px;}
.y11_c00003{bottom:632.445000px;}
.y10_c00003{bottom:662.325000px;}
.yf_c00003{bottom:692.385000px;}
.ye_c00003{bottom:722.445000px;}
.yd_c00003{bottom:752.325000px;}
.yc_c00003{bottom:791.385000px;}
.yb_c00003{bottom:821.445000px;}
.ya_c00003{bottom:851.325000px;}
.y9_c00003{bottom:890.430000px;}
.y8_c00003{bottom:929.490000px;}
.y7_c00003{bottom:959.370000px;}
.y6_c00003{bottom:989.430000px;}
.y5_c00003{bottom:1019.490000px;}
.y4_c00003{bottom:1049.370000px;}
.y3_c00003{bottom:1079.610000px;}
.y2_c00003{bottom:1118.310000px;}
.y1_c00003{bottom:1185.300000px;}
.h4_c00003{height:51.679688px;}
.h2_c00003{height:56.957344px;}
.h3_c00003{height:61.329023px;}
.h0_c00003{height:1262.880000px;}
.h1_c00003{height:1263.000000px;}
.w0_c00003{width:892.980000px;}
.w1_c00003{width:893.250000px;}
.x0_c00003{left:0.000000px;}
.x1_c00003{left:127.655850px;}
.x2_c00003{left:170.130000px;}
.x3_c00003{left:182.010000px;}
@media print{
.v0_c00003{vertical-align:0.000000pt;}
.ls5_c00003{letter-spacing:0.000000pt;}
.ls0_c00003{letter-spacing:0.271484pt;}
.ls3_c00003{letter-spacing:71.265600pt;}
.ls2_c00003{letter-spacing:71.294400pt;}
.ls1_c00003{letter-spacing:103.915200pt;}
.ls4_c00003{letter-spacing:109.857067pt;}
.ws0_c00003{word-spacing:-16.368640pt;}
.ws1_c00003{word-spacing:0.000000pt;}
._8_c00003{margin-left:-13.081070pt;}
._9_c00003{margin-left:-11.226302pt;}
._5_c00003{margin-left:-9.345919pt;}
._7_c00003{margin-left:-7.924296pt;}
._4_c00003{margin-left:-6.687640pt;}
._3_c00003{margin-left:-5.229360pt;}
._a_c00003{margin-left:-3.339111pt;}
._0_c00003{margin-left:-0.999675pt;}
._6_c00003{width:1.085938pt;}
._2_c00003{width:116.750208pt;}
._d_c00003{width:674.887557pt;}
._e_c00003{width:1014.273446pt;}
._b_c00003{width:1311.030604pt;}
._11_c00003{width:1450.876198pt;}
._12_c00003{width:1468.125568pt;}
._10_c00003{width:1578.467762pt;}
._f_c00003{width:1611.264870pt;}
._c_c00003{width:1738.856777pt;}
._1_c00003{width:1785.386994pt;}
.fs0_c00003{font-size:58.880000pt;}
.fs2_c00003{font-size:64.000000pt;}
.fs1_c00003{font-size:74.880000pt;}
.y0_c00003{bottom:0.000000pt;}
.y22_c00003{bottom:92.671867pt;}
.y21_c00003{bottom:119.552133pt;}
.y20_c00003{bottom:146.106667pt;}
.y1f_c00003{bottom:180.666667pt;}
.y1e_c00003{bottom:207.386667pt;}
.y1d_c00003{bottom:234.106667pt;}
.y1c_c00003{bottom:260.666667pt;}
.y1b_c00003{bottom:287.386667pt;}
.y1a_c00003{bottom:314.146667pt;}
.y19_c00003{bottom:340.706667pt;}
.y18_c00003{bottom:367.426667pt;}
.y17_c00003{bottom:394.146667pt;}
.y16_c00003{bottom:420.866667pt;}
.y15_c00003{bottom:447.426667pt;}
.y14_c00003{bottom:482.146667pt;}
.y13_c00003{bottom:508.706667pt;}
.y12_c00003{bottom:535.426667pt;}
.y11_c00003{bottom:562.173333pt;}
.y10_c00003{bottom:588.733333pt;}
.yf_c00003{bottom:615.453333pt;}
.ye_c00003{bottom:642.173333pt;}
.yd_c00003{bottom:668.733333pt;}
.yc_c00003{bottom:703.453333pt;}
.yb_c00003{bottom:730.173333pt;}
.ya_c00003{bottom:756.733333pt;}
.y9_c00003{bottom:791.493333pt;}
.y8_c00003{bottom:826.213333pt;}
.y7_c00003{bottom:852.773333pt;}
.y6_c00003{bottom:879.493333pt;}
.y5_c00003{bottom:906.213333pt;}
.y4_c00003{bottom:932.773333pt;}
.y3_c00003{bottom:959.653333pt;}
.y2_c00003{bottom:994.053333pt;}
.y1_c00003{bottom:1053.600000pt;}
.h4_c00003{height:45.937500pt;}
.h2_c00003{height:50.628750pt;}
.h3_c00003{height:54.514688pt;}
.h0_c00003{height:1122.560000pt;}
.h1_c00003{height:1122.666667pt;}
.w0_c00003{width:793.760000pt;}
.w1_c00003{width:794.000000pt;}
.x0_c00003{left:0.000000pt;}
.x1_c00003{left:113.471867pt;}
.x2_c00003{left:151.226667pt;}
.x3_c00003{left:161.786667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_256f01ab920ebaad97cb6e5e.woff2')format("woff");}.ff1_c00004{font-family:ff1_c00004;line-height:1.070312;font-style:normal;font-weight:normal;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_3db4320c61638db3bf638bd8.woff2')format("woff");}.ff2_c00004{font-family:ff2_c00004;line-height:0.895996;font-style:normal;font-weight:normal;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_6345bea729cd2a4b895853aa.woff2')format("woff");}.ff3_c00004{font-family:ff3_c00004;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00004{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00004{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1_c00004{vertical-align:-5.760936px;}
.v0_c00004{vertical-align:0.000000px;}
.ls7_c00004{letter-spacing:0.000000px;}
.ls4_c00004{letter-spacing:0.305420px;}
.ls2_c00004{letter-spacing:80.173800px;}
.ls5_c00004{letter-spacing:80.206200px;}
.ls3_c00004{letter-spacing:116.904600px;}
.ls1_c00004{letter-spacing:123.556800px;}
.ls0_c00004{letter-spacing:123.589200px;}
.ls6_c00004{letter-spacing:845.885280px;}
.sc__c00004{text-shadow:none;}
.sc0_c00004{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00004{-webkit-text-stroke:0px transparent;}
.sc0_c00004{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00004{word-spacing:-18.414720px;}
.ws1_c00004{word-spacing:-11.609280px;}
.ws2_c00004{word-spacing:0.000000px;}
._11_c00004{margin-left:-17.293924px;}
._f_c00004{margin-left:-15.942627px;}
._e_c00004{margin-left:-14.635370px;}
._c_c00004{margin-left:-11.906722px;}
._12_c00004{margin-left:-10.131832px;}
._10_c00004{margin-left:-8.926853px;}
._6_c00004{margin-left:-7.008985px;}
._d_c00004{margin-left:-5.280051px;}
._8_c00004{margin-left:-3.440975px;}
._13_c00004{margin-left:-2.288936px;}
._0_c00004{margin-left:-1.124635px;}
._7_c00004{width:1.221680px;}
._9_c00004{width:418.112929px;}
._a_c00004{width:425.642106px;}
._5_c00004{width:759.347118px;}
._2_c00004{width:857.681451px;}
._4_c00004{width:1214.720282px;}
._3_c00004{width:1273.603407px;}
._b_c00004{width:1390.434978px;}
._1_c00004{width:2139.596336px;}
.fc0_c00004{color:rgb(0,0,0);}
.fs2_c00004{font-size:41.760000px;}
.fs0_c00004{font-size:66.240000px;}
.fs1_c00004{font-size:72.000000px;}
.fs3_c00004{font-size:84.240000px;}
.y0_c00004{bottom:0.000000px;}
.y20_c00004{bottom:179.310000px;}
.y1f_c00004{bottom:230.250000px;}
.y1e_c00004{bottom:260.310000px;}
.y1d_c00004{bottom:290.370000px;}
.y1c_c00004{bottom:320.250000px;}
.y1b_c00004{bottom:350.535000px;}
.y1a_c00004{bottom:380.415000px;}
.y19_c00004{bottom:419.295000px;}
.y18_c00004{bottom:449.355000px;}
.y17_c00004{bottom:479.415000px;}
.y16_c00004{bottom:509.475000px;}
.y15_c00004{bottom:539.355000px;}
.y14_c00004{bottom:578.415000px;}
.y13_c00004{bottom:608.325000px;}
.y12_c00004{bottom:638.565150px;}
.y11_c00004{bottom:659.445000px;}
.y10_c00004{bottom:689.325000px;}
.yf_c00004{bottom:719.385000px;}
.ye_c00004{bottom:749.445000px;}
.yd_c00004{bottom:779.325000px;}
.yc_c00004{bottom:809.385000px;}
.yb_c00004{bottom:839.445000px;}
.ya_c00004{bottom:869.325000px;}
.y9_c00004{bottom:899.430000px;}
.y8_c00004{bottom:929.490000px;}
.y7_c00004{bottom:959.370000px;}
.y6_c00004{bottom:998.430000px;}
.y5_c00004{bottom:1028.490000px;}
.y4_c00004{bottom:1058.370000px;}
.y3_c00004{bottom:1088.430000px;}
.y2_c00004{bottom:1118.490000px;}
.y1_c00004{bottom:1185.300000px;}
.h3_c00004{height:51.679688px;}
.h2_c00004{height:56.957344px;}
.h4_c00004{height:61.329023px;}
.h0_c00004{height:1262.880000px;}
.h1_c00004{height:1263.000000px;}
.w0_c00004{width:892.980000px;}
.w1_c00004{width:893.250000px;}
.x0_c00004{left:0.000000px;}
.x1_c00004{left:127.655850px;}
.x3_c00004{left:170.130000px;}
.x2_c00004{left:182.010000px;}
.x5_c00004{left:191.550000px;}
.x4_c00004{left:217.109850px;}
@media print{
.v1_c00004{vertical-align:-5.120832pt;}
.v0_c00004{vertical-align:0.000000pt;}
.ls7_c00004{letter-spacing:0.000000pt;}
.ls4_c00004{letter-spacing:0.271484pt;}
.ls2_c00004{letter-spacing:71.265600pt;}
.ls5_c00004{letter-spacing:71.294400pt;}
.ls3_c00004{letter-spacing:103.915200pt;}
.ls1_c00004{letter-spacing:109.828267pt;}
.ls0_c00004{letter-spacing:109.857067pt;}
.ls6_c00004{letter-spacing:751.898027pt;}
.ws0_c00004{word-spacing:-16.368640pt;}
.ws1_c00004{word-spacing:-10.319360pt;}
.ws2_c00004{word-spacing:0.000000pt;}
._11_c00004{margin-left:-15.372377pt;}
._f_c00004{margin-left:-14.171224pt;}
._e_c00004{margin-left:-13.009217pt;}
._c_c00004{margin-left:-10.583753pt;}
._12_c00004{margin-left:-9.006073pt;}
._10_c00004{margin-left:-7.934980pt;}
._6_c00004{margin-left:-6.230209pt;}
._d_c00004{margin-left:-4.693379pt;}
._8_c00004{margin-left:-3.058645pt;}
._13_c00004{margin-left:-2.034609pt;}
._0_c00004{margin-left:-0.999675pt;}
._7_c00004{width:1.085938pt;}
._9_c00004{width:371.655936pt;}
._a_c00004{width:378.348539pt;}
._5_c00004{width:674.975216pt;}
._2_c00004{width:762.383512pt;}
._4_c00004{width:1079.751362pt;}
._3_c00004{width:1132.091917pt;}
._b_c00004{width:1235.942203pt;}
._1_c00004{width:1901.863410pt;}
.fs2_c00004{font-size:37.120000pt;}
.fs0_c00004{font-size:58.880000pt;}
.fs1_c00004{font-size:64.000000pt;}
.fs3_c00004{font-size:74.880000pt;}
.y0_c00004{bottom:0.000000pt;}
.y20_c00004{bottom:159.386667pt;}
.y1f_c00004{bottom:204.666667pt;}
.y1e_c00004{bottom:231.386667pt;}
.y1d_c00004{bottom:258.106667pt;}
.y1c_c00004{bottom:284.666667pt;}
.y1b_c00004{bottom:311.586667pt;}
.y1a_c00004{bottom:338.146667pt;}
.y19_c00004{bottom:372.706667pt;}
.y18_c00004{bottom:399.426667pt;}
.y17_c00004{bottom:426.146667pt;}
.y16_c00004{bottom:452.866667pt;}
.y15_c00004{bottom:479.426667pt;}
.y14_c00004{bottom:514.146667pt;}
.y13_c00004{bottom:540.733333pt;}
.y12_c00004{bottom:567.613467pt;}
.y11_c00004{bottom:586.173333pt;}
.y10_c00004{bottom:612.733333pt;}
.yf_c00004{bottom:639.453333pt;}
.ye_c00004{bottom:666.173333pt;}
.yd_c00004{bottom:692.733333pt;}
.yc_c00004{bottom:719.453333pt;}
.yb_c00004{bottom:746.173333pt;}
.ya_c00004{bottom:772.733333pt;}
.y9_c00004{bottom:799.493333pt;}
.y8_c00004{bottom:826.213333pt;}
.y7_c00004{bottom:852.773333pt;}
.y6_c00004{bottom:887.493333pt;}
.y5_c00004{bottom:914.213333pt;}
.y4_c00004{bottom:940.773333pt;}
.y3_c00004{bottom:967.493333pt;}
.y2_c00004{bottom:994.213333pt;}
.y1_c00004{bottom:1053.600000pt;}
.h3_c00004{height:45.937500pt;}
.h2_c00004{height:50.628750pt;}
.h4_c00004{height:54.514688pt;}
.h0_c00004{height:1122.560000pt;}
.h1_c00004{height:1122.666667pt;}
.w0_c00004{width:793.760000pt;}
.w1_c00004{width:794.000000pt;}
.x0_c00004{left:0.000000pt;}
.x1_c00004{left:113.471867pt;}
.x3_c00004{left:151.226667pt;}
.x2_c00004{left:161.786667pt;}
.x5_c00004{left:170.266667pt;}
.x4_c00004{left:192.986533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d2db95c5d75adf6b7c7eeaac.woff2')format("woff");}.ff1_c00005{font-family:ff1_c00005;line-height:1.070312;font-style:normal;font-weight:normal;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_73b77b365103940f28bf3417.woff2')format("woff");}.ff2_c00005{font-family:ff2_c00005;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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);}
.v1_c00005{vertical-align:-5.760936px;}
.v0_c00005{vertical-align:0.000000px;}
.ls2_c00005{letter-spacing:0.000000px;}
.ls0_c00005{letter-spacing:0.516600px;}
.ls1_c00005{letter-spacing:0.542400px;}
.sc__c00005{text-shadow:none;}
.sc0_c00005{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00005{-webkit-text-stroke:0px transparent;}
.sc0_c00005{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00005{word-spacing:-18.414720px;}
.ws1_c00005{word-spacing:-11.609280px;}
.ws2_c00005{word-spacing:0.000000px;}
._0_c00005{margin-left:-1.358863px;}
._12_c00005{width:1.648918px;}
._11_c00005{width:280.346670px;}
._1f_c00005{width:498.815624px;}
._c_c00005{width:609.995828px;}
._d_c00005{width:848.553696px;}
._17_c00005{width:1120.270461px;}
._21_c00005{width:1121.739260px;}
._18_c00005{width:1127.470749px;}
._1a_c00005{width:1179.428424px;}
._a_c00005{width:1237.998877px;}
._1b_c00005{width:1259.161084px;}
._19_c00005{width:1260.876648px;}
._5_c00005{width:1380.914220px;}
._15_c00005{width:1392.537561px;}
._3_c00005{width:1427.263104px;}
._16_c00005{width:1491.173926px;}
._4_c00005{width:1494.512928px;}
._7_c00005{width:1552.837248px;}
._1c_c00005{width:1586.616126px;}
._1e_c00005{width:1590.187625px;}
._2_c00005{width:1645.775003px;}
._22_c00005{width:1674.457463px;}
._9_c00005{width:1728.590136px;}
._b_c00005{width:1784.855570px;}
._6_c00005{width:1821.837382px;}
._10_c00005{width:1828.581545px;}
._1d_c00005{width:1862.002640px;}
._1_c00005{width:1967.258567px;}
._13_c00005{width:1983.005802px;}
._f_c00005{width:2053.066438px;}
._20_c00005{width:2074.710515px;}
._14_c00005{width:2159.476635px;}
._8_c00005{width:2190.391944px;}
._e_c00005{width:2298.747443px;}
.fc0_c00005{color:rgb(0,0,0);}
.fs2_c00005{font-size:41.760000px;}
.fs0_c00005{font-size:66.240000px;}
.fs1_c00005{font-size:84.240000px;}
.y0_c00005{bottom:0.000000px;}
.y27_c00005{bottom:92.555850px;}
.y26_c00005{bottom:120.635700px;}
.y25_c00005{bottom:148.535700px;}
.y24_c00005{bottom:176.610000px;}
.y23_c00005{bottom:204.510000px;}
.y22_c00005{bottom:232.410000px;}
.y21_c00005{bottom:260.490000px;}
.y20_c00005{bottom:288.390000px;}
.y1f_c00005{bottom:316.470000px;}
.y1e_c00005{bottom:344.415000px;}
.y1d_c00005{bottom:372.315000px;}
.y1c_c00005{bottom:400.395000px;}
.y1b_c00005{bottom:428.295000px;}
.y1a_c00005{bottom:456.375000px;}
.y19_c00005{bottom:484.275000px;}
.y18_c00005{bottom:512.175000px;}
.y17_c00005{bottom:540.255000px;}
.y16_c00005{bottom:568.155000px;}
.y15_c00005{bottom:596.235000px;}
.y14_c00005{bottom:624.165000px;}
.y13_c00005{bottom:652.065000px;}
.y12_c00005{bottom:680.145000px;}
.y11_c00005{bottom:708.045000px;}
.y10_c00005{bottom:736.125000px;}
.yf_c00005{bottom:764.025000px;}
.ye_c00005{bottom:792.105000px;}
.yd_c00005{bottom:820.005000px;}
.yc_c00005{bottom:847.905000px;}
.yb_c00005{bottom:876.030000px;}
.ya_c00005{bottom:903.930000px;}
.y9_c00005{bottom:932.010000px;}
.y8_c00005{bottom:959.910000px;}
.y7_c00005{bottom:987.810000px;}
.y6_c00005{bottom:1015.890000px;}
.y5_c00005{bottom:1043.790000px;}
.y4_c00005{bottom:1071.870000px;}
.y3_c00005{bottom:1118.310000px;}
.y2_c00005{bottom:1155.060000px;}
.y1_c00005{bottom:1185.300000px;}
.h2_c00005{height:56.957344px;}
.h3_c00005{height:61.329023px;}
.h0_c00005{height:1262.880000px;}
.h1_c00005{height:1263.000000px;}
.w0_c00005{width:892.980000px;}
.w1_c00005{width:893.250000px;}
.x0_c00005{left:0.000000px;}
.x1_c00005{left:127.647750px;}
.x2_c00005{left:478.185000px;}
@media print{
.v1_c00005{vertical-align:-5.120832pt;}
.v0_c00005{vertical-align:0.000000pt;}
.ls2_c00005{letter-spacing:0.000000pt;}
.ls0_c00005{letter-spacing:0.459200pt;}
.ls1_c00005{letter-spacing:0.482133pt;}
.ws0_c00005{word-spacing:-16.368640pt;}
.ws1_c00005{word-spacing:-10.319360pt;}
.ws2_c00005{word-spacing:0.000000pt;}
._0_c00005{margin-left:-1.207878pt;}
._12_c00005{width:1.465705pt;}
._11_c00005{width:249.197040pt;}
._1f_c00005{width:443.391665pt;}
._c_c00005{width:542.218513pt;}
._d_c00005{width:754.269952pt;}
._17_c00005{width:995.795965pt;}
._21_c00005{width:997.101564pt;}
._18_c00005{width:1002.196221pt;}
._1a_c00005{width:1048.380821pt;}
._a_c00005{width:1100.443446pt;}
._1b_c00005{width:1119.254297pt;}
._19_c00005{width:1120.779243pt;}
._5_c00005{width:1227.479306pt;}
._15_c00005{width:1237.811165pt;}
._3_c00005{width:1268.678315pt;}
._16_c00005{width:1325.487934pt;}
._4_c00005{width:1328.455936pt;}
._7_c00005{width:1380.299776pt;}
._1c_c00005{width:1410.325445pt;}
._1e_c00005{width:1413.500111pt;}
._2_c00005{width:1462.911114pt;}
._22_c00005{width:1488.406634pt;}
._9_c00005{width:1536.524565pt;}
._b_c00005{width:1586.538284pt;}
._6_c00005{width:1619.411006pt;}
._10_c00005{width:1625.405818pt;}
._1d_c00005{width:1655.113458pt;}
._1_c00005{width:1748.674282pt;}
._13_c00005{width:1762.671824pt;}
._f_c00005{width:1824.947945pt;}
._20_c00005{width:1844.187125pt;}
._14_c00005{width:1919.534787pt;}
._8_c00005{width:1947.015061pt;}
._e_c00005{width:2043.331061pt;}
.fs2_c00005{font-size:37.120000pt;}
.fs0_c00005{font-size:58.880000pt;}
.fs1_c00005{font-size:74.880000pt;}
.y0_c00005{bottom:0.000000pt;}
.y27_c00005{bottom:82.271867pt;}
.y26_c00005{bottom:107.231733pt;}
.y25_c00005{bottom:132.031733pt;}
.y24_c00005{bottom:156.986667pt;}
.y23_c00005{bottom:181.786667pt;}
.y22_c00005{bottom:206.586667pt;}
.y21_c00005{bottom:231.546667pt;}
.y20_c00005{bottom:256.346667pt;}
.y1f_c00005{bottom:281.306667pt;}
.y1e_c00005{bottom:306.146667pt;}
.y1d_c00005{bottom:330.946667pt;}
.y1c_c00005{bottom:355.906667pt;}
.y1b_c00005{bottom:380.706667pt;}
.y1a_c00005{bottom:405.666667pt;}
.y19_c00005{bottom:430.466667pt;}
.y18_c00005{bottom:455.266667pt;}
.y17_c00005{bottom:480.226667pt;}
.y16_c00005{bottom:505.026667pt;}
.y15_c00005{bottom:529.986667pt;}
.y14_c00005{bottom:554.813333pt;}
.y13_c00005{bottom:579.613333pt;}
.y12_c00005{bottom:604.573333pt;}
.y11_c00005{bottom:629.373333pt;}
.y10_c00005{bottom:654.333333pt;}
.yf_c00005{bottom:679.133333pt;}
.ye_c00005{bottom:704.093333pt;}
.yd_c00005{bottom:728.893333pt;}
.yc_c00005{bottom:753.693333pt;}
.yb_c00005{bottom:778.693333pt;}
.ya_c00005{bottom:803.493333pt;}
.y9_c00005{bottom:828.453333pt;}
.y8_c00005{bottom:853.253333pt;}
.y7_c00005{bottom:878.053333pt;}
.y6_c00005{bottom:903.013333pt;}
.y5_c00005{bottom:927.813333pt;}
.y4_c00005{bottom:952.773333pt;}
.y3_c00005{bottom:994.053333pt;}
.y2_c00005{bottom:1026.720000pt;}
.y1_c00005{bottom:1053.600000pt;}
.h2_c00005{height:50.628750pt;}
.h3_c00005{height:54.514688pt;}
.h0_c00005{height:1122.560000pt;}
.h1_c00005{height:1122.666667pt;}
.w0_c00005{width:793.760000pt;}
.w1_c00005{width:794.000000pt;}
.x0_c00005{left:0.000000pt;}
.x1_c00005{left:113.464667pt;}
.x2_c00005{left:425.053333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_371fdb44711f4093e2755069.woff2')format("woff");}.ff1_c00006{font-family:ff1_c00006;line-height:1.070312;font-style:normal;font-weight:normal;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_2c661173fbe578d4a1a8299a.woff2')format("woff");}.ff2_c00006{font-family:ff2_c00006;line-height:0.938965;font-style: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);}
.v1_c00006{vertical-align:-5.760936px;}
.v0_c00006{vertical-align:0.000000px;}
.ls1_c00006{letter-spacing:0.000000px;}
.ls0_c00006{letter-spacing:0.542400px;}
.sc__c00006{text-shadow:none;}
.sc0_c00006{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00006{-webkit-text-stroke:0px transparent;}
.sc0_c00006{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00006{word-spacing:-36.829440px;}
.ws0_c00006{word-spacing:-18.414720px;}
.ws1_c00006{word-spacing:-11.609280px;}
.ws3_c00006{word-spacing:0.000000px;}
._0_c00006{margin-left:-1.358863px;}
._1a_c00006{width:1.050585px;}
._11_c00006{width:54.578816px;}
._f_c00006{width:139.642254px;}
._21_c00006{width:143.823594px;}
._12_c00006{width:146.465914px;}
._b_c00006{width:302.708484px;}
._a_c00006{width:441.646335px;}
._19_c00006{width:636.068689px;}
._9_c00006{width:717.364580px;}
._22_c00006{width:845.739072px;}
._10_c00006{width:1007.294422px;}
._18_c00006{width:1293.243801px;}
._13_c00006{width:1324.272694px;}
._17_c00006{width:1393.440648px;}
._4_c00006{width:1488.013489px;}
._3_c00006{width:1542.191185px;}
._1d_c00006{width:1597.134177px;}
._1e_c00006{width:1627.506706px;}
._16_c00006{width:1635.011794px;}
._d_c00006{width:1671.050269px;}
._7_c00006{width:1722.474953px;}
._14_c00006{width:1726.758615px;}
._5_c00006{width:1770.893252px;}
._1b_c00006{width:1825.087437px;}
._e_c00006{width:1832.376672px;}
._c_c00006{width:1947.253270px;}
._1_c00006{width:1959.342887px;}
._20_c00006{width:2020.211118px;}
._1f_c00006{width:2027.258769px;}
._8_c00006{width:2076.598248px;}
._2_c00006{width:2089.485195px;}
._1c_c00006{width:2133.752848px;}
._15_c00006{width:2177.888777px;}
._6_c00006{width:2190.694848px;}
.fc0_c00006{color:rgb(0,0,0);}
.fs1_c00006{font-size:41.760000px;}
.fs0_c00006{font-size:66.240000px;}
.y0_c00006{bottom:0.000000px;}
.y26_c00006{bottom:176.070000px;}
.y25_c00006{bottom:197.130000px;}
.y24_c00006{bottom:227.190150px;}
.y23_c00006{bottom:248.070000px;}
.y22_c00006{bottom:278.130000px;}
.y21_c00006{bottom:307.470000px;}
.y20_c00006{bottom:335.370000px;}
.y1f_c00006{bottom:363.495000px;}
.y1e_c00006{bottom:391.395000px;}
.y1d_c00006{bottom:419.475000px;}
.y1c_c00006{bottom:447.375000px;}
.y1b_c00006{bottom:475.275000px;}
.y1a_c00006{bottom:503.355000px;}
.y19_c00006{bottom:531.255000px;}
.y18_c00006{bottom:559.335000px;}
.y17_c00006{bottom:587.235000px;}
.y16_c00006{bottom:615.345000px;}
.y15_c00006{bottom:643.245000px;}
.y14_c00006{bottom:671.145000px;}
.y13_c00006{bottom:699.225000px;}
.y12_c00006{bottom:718.125000px;}
.y11_c00006{bottom:746.205000px;}
.y10_c00006{bottom:765.105000px;}
.yf_c00006{bottom:793.005000px;}
.ye_c00006{bottom:821.085000px;}
.yd_c00006{bottom:848.984550px;}
.yc_c00006{bottom:868.065000px;}
.yb_c00006{bottom:896.010000px;}
.ya_c00006{bottom:923.910000px;}
.y9_c00006{bottom:951.990000px;}
.y8_c00006{bottom:979.890000px;}
.y7_c00006{bottom:1007.970000px;}
.y6_c00006{bottom:1035.870000px;}
.y5_c00006{bottom:1063.770000px;}
.y4_c00006{bottom:1091.850000px;}
.y3_c00006{bottom:1119.750000px;}
.y2_c00006{bottom:1155.060000px;}
.y1_c00006{bottom:1185.300000px;}
.h2_c00006{height:56.957344px;}
.h0_c00006{height:1262.880000px;}
.h1_c00006{height:1263.000000px;}
.w0_c00006{width:892.980000px;}
.w1_c00006{width:893.250000px;}
.x0_c00006{left:0.000000px;}
.x1_c00006{left:127.647750px;}
.x3_c00006{left:180.750000px;}
.x5_c00006{left:190.650000px;}
.x4_c00006{left:247.034880px;}
.x2_c00006{left:478.185000px;}
@media print{
.v1_c00006{vertical-align:-5.120832pt;}
.v0_c00006{vertical-align:0.000000pt;}
.ls1_c00006{letter-spacing:0.000000pt;}
.ls0_c00006{letter-spacing:0.482133pt;}
.ws2_c00006{word-spacing:-32.737280pt;}
.ws0_c00006{word-spacing:-16.368640pt;}
.ws1_c00006{word-spacing:-10.319360pt;}
.ws3_c00006{word-spacing:0.000000pt;}
._0_c00006{margin-left:-1.207878pt;}
._1a_c00006{width:0.933853pt;}
._11_c00006{width:48.514503pt;}
._f_c00006{width:124.126448pt;}
._21_c00006{width:127.843195pt;}
._12_c00006{width:130.191923pt;}
._b_c00006{width:269.074208pt;}
._a_c00006{width:392.574520pt;}
._19_c00006{width:565.394390pt;}
._9_c00006{width:637.657404pt;}
._22_c00006{width:751.768064pt;}
._10_c00006{width:895.372820pt;}
._18_c00006{width:1149.550046pt;}
._13_c00006{width:1177.131284pt;}
._17_c00006{width:1238.613909pt;}
._4_c00006{width:1322.678657pt;}
._3_c00006{width:1370.836609pt;}
._1d_c00006{width:1419.674824pt;}
._1e_c00006{width:1446.672628pt;}
._16_c00006{width:1453.343817pt;}
._d_c00006{width:1485.378016pt;}
._7_c00006{width:1531.088847pt;}
._14_c00006{width:1534.896547pt;}
._5_c00006{width:1574.127335pt;}
._1b_c00006{width:1622.299944pt;}
._e_c00006{width:1628.779264pt;}
._c_c00006{width:1730.891796pt;}
._1_c00006{width:1741.638122pt;}
._20_c00006{width:1795.743216pt;}
._1f_c00006{width:1802.007795pt;}
._8_c00006{width:1845.865109pt;}
._2_c00006{width:1857.320173pt;}
._1c_c00006{width:1896.669198pt;}
._15_c00006{width:1935.901135pt;}
._6_c00006{width:1947.284309pt;}
.fs1_c00006{font-size:37.120000pt;}
.fs0_c00006{font-size:58.880000pt;}
.y0_c00006{bottom:0.000000pt;}
.y26_c00006{bottom:156.506667pt;}
.y25_c00006{bottom:175.226667pt;}
.y24_c00006{bottom:201.946800pt;}
.y23_c00006{bottom:220.506667pt;}
.y22_c00006{bottom:247.226667pt;}
.y21_c00006{bottom:273.306667pt;}
.y20_c00006{bottom:298.106667pt;}
.y1f_c00006{bottom:323.106667pt;}
.y1e_c00006{bottom:347.906667pt;}
.y1d_c00006{bottom:372.866667pt;}
.y1c_c00006{bottom:397.666667pt;}
.y1b_c00006{bottom:422.466667pt;}
.y1a_c00006{bottom:447.426667pt;}
.y19_c00006{bottom:472.226667pt;}
.y18_c00006{bottom:497.186667pt;}
.y17_c00006{bottom:521.986667pt;}
.y16_c00006{bottom:546.973333pt;}
.y15_c00006{bottom:571.773333pt;}
.y14_c00006{bottom:596.573333pt;}
.y13_c00006{bottom:621.533333pt;}
.y12_c00006{bottom:638.333333pt;}
.y11_c00006{bottom:663.293333pt;}
.y10_c00006{bottom:680.093333pt;}
.yf_c00006{bottom:704.893333pt;}
.ye_c00006{bottom:729.853333pt;}
.yd_c00006{bottom:754.652933pt;}
.yc_c00006{bottom:771.613333pt;}
.yb_c00006{bottom:796.453333pt;}
.ya_c00006{bottom:821.253333pt;}
.y9_c00006{bottom:846.213333pt;}
.y8_c00006{bottom:871.013333pt;}
.y7_c00006{bottom:895.973333pt;}
.y6_c00006{bottom:920.773333pt;}
.y5_c00006{bottom:945.573333pt;}
.y4_c00006{bottom:970.533333pt;}
.y3_c00006{bottom:995.333333pt;}
.y2_c00006{bottom:1026.720000pt;}
.y1_c00006{bottom:1053.600000pt;}
.h2_c00006{height:50.628750pt;}
.h0_c00006{height:1122.560000pt;}
.h1_c00006{height:1122.666667pt;}
.w0_c00006{width:793.760000pt;}
.w1_c00006{width:794.000000pt;}
.x0_c00006{left:0.000000pt;}
.x1_c00006{left:113.464667pt;}
.x3_c00006{left:160.666667pt;}
.x5_c00006{left:169.466667pt;}
.x4_c00006{left:219.586560pt;}
.x2_c00006{left:425.053333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8400886ec4e4480deee0c923.woff2')format("woff");}.ff1_c00007{font-family:ff1_c00007;line-height:1.070312;font-style:normal;font-weight:normal;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_19c08c8de707e111765788fc.woff2')format("woff");}.ff2_c00007{font-family:ff2_c00007;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00007;src:url('chunks/assets/font_3db4320c61638db3bf638bd8.woff2')format("woff");}.ff3_c00007{font-family:ff3_c00007;line-height:0.895996;font-style:normal;font-weight:normal;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_067529eeb3b4734f326960dd.woff2')format("woff");}.ff4_c00007{font-family:ff4_c00007;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00007{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00007{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00007{vertical-align:0.000000px;}
.ls6_c00007{letter-spacing:0.000000px;}
.ls2_c00007{letter-spacing:0.305274px;}
.ls5_c00007{letter-spacing:0.305420px;}
.ls4_c00007{letter-spacing:167.508600px;}
.ls3_c00007{letter-spacing:186.228000px;}
.ls0_c00007{letter-spacing:204.195600px;}
.ls1_c00007{letter-spacing:204.228000px;}
.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:-18.414720px;}
.ws1_c00007{word-spacing:-15.012000px;}
.ws2_c00007{word-spacing:0.000000px;}
._6_c00007{margin-left:-16.233350px;}
._d_c00007{margin-left:-13.524484px;}
._9_c00007{margin-left:-9.706535px;}
._8_c00007{margin-left:-8.106345px;}
._4_c00007{margin-left:-6.989571px;}
._e_c00007{margin-left:-4.261852px;}
._0_c00007{margin-left:-1.126186px;}
._5_c00007{width:1.221680px;}
._a_c00007{width:2.987448px;}
._b_c00007{width:4.018104px;}
._2_c00007{width:11.630437px;}
._c_c00007{width:16.228713px;}
._11_c00007{width:26.297458px;}
._3_c00007{width:39.413661px;}
._10_c00007{width:46.500485px;}
._7_c00007{width:51.274973px;}
._f_c00007{width:58.982425px;}
._1_c00007{width:2073.512103px;}
.fc0_c00007{color:rgb(0,0,0);}
.fs3_c00007{font-size:54.000000px;}
.fs0_c00007{font-size:66.240000px;}
.fs2_c00007{font-size:72.000000px;}
.fs1_c00007{font-size:84.240000px;}
.y0_c00007{bottom:0.000000px;}
.y2d_c00007{bottom:101.376000px;}
.y2c_c00007{bottom:122.255850px;}
.y2b_c00007{bottom:143.316150px;}
.y2a_c00007{bottom:164.370000px;}
.y29_c00007{bottom:194.249550px;}
.y28_c00007{bottom:215.309850px;}
.y27_c00007{bottom:236.370150px;}
.y26_c00007{bottom:257.250000px;}
.y25_c00007{bottom:287.310000px;}
.y24_c00007{bottom:308.370300px;}
.y23_c00007{bottom:329.250150px;}
.y22_c00007{bottom:350.355000px;}
.y21_c00007{bottom:380.414550px;}
.y20_c00007{bottom:401.294400px;}
.y1f_c00007{bottom:422.354700px;}
.y1e_c00007{bottom:443.415000px;}
.y1d_c00007{bottom:473.294550px;}
.y1c_c00007{bottom:494.354850px;}
.y1b_c00007{bottom:515.415150px;}
.y1a_c00007{bottom:536.295000px;}
.y19_c00007{bottom:566.355000px;}
.y18_c00007{bottom:587.415300px;}
.y17_c00007{bottom:608.325000px;}
.y16_c00007{bottom:638.385150px;}
.y15_c00007{bottom:659.445450px;}
.y14_c00007{bottom:680.325300px;}
.y13_c00007{bottom:701.385000px;}
.y12_c00007{bottom:731.444850px;}
.y11_c00007{bottom:752.324700px;}
.y10_c00007{bottom:773.385000px;}
.yf_c00007{bottom:803.445150px;}
.ye_c00007{bottom:824.325000px;}
.yd_c00007{bottom:854.385000px;}
.yc_c00007{bottom:884.490150px;}
.yb_c00007{bottom:905.370000px;}
.ya_c00007{bottom:935.429700px;}
.y9_c00007{bottom:956.490000px;}
.y8_c00007{bottom:986.370300px;}
.y7_c00007{bottom:1007.430000px;}
.y6_c00007{bottom:1037.490450px;}
.y5_c00007{bottom:1058.370300px;}
.y4_c00007{bottom:1079.430000px;}
.y3_c00007{bottom:1118.310000px;}
.y2_c00007{bottom:1155.060000px;}
.y1_c00007{bottom:1185.300000px;}
.h2_c00007{height:56.957344px;}
.h3_c00007{height:61.329023px;}
.h0_c00007{height:1262.880000px;}
.h1_c00007{height:1263.000000px;}
.w0_c00007{width:892.980000px;}
.w1_c00007{width:893.250000px;}
.x0_c00007{left:0.000000px;}
.x1_c00007{left:127.655850px;}
.x3_c00007{left:255.315293px;}
.x2_c00007{left:478.185000px;}
@media print{
.v0_c00007{vertical-align:0.000000pt;}
.ls6_c00007{letter-spacing:0.000000pt;}
.ls2_c00007{letter-spacing:0.271354pt;}
.ls5_c00007{letter-spacing:0.271484pt;}
.ls4_c00007{letter-spacing:148.896533pt;}
.ls3_c00007{letter-spacing:165.536000pt;}
.ls0_c00007{letter-spacing:181.507200pt;}
.ls1_c00007{letter-spacing:181.536000pt;}
.ws0_c00007{word-spacing:-16.368640pt;}
.ws1_c00007{word-spacing:-13.344000pt;}
.ws2_c00007{word-spacing:0.000000pt;}
._6_c00007{margin-left:-14.429644pt;}
._d_c00007{margin-left:-12.021764pt;}
._9_c00007{margin-left:-8.628031pt;}
._8_c00007{margin-left:-7.205640pt;}
._4_c00007{margin-left:-6.212952pt;}
._e_c00007{margin-left:-3.788313pt;}
._0_c00007{margin-left:-1.001054pt;}
._5_c00007{width:1.085938pt;}
._a_c00007{width:2.655509pt;}
._b_c00007{width:3.571648pt;}
._2_c00007{width:10.338166pt;}
._c_c00007{width:14.425523pt;}
._11_c00007{width:23.375518pt;}
._3_c00007{width:35.034365pt;}
._10_c00007{width:41.333765pt;}
._7_c00007{width:45.577754pt;}
._f_c00007{width:52.428823pt;}
._1_c00007{width:1843.121869pt;}
.fs3_c00007{font-size:48.000000pt;}
.fs0_c00007{font-size:58.880000pt;}
.fs2_c00007{font-size:64.000000pt;}
.fs1_c00007{font-size:74.880000pt;}
.y0_c00007{bottom:0.000000pt;}
.y2d_c00007{bottom:90.112000pt;}
.y2c_c00007{bottom:108.671867pt;}
.y2b_c00007{bottom:127.392133pt;}
.y2a_c00007{bottom:146.106667pt;}
.y29_c00007{bottom:172.666267pt;}
.y28_c00007{bottom:191.386533pt;}
.y27_c00007{bottom:210.106800pt;}
.y26_c00007{bottom:228.666667pt;}
.y25_c00007{bottom:255.386667pt;}
.y24_c00007{bottom:274.106933pt;}
.y23_c00007{bottom:292.666800pt;}
.y22_c00007{bottom:311.426667pt;}
.y21_c00007{bottom:338.146267pt;}
.y20_c00007{bottom:356.706133pt;}
.y1f_c00007{bottom:375.426400pt;}
.y1e_c00007{bottom:394.146667pt;}
.y1d_c00007{bottom:420.706267pt;}
.y1c_c00007{bottom:439.426533pt;}
.y1b_c00007{bottom:458.146800pt;}
.y1a_c00007{bottom:476.706667pt;}
.y19_c00007{bottom:503.426667pt;}
.y18_c00007{bottom:522.146933pt;}
.y17_c00007{bottom:540.733333pt;}
.y16_c00007{bottom:567.453467pt;}
.y15_c00007{bottom:586.173733pt;}
.y14_c00007{bottom:604.733600pt;}
.y13_c00007{bottom:623.453333pt;}
.y12_c00007{bottom:650.173200pt;}
.y11_c00007{bottom:668.733067pt;}
.y10_c00007{bottom:687.453333pt;}
.yf_c00007{bottom:714.173467pt;}
.ye_c00007{bottom:732.733333pt;}
.yd_c00007{bottom:759.453333pt;}
.yc_c00007{bottom:786.213467pt;}
.yb_c00007{bottom:804.773333pt;}
.ya_c00007{bottom:831.493067pt;}
.y9_c00007{bottom:850.213333pt;}
.y8_c00007{bottom:876.773600pt;}
.y7_c00007{bottom:895.493333pt;}
.y6_c00007{bottom:922.213733pt;}
.y5_c00007{bottom:940.773600pt;}
.y4_c00007{bottom:959.493333pt;}
.y3_c00007{bottom:994.053333pt;}
.y2_c00007{bottom:1026.720000pt;}
.y1_c00007{bottom:1053.600000pt;}
.h2_c00007{height:50.628750pt;}
.h3_c00007{height:54.514688pt;}
.h0_c00007{height:1122.560000pt;}
.h1_c00007{height:1122.666667pt;}
.w0_c00007{width:793.760000pt;}
.w1_c00007{width:794.000000pt;}
.x0_c00007{left:0.000000pt;}
.x1_c00007{left:113.471867pt;}
.x3_c00007{left:226.946927pt;}
.x2_c00007{left:425.053333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bd48b33d3315975454aaf943.woff2')format("woff");}.ff1_c00008{font-family:ff1_c00008;line-height:1.070312;font-style:normal;font-weight:normal;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_3db4320c61638db3bf638bd8.woff2')format("woff");}.ff2_c00008{font-family:ff2_c00008;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00008{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00008{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1_c00008{vertical-align:-5.758596px;}
.v0_c00008{vertical-align:0.000000px;}
.ls4_c00008{letter-spacing:0.000000px;}
.ls3_c00008{letter-spacing:0.107520px;}
.ls2_c00008{letter-spacing:0.305420px;}
.ls1_c00008{letter-spacing:149.508600px;}
.ls0_c00008{letter-spacing:167.508600px;}
.sc__c00008{text-shadow:none;}
.sc0_c00008{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00008{-webkit-text-stroke:0px transparent;}
.sc0_c00008{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00008{word-spacing:-18.414720px;}
.ws1_c00008{word-spacing:-15.012000px;}
.ws2_c00008{word-spacing:-11.609280px;}
.ws3_c00008{word-spacing:0.000000px;}
._17_c00008{margin-left:-15.093528px;}
._b_c00008{margin-left:-13.524484px;}
._e_c00008{margin-left:-10.339611px;}
._5_c00008{margin-left:-8.477569px;}
._9_c00008{margin-left:-7.213459px;}
._7_c00008{margin-left:-6.185197px;}
._c_c00008{margin-left:-4.261852px;}
._11_c00008{margin-left:-2.738222px;}
._0_c00008{margin-left:-1.126186px;}
._6_c00008{width:1.221680px;}
._16_c00008{width:4.268827px;}
._8_c00008{width:6.159968px;}
._14_c00008{width:7.911810px;}
._10_c00008{width:10.069470px;}
._d_c00008{width:11.488677px;}
._15_c00008{width:14.468900px;}
._a_c00008{width:16.228713px;}
._13_c00008{width:20.099308px;}
._4_c00008{width:26.297458px;}
._f_c00008{width:32.354767px;}
._12_c00008{width:37.389140px;}
._3_c00008{width:46.500485px;}
._2_c00008{width:58.982425px;}
._1_c00008{width:2054.792679px;}
.fc0_c00008{color:rgb(0,0,0);}
.fs3_c00008{font-size:41.760000px;}
.fs2_c00008{font-size:54.000000px;}
.fs0_c00008{font-size:66.240000px;}
.fs1_c00008{font-size:72.000000px;}
.y0_c00008{bottom:0.000000px;}
.y2c_c00008{bottom:131.256150px;}
.y2b_c00008{bottom:152.310000px;}
.y2a_c00008{bottom:182.370450px;}
.y29_c00008{bottom:203.250300px;}
.y28_c00008{bottom:224.310000px;}
.y27_c00008{bottom:254.370150px;}
.y26_c00008{bottom:275.250000px;}
.y25_c00008{bottom:305.309700px;}
.y24_c00008{bottom:326.370000px;}
.y23_c00008{bottom:356.295300px;}
.y22_c00008{bottom:377.355000px;}
.y21_c00008{bottom:407.415150px;}
.y20_c00008{bottom:428.295000px;}
.y1f_c00008{bottom:458.354700px;}
.y1e_c00008{bottom:479.415000px;}
.y1d_c00008{bottom:509.295300px;}
.y1c_c00008{bottom:530.355000px;}
.y1b_c00008{bottom:560.415150px;}
.y1a_c00008{bottom:581.295000px;}
.y19_c00008{bottom:611.384850px;}
.y18_c00008{bottom:632.445150px;}
.y17_c00008{bottom:653.325000px;}
.y16_c00008{bottom:683.385150px;}
.y15_c00008{bottom:704.445450px;}
.y14_c00008{bottom:725.325300px;}
.y13_c00008{bottom:746.385000px;}
.y12_c00008{bottom:776.445750px;}
.y11_c00008{bottom:797.325600px;}
.y10_c00008{bottom:818.385300px;}
.yf_c00008{bottom:839.445000px;}
.ye_c00008{bottom:869.325000px;}
.yd_c00008{bottom:890.429850px;}
.yc_c00008{bottom:911.490150px;}
.yb_c00008{bottom:932.370000px;}
.ya_c00008{bottom:962.430150px;}
.y9_c00008{bottom:983.490450px;}
.y8_c00008{bottom:1004.370300px;}
.y7_c00008{bottom:1025.430000px;}
.y6_c00008{bottom:1055.489550px;}
.y5_c00008{bottom:1076.369400px;}
.y4_c00008{bottom:1097.429700px;}
.y3_c00008{bottom:1118.490000px;}
.y2_c00008{bottom:1155.060000px;}
.y1_c00008{bottom:1185.300000px;}
.h2_c00008{height:56.957344px;}
.h0_c00008{height:1262.880000px;}
.h1_c00008{height:1263.000000px;}
.w0_c00008{width:892.980000px;}
.w1_c00008{width:893.250000px;}
.x0_c00008{left:0.000000px;}
.x1_c00008{left:127.655850px;}
.x3_c00008{left:255.315300px;}
.x2_c00008{left:478.185000px;}
@media print{
.v1_c00008{vertical-align:-5.118752pt;}
.v0_c00008{vertical-align:0.000000pt;}
.ls4_c00008{letter-spacing:0.000000pt;}
.ls3_c00008{letter-spacing:0.095573pt;}
.ls2_c00008{letter-spacing:0.271484pt;}
.ls1_c00008{letter-spacing:132.896533pt;}
.ls0_c00008{letter-spacing:148.896533pt;}
.ws0_c00008{word-spacing:-16.368640pt;}
.ws1_c00008{word-spacing:-13.344000pt;}
.ws2_c00008{word-spacing:-10.319360pt;}
.ws3_c00008{word-spacing:0.000000pt;}
._17_c00008{margin-left:-13.416469pt;}
._b_c00008{margin-left:-12.021764pt;}
._e_c00008{margin-left:-9.190765pt;}
._5_c00008{margin-left:-7.535617pt;}
._9_c00008{margin-left:-6.411964pt;}
._7_c00008{margin-left:-5.497953pt;}
._c_c00008{margin-left:-3.788313pt;}
._11_c00008{margin-left:-2.433975pt;}
._0_c00008{margin-left:-1.001054pt;}
._6_c00008{width:1.085938pt;}
._16_c00008{width:3.794513pt;}
._8_c00008{width:5.475527pt;}
._14_c00008{width:7.032720pt;}
._10_c00008{width:8.950640pt;}
._d_c00008{width:10.212157pt;}
._15_c00008{width:12.861245pt;}
._a_c00008{width:14.425523pt;}
._13_c00008{width:17.866051pt;}
._4_c00008{width:23.375518pt;}
._f_c00008{width:28.759793pt;}
._12_c00008{width:33.234791pt;}
._3_c00008{width:41.333765pt;}
._2_c00008{width:52.428823pt;}
._1_c00008{width:1826.482381pt;}
.fs3_c00008{font-size:37.120000pt;}
.fs2_c00008{font-size:48.000000pt;}
.fs0_c00008{font-size:58.880000pt;}
.fs1_c00008{font-size:64.000000pt;}
.y0_c00008{bottom:0.000000pt;}
.y2c_c00008{bottom:116.672133pt;}
.y2b_c00008{bottom:135.386667pt;}
.y2a_c00008{bottom:162.107067pt;}
.y29_c00008{bottom:180.666933pt;}
.y28_c00008{bottom:199.386667pt;}
.y27_c00008{bottom:226.106800pt;}
.y26_c00008{bottom:244.666667pt;}
.y25_c00008{bottom:271.386400pt;}
.y24_c00008{bottom:290.106667pt;}
.y23_c00008{bottom:316.706933pt;}
.y22_c00008{bottom:335.426667pt;}
.y21_c00008{bottom:362.146800pt;}
.y20_c00008{bottom:380.706667pt;}
.y1f_c00008{bottom:407.426400pt;}
.y1e_c00008{bottom:426.146667pt;}
.y1d_c00008{bottom:452.706933pt;}
.y1c_c00008{bottom:471.426667pt;}
.y1b_c00008{bottom:498.146800pt;}
.y1a_c00008{bottom:516.706667pt;}
.y19_c00008{bottom:543.453200pt;}
.y18_c00008{bottom:562.173467pt;}
.y17_c00008{bottom:580.733333pt;}
.y16_c00008{bottom:607.453467pt;}
.y15_c00008{bottom:626.173733pt;}
.y14_c00008{bottom:644.733600pt;}
.y13_c00008{bottom:663.453333pt;}
.y12_c00008{bottom:690.174000pt;}
.y11_c00008{bottom:708.733867pt;}
.y10_c00008{bottom:727.453600pt;}
.yf_c00008{bottom:746.173333pt;}
.ye_c00008{bottom:772.733333pt;}
.yd_c00008{bottom:791.493200pt;}
.yc_c00008{bottom:810.213467pt;}
.yb_c00008{bottom:828.773333pt;}
.ya_c00008{bottom:855.493467pt;}
.y9_c00008{bottom:874.213733pt;}
.y8_c00008{bottom:892.773600pt;}
.y7_c00008{bottom:911.493333pt;}
.y6_c00008{bottom:938.212933pt;}
.y5_c00008{bottom:956.772800pt;}
.y4_c00008{bottom:975.493067pt;}
.y3_c00008{bottom:994.213333pt;}
.y2_c00008{bottom:1026.720000pt;}
.y1_c00008{bottom:1053.600000pt;}
.h2_c00008{height:50.628750pt;}
.h0_c00008{height:1122.560000pt;}
.h1_c00008{height:1122.666667pt;}
.w0_c00008{width:793.760000pt;}
.w1_c00008{width:794.000000pt;}
.x0_c00008{left:0.000000pt;}
.x1_c00008{left:113.471867pt;}
.x3_c00008{left:226.946933pt;}
.x2_c00008{left:425.053333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_98f28586886c74928fa96efe.woff2')format("woff");}.ff1_c00009{font-family:ff1_c00009;line-height:1.070312;font-style:normal;font-weight:normal;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_3db4320c61638db3bf638bd8.woff2')format("woff");}.ff2_c00009{font-family:ff2_c00009;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00009{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00009{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4_c00009{vertical-align:-23.758620px;}
.v1_c00009{vertical-align:-5.760936px;}
.v0_c00009{vertical-align:0.000000px;}
.v2_c00009{vertical-align:5.760936px;}
.v3_c00009{vertical-align:23.760960px;}
.ls6_c00009{letter-spacing:0.000000px;}
.ls3_c00009{letter-spacing:0.092640px;}
.ls2_c00009{letter-spacing:0.107520px;}
.ls5_c00009{letter-spacing:0.305274px;}
.ls4_c00009{letter-spacing:0.305420px;}
.ls1_c00009{letter-spacing:167.476200px;}
.ls0_c00009{letter-spacing:167.508600px;}
.sc__c00009{text-shadow:none;}
.sc0_c00009{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00009{-webkit-text-stroke:0px transparent;}
.sc0_c00009{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00009{word-spacing:-18.414720px;}
.ws2_c00009{word-spacing:-15.012000px;}
.ws1_c00009{word-spacing:-11.609280px;}
.ws3_c00009{word-spacing:0.000000px;}
._f_c00009{margin-left:-17.197422px;}
._4_c00009{margin-left:-16.165898px;}
._a_c00009{margin-left:-12.715134px;}
._b_c00009{margin-left:-6.192411px;}
._3_c00009{margin-left:-4.636025px;}
._2_c00009{margin-left:-3.513038px;}
._c_c00009{margin-left:-2.353303px;}
._0_c00009{margin-left:-1.126186px;}
._5_c00009{width:1.221680px;}
._16_c00009{width:2.580237px;}
._15_c00009{width:3.787943px;}
._8_c00009{width:5.429439px;}
._9_c00009{width:6.788446px;}
._13_c00009{width:7.817710px;}
._d_c00009{width:8.873236px;}
._10_c00009{width:10.333551px;}
._14_c00009{width:11.753377px;}
._11_c00009{width:13.145672px;}
._12_c00009{width:14.187528px;}
._6_c00009{width:15.296291px;}
._7_c00009{width:16.625748px;}
._e_c00009{width:19.503273px;}
._1a_c00009{width:30.073821px;}
._18_c00009{width:31.626653px;}
._19_c00009{width:32.827271px;}
._17_c00009{width:52.757390px;}
._1_c00009{width:2036.788647px;}
.fc0_c00009{color:rgb(0,0,0);}
.fs2_c00009{font-size:41.760000px;}
.fs3_c00009{font-size:54.000000px;}
.fs0_c00009{font-size:66.240000px;}
.fs1_c00009{font-size:72.000000px;}
.y0_c00009{bottom:0.000000px;}
.y2c_c00009{bottom:113.255850px;}
.y2b_c00009{bottom:134.316150px;}
.y2a_c00009{bottom:155.370000px;}
.y29_c00009{bottom:185.250300px;}
.y28_c00009{bottom:206.310000px;}
.y27_c00009{bottom:236.370150px;}
.y26_c00009{bottom:257.250000px;}
.y25_c00009{bottom:287.309700px;}
.y24_c00009{bottom:308.370000px;}
.y23_c00009{bottom:338.294550px;}
.y22_c00009{bottom:359.354850px;}
.y21_c00009{bottom:380.415150px;}
.y20_c00009{bottom:401.295000px;}
.y1f_c00009{bottom:431.355750px;}
.y1e_c00009{bottom:452.415450px;}
.y1d_c00009{bottom:473.295300px;}
.y1c_c00009{bottom:494.355000px;}
.y1b_c00009{bottom:524.415150px;}
.y1a_c00009{bottom:545.295000px;}
.y19_c00009{bottom:566.354700px;}
.y18_c00009{bottom:587.415000px;}
.y17_c00009{bottom:617.325300px;}
.y16_c00009{bottom:638.385000px;}
.y15_c00009{bottom:668.445150px;}
.y14_c00009{bottom:689.325000px;}
.y13_c00009{bottom:719.384700px;}
.y12_c00009{bottom:740.445000px;}
.y11_c00009{bottom:770.324700px;}
.y10_c00009{bottom:791.385000px;}
.yf_c00009{bottom:821.445150px;}
.ye_c00009{bottom:842.325000px;}
.yd_c00009{bottom:872.429700px;}
.yc_c00009{bottom:893.490000px;}
.yb_c00009{bottom:923.370300px;}
.ya_c00009{bottom:944.430000px;}
.y9_c00009{bottom:974.490150px;}
.y8_c00009{bottom:995.370000px;}
.y7_c00009{bottom:1025.429850px;}
.y6_c00009{bottom:1046.490150px;}
.y5_c00009{bottom:1067.370000px;}
.y4_c00009{bottom:1097.429700px;}
.y3_c00009{bottom:1118.490000px;}
.y2_c00009{bottom:1155.060000px;}
.y1_c00009{bottom:1185.300000px;}
.h2_c00009{height:56.957344px;}
.h4_c00009{height:59.666511px;}
.h3_c00009{height:59.668851px;}
.h0_c00009{height:1262.880000px;}
.h1_c00009{height:1263.000000px;}
.w0_c00009{width:892.980000px;}
.w1_c00009{width:893.250000px;}
.x0_c00009{left:0.000000px;}
.x1_c00009{left:127.655850px;}
.x3_c00009{left:255.314955px;}
.x2_c00009{left:478.185000px;}
@media print{
.v4_c00009{vertical-align:-21.118773pt;}
.v1_c00009{vertical-align:-5.120832pt;}
.v0_c00009{vertical-align:0.000000pt;}
.v2_c00009{vertical-align:5.120832pt;}
.v3_c00009{vertical-align:21.120853pt;}
.ls6_c00009{letter-spacing:0.000000pt;}
.ls3_c00009{letter-spacing:0.082347pt;}
.ls2_c00009{letter-spacing:0.095573pt;}
.ls5_c00009{letter-spacing:0.271354pt;}
.ls4_c00009{letter-spacing:0.271484pt;}
.ls1_c00009{letter-spacing:148.867733pt;}
.ls0_c00009{letter-spacing:148.896533pt;}
.ws0_c00009{word-spacing:-16.368640pt;}
.ws2_c00009{word-spacing:-13.344000pt;}
.ws1_c00009{word-spacing:-10.319360pt;}
.ws3_c00009{word-spacing:0.000000pt;}
._f_c00009{margin-left:-15.286597pt;}
._4_c00009{margin-left:-14.369688pt;}
._a_c00009{margin-left:-11.302341pt;}
._b_c00009{margin-left:-5.504365pt;}
._3_c00009{margin-left:-4.120911pt;}
._2_c00009{margin-left:-3.122700pt;}
._c_c00009{margin-left:-2.091825pt;}
._0_c00009{margin-left:-1.001054pt;}
._5_c00009{width:1.085938pt;}
._16_c00009{width:2.293544pt;}
._15_c00009{width:3.367060pt;}
._8_c00009{width:4.826168pt;}
._9_c00009{width:6.034174pt;}
._13_c00009{width:6.949076pt;}
._d_c00009{width:7.887321pt;}
._10_c00009{width:9.185378pt;}
._14_c00009{width:10.447446pt;}
._11_c00009{width:11.685041pt;}
._12_c00009{width:12.611136pt;}
._6_c00009{width:13.596703pt;}
._7_c00009{width:14.778442pt;}
._e_c00009{width:17.336242pt;}
._1a_c00009{width:26.732285pt;}
._18_c00009{width:28.112581pt;}
._19_c00009{width:29.179796pt;}
._17_c00009{width:46.895458pt;}
._1_c00009{width:1810.478797pt;}
.fs2_c00009{font-size:37.120000pt;}
.fs3_c00009{font-size:48.000000pt;}
.fs0_c00009{font-size:58.880000pt;}
.fs1_c00009{font-size:64.000000pt;}
.y0_c00009{bottom:0.000000pt;}
.y2c_c00009{bottom:100.671867pt;}
.y2b_c00009{bottom:119.392133pt;}
.y2a_c00009{bottom:138.106667pt;}
.y29_c00009{bottom:164.666933pt;}
.y28_c00009{bottom:183.386667pt;}
.y27_c00009{bottom:210.106800pt;}
.y26_c00009{bottom:228.666667pt;}
.y25_c00009{bottom:255.386400pt;}
.y24_c00009{bottom:274.106667pt;}
.y23_c00009{bottom:300.706267pt;}
.y22_c00009{bottom:319.426533pt;}
.y21_c00009{bottom:338.146800pt;}
.y20_c00009{bottom:356.706667pt;}
.y1f_c00009{bottom:383.427333pt;}
.y1e_c00009{bottom:402.147067pt;}
.y1d_c00009{bottom:420.706933pt;}
.y1c_c00009{bottom:439.426667pt;}
.y1b_c00009{bottom:466.146800pt;}
.y1a_c00009{bottom:484.706667pt;}
.y19_c00009{bottom:503.426400pt;}
.y18_c00009{bottom:522.146667pt;}
.y17_c00009{bottom:548.733600pt;}
.y16_c00009{bottom:567.453333pt;}
.y15_c00009{bottom:594.173467pt;}
.y14_c00009{bottom:612.733333pt;}
.y13_c00009{bottom:639.453067pt;}
.y12_c00009{bottom:658.173333pt;}
.y11_c00009{bottom:684.733067pt;}
.y10_c00009{bottom:703.453333pt;}
.yf_c00009{bottom:730.173467pt;}
.ye_c00009{bottom:748.733333pt;}
.yd_c00009{bottom:775.493067pt;}
.yc_c00009{bottom:794.213333pt;}
.yb_c00009{bottom:820.773600pt;}
.ya_c00009{bottom:839.493333pt;}
.y9_c00009{bottom:866.213467pt;}
.y8_c00009{bottom:884.773333pt;}
.y7_c00009{bottom:911.493200pt;}
.y6_c00009{bottom:930.213467pt;}
.y5_c00009{bottom:948.773333pt;}
.y4_c00009{bottom:975.493067pt;}
.y3_c00009{bottom:994.213333pt;}
.y2_c00009{bottom:1026.720000pt;}
.y1_c00009{bottom:1053.600000pt;}
.h2_c00009{height:50.628750pt;}
.h4_c00009{height:53.036898pt;}
.h3_c00009{height:53.038978pt;}
.h0_c00009{height:1122.560000pt;}
.h1_c00009{height:1122.666667pt;}
.w0_c00009{width:793.760000pt;}
.w1_c00009{width:794.000000pt;}
.x0_c00009{left:0.000000pt;}
.x1_c00009{left:113.471867pt;}
.x3_c00009{left:226.946627pt;}
.x2_c00009{left:425.053333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_59e485d620f8af6ed6d6d0c7.woff2')format("woff");}.ff1_c00010{font-family:ff1_c00010;line-height:1.070312;font-style:normal;font-weight:normal;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_3db4320c61638db3bf638bd8.woff2')format("woff");}.ff2_c00010{font-family:ff2_c00010;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00010{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00010{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1_c00010{vertical-align:-5.760936px;}
.v0_c00010{vertical-align:0.000000px;}
.ls1_c00010{letter-spacing:0.000000px;}
.ls0_c00010{letter-spacing:167.508600px;}
.sc__c00010{text-shadow:none;}
.sc0_c00010{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00010{-webkit-text-stroke:0px transparent;}
.sc0_c00010{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00010{word-spacing:-11.609280px;}
.ws1_c00010{word-spacing:0.000000px;}
._4_c00010{margin-left:-5.636929px;}
._0_c00010{margin-left:-1.126186px;}
._3_c00010{width:1.184681px;}
._2_c00010{width:3.938884px;}
._5_c00010{width:845.884800px;}
._1_c00010{width:2018.069223px;}
.fc0_c00010{color:rgb(0,0,0);}
.fs2_c00010{font-size:41.760000px;}
.fs0_c00010{font-size:66.240000px;}
.fs1_c00010{font-size:72.000000px;}
.y0_c00010{bottom:0.000000px;}
.y6_c00010{bottom:1046.490000px;}
.y5_c00010{bottom:1067.370000px;}
.y4_c00010{bottom:1097.429700px;}
.y3_c00010{bottom:1118.490000px;}
.y2_c00010{bottom:1155.060000px;}
.y1_c00010{bottom:1185.300000px;}
.h2_c00010{height:56.957344px;}
.h0_c00010{height:1262.880000px;}
.h1_c00010{height:1263.000000px;}
.w0_c00010{width:892.980000px;}
.w1_c00010{width:893.250000px;}
.x0_c00010{left:0.000000px;}
.x1_c00010{left:127.655850px;}
.x4_c00010{left:148.896150px;}
.x5_c00010{left:191.550000px;}
.x3_c00010{left:255.315360px;}
.x2_c00010{left:478.185000px;}
@media print{
.v1_c00010{vertical-align:-5.120832pt;}
.v0_c00010{vertical-align:0.000000pt;}
.ls1_c00010{letter-spacing:0.000000pt;}
.ls0_c00010{letter-spacing:148.896533pt;}
.ws0_c00010{word-spacing:-10.319360pt;}
.ws1_c00010{word-spacing:0.000000pt;}
._4_c00010{margin-left:-5.010604pt;}
._0_c00010{margin-left:-1.001054pt;}
._3_c00010{width:1.053050pt;}
._2_c00010{width:3.501231pt;}
._5_c00010{width:751.897600pt;}
._1_c00010{width:1793.839309pt;}
.fs2_c00010{font-size:37.120000pt;}
.fs0_c00010{font-size:58.880000pt;}
.fs1_c00010{font-size:64.000000pt;}
.y0_c00010{bottom:0.000000pt;}
.y6_c00010{bottom:930.213333pt;}
.y5_c00010{bottom:948.773333pt;}
.y4_c00010{bottom:975.493067pt;}
.y3_c00010{bottom:994.213333pt;}
.y2_c00010{bottom:1026.720000pt;}
.y1_c00010{bottom:1053.600000pt;}
.h2_c00010{height:50.628750pt;}
.h0_c00010{height:1122.560000pt;}
.h1_c00010{height:1122.666667pt;}
.w0_c00010{width:793.760000pt;}
.w1_c00010{width:794.000000pt;}
.x0_c00010{left:0.000000pt;}
.x1_c00010{left:113.471867pt;}
.x4_c00010{left:132.352133pt;}
.x5_c00010{left:170.266667pt;}
.x3_c00010{left:226.946987pt;}
.x2_c00010{left:425.053333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2d0ea8942c27ef8ba483549b.woff2')format("woff");}.ff1_c00011{font-family:ff1_c00011;line-height:1.070312;font-style:normal;font-weight:normal;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_994525bb39edbd2a28479db4.woff2')format("woff");}.ff2_c00011{font-family:ff2_c00011;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00011;src:url('chunks/assets/font_3db4320c61638db3bf638bd8.woff2')format("woff");}.ff3_c00011{font-family:ff3_c00011;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00011{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00011{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1_c00011{vertical-align:-5.760936px;}
.v0_c00011{vertical-align:0.000000px;}
.lsa_c00011{letter-spacing:0.000000px;}
.ls2_c00011{letter-spacing:0.107520px;}
.ls9_c00011{letter-spacing:0.110640px;}
.ls6_c00011{letter-spacing:0.261120px;}
.ls1_c00011{letter-spacing:0.261600px;}
.ls4_c00011{letter-spacing:0.305274px;}
.ls5_c00011{letter-spacing:0.305420px;}
.ls3_c00011{letter-spacing:0.827040px;}
.ls7_c00011{letter-spacing:72.469200px;}
.ls8_c00011{letter-spacing:90.469200px;}
.ls0_c00011{letter-spacing:127.189200px;}
.sc__c00011{text-shadow:none;}
.sc0_c00011{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00011{-webkit-text-stroke:0px transparent;}
.sc0_c00011{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00011{word-spacing:-18.414720px;}
.ws1_c00011{word-spacing:-15.012000px;}
.ws2_c00011{word-spacing:-11.609280px;}
.ws3_c00011{word-spacing:0.000000px;}
._18_c00011{margin-left:-16.844606px;}
._d_c00011{margin-left:-15.554385px;}
._1a_c00011{margin-left:-11.581012px;}
._b_c00011{margin-left:-9.823959px;}
._15_c00011{margin-left:-8.811206px;}
._7_c00011{margin-left:-7.457184px;}
._6_c00011{margin-left:-5.818282px;}
._13_c00011{margin-left:-3.691388px;}
._4_c00011{margin-left:-2.317516px;}
._0_c00011{margin-left:-1.093374px;}
._5_c00011{width:1.127125px;}
._a_c00011{width:2.940177px;}
._9_c00011{width:4.039232px;}
._e_c00011{width:5.274779px;}
._f_c00011{width:6.450157px;}
._17_c00011{width:8.411497px;}
._12_c00011{width:11.764549px;}
._c_c00011{width:13.016142px;}
._8_c00011{width:20.144756px;}
._19_c00011{width:22.054381px;}
._14_c00011{width:23.428537px;}
._10_c00011{width:31.072674px;}
._11_c00011{width:32.297935px;}
._16_c00011{width:34.391384px;}
._2_c00011{width:65.222183px;}
._3_c00011{width:66.503917px;}
._1_c00011{width:1982.225396px;}
.fc0_c00011{color:rgb(0,0,0);}
.fs4_c00011{font-size:41.760000px;}
.fs3_c00011{font-size:54.000000px;}
.fs0_c00011{font-size:66.240000px;}
.fs2_c00011{font-size:72.000000px;}
.fs1_c00011{font-size:84.240000px;}
.y0_c00011{bottom:0.000000px;}
.y2b_c00011{bottom:116.316300px;}
.y2a_c00011{bottom:137.376000px;}
.y29_c00011{bottom:167.250300px;}
.y28_c00011{bottom:188.310000px;}
.y27_c00011{bottom:218.370450px;}
.y26_c00011{bottom:239.250300px;}
.y25_c00011{bottom:260.310000px;}
.y24_c00011{bottom:290.370450px;}
.y23_c00011{bottom:311.250300px;}
.y22_c00011{bottom:332.310000px;}
.y21_c00011{bottom:362.415450px;}
.y20_c00011{bottom:383.295300px;}
.y1f_c00011{bottom:404.355000px;}
.y1e_c00011{bottom:434.415450px;}
.y1d_c00011{bottom:455.295300px;}
.y1c_c00011{bottom:476.355000px;}
.y1b_c00011{bottom:506.415000px;}
.y1a_c00011{bottom:536.295300px;}
.y19_c00011{bottom:557.355000px;}
.y18_c00011{bottom:587.415300px;}
.y17_c00011{bottom:608.325000px;}
.y16_c00011{bottom:638.384700px;}
.y15_c00011{bottom:659.445000px;}
.y14_c00011{bottom:689.325000px;}
.y13_c00011{bottom:710.384700px;}
.y12_c00011{bottom:731.445000px;}
.y11_c00011{bottom:761.324700px;}
.y10_c00011{bottom:782.385000px;}
.yf_c00011{bottom:812.445150px;}
.ye_c00011{bottom:833.325000px;}
.yd_c00011{bottom:863.385150px;}
.yc_c00011{bottom:884.490000px;}
.yb_c00011{bottom:914.370000px;}
.ya_c00011{bottom:935.429700px;}
.y9_c00011{bottom:956.490000px;}
.y8_c00011{bottom:986.370300px;}
.y7_c00011{bottom:1007.430000px;}
.y6_c00011{bottom:1037.490450px;}
.y5_c00011{bottom:1058.370300px;}
.y4_c00011{bottom:1079.430000px;}
.y3_c00011{bottom:1118.310000px;}
.y2_c00011{bottom:1155.060000px;}
.y1_c00011{bottom:1185.300000px;}
.h2_c00011{height:56.957344px;}
.h3_c00011{height:61.329023px;}
.h0_c00011{height:1262.880000px;}
.h1_c00011{height:1263.000000px;}
.w0_c00011{width:892.980000px;}
.w1_c00011{width:893.250000px;}
.x0_c00011{left:0.000000px;}
.x1_c00011{left:127.647750px;}
.x3_c00011{left:255.315300px;}
.x2_c00011{left:478.185000px;}
@media print{
.v1_c00011{vertical-align:-5.120832pt;}
.v0_c00011{vertical-align:0.000000pt;}
.lsa_c00011{letter-spacing:0.000000pt;}
.ls2_c00011{letter-spacing:0.095573pt;}
.ls9_c00011{letter-spacing:0.098347pt;}
.ls6_c00011{letter-spacing:0.232107pt;}
.ls1_c00011{letter-spacing:0.232533pt;}
.ls4_c00011{letter-spacing:0.271354pt;}
.ls5_c00011{letter-spacing:0.271484pt;}
.ls3_c00011{letter-spacing:0.735147pt;}
.ls7_c00011{letter-spacing:64.417067pt;}
.ls8_c00011{letter-spacing:80.417067pt;}
.ls0_c00011{letter-spacing:113.057067pt;}
.ws0_c00011{word-spacing:-16.368640pt;}
.ws1_c00011{word-spacing:-13.344000pt;}
.ws2_c00011{word-spacing:-10.319360pt;}
.ws3_c00011{word-spacing:0.000000pt;}
._18_c00011{margin-left:-14.972983pt;}
._d_c00011{margin-left:-13.826120pt;}
._1a_c00011{margin-left:-10.294233pt;}
._b_c00011{margin-left:-8.732408pt;}
._15_c00011{margin-left:-7.832183pt;}
._7_c00011{margin-left:-6.628608pt;}
._6_c00011{margin-left:-5.171807pt;}
._13_c00011{margin-left:-3.281233pt;}
._4_c00011{margin-left:-2.060014pt;}
._0_c00011{margin-left:-0.971888pt;}
._5_c00011{width:1.001889pt;}
._a_c00011{width:2.613490pt;}
._9_c00011{width:3.590429pt;}
._e_c00011{width:4.688692pt;}
._f_c00011{width:5.733473pt;}
._17_c00011{width:7.476886pt;}
._12_c00011{width:10.457377pt;}
._c_c00011{width:11.569904pt;}
._8_c00011{width:17.906450pt;}
._19_c00011{width:19.603895pt;}
._14_c00011{width:20.825367pt;}
._10_c00011{width:27.620155pt;}
._11_c00011{width:28.709276pt;}
._16_c00011{width:30.570119pt;}
._2_c00011{width:57.975273pt;}
._3_c00011{width:59.114593pt;}
._1_c00011{width:1761.978130pt;}
.fs4_c00011{font-size:37.120000pt;}
.fs3_c00011{font-size:48.000000pt;}
.fs0_c00011{font-size:58.880000pt;}
.fs2_c00011{font-size:64.000000pt;}
.fs1_c00011{font-size:74.880000pt;}
.y0_c00011{bottom:0.000000pt;}
.y2b_c00011{bottom:103.392267pt;}
.y2a_c00011{bottom:122.112000pt;}
.y29_c00011{bottom:148.666933pt;}
.y28_c00011{bottom:167.386667pt;}
.y27_c00011{bottom:194.107067pt;}
.y26_c00011{bottom:212.666933pt;}
.y25_c00011{bottom:231.386667pt;}
.y24_c00011{bottom:258.107067pt;}
.y23_c00011{bottom:276.666933pt;}
.y22_c00011{bottom:295.386667pt;}
.y21_c00011{bottom:322.147067pt;}
.y20_c00011{bottom:340.706933pt;}
.y1f_c00011{bottom:359.426667pt;}
.y1e_c00011{bottom:386.147067pt;}
.y1d_c00011{bottom:404.706933pt;}
.y1c_c00011{bottom:423.426667pt;}
.y1b_c00011{bottom:450.146667pt;}
.y1a_c00011{bottom:476.706933pt;}
.y19_c00011{bottom:495.426667pt;}
.y18_c00011{bottom:522.146933pt;}
.y17_c00011{bottom:540.733333pt;}
.y16_c00011{bottom:567.453067pt;}
.y15_c00011{bottom:586.173333pt;}
.y14_c00011{bottom:612.733333pt;}
.y13_c00011{bottom:631.453067pt;}
.y12_c00011{bottom:650.173333pt;}
.y11_c00011{bottom:676.733067pt;}
.y10_c00011{bottom:695.453333pt;}
.yf_c00011{bottom:722.173467pt;}
.ye_c00011{bottom:740.733333pt;}
.yd_c00011{bottom:767.453467pt;}
.yc_c00011{bottom:786.213333pt;}
.yb_c00011{bottom:812.773333pt;}
.ya_c00011{bottom:831.493067pt;}
.y9_c00011{bottom:850.213333pt;}
.y8_c00011{bottom:876.773600pt;}
.y7_c00011{bottom:895.493333pt;}
.y6_c00011{bottom:922.213733pt;}
.y5_c00011{bottom:940.773600pt;}
.y4_c00011{bottom:959.493333pt;}
.y3_c00011{bottom:994.053333pt;}
.y2_c00011{bottom:1026.720000pt;}
.y1_c00011{bottom:1053.600000pt;}
.h2_c00011{height:50.628750pt;}
.h3_c00011{height:54.514688pt;}
.h0_c00011{height:1122.560000pt;}
.h1_c00011{height:1122.666667pt;}
.w0_c00011{width:793.760000pt;}
.w1_c00011{width:794.000000pt;}
.x0_c00011{left:0.000000pt;}
.x1_c00011{left:113.464667pt;}
.x3_c00011{left:226.946933pt;}
.x2_c00011{left:425.053333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e1d6ce53d86656d010faf070.woff2')format("woff");}.ff1_c00012{font-family:ff1_c00012;line-height:1.070312;font-style:normal;font-weight:normal;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_3db4320c61638db3bf638bd8.woff2')format("woff");}.ff2_c00012{font-family:ff2_c00012;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00012{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00012{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00012{vertical-align:0.000000px;}
.ls4_c00012{letter-spacing:0.000000px;}
.ls3_c00012{letter-spacing:0.304320px;}
.ls2_c00012{letter-spacing:72.469200px;}
.ls1_c00012{letter-spacing:90.436800px;}
.ls0_c00012{letter-spacing:90.469200px;}
.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:-15.012000px;}
.ws1_c00012{word-spacing:0.000000px;}
._d_c00012{margin-left:-18.075858px;}
._1b_c00012{margin-left:-15.330771px;}
._13_c00012{margin-left:-12.917939px;}
._7_c00012{margin-left:-11.218916px;}
._f_c00012{margin-left:-9.412703px;}
._e_c00012{margin-left:-7.178876px;}
._4_c00012{margin-left:-6.127807px;}
._6_c00012{margin-left:-3.580217px;}
._a_c00012{margin-left:-2.239456px;}
._0_c00012{margin-left:-1.093374px;}
._5_c00012{width:1.221680px;}
._c_c00012{width:2.451326px;}
._b_c00012{width:4.087666px;}
._19_c00012{width:5.284919px;}
._18_c00012{width:7.649537px;}
._1a_c00012{width:9.567891px;}
._17_c00012{width:10.917051px;}
._16_c00012{width:11.924061px;}
._9_c00012{width:14.640484px;}
._15_c00012{width:30.571019px;}
._14_c00012{width:32.077484px;}
._10_c00012{width:38.864143px;}
._11_c00012{width:40.794486px;}
._8_c00012{width:43.317440px;}
._12_c00012{width:47.294845px;}
._2_c00012{width:69.882512px;}
._3_c00012{width:71.307130px;}
._1_c00012{width:2000.944820px;}
.fc0_c00012{color:rgb(0,0,0);}
.fs2_c00012{font-size:54.000000px;}
.fs0_c00012{font-size:66.240000px;}
.fs1_c00012{font-size:72.000000px;}
.y0_c00012{bottom:0.000000px;}
.y2b_c00012{bottom:125.316300px;}
.y2a_c00012{bottom:146.376000px;}
.y29_c00012{bottom:176.250300px;}
.y28_c00012{bottom:197.310000px;}
.y27_c00012{bottom:227.370150px;}
.y26_c00012{bottom:248.250000px;}
.y25_c00012{bottom:278.309700px;}
.y24_c00012{bottom:299.370000px;}
.y23_c00012{bottom:329.250150px;}
.y22_c00012{bottom:350.355000px;}
.y21_c00012{bottom:380.415150px;}
.y20_c00012{bottom:401.295000px;}
.y1f_c00012{bottom:431.354850px;}
.y1e_c00012{bottom:452.415150px;}
.y1d_c00012{bottom:473.295000px;}
.y1c_c00012{bottom:503.354850px;}
.y1b_c00012{bottom:524.415150px;}
.y1a_c00012{bottom:545.295000px;}
.y19_c00012{bottom:575.354700px;}
.y18_c00012{bottom:596.415000px;}
.y17_c00012{bottom:626.325300px;}
.y16_c00012{bottom:647.385000px;}
.y15_c00012{bottom:677.445150px;}
.y14_c00012{bottom:698.325000px;}
.y13_c00012{bottom:728.384850px;}
.y12_c00012{bottom:749.445150px;}
.y11_c00012{bottom:770.325000px;}
.y10_c00012{bottom:800.385300px;}
.yf_c00012{bottom:821.445000px;}
.ye_c00012{bottom:851.325150px;}
.yd_c00012{bottom:872.430000px;}
.yc_c00012{bottom:902.490150px;}
.yb_c00012{bottom:923.370000px;}
.ya_c00012{bottom:953.429850px;}
.y9_c00012{bottom:974.490150px;}
.y8_c00012{bottom:995.370000px;}
.y7_c00012{bottom:1025.429700px;}
.y6_c00012{bottom:1046.490000px;}
.y5_c00012{bottom:1076.369400px;}
.y4_c00012{bottom:1097.429700px;}
.y3_c00012{bottom:1118.490000px;}
.y2_c00012{bottom:1155.060000px;}
.y1_c00012{bottom:1185.300000px;}
.h2_c00012{height:56.957344px;}
.h0_c00012{height:1262.880000px;}
.h1_c00012{height:1263.000000px;}
.w0_c00012{width:892.980000px;}
.w1_c00012{width:893.250000px;}
.x0_c00012{left:0.000000px;}
.x1_c00012{left:127.647750px;}
.x3_c00012{left:255.315150px;}
.x2_c00012{left:478.185000px;}
@media print{
.v0_c00012{vertical-align:0.000000pt;}
.ls4_c00012{letter-spacing:0.000000pt;}
.ls3_c00012{letter-spacing:0.270507pt;}
.ls2_c00012{letter-spacing:64.417067pt;}
.ls1_c00012{letter-spacing:80.388267pt;}
.ls0_c00012{letter-spacing:80.417067pt;}
.ws0_c00012{word-spacing:-13.344000pt;}
.ws1_c00012{word-spacing:0.000000pt;}
._d_c00012{margin-left:-16.067429pt;}
._1b_c00012{margin-left:-13.627352pt;}
._13_c00012{margin-left:-11.482612pt;}
._7_c00012{margin-left:-9.972370pt;}
._f_c00012{margin-left:-8.366847pt;}
._e_c00012{margin-left:-6.381223pt;}
._4_c00012{margin-left:-5.446940pt;}
._6_c00012{margin-left:-3.182415pt;}
._a_c00012{margin-left:-1.990627pt;}
._0_c00012{margin-left:-0.971888pt;}
._5_c00012{width:1.085938pt;}
._c_c00012{width:2.178957pt;}
._b_c00012{width:3.633481pt;}
._19_c00012{width:4.697706pt;}
._18_c00012{width:6.799588pt;}
._1a_c00012{width:8.504792pt;}
._17_c00012{width:9.704045pt;}
._16_c00012{width:10.599165pt;}
._9_c00012{width:13.013764pt;}
._15_c00012{width:27.174239pt;}
._14_c00012{width:28.513319pt;}
._10_c00012{width:34.545905pt;}
._11_c00012{width:36.261766pt;}
._8_c00012{width:38.504391pt;}
._12_c00012{width:42.039862pt;}
._2_c00012{width:62.117788pt;}
._3_c00012{width:63.384116pt;}
._1_c00012{width:1778.617618pt;}
.fs2_c00012{font-size:48.000000pt;}
.fs0_c00012{font-size:58.880000pt;}
.fs1_c00012{font-size:64.000000pt;}
.y0_c00012{bottom:0.000000pt;}
.y2b_c00012{bottom:111.392267pt;}
.y2a_c00012{bottom:130.112000pt;}
.y29_c00012{bottom:156.666933pt;}
.y28_c00012{bottom:175.386667pt;}
.y27_c00012{bottom:202.106800pt;}
.y26_c00012{bottom:220.666667pt;}
.y25_c00012{bottom:247.386400pt;}
.y24_c00012{bottom:266.106667pt;}
.y23_c00012{bottom:292.666800pt;}
.y22_c00012{bottom:311.426667pt;}
.y21_c00012{bottom:338.146800pt;}
.y20_c00012{bottom:356.706667pt;}
.y1f_c00012{bottom:383.426533pt;}
.y1e_c00012{bottom:402.146800pt;}
.y1d_c00012{bottom:420.706667pt;}
.y1c_c00012{bottom:447.426533pt;}
.y1b_c00012{bottom:466.146800pt;}
.y1a_c00012{bottom:484.706667pt;}
.y19_c00012{bottom:511.426400pt;}
.y18_c00012{bottom:530.146667pt;}
.y17_c00012{bottom:556.733600pt;}
.y16_c00012{bottom:575.453333pt;}
.y15_c00012{bottom:602.173467pt;}
.y14_c00012{bottom:620.733333pt;}
.y13_c00012{bottom:647.453200pt;}
.y12_c00012{bottom:666.173467pt;}
.y11_c00012{bottom:684.733333pt;}
.y10_c00012{bottom:711.453600pt;}
.yf_c00012{bottom:730.173333pt;}
.ye_c00012{bottom:756.733467pt;}
.yd_c00012{bottom:775.493333pt;}
.yc_c00012{bottom:802.213467pt;}
.yb_c00012{bottom:820.773333pt;}
.ya_c00012{bottom:847.493200pt;}
.y9_c00012{bottom:866.213467pt;}
.y8_c00012{bottom:884.773333pt;}
.y7_c00012{bottom:911.493067pt;}
.y6_c00012{bottom:930.213333pt;}
.y5_c00012{bottom:956.772800pt;}
.y4_c00012{bottom:975.493067pt;}
.y3_c00012{bottom:994.213333pt;}
.y2_c00012{bottom:1026.720000pt;}
.y1_c00012{bottom:1053.600000pt;}
.h2_c00012{height:50.628750pt;}
.h0_c00012{height:1122.560000pt;}
.h1_c00012{height:1122.666667pt;}
.w0_c00012{width:793.760000pt;}
.w1_c00012{width:794.000000pt;}
.x0_c00012{left:0.000000pt;}
.x1_c00012{left:113.464667pt;}
.x3_c00012{left:226.946800pt;}
.x2_c00012{left:425.053333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c4de53bf50ffa9c1e6fc75b6.woff2')format("woff");}.ff1_c00013{font-family:ff1_c00013;line-height:1.070312;font-style:normal;font-weight:normal;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_3db4320c61638db3bf638bd8.woff2')format("woff");}.ff2_c00013{font-family:ff2_c00013;line-height:0.895996;font-style:normal;font-weight:normal;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_78eeda8b86ca94003876e9e8.woff2')format("woff");}.ff3_c00013{font-family:ff3_c00013;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00013{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00013{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00013{vertical-align:0.000000px;}
.ls5_c00013{letter-spacing:0.000000px;}
.ls2_c00013{letter-spacing:0.305420px;}
.ls3_c00013{letter-spacing:0.356100px;}
.ls4_c00013{letter-spacing:72.469200px;}
.ls0_c00013{letter-spacing:90.436800px;}
.ls1_c00013{letter-spacing:90.469200px;}
.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;}
}
.ws1_c00013{word-spacing:-36.829440px;}
.ws0_c00013{word-spacing:-15.012000px;}
.ws2_c00013{word-spacing:0.000000px;}
._4_c00013{margin-left:-17.943621px;}
._1d_c00013{margin-left:-15.491820px;}
._18_c00013{margin-left:-14.186708px;}
._1a_c00013{margin-left:-11.714786px;}
._8_c00013{margin-left:-9.776479px;}
._1f_c00013{margin-left:-8.510381px;}
._b_c00013{margin-left:-7.335049px;}
._6_c00013{margin-left:-6.297722px;}
._9_c00013{margin-left:-5.006271px;}
._14_c00013{margin-left:-3.258531px;}
._0_c00013{margin-left:-1.093374px;}
._5_c00013{width:1.221680px;}
._19_c00013{width:2.580077px;}
._15_c00013{width:8.343190px;}
._17_c00013{width:9.466868px;}
._10_c00013{width:10.863512px;}
._f_c00013{width:12.250129px;}
._12_c00013{width:13.442836px;}
._11_c00013{width:15.795105px;}
._d_c00013{width:21.260459px;}
._c_c00013{width:22.328242px;}
._16_c00013{width:23.347726px;}
._7_c00013{width:25.166531px;}
._3_c00013{width:31.333501px;}
._2_c00013{width:32.618682px;}
._a_c00013{width:35.732590px;}
._1e_c00013{width:40.502761px;}
._1c_c00013{width:45.305744px;}
._1b_c00013{width:46.562452px;}
._13_c00013{width:55.639680px;}
._e_c00013{width:131.129475px;}
._1_c00013{width:1982.225396px;}
.fc0_c00013{color:rgb(0,0,0);}
.fs2_c00013{font-size:54.000000px;}
.fs0_c00013{font-size:66.240000px;}
.fs1_c00013{font-size:72.000000px;}
.y0_c00013{bottom:0.000000px;}
.y2b_c00013{bottom:125.316300px;}
.y2a_c00013{bottom:146.376000px;}
.y29_c00013{bottom:176.250300px;}
.y28_c00013{bottom:197.310000px;}
.y27_c00013{bottom:227.370150px;}
.y26_c00013{bottom:248.250000px;}
.y25_c00013{bottom:278.309700px;}
.y24_c00013{bottom:299.370000px;}
.y23_c00013{bottom:329.249850px;}
.y22_c00013{bottom:350.354700px;}
.y21_c00013{bottom:371.415000px;}
.y20_c00013{bottom:401.295300px;}
.y1f_c00013{bottom:422.355000px;}
.y1e_c00013{bottom:452.415450px;}
.y1d_c00013{bottom:473.295300px;}
.y1c_c00013{bottom:494.355000px;}
.y1b_c00013{bottom:524.415450px;}
.y1a_c00013{bottom:545.295300px;}
.y19_c00013{bottom:566.355000px;}
.y18_c00013{bottom:596.415600px;}
.y17_c00013{bottom:617.325300px;}
.y16_c00013{bottom:638.385000px;}
.y15_c00013{bottom:668.445150px;}
.y14_c00013{bottom:689.325000px;}
.y13_c00013{bottom:719.384700px;}
.y12_c00013{bottom:740.445000px;}
.y11_c00013{bottom:770.324700px;}
.y10_c00013{bottom:791.385000px;}
.yf_c00013{bottom:821.445150px;}
.ye_c00013{bottom:842.325000px;}
.yd_c00013{bottom:872.429850px;}
.yc_c00013{bottom:893.490150px;}
.yb_c00013{bottom:914.370000px;}
.ya_c00013{bottom:944.429700px;}
.y9_c00013{bottom:965.490000px;}
.y8_c00013{bottom:995.370300px;}
.y7_c00013{bottom:1016.430000px;}
.y6_c00013{bottom:1046.490150px;}
.y5_c00013{bottom:1067.370000px;}
.y4_c00013{bottom:1097.429700px;}
.y3_c00013{bottom:1118.490000px;}
.y2_c00013{bottom:1155.060000px;}
.y1_c00013{bottom:1185.300000px;}
.h2_c00013{height:56.957344px;}
.h0_c00013{height:1262.880000px;}
.h1_c00013{height:1263.000000px;}
.w0_c00013{width:892.980000px;}
.w1_c00013{width:893.250000px;}
.x0_c00013{left:0.000000px;}
.x1_c00013{left:127.647750px;}
.x3_c00013{left:255.315143px;}
.x2_c00013{left:478.185000px;}
@media print{
.v0_c00013{vertical-align:0.000000pt;}
.ls5_c00013{letter-spacing:0.000000pt;}
.ls2_c00013{letter-spacing:0.271484pt;}
.ls3_c00013{letter-spacing:0.316533pt;}
.ls4_c00013{letter-spacing:64.417067pt;}
.ls0_c00013{letter-spacing:80.388267pt;}
.ls1_c00013{letter-spacing:80.417067pt;}
.ws1_c00013{word-spacing:-32.737280pt;}
.ws0_c00013{word-spacing:-13.344000pt;}
.ws2_c00013{word-spacing:0.000000pt;}
._4_c00013{margin-left:-15.949885pt;}
._1d_c00013{margin-left:-13.770507pt;}
._18_c00013{margin-left:-12.610407pt;}
._1a_c00013{margin-left:-10.413144pt;}
._8_c00013{margin-left:-8.690203pt;}
._1f_c00013{margin-left:-7.564783pt;}
._b_c00013{margin-left:-6.520043pt;}
._6_c00013{margin-left:-5.597975pt;}
._9_c00013{margin-left:-4.450019pt;}
._14_c00013{margin-left:-2.896472pt;}
._0_c00013{margin-left:-0.971888pt;}
._5_c00013{width:1.085938pt;}
._19_c00013{width:2.293402pt;}
._15_c00013{width:7.416168pt;}
._17_c00013{width:8.414994pt;}
._10_c00013{width:9.656455pt;}
._f_c00013{width:10.889003pt;}
._12_c00013{width:11.949188pt;}
._11_c00013{width:14.040093pt;}
._d_c00013{width:18.898186pt;}
._c_c00013{width:19.847326pt;}
._16_c00013{width:20.753535pt;}
._7_c00013{width:22.370250pt;}
._3_c00013{width:27.852001pt;}
._2_c00013{width:28.994384pt;}
._a_c00013{width:31.762302pt;}
._1e_c00013{width:36.002454pt;}
._1c_c00013{width:40.271773pt;}
._1b_c00013{width:41.388846pt;}
._13_c00013{width:49.457493pt;}
._e_c00013{width:116.559533pt;}
._1_c00013{width:1761.978130pt;}
.fs2_c00013{font-size:48.000000pt;}
.fs0_c00013{font-size:58.880000pt;}
.fs1_c00013{font-size:64.000000pt;}
.y0_c00013{bottom:0.000000pt;}
.y2b_c00013{bottom:111.392267pt;}
.y2a_c00013{bottom:130.112000pt;}
.y29_c00013{bottom:156.666933pt;}
.y28_c00013{bottom:175.386667pt;}
.y27_c00013{bottom:202.106800pt;}
.y26_c00013{bottom:220.666667pt;}
.y25_c00013{bottom:247.386400pt;}
.y24_c00013{bottom:266.106667pt;}
.y23_c00013{bottom:292.666533pt;}
.y22_c00013{bottom:311.426400pt;}
.y21_c00013{bottom:330.146667pt;}
.y20_c00013{bottom:356.706933pt;}
.y1f_c00013{bottom:375.426667pt;}
.y1e_c00013{bottom:402.147067pt;}
.y1d_c00013{bottom:420.706933pt;}
.y1c_c00013{bottom:439.426667pt;}
.y1b_c00013{bottom:466.147067pt;}
.y1a_c00013{bottom:484.706933pt;}
.y19_c00013{bottom:503.426667pt;}
.y18_c00013{bottom:530.147200pt;}
.y17_c00013{bottom:548.733600pt;}
.y16_c00013{bottom:567.453333pt;}
.y15_c00013{bottom:594.173467pt;}
.y14_c00013{bottom:612.733333pt;}
.y13_c00013{bottom:639.453067pt;}
.y12_c00013{bottom:658.173333pt;}
.y11_c00013{bottom:684.733067pt;}
.y10_c00013{bottom:703.453333pt;}
.yf_c00013{bottom:730.173467pt;}
.ye_c00013{bottom:748.733333pt;}
.yd_c00013{bottom:775.493200pt;}
.yc_c00013{bottom:794.213467pt;}
.yb_c00013{bottom:812.773333pt;}
.ya_c00013{bottom:839.493067pt;}
.y9_c00013{bottom:858.213333pt;}
.y8_c00013{bottom:884.773600pt;}
.y7_c00013{bottom:903.493333pt;}
.y6_c00013{bottom:930.213467pt;}
.y5_c00013{bottom:948.773333pt;}
.y4_c00013{bottom:975.493067pt;}
.y3_c00013{bottom:994.213333pt;}
.y2_c00013{bottom:1026.720000pt;}
.y1_c00013{bottom:1053.600000pt;}
.h2_c00013{height:50.628750pt;}
.h0_c00013{height:1122.560000pt;}
.h1_c00013{height:1122.666667pt;}
.w0_c00013{width:793.760000pt;}
.w1_c00013{width:794.000000pt;}
.x0_c00013{left:0.000000pt;}
.x1_c00013{left:113.464667pt;}
.x3_c00013{left:226.946794pt;}
.x2_c00013{left:425.053333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fb162b892d1c06bd7f2f2474.woff2')format("woff");}.ff1_c00014{font-family:ff1_c00014;line-height:1.070312;font-style:normal;font-weight:normal;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_3db4320c61638db3bf638bd8.woff2')format("woff");}.ff2_c00014{font-family:ff2_c00014;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00014{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00014{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00014{vertical-align:0.000000px;}
.v1_c00014{vertical-align:23.758620px;}
.ls3_c00014{letter-spacing:0.000000px;}
.ls1_c00014{letter-spacing:0.305420px;}
.ls2_c00014{letter-spacing:72.469200px;}
.ls0_c00014{letter-spacing:90.469200px;}
.sc__c00014{text-shadow:none;}
.sc0_c00014{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00014{-webkit-text-stroke:0px transparent;}
.sc0_c00014{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00014{word-spacing:-11.609280px;}
.ws1_c00014{word-spacing:0.000000px;}
._d_c00014{margin-left:-17.310642px;}
._a_c00014{margin-left:-15.595472px;}
._f_c00014{margin-left:-14.170412px;}
._7_c00014{margin-left:-12.528873px;}
._11_c00014{margin-left:-10.246001px;}
._b_c00014{margin-left:-9.018379px;}
._4_c00014{margin-left:-7.317468px;}
._8_c00014{margin-left:-5.979498px;}
._5_c00014{margin-left:-4.633020px;}
._9_c00014{margin-left:-2.833647px;}
._0_c00014{margin-left:-1.093374px;}
._6_c00014{width:1.221095px;}
._10_c00014{width:3.159753px;}
._e_c00014{width:6.786540px;}
._c_c00014{width:8.973255px;}
._14_c00014{width:21.921990px;}
._12_c00014{width:30.535310px;}
._13_c00014{width:32.177110px;}
._15_c00014{width:33.297888px;}
._3_c00014{width:51.069022px;}
._2_c00014{width:52.325730px;}
._1_c00014{width:1964.227988px;}
.fc0_c00014{color:rgb(0,0,0);}
.fs2_c00014{font-size:41.760000px;}
.fs0_c00014{font-size:66.240000px;}
.fs1_c00014{font-size:72.000000px;}
.y0_c00014{bottom:0.000000px;}
.y27_c00014{bottom:110.376000px;}
.y26_c00014{bottom:140.255850px;}
.y25_c00014{bottom:170.310000px;}
.y24_c00014{bottom:200.370000px;}
.y23_c00014{bottom:230.250300px;}
.y22_c00014{bottom:251.310000px;}
.y21_c00014{bottom:281.370150px;}
.y20_c00014{bottom:302.250000px;}
.y1f_c00014{bottom:332.309550px;}
.y1e_c00014{bottom:353.415000px;}
.y1d_c00014{bottom:383.295000px;}
.y1c_c00014{bottom:413.355000px;}
.y1b_c00014{bottom:443.415150px;}
.y1a_c00014{bottom:464.295000px;}
.y19_c00014{bottom:494.355000px;}
.y18_c00014{bottom:524.415000px;}
.y17_c00014{bottom:554.295000px;}
.y16_c00014{bottom:584.355000px;}
.y15_c00014{bottom:614.445000px;}
.y14_c00014{bottom:644.325000px;}
.y13_c00014{bottom:674.384700px;}
.y12_c00014{bottom:695.445000px;}
.y11_c00014{bottom:725.325000px;}
.y10_c00014{bottom:755.384700px;}
.yf_c00014{bottom:776.445000px;}
.ye_c00014{bottom:806.325000px;}
.yd_c00014{bottom:836.385000px;}
.yc_c00014{bottom:866.445000px;}
.yb_c00014{bottom:896.370000px;}
.ya_c00014{bottom:926.430000px;}
.y9_c00014{bottom:956.490000px;}
.y8_c00014{bottom:986.370000px;}
.y7_c00014{bottom:1016.429700px;}
.y6_c00014{bottom:1037.490000px;}
.y5_c00014{bottom:1067.370000px;}
.y4_c00014{bottom:1097.429700px;}
.y3_c00014{bottom:1118.490000px;}
.y2_c00014{bottom:1155.060000px;}
.y1_c00014{bottom:1185.300000px;}
.h2_c00014{height:56.957344px;}
.h3_c00014{height:59.666511px;}
.h0_c00014{height:1262.880000px;}
.h1_c00014{height:1263.000000px;}
.w0_c00014{width:892.980000px;}
.w1_c00014{width:893.250000px;}
.x0_c00014{left:0.000000px;}
.x1_c00014{left:127.647750px;}
.x3_c00014{left:255.315150px;}
.x2_c00014{left:478.185000px;}
@media print{
.v0_c00014{vertical-align:0.000000pt;}
.v1_c00014{vertical-align:21.118773pt;}
.ls3_c00014{letter-spacing:0.000000pt;}
.ls1_c00014{letter-spacing:0.271484pt;}
.ls2_c00014{letter-spacing:64.417067pt;}
.ls0_c00014{letter-spacing:80.417067pt;}
.ws0_c00014{word-spacing:-10.319360pt;}
.ws1_c00014{word-spacing:0.000000pt;}
._d_c00014{margin-left:-15.387238pt;}
._a_c00014{margin-left:-13.862641pt;}
._f_c00014{margin-left:-12.595921pt;}
._7_c00014{margin-left:-11.136776pt;}
._11_c00014{margin-left:-9.107556pt;}
._b_c00014{margin-left:-8.016337pt;}
._4_c00014{margin-left:-6.504416pt;}
._8_c00014{margin-left:-5.315109pt;}
._5_c00014{margin-left:-4.118240pt;}
._9_c00014{margin-left:-2.518798pt;}
._0_c00014{margin-left:-0.971888pt;}
._6_c00014{width:1.085417pt;}
._10_c00014{width:2.808670pt;}
._e_c00014{width:6.032480pt;}
._c_c00014{width:7.976227pt;}
._14_c00014{width:19.486213pt;}
._12_c00014{width:27.142498pt;}
._13_c00014{width:28.601876pt;}
._15_c00014{width:29.598123pt;}
._3_c00014{width:45.394686pt;}
._2_c00014{width:46.511760pt;}
._1_c00014{width:1745.980434pt;}
.fs2_c00014{font-size:37.120000pt;}
.fs0_c00014{font-size:58.880000pt;}
.fs1_c00014{font-size:64.000000pt;}
.y0_c00014{bottom:0.000000pt;}
.y27_c00014{bottom:98.112000pt;}
.y26_c00014{bottom:124.671867pt;}
.y25_c00014{bottom:151.386667pt;}
.y24_c00014{bottom:178.106667pt;}
.y23_c00014{bottom:204.666933pt;}
.y22_c00014{bottom:223.386667pt;}
.y21_c00014{bottom:250.106800pt;}
.y20_c00014{bottom:268.666667pt;}
.y1f_c00014{bottom:295.386267pt;}
.y1e_c00014{bottom:314.146667pt;}
.y1d_c00014{bottom:340.706667pt;}
.y1c_c00014{bottom:367.426667pt;}
.y1b_c00014{bottom:394.146800pt;}
.y1a_c00014{bottom:412.706667pt;}
.y19_c00014{bottom:439.426667pt;}
.y18_c00014{bottom:466.146667pt;}
.y17_c00014{bottom:492.706667pt;}
.y16_c00014{bottom:519.426667pt;}
.y15_c00014{bottom:546.173333pt;}
.y14_c00014{bottom:572.733333pt;}
.y13_c00014{bottom:599.453067pt;}
.y12_c00014{bottom:618.173333pt;}
.y11_c00014{bottom:644.733333pt;}
.y10_c00014{bottom:671.453067pt;}
.yf_c00014{bottom:690.173333pt;}
.ye_c00014{bottom:716.733333pt;}
.yd_c00014{bottom:743.453333pt;}
.yc_c00014{bottom:770.173333pt;}
.yb_c00014{bottom:796.773333pt;}
.ya_c00014{bottom:823.493333pt;}
.y9_c00014{bottom:850.213333pt;}
.y8_c00014{bottom:876.773333pt;}
.y7_c00014{bottom:903.493067pt;}
.y6_c00014{bottom:922.213333pt;}
.y5_c00014{bottom:948.773333pt;}
.y4_c00014{bottom:975.493067pt;}
.y3_c00014{bottom:994.213333pt;}
.y2_c00014{bottom:1026.720000pt;}
.y1_c00014{bottom:1053.600000pt;}
.h2_c00014{height:50.628750pt;}
.h3_c00014{height:53.036898pt;}
.h0_c00014{height:1122.560000pt;}
.h1_c00014{height:1122.666667pt;}
.w0_c00014{width:793.760000pt;}
.w1_c00014{width:794.000000pt;}
.x0_c00014{left:0.000000pt;}
.x1_c00014{left:113.464667pt;}
.x3_c00014{left:226.946800pt;}
.x2_c00014{left:425.053333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0b6369764da55b297d739615.woff2')format("woff");}.ff1_c00015{font-family:ff1_c00015;line-height:1.070312;font-style:normal;font-weight:normal;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_3db4320c61638db3bf638bd8.woff2')format("woff");}.ff2_c00015{font-family:ff2_c00015;line-height:0.895996;font-style: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);}
.m1_c00015{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_c00015{vertical-align:0.000000px;}
.ls1_c00015{letter-spacing:0.000000px;}
.ls0_c00015{letter-spacing:90.469200px;}
.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;}
}
.ws1_c00015{word-spacing:-18.414720px;}
.ws0_c00015{word-spacing:-15.012000px;}
.ws2_c00015{word-spacing:0.000000px;}
._14_c00015{margin-left:-16.878728px;}
._a_c00015{margin-left:-11.166177px;}
._2_c00015{margin-left:-8.099876px;}
._4_c00015{margin-left:-5.560771px;}
._6_c00015{margin-left:-4.017585px;}
._5_c00015{margin-left:-2.592558px;}
._0_c00015{margin-left:-1.093374px;}
._3_c00015{width:1.221095px;}
._10_c00015{width:3.806706px;}
._8_c00015{width:5.761111px;}
._7_c00015{width:7.383960px;}
._9_c00015{width:8.527872px;}
._c_c00015{width:10.134607px;}
._b_c00015{width:11.757456px;}
._e_c00015{width:19.673171px;}
._d_c00015{width:20.732887px;}
._f_c00015{width:22.184894px;}
._13_c00015{width:23.253211px;}
._11_c00015{width:34.378194px;}
._12_c00015{width:35.680612px;}
._1_c00015{width:1945.508564px;}
.fc0_c00015{color:rgb(0,0,0);}
.fs2_c00015{font-size:54.000000px;}
.fs0_c00015{font-size:66.240000px;}
.fs1_c00015{font-size:72.000000px;}
.y0_c00015{bottom:0.000000px;}
.y23_c00015{bottom:302.250300px;}
.y22_c00015{bottom:323.310000px;}
.y21_c00015{bottom:353.415150px;}
.y20_c00015{bottom:374.295000px;}
.y1f_c00015{bottom:404.354700px;}
.y1e_c00015{bottom:425.415000px;}
.y1d_c00015{bottom:455.295300px;}
.y1c_c00015{bottom:476.355000px;}
.y1b_c00015{bottom:506.415150px;}
.y1a_c00015{bottom:527.295000px;}
.y19_c00015{bottom:557.354700px;}
.y18_c00015{bottom:578.415000px;}
.y17_c00015{bottom:608.325300px;}
.y16_c00015{bottom:629.385000px;}
.y15_c00015{bottom:659.445150px;}
.y14_c00015{bottom:680.325000px;}
.y13_c00015{bottom:710.384700px;}
.y12_c00015{bottom:731.445000px;}
.y11_c00015{bottom:761.324700px;}
.y10_c00015{bottom:782.385000px;}
.yf_c00015{bottom:812.445150px;}
.ye_c00015{bottom:833.325000px;}
.yd_c00015{bottom:863.385150px;}
.yc_c00015{bottom:884.490000px;}
.yb_c00015{bottom:914.370300px;}
.ya_c00015{bottom:935.430000px;}
.y9_c00015{bottom:965.490150px;}
.y8_c00015{bottom:986.370000px;}
.y7_c00015{bottom:1016.429700px;}
.y6_c00015{bottom:1037.490000px;}
.y5_c00015{bottom:1067.370300px;}
.y4_c00015{bottom:1088.430000px;}
.y3_c00015{bottom:1118.490000px;}
.y2_c00015{bottom:1155.060000px;}
.y1_c00015{bottom:1185.300000px;}
.h2_c00015{height:56.957344px;}
.h0_c00015{height:1262.880000px;}
.h1_c00015{height:1263.000000px;}
.w0_c00015{width:892.980000px;}
.w1_c00015{width:893.250000px;}
.x0_c00015{left:0.000000px;}
.x1_c00015{left:127.647750px;}
.x3_c00015{left:255.315000px;}
.x2_c00015{left:478.185000px;}
@media print{
.v0_c00015{vertical-align:0.000000pt;}
.ls1_c00015{letter-spacing:0.000000pt;}
.ls0_c00015{letter-spacing:80.417067pt;}
.ws1_c00015{word-spacing:-16.368640pt;}
.ws0_c00015{word-spacing:-13.344000pt;}
.ws2_c00015{word-spacing:0.000000pt;}
._14_c00015{margin-left:-15.003313pt;}
._a_c00015{margin-left:-9.925490pt;}
._2_c00015{margin-left:-7.199890pt;}
._4_c00015{margin-left:-4.942907pt;}
._6_c00015{margin-left:-3.571187pt;}
._5_c00015{margin-left:-2.304496pt;}
._0_c00015{margin-left:-0.971888pt;}
._3_c00015{width:1.085417pt;}
._10_c00015{width:3.383739pt;}
._8_c00015{width:5.120988pt;}
._7_c00015{width:6.563520pt;}
._9_c00015{width:7.580331pt;}
._c_c00015{width:9.008540pt;}
._b_c00015{width:10.451072pt;}
._e_c00015{width:17.487263pt;}
._d_c00015{width:18.429233pt;}
._f_c00015{width:19.719906pt;}
._13_c00015{width:20.669521pt;}
._11_c00015{width:30.558395pt;}
._12_c00015{width:31.716100pt;}
._1_c00015{width:1729.340946pt;}
.fs2_c00015{font-size:48.000000pt;}
.fs0_c00015{font-size:58.880000pt;}
.fs1_c00015{font-size:64.000000pt;}
.y0_c00015{bottom:0.000000pt;}
.y23_c00015{bottom:268.666933pt;}
.y22_c00015{bottom:287.386667pt;}
.y21_c00015{bottom:314.146800pt;}
.y20_c00015{bottom:332.706667pt;}
.y1f_c00015{bottom:359.426400pt;}
.y1e_c00015{bottom:378.146667pt;}
.y1d_c00015{bottom:404.706933pt;}
.y1c_c00015{bottom:423.426667pt;}
.y1b_c00015{bottom:450.146800pt;}
.y1a_c00015{bottom:468.706667pt;}
.y19_c00015{bottom:495.426400pt;}
.y18_c00015{bottom:514.146667pt;}
.y17_c00015{bottom:540.733600pt;}
.y16_c00015{bottom:559.453333pt;}
.y15_c00015{bottom:586.173467pt;}
.y14_c00015{bottom:604.733333pt;}
.y13_c00015{bottom:631.453067pt;}
.y12_c00015{bottom:650.173333pt;}
.y11_c00015{bottom:676.733067pt;}
.y10_c00015{bottom:695.453333pt;}
.yf_c00015{bottom:722.173467pt;}
.ye_c00015{bottom:740.733333pt;}
.yd_c00015{bottom:767.453467pt;}
.yc_c00015{bottom:786.213333pt;}
.yb_c00015{bottom:812.773600pt;}
.ya_c00015{bottom:831.493333pt;}
.y9_c00015{bottom:858.213467pt;}
.y8_c00015{bottom:876.773333pt;}
.y7_c00015{bottom:903.493067pt;}
.y6_c00015{bottom:922.213333pt;}
.y5_c00015{bottom:948.773600pt;}
.y4_c00015{bottom:967.493333pt;}
.y3_c00015{bottom:994.213333pt;}
.y2_c00015{bottom:1026.720000pt;}
.y1_c00015{bottom:1053.600000pt;}
.h2_c00015{height:50.628750pt;}
.h0_c00015{height:1122.560000pt;}
.h1_c00015{height:1122.666667pt;}
.w0_c00015{width:793.760000pt;}
.w1_c00015{width:794.000000pt;}
.x0_c00015{left:0.000000pt;}
.x1_c00015{left:113.464667pt;}
.x3_c00015{left:226.946667pt;}
.x2_c00015{left:425.053333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e9d959c308cea1e3f9b96f4e.woff2')format("woff");}.ff1_c00016{font-family:ff1_c00016;line-height:1.070312;font-style:normal;font-weight:normal;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_1490889fee606d11e1ef11c6.woff2')format("woff");}.ff2_c00016{font-family:ff2_c00016;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00016;src:url('chunks/assets/font_2c661173fbe578d4a1a8299a.woff2')format("woff");}.ff3_c00016{font-family:ff3_c00016;line-height:0.938965;font-style: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;}
.ls4_c00016{letter-spacing:0.000000px;}
.ls0_c00016{letter-spacing:0.261600px;}
.ls3_c00016{letter-spacing:0.304320px;}
.ls1_c00016{letter-spacing:0.304800px;}
.ls2_c00016{letter-spacing:0.306660px;}
.sc__c00016{text-shadow:none;}
.sc0_c00016{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00016{-webkit-text-stroke:0px transparent;}
.sc0_c00016{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00016{word-spacing:-36.829440px;}
.ws0_c00016{word-spacing:-18.414720px;}
.ws1_c00016{word-spacing:-15.012000px;}
.ws3_c00016{word-spacing:0.000000px;}
._17_c00016{margin-left:-7.608438px;}
._19_c00016{margin-left:-5.974922px;}
._18_c00016{margin-left:-4.449967px;}
._15_c00016{margin-left:-3.377452px;}
._0_c00016{margin-left:-1.388855px;}
._6_c00016{width:1.996556px;}
._5_c00016{width:3.306737px;}
._8_c00016{width:4.521675px;}
._7_c00016{width:5.896774px;}
._a_c00016{width:7.342841px;}
._9_c00016{width:8.344709px;}
._10_c00016{width:9.471804px;}
._13_c00016{width:10.595640px;}
._14_c00016{width:11.814974px;}
._e_c00016{width:15.116982px;}
._4_c00016{width:16.158329px;}
._3_c00016{width:17.353850px;}
._d_c00016{width:19.601008px;}
._b_c00016{width:20.998485px;}
._16_c00016{width:22.059400px;}
._c_c00016{width:23.571134px;}
._f_c00016{width:33.186346px;}
._12_c00016{width:45.571114px;}
._11_c00016{width:47.161536px;}
._2_c00016{width:187.479128px;}
._1a_c00016{width:845.765568px;}
._1_c00016{width:2376.728380px;}
.fc0_c00016{color:rgb(0,0,0);}
.fs2_c00016{font-size:54.000000px;}
.fs0_c00016{font-size:66.240000px;}
.fs1_c00016{font-size:84.240000px;}
.y0_c00016{bottom:0.000000px;}
.y2e_c00016{bottom:122.400000px;}
.y2d_c00016{bottom:143.496000px;}
.y2c_c00016{bottom:164.549850px;}
.y2b_c00016{bottom:185.429700px;}
.y2a_c00016{bottom:206.490000px;}
.y29_c00016{bottom:236.550000px;}
.y28_c00016{bottom:257.429850px;}
.y27_c00016{bottom:278.490150px;}
.y26_c00016{bottom:299.549850px;}
.y25_c00016{bottom:320.429700px;}
.y24_c00016{bottom:341.490000px;}
.y23_c00016{bottom:371.550150px;}
.y22_c00016{bottom:392.475150px;}
.y21_c00016{bottom:413.534850px;}
.y20_c00016{bottom:434.595150px;}
.y1f_c00016{bottom:455.475000px;}
.y1e_c00016{bottom:485.535000px;}
.y1d_c00016{bottom:506.595300px;}
.y1c_c00016{bottom:527.475150px;}
.y1b_c00016{bottom:548.534850px;}
.y1a_c00016{bottom:569.595150px;}
.y19_c00016{bottom:590.475000px;}
.y18_c00016{bottom:611.534700px;}
.y17_c00016{bottom:632.595000px;}
.y16_c00016{bottom:662.505150px;}
.y15_c00016{bottom:683.565450px;}
.y14_c00016{bottom:704.625150px;}
.y13_c00016{bottom:725.505000px;}
.y12_c00016{bottom:746.565300px;}
.y11_c00016{bottom:767.625000px;}
.y10_c00016{bottom:797.505000px;}
.yf_c00016{bottom:818.565300px;}
.ye_c00016{bottom:839.625000px;}
.yd_c00016{bottom:860.504850px;}
.yc_c00016{bottom:881.565150px;}
.yb_c00016{bottom:902.670000px;}
.ya_c00016{bottom:932.550600px;}
.y9_c00016{bottom:953.610300px;}
.y8_c00016{bottom:974.670600px;}
.y7_c00016{bottom:995.550450px;}
.y6_c00016{bottom:1016.610150px;}
.y5_c00016{bottom:1037.670450px;}
.y4_c00016{bottom:1058.550300px;}
.y3_c00016{bottom:1079.610000px;}
.y2_c00016{bottom:1109.670000px;}
.y1_c00016{bottom:1174.680000px;}
.h2_c00016{height:56.957344px;}
.h3_c00016{height:61.329023px;}
.h1_c00016{height:1263.000000px;}
.h0_c00016{height:1263.060000px;}
.w1_c00016{width:893.250000px;}
.w0_c00016{width:893.340000px;}
.x0_c00016{left:0.000000px;}
.x1_c00016{left:127.655850px;}
.x2_c00016{left:148.896150px;}
.x3_c00016{left:191.550000px;}
@media print{
.v0_c00016{vertical-align:0.000000pt;}
.ls4_c00016{letter-spacing:0.000000pt;}
.ls0_c00016{letter-spacing:0.232533pt;}
.ls3_c00016{letter-spacing:0.270507pt;}
.ls1_c00016{letter-spacing:0.270933pt;}
.ls2_c00016{letter-spacing:0.272587pt;}
.ws2_c00016{word-spacing:-32.737280pt;}
.ws0_c00016{word-spacing:-16.368640pt;}
.ws1_c00016{word-spacing:-13.344000pt;}
.ws3_c00016{word-spacing:0.000000pt;}
._17_c00016{margin-left:-6.763056pt;}
._19_c00016{margin-left:-5.311042pt;}
._18_c00016{margin-left:-3.955527pt;}
._15_c00016{margin-left:-3.002179pt;}
._0_c00016{margin-left:-1.234538pt;}
._6_c00016{width:1.774717pt;}
._5_c00016{width:2.939322pt;}
._8_c00016{width:4.019267pt;}
._7_c00016{width:5.241577pt;}
._a_c00016{width:6.526970pt;}
._9_c00016{width:7.417519pt;}
._10_c00016{width:8.419381pt;}
._13_c00016{width:9.418347pt;}
._14_c00016{width:10.502200pt;}
._e_c00016{width:13.437317pt;}
._4_c00016{width:14.362959pt;}
._3_c00016{width:15.425644pt;}
._d_c00016{width:17.423118pt;}
._b_c00016{width:18.665320pt;}
._16_c00016{width:19.608356pt;}
._c_c00016{width:20.952119pt;}
._f_c00016{width:29.498974pt;}
._12_c00016{width:40.507657pt;}
._11_c00016{width:41.921365pt;}
._2_c00016{width:166.648114pt;}
._1a_c00016{width:751.791616pt;}
._1_c00016{width:2112.647449pt;}
.fs2_c00016{font-size:48.000000pt;}
.fs0_c00016{font-size:58.880000pt;}
.fs1_c00016{font-size:74.880000pt;}
.y0_c00016{bottom:0.000000pt;}
.y2e_c00016{bottom:108.800000pt;}
.y2d_c00016{bottom:127.552000pt;}
.y2c_c00016{bottom:146.266533pt;}
.y2b_c00016{bottom:164.826400pt;}
.y2a_c00016{bottom:183.546667pt;}
.y29_c00016{bottom:210.266667pt;}
.y28_c00016{bottom:228.826533pt;}
.y27_c00016{bottom:247.546800pt;}
.y26_c00016{bottom:266.266533pt;}
.y25_c00016{bottom:284.826400pt;}
.y24_c00016{bottom:303.546667pt;}
.y23_c00016{bottom:330.266800pt;}
.y22_c00016{bottom:348.866800pt;}
.y21_c00016{bottom:367.586533pt;}
.y20_c00016{bottom:386.306800pt;}
.y1f_c00016{bottom:404.866667pt;}
.y1e_c00016{bottom:431.586667pt;}
.y1d_c00016{bottom:450.306933pt;}
.y1c_c00016{bottom:468.866800pt;}
.y1b_c00016{bottom:487.586533pt;}
.y1a_c00016{bottom:506.306800pt;}
.y19_c00016{bottom:524.866667pt;}
.y18_c00016{bottom:543.586400pt;}
.y17_c00016{bottom:562.306667pt;}
.y16_c00016{bottom:588.893467pt;}
.y15_c00016{bottom:607.613733pt;}
.y14_c00016{bottom:626.333467pt;}
.y13_c00016{bottom:644.893333pt;}
.y12_c00016{bottom:663.613600pt;}
.y11_c00016{bottom:682.333333pt;}
.y10_c00016{bottom:708.893333pt;}
.yf_c00016{bottom:727.613600pt;}
.ye_c00016{bottom:746.333333pt;}
.yd_c00016{bottom:764.893200pt;}
.yc_c00016{bottom:783.613467pt;}
.yb_c00016{bottom:802.373333pt;}
.ya_c00016{bottom:828.933867pt;}
.y9_c00016{bottom:847.653600pt;}
.y8_c00016{bottom:866.373867pt;}
.y7_c00016{bottom:884.933733pt;}
.y6_c00016{bottom:903.653467pt;}
.y5_c00016{bottom:922.373733pt;}
.y4_c00016{bottom:940.933600pt;}
.y3_c00016{bottom:959.653333pt;}
.y2_c00016{bottom:986.373333pt;}
.y1_c00016{bottom:1044.160000pt;}
.h2_c00016{height:50.628750pt;}
.h3_c00016{height:54.514688pt;}
.h1_c00016{height:1122.666667pt;}
.h0_c00016{height:1122.720000pt;}
.w1_c00016{width:794.000000pt;}
.w0_c00016{width:794.080000pt;}
.x0_c00016{left:0.000000pt;}
.x1_c00016{left:113.471867pt;}
.x2_c00016{left:132.352133pt;}
.x3_c00016{left:170.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_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_ff14dfd9f3c3506dc3c8ff66.woff2')format("woff");}.ff1_c00017{font-family:ff1_c00017;line-height:1.070312;font-style:normal;font-weight:normal;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_8b0701136755e70ca98120f9.woff2')format("woff");}.ff2_c00017{font-family:ff2_c00017;line-height:0.666504;font-style:normal;font-weight:normal;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_ed685c7127c5fef0af2c2150.woff2')format("woff");}.ff3_c00017{font-family:ff3_c00017;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00017{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00017{vertical-align:0.000000px;}
.ls4_c00017{letter-spacing:0.000000px;}
.ls3_c00017{letter-spacing:0.109860px;}
.ls1_c00017{letter-spacing:0.304320px;}
.ls2_c00017{letter-spacing:0.304800px;}
.ls0_c00017{letter-spacing:0.829380px;}
.sc__c00017{text-shadow:none;}
.sc0_c00017{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00017{-webkit-text-stroke:0px transparent;}
.sc0_c00017{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00017{word-spacing:-18.414720px;}
.ws2_c00017{word-spacing:-16.560000px;}
.ws1_c00017{word-spacing:-15.012000px;}
.ws3_c00017{word-spacing:0.000000px;}
._f_c00017{margin-left:-4.495133px;}
._10_c00017{margin-left:-3.436064px;}
._0_c00017{margin-left:-1.388855px;}
._5_c00017{width:1.128217px;}
._6_c00017{width:2.615082px;}
._12_c00017{width:4.031069px;}
._4_c00017{width:5.661312px;}
._3_c00017{width:6.852806px;}
._11_c00017{width:8.247988px;}
._17_c00017{width:9.317104px;}
._8_c00017{width:10.929836px;}
._7_c00017{width:12.254368px;}
._15_c00017{width:13.609641px;}
._16_c00017{width:14.695343px;}
._a_c00017{width:15.706660px;}
._2_c00017{width:16.840900px;}
._13_c00017{width:20.204762px;}
._14_c00017{width:21.253773px;}
._c_c00017{width:23.911725px;}
._b_c00017{width:25.234194px;}
._18_c00017{width:27.449119px;}
._e_c00017{width:28.541248px;}
._d_c00017{width:29.707528px;}
._9_c00017{width:79.252176px;}
._1_c00017{width:2376.728380px;}
.fc0_c00017{color:rgb(0,0,0);}
.fs1_c00017{font-size:54.000000px;}
.fs0_c00017{font-size:66.240000px;}
.fs2_c00017{font-size:72.000000px;}
.y0_c00017{bottom:0.000000px;}
.y2b_c00017{bottom:96.120000px;}
.y2a_c00017{bottom:120.059700px;}
.y29_c00017{bottom:144.216150px;}
.y28_c00017{bottom:194.430000px;}
.y27_c00017{bottom:224.490000px;}
.y26_c00017{bottom:254.550000px;}
.y25_c00017{bottom:284.430000px;}
.y24_c00017{bottom:305.490300px;}
.y23_c00017{bottom:326.550000px;}
.y22_c00017{bottom:347.429850px;}
.y21_c00017{bottom:368.490150px;}
.y20_c00017{bottom:389.595000px;}
.y1f_c00017{bottom:419.475150px;}
.y1e_c00017{bottom:440.534850px;}
.y1d_c00017{bottom:461.595150px;}
.y1c_c00017{bottom:482.475000px;}
.y1b_c00017{bottom:503.534700px;}
.y1a_c00017{bottom:524.595000px;}
.y19_c00017{bottom:554.475000px;}
.y18_c00017{bottom:575.534700px;}
.y17_c00017{bottom:596.595000px;}
.y16_c00017{bottom:626.474700px;}
.y15_c00017{bottom:647.565000px;}
.y14_c00017{bottom:677.624850px;}
.y13_c00017{bottom:698.504700px;}
.y12_c00017{bottom:719.565000px;}
.y11_c00017{bottom:749.625150px;}
.y10_c00017{bottom:770.505000px;}
.yf_c00017{bottom:800.565300px;}
.ye_c00017{bottom:821.625000px;}
.yd_c00017{bottom:851.504700px;}
.yc_c00017{bottom:872.565000px;}
.yb_c00017{bottom:902.670150px;}
.ya_c00017{bottom:923.550000px;}
.y9_c00017{bottom:953.609700px;}
.y8_c00017{bottom:974.670000px;}
.y7_c00017{bottom:1004.550450px;}
.y6_c00017{bottom:1025.610150px;}
.y5_c00017{bottom:1046.670450px;}
.y4_c00017{bottom:1067.550300px;}
.y3_c00017{bottom:1088.610000px;}
.y2_c00017{bottom:1118.670000px;}
.y1_c00017{bottom:1174.680000px;}
.h3_c00017{height:52.417969px;}
.h2_c00017{height:56.957344px;}
.h4_c00017{height:61.910156px;}
.h1_c00017{height:1263.000000px;}
.h0_c00017{height:1263.060000px;}
.w1_c00017{width:893.250000px;}
.w0_c00017{width:893.340000px;}
.x0_c00017{left:0.000000px;}
.x1_c00017{left:127.655850px;}
.x2_c00017{left:148.896150px;}
.x3_c00017{left:159.690150px;}
@media print{
.v0_c00017{vertical-align:0.000000pt;}
.ls4_c00017{letter-spacing:0.000000pt;}
.ls3_c00017{letter-spacing:0.097653pt;}
.ls1_c00017{letter-spacing:0.270507pt;}
.ls2_c00017{letter-spacing:0.270933pt;}
.ls0_c00017{letter-spacing:0.737227pt;}
.ws0_c00017{word-spacing:-16.368640pt;}
.ws2_c00017{word-spacing:-14.720000pt;}
.ws1_c00017{word-spacing:-13.344000pt;}
.ws3_c00017{word-spacing:0.000000pt;}
._f_c00017{margin-left:-3.995673pt;}
._10_c00017{margin-left:-3.054279pt;}
._0_c00017{margin-left:-1.234538pt;}
._5_c00017{width:1.002859pt;}
._6_c00017{width:2.324518pt;}
._12_c00017{width:3.583172pt;}
._4_c00017{width:5.032277pt;}
._3_c00017{width:6.091383pt;}
._11_c00017{width:7.331545pt;}
._17_c00017{width:8.281871pt;}
._8_c00017{width:9.715410pt;}
._7_c00017{width:10.892772pt;}
._15_c00017{width:12.097459pt;}
._16_c00017{width:13.062527pt;}
._a_c00017{width:13.961475pt;}
._2_c00017{width:14.969689pt;}
._13_c00017{width:17.959788pt;}
._14_c00017{width:18.892243pt;}
._c_c00017{width:21.254867pt;}
._b_c00017{width:22.430394pt;}
._18_c00017{width:24.399217pt;}
._e_c00017{width:25.369998pt;}
._d_c00017{width:26.406691pt;}
._9_c00017{width:70.446379pt;}
._1_c00017{width:2112.647449pt;}
.fs1_c00017{font-size:48.000000pt;}
.fs0_c00017{font-size:58.880000pt;}
.fs2_c00017{font-size:64.000000pt;}
.y0_c00017{bottom:0.000000pt;}
.y2b_c00017{bottom:85.440000pt;}
.y2a_c00017{bottom:106.719733pt;}
.y29_c00017{bottom:128.192133pt;}
.y28_c00017{bottom:172.826667pt;}
.y27_c00017{bottom:199.546667pt;}
.y26_c00017{bottom:226.266667pt;}
.y25_c00017{bottom:252.826667pt;}
.y24_c00017{bottom:271.546933pt;}
.y23_c00017{bottom:290.266667pt;}
.y22_c00017{bottom:308.826533pt;}
.y21_c00017{bottom:327.546800pt;}
.y20_c00017{bottom:346.306667pt;}
.y1f_c00017{bottom:372.866800pt;}
.y1e_c00017{bottom:391.586533pt;}
.y1d_c00017{bottom:410.306800pt;}
.y1c_c00017{bottom:428.866667pt;}
.y1b_c00017{bottom:447.586400pt;}
.y1a_c00017{bottom:466.306667pt;}
.y19_c00017{bottom:492.866667pt;}
.y18_c00017{bottom:511.586400pt;}
.y17_c00017{bottom:530.306667pt;}
.y16_c00017{bottom:556.866400pt;}
.y15_c00017{bottom:575.613333pt;}
.y14_c00017{bottom:602.333200pt;}
.y13_c00017{bottom:620.893067pt;}
.y12_c00017{bottom:639.613333pt;}
.y11_c00017{bottom:666.333467pt;}
.y10_c00017{bottom:684.893333pt;}
.yf_c00017{bottom:711.613600pt;}
.ye_c00017{bottom:730.333333pt;}
.yd_c00017{bottom:756.893067pt;}
.yc_c00017{bottom:775.613333pt;}
.yb_c00017{bottom:802.373467pt;}
.ya_c00017{bottom:820.933333pt;}
.y9_c00017{bottom:847.653067pt;}
.y8_c00017{bottom:866.373333pt;}
.y7_c00017{bottom:892.933733pt;}
.y6_c00017{bottom:911.653467pt;}
.y5_c00017{bottom:930.373733pt;}
.y4_c00017{bottom:948.933600pt;}
.y3_c00017{bottom:967.653333pt;}
.y2_c00017{bottom:994.373333pt;}
.y1_c00017{bottom:1044.160000pt;}
.h3_c00017{height:46.593750pt;}
.h2_c00017{height:50.628750pt;}
.h4_c00017{height:55.031250pt;}
.h1_c00017{height:1122.666667pt;}
.h0_c00017{height:1122.720000pt;}
.w1_c00017{width:794.000000pt;}
.w0_c00017{width:794.080000pt;}
.x0_c00017{left:0.000000pt;}
.x1_c00017{left:113.471867pt;}
.x2_c00017{left:132.352133pt;}
.x3_c00017{left:141.946800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6d81130403e910a6ab722b63.woff2')format("woff");}.ff1_c00018{font-family:ff1_c00018;line-height:1.070312;font-style:normal;font-weight:normal;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_aea9d8c8841366f76919f394.woff2')format("woff");}.ff2_c00018{font-family:ff2_c00018;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00018;src:url('chunks/assets/font_8b0701136755e70ca98120f9.woff2')format("woff");}.ff3_c00018{font-family:ff3_c00018;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00018{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00018{vertical-align:0.000000px;}
.ls0_c00018{letter-spacing:0.000000px;}
.sc__c00018{text-shadow:none;}
.sc0_c00018{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00018{-webkit-text-stroke:0px transparent;}
.sc0_c00018{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00018{word-spacing:-16.560000px;}
.ws1_c00018{word-spacing:0.000000px;}
._12_c00018{margin-left:-7.144968px;}
._19_c00018{margin-left:-3.974848px;}
._1a_c00018{margin-left:-2.745095px;}
._0_c00018{margin-left:-1.388855px;}
._5_c00018{width:1.920703px;}
._15_c00018{width:4.037225px;}
._10_c00018{width:6.291834px;}
._11_c00018{width:7.301169px;}
._9_c00018{width:10.232164px;}
._4_c00018{width:11.301928px;}
._6_c00018{width:12.915245px;}
._18_c00018{width:13.944437px;}
._14_c00018{width:23.184404px;}
._13_c00018{width:24.338808px;}
._16_c00018{width:25.339719px;}
._f_c00018{width:26.562204px;}
._c_c00018{width:29.540322px;}
._d_c00018{width:31.215568px;}
._7_c00018{width:34.732826px;}
._8_c00018{width:36.072916px;}
._17_c00018{width:39.809620px;}
._b_c00018{width:45.348393px;}
._a_c00018{width:46.699068px;}
._2_c00018{width:49.284070px;}
._3_c00018{width:50.333383px;}
._e_c00018{width:79.252176px;}
._1b_c00018{width:845.765568px;}
._1_c00018{width:2376.728380px;}
.fc0_c00018{color:rgb(0,0,0);}
.fs0_c00018{font-size:66.240000px;}
.y0_c00018{bottom:0.000000px;}
.y29_c00018{bottom:137.376000px;}
.y28_c00018{bottom:158.430000px;}
.y27_c00018{bottom:179.490300px;}
.y26_c00018{bottom:200.550000px;}
.y25_c00018{bottom:221.429700px;}
.y24_c00018{bottom:242.490000px;}
.y23_c00018{bottom:281.549850px;}
.y22_c00018{bottom:302.429700px;}
.y21_c00018{bottom:323.490000px;}
.y20_c00018{bottom:344.550150px;}
.y1f_c00018{bottom:365.430000px;}
.y1e_c00018{bottom:404.534700px;}
.y1d_c00018{bottom:425.595000px;}
.y1c_c00018{bottom:455.475150px;}
.y1b_c00018{bottom:476.534850px;}
.y1a_c00018{bottom:497.595150px;}
.y19_c00018{bottom:518.475000px;}
.y18_c00018{bottom:557.535150px;}
.y17_c00018{bottom:578.595450px;}
.y16_c00018{bottom:599.475300px;}
.y15_c00018{bottom:620.535000px;}
.y14_c00018{bottom:650.625000px;}
.y13_c00018{bottom:680.505000px;}
.y12_c00018{bottom:710.565300px;}
.y11_c00018{bottom:731.625000px;}
.y10_c00018{bottom:761.505000px;}
.yf_c00018{bottom:791.565450px;}
.ye_c00018{bottom:812.625150px;}
.yd_c00018{bottom:833.505000px;}
.yc_c00018{bottom:872.565150px;}
.yb_c00018{bottom:893.670000px;}
.ya_c00018{bottom:923.550450px;}
.y9_c00018{bottom:944.610150px;}
.y8_c00018{bottom:965.670450px;}
.y7_c00018{bottom:986.550300px;}
.y6_c00018{bottom:1007.610000px;}
.y5_c00018{bottom:1037.670150px;}
.y4_c00018{bottom:1058.550000px;}
.y3_c00018{bottom:1097.609700px;}
.y2_c00018{bottom:1118.670000px;}
.y1_c00018{bottom:1174.680000px;}
.h3_c00018{height:48.224531px;}
.h2_c00018{height:56.957344px;}
.h1_c00018{height:1263.000000px;}
.h0_c00018{height:1263.060000px;}
.w1_c00018{width:893.250000px;}
.w0_c00018{width:893.340000px;}
.x0_c00018{left:0.000000px;}
.x1_c00018{left:127.655850px;}
.x2_c00018{left:148.896150px;}
.x3_c00018{left:159.690150px;}
.x4_c00018{left:191.550000px;}
@media print{
.v0_c00018{vertical-align:0.000000pt;}
.ls0_c00018{letter-spacing:0.000000pt;}
.ws0_c00018{word-spacing:-14.720000pt;}
.ws1_c00018{word-spacing:0.000000pt;}
._12_c00018{margin-left:-6.351082pt;}
._19_c00018{margin-left:-3.533199pt;}
._1a_c00018{margin-left:-2.440084pt;}
._0_c00018{margin-left:-1.234538pt;}
._5_c00018{width:1.707292pt;}
._15_c00018{width:3.588644pt;}
._10_c00018{width:5.592741pt;}
._11_c00018{width:6.489928pt;}
._9_c00018{width:9.095257pt;}
._4_c00018{width:10.046159pt;}
._6_c00018{width:11.480217pt;}
._18_c00018{width:12.395055pt;}
._14_c00018{width:20.608359pt;}
._13_c00018{width:21.634496pt;}
._16_c00018{width:22.524195pt;}
._f_c00018{width:23.610848pt;}
._c_c00018{width:26.258064pt;}
._d_c00018{width:27.747172pt;}
._7_c00018{width:30.873623pt;}
._8_c00018{width:32.064814pt;}
._17_c00018{width:35.386329pt;}
._b_c00018{width:40.309683pt;}
._a_c00018{width:41.510282pt;}
._2_c00018{width:43.808062pt;}
._3_c00018{width:44.740785pt;}
._e_c00018{width:70.446379pt;}
._1b_c00018{width:751.791616pt;}
._1_c00018{width:2112.647449pt;}
.fs0_c00018{font-size:58.880000pt;}
.y0_c00018{bottom:0.000000pt;}
.y29_c00018{bottom:122.112000pt;}
.y28_c00018{bottom:140.826667pt;}
.y27_c00018{bottom:159.546933pt;}
.y26_c00018{bottom:178.266667pt;}
.y25_c00018{bottom:196.826400pt;}
.y24_c00018{bottom:215.546667pt;}
.y23_c00018{bottom:250.266533pt;}
.y22_c00018{bottom:268.826400pt;}
.y21_c00018{bottom:287.546667pt;}
.y20_c00018{bottom:306.266800pt;}
.y1f_c00018{bottom:324.826667pt;}
.y1e_c00018{bottom:359.586400pt;}
.y1d_c00018{bottom:378.306667pt;}
.y1c_c00018{bottom:404.866800pt;}
.y1b_c00018{bottom:423.586533pt;}
.y1a_c00018{bottom:442.306800pt;}
.y19_c00018{bottom:460.866667pt;}
.y18_c00018{bottom:495.586800pt;}
.y17_c00018{bottom:514.307067pt;}
.y16_c00018{bottom:532.866933pt;}
.y15_c00018{bottom:551.586667pt;}
.y14_c00018{bottom:578.333333pt;}
.y13_c00018{bottom:604.893333pt;}
.y12_c00018{bottom:631.613600pt;}
.y11_c00018{bottom:650.333333pt;}
.y10_c00018{bottom:676.893333pt;}
.yf_c00018{bottom:703.613733pt;}
.ye_c00018{bottom:722.333467pt;}
.yd_c00018{bottom:740.893333pt;}
.yc_c00018{bottom:775.613467pt;}
.yb_c00018{bottom:794.373333pt;}
.ya_c00018{bottom:820.933733pt;}
.y9_c00018{bottom:839.653467pt;}
.y8_c00018{bottom:858.373733pt;}
.y7_c00018{bottom:876.933600pt;}
.y6_c00018{bottom:895.653333pt;}
.y5_c00018{bottom:922.373467pt;}
.y4_c00018{bottom:940.933333pt;}
.y3_c00018{bottom:975.653067pt;}
.y2_c00018{bottom:994.373333pt;}
.y1_c00018{bottom:1044.160000pt;}
.h3_c00018{height:42.866250pt;}
.h2_c00018{height:50.628750pt;}
.h1_c00018{height:1122.666667pt;}
.h0_c00018{height:1122.720000pt;}
.w1_c00018{width:794.000000pt;}
.w0_c00018{width:794.080000pt;}
.x0_c00018{left:0.000000pt;}
.x1_c00018{left:113.471867pt;}
.x2_c00018{left:132.352133pt;}
.x3_c00018{left:141.946800pt;}
.x4_c00018{left:170.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_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_9f4ee8ca523822a2b6230d7a.woff2')format("woff");}.ff1_c00019{font-family:ff1_c00019;line-height:1.070312;font-style:normal;font-weight:normal;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_49142a5b21f3b3c4875c2214.woff2')format("woff");}.ff2_c00019{font-family:ff2_c00019;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00019;src:url('chunks/assets/font_58e0ce32054c8064fefe9da8.woff2')format("woff");}.ff3_c00019{font-family:ff3_c00019;line-height:0.666504;font-style: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:-5.760936px;}
.v0_c00019{vertical-align:0.000000px;}
.ls0_c00019{letter-spacing:0.000000px;}
.sc__c00019{text-shadow:none;}
.sc0_c00019{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00019{-webkit-text-stroke:0px transparent;}
.sc0_c00019{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00019{word-spacing:-36.829440px;}
.ws1_c00019{word-spacing:-11.609280px;}
.ws2_c00019{word-spacing:0.000000px;}
._2_c00019{margin-left:-7.112643px;}
._7_c00019{margin-left:-6.038729px;}
._8_c00019{margin-left:-4.163582px;}
._3_c00019{margin-left:-3.113669px;}
._0_c00019{margin-left:-1.388855px;}
._9_c00019{width:1.872581px;}
._6_c00019{width:5.230661px;}
._4_c00019{width:6.291796px;}
._5_c00019{width:8.027483px;}
._a_c00019{width:845.687751px;}
._1_c00019{width:2376.728380px;}
.fc0_c00019{color:rgb(0,0,0);}
.fs1_c00019{font-size:41.760000px;}
.fs0_c00019{font-size:66.240000px;}
.y0_c00019{bottom:0.000000px;}
.yd_c00019{bottom:860.504850px;}
.yc_c00019{bottom:881.565150px;}
.yb_c00019{bottom:902.670000px;}
.ya_c00019{bottom:923.550300px;}
.y9_c00019{bottom:944.610000px;}
.y8_c00019{bottom:983.670000px;}
.y7_c00019{bottom:1013.550150px;}
.y6_c00019{bottom:1034.609850px;}
.y5_c00019{bottom:1055.670150px;}
.y4_c00019{bottom:1076.550000px;}
.y3_c00019{bottom:1097.609700px;}
.y2_c00019{bottom:1118.670000px;}
.y1_c00019{bottom:1174.680000px;}
.h3_c00019{height:48.224531px;}
.h2_c00019{height:56.957344px;}
.h1_c00019{height:1263.000000px;}
.h0_c00019{height:1263.060000px;}
.w1_c00019{width:893.250000px;}
.w0_c00019{width:893.340000px;}
.x0_c00019{left:0.000000px;}
.x1_c00019{left:127.655850px;}
.x2_c00019{left:148.895850px;}
@media print{
.v1_c00019{vertical-align:-5.120832pt;}
.v0_c00019{vertical-align:0.000000pt;}
.ls0_c00019{letter-spacing:0.000000pt;}
.ws0_c00019{word-spacing:-32.737280pt;}
.ws1_c00019{word-spacing:-10.319360pt;}
.ws2_c00019{word-spacing:0.000000pt;}
._2_c00019{margin-left:-6.322349pt;}
._7_c00019{margin-left:-5.367759pt;}
._8_c00019{margin-left:-3.700961pt;}
._3_c00019{margin-left:-2.767706pt;}
._0_c00019{margin-left:-1.234538pt;}
._9_c00019{width:1.664516pt;}
._6_c00019{width:4.649476pt;}
._4_c00019{width:5.592708pt;}
._5_c00019{width:7.135540pt;}
._a_c00019{width:751.722445pt;}
._1_c00019{width:2112.647449pt;}
.fs1_c00019{font-size:37.120000pt;}
.fs0_c00019{font-size:58.880000pt;}
.y0_c00019{bottom:0.000000pt;}
.yd_c00019{bottom:764.893200pt;}
.yc_c00019{bottom:783.613467pt;}
.yb_c00019{bottom:802.373333pt;}
.ya_c00019{bottom:820.933600pt;}
.y9_c00019{bottom:839.653333pt;}
.y8_c00019{bottom:874.373333pt;}
.y7_c00019{bottom:900.933467pt;}
.y6_c00019{bottom:919.653200pt;}
.y5_c00019{bottom:938.373467pt;}
.y4_c00019{bottom:956.933333pt;}
.y3_c00019{bottom:975.653067pt;}
.y2_c00019{bottom:994.373333pt;}
.y1_c00019{bottom:1044.160000pt;}
.h3_c00019{height:42.866250pt;}
.h2_c00019{height:50.628750pt;}
.h1_c00019{height:1122.666667pt;}
.h0_c00019{height:1122.720000pt;}
.w1_c00019{width:794.000000pt;}
.w0_c00019{width:794.080000pt;}
.x0_c00019{left:0.000000pt;}
.x1_c00019{left:113.471867pt;}
.x2_c00019{left:132.351867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6603e421777c290f27087f7d.woff2')format("woff");}.ff1_c00020{font-family:ff1_c00020;line-height:1.070312;font-style:normal;font-weight:normal;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_e1878f91ca034d7651837af3.woff2')format("woff");}.ff2_c00020{font-family:ff2_c00020;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00020;src:url('chunks/assets/font_8b0701136755e70ca98120f9.woff2')format("woff");}.ff3_c00020{font-family:ff3_c00020;line-height:0.666504;font-style:normal;font-weight:normal;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_41edf94029df3caf64348e39.woff2')format("woff");}.ff4_c00020{font-family:ff4_c00020;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00020{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00020{vertical-align:0.000000px;}
.ls1_c00020{letter-spacing:0.000000px;}
.ls0_c00020{letter-spacing:79.481280px;}
.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;}
}
.ws2_c00020{word-spacing:-36.829440px;}
.ws1_c00020{word-spacing:-16.560000px;}
.ws0_c00020{word-spacing:-15.012000px;}
.ws3_c00020{word-spacing:0.000000px;}
._9_c00020{margin-left:-2.914759px;}
._0_c00020{margin-left:-1.059761px;}
._c_c00020{width:1.086416px;}
._6_c00020{width:3.114370px;}
._10_c00020{width:4.237875px;}
._11_c00020{width:5.304824px;}
._f_c00020{width:6.422454px;}
._e_c00020{width:8.146610px;}
._5_c00020{width:9.206060px;}
._12_c00020{width:10.929777px;}
._13_c00020{width:11.963482px;}
._1b_c00020{width:13.908502px;}
._a_c00020{width:15.234604px;}
._b_c00020{width:20.135918px;}
._d_c00020{width:21.144868px;}
._7_c00020{width:22.387746px;}
._15_c00020{width:27.281744px;}
._14_c00020{width:31.196711px;}
._19_c00020{width:41.091220px;}
._3_c00020{width:49.746380px;}
._4_c00020{width:50.872292px;}
._8_c00020{width:62.288245px;}
._18_c00020{width:77.920594px;}
._16_c00020{width:79.252176px;}
._17_c00020{width:181.219379px;}
._2_c00020{width:187.479128px;}
._1a_c00020{width:236.463552px;}
._1_c00020{width:1671.608053px;}
.fc0_c00020{color:rgb(0,0,0);}
.fs2_c00020{font-size:54.000000px;}
.fs0_c00020{font-size:66.240000px;}
.fs1_c00020{font-size:84.240000px;}
.y0_c00020{bottom:0.000000px;}
.y2b_c00020{bottom:95.400000px;}
.y2a_c00020{bottom:116.459700px;}
.y29_c00020{bottom:137.555850px;}
.y28_c00020{bottom:158.429850px;}
.y27_c00020{bottom:179.490150px;}
.y26_c00020{bottom:200.549850px;}
.y25_c00020{bottom:221.429700px;}
.y24_c00020{bottom:242.490000px;}
.y23_c00020{bottom:272.550000px;}
.y22_c00020{bottom:302.430000px;}
.y21_c00020{bottom:332.490000px;}
.y20_c00020{bottom:362.550000px;}
.y1f_c00020{bottom:392.475300px;}
.y1e_c00020{bottom:413.535000px;}
.y1d_c00020{bottom:443.595000px;}
.y1c_c00020{bottom:473.475000px;}
.y1b_c00020{bottom:503.535000px;}
.y1a_c00020{bottom:533.595000px;}
.y19_c00020{bottom:563.475000px;}
.y18_c00020{bottom:593.535150px;}
.y17_c00020{bottom:614.595450px;}
.y16_c00020{bottom:635.475300px;}
.y15_c00020{bottom:656.565600px;}
.y14_c00020{bottom:677.625300px;}
.y13_c00020{bottom:698.505150px;}
.y12_c00020{bottom:719.565450px;}
.y11_c00020{bottom:740.625150px;}
.y10_c00020{bottom:761.505000px;}
.yf_c00020{bottom:791.566350px;}
.ye_c00020{bottom:812.626050px;}
.yd_c00020{bottom:833.505900px;}
.yc_c00020{bottom:854.565600px;}
.yb_c00020{bottom:875.625300px;}
.ya_c00020{bottom:896.550300px;}
.y9_c00020{bottom:917.610000px;}
.y8_c00020{bottom:947.670000px;}
.y7_c00020{bottom:1004.550450px;}
.y6_c00020{bottom:1025.610150px;}
.y5_c00020{bottom:1046.670450px;}
.y4_c00020{bottom:1067.550300px;}
.y3_c00020{bottom:1088.610000px;}
.y2_c00020{bottom:1118.670000px;}
.y1_c00020{bottom:1174.680000px;}
.h4_c00020{height:48.224531px;}
.h2_c00020{height:56.957344px;}
.h3_c00020{height:61.329023px;}
.h1_c00020{height:1263.000000px;}
.h0_c00020{height:1263.060000px;}
.w1_c00020{width:893.250000px;}
.w0_c00020{width:893.340000px;}
.x0_c00020{left:0.000000px;}
.x1_c00020{left:127.655850px;}
.x2_c00020{left:148.896150px;}
.x3_c00020{left:159.690150px;}
@media print{
.v0_c00020{vertical-align:0.000000pt;}
.ls1_c00020{letter-spacing:0.000000pt;}
.ls0_c00020{letter-spacing:70.650027pt;}
.ws2_c00020{word-spacing:-32.737280pt;}
.ws1_c00020{word-spacing:-14.720000pt;}
.ws0_c00020{word-spacing:-13.344000pt;}
.ws3_c00020{word-spacing:0.000000pt;}
._9_c00020{margin-left:-2.590897pt;}
._0_c00020{margin-left:-0.942009pt;}
._c_c00020{width:0.965703pt;}
._6_c00020{width:2.768329pt;}
._10_c00020{width:3.767000pt;}
._11_c00020{width:4.715400pt;}
._f_c00020{width:5.708848pt;}
._e_c00020{width:7.241431pt;}
._5_c00020{width:8.183164pt;}
._12_c00020{width:9.715357pt;}
._13_c00020{width:10.634206pt;}
._1b_c00020{width:12.363112pt;}
._a_c00020{width:13.541870pt;}
._b_c00020{width:17.898594pt;}
._d_c00020{width:18.795438pt;}
._7_c00020{width:19.900219pt;}
._15_c00020{width:24.250439pt;}
._14_c00020{width:27.730410pt;}
._19_c00020{width:36.525529pt;}
._3_c00020{width:44.219004pt;}
._4_c00020{width:45.219815pt;}
._8_c00020{width:55.367329pt;}
._18_c00020{width:69.262750pt;}
._16_c00020{width:70.446379pt;}
._17_c00020{width:161.083893pt;}
._2_c00020{width:166.648114pt;}
._1a_c00020{width:210.189824pt;}
._1_c00020{width:1485.873825pt;}
.fs2_c00020{font-size:48.000000pt;}
.fs0_c00020{font-size:58.880000pt;}
.fs1_c00020{font-size:74.880000pt;}
.y0_c00020{bottom:0.000000pt;}
.y2b_c00020{bottom:84.800000pt;}
.y2a_c00020{bottom:103.519733pt;}
.y29_c00020{bottom:122.271867pt;}
.y28_c00020{bottom:140.826533pt;}
.y27_c00020{bottom:159.546800pt;}
.y26_c00020{bottom:178.266533pt;}
.y25_c00020{bottom:196.826400pt;}
.y24_c00020{bottom:215.546667pt;}
.y23_c00020{bottom:242.266667pt;}
.y22_c00020{bottom:268.826667pt;}
.y21_c00020{bottom:295.546667pt;}
.y20_c00020{bottom:322.266667pt;}
.y1f_c00020{bottom:348.866933pt;}
.y1e_c00020{bottom:367.586667pt;}
.y1d_c00020{bottom:394.306667pt;}
.y1c_c00020{bottom:420.866667pt;}
.y1b_c00020{bottom:447.586667pt;}
.y1a_c00020{bottom:474.306667pt;}
.y19_c00020{bottom:500.866667pt;}
.y18_c00020{bottom:527.586800pt;}
.y17_c00020{bottom:546.307067pt;}
.y16_c00020{bottom:564.866933pt;}
.y15_c00020{bottom:583.613867pt;}
.y14_c00020{bottom:602.333600pt;}
.y13_c00020{bottom:620.893467pt;}
.y12_c00020{bottom:639.613733pt;}
.y11_c00020{bottom:658.333467pt;}
.y10_c00020{bottom:676.893333pt;}
.yf_c00020{bottom:703.614533pt;}
.ye_c00020{bottom:722.334267pt;}
.yd_c00020{bottom:740.894133pt;}
.yc_c00020{bottom:759.613867pt;}
.yb_c00020{bottom:778.333600pt;}
.ya_c00020{bottom:796.933600pt;}
.y9_c00020{bottom:815.653333pt;}
.y8_c00020{bottom:842.373333pt;}
.y7_c00020{bottom:892.933733pt;}
.y6_c00020{bottom:911.653467pt;}
.y5_c00020{bottom:930.373733pt;}
.y4_c00020{bottom:948.933600pt;}
.y3_c00020{bottom:967.653333pt;}
.y2_c00020{bottom:994.373333pt;}
.y1_c00020{bottom:1044.160000pt;}
.h4_c00020{height:42.866250pt;}
.h2_c00020{height:50.628750pt;}
.h3_c00020{height:54.514688pt;}
.h1_c00020{height:1122.666667pt;}
.h0_c00020{height:1122.720000pt;}
.w1_c00020{width:794.000000pt;}
.w0_c00020{width:794.080000pt;}
.x0_c00020{left:0.000000pt;}
.x1_c00020{left:113.471867pt;}
.x2_c00020{left:132.352133pt;}
.x3_c00020{left:141.946800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bcca6a0734fa81d5f59b06b4.woff2')format("woff");}.ff1_c00021{font-family:ff1_c00021;line-height:1.070312;font-style: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);}
.m1_c00021{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_c00021{vertical-align:0.000000px;}
.ls5_c00021{letter-spacing:0.000000px;}
.ls2_c00021{letter-spacing:0.107520px;}
.ls3_c00021{letter-spacing:0.261600px;}
.ls0_c00021{letter-spacing:0.263940px;}
.ls1_c00021{letter-spacing:5.146620px;}
.ls4_c00021{letter-spacing:20.268480px;}
.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;}
}
.ws1_c00021{word-spacing:-18.414720px;}
.ws0_c00021{word-spacing:-15.012000px;}
.ws2_c00021{word-spacing:0.000000px;}
._f_c00021{margin-left:-4.142659px;}
._e_c00021{margin-left:-3.112253px;}
._0_c00021{margin-left:-1.059761px;}
._4_c00021{width:1.060069px;}
._7_c00021{width:2.220125px;}
._17_c00021{width:3.304418px;}
._8_c00021{width:4.306845px;}
._9_c00021{width:5.356326px;}
._5_c00021{width:6.488904px;}
._6_c00021{width:7.616487px;}
._3_c00021{width:8.676668px;}
._10_c00021{width:9.938102px;}
._c_c00021{width:13.802765px;}
._b_c00021{width:15.123464px;}
._d_c00021{width:17.288629px;}
._12_c00021{width:19.805164px;}
._a_c00021{width:21.064333px;}
._14_c00021{width:22.160367px;}
._2_c00021{width:23.251011px;}
._15_c00021{width:25.070848px;}
._16_c00021{width:26.165413px;}
._11_c00021{width:34.312748px;}
._13_c00021{width:39.945397px;}
._1_c00021{width:1671.608053px;}
.fc0_c00021{color:rgb(0,0,0);}
.fs1_c00021{font-size:54.000000px;}
.fs0_c00021{font-size:66.240000px;}
.y0_c00021{bottom:0.000000px;}
.y1e_c00021{bottom:109.799850px;}
.y1d_c00021{bottom:130.859550px;}
.y1c_c00021{bottom:151.949850px;}
.y1b_c00021{bottom:172.829700px;}
.y1a_c00021{bottom:193.890000px;}
.y19_c00021{bottom:223.950000px;}
.y18_c00021{bottom:262.829700px;}
.y17_c00021{bottom:283.890000px;}
.y16_c00021{bottom:689.505750px;}
.y15_c00021{bottom:710.565450px;}
.y14_c00021{bottom:731.625150px;}
.y13_c00021{bottom:752.505000px;}
.y12_c00021{bottom:773.565300px;}
.y11_c00021{bottom:794.625000px;}
.y10_c00021{bottom:824.504850px;}
.yf_c00021{bottom:845.565150px;}
.ye_c00021{bottom:866.624850px;}
.yd_c00021{bottom:887.504700px;}
.yc_c00021{bottom:908.609550px;}
.yb_c00021{bottom:929.669850px;}
.ya_c00021{bottom:950.549700px;}
.y9_c00021{bottom:971.609400px;}
.y8_c00021{bottom:992.669700px;}
.y7_c00021{bottom:1013.549550px;}
.y6_c00021{bottom:1034.609850px;}
.y5_c00021{bottom:1055.670150px;}
.y4_c00021{bottom:1076.550000px;}
.y3_c00021{bottom:1097.609700px;}
.y2_c00021{bottom:1118.670000px;}
.y1_c00021{bottom:1174.680000px;}
.h2_c00021{height:56.957344px;}
.h1_c00021{height:1263.000000px;}
.h0_c00021{height:1263.060000px;}
.w1_c00021{width:893.250000px;}
.w0_c00021{width:893.340000px;}
.x0_c00021{left:0.000000px;}
.x1_c00021{left:127.655850px;}
.x2_c00021{left:148.896150px;}
.x3_c00021{left:234.029850px;}
@media print{
.v0_c00021{vertical-align:0.000000pt;}
.ls5_c00021{letter-spacing:0.000000pt;}
.ls2_c00021{letter-spacing:0.095573pt;}
.ls3_c00021{letter-spacing:0.232533pt;}
.ls0_c00021{letter-spacing:0.234613pt;}
.ls1_c00021{letter-spacing:4.574773pt;}
.ls4_c00021{letter-spacing:18.016427pt;}
.ws1_c00021{word-spacing:-16.368640pt;}
.ws0_c00021{word-spacing:-13.344000pt;}
.ws2_c00021{word-spacing:0.000000pt;}
._f_c00021{margin-left:-3.682364pt;}
._e_c00021{margin-left:-2.766447pt;}
._0_c00021{margin-left:-0.942009pt;}
._4_c00021{width:0.942283pt;}
._7_c00021{width:1.973444pt;}
._17_c00021{width:2.937261pt;}
._8_c00021{width:3.828307pt;}
._9_c00021{width:4.761179pt;}
._5_c00021{width:5.767915pt;}
._6_c00021{width:6.770211pt;}
._3_c00021{width:7.712594pt;}
._10_c00021{width:8.833869pt;}
._c_c00021{width:12.269124pt;}
._b_c00021{width:13.443079pt;}
._d_c00021{width:15.367670pt;}
._12_c00021{width:17.604590pt;}
._a_c00021{width:18.723852pt;}
._14_c00021{width:19.698104pt;}
._2_c00021{width:20.667565pt;}
._15_c00021{width:22.285199pt;}
._16_c00021{width:23.258145pt;}
._11_c00021{width:30.500220pt;}
._13_c00021{width:35.507020pt;}
._1_c00021{width:1485.873825pt;}
.fs1_c00021{font-size:48.000000pt;}
.fs0_c00021{font-size:58.880000pt;}
.y0_c00021{bottom:0.000000pt;}
.y1e_c00021{bottom:97.599867pt;}
.y1d_c00021{bottom:116.319600pt;}
.y1c_c00021{bottom:135.066533pt;}
.y1b_c00021{bottom:153.626400pt;}
.y1a_c00021{bottom:172.346667pt;}
.y19_c00021{bottom:199.066667pt;}
.y18_c00021{bottom:233.626400pt;}
.y17_c00021{bottom:252.346667pt;}
.y16_c00021{bottom:612.894000pt;}
.y15_c00021{bottom:631.613733pt;}
.y14_c00021{bottom:650.333467pt;}
.y13_c00021{bottom:668.893333pt;}
.y12_c00021{bottom:687.613600pt;}
.y11_c00021{bottom:706.333333pt;}
.y10_c00021{bottom:732.893200pt;}
.yf_c00021{bottom:751.613467pt;}
.ye_c00021{bottom:770.333200pt;}
.yd_c00021{bottom:788.893067pt;}
.yc_c00021{bottom:807.652933pt;}
.yb_c00021{bottom:826.373200pt;}
.ya_c00021{bottom:844.933067pt;}
.y9_c00021{bottom:863.652800pt;}
.y8_c00021{bottom:882.373067pt;}
.y7_c00021{bottom:900.932933pt;}
.y6_c00021{bottom:919.653200pt;}
.y5_c00021{bottom:938.373467pt;}
.y4_c00021{bottom:956.933333pt;}
.y3_c00021{bottom:975.653067pt;}
.y2_c00021{bottom:994.373333pt;}
.y1_c00021{bottom:1044.160000pt;}
.h2_c00021{height:50.628750pt;}
.h1_c00021{height:1122.666667pt;}
.h0_c00021{height:1122.720000pt;}
.w1_c00021{width:794.000000pt;}
.w0_c00021{width:794.080000pt;}
.x0_c00021{left:0.000000pt;}
.x1_c00021{left:113.471867pt;}
.x2_c00021{left:132.352133pt;}
.x3_c00021{left:208.026533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ebb49a676382b8c5b635d8b7.woff2')format("woff");}.ff1_c00022{font-family:ff1_c00022;line-height:1.070312;font-style:normal;font-weight:normal;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_514433efa992a6c60e03505f.woff2')format("woff");}.ff2_c00022{font-family:ff2_c00022;line-height:0.938965;font-style: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;}
.ls3_c00022{letter-spacing:0.000000px;}
.ls1_c00022{letter-spacing:0.109860px;}
.ls0_c00022{letter-spacing:0.261600px;}
.ls2_c00022{letter-spacing:0.263940px;}
.sc__c00022{text-shadow:none;}
.sc0_c00022{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00022{-webkit-text-stroke:0px transparent;}
.sc0_c00022{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00022{word-spacing:-36.829440px;}
.ws1_c00022{word-spacing:-18.414720px;}
.ws0_c00022{word-spacing:-15.012000px;}
.ws3_c00022{word-spacing:0.000000px;}
._10_c00022{margin-left:-3.398344px;}
._9_c00022{margin-left:-2.384765px;}
._0_c00022{margin-left:-1.059761px;}
._6_c00022{width:1.621971px;}
._a_c00022{width:3.510356px;}
._e_c00022{width:4.634399px;}
._f_c00022{width:6.064061px;}
._11_c00022{width:7.678574px;}
._4_c00022{width:8.942772px;}
._3_c00022{width:10.134807px;}
._14_c00022{width:11.141940px;}
._8_c00022{width:12.273307px;}
._7_c00022{width:13.310623px;}
._d_c00022{width:15.106316px;}
._5_c00022{width:17.024144px;}
._12_c00022{width:19.576034px;}
._13_c00022{width:20.930413px;}
._2_c00022{width:23.051692px;}
._b_c00022{width:24.641004px;}
._c_c00022{width:25.702026px;}
._16_c00022{width:26.956767px;}
._15_c00022{width:28.417045px;}
._1_c00022{width:1671.608053px;}
.fc0_c00022{color:rgb(0,0,0);}
.fs1_c00022{font-size:54.000000px;}
.fs0_c00022{font-size:66.240000px;}
.y0_c00022{bottom:0.000000px;}
.y30_c00022{bottom:98.459850px;}
.y2f_c00022{bottom:119.520150px;}
.y2e_c00022{bottom:149.436300px;}
.y2d_c00022{bottom:170.490750px;}
.y2c_c00022{bottom:191.550450px;}
.y2b_c00022{bottom:212.430300px;}
.y2a_c00022{bottom:233.490600px;}
.y29_c00022{bottom:254.550300px;}
.y28_c00022{bottom:275.430150px;}
.y27_c00022{bottom:296.490450px;}
.y26_c00022{bottom:317.550150px;}
.y25_c00022{bottom:338.430000px;}
.y24_c00022{bottom:368.490750px;}
.y23_c00022{bottom:389.595600px;}
.y22_c00022{bottom:410.475450px;}
.y21_c00022{bottom:431.535150px;}
.y20_c00022{bottom:452.595450px;}
.y1f_c00022{bottom:473.475300px;}
.y1e_c00022{bottom:494.535000px;}
.y1d_c00022{bottom:524.595600px;}
.y1c_c00022{bottom:545.475450px;}
.y1b_c00022{bottom:566.535150px;}
.y1a_c00022{bottom:587.595450px;}
.y19_c00022{bottom:608.475300px;}
.y18_c00022{bottom:629.535000px;}
.y17_c00022{bottom:650.625300px;}
.y16_c00022{bottom:671.505150px;}
.y15_c00022{bottom:692.565450px;}
.y14_c00022{bottom:713.625150px;}
.y13_c00022{bottom:734.505000px;}
.y12_c00022{bottom:755.565300px;}
.y11_c00022{bottom:776.625000px;}
.y10_c00022{bottom:806.504850px;}
.yf_c00022{bottom:827.565150px;}
.ye_c00022{bottom:848.624850px;}
.yd_c00022{bottom:869.504700px;}
.yc_c00022{bottom:890.565000px;}
.yb_c00022{bottom:920.670300px;}
.ya_c00022{bottom:941.550150px;}
.y9_c00022{bottom:962.609850px;}
.y8_c00022{bottom:983.670150px;}
.y7_c00022{bottom:1004.550000px;}
.y6_c00022{bottom:1034.609850px;}
.y5_c00022{bottom:1055.670150px;}
.y4_c00022{bottom:1076.550000px;}
.y3_c00022{bottom:1097.609700px;}
.y2_c00022{bottom:1118.670000px;}
.y1_c00022{bottom:1174.680000px;}
.h2_c00022{height:56.957344px;}
.h1_c00022{height:1263.000000px;}
.h0_c00022{height:1263.060000px;}
.w1_c00022{width:893.250000px;}
.w0_c00022{width:893.340000px;}
.x0_c00022{left:0.000000px;}
.x1_c00022{left:127.655850px;}
.x2_c00022{left:148.896150px;}
@media print{
.v0_c00022{vertical-align:0.000000pt;}
.ls3_c00022{letter-spacing:0.000000pt;}
.ls1_c00022{letter-spacing:0.097653pt;}
.ls0_c00022{letter-spacing:0.232533pt;}
.ls2_c00022{letter-spacing:0.234613pt;}
.ws2_c00022{word-spacing:-32.737280pt;}
.ws1_c00022{word-spacing:-16.368640pt;}
.ws0_c00022{word-spacing:-13.344000pt;}
.ws3_c00022{word-spacing:0.000000pt;}
._10_c00022{margin-left:-3.020750pt;}
._9_c00022{margin-left:-2.119791pt;}
._0_c00022{margin-left:-0.942009pt;}
._6_c00022{width:1.441752pt;}
._a_c00022{width:3.120316pt;}
._e_c00022{width:4.119466pt;}
._f_c00022{width:5.390277pt;}
._11_c00022{width:6.825399pt;}
._4_c00022{width:7.949130pt;}
._3_c00022{width:9.008717pt;}
._14_c00022{width:9.903946pt;}
._8_c00022{width:10.909606pt;}
._7_c00022{width:11.831665pt;}
._d_c00022{width:13.427836pt;}
._5_c00022{width:15.132573pt;}
._12_c00022{width:17.400919pt;}
._13_c00022{width:18.604811pt;}
._2_c00022{width:20.490392pt;}
._b_c00022{width:21.903114pt;}
._c_c00022{width:22.846245pt;}
._16_c00022{width:23.961570pt;}
._15_c00022{width:25.259595pt;}
._1_c00022{width:1485.873825pt;}
.fs1_c00022{font-size:48.000000pt;}
.fs0_c00022{font-size:58.880000pt;}
.y0_c00022{bottom:0.000000pt;}
.y30_c00022{bottom:87.519867pt;}
.y2f_c00022{bottom:106.240133pt;}
.y2e_c00022{bottom:132.832267pt;}
.y2d_c00022{bottom:151.547333pt;}
.y2c_c00022{bottom:170.267067pt;}
.y2b_c00022{bottom:188.826933pt;}
.y2a_c00022{bottom:207.547200pt;}
.y29_c00022{bottom:226.266933pt;}
.y28_c00022{bottom:244.826800pt;}
.y27_c00022{bottom:263.547067pt;}
.y26_c00022{bottom:282.266800pt;}
.y25_c00022{bottom:300.826667pt;}
.y24_c00022{bottom:327.547333pt;}
.y23_c00022{bottom:346.307200pt;}
.y22_c00022{bottom:364.867067pt;}
.y21_c00022{bottom:383.586800pt;}
.y20_c00022{bottom:402.307067pt;}
.y1f_c00022{bottom:420.866933pt;}
.y1e_c00022{bottom:439.586667pt;}
.y1d_c00022{bottom:466.307200pt;}
.y1c_c00022{bottom:484.867067pt;}
.y1b_c00022{bottom:503.586800pt;}
.y1a_c00022{bottom:522.307067pt;}
.y19_c00022{bottom:540.866933pt;}
.y18_c00022{bottom:559.586667pt;}
.y17_c00022{bottom:578.333600pt;}
.y16_c00022{bottom:596.893467pt;}
.y15_c00022{bottom:615.613733pt;}
.y14_c00022{bottom:634.333467pt;}
.y13_c00022{bottom:652.893333pt;}
.y12_c00022{bottom:671.613600pt;}
.y11_c00022{bottom:690.333333pt;}
.y10_c00022{bottom:716.893200pt;}
.yf_c00022{bottom:735.613467pt;}
.ye_c00022{bottom:754.333200pt;}
.yd_c00022{bottom:772.893067pt;}
.yc_c00022{bottom:791.613333pt;}
.yb_c00022{bottom:818.373600pt;}
.ya_c00022{bottom:836.933467pt;}
.y9_c00022{bottom:855.653200pt;}
.y8_c00022{bottom:874.373467pt;}
.y7_c00022{bottom:892.933333pt;}
.y6_c00022{bottom:919.653200pt;}
.y5_c00022{bottom:938.373467pt;}
.y4_c00022{bottom:956.933333pt;}
.y3_c00022{bottom:975.653067pt;}
.y2_c00022{bottom:994.373333pt;}
.y1_c00022{bottom:1044.160000pt;}
.h2_c00022{height:50.628750pt;}
.h1_c00022{height:1122.666667pt;}
.h0_c00022{height:1122.720000pt;}
.w1_c00022{width:794.000000pt;}
.w0_c00022{width:794.080000pt;}
.x0_c00022{left:0.000000pt;}
.x1_c00022{left:113.471867pt;}
.x2_c00022{left:132.352133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_970765b644a8910f7dc82eac.woff2')format("woff");}.ff1_c00023{font-family:ff1_c00023;line-height:1.070312;font-style: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);}
.v1_c00023{vertical-align:-5.760936px;}
.v0_c00023{vertical-align:0.000000px;}
.ls5_c00023{letter-spacing:0.000000px;}
.ls0_c00023{letter-spacing:0.261600px;}
.ls2_c00023{letter-spacing:0.381120px;}
.ls1_c00023{letter-spacing:1.548960px;}
.ls3_c00023{letter-spacing:2.268480px;}
.ls4_c00023{letter-spacing:7.307520px;}
.sc__c00023{text-shadow:none;}
.sc0_c00023{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00023{-webkit-text-stroke:0px transparent;}
.sc0_c00023{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00023{word-spacing:-18.414720px;}
.ws0_c00023{word-spacing:-15.012000px;}
.ws1_c00023{word-spacing:-11.609280px;}
.ws3_c00023{word-spacing:0.000000px;}
._16_c00023{margin-left:-7.193647px;}
._b_c00023{margin-left:-4.704016px;}
._c_c00023{margin-left:-3.509993px;}
._11_c00023{margin-left:-2.060812px;}
._0_c00023{margin-left:-1.059761px;}
._3_c00023{width:1.987731px;}
._4_c00023{width:3.139538px;}
._6_c00023{width:4.140060px;}
._7_c00023{width:6.138377px;}
._2_c00023{width:7.685188px;}
._18_c00023{width:9.006551px;}
._13_c00023{width:10.333596px;}
._14_c00023{width:11.915168px;}
._a_c00023{width:13.509221px;}
._9_c00023{width:14.528968px;}
._d_c00023{width:16.624945px;}
._e_c00023{width:19.498957px;}
._12_c00023{width:20.627365px;}
._f_c00023{width:22.919104px;}
._10_c00023{width:24.191633px;}
._17_c00023{width:28.697233px;}
._5_c00023{width:30.272077px;}
._15_c00023{width:31.284821px;}
._8_c00023{width:32.481311px;}
._19_c00023{width:845.765568px;}
._1_c00023{width:1671.608053px;}
.fc0_c00023{color:rgb(0,0,0);}
.fs2_c00023{font-size:41.760000px;}
.fs1_c00023{font-size:54.000000px;}
.fs0_c00023{font-size:66.240000px;}
.y0_c00023{bottom:0.000000px;}
.y2d_c00023{bottom:179.490000px;}
.y2c_c00023{bottom:200.550150px;}
.y2b_c00023{bottom:221.430000px;}
.y2a_c00023{bottom:242.490300px;}
.y29_c00023{bottom:263.550000px;}
.y28_c00023{bottom:284.429850px;}
.y27_c00023{bottom:305.490150px;}
.y26_c00023{bottom:326.549850px;}
.y25_c00023{bottom:347.429700px;}
.y24_c00023{bottom:368.490000px;}
.y23_c00023{bottom:398.595150px;}
.y22_c00023{bottom:419.475000px;}
.y21_c00023{bottom:440.534700px;}
.y20_c00023{bottom:461.595000px;}
.y1f_c00023{bottom:491.475450px;}
.y1e_c00023{bottom:512.535150px;}
.y1d_c00023{bottom:533.595450px;}
.y1c_c00023{bottom:554.475300px;}
.y1b_c00023{bottom:575.535000px;}
.y1a_c00023{bottom:596.595300px;}
.y19_c00023{bottom:617.475150px;}
.y18_c00023{bottom:638.534850px;}
.y17_c00023{bottom:659.625150px;}
.y16_c00023{bottom:680.505000px;}
.y15_c00023{bottom:710.565750px;}
.y14_c00023{bottom:731.625450px;}
.y13_c00023{bottom:752.505300px;}
.y12_c00023{bottom:773.565600px;}
.y11_c00023{bottom:794.625300px;}
.y10_c00023{bottom:815.505150px;}
.yf_c00023{bottom:836.565450px;}
.ye_c00023{bottom:857.625150px;}
.yd_c00023{bottom:878.505000px;}
.yc_c00023{bottom:908.610150px;}
.yb_c00023{bottom:929.670450px;}
.ya_c00023{bottom:950.550300px;}
.y9_c00023{bottom:971.610000px;}
.y8_c00023{bottom:992.670300px;}
.y7_c00023{bottom:1013.550150px;}
.y6_c00023{bottom:1034.609850px;}
.y5_c00023{bottom:1055.670150px;}
.y4_c00023{bottom:1076.550000px;}
.y3_c00023{bottom:1097.609700px;}
.y2_c00023{bottom:1118.670000px;}
.y1_c00023{bottom:1174.680000px;}
.h2_c00023{height:56.957344px;}
.h1_c00023{height:1263.000000px;}
.h0_c00023{height:1263.060000px;}
.w1_c00023{width:893.250000px;}
.w0_c00023{width:893.340000px;}
.x0_c00023{left:0.000000px;}
.x1_c00023{left:127.655850px;}
.x2_c00023{left:148.896150px;}
.x3_c00023{left:191.550000px;}
@media print{
.v1_c00023{vertical-align:-5.120832pt;}
.v0_c00023{vertical-align:0.000000pt;}
.ls5_c00023{letter-spacing:0.000000pt;}
.ls0_c00023{letter-spacing:0.232533pt;}
.ls2_c00023{letter-spacing:0.338773pt;}
.ls1_c00023{letter-spacing:1.376853pt;}
.ls3_c00023{letter-spacing:2.016427pt;}
.ls4_c00023{letter-spacing:6.495573pt;}
.ws2_c00023{word-spacing:-16.368640pt;}
.ws0_c00023{word-spacing:-13.344000pt;}
.ws1_c00023{word-spacing:-10.319360pt;}
.ws3_c00023{word-spacing:0.000000pt;}
._16_c00023{margin-left:-6.394353pt;}
._b_c00023{margin-left:-4.181347pt;}
._c_c00023{margin-left:-3.119994pt;}
._11_c00023{margin-left:-1.831833pt;}
._0_c00023{margin-left:-0.942009pt;}
._3_c00023{width:1.766872pt;}
._4_c00023{width:2.790701pt;}
._6_c00023{width:3.680053pt;}
._7_c00023{width:5.456335pt;}
._2_c00023{width:6.831278pt;}
._18_c00023{width:8.005823pt;}
._13_c00023{width:9.185418pt;}
._14_c00023{width:10.591261pt;}
._a_c00023{width:12.008196pt;}
._9_c00023{width:12.914639pt;}
._d_c00023{width:14.777729pt;}
._e_c00023{width:17.332406pt;}
._12_c00023{width:18.335436pt;}
._f_c00023{width:20.372537pt;}
._10_c00023{width:21.503674pt;}
._17_c00023{width:25.508651pt;}
._5_c00023{width:26.908513pt;}
._15_c00023{width:27.808730pt;}
._8_c00023{width:28.872276pt;}
._19_c00023{width:751.791616pt;}
._1_c00023{width:1485.873825pt;}
.fs2_c00023{font-size:37.120000pt;}
.fs1_c00023{font-size:48.000000pt;}
.fs0_c00023{font-size:58.880000pt;}
.y0_c00023{bottom:0.000000pt;}
.y2d_c00023{bottom:159.546667pt;}
.y2c_c00023{bottom:178.266800pt;}
.y2b_c00023{bottom:196.826667pt;}
.y2a_c00023{bottom:215.546933pt;}
.y29_c00023{bottom:234.266667pt;}
.y28_c00023{bottom:252.826533pt;}
.y27_c00023{bottom:271.546800pt;}
.y26_c00023{bottom:290.266533pt;}
.y25_c00023{bottom:308.826400pt;}
.y24_c00023{bottom:327.546667pt;}
.y23_c00023{bottom:354.306800pt;}
.y22_c00023{bottom:372.866667pt;}
.y21_c00023{bottom:391.586400pt;}
.y20_c00023{bottom:410.306667pt;}
.y1f_c00023{bottom:436.867067pt;}
.y1e_c00023{bottom:455.586800pt;}
.y1d_c00023{bottom:474.307067pt;}
.y1c_c00023{bottom:492.866933pt;}
.y1b_c00023{bottom:511.586667pt;}
.y1a_c00023{bottom:530.306933pt;}
.y19_c00023{bottom:548.866800pt;}
.y18_c00023{bottom:567.586533pt;}
.y17_c00023{bottom:586.333467pt;}
.y16_c00023{bottom:604.893333pt;}
.y15_c00023{bottom:631.614000pt;}
.y14_c00023{bottom:650.333733pt;}
.y13_c00023{bottom:668.893600pt;}
.y12_c00023{bottom:687.613867pt;}
.y11_c00023{bottom:706.333600pt;}
.y10_c00023{bottom:724.893467pt;}
.yf_c00023{bottom:743.613733pt;}
.ye_c00023{bottom:762.333467pt;}
.yd_c00023{bottom:780.893333pt;}
.yc_c00023{bottom:807.653467pt;}
.yb_c00023{bottom:826.373733pt;}
.ya_c00023{bottom:844.933600pt;}
.y9_c00023{bottom:863.653333pt;}
.y8_c00023{bottom:882.373600pt;}
.y7_c00023{bottom:900.933467pt;}
.y6_c00023{bottom:919.653200pt;}
.y5_c00023{bottom:938.373467pt;}
.y4_c00023{bottom:956.933333pt;}
.y3_c00023{bottom:975.653067pt;}
.y2_c00023{bottom:994.373333pt;}
.y1_c00023{bottom:1044.160000pt;}
.h2_c00023{height:50.628750pt;}
.h1_c00023{height:1122.666667pt;}
.h0_c00023{height:1122.720000pt;}
.w1_c00023{width:794.000000pt;}
.w0_c00023{width:794.080000pt;}
.x0_c00023{left:0.000000pt;}
.x1_c00023{left:113.471867pt;}
.x2_c00023{left:132.352133pt;}
.x3_c00023{left:170.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_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_54afd14c552b14afc07c31a1.woff2')format("woff");}.ff1_c00024{font-family:ff1_c00024;line-height:1.070312;font-style:normal;font-weight:normal;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_4283bc7724eef3919c8bcd92.woff2')format("woff");}.ff2_c00024{font-family:ff2_c00024;line-height:0.938965;font-style: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);}
.m1_c00024{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_c00024{vertical-align:0.000000px;}
.ls6_c00024{letter-spacing:0.000000px;}
.ls2_c00024{letter-spacing:0.107520px;}
.ls0_c00024{letter-spacing:0.261600px;}
.ls1_c00024{letter-spacing:2.268480px;}
.ls3_c00024{letter-spacing:2.988000px;}
.ls4_c00024{letter-spacing:13.066140px;}
.ls5_c00024{letter-spacing:25.307520px;}
.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:-18.414720px;}
.ws0_c00024{word-spacing:-15.012000px;}
.ws2_c00024{word-spacing:0.000000px;}
._6_c00024{margin-left:-4.539584px;}
._4_c00024{margin-left:-3.264709px;}
._5_c00024{margin-left:-2.127332px;}
._0_c00024{margin-left:-1.059761px;}
._2_c00024{width:1.524145px;}
._3_c00024{width:2.610468px;}
._c_c00024{width:3.614022px;}
._7_c00024{width:6.227378px;}
._8_c00024{width:7.358947px;}
._f_c00024{width:8.706687px;}
._d_c00024{width:10.799326px;}
._e_c00024{width:12.001392px;}
._11_c00024{width:13.952592px;}
._10_c00024{width:15.037076px;}
._9_c00024{width:22.920075px;}
._a_c00024{width:24.960511px;}
._12_c00024{width:26.495777px;}
._13_c00024{width:27.805314px;}
._b_c00024{width:39.945397px;}
._1_c00024{width:1671.608053px;}
.fc0_c00024{color:rgb(0,0,0);}
.fs1_c00024{font-size:54.000000px;}
.fs0_c00024{font-size:66.240000px;}
.y0_c00024{bottom:0.000000px;}
.y1b_c00024{bottom:102.600300px;}
.y1a_c00024{bottom:123.480150px;}
.y19_c00024{bottom:144.576300px;}
.y18_c00024{bottom:165.630150px;}
.y17_c00024{bottom:186.510000px;}
.y16_c00024{bottom:207.570300px;}
.y15_c00024{bottom:228.630000px;}
.y14_c00024{bottom:249.509850px;}
.y13_c00024{bottom:270.570150px;}
.y12_c00024{bottom:291.629850px;}
.y11_c00024{bottom:312.509700px;}
.y10_c00024{bottom:333.570000px;}
.yf_c00024{bottom:354.629700px;}
.ye_c00024{bottom:375.509550px;}
.yd_c00024{bottom:396.615000px;}
.yc_c00024{bottom:426.675000px;}
.yb_c00024{bottom:465.554700px;}
.ya_c00024{bottom:486.615000px;}
.y9_c00024{bottom:971.609850px;}
.y8_c00024{bottom:992.670150px;}
.y7_c00024{bottom:1013.550000px;}
.y6_c00024{bottom:1034.609700px;}
.y5_c00024{bottom:1055.670150px;}
.y4_c00024{bottom:1076.550000px;}
.y3_c00024{bottom:1097.609700px;}
.y2_c00024{bottom:1118.670000px;}
.y1_c00024{bottom:1174.680000px;}
.h2_c00024{height:56.957344px;}
.h1_c00024{height:1263.000000px;}
.h0_c00024{height:1263.060000px;}
.w1_c00024{width:893.250000px;}
.w0_c00024{width:893.340000px;}
.x0_c00024{left:0.000000px;}
.x1_c00024{left:127.655850px;}
.x2_c00024{left:148.896150px;}
.x3_c00024{left:234.030645px;}
@media print{
.v0_c00024{vertical-align:0.000000pt;}
.ls6_c00024{letter-spacing:0.000000pt;}
.ls2_c00024{letter-spacing:0.095573pt;}
.ls0_c00024{letter-spacing:0.232533pt;}
.ls1_c00024{letter-spacing:2.016427pt;}
.ls3_c00024{letter-spacing:2.656000pt;}
.ls4_c00024{letter-spacing:11.614347pt;}
.ls5_c00024{letter-spacing:22.495573pt;}
.ws1_c00024{word-spacing:-16.368640pt;}
.ws0_c00024{word-spacing:-13.344000pt;}
.ws2_c00024{word-spacing:0.000000pt;}
._6_c00024{margin-left:-4.035186pt;}
._4_c00024{margin-left:-2.901963pt;}
._5_c00024{margin-left:-1.890962pt;}
._0_c00024{margin-left:-0.942009pt;}
._2_c00024{width:1.354796pt;}
._3_c00024{width:2.320416pt;}
._c_c00024{width:3.212464pt;}
._7_c00024{width:5.535447pt;}
._8_c00024{width:6.541286pt;}
._f_c00024{width:7.739277pt;}
._d_c00024{width:9.599401pt;}
._e_c00024{width:10.667904pt;}
._11_c00024{width:12.402304pt;}
._10_c00024{width:13.366290pt;}
._9_c00024{width:20.373400pt;}
._a_c00024{width:22.187121pt;}
._12_c00024{width:23.551802pt;}
._13_c00024{width:24.715835pt;}
._b_c00024{width:35.507020pt;}
._1_c00024{width:1485.873825pt;}
.fs1_c00024{font-size:48.000000pt;}
.fs0_c00024{font-size:58.880000pt;}
.y0_c00024{bottom:0.000000pt;}
.y1b_c00024{bottom:91.200267pt;}
.y1a_c00024{bottom:109.760133pt;}
.y19_c00024{bottom:128.512267pt;}
.y18_c00024{bottom:147.226800pt;}
.y17_c00024{bottom:165.786667pt;}
.y16_c00024{bottom:184.506933pt;}
.y15_c00024{bottom:203.226667pt;}
.y14_c00024{bottom:221.786533pt;}
.y13_c00024{bottom:240.506800pt;}
.y12_c00024{bottom:259.226533pt;}
.y11_c00024{bottom:277.786400pt;}
.y10_c00024{bottom:296.506667pt;}
.yf_c00024{bottom:315.226400pt;}
.ye_c00024{bottom:333.786267pt;}
.yd_c00024{bottom:352.546667pt;}
.yc_c00024{bottom:379.266667pt;}
.yb_c00024{bottom:413.826400pt;}
.ya_c00024{bottom:432.546667pt;}
.y9_c00024{bottom:863.653200pt;}
.y8_c00024{bottom:882.373467pt;}
.y7_c00024{bottom:900.933333pt;}
.y6_c00024{bottom:919.653067pt;}
.y5_c00024{bottom:938.373467pt;}
.y4_c00024{bottom:956.933333pt;}
.y3_c00024{bottom:975.653067pt;}
.y2_c00024{bottom:994.373333pt;}
.y1_c00024{bottom:1044.160000pt;}
.h2_c00024{height:50.628750pt;}
.h1_c00024{height:1122.666667pt;}
.h0_c00024{height:1122.720000pt;}
.w1_c00024{width:794.000000pt;}
.w0_c00024{width:794.080000pt;}
.x0_c00024{left:0.000000pt;}
.x1_c00024{left:113.471867pt;}
.x2_c00024{left:132.352133pt;}
.x3_c00024{left:208.027240pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_19f83e8fb7b44c2f16ce4910.woff2')format("woff");}.ff1_c00025{font-family:ff1_c00025;line-height:1.070312;font-style:normal;font-weight:normal;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_77ec6eefb7e5e6f676cafbdf.woff2')format("woff");}.ff2_c00025{font-family:ff2_c00025;line-height:0.938965;font-style: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);}
.m1_c00025{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1_c00025{vertical-align:-5.760936px;}
.v0_c00025{vertical-align:0.000000px;}
.ls2_c00025{letter-spacing:0.000000px;}
.ls0_c00025{letter-spacing:0.829380px;}
.ls1_c00025{letter-spacing:9.468480px;}
.sc__c00025{text-shadow:none;}
.sc0_c00025{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00025{-webkit-text-stroke:0px transparent;}
.sc0_c00025{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00025{word-spacing:-36.829440px;}
.ws0_c00025{word-spacing:-18.414720px;}
.ws1_c00025{word-spacing:-15.012000px;}
.ws3_c00025{word-spacing:-11.609280px;}
.ws4_c00025{word-spacing:0.000000px;}
._e_c00025{margin-left:-5.630090px;}
._d_c00025{margin-left:-4.433600px;}
._11_c00025{margin-left:-3.339754px;}
._10_c00025{margin-left:-2.123432px;}
._0_c00025{margin-left:-1.059761px;}
._3_c00025{width:1.058540px;}
._4_c00025{width:2.451728px;}
._7_c00025{width:3.643549px;}
._8_c00025{width:4.700130px;}
._9_c00025{width:6.622164px;}
._1a_c00025{width:7.685152px;}
._19_c00025{width:8.737705px;}
._6_c00025{width:9.941949px;}
._5_c00025{width:11.262436px;}
._14_c00025{width:14.549372px;}
._15_c00025{width:16.079898px;}
._2_c00025{width:17.218722px;}
._16_c00025{width:20.600877px;}
._17_c00025{width:21.797828px;}
._c_c00025{width:26.097058px;}
._a_c00025{width:27.357303px;}
._b_c00025{width:28.416470px;}
._12_c00025{width:29.730192px;}
._f_c00025{width:30.827121px;}
._13_c00025{width:32.169063px;}
._18_c00025{width:34.249557px;}
._1_c00025{width:1634.884597px;}
.fc0_c00025{color:rgb(0,0,0);}
.fs2_c00025{font-size:41.760000px;}
.fs1_c00025{font-size:54.000000px;}
.fs0_c00025{font-size:66.240000px;}
.y0_c00025{bottom:0.000000px;}
.y30_c00025{bottom:107.459850px;}
.y2f_c00025{bottom:128.520150px;}
.y2e_c00025{bottom:158.430000px;}
.y2d_c00025{bottom:179.490300px;}
.y2c_c00025{bottom:200.550000px;}
.y2b_c00025{bottom:221.429850px;}
.y2a_c00025{bottom:242.490150px;}
.y29_c00025{bottom:263.549850px;}
.y28_c00025{bottom:284.429700px;}
.y27_c00025{bottom:305.490000px;}
.y26_c00025{bottom:335.550600px;}
.y25_c00025{bottom:356.430450px;}
.y24_c00025{bottom:377.490750px;}
.y23_c00025{bottom:398.595600px;}
.y22_c00025{bottom:419.475450px;}
.y21_c00025{bottom:440.535150px;}
.y20_c00025{bottom:461.595450px;}
.y1f_c00025{bottom:482.475300px;}
.y1e_c00025{bottom:503.535000px;}
.y1d_c00025{bottom:524.595300px;}
.y1c_c00025{bottom:545.475150px;}
.y1b_c00025{bottom:566.534850px;}
.y1a_c00025{bottom:587.595150px;}
.y19_c00025{bottom:608.475000px;}
.y18_c00025{bottom:638.535150px;}
.y17_c00025{bottom:659.625450px;}
.y16_c00025{bottom:680.505300px;}
.y15_c00025{bottom:701.565600px;}
.y14_c00025{bottom:722.625300px;}
.y13_c00025{bottom:743.505150px;}
.y12_c00025{bottom:764.565450px;}
.y11_c00025{bottom:785.625150px;}
.y10_c00025{bottom:806.505000px;}
.yf_c00025{bottom:827.565300px;}
.ye_c00025{bottom:848.625000px;}
.yd_c00025{bottom:878.505150px;}
.yc_c00025{bottom:899.609700px;}
.yb_c00025{bottom:920.670000px;}
.ya_c00025{bottom:950.550300px;}
.y9_c00025{bottom:971.610000px;}
.y8_c00025{bottom:992.670300px;}
.y7_c00025{bottom:1013.550150px;}
.y6_c00025{bottom:1034.609850px;}
.y5_c00025{bottom:1055.670150px;}
.y4_c00025{bottom:1076.550000px;}
.y3_c00025{bottom:1097.609700px;}
.y2_c00025{bottom:1118.670000px;}
.y1_c00025{bottom:1174.680000px;}
.h2_c00025{height:56.957344px;}
.h3_c00025{height:56.958544px;}
.h1_c00025{height:1263.000000px;}
.h0_c00025{height:1263.060000px;}
.w1_c00025{width:893.250000px;}
.w0_c00025{width:893.340000px;}
.x0_c00025{left:0.000000px;}
.x1_c00025{left:127.655850px;}
.x2_c00025{left:148.896150px;}
@media print{
.v1_c00025{vertical-align:-5.120832pt;}
.v0_c00025{vertical-align:0.000000pt;}
.ls2_c00025{letter-spacing:0.000000pt;}
.ls0_c00025{letter-spacing:0.737227pt;}
.ls1_c00025{letter-spacing:8.416427pt;}
.ws2_c00025{word-spacing:-32.737280pt;}
.ws0_c00025{word-spacing:-16.368640pt;}
.ws1_c00025{word-spacing:-13.344000pt;}
.ws3_c00025{word-spacing:-10.319360pt;}
.ws4_c00025{word-spacing:0.000000pt;}
._e_c00025{margin-left:-5.004524pt;}
._d_c00025{margin-left:-3.940978pt;}
._11_c00025{margin-left:-2.968671pt;}
._10_c00025{margin-left:-1.887495pt;}
._0_c00025{margin-left:-0.942009pt;}
._3_c00025{width:0.940924pt;}
._4_c00025{width:2.179314pt;}
._7_c00025{width:3.238710pt;}
._8_c00025{width:4.177893pt;}
._9_c00025{width:5.886368pt;}
._1a_c00025{width:6.831246pt;}
._19_c00025{width:7.766849pt;}
._6_c00025{width:8.837288pt;}
._5_c00025{width:10.011054pt;}
._14_c00025{width:12.932775pt;}
._15_c00025{width:14.293242pt;}
._2_c00025{width:15.305530pt;}
._16_c00025{width:18.311891pt;}
._17_c00025{width:19.375847pt;}
._c_c00025{width:23.197385pt;}
._a_c00025{width:24.317603pt;}
._b_c00025{width:25.259084pt;}
._12_c00025{width:26.426837pt;}
._f_c00025{width:27.401885pt;}
._13_c00025{width:28.594723pt;}
._18_c00025{width:30.444051pt;}
._1_c00025{width:1453.230753pt;}
.fs2_c00025{font-size:37.120000pt;}
.fs1_c00025{font-size:48.000000pt;}
.fs0_c00025{font-size:58.880000pt;}
.y0_c00025{bottom:0.000000pt;}
.y30_c00025{bottom:95.519867pt;}
.y2f_c00025{bottom:114.240133pt;}
.y2e_c00025{bottom:140.826667pt;}
.y2d_c00025{bottom:159.546933pt;}
.y2c_c00025{bottom:178.266667pt;}
.y2b_c00025{bottom:196.826533pt;}
.y2a_c00025{bottom:215.546800pt;}
.y29_c00025{bottom:234.266533pt;}
.y28_c00025{bottom:252.826400pt;}
.y27_c00025{bottom:271.546667pt;}
.y26_c00025{bottom:298.267200pt;}
.y25_c00025{bottom:316.827067pt;}
.y24_c00025{bottom:335.547333pt;}
.y23_c00025{bottom:354.307200pt;}
.y22_c00025{bottom:372.867067pt;}
.y21_c00025{bottom:391.586800pt;}
.y20_c00025{bottom:410.307067pt;}
.y1f_c00025{bottom:428.866933pt;}
.y1e_c00025{bottom:447.586667pt;}
.y1d_c00025{bottom:466.306933pt;}
.y1c_c00025{bottom:484.866800pt;}
.y1b_c00025{bottom:503.586533pt;}
.y1a_c00025{bottom:522.306800pt;}
.y19_c00025{bottom:540.866667pt;}
.y18_c00025{bottom:567.586800pt;}
.y17_c00025{bottom:586.333733pt;}
.y16_c00025{bottom:604.893600pt;}
.y15_c00025{bottom:623.613867pt;}
.y14_c00025{bottom:642.333600pt;}
.y13_c00025{bottom:660.893467pt;}
.y12_c00025{bottom:679.613733pt;}
.y11_c00025{bottom:698.333467pt;}
.y10_c00025{bottom:716.893333pt;}
.yf_c00025{bottom:735.613600pt;}
.ye_c00025{bottom:754.333333pt;}
.yd_c00025{bottom:780.893467pt;}
.yc_c00025{bottom:799.653067pt;}
.yb_c00025{bottom:818.373333pt;}
.ya_c00025{bottom:844.933600pt;}
.y9_c00025{bottom:863.653333pt;}
.y8_c00025{bottom:882.373600pt;}
.y7_c00025{bottom:900.933467pt;}
.y6_c00025{bottom:919.653200pt;}
.y5_c00025{bottom:938.373467pt;}
.y4_c00025{bottom:956.933333pt;}
.y3_c00025{bottom:975.653067pt;}
.y2_c00025{bottom:994.373333pt;}
.y1_c00025{bottom:1044.160000pt;}
.h2_c00025{height:50.628750pt;}
.h3_c00025{height:50.629817pt;}
.h1_c00025{height:1122.666667pt;}
.h0_c00025{height:1122.720000pt;}
.w1_c00025{width:794.000000pt;}
.w0_c00025{width:794.080000pt;}
.x0_c00025{left:0.000000pt;}
.x1_c00025{left:113.471867pt;}
.x2_c00025{left:132.352133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0f413fd5130c415ff7374162.woff2')format("woff");}.ff1_c00026{font-family:ff1_c00026;line-height:1.070312;font-style:normal;font-weight:normal;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_d11f8a77de776103279e2787.woff2')format("woff");}.ff2_c00026{font-family:ff2_c00026;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00026;src:url('chunks/assets/font_d03f8e1bdb83eb2eb0d0a016.woff2')format("woff");}.ff3_c00026{font-family:ff3_c00026;line-height:0.811035;font-style:normal;font-weight:normal;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_58be9e4714e3d6b89004fa52.woff2')format("woff");}.ff4_c00026{font-family:ff4_c00026;line-height:0.938965;font-style: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);}
.m1_c00026{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1_c00026{vertical-align:-5.760936px;}
.v0_c00026{vertical-align:0.000000px;}
.ls1_c00026{letter-spacing:0.000000px;}
.ls0_c00026{letter-spacing:5.868480px;}
.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;}
}
.ws4_c00026{word-spacing:-36.829440px;}
.ws3_c00026{word-spacing:-26.959680px;}
.ws1_c00026{word-spacing:-18.414720px;}
.ws2_c00026{word-spacing:-15.012000px;}
.ws0_c00026{word-spacing:-11.609280px;}
.ws5_c00026{word-spacing:0.000000px;}
._16_c00026{margin-left:-4.128477px;}
._6_c00026{margin-left:-2.171062px;}
._0_c00026{margin-left:-1.059761px;}
._5_c00026{width:1.011574px;}
._13_c00026{width:2.981625px;}
._f_c00026{width:4.141970px;}
._c_c00026{width:5.164555px;}
._d_c00026{width:6.247473px;}
._15_c00026{width:7.505791px;}
._10_c00026{width:8.742253px;}
._11_c00026{width:9.811457px;}
._14_c00026{width:11.727465px;}
._2_c00026{width:12.917264px;}
._3_c00026{width:14.106087px;}
._4_c00026{width:15.661537px;}
._12_c00026{width:16.929613px;}
._9_c00026{width:22.576506px;}
._8_c00026{width:23.912062px;}
._e_c00026{width:25.436508px;}
._a_c00026{width:32.521675px;}
._b_c00026{width:33.833561px;}
._17_c00026{width:39.945384px;}
._7_c00026{width:62.288245px;}
._1_c00026{width:1634.884597px;}
.fc0_c00026{color:rgb(0,0,0);}
.fs1_c00026{font-size:41.760000px;}
.fs2_c00026{font-size:54.000000px;}
.fs0_c00026{font-size:66.240000px;}
.y0_c00026{bottom:0.000000px;}
.y22_c00026{bottom:125.459850px;}
.y21_c00026{bottom:146.556000px;}
.y20_c00026{bottom:167.430000px;}
.y1f_c00026{bottom:455.475600px;}
.y1e_c00026{bottom:476.535300px;}
.y1d_c00026{bottom:497.595600px;}
.y1c_c00026{bottom:518.475450px;}
.y1b_c00026{bottom:539.535150px;}
.y1a_c00026{bottom:560.595450px;}
.y19_c00026{bottom:581.475300px;}
.y18_c00026{bottom:602.535000px;}
.y17_c00026{bottom:632.596650px;}
.y16_c00026{bottom:653.506350px;}
.y15_c00026{bottom:674.566650px;}
.y14_c00026{bottom:695.626350px;}
.y13_c00026{bottom:716.506200px;}
.y12_c00026{bottom:737.565900px;}
.y11_c00026{bottom:758.625600px;}
.y10_c00026{bottom:779.505450px;}
.yf_c00026{bottom:800.565750px;}
.ye_c00026{bottom:821.625450px;}
.yd_c00026{bottom:842.505300px;}
.yc_c00026{bottom:863.565600px;}
.yb_c00026{bottom:884.625300px;}
.ya_c00026{bottom:905.550300px;}
.y9_c00026{bottom:926.610000px;}
.y8_c00026{bottom:956.670000px;}
.y7_c00026{bottom:1013.550150px;}
.y6_c00026{bottom:1034.609850px;}
.y5_c00026{bottom:1055.670150px;}
.y4_c00026{bottom:1076.550000px;}
.y3_c00026{bottom:1097.609700px;}
.y2_c00026{bottom:1118.670000px;}
.y1_c00026{bottom:1174.680000px;}
.h3_c00026{height:48.224531px;}
.h2_c00026{height:56.957344px;}
.h1_c00026{height:1263.000000px;}
.h0_c00026{height:1263.060000px;}
.w1_c00026{width:893.250000px;}
.w0_c00026{width:893.340000px;}
.x0_c00026{left:0.000000px;}
.x1_c00026{left:127.655850px;}
.x2_c00026{left:148.896150px;}
.x3_c00026{left:234.021750px;}
@media print{
.v1_c00026{vertical-align:-5.120832pt;}
.v0_c00026{vertical-align:0.000000pt;}
.ls1_c00026{letter-spacing:0.000000pt;}
.ls0_c00026{letter-spacing:5.216427pt;}
.ws4_c00026{word-spacing:-32.737280pt;}
.ws3_c00026{word-spacing:-23.964160pt;}
.ws1_c00026{word-spacing:-16.368640pt;}
.ws2_c00026{word-spacing:-13.344000pt;}
.ws0_c00026{word-spacing:-10.319360pt;}
.ws5_c00026{word-spacing:0.000000pt;}
._16_c00026{margin-left:-3.669757pt;}
._6_c00026{margin-left:-1.929833pt;}
._0_c00026{margin-left:-0.942009pt;}
._5_c00026{width:0.899177pt;}
._13_c00026{width:2.650333pt;}
._f_c00026{width:3.681751pt;}
._c_c00026{width:4.590715pt;}
._d_c00026{width:5.553310pt;}
._15_c00026{width:6.671814pt;}
._10_c00026{width:7.770892pt;}
._11_c00026{width:8.721295pt;}
._14_c00026{width:10.424414pt;}
._2_c00026{width:11.482012pt;}
._3_c00026{width:12.538744pt;}
._4_c00026{width:13.921366pt;}
._12_c00026{width:15.048545pt;}
._9_c00026{width:20.068005pt;}
._8_c00026{width:21.255167pt;}
._e_c00026{width:22.610230pt;}
._a_c00026{width:28.908156pt;}
._b_c00026{width:30.074277pt;}
._17_c00026{width:35.507008pt;}
._7_c00026{width:55.367329pt;}
._1_c00026{width:1453.230753pt;}
.fs1_c00026{font-size:37.120000pt;}
.fs2_c00026{font-size:48.000000pt;}
.fs0_c00026{font-size:58.880000pt;}
.y0_c00026{bottom:0.000000pt;}
.y22_c00026{bottom:111.519867pt;}
.y21_c00026{bottom:130.272000pt;}
.y20_c00026{bottom:148.826667pt;}
.y1f_c00026{bottom:404.867200pt;}
.y1e_c00026{bottom:423.586933pt;}
.y1d_c00026{bottom:442.307200pt;}
.y1c_c00026{bottom:460.867067pt;}
.y1b_c00026{bottom:479.586800pt;}
.y1a_c00026{bottom:498.307067pt;}
.y19_c00026{bottom:516.866933pt;}
.y18_c00026{bottom:535.586667pt;}
.y17_c00026{bottom:562.308133pt;}
.y16_c00026{bottom:580.894533pt;}
.y15_c00026{bottom:599.614800pt;}
.y14_c00026{bottom:618.334533pt;}
.y13_c00026{bottom:636.894400pt;}
.y12_c00026{bottom:655.614133pt;}
.y11_c00026{bottom:674.333867pt;}
.y10_c00026{bottom:692.893733pt;}
.yf_c00026{bottom:711.614000pt;}
.ye_c00026{bottom:730.333733pt;}
.yd_c00026{bottom:748.893600pt;}
.yc_c00026{bottom:767.613867pt;}
.yb_c00026{bottom:786.333600pt;}
.ya_c00026{bottom:804.933600pt;}
.y9_c00026{bottom:823.653333pt;}
.y8_c00026{bottom:850.373333pt;}
.y7_c00026{bottom:900.933467pt;}
.y6_c00026{bottom:919.653200pt;}
.y5_c00026{bottom:938.373467pt;}
.y4_c00026{bottom:956.933333pt;}
.y3_c00026{bottom:975.653067pt;}
.y2_c00026{bottom:994.373333pt;}
.y1_c00026{bottom:1044.160000pt;}
.h3_c00026{height:42.866250pt;}
.h2_c00026{height:50.628750pt;}
.h1_c00026{height:1122.666667pt;}
.h0_c00026{height:1122.720000pt;}
.w1_c00026{width:794.000000pt;}
.w0_c00026{width:794.080000pt;}
.x0_c00026{left:0.000000pt;}
.x1_c00026{left:113.471867pt;}
.x2_c00026{left:132.352133pt;}
.x3_c00026{left:208.019333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0e9c7946fb0f52b0f65edbea.woff2')format("woff");}.ff1_c00027{font-family:ff1_c00027;line-height:1.070312;font-style:normal;font-weight:normal;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_2b0d24d905f9c3587c5996ed.woff2')format("woff");}.ff2_c00027{font-family:ff2_c00027;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00027{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00027{vertical-align:0.000000px;}
.ls1_c00027{letter-spacing:0.000000px;}
.ls0_c00027{letter-spacing:0.109860px;}
.sc__c00027{text-shadow:none;}
.sc0_c00027{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00027{-webkit-text-stroke:0px transparent;}
.sc0_c00027{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00027{word-spacing:-18.414720px;}
.ws1_c00027{word-spacing:-15.012000px;}
.ws2_c00027{word-spacing:0.000000px;}
._c_c00027{margin-left:-3.438404px;}
._6_c00027{margin-left:-2.257733px;}
._0_c00027{margin-left:-1.059761px;}
._5_c00027{width:1.061085px;}
._9_c00027{width:3.511131px;}
._f_c00027{width:4.767160px;}
._3_c00027{width:6.159592px;}
._d_c00027{width:7.203945px;}
._b_c00027{width:8.265650px;}
._a_c00027{width:9.685696px;}
._10_c00027{width:11.043551px;}
._4_c00027{width:12.452935px;}
._2_c00027{width:13.843209px;}
._8_c00027{width:15.301998px;}
._7_c00027{width:17.222903px;}
._e_c00027{width:25.369360px;}
._1_c00027{width:1634.884597px;}
.fc0_c00027{color:rgb(0,0,0);}
.fs1_c00027{font-size:54.000000px;}
.fs0_c00027{font-size:66.240000px;}
.y0_c00027{bottom:0.000000px;}
.y1f_c00027{bottom:482.474850px;}
.y1e_c00027{bottom:503.535150px;}
.y1d_c00027{bottom:524.595450px;}
.y1c_c00027{bottom:545.475300px;}
.y1b_c00027{bottom:566.535000px;}
.y1a_c00027{bottom:596.595000px;}
.y19_c00027{bottom:617.474850px;}
.y18_c00027{bottom:638.534550px;}
.y17_c00027{bottom:659.624850px;}
.y16_c00027{bottom:680.504700px;}
.y15_c00027{bottom:701.565000px;}
.y14_c00027{bottom:722.625300px;}
.y13_c00027{bottom:743.505150px;}
.y12_c00027{bottom:764.565450px;}
.y11_c00027{bottom:785.625150px;}
.y10_c00027{bottom:806.505000px;}
.yf_c00027{bottom:836.565750px;}
.ye_c00027{bottom:857.625450px;}
.yd_c00027{bottom:878.505300px;}
.yc_c00027{bottom:899.610150px;}
.yb_c00027{bottom:920.670450px;}
.ya_c00027{bottom:941.550300px;}
.y9_c00027{bottom:962.610000px;}
.y8_c00027{bottom:992.670300px;}
.y7_c00027{bottom:1013.550150px;}
.y6_c00027{bottom:1034.609850px;}
.y5_c00027{bottom:1055.670150px;}
.y4_c00027{bottom:1076.550000px;}
.y3_c00027{bottom:1097.609700px;}
.y2_c00027{bottom:1118.670000px;}
.y1_c00027{bottom:1174.680000px;}
.h2_c00027{height:56.957344px;}
.h1_c00027{height:1263.000000px;}
.h0_c00027{height:1263.060000px;}
.w1_c00027{width:893.250000px;}
.w0_c00027{width:893.340000px;}
.x0_c00027{left:0.000000px;}
.x1_c00027{left:127.655850px;}
.x2_c00027{left:148.896150px;}
@media print{
.v0_c00027{vertical-align:0.000000pt;}
.ls1_c00027{letter-spacing:0.000000pt;}
.ls0_c00027{letter-spacing:0.097653pt;}
.ws0_c00027{word-spacing:-16.368640pt;}
.ws1_c00027{word-spacing:-13.344000pt;}
.ws2_c00027{word-spacing:0.000000pt;}
._c_c00027{margin-left:-3.056360pt;}
._6_c00027{margin-left:-2.006874pt;}
._0_c00027{margin-left:-0.942009pt;}
._5_c00027{width:0.943187pt;}
._9_c00027{width:3.121005pt;}
._f_c00027{width:4.237475pt;}
._3_c00027{width:5.475193pt;}
._d_c00027{width:6.403507pt;}
._b_c00027{width:7.347245pt;}
._a_c00027{width:8.609507pt;}
._10_c00027{width:9.816490pt;}
._4_c00027{width:11.069275pt;}
._2_c00027{width:12.305074pt;}
._8_c00027{width:13.601776pt;}
._7_c00027{width:15.309247pt;}
._e_c00027{width:22.550542pt;}
._1_c00027{width:1453.230753pt;}
.fs1_c00027{font-size:48.000000pt;}
.fs0_c00027{font-size:58.880000pt;}
.y0_c00027{bottom:0.000000pt;}
.y1f_c00027{bottom:428.866533pt;}
.y1e_c00027{bottom:447.586800pt;}
.y1d_c00027{bottom:466.307067pt;}
.y1c_c00027{bottom:484.866933pt;}
.y1b_c00027{bottom:503.586667pt;}
.y1a_c00027{bottom:530.306667pt;}
.y19_c00027{bottom:548.866533pt;}
.y18_c00027{bottom:567.586267pt;}
.y17_c00027{bottom:586.333200pt;}
.y16_c00027{bottom:604.893067pt;}
.y15_c00027{bottom:623.613333pt;}
.y14_c00027{bottom:642.333600pt;}
.y13_c00027{bottom:660.893467pt;}
.y12_c00027{bottom:679.613733pt;}
.y11_c00027{bottom:698.333467pt;}
.y10_c00027{bottom:716.893333pt;}
.yf_c00027{bottom:743.614000pt;}
.ye_c00027{bottom:762.333733pt;}
.yd_c00027{bottom:780.893600pt;}
.yc_c00027{bottom:799.653467pt;}
.yb_c00027{bottom:818.373733pt;}
.ya_c00027{bottom:836.933600pt;}
.y9_c00027{bottom:855.653333pt;}
.y8_c00027{bottom:882.373600pt;}
.y7_c00027{bottom:900.933467pt;}
.y6_c00027{bottom:919.653200pt;}
.y5_c00027{bottom:938.373467pt;}
.y4_c00027{bottom:956.933333pt;}
.y3_c00027{bottom:975.653067pt;}
.y2_c00027{bottom:994.373333pt;}
.y1_c00027{bottom:1044.160000pt;}
.h2_c00027{height:50.628750pt;}
.h1_c00027{height:1122.666667pt;}
.h0_c00027{height:1122.720000pt;}
.w1_c00027{width:794.000000pt;}
.w0_c00027{width:794.080000pt;}
.x0_c00027{left:0.000000pt;}
.x1_c00027{left:113.471867pt;}
.x2_c00027{left:132.352133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a17664ebe4ddcb45567efc82.woff2')format("woff");}.ff1_c00028{font-family:ff1_c00028;line-height:1.070312;font-style:normal;font-weight:normal;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_eaf54badc75a63e1600f9913.woff2')format("woff");}.ff2_c00028{font-family:ff2_c00028;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00028;src:url('chunks/assets/font_2c661173fbe578d4a1a8299a.woff2')format("woff");}.ff3_c00028{font-family:ff3_c00028;line-height:0.938965;font-style: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);}
.m1_c00028{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_c00028{vertical-align:0.000000px;}
.ls4_c00028{letter-spacing:0.000000px;}
.ls2_c00028{letter-spacing:0.261120px;}
.ls0_c00028{letter-spacing:0.263460px;}
.ls3_c00028{letter-spacing:0.304800px;}
.ls1_c00028{letter-spacing:1.548960px;}
.sc__c00028{text-shadow:none;}
.sc0_c00028{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00028{-webkit-text-stroke:0px transparent;}
.sc0_c00028{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00028{word-spacing:-36.829440px;}
.ws0_c00028{word-spacing:-18.414720px;}
.ws1_c00028{word-spacing:-15.012000px;}
.ws3_c00028{word-spacing:0.000000px;}
._5_c00028{margin-left:-3.908419px;}
._6_c00028{margin-left:-2.329205px;}
._0_c00028{margin-left:-1.125696px;}
._a_c00028{width:1.136498px;}
._3_c00028{width:2.250733px;}
._e_c00028{width:3.590705px;}
._7_c00028{width:4.836325px;}
._8_c00028{width:6.109080px;}
._c_c00028{width:7.549979px;}
._b_c00028{width:8.687248px;}
._13_c00028{width:10.630913px;}
._9_c00028{width:12.223149px;}
._10_c00028{width:14.616007px;}
._f_c00028{width:15.690241px;}
._14_c00028{width:19.676130px;}
._d_c00028{width:21.990142px;}
._11_c00028{width:33.382932px;}
._12_c00028{width:34.711205px;}
._4_c00028{width:37.722951px;}
._2_c00028{width:187.479128px;}
._1_c00028{width:2012.060305px;}
.fc0_c00028{color:rgb(0,0,0);}
.fs2_c00028{font-size:54.000000px;}
.fs0_c00028{font-size:66.240000px;}
.fs1_c00028{font-size:84.240000px;}
.y0_c00028{bottom:0.000000px;}
.y2f_c00028{bottom:128.520750px;}
.y2e_c00028{bottom:149.436300px;}
.y2d_c00028{bottom:170.490750px;}
.y2c_c00028{bottom:191.550450px;}
.y2b_c00028{bottom:212.430300px;}
.y2a_c00028{bottom:233.490600px;}
.y29_c00028{bottom:254.550300px;}
.y28_c00028{bottom:275.430150px;}
.y27_c00028{bottom:296.490450px;}
.y26_c00028{bottom:317.550150px;}
.y25_c00028{bottom:338.430000px;}
.y24_c00028{bottom:368.490600px;}
.y23_c00028{bottom:389.595450px;}
.y22_c00028{bottom:410.475300px;}
.y21_c00028{bottom:431.535000px;}
.y20_c00028{bottom:461.595450px;}
.y1f_c00028{bottom:482.475300px;}
.y1e_c00028{bottom:503.535000px;}
.y1d_c00028{bottom:524.595300px;}
.y1c_c00028{bottom:545.475150px;}
.y1b_c00028{bottom:566.534850px;}
.y1a_c00028{bottom:587.595150px;}
.y19_c00028{bottom:608.475000px;}
.y18_c00028{bottom:629.534700px;}
.y17_c00028{bottom:650.625000px;}
.y16_c00028{bottom:680.504700px;}
.y15_c00028{bottom:701.566500px;}
.y14_c00028{bottom:722.626200px;}
.y13_c00028{bottom:743.506050px;}
.y12_c00028{bottom:764.565750px;}
.y11_c00028{bottom:785.625450px;}
.y10_c00028{bottom:806.505300px;}
.yf_c00028{bottom:827.565600px;}
.ye_c00028{bottom:848.625300px;}
.yd_c00028{bottom:869.505150px;}
.yc_c00028{bottom:890.565450px;}
.yb_c00028{bottom:911.670300px;}
.ya_c00028{bottom:932.550150px;}
.y9_c00028{bottom:953.609850px;}
.y8_c00028{bottom:974.670150px;}
.y7_c00028{bottom:995.550000px;}
.y6_c00028{bottom:1025.610150px;}
.y5_c00028{bottom:1046.670450px;}
.y4_c00028{bottom:1067.550300px;}
.y3_c00028{bottom:1088.610000px;}
.y2_c00028{bottom:1118.670000px;}
.y1_c00028{bottom:1174.680000px;}
.h2_c00028{height:56.957344px;}
.h3_c00028{height:61.329023px;}
.h1_c00028{height:1263.000000px;}
.h0_c00028{height:1263.060000px;}
.w1_c00028{width:893.250000px;}
.w0_c00028{width:893.340000px;}
.x0_c00028{left:0.000000px;}
.x1_c00028{left:127.655850px;}
.x2_c00028{left:148.896150px;}
@media print{
.v0_c00028{vertical-align:0.000000pt;}
.ls4_c00028{letter-spacing:0.000000pt;}
.ls2_c00028{letter-spacing:0.232107pt;}
.ls0_c00028{letter-spacing:0.234187pt;}
.ls3_c00028{letter-spacing:0.270933pt;}
.ls1_c00028{letter-spacing:1.376853pt;}
.ws2_c00028{word-spacing:-32.737280pt;}
.ws0_c00028{word-spacing:-16.368640pt;}
.ws1_c00028{word-spacing:-13.344000pt;}
.ws3_c00028{word-spacing:0.000000pt;}
._5_c00028{margin-left:-3.474150pt;}
._6_c00028{margin-left:-2.070404pt;}
._0_c00028{margin-left:-1.000619pt;}
._a_c00028{width:1.010221pt;}
._3_c00028{width:2.000651pt;}
._e_c00028{width:3.191738pt;}
._7_c00028{width:4.298955pt;}
._8_c00028{width:5.430293pt;}
._c_c00028{width:6.711092pt;}
._b_c00028{width:7.721998pt;}
._13_c00028{width:9.449701pt;}
._9_c00028{width:10.865022pt;}
._10_c00028{width:12.992006pt;}
._f_c00028{width:13.946881pt;}
._14_c00028{width:17.489893pt;}
._d_c00028{width:19.546793pt;}
._11_c00028{width:29.673718pt;}
._12_c00028{width:30.854404pt;}
._4_c00028{width:33.531512pt;}
._2_c00028{width:166.648114pt;}
._1_c00028{width:1788.498049pt;}
.fs2_c00028{font-size:48.000000pt;}
.fs0_c00028{font-size:58.880000pt;}
.fs1_c00028{font-size:74.880000pt;}
.y0_c00028{bottom:0.000000pt;}
.y2f_c00028{bottom:114.240667pt;}
.y2e_c00028{bottom:132.832267pt;}
.y2d_c00028{bottom:151.547333pt;}
.y2c_c00028{bottom:170.267067pt;}
.y2b_c00028{bottom:188.826933pt;}
.y2a_c00028{bottom:207.547200pt;}
.y29_c00028{bottom:226.266933pt;}
.y28_c00028{bottom:244.826800pt;}
.y27_c00028{bottom:263.547067pt;}
.y26_c00028{bottom:282.266800pt;}
.y25_c00028{bottom:300.826667pt;}
.y24_c00028{bottom:327.547200pt;}
.y23_c00028{bottom:346.307067pt;}
.y22_c00028{bottom:364.866933pt;}
.y21_c00028{bottom:383.586667pt;}
.y20_c00028{bottom:410.307067pt;}
.y1f_c00028{bottom:428.866933pt;}
.y1e_c00028{bottom:447.586667pt;}
.y1d_c00028{bottom:466.306933pt;}
.y1c_c00028{bottom:484.866800pt;}
.y1b_c00028{bottom:503.586533pt;}
.y1a_c00028{bottom:522.306800pt;}
.y19_c00028{bottom:540.866667pt;}
.y18_c00028{bottom:559.586400pt;}
.y17_c00028{bottom:578.333333pt;}
.y16_c00028{bottom:604.893067pt;}
.y15_c00028{bottom:623.614667pt;}
.y14_c00028{bottom:642.334400pt;}
.y13_c00028{bottom:660.894267pt;}
.y12_c00028{bottom:679.614000pt;}
.y11_c00028{bottom:698.333733pt;}
.y10_c00028{bottom:716.893600pt;}
.yf_c00028{bottom:735.613867pt;}
.ye_c00028{bottom:754.333600pt;}
.yd_c00028{bottom:772.893467pt;}
.yc_c00028{bottom:791.613733pt;}
.yb_c00028{bottom:810.373600pt;}
.ya_c00028{bottom:828.933467pt;}
.y9_c00028{bottom:847.653200pt;}
.y8_c00028{bottom:866.373467pt;}
.y7_c00028{bottom:884.933333pt;}
.y6_c00028{bottom:911.653467pt;}
.y5_c00028{bottom:930.373733pt;}
.y4_c00028{bottom:948.933600pt;}
.y3_c00028{bottom:967.653333pt;}
.y2_c00028{bottom:994.373333pt;}
.y1_c00028{bottom:1044.160000pt;}
.h2_c00028{height:50.628750pt;}
.h3_c00028{height:54.514688pt;}
.h1_c00028{height:1122.666667pt;}
.h0_c00028{height:1122.720000pt;}
.w1_c00028{width:794.000000pt;}
.w0_c00028{width:794.080000pt;}
.x0_c00028{left:0.000000pt;}
.x1_c00028{left:113.471867pt;}
.x2_c00028{left:132.352133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7f286196f67bcb7b98003591.woff2')format("woff");}.ff1_c00029{font-family:ff1_c00029;line-height:1.070312;font-style:normal;font-weight:normal;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_505aa57845b03c7c2513d2e9.woff2')format("woff");}.ff2_c00029{font-family:ff2_c00029;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00029;src:url('chunks/assets/font_8b0701136755e70ca98120f9.woff2')format("woff");}.ff3_c00029{font-family:ff3_c00029;line-height:0.666504;font-style: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;}
.ls2_c00029{letter-spacing:0.000000px;}
.ls0_c00029{letter-spacing:0.261600px;}
.ls1_c00029{letter-spacing:0.304800px;}
.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:-18.414720px;}
.ws2_c00029{word-spacing:-16.560000px;}
.ws0_c00029{word-spacing:-15.012000px;}
.ws3_c00029{word-spacing:0.000000px;}
._b_c00029{margin-left:-6.969246px;}
._a_c00029{margin-left:-4.938068px;}
._5_c00029{margin-left:-3.376317px;}
._6_c00029{margin-left:-2.202875px;}
._0_c00029{margin-left:-1.125696px;}
._8_c00029{width:1.655407px;}
._3_c00029{width:3.574404px;}
._2_c00029{width:4.967733px;}
._9_c00029{width:6.971053px;}
._7_c00029{width:15.434627px;}
._e_c00029{width:19.455556px;}
._d_c00029{width:37.644772px;}
._4_c00029{width:62.288245px;}
._c_c00029{width:79.252176px;}
._f_c00029{width:845.765568px;}
._1_c00029{width:2012.060305px;}
.fc0_c00029{color:rgb(0,0,0);}
.fs1_c00029{font-size:54.000000px;}
.fs0_c00029{font-size:66.240000px;}
.y0_c00029{bottom:0.000000px;}
.y27_c00029{bottom:116.459700px;}
.y26_c00029{bottom:137.555850px;}
.y25_c00029{bottom:158.429850px;}
.y24_c00029{bottom:179.490150px;}
.y23_c00029{bottom:200.549850px;}
.y22_c00029{bottom:221.429700px;}
.y21_c00029{bottom:242.490000px;}
.y20_c00029{bottom:272.550000px;}
.y1f_c00029{bottom:302.430000px;}
.y1e_c00029{bottom:332.490000px;}
.y1d_c00029{bottom:362.550000px;}
.y1c_c00029{bottom:392.475000px;}
.y1b_c00029{bottom:422.535000px;}
.y1a_c00029{bottom:452.595000px;}
.y19_c00029{bottom:482.475000px;}
.y18_c00029{bottom:512.535000px;}
.y17_c00029{bottom:542.595000px;}
.y16_c00029{bottom:572.475000px;}
.y15_c00029{bottom:602.535000px;}
.y14_c00029{bottom:632.595000px;}
.y13_c00029{bottom:662.505000px;}
.y12_c00029{bottom:692.565000px;}
.y11_c00029{bottom:722.625000px;}
.y10_c00029{bottom:752.505000px;}
.yf_c00029{bottom:782.565000px;}
.ye_c00029{bottom:812.624850px;}
.yd_c00029{bottom:833.504700px;}
.yc_c00029{bottom:854.565000px;}
.yb_c00029{bottom:884.625150px;}
.ya_c00029{bottom:905.550150px;}
.y9_c00029{bottom:926.609850px;}
.y8_c00029{bottom:947.670150px;}
.y7_c00029{bottom:968.550000px;}
.y6_c00029{bottom:989.609700px;}
.y5_c00029{bottom:1010.670000px;}
.y4_c00029{bottom:1040.550000px;}
.y3_c00029{bottom:1097.609700px;}
.y2_c00029{bottom:1118.670000px;}
.y1_c00029{bottom:1174.680000px;}
.h3_c00029{height:48.224531px;}
.h2_c00029{height:56.957344px;}
.h1_c00029{height:1263.000000px;}
.h0_c00029{height:1263.060000px;}
.w1_c00029{width:893.250000px;}
.w0_c00029{width:893.340000px;}
.x0_c00029{left:0.000000px;}
.x1_c00029{left:127.655850px;}
.x2_c00029{left:148.896150px;}
.x3_c00029{left:191.550000px;}
@media print{
.v0_c00029{vertical-align:0.000000pt;}
.ls2_c00029{letter-spacing:0.000000pt;}
.ls0_c00029{letter-spacing:0.232533pt;}
.ls1_c00029{letter-spacing:0.270933pt;}
.ws1_c00029{word-spacing:-16.368640pt;}
.ws2_c00029{word-spacing:-14.720000pt;}
.ws0_c00029{word-spacing:-13.344000pt;}
.ws3_c00029{word-spacing:0.000000pt;}
._b_c00029{margin-left:-6.194886pt;}
._a_c00029{margin-left:-4.389394pt;}
._5_c00029{margin-left:-3.001171pt;}
._6_c00029{margin-left:-1.958111pt;}
._0_c00029{margin-left:-1.000619pt;}
._8_c00029{width:1.471473pt;}
._3_c00029{width:3.177248pt;}
._2_c00029{width:4.415763pt;}
._9_c00029{width:6.196492pt;}
._7_c00029{width:13.719668pt;}
._e_c00029{width:17.293827pt;}
._d_c00029{width:33.462020pt;}
._4_c00029{width:55.367329pt;}
._c_c00029{width:70.446379pt;}
._f_c00029{width:751.791616pt;}
._1_c00029{width:1788.498049pt;}
.fs1_c00029{font-size:48.000000pt;}
.fs0_c00029{font-size:58.880000pt;}
.y0_c00029{bottom:0.000000pt;}
.y27_c00029{bottom:103.519733pt;}
.y26_c00029{bottom:122.271867pt;}
.y25_c00029{bottom:140.826533pt;}
.y24_c00029{bottom:159.546800pt;}
.y23_c00029{bottom:178.266533pt;}
.y22_c00029{bottom:196.826400pt;}
.y21_c00029{bottom:215.546667pt;}
.y20_c00029{bottom:242.266667pt;}
.y1f_c00029{bottom:268.826667pt;}
.y1e_c00029{bottom:295.546667pt;}
.y1d_c00029{bottom:322.266667pt;}
.y1c_c00029{bottom:348.866667pt;}
.y1b_c00029{bottom:375.586667pt;}
.y1a_c00029{bottom:402.306667pt;}
.y19_c00029{bottom:428.866667pt;}
.y18_c00029{bottom:455.586667pt;}
.y17_c00029{bottom:482.306667pt;}
.y16_c00029{bottom:508.866667pt;}
.y15_c00029{bottom:535.586667pt;}
.y14_c00029{bottom:562.306667pt;}
.y13_c00029{bottom:588.893333pt;}
.y12_c00029{bottom:615.613333pt;}
.y11_c00029{bottom:642.333333pt;}
.y10_c00029{bottom:668.893333pt;}
.yf_c00029{bottom:695.613333pt;}
.ye_c00029{bottom:722.333200pt;}
.yd_c00029{bottom:740.893067pt;}
.yc_c00029{bottom:759.613333pt;}
.yb_c00029{bottom:786.333467pt;}
.ya_c00029{bottom:804.933467pt;}
.y9_c00029{bottom:823.653200pt;}
.y8_c00029{bottom:842.373467pt;}
.y7_c00029{bottom:860.933333pt;}
.y6_c00029{bottom:879.653067pt;}
.y5_c00029{bottom:898.373333pt;}
.y4_c00029{bottom:924.933333pt;}
.y3_c00029{bottom:975.653067pt;}
.y2_c00029{bottom:994.373333pt;}
.y1_c00029{bottom:1044.160000pt;}
.h3_c00029{height:42.866250pt;}
.h2_c00029{height:50.628750pt;}
.h1_c00029{height:1122.666667pt;}
.h0_c00029{height:1122.720000pt;}
.w1_c00029{width:794.000000pt;}
.w0_c00029{width:794.080000pt;}
.x0_c00029{left:0.000000pt;}
.x1_c00029{left:113.471867pt;}
.x2_c00029{left:132.352133pt;}
.x3_c00029{left:170.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_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_3989024aec4650d10f7e74fd.woff2')format("woff");}.ff1_c00030{font-family:ff1_c00030;line-height:1.070312;font-style:normal;font-weight:normal;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_8b0701136755e70ca98120f9.woff2')format("woff");}.ff2_c00030{font-family:ff2_c00030;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.m1_c00030{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1_c00030{vertical-align:-5.760936px;}
.v0_c00030{vertical-align:0.000000px;}
.ls0_c00030{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00030{word-spacing:-18.414720px;}
.ws0_c00030{word-spacing:-16.560000px;}
.ws3_c00030{word-spacing:-15.012000px;}
.ws2_c00030{word-spacing:-11.609280px;}
.ws4_c00030{word-spacing:0.000000px;}
._6_c00030{margin-left:-4.703776px;}
._b_c00030{margin-left:-3.399906px;}
._c_c00030{margin-left:-2.252431px;}
._0_c00030{margin-left:-1.125696px;}
._5_c00030{width:1.191677px;}
._10_c00030{width:3.503930px;}
._e_c00030{width:4.767847px;}
._f_c00030{width:6.096608px;}
._7_c00030{width:7.947806px;}
._11_c00030{width:14.903263px;}
._4_c00030{width:15.962436px;}
._3_c00030{width:17.089486px;}
._d_c00030{width:40.011319px;}
._a_c00030{width:48.221795px;}
._9_c00030{width:49.248784px;}
._8_c00030{width:50.870377px;}
._2_c00030{width:79.252176px;}
._1_c00030{width:2012.060305px;}
.fc0_c00030{color:rgb(0,0,0);}
.fs2_c00030{font-size:41.760000px;}
.fs1_c00030{font-size:54.000000px;}
.fs0_c00030{font-size:66.240000px;}
.y0_c00030{bottom:0.000000px;}
.y1a_c00030{bottom:94.320150px;}
.y19_c00030{bottom:124.379850px;}
.y18_c00030{bottom:154.470150px;}
.y17_c00030{bottom:175.350000px;}
.y16_c00030{bottom:196.409700px;}
.y15_c00030{bottom:217.470000px;}
.y14_c00030{bottom:247.350000px;}
.y13_c00030{bottom:286.409700px;}
.y12_c00030{bottom:307.470000px;}
.y11_c00030{bottom:758.625150px;}
.y10_c00030{bottom:779.505000px;}
.yf_c00030{bottom:800.565300px;}
.ye_c00030{bottom:821.625000px;}
.yd_c00030{bottom:851.505450px;}
.yc_c00030{bottom:872.565750px;}
.yb_c00030{bottom:893.670600px;}
.ya_c00030{bottom:914.550450px;}
.y9_c00030{bottom:935.610150px;}
.y8_c00030{bottom:956.670450px;}
.y7_c00030{bottom:977.550300px;}
.y6_c00030{bottom:998.610000px;}
.y5_c00030{bottom:1028.670000px;}
.y4_c00030{bottom:1058.550000px;}
.y3_c00030{bottom:1088.610000px;}
.y2_c00030{bottom:1118.670000px;}
.y1_c00030{bottom:1174.680000px;}
.h2_c00030{height:56.957344px;}
.h1_c00030{height:1263.000000px;}
.h0_c00030{height:1263.060000px;}
.w1_c00030{width:893.250000px;}
.w0_c00030{width:893.340000px;}
.x0_c00030{left:0.000000px;}
.x1_c00030{left:127.655850px;}
.x2_c00030{left:148.896150px;}
.x3_c00030{left:234.030045px;}
@media print{
.v1_c00030{vertical-align:-5.120832pt;}
.v0_c00030{vertical-align:0.000000pt;}
.ls0_c00030{letter-spacing:0.000000pt;}
.ws1_c00030{word-spacing:-16.368640pt;}
.ws0_c00030{word-spacing:-14.720000pt;}
.ws3_c00030{word-spacing:-13.344000pt;}
.ws2_c00030{word-spacing:-10.319360pt;}
.ws4_c00030{word-spacing:0.000000pt;}
._6_c00030{margin-left:-4.181134pt;}
._b_c00030{margin-left:-3.022138pt;}
._c_c00030{margin-left:-2.002161pt;}
._0_c00030{margin-left:-1.000619pt;}
._5_c00030{width:1.059268pt;}
._10_c00030{width:3.114605pt;}
._e_c00030{width:4.238086pt;}
._f_c00030{width:5.419207pt;}
._7_c00030{width:7.064717pt;}
._11_c00030{width:13.247345pt;}
._4_c00030{width:14.188832pt;}
._3_c00030{width:15.190654pt;}
._d_c00030{width:35.565617pt;}
._a_c00030{width:42.863818pt;}
._9_c00030{width:43.776697pt;}
._8_c00030{width:45.218113pt;}
._2_c00030{width:70.446379pt;}
._1_c00030{width:1788.498049pt;}
.fs2_c00030{font-size:37.120000pt;}
.fs1_c00030{font-size:48.000000pt;}
.fs0_c00030{font-size:58.880000pt;}
.y0_c00030{bottom:0.000000pt;}
.y1a_c00030{bottom:83.840133pt;}
.y19_c00030{bottom:110.559867pt;}
.y18_c00030{bottom:137.306800pt;}
.y17_c00030{bottom:155.866667pt;}
.y16_c00030{bottom:174.586400pt;}
.y15_c00030{bottom:193.306667pt;}
.y14_c00030{bottom:219.866667pt;}
.y13_c00030{bottom:254.586400pt;}
.y12_c00030{bottom:273.306667pt;}
.y11_c00030{bottom:674.333467pt;}
.y10_c00030{bottom:692.893333pt;}
.yf_c00030{bottom:711.613600pt;}
.ye_c00030{bottom:730.333333pt;}
.yd_c00030{bottom:756.893733pt;}
.yc_c00030{bottom:775.614000pt;}
.yb_c00030{bottom:794.373867pt;}
.ya_c00030{bottom:812.933733pt;}
.y9_c00030{bottom:831.653467pt;}
.y8_c00030{bottom:850.373733pt;}
.y7_c00030{bottom:868.933600pt;}
.y6_c00030{bottom:887.653333pt;}
.y5_c00030{bottom:914.373333pt;}
.y4_c00030{bottom:940.933333pt;}
.y3_c00030{bottom:967.653333pt;}
.y2_c00030{bottom:994.373333pt;}
.y1_c00030{bottom:1044.160000pt;}
.h2_c00030{height:50.628750pt;}
.h1_c00030{height:1122.666667pt;}
.h0_c00030{height:1122.720000pt;}
.w1_c00030{width:794.000000pt;}
.w0_c00030{width:794.080000pt;}
.x0_c00030{left:0.000000pt;}
.x1_c00030{left:113.471867pt;}
.x2_c00030{left:132.352133pt;}
.x3_c00030{left:208.026707pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_61874f984665ca5c3d8fa37b.woff2')format("woff");}.ff1_c00031{font-family:ff1_c00031;line-height:1.070312;font-style:normal;font-weight:normal;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_8b0701136755e70ca98120f9.woff2')format("woff");}.ff2_c00031{font-family:ff2_c00031;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1_c00031{vertical-align:-5.760936px;}
.v0_c00031{vertical-align:0.000000px;}
.ls2_c00031{letter-spacing:0.000000px;}
.ls0_c00031{letter-spacing:0.261600px;}
.ls1_c00031{letter-spacing:0.304800px;}
.sc__c00031{text-shadow:none;}
.sc0_c00031{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00031{-webkit-text-stroke:0px transparent;}
.sc0_c00031{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00031{word-spacing:-18.414720px;}
.ws0_c00031{word-spacing:-16.560000px;}
.ws1_c00031{word-spacing:-15.012000px;}
.ws3_c00031{word-spacing:-11.609280px;}
.ws4_c00031{word-spacing:0.000000px;}
._4_c00031{margin-left:-3.754178px;}
._3_c00031{margin-left:-2.617382px;}
._0_c00031{margin-left:-1.125696px;}
._8_c00031{width:1.789680px;}
._7_c00031{width:2.913414px;}
._6_c00031{width:4.735674px;}
._5_c00031{width:6.095252px;}
._b_c00031{width:7.225986px;}
._a_c00031{width:8.575370px;}
._9_c00031{width:9.936331px;}
._d_c00031{width:11.405274px;}
._c_c00031{width:13.406520px;}
._f_c00031{width:15.367763px;}
._e_c00031{width:40.011319px;}
._2_c00031{width:79.252176px;}
._1_c00031{width:2012.060305px;}
.fc0_c00031{color:rgb(0,0,0);}
.fs2_c00031{font-size:41.760000px;}
.fs1_c00031{font-size:54.000000px;}
.fs0_c00031{font-size:66.240000px;}
.y0_c00031{bottom:0.000000px;}
.y19_c00031{bottom:103.860150px;}
.y18_c00031{bottom:124.920450px;}
.y17_c00031{bottom:146.016600px;}
.y16_c00031{bottom:166.890600px;}
.y15_c00031{bottom:187.950300px;}
.y14_c00031{bottom:209.010000px;}
.y13_c00031{bottom:238.890000px;}
.y12_c00031{bottom:277.950000px;}
.y11_c00031{bottom:749.625300px;}
.y10_c00031{bottom:770.505150px;}
.yf_c00031{bottom:791.565450px;}
.ye_c00031{bottom:812.625150px;}
.yd_c00031{bottom:833.505000px;}
.yc_c00031{bottom:863.565450px;}
.yb_c00031{bottom:884.625150px;}
.ya_c00031{bottom:905.550150px;}
.y9_c00031{bottom:926.609850px;}
.y8_c00031{bottom:947.670150px;}
.y7_c00031{bottom:968.550000px;}
.y6_c00031{bottom:998.610000px;}
.y5_c00031{bottom:1028.670000px;}
.y4_c00031{bottom:1058.550000px;}
.y3_c00031{bottom:1088.610000px;}
.y2_c00031{bottom:1118.670000px;}
.y1_c00031{bottom:1174.680000px;}
.h2_c00031{height:56.957344px;}
.h1_c00031{height:1263.000000px;}
.h0_c00031{height:1263.060000px;}
.w1_c00031{width:893.250000px;}
.w0_c00031{width:893.340000px;}
.x0_c00031{left:0.000000px;}
.x1_c00031{left:127.655850px;}
.x2_c00031{left:148.888050px;}
@media print{
.v1_c00031{vertical-align:-5.120832pt;}
.v0_c00031{vertical-align:0.000000pt;}
.ls2_c00031{letter-spacing:0.000000pt;}
.ls0_c00031{letter-spacing:0.232533pt;}
.ls1_c00031{letter-spacing:0.270933pt;}
.ws2_c00031{word-spacing:-16.368640pt;}
.ws0_c00031{word-spacing:-14.720000pt;}
.ws1_c00031{word-spacing:-13.344000pt;}
.ws3_c00031{word-spacing:-10.319360pt;}
.ws4_c00031{word-spacing:0.000000pt;}
._4_c00031{margin-left:-3.337048pt;}
._3_c00031{margin-left:-2.326561pt;}
._0_c00031{margin-left:-1.000619pt;}
._8_c00031{width:1.590827pt;}
._7_c00031{width:2.589701pt;}
._6_c00031{width:4.209488pt;}
._5_c00031{width:5.418002pt;}
._b_c00031{width:6.423099pt;}
._a_c00031{width:7.622551pt;}
._9_c00031{width:8.832294pt;}
._d_c00031{width:10.138021pt;}
._c_c00031{width:11.916907pt;}
._f_c00031{width:13.660234pt;}
._e_c00031{width:35.565617pt;}
._2_c00031{width:70.446379pt;}
._1_c00031{width:1788.498049pt;}
.fs2_c00031{font-size:37.120000pt;}
.fs1_c00031{font-size:48.000000pt;}
.fs0_c00031{font-size:58.880000pt;}
.y0_c00031{bottom:0.000000pt;}
.y19_c00031{bottom:92.320133pt;}
.y18_c00031{bottom:111.040400pt;}
.y17_c00031{bottom:129.792533pt;}
.y16_c00031{bottom:148.347200pt;}
.y15_c00031{bottom:167.066933pt;}
.y14_c00031{bottom:185.786667pt;}
.y13_c00031{bottom:212.346667pt;}
.y12_c00031{bottom:247.066667pt;}
.y11_c00031{bottom:666.333600pt;}
.y10_c00031{bottom:684.893467pt;}
.yf_c00031{bottom:703.613733pt;}
.ye_c00031{bottom:722.333467pt;}
.yd_c00031{bottom:740.893333pt;}
.yc_c00031{bottom:767.613733pt;}
.yb_c00031{bottom:786.333467pt;}
.ya_c00031{bottom:804.933467pt;}
.y9_c00031{bottom:823.653200pt;}
.y8_c00031{bottom:842.373467pt;}
.y7_c00031{bottom:860.933333pt;}
.y6_c00031{bottom:887.653333pt;}
.y5_c00031{bottom:914.373333pt;}
.y4_c00031{bottom:940.933333pt;}
.y3_c00031{bottom:967.653333pt;}
.y2_c00031{bottom:994.373333pt;}
.y1_c00031{bottom:1044.160000pt;}
.h2_c00031{height:50.628750pt;}
.h1_c00031{height:1122.666667pt;}
.h0_c00031{height:1122.720000pt;}
.w1_c00031{width:794.000000pt;}
.w0_c00031{width:794.080000pt;}
.x0_c00031{left:0.000000pt;}
.x1_c00031{left:113.471867pt;}
.x2_c00031{left:132.344933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1663efdc9c20d39a740c53bd.woff2')format("woff");}.ff1_c00032{font-family:ff1_c00032;line-height:1.070312;font-style: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);}
.m1_c00032{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_c00032{vertical-align:0.000000px;}
.ls4_c00032{letter-spacing:0.000000px;}
.ls2_c00032{letter-spacing:0.108240px;}
.ls3_c00032{letter-spacing:0.235260px;}
.ls0_c00032{letter-spacing:0.261600px;}
.ls1_c00032{letter-spacing:0.304800px;}
.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;}
}
.ws1_c00032{word-spacing:-18.414720px;}
.ws0_c00032{word-spacing:-15.012000px;}
.ws2_c00032{word-spacing:0.000000px;}
._12_c00032{margin-left:-7.195812px;}
._8_c00032{margin-left:-5.934532px;}
._c_c00032{margin-left:-4.242079px;}
._f_c00032{margin-left:-2.717151px;}
._0_c00032{margin-left:-1.125696px;}
._d_c00032{width:1.019437px;}
._4_c00032{width:2.065253px;}
._6_c00032{width:3.831735px;}
._7_c00032{width:5.153718px;}
._10_c00032{width:6.492315px;}
._13_c00032{width:8.017837px;}
._e_c00032{width:9.335673px;}
._5_c00032{width:10.467517px;}
._3_c00032{width:11.786431px;}
._2_c00032{width:13.180794px;}
._b_c00032{width:15.897885px;}
._a_c00032{width:16.917895px;}
._9_c00032{width:26.984807px;}
._11_c00032{width:40.011319px;}
._1_c00032{width:2012.060305px;}
.fc0_c00032{color:rgb(0,0,0);}
.fs1_c00032{font-size:54.000000px;}
.fs0_c00032{font-size:66.240000px;}
.y0_c00032{bottom:0.000000px;}
.y21_c00032{bottom:90.720750px;}
.y20_c00032{bottom:111.780450px;}
.y1f_c00032{bottom:132.840750px;}
.y1e_c00032{bottom:153.750450px;}
.y1d_c00032{bottom:174.810150px;}
.y1c_c00032{bottom:195.870450px;}
.y1b_c00032{bottom:216.750300px;}
.y1a_c00032{bottom:237.810150px;}
.y19_c00032{bottom:258.870450px;}
.y18_c00032{bottom:279.750300px;}
.y17_c00032{bottom:300.810000px;}
.y16_c00032{bottom:330.870000px;}
.y15_c00032{bottom:369.750000px;}
.y14_c00032{bottom:740.625750px;}
.y13_c00032{bottom:761.505600px;}
.y12_c00032{bottom:782.565900px;}
.y11_c00032{bottom:803.625600px;}
.y10_c00032{bottom:824.505450px;}
.yf_c00032{bottom:845.565750px;}
.ye_c00032{bottom:866.625450px;}
.yd_c00032{bottom:887.505300px;}
.yc_c00032{bottom:908.610150px;}
.yb_c00032{bottom:929.670450px;}
.ya_c00032{bottom:950.550300px;}
.y9_c00032{bottom:971.610000px;}
.y8_c00032{bottom:992.670300px;}
.y7_c00032{bottom:1013.550150px;}
.y6_c00032{bottom:1034.609850px;}
.y5_c00032{bottom:1055.670150px;}
.y4_c00032{bottom:1076.550000px;}
.y3_c00032{bottom:1097.609700px;}
.y2_c00032{bottom:1118.670000px;}
.y1_c00032{bottom:1174.680000px;}
.h2_c00032{height:56.957344px;}
.h1_c00032{height:1263.000000px;}
.h0_c00032{height:1263.060000px;}
.w1_c00032{width:893.250000px;}
.w0_c00032{width:893.340000px;}
.x0_c00032{left:0.000000px;}
.x1_c00032{left:127.655850px;}
.x2_c00032{left:148.896150px;}
@media print{
.v0_c00032{vertical-align:0.000000pt;}
.ls4_c00032{letter-spacing:0.000000pt;}
.ls2_c00032{letter-spacing:0.096213pt;}
.ls3_c00032{letter-spacing:0.209120pt;}
.ls0_c00032{letter-spacing:0.232533pt;}
.ls1_c00032{letter-spacing:0.270933pt;}
.ws1_c00032{word-spacing:-16.368640pt;}
.ws0_c00032{word-spacing:-13.344000pt;}
.ws2_c00032{word-spacing:0.000000pt;}
._12_c00032{margin-left:-6.396278pt;}
._8_c00032{margin-left:-5.275140pt;}
._c_c00032{margin-left:-3.770737pt;}
._f_c00032{margin-left:-2.415245pt;}
._0_c00032{margin-left:-1.000619pt;}
._d_c00032{width:0.906167pt;}
._4_c00032{width:1.835781pt;}
._6_c00032{width:3.405987pt;}
._7_c00032{width:4.581083pt;}
._10_c00032{width:5.770947pt;}
._13_c00032{width:7.126966pt;}
._e_c00032{width:8.298376pt;}
._5_c00032{width:9.304459pt;}
._3_c00032{width:10.476828pt;}
._2_c00032{width:11.716261pt;}
._b_c00032{width:14.131453pt;}
._a_c00032{width:15.038129pt;}
._9_c00032{width:23.986496pt;}
._11_c00032{width:35.565617pt;}
._1_c00032{width:1788.498049pt;}
.fs1_c00032{font-size:48.000000pt;}
.fs0_c00032{font-size:58.880000pt;}
.y0_c00032{bottom:0.000000pt;}
.y21_c00032{bottom:80.640667pt;}
.y20_c00032{bottom:99.360400pt;}
.y1f_c00032{bottom:118.080667pt;}
.y1e_c00032{bottom:136.667067pt;}
.y1d_c00032{bottom:155.386800pt;}
.y1c_c00032{bottom:174.107067pt;}
.y1b_c00032{bottom:192.666933pt;}
.y1a_c00032{bottom:211.386800pt;}
.y19_c00032{bottom:230.107067pt;}
.y18_c00032{bottom:248.666933pt;}
.y17_c00032{bottom:267.386667pt;}
.y16_c00032{bottom:294.106667pt;}
.y15_c00032{bottom:328.666667pt;}
.y14_c00032{bottom:658.334000pt;}
.y13_c00032{bottom:676.893867pt;}
.y12_c00032{bottom:695.614133pt;}
.y11_c00032{bottom:714.333867pt;}
.y10_c00032{bottom:732.893733pt;}
.yf_c00032{bottom:751.614000pt;}
.ye_c00032{bottom:770.333733pt;}
.yd_c00032{bottom:788.893600pt;}
.yc_c00032{bottom:807.653467pt;}
.yb_c00032{bottom:826.373733pt;}
.ya_c00032{bottom:844.933600pt;}
.y9_c00032{bottom:863.653333pt;}
.y8_c00032{bottom:882.373600pt;}
.y7_c00032{bottom:900.933467pt;}
.y6_c00032{bottom:919.653200pt;}
.y5_c00032{bottom:938.373467pt;}
.y4_c00032{bottom:956.933333pt;}
.y3_c00032{bottom:975.653067pt;}
.y2_c00032{bottom:994.373333pt;}
.y1_c00032{bottom:1044.160000pt;}
.h2_c00032{height:50.628750pt;}
.h1_c00032{height:1122.666667pt;}
.h0_c00032{height:1122.720000pt;}
.w1_c00032{width:794.000000pt;}
.w0_c00032{width:794.080000pt;}
.x0_c00032{left:0.000000pt;}
.x1_c00032{left:113.471867pt;}
.x2_c00032{left:132.352133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_023b5d844ea29404ff64b510.woff2')format("woff");}.ff1_c00033{font-family:ff1_c00033;line-height:1.070312;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00033{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00033{vertical-align:0.000000px;}
.ls2_c00033{letter-spacing:0.000000px;}
.ls0_c00033{letter-spacing:0.108240px;}
.ls1_c00033{letter-spacing:2.268480px;}
.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;}
}
.ws1_c00033{word-spacing:-18.414720px;}
.ws0_c00033{word-spacing:-15.012000px;}
.ws2_c00033{word-spacing:0.000000px;}
._d_c00033{margin-left:-6.406888px;}
._2_c00033{margin-left:-4.272600px;}
._3_c00033{margin-left:-2.583045px;}
._0_c00033{margin-left:-1.125696px;}
._4_c00033{width:1.038284px;}
._10_c00033{width:2.056856px;}
._13_c00033{width:3.282431px;}
._9_c00033{width:4.694396px;}
._8_c00033{width:5.961719px;}
._5_c00033{width:7.683476px;}
._6_c00033{width:8.808445px;}
._14_c00033{width:10.807033px;}
._c_c00033{width:11.810381px;}
._b_c00033{width:13.079398px;}
._a_c00033{width:14.374197px;}
._11_c00033{width:15.963350px;}
._12_c00033{width:17.023325px;}
._15_c00033{width:19.937478px;}
._f_c00033{width:33.115425px;}
._e_c00033{width:34.312660px;}
._7_c00033{width:40.011319px;}
._1_c00033{width:2012.060305px;}
.fc0_c00033{color:rgb(0,0,0);}
.fs1_c00033{font-size:54.000000px;}
.fs0_c00033{font-size:66.240000px;}
.y0_c00033{bottom:0.000000px;}
.y18_c00033{bottom:102.960450px;}
.y17_c00033{bottom:124.020750px;}
.y16_c00033{bottom:145.116900px;}
.y15_c00033{bottom:165.990900px;}
.y14_c00033{bottom:187.050600px;}
.y13_c00033{bottom:208.110300px;}
.y12_c00033{bottom:228.990750px;}
.y11_c00033{bottom:250.050450px;}
.y10_c00033{bottom:271.110150px;}
.yf_c00033{bottom:291.990600px;}
.ye_c00033{bottom:313.050300px;}
.yd_c00033{bottom:334.110000px;}
.yc_c00033{bottom:363.990000px;}
.yb_c00033{bottom:403.095300px;}
.ya_c00033{bottom:424.155000px;}
.y9_c00033{bottom:971.610000px;}
.y8_c00033{bottom:992.670300px;}
.y7_c00033{bottom:1013.550150px;}
.y6_c00033{bottom:1034.609850px;}
.y5_c00033{bottom:1055.670150px;}
.y4_c00033{bottom:1076.550000px;}
.y3_c00033{bottom:1097.609700px;}
.y2_c00033{bottom:1118.670000px;}
.y1_c00033{bottom:1174.680000px;}
.h2_c00033{height:56.957344px;}
.h1_c00033{height:1263.000000px;}
.h0_c00033{height:1263.060000px;}
.w1_c00033{width:893.250000px;}
.w0_c00033{width:893.340000px;}
.x0_c00033{left:0.000000px;}
.x1_c00033{left:127.655850px;}
.x2_c00033{left:148.888050px;}
.x3_c00033{left:234.029250px;}
@media print{
.v0_c00033{vertical-align:0.000000pt;}
.ls2_c00033{letter-spacing:0.000000pt;}
.ls0_c00033{letter-spacing:0.096213pt;}
.ls1_c00033{letter-spacing:2.016427pt;}
.ws1_c00033{word-spacing:-16.368640pt;}
.ws0_c00033{word-spacing:-13.344000pt;}
.ws2_c00033{word-spacing:0.000000pt;}
._d_c00033{margin-left:-5.695012pt;}
._2_c00033{margin-left:-3.797867pt;}
._3_c00033{margin-left:-2.296040pt;}
._0_c00033{margin-left:-1.000619pt;}
._4_c00033{width:0.922919pt;}
._10_c00033{width:1.828317pt;}
._13_c00033{width:2.917717pt;}
._9_c00033{width:4.172797pt;}
._8_c00033{width:5.299306pt;}
._5_c00033{width:6.829756pt;}
._6_c00033{width:7.829729pt;}
._14_c00033{width:9.606251pt;}
._c_c00033{width:10.498117pt;}
._b_c00033{width:11.626132pt;}
._a_c00033{width:12.777064pt;}
._11_c00033{width:14.189645pt;}
._12_c00033{width:15.131844pt;}
._15_c00033{width:17.722203pt;}
._f_c00033{width:29.435934pt;}
._e_c00033{width:30.500143pt;}
._7_c00033{width:35.565617pt;}
._1_c00033{width:1788.498049pt;}
.fs1_c00033{font-size:48.000000pt;}
.fs0_c00033{font-size:58.880000pt;}
.y0_c00033{bottom:0.000000pt;}
.y18_c00033{bottom:91.520400pt;}
.y17_c00033{bottom:110.240667pt;}
.y16_c00033{bottom:128.992800pt;}
.y15_c00033{bottom:147.547467pt;}
.y14_c00033{bottom:166.267200pt;}
.y13_c00033{bottom:184.986933pt;}
.y12_c00033{bottom:203.547333pt;}
.y11_c00033{bottom:222.267067pt;}
.y10_c00033{bottom:240.986800pt;}
.yf_c00033{bottom:259.547200pt;}
.ye_c00033{bottom:278.266933pt;}
.yd_c00033{bottom:296.986667pt;}
.yc_c00033{bottom:323.546667pt;}
.yb_c00033{bottom:358.306933pt;}
.ya_c00033{bottom:377.026667pt;}
.y9_c00033{bottom:863.653333pt;}
.y8_c00033{bottom:882.373600pt;}
.y7_c00033{bottom:900.933467pt;}
.y6_c00033{bottom:919.653200pt;}
.y5_c00033{bottom:938.373467pt;}
.y4_c00033{bottom:956.933333pt;}
.y3_c00033{bottom:975.653067pt;}
.y2_c00033{bottom:994.373333pt;}
.y1_c00033{bottom:1044.160000pt;}
.h2_c00033{height:50.628750pt;}
.h1_c00033{height:1122.666667pt;}
.h0_c00033{height:1122.720000pt;}
.w1_c00033{width:794.000000pt;}
.w0_c00033{width:794.080000pt;}
.x0_c00033{left:0.000000pt;}
.x1_c00033{left:113.471867pt;}
.x2_c00033{left:132.344933pt;}
.x3_c00033{left:208.026000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_012406f21caf5b68fcbda987.woff2')format("woff");}.ff1_c00034{font-family:ff1_c00034;line-height:1.070312;font-style:normal;font-weight:normal;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_a6edaf7930fba8b37d579647.woff2')format("woff");}.ff2_c00034{font-family:ff2_c00034;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00034;src:url('chunks/assets/font_ee086fe082946cd198df0779.woff2')format("woff");}.ff3_c00034{font-family:ff3_c00034;line-height:0.938965;font-style:normal;font-weight:normal;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_8b0701136755e70ca98120f9.woff2')format("woff");}.ff4_c00034{font-family:ff4_c00034;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls3_c00034{letter-spacing:0.000000px;}
.ls0_c00034{letter-spacing:0.263460px;}
.ls1_c00034{letter-spacing:0.304800px;}
.ls2_c00034{letter-spacing:38.988000px;}
.sc__c00034{text-shadow:none;}
.sc0_c00034{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00034{-webkit-text-stroke:0px transparent;}
.sc0_c00034{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00034{word-spacing:-18.414720px;}
.ws2_c00034{word-spacing:-16.560000px;}
.ws1_c00034{word-spacing:-15.012000px;}
.ws3_c00034{word-spacing:0.000000px;}
._19_c00034{margin-left:-9.086659px;}
._1a_c00034{margin-left:-6.946643px;}
._16_c00034{margin-left:-5.925349px;}
._17_c00034{margin-left:-4.734226px;}
._18_c00034{margin-left:-3.568780px;}
._9_c00034{margin-left:-2.211779px;}
._0_c00034{margin-left:-1.125696px;}
._5_c00034{width:1.233142px;}
._3_c00034{width:2.450901px;}
._4_c00034{width:3.770030px;}
._2_c00034{width:5.498473px;}
._e_c00034{width:8.079968px;}
._f_c00034{width:9.206137px;}
._7_c00034{width:10.433100px;}
._8_c00034{width:11.850220px;}
._14_c00034{width:12.981672px;}
._15_c00034{width:14.265954px;}
._10_c00034{width:17.276626px;}
._c_c00034{width:20.335929px;}
._d_c00034{width:21.956838px;}
._1b_c00034{width:26.875430px;}
._1c_c00034{width:28.414512px;}
._13_c00034{width:31.211457px;}
._12_c00034{width:32.293349px;}
._1d_c00034{width:33.816358px;}
._b_c00034{width:36.630376px;}
._a_c00034{width:39.214334px;}
._11_c00034{width:40.473512px;}
._6_c00034{width:62.288245px;}
._1e_c00034{width:79.252176px;}
._1_c00034{width:2012.060305px;}
.fc0_c00034{color:rgb(0,0,0);}
.fs1_c00034{font-size:54.000000px;}
.fs0_c00034{font-size:66.240000px;}
.y0_c00034{bottom:0.000000px;}
.y2d_c00034{bottom:107.459700px;}
.y2c_c00034{bottom:137.555850px;}
.y2b_c00034{bottom:167.430000px;}
.y2a_c00034{bottom:188.490300px;}
.y29_c00034{bottom:209.550000px;}
.y28_c00034{bottom:239.430150px;}
.y27_c00034{bottom:260.490450px;}
.y26_c00034{bottom:281.550150px;}
.y25_c00034{bottom:302.430000px;}
.y24_c00034{bottom:323.490300px;}
.y23_c00034{bottom:344.550000px;}
.y22_c00034{bottom:374.430300px;}
.y21_c00034{bottom:395.535150px;}
.y20_c00034{bottom:416.595450px;}
.y1f_c00034{bottom:437.475300px;}
.y1e_c00034{bottom:458.535000px;}
.y1d_c00034{bottom:488.595750px;}
.y1c_c00034{bottom:509.475600px;}
.y1b_c00034{bottom:530.535300px;}
.y1a_c00034{bottom:551.595600px;}
.y19_c00034{bottom:572.475450px;}
.y18_c00034{bottom:593.535750px;}
.y17_c00034{bottom:614.596050px;}
.y16_c00034{bottom:635.475900px;}
.y15_c00034{bottom:656.566200px;}
.y14_c00034{bottom:677.625900px;}
.y13_c00034{bottom:698.505750px;}
.y12_c00034{bottom:719.565450px;}
.y11_c00034{bottom:740.625150px;}
.y10_c00034{bottom:761.505000px;}
.yf_c00034{bottom:791.565450px;}
.ye_c00034{bottom:812.625150px;}
.yd_c00034{bottom:833.505000px;}
.yc_c00034{bottom:863.565150px;}
.yb_c00034{bottom:884.624850px;}
.ya_c00034{bottom:905.549850px;}
.y9_c00034{bottom:926.610150px;}
.y8_c00034{bottom:947.670450px;}
.y7_c00034{bottom:968.550300px;}
.y6_c00034{bottom:989.610000px;}
.y5_c00034{bottom:1019.670000px;}
.y4_c00034{bottom:1076.550000px;}
.y3_c00034{bottom:1097.609700px;}
.y2_c00034{bottom:1118.670000px;}
.y1_c00034{bottom:1174.680000px;}
.h3_c00034{height:48.224531px;}
.h2_c00034{height:56.957344px;}
.h1_c00034{height:1263.000000px;}
.h0_c00034{height:1263.060000px;}
.w1_c00034{width:893.250000px;}
.w0_c00034{width:893.340000px;}
.x0_c00034{left:0.000000px;}
.x1_c00034{left:127.655850px;}
.x2_c00034{left:148.888050px;}
@media print{
.v0_c00034{vertical-align:0.000000pt;}
.ls3_c00034{letter-spacing:0.000000pt;}
.ls0_c00034{letter-spacing:0.234187pt;}
.ls1_c00034{letter-spacing:0.270933pt;}
.ls2_c00034{letter-spacing:34.656000pt;}
.ws0_c00034{word-spacing:-16.368640pt;}
.ws2_c00034{word-spacing:-14.720000pt;}
.ws1_c00034{word-spacing:-13.344000pt;}
.ws3_c00034{word-spacing:0.000000pt;}
._19_c00034{margin-left:-8.077030pt;}
._1a_c00034{margin-left:-6.174794pt;}
._16_c00034{margin-left:-5.266977pt;}
._17_c00034{margin-left:-4.208201pt;}
._18_c00034{margin-left:-3.172249pt;}
._9_c00034{margin-left:-1.966026pt;}
._0_c00034{margin-left:-1.000619pt;}
._5_c00034{width:1.096126pt;}
._3_c00034{width:2.178578pt;}
._4_c00034{width:3.351138pt;}
._2_c00034{width:4.887532pt;}
._e_c00034{width:7.182194pt;}
._f_c00034{width:8.183232pt;}
._7_c00034{width:9.273867pt;}
._8_c00034{width:10.533529pt;}
._14_c00034{width:11.539264pt;}
._15_c00034{width:12.680848pt;}
._10_c00034{width:15.357001pt;}
._c_c00034{width:18.076381pt;}
._d_c00034{width:19.517190pt;}
._1b_c00034{width:23.889271pt;}
._1c_c00034{width:25.257344pt;}
._13_c00034{width:27.743517pt;}
._12_c00034{width:28.705199pt;}
._1d_c00034{width:30.058985pt;}
._b_c00034{width:32.560334pt;}
._a_c00034{width:34.857186pt;}
._11_c00034{width:35.976455pt;}
._6_c00034{width:55.367329pt;}
._1e_c00034{width:70.446379pt;}
._1_c00034{width:1788.498049pt;}
.fs1_c00034{font-size:48.000000pt;}
.fs0_c00034{font-size:58.880000pt;}
.y0_c00034{bottom:0.000000pt;}
.y2d_c00034{bottom:95.519733pt;}
.y2c_c00034{bottom:122.271867pt;}
.y2b_c00034{bottom:148.826667pt;}
.y2a_c00034{bottom:167.546933pt;}
.y29_c00034{bottom:186.266667pt;}
.y28_c00034{bottom:212.826800pt;}
.y27_c00034{bottom:231.547067pt;}
.y26_c00034{bottom:250.266800pt;}
.y25_c00034{bottom:268.826667pt;}
.y24_c00034{bottom:287.546933pt;}
.y23_c00034{bottom:306.266667pt;}
.y22_c00034{bottom:332.826933pt;}
.y21_c00034{bottom:351.586800pt;}
.y20_c00034{bottom:370.307067pt;}
.y1f_c00034{bottom:388.866933pt;}
.y1e_c00034{bottom:407.586667pt;}
.y1d_c00034{bottom:434.307333pt;}
.y1c_c00034{bottom:452.867200pt;}
.y1b_c00034{bottom:471.586933pt;}
.y1a_c00034{bottom:490.307200pt;}
.y19_c00034{bottom:508.867067pt;}
.y18_c00034{bottom:527.587333pt;}
.y17_c00034{bottom:546.307600pt;}
.y16_c00034{bottom:564.867467pt;}
.y15_c00034{bottom:583.614400pt;}
.y14_c00034{bottom:602.334133pt;}
.y13_c00034{bottom:620.894000pt;}
.y12_c00034{bottom:639.613733pt;}
.y11_c00034{bottom:658.333467pt;}
.y10_c00034{bottom:676.893333pt;}
.yf_c00034{bottom:703.613733pt;}
.ye_c00034{bottom:722.333467pt;}
.yd_c00034{bottom:740.893333pt;}
.yc_c00034{bottom:767.613467pt;}
.yb_c00034{bottom:786.333200pt;}
.ya_c00034{bottom:804.933200pt;}
.y9_c00034{bottom:823.653467pt;}
.y8_c00034{bottom:842.373733pt;}
.y7_c00034{bottom:860.933600pt;}
.y6_c00034{bottom:879.653333pt;}
.y5_c00034{bottom:906.373333pt;}
.y4_c00034{bottom:956.933333pt;}
.y3_c00034{bottom:975.653067pt;}
.y2_c00034{bottom:994.373333pt;}
.y1_c00034{bottom:1044.160000pt;}
.h3_c00034{height:42.866250pt;}
.h2_c00034{height:50.628750pt;}
.h1_c00034{height:1122.666667pt;}
.h0_c00034{height:1122.720000pt;}
.w1_c00034{width:794.000000pt;}
.w0_c00034{width:794.080000pt;}
.x0_c00034{left:0.000000pt;}
.x1_c00034{left:113.471867pt;}
.x2_c00034{left:132.344933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e793cd78cc2fbbb4e3a8dd7c.woff2')format("woff");}.ff1_c00035{font-family:ff1_c00035;line-height:1.070312;font-style:normal;font-weight:normal;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_8b0701136755e70ca98120f9.woff2')format("woff");}.ff2_c00035{font-family:ff2_c00035;line-height:0.666504;font-style:normal;font-weight:normal;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_5065f6662ae8e7b4a619efc3.woff2')format("woff");}.ff3_c00035{font-family:ff3_c00035;line-height:0.938965;font-style:normal;font-weight:normal;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_a0302c638e235264f1c74c57.woff2')format("woff");}.ff4_c00035{font-family:ff4_c00035;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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);}
.m1_c00035{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_c00035{vertical-align:0.000000px;}
.ls2_c00035{letter-spacing:0.000000px;}
.ls0_c00035{letter-spacing:0.107520px;}
.ls1_c00035{letter-spacing:1.548960px;}
.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:-18.414720px;}
.ws0_c00035{word-spacing:-16.560000px;}
.ws2_c00035{word-spacing:-15.012000px;}
.ws3_c00035{word-spacing:0.000000px;}
._5_c00035{margin-left:-4.672920px;}
._3_c00035{margin-left:-3.320072px;}
._0_c00035{margin-left:-1.125696px;}
._4_c00035{width:1.139774px;}
._6_c00035{width:2.251259px;}
._f_c00035{width:3.375854px;}
._14_c00035{width:4.428661px;}
._17_c00035{width:7.170253px;}
._e_c00035{width:8.261675px;}
._7_c00035{width:9.274660px;}
._8_c00035{width:10.569285px;}
._18_c00035{width:12.179440px;}
._11_c00035{width:14.242286px;}
._15_c00035{width:15.429049px;}
._10_c00035{width:19.948985px;}
._13_c00035{width:21.914403px;}
._12_c00035{width:23.052023px;}
._16_c00035{width:26.562212px;}
._9_c00035{width:29.012934px;}
._a_c00035{width:30.462276px;}
._c_c00035{width:33.981977px;}
._d_c00035{width:35.362851px;}
._b_c00035{width:62.288245px;}
._2_c00035{width:79.252176px;}
._1_c00035{width:2012.060305px;}
.fc0_c00035{color:rgb(0,0,0);}
.fs1_c00035{font-size:54.000000px;}
.fs0_c00035{font-size:66.240000px;}
.y0_c00035{bottom:0.000000px;}
.y2b_c00035{bottom:113.399850px;}
.y2a_c00035{bottom:134.459550px;}
.y29_c00035{bottom:155.549850px;}
.y28_c00035{bottom:176.429700px;}
.y27_c00035{bottom:197.490000px;}
.y26_c00035{bottom:227.550300px;}
.y25_c00035{bottom:248.430150px;}
.y24_c00035{bottom:269.490450px;}
.y23_c00035{bottom:290.550150px;}
.y22_c00035{bottom:311.430000px;}
.y21_c00035{bottom:332.490300px;}
.y20_c00035{bottom:353.550000px;}
.y1f_c00035{bottom:374.429850px;}
.y1e_c00035{bottom:395.534700px;}
.y1d_c00035{bottom:416.595000px;}
.y1c_c00035{bottom:446.475450px;}
.y1b_c00035{bottom:467.535150px;}
.y1a_c00035{bottom:488.595450px;}
.y19_c00035{bottom:509.475300px;}
.y18_c00035{bottom:530.535000px;}
.y17_c00035{bottom:551.595300px;}
.y16_c00035{bottom:572.475150px;}
.y15_c00035{bottom:593.534850px;}
.y14_c00035{bottom:614.595150px;}
.y13_c00035{bottom:635.475000px;}
.y12_c00035{bottom:665.565000px;}
.y11_c00035{bottom:722.625150px;}
.y10_c00035{bottom:743.504850px;}
.yf_c00035{bottom:764.565150px;}
.ye_c00035{bottom:785.624850px;}
.yd_c00035{bottom:806.504700px;}
.yc_c00035{bottom:827.565000px;}
.yb_c00035{bottom:857.625000px;}
.ya_c00035{bottom:887.505000px;}
.y9_c00035{bottom:917.609700px;}
.y8_c00035{bottom:938.670000px;}
.y7_c00035{bottom:968.550000px;}
.y6_c00035{bottom:998.610000px;}
.y5_c00035{bottom:1028.670000px;}
.y4_c00035{bottom:1058.550000px;}
.y3_c00035{bottom:1088.610000px;}
.y2_c00035{bottom:1118.670000px;}
.y1_c00035{bottom:1174.680000px;}
.h4_c00035{height:48.224531px;}
.h2_c00035{height:56.957344px;}
.h3_c00035{height:56.957944px;}
.h1_c00035{height:1263.000000px;}
.h0_c00035{height:1263.060000px;}
.w1_c00035{width:893.250000px;}
.w0_c00035{width:893.340000px;}
.x0_c00035{left:0.000000px;}
.x1_c00035{left:127.655850px;}
.x3_c00035{left:148.896150px;}
.x2_c00035{left:159.690150px;}
@media print{
.v0_c00035{vertical-align:0.000000pt;}
.ls2_c00035{letter-spacing:0.000000pt;}
.ls0_c00035{letter-spacing:0.095573pt;}
.ls1_c00035{letter-spacing:1.376853pt;}
.ws1_c00035{word-spacing:-16.368640pt;}
.ws0_c00035{word-spacing:-14.720000pt;}
.ws2_c00035{word-spacing:-13.344000pt;}
.ws3_c00035{word-spacing:0.000000pt;}
._5_c00035{margin-left:-4.153707pt;}
._3_c00035{margin-left:-2.951175pt;}
._0_c00035{margin-left:-1.000619pt;}
._4_c00035{width:1.013132pt;}
._6_c00035{width:2.001119pt;}
._f_c00035{width:3.000759pt;}
._14_c00035{width:3.936587pt;}
._17_c00035{width:6.373558pt;}
._e_c00035{width:7.343711pt;}
._7_c00035{width:8.244142pt;}
._8_c00035{width:9.394920pt;}
._18_c00035{width:10.826168pt;}
._11_c00035{width:12.659809pt;}
._15_c00035{width:13.714710pt;}
._10_c00035{width:17.732432pt;}
._13_c00035{width:19.479469pt;}
._12_c00035{width:20.490687pt;}
._16_c00035{width:23.610855pt;}
._9_c00035{width:25.789275pt;}
._a_c00035{width:27.077579pt;}
._c_c00035{width:30.206202pt;}
._d_c00035{width:31.433645pt;}
._b_c00035{width:55.367329pt;}
._2_c00035{width:70.446379pt;}
._1_c00035{width:1788.498049pt;}
.fs1_c00035{font-size:48.000000pt;}
.fs0_c00035{font-size:58.880000pt;}
.y0_c00035{bottom:0.000000pt;}
.y2b_c00035{bottom:100.799867pt;}
.y2a_c00035{bottom:119.519600pt;}
.y29_c00035{bottom:138.266533pt;}
.y28_c00035{bottom:156.826400pt;}
.y27_c00035{bottom:175.546667pt;}
.y26_c00035{bottom:202.266933pt;}
.y25_c00035{bottom:220.826800pt;}
.y24_c00035{bottom:239.547067pt;}
.y23_c00035{bottom:258.266800pt;}
.y22_c00035{bottom:276.826667pt;}
.y21_c00035{bottom:295.546933pt;}
.y20_c00035{bottom:314.266667pt;}
.y1f_c00035{bottom:332.826533pt;}
.y1e_c00035{bottom:351.586400pt;}
.y1d_c00035{bottom:370.306667pt;}
.y1c_c00035{bottom:396.867067pt;}
.y1b_c00035{bottom:415.586800pt;}
.y1a_c00035{bottom:434.307067pt;}
.y19_c00035{bottom:452.866933pt;}
.y18_c00035{bottom:471.586667pt;}
.y17_c00035{bottom:490.306933pt;}
.y16_c00035{bottom:508.866800pt;}
.y15_c00035{bottom:527.586533pt;}
.y14_c00035{bottom:546.306800pt;}
.y13_c00035{bottom:564.866667pt;}
.y12_c00035{bottom:591.613333pt;}
.y11_c00035{bottom:642.333467pt;}
.y10_c00035{bottom:660.893200pt;}
.yf_c00035{bottom:679.613467pt;}
.ye_c00035{bottom:698.333200pt;}
.yd_c00035{bottom:716.893067pt;}
.yc_c00035{bottom:735.613333pt;}
.yb_c00035{bottom:762.333333pt;}
.ya_c00035{bottom:788.893333pt;}
.y9_c00035{bottom:815.653067pt;}
.y8_c00035{bottom:834.373333pt;}
.y7_c00035{bottom:860.933333pt;}
.y6_c00035{bottom:887.653333pt;}
.y5_c00035{bottom:914.373333pt;}
.y4_c00035{bottom:940.933333pt;}
.y3_c00035{bottom:967.653333pt;}
.y2_c00035{bottom:994.373333pt;}
.y1_c00035{bottom:1044.160000pt;}
.h4_c00035{height:42.866250pt;}
.h2_c00035{height:50.628750pt;}
.h3_c00035{height:50.629283pt;}
.h1_c00035{height:1122.666667pt;}
.h0_c00035{height:1122.720000pt;}
.w1_c00035{width:794.000000pt;}
.w0_c00035{width:794.080000pt;}
.x0_c00035{left:0.000000pt;}
.x1_c00035{left:113.471867pt;}
.x3_c00035{left:132.352133pt;}
.x2_c00035{left:141.946800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_232dc6a37279cfbdedcad390.woff2')format("woff");}.ff1_c00036{font-family:ff1_c00036;line-height:1.070312;font-style:normal;font-weight:normal;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_8b0701136755e70ca98120f9.woff2')format("woff");}.ff2_c00036{font-family:ff2_c00036;line-height:0.666504;font-style:normal;font-weight:normal;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_ccf8d58c57089c2f44503583.woff2')format("woff");}.ff3_c00036{font-family:ff3_c00036;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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);}
.m1_c00036{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_c00036{vertical-align:0.000000px;}
.ls1_c00036{letter-spacing:0.000000px;}
.ls0_c00036{letter-spacing:5.146620px;}
.sc__c00036{text-shadow:none;}
.sc0_c00036{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00036{-webkit-text-stroke:0px transparent;}
.sc0_c00036{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00036{word-spacing:-18.414720px;}
.ws2_c00036{word-spacing:-16.560000px;}
.ws0_c00036{word-spacing:-15.012000px;}
.ws3_c00036{word-spacing:0.000000px;}
._19_c00036{margin-left:-7.746171px;}
._f_c00036{margin-left:-6.625674px;}
._10_c00036{margin-left:-5.177713px;}
._13_c00036{margin-left:-4.143297px;}
._14_c00036{margin-left:-2.586407px;}
._0_c00036{margin-left:-1.125696px;}
._2_c00036{width:1.656882px;}
._4_c00036{width:3.104972px;}
._c_c00036{width:4.292354px;}
._b_c00036{width:5.484901px;}
._a_c00036{width:6.490724px;}
._11_c00036{width:8.190749px;}
._7_c00036{width:11.193994px;}
._17_c00036{width:12.297943px;}
._8_c00036{width:13.975986px;}
._9_c00036{width:15.491635px;}
._3_c00036{width:20.470001px;}
._e_c00036{width:21.974772px;}
._d_c00036{width:23.169160px;}
._15_c00036{width:29.210347px;}
._16_c00036{width:30.739774px;}
._6_c00036{width:33.348351px;}
._5_c00036{width:34.536092px;}
._18_c00036{width:62.288245px;}
._12_c00036{width:79.252176px;}
._1_c00036{width:2012.060305px;}
.fc0_c00036{color:rgb(0,0,0);}
.fs1_c00036{font-size:54.000000px;}
.fs0_c00036{font-size:66.240000px;}
.y0_c00036{bottom:0.000000px;}
.y2c_c00036{bottom:101.520150px;}
.y2b_c00036{bottom:122.400000px;}
.y2a_c00036{bottom:143.496150px;}
.y29_c00036{bottom:164.550000px;}
.y28_c00036{bottom:194.430000px;}
.y27_c00036{bottom:215.490300px;}
.y26_c00036{bottom:236.550000px;}
.y25_c00036{bottom:266.430000px;}
.y24_c00036{bottom:323.490300px;}
.y23_c00036{bottom:344.550000px;}
.y22_c00036{bottom:365.429850px;}
.y21_c00036{bottom:386.490150px;}
.y20_c00036{bottom:407.595000px;}
.y1f_c00036{bottom:437.475600px;}
.y1e_c00036{bottom:458.535300px;}
.y1d_c00036{bottom:479.595600px;}
.y1c_c00036{bottom:500.475450px;}
.y1b_c00036{bottom:521.535150px;}
.y1a_c00036{bottom:542.595450px;}
.y19_c00036{bottom:563.475300px;}
.y18_c00036{bottom:584.535000px;}
.y17_c00036{bottom:614.595000px;}
.y16_c00036{bottom:644.505000px;}
.y15_c00036{bottom:674.565000px;}
.y14_c00036{bottom:704.625000px;}
.y13_c00036{bottom:734.504700px;}
.y12_c00036{bottom:755.565000px;}
.y11_c00036{bottom:785.625150px;}
.y10_c00036{bottom:806.505000px;}
.yf_c00036{bottom:827.565300px;}
.ye_c00036{bottom:848.625000px;}
.yd_c00036{bottom:878.505900px;}
.yc_c00036{bottom:899.610750px;}
.yb_c00036{bottom:920.670450px;}
.ya_c00036{bottom:941.550300px;}
.y9_c00036{bottom:962.610000px;}
.y8_c00036{bottom:983.670300px;}
.y7_c00036{bottom:1004.550150px;}
.y6_c00036{bottom:1025.609850px;}
.y5_c00036{bottom:1046.670150px;}
.y4_c00036{bottom:1067.550000px;}
.y3_c00036{bottom:1097.609700px;}
.y2_c00036{bottom:1118.670000px;}
.y1_c00036{bottom:1174.680000px;}
.h3_c00036{height:48.224531px;}
.h2_c00036{height:56.957344px;}
.h1_c00036{height:1263.000000px;}
.h0_c00036{height:1263.060000px;}
.w1_c00036{width:893.250000px;}
.w0_c00036{width:893.340000px;}
.x0_c00036{left:0.000000px;}
.x1_c00036{left:127.655850px;}
.x2_c00036{left:148.896150px;}
@media print{
.v0_c00036{vertical-align:0.000000pt;}
.ls1_c00036{letter-spacing:0.000000pt;}
.ls0_c00036{letter-spacing:4.574773pt;}
.ws1_c00036{word-spacing:-16.368640pt;}
.ws2_c00036{word-spacing:-14.720000pt;}
.ws0_c00036{word-spacing:-13.344000pt;}
.ws3_c00036{word-spacing:0.000000pt;}
._19_c00036{margin-left:-6.885485pt;}
._f_c00036{margin-left:-5.889488pt;}
._10_c00036{margin-left:-4.602412pt;}
._13_c00036{margin-left:-3.682930pt;}
._14_c00036{margin-left:-2.299028pt;}
._0_c00036{margin-left:-1.000619pt;}
._2_c00036{width:1.472784pt;}
._4_c00036{width:2.759975pt;}
._c_c00036{width:3.815426pt;}
._b_c00036{width:4.875468pt;}
._a_c00036{width:5.769532pt;}
._11_c00036{width:7.280666pt;}
._7_c00036{width:9.950217pt;}
._17_c00036{width:10.931505pt;}
._8_c00036{width:12.423099pt;}
._9_c00036{width:13.770342pt;}
._3_c00036{width:18.195557pt;}
._e_c00036{width:19.533131pt;}
._d_c00036{width:20.594809pt;}
._15_c00036{width:25.964753pt;}
._16_c00036{width:27.324244pt;}
._6_c00036{width:29.642979pt;}
._5_c00036{width:30.698748pt;}
._18_c00036{width:55.367329pt;}
._12_c00036{width:70.446379pt;}
._1_c00036{width:1788.498049pt;}
.fs1_c00036{font-size:48.000000pt;}
.fs0_c00036{font-size:58.880000pt;}
.y0_c00036{bottom:0.000000pt;}
.y2c_c00036{bottom:90.240133pt;}
.y2b_c00036{bottom:108.800000pt;}
.y2a_c00036{bottom:127.552133pt;}
.y29_c00036{bottom:146.266667pt;}
.y28_c00036{bottom:172.826667pt;}
.y27_c00036{bottom:191.546933pt;}
.y26_c00036{bottom:210.266667pt;}
.y25_c00036{bottom:236.826667pt;}
.y24_c00036{bottom:287.546933pt;}
.y23_c00036{bottom:306.266667pt;}
.y22_c00036{bottom:324.826533pt;}
.y21_c00036{bottom:343.546800pt;}
.y20_c00036{bottom:362.306667pt;}
.y1f_c00036{bottom:388.867200pt;}
.y1e_c00036{bottom:407.586933pt;}
.y1d_c00036{bottom:426.307200pt;}
.y1c_c00036{bottom:444.867067pt;}
.y1b_c00036{bottom:463.586800pt;}
.y1a_c00036{bottom:482.307067pt;}
.y19_c00036{bottom:500.866933pt;}
.y18_c00036{bottom:519.586667pt;}
.y17_c00036{bottom:546.306667pt;}
.y16_c00036{bottom:572.893333pt;}
.y15_c00036{bottom:599.613333pt;}
.y14_c00036{bottom:626.333333pt;}
.y13_c00036{bottom:652.893067pt;}
.y12_c00036{bottom:671.613333pt;}
.y11_c00036{bottom:698.333467pt;}
.y10_c00036{bottom:716.893333pt;}
.yf_c00036{bottom:735.613600pt;}
.ye_c00036{bottom:754.333333pt;}
.yd_c00036{bottom:780.894133pt;}
.yc_c00036{bottom:799.654000pt;}
.yb_c00036{bottom:818.373733pt;}
.ya_c00036{bottom:836.933600pt;}
.y9_c00036{bottom:855.653333pt;}
.y8_c00036{bottom:874.373600pt;}
.y7_c00036{bottom:892.933467pt;}
.y6_c00036{bottom:911.653200pt;}
.y5_c00036{bottom:930.373467pt;}
.y4_c00036{bottom:948.933333pt;}
.y3_c00036{bottom:975.653067pt;}
.y2_c00036{bottom:994.373333pt;}
.y1_c00036{bottom:1044.160000pt;}
.h3_c00036{height:42.866250pt;}
.h2_c00036{height:50.628750pt;}
.h1_c00036{height:1122.666667pt;}
.h0_c00036{height:1122.720000pt;}
.w1_c00036{width:794.000000pt;}
.w0_c00036{width:794.080000pt;}
.x0_c00036{left:0.000000pt;}
.x1_c00036{left:113.471867pt;}
.x2_c00036{left:132.352133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_836dcb507128138a2d39bb84.woff2')format("woff");}.ff1_c00037{font-family:ff1_c00037;line-height:1.070312;font-style:normal;font-weight:normal;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_8b0701136755e70ca98120f9.woff2')format("woff");}.ff2_c00037{font-family:ff2_c00037;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00037{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00037{vertical-align:0.000000px;}
.ls0_c00037{letter-spacing:0.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;}
}
.ws0_c00037{word-spacing:-16.560000px;}
.ws1_c00037{word-spacing:0.000000px;}
._14_c00037{margin-left:-4.373073px;}
._10_c00037{margin-left:-2.519662px;}
._0_c00037{margin-left:-1.125696px;}
._5_c00037{width:1.356447px;}
._a_c00037{width:2.845026px;}
._9_c00037{width:3.907804px;}
._3_c00037{width:5.067307px;}
._4_c00037{width:6.425081px;}
._15_c00037{width:7.511953px;}
._e_c00037{width:8.743224px;}
._d_c00037{width:9.935279px;}
._f_c00037{width:12.253274px;}
._13_c00037{width:13.646765px;}
._b_c00037{width:15.766387px;}
._11_c00037{width:21.196065px;}
._12_c00037{width:22.266792px;}
._2_c00037{width:29.312555px;}
._c_c00037{width:36.760061px;}
._7_c00037{width:44.511607px;}
._6_c00037{width:45.772502px;}
._8_c00037{width:79.219718px;}
._1_c00037{width:2012.060305px;}
.fc0_c00037{color:rgb(0,0,0);}
.fs0_c00037{font-size:66.240000px;}
.y0_c00037{bottom:0.000000px;}
.y2c_c00037{bottom:119.520000px;}
.y2b_c00037{bottom:140.435550px;}
.y2a_c00037{bottom:161.490000px;}
.y29_c00037{bottom:182.550300px;}
.y28_c00037{bottom:203.430150px;}
.y27_c00037{bottom:224.490450px;}
.y26_c00037{bottom:245.550150px;}
.y25_c00037{bottom:266.430000px;}
.y24_c00037{bottom:287.490300px;}
.y23_c00037{bottom:308.550000px;}
.y22_c00037{bottom:338.430150px;}
.y21_c00037{bottom:359.490450px;}
.y20_c00037{bottom:380.550150px;}
.y1f_c00037{bottom:401.475150px;}
.y1e_c00037{bottom:422.534850px;}
.y1d_c00037{bottom:443.595150px;}
.y1c_c00037{bottom:464.475000px;}
.y1b_c00037{bottom:494.535000px;}
.y1a_c00037{bottom:524.595000px;}
.y19_c00037{bottom:545.474700px;}
.y18_c00037{bottom:566.535000px;}
.y17_c00037{bottom:587.595300px;}
.y16_c00037{bottom:608.475150px;}
.y15_c00037{bottom:629.534850px;}
.y14_c00037{bottom:650.625150px;}
.y13_c00037{bottom:671.505000px;}
.y12_c00037{bottom:701.565000px;}
.y11_c00037{bottom:731.625000px;}
.y10_c00037{bottom:761.505000px;}
.yf_c00037{bottom:791.565000px;}
.ye_c00037{bottom:821.625000px;}
.yd_c00037{bottom:851.505000px;}
.yc_c00037{bottom:881.565000px;}
.yb_c00037{bottom:911.670150px;}
.ya_c00037{bottom:932.550000px;}
.y9_c00037{bottom:962.610000px;}
.y8_c00037{bottom:983.670300px;}
.y7_c00037{bottom:1004.550150px;}
.y6_c00037{bottom:1025.609850px;}
.y5_c00037{bottom:1046.670150px;}
.y4_c00037{bottom:1067.550000px;}
.y3_c00037{bottom:1097.609700px;}
.y2_c00037{bottom:1118.670000px;}
.y1_c00037{bottom:1174.680000px;}
.h2_c00037{height:56.957344px;}
.h1_c00037{height:1263.000000px;}
.h0_c00037{height:1263.060000px;}
.w1_c00037{width:893.250000px;}
.w0_c00037{width:893.340000px;}
.x0_c00037{left:0.000000px;}
.x1_c00037{left:127.655850px;}
.x2_c00037{left:148.896150px;}
@media print{
.v0_c00037{vertical-align:0.000000pt;}
.ls0_c00037{letter-spacing:0.000000pt;}
.ws0_c00037{word-spacing:-14.720000pt;}
.ws1_c00037{word-spacing:0.000000pt;}
._14_c00037{margin-left:-3.887176pt;}
._10_c00037{margin-left:-2.239700pt;}
._0_c00037{margin-left:-1.000619pt;}
._5_c00037{width:1.205731pt;}
._a_c00037{width:2.528912pt;}
._9_c00037{width:3.473603pt;}
._3_c00037{width:4.504273pt;}
._4_c00037{width:5.711183pt;}
._15_c00037{width:6.677292pt;}
._e_c00037{width:7.771755pt;}
._d_c00037{width:8.831359pt;}
._f_c00037{width:10.891799pt;}
._13_c00037{width:12.130458pt;}
._b_c00037{width:14.014566pt;}
._11_c00037{width:18.840947pt;}
._12_c00037{width:19.792704pt;}
._2_c00037{width:26.055604pt;}
._c_c00037{width:32.675610pt;}
._7_c00037{width:39.565873pt;}
._6_c00037{width:40.686669pt;}
._8_c00037{width:70.417527pt;}
._1_c00037{width:1788.498049pt;}
.fs0_c00037{font-size:58.880000pt;}
.y0_c00037{bottom:0.000000pt;}
.y2c_c00037{bottom:106.240000pt;}
.y2b_c00037{bottom:124.831600pt;}
.y2a_c00037{bottom:143.546667pt;}
.y29_c00037{bottom:162.266933pt;}
.y28_c00037{bottom:180.826800pt;}
.y27_c00037{bottom:199.547067pt;}
.y26_c00037{bottom:218.266800pt;}
.y25_c00037{bottom:236.826667pt;}
.y24_c00037{bottom:255.546933pt;}
.y23_c00037{bottom:274.266667pt;}
.y22_c00037{bottom:300.826800pt;}
.y21_c00037{bottom:319.547067pt;}
.y20_c00037{bottom:338.266800pt;}
.y1f_c00037{bottom:356.866800pt;}
.y1e_c00037{bottom:375.586533pt;}
.y1d_c00037{bottom:394.306800pt;}
.y1c_c00037{bottom:412.866667pt;}
.y1b_c00037{bottom:439.586667pt;}
.y1a_c00037{bottom:466.306667pt;}
.y19_c00037{bottom:484.866400pt;}
.y18_c00037{bottom:503.586667pt;}
.y17_c00037{bottom:522.306933pt;}
.y16_c00037{bottom:540.866800pt;}
.y15_c00037{bottom:559.586533pt;}
.y14_c00037{bottom:578.333467pt;}
.y13_c00037{bottom:596.893333pt;}
.y12_c00037{bottom:623.613333pt;}
.y11_c00037{bottom:650.333333pt;}
.y10_c00037{bottom:676.893333pt;}
.yf_c00037{bottom:703.613333pt;}
.ye_c00037{bottom:730.333333pt;}
.yd_c00037{bottom:756.893333pt;}
.yc_c00037{bottom:783.613333pt;}
.yb_c00037{bottom:810.373467pt;}
.ya_c00037{bottom:828.933333pt;}
.y9_c00037{bottom:855.653333pt;}
.y8_c00037{bottom:874.373600pt;}
.y7_c00037{bottom:892.933467pt;}
.y6_c00037{bottom:911.653200pt;}
.y5_c00037{bottom:930.373467pt;}
.y4_c00037{bottom:948.933333pt;}
.y3_c00037{bottom:975.653067pt;}
.y2_c00037{bottom:994.373333pt;}
.y1_c00037{bottom:1044.160000pt;}
.h2_c00037{height:50.628750pt;}
.h1_c00037{height:1122.666667pt;}
.h0_c00037{height:1122.720000pt;}
.w1_c00037{width:794.000000pt;}
.w0_c00037{width:794.080000pt;}
.x0_c00037{left:0.000000pt;}
.x1_c00037{left:113.471867pt;}
.x2_c00037{left:132.352133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_56c1de837c24a3a88e490379.woff2')format("woff");}.ff1_c00038{font-family:ff1_c00038;line-height:1.070312;font-style:normal;font-weight:normal;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_8b0701136755e70ca98120f9.woff2')format("woff");}.ff2_c00038{font-family:ff2_c00038;line-height:0.666504;font-style: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);}
.m1_c00038{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_c00038{vertical-align:0.000000px;}
.ls2_c00038{letter-spacing:0.000000px;}
.ls0_c00038{letter-spacing:0.109860px;}
.ls1_c00038{letter-spacing:0.261120px;}
.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:-18.414720px;}
.ws0_c00038{word-spacing:-16.560000px;}
.ws2_c00038{word-spacing:-15.012000px;}
.ws3_c00038{word-spacing:0.000000px;}
._d_c00038{margin-left:-2.912767px;}
._0_c00038{margin-left:-1.125696px;}
._a_c00038{width:1.016218px;}
._2_c00038{width:5.763456px;}
._5_c00038{width:7.282916px;}
._6_c00038{width:8.664796px;}
._b_c00038{width:11.198249px;}
._9_c00038{width:12.910642px;}
._7_c00038{width:14.014230px;}
._3_c00038{width:15.102726px;}
._4_c00038{width:16.429108px;}
._e_c00038{width:40.011319px;}
._f_c00038{width:49.017264px;}
._10_c00038{width:50.602344px;}
._8_c00038{width:59.350101px;}
._c_c00038{width:79.252176px;}
._1_c00038{width:2012.060305px;}
.fc0_c00038{color:rgb(0,0,0);}
.fs1_c00038{font-size:54.000000px;}
.fs0_c00038{font-size:66.240000px;}
.y0_c00038{bottom:0.000000px;}
.y1b_c00038{bottom:93.059700px;}
.y1a_c00038{bottom:132.120300px;}
.y19_c00038{bottom:153.210000px;}
.y18_c00038{bottom:557.534700px;}
.y17_c00038{bottom:578.595000px;}
.y16_c00038{bottom:608.475000px;}
.y15_c00038{bottom:638.535000px;}
.y14_c00038{bottom:668.625000px;}
.y13_c00038{bottom:698.505000px;}
.y12_c00038{bottom:728.565000px;}
.y11_c00038{bottom:758.625000px;}
.y10_c00038{bottom:788.504700px;}
.yf_c00038{bottom:809.565000px;}
.ye_c00038{bottom:839.625000px;}
.yd_c00038{bottom:869.504700px;}
.yc_c00038{bottom:890.565000px;}
.yb_c00038{bottom:920.670000px;}
.ya_c00038{bottom:950.550900px;}
.y9_c00038{bottom:971.610600px;}
.y8_c00038{bottom:992.670900px;}
.y7_c00038{bottom:1013.550750px;}
.y6_c00038{bottom:1034.610450px;}
.y5_c00038{bottom:1055.670150px;}
.y4_c00038{bottom:1076.550000px;}
.y3_c00038{bottom:1097.609700px;}
.y2_c00038{bottom:1118.670000px;}
.y1_c00038{bottom:1174.680000px;}
.h2_c00038{height:56.957344px;}
.h1_c00038{height:1263.000000px;}
.h0_c00038{height:1263.060000px;}
.w1_c00038{width:893.250000px;}
.w0_c00038{width:893.340000px;}
.x0_c00038{left:0.000000px;}
.x1_c00038{left:127.655850px;}
.x3_c00038{left:148.896150px;}
.x2_c00038{left:159.690150px;}
.x4_c00038{left:234.029850px;}
@media print{
.v0_c00038{vertical-align:0.000000pt;}
.ls2_c00038{letter-spacing:0.000000pt;}
.ls0_c00038{letter-spacing:0.097653pt;}
.ls1_c00038{letter-spacing:0.232107pt;}
.ws1_c00038{word-spacing:-16.368640pt;}
.ws0_c00038{word-spacing:-14.720000pt;}
.ws2_c00038{word-spacing:-13.344000pt;}
.ws3_c00038{word-spacing:0.000000pt;}
._d_c00038{margin-left:-2.589126pt;}
._0_c00038{margin-left:-1.000619pt;}
._a_c00038{width:0.903305pt;}
._2_c00038{width:5.123072pt;}
._5_c00038{width:6.473704pt;}
._6_c00038{width:7.702041pt;}
._b_c00038{width:9.953999pt;}
._9_c00038{width:11.476126pt;}
._7_c00038{width:12.457093pt;}
._3_c00038{width:13.424645pt;}
._4_c00038{width:14.603651pt;}
._e_c00038{width:35.565617pt;}
._f_c00038{width:43.570901pt;}
._10_c00038{width:44.979862pt;}
._8_c00038{width:52.755645pt;}
._c_c00038{width:70.446379pt;}
._1_c00038{width:1788.498049pt;}
.fs1_c00038{font-size:48.000000pt;}
.fs0_c00038{font-size:58.880000pt;}
.y0_c00038{bottom:0.000000pt;}
.y1b_c00038{bottom:82.719733pt;}
.y1a_c00038{bottom:117.440267pt;}
.y19_c00038{bottom:136.186667pt;}
.y18_c00038{bottom:495.586400pt;}
.y17_c00038{bottom:514.306667pt;}
.y16_c00038{bottom:540.866667pt;}
.y15_c00038{bottom:567.586667pt;}
.y14_c00038{bottom:594.333333pt;}
.y13_c00038{bottom:620.893333pt;}
.y12_c00038{bottom:647.613333pt;}
.y11_c00038{bottom:674.333333pt;}
.y10_c00038{bottom:700.893067pt;}
.yf_c00038{bottom:719.613333pt;}
.ye_c00038{bottom:746.333333pt;}
.yd_c00038{bottom:772.893067pt;}
.yc_c00038{bottom:791.613333pt;}
.yb_c00038{bottom:818.373333pt;}
.ya_c00038{bottom:844.934133pt;}
.y9_c00038{bottom:863.653867pt;}
.y8_c00038{bottom:882.374133pt;}
.y7_c00038{bottom:900.934000pt;}
.y6_c00038{bottom:919.653733pt;}
.y5_c00038{bottom:938.373467pt;}
.y4_c00038{bottom:956.933333pt;}
.y3_c00038{bottom:975.653067pt;}
.y2_c00038{bottom:994.373333pt;}
.y1_c00038{bottom:1044.160000pt;}
.h2_c00038{height:50.628750pt;}
.h1_c00038{height:1122.666667pt;}
.h0_c00038{height:1122.720000pt;}
.w1_c00038{width:794.000000pt;}
.w0_c00038{width:794.080000pt;}
.x0_c00038{left:0.000000pt;}
.x1_c00038{left:113.471867pt;}
.x3_c00038{left:132.352133pt;}
.x2_c00038{left:141.946800pt;}
.x4_c00038{left:208.026533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e5a4f0660a030961a7893442.woff2')format("woff");}.ff1_c00039{font-family:ff1_c00039;line-height:1.070312;font-style:normal;font-weight:normal;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_60a7772e87376fb450c2a446.woff2')format("woff");}.ff2_c00039{font-family:ff2_c00039;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00039{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00039{transform:matrix(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_c00039{vertical-align:0.000000px;}
.ls0_c00039{letter-spacing:0.000000px;}
.sc__c00039{text-shadow:none;}
.sc0_c00039{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00039{-webkit-text-stroke:0px transparent;}
.sc0_c00039{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00039{word-spacing:-18.414720px;}
.ws1_c00039{word-spacing:-15.012000px;}
.ws2_c00039{word-spacing:0.000000px;}
._c_c00039{margin-left:-3.379449px;}
._e_c00039{margin-left:-2.251517px;}
._0_c00039{margin-left:-1.125696px;}
._7_c00039{width:1.188508px;}
._a_c00039{width:2.318592px;}
._2_c00039{width:3.774464px;}
._3_c00039{width:5.364956px;}
._8_c00039{width:6.423824px;}
._9_c00039{width:7.526827px;}
._b_c00039{width:8.680995px;}
._d_c00039{width:17.287522px;}
._4_c00039{width:20.666020px;}
._5_c00039{width:40.011333px;}
._6_c00039{width:41.265698px;}
._f_c00039{width:845.765568px;}
._1_c00039{width:2012.060305px;}
.fc0_c00039{color:rgb(0,0,0);}
.fs1_c00039{font-size:54.000000px;}
.fs0_c00039{font-size:66.240000px;}
.y0_c00039{bottom:0.000000px;}
.y17_c00039{bottom:176.430000px;}
.y16_c00039{bottom:197.490600px;}
.y15_c00039{bottom:218.550300px;}
.y14_c00039{bottom:239.430150px;}
.y13_c00039{bottom:260.490450px;}
.y12_c00039{bottom:281.550150px;}
.y11_c00039{bottom:302.430000px;}
.y10_c00039{bottom:332.490000px;}
.yf_c00039{bottom:362.550000px;}
.ye_c00039{bottom:392.475450px;}
.yd_c00039{bottom:413.535150px;}
.yc_c00039{bottom:434.595450px;}
.yb_c00039{bottom:455.475300px;}
.ya_c00039{bottom:476.534700px;}
.y9_c00039{bottom:497.595000px;}
.y8_c00039{bottom:527.475000px;}
.y7_c00039{bottom:566.534700px;}
.y6_c00039{bottom:587.595000px;}
.y5_c00039{bottom:1055.670150px;}
.y4_c00039{bottom:1076.550000px;}
.y3_c00039{bottom:1097.609700px;}
.y2_c00039{bottom:1118.670000px;}
.y1_c00039{bottom:1174.680000px;}
.h2_c00039{height:56.957344px;}
.h3_c00039{height:56.958544px;}
.h1_c00039{height:1263.000000px;}
.h0_c00039{height:1263.060000px;}
.w1_c00039{width:893.250000px;}
.w0_c00039{width:893.340000px;}
.x0_c00039{left:0.000000px;}
.x1_c00039{left:127.655850px;}
.x2_c00039{left:148.896150px;}
.x4_c00039{left:191.550000px;}
.x3_c00039{left:234.029850px;}
@media print{
.v0_c00039{vertical-align:0.000000pt;}
.ls0_c00039{letter-spacing:0.000000pt;}
.ws0_c00039{word-spacing:-16.368640pt;}
.ws1_c00039{word-spacing:-13.344000pt;}
.ws2_c00039{word-spacing:0.000000pt;}
._c_c00039{margin-left:-3.003955pt;}
._e_c00039{margin-left:-2.001348pt;}
._0_c00039{margin-left:-1.000619pt;}
._7_c00039{width:1.056451pt;}
._a_c00039{width:2.060971pt;}
._2_c00039{width:3.355079pt;}
._3_c00039{width:4.768850pt;}
._8_c00039{width:5.710066pt;}
._9_c00039{width:6.690513pt;}
._b_c00039{width:7.716440pt;}
._d_c00039{width:15.366686pt;}
._4_c00039{width:18.369795pt;}
._5_c00039{width:35.565630pt;}
._6_c00039{width:36.680620pt;}
._f_c00039{width:751.791616pt;}
._1_c00039{width:1788.498049pt;}
.fs1_c00039{font-size:48.000000pt;}
.fs0_c00039{font-size:58.880000pt;}
.y0_c00039{bottom:0.000000pt;}
.y17_c00039{bottom:156.826667pt;}
.y16_c00039{bottom:175.547200pt;}
.y15_c00039{bottom:194.266933pt;}
.y14_c00039{bottom:212.826800pt;}
.y13_c00039{bottom:231.547067pt;}
.y12_c00039{bottom:250.266800pt;}
.y11_c00039{bottom:268.826667pt;}
.y10_c00039{bottom:295.546667pt;}
.yf_c00039{bottom:322.266667pt;}
.ye_c00039{bottom:348.867067pt;}
.yd_c00039{bottom:367.586800pt;}
.yc_c00039{bottom:386.307067pt;}
.yb_c00039{bottom:404.866933pt;}
.ya_c00039{bottom:423.586400pt;}
.y9_c00039{bottom:442.306667pt;}
.y8_c00039{bottom:468.866667pt;}
.y7_c00039{bottom:503.586400pt;}
.y6_c00039{bottom:522.306667pt;}
.y5_c00039{bottom:938.373467pt;}
.y4_c00039{bottom:956.933333pt;}
.y3_c00039{bottom:975.653067pt;}
.y2_c00039{bottom:994.373333pt;}
.y1_c00039{bottom:1044.160000pt;}
.h2_c00039{height:50.628750pt;}
.h3_c00039{height:50.629817pt;}
.h1_c00039{height:1122.666667pt;}
.h0_c00039{height:1122.720000pt;}
.w1_c00039{width:794.000000pt;}
.w0_c00039{width:794.080000pt;}
.x0_c00039{left:0.000000pt;}
.x1_c00039{left:113.471867pt;}
.x2_c00039{left:132.352133pt;}
.x4_c00039{left:170.266667pt;}
.x3_c00039{left:208.026533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c0503373437e71eed531283a.woff2')format("woff");}.ff1_c00040{font-family:ff1_c00040;line-height:1.070312;font-style:normal;font-weight:normal;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_2c661173fbe578d4a1a8299a.woff2')format("woff");}.ff2_c00040{font-family:ff2_c00040;line-height:0.938965;font-style:normal;font-weight:normal;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_8b0701136755e70ca98120f9.woff2')format("woff");}.ff3_c00040{font-family:ff3_c00040;line-height:0.666504;font-style: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;}
.ls0_c00040{letter-spacing:0.000000px;}
.sc__c00040{text-shadow:none;}
.sc0_c00040{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00040{-webkit-text-stroke:0px transparent;}
.sc0_c00040{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00040{word-spacing:-36.829440px;}
.ws1_c00040{word-spacing:-16.560000px;}
.ws2_c00040{word-spacing:0.000000px;}
._14_c00040{margin-left:-6.296661px;}
._6_c00040{margin-left:-4.900505px;}
._8_c00040{margin-left:-2.616832px;}
._0_c00040{margin-left:-1.125696px;}
._9_c00040{width:1.195044px;}
._f_c00040{width:2.457734px;}
._5_c00040{width:3.708721px;}
._4_c00040{width:5.517701px;}
._2_c00040{width:10.332350px;}
._3_c00040{width:11.353649px;}
._11_c00040{width:12.389792px;}
._10_c00040{width:13.841565px;}
._d_c00040{width:16.229512px;}
._7_c00040{width:19.536749px;}
._a_c00040{width:21.131041px;}
._15_c00040{width:23.451914px;}
._e_c00040{width:25.964785px;}
._c_c00040{width:29.777552px;}
._b_c00040{width:31.367345px;}
._12_c00040{width:79.252176px;}
._13_c00040{width:122.332057px;}
._1_c00040{width:2012.060305px;}
.fc0_c00040{color:rgb(0,0,0);}
.fs0_c00040{font-size:66.240000px;}
.y0_c00040{bottom:0.000000px;}
.y2e_c00040{bottom:113.400000px;}
.y2d_c00040{bottom:134.459700px;}
.y2c_c00040{bottom:155.550000px;}
.y2b_c00040{bottom:185.430150px;}
.y2a_c00040{bottom:206.490450px;}
.y29_c00040{bottom:227.550150px;}
.y28_c00040{bottom:248.430000px;}
.y27_c00040{bottom:278.490450px;}
.y26_c00040{bottom:299.550150px;}
.y25_c00040{bottom:320.430000px;}
.y24_c00040{bottom:341.490300px;}
.y23_c00040{bottom:362.550000px;}
.y22_c00040{bottom:392.474550px;}
.y21_c00040{bottom:413.534850px;}
.y20_c00040{bottom:434.595150px;}
.y1f_c00040{bottom:455.475000px;}
.y1e_c00040{bottom:485.534700px;}
.y1d_c00040{bottom:506.595000px;}
.y1c_c00040{bottom:536.475150px;}
.y1b_c00040{bottom:557.534850px;}
.y1a_c00040{bottom:578.595150px;}
.y19_c00040{bottom:599.475000px;}
.y18_c00040{bottom:629.535000px;}
.y17_c00040{bottom:659.625000px;}
.y16_c00040{bottom:680.505900px;}
.y15_c00040{bottom:701.565600px;}
.y14_c00040{bottom:722.625300px;}
.y13_c00040{bottom:743.505150px;}
.y12_c00040{bottom:764.565450px;}
.y11_c00040{bottom:785.625150px;}
.y10_c00040{bottom:806.505000px;}
.yf_c00040{bottom:827.565300px;}
.ye_c00040{bottom:848.625000px;}
.yd_c00040{bottom:878.505300px;}
.yc_c00040{bottom:899.610150px;}
.yb_c00040{bottom:920.670450px;}
.ya_c00040{bottom:941.550300px;}
.y9_c00040{bottom:962.610000px;}
.y8_c00040{bottom:983.670300px;}
.y7_c00040{bottom:1004.550150px;}
.y6_c00040{bottom:1025.609850px;}
.y5_c00040{bottom:1046.670150px;}
.y4_c00040{bottom:1067.550000px;}
.y3_c00040{bottom:1097.610000px;}
.y2_c00040{bottom:1118.670000px;}
.y1_c00040{bottom:1174.680000px;}
.h2_c00040{height:56.957344px;}
.h1_c00040{height:1263.000000px;}
.h0_c00040{height:1263.060000px;}
.w1_c00040{width:893.250000px;}
.w0_c00040{width:893.340000px;}
.x0_c00040{left:0.000000px;}
.x1_c00040{left:127.655850px;}
.x2_c00040{left:148.896150px;}
.x3_c00040{left:159.682050px;}
@media print{
.v0_c00040{vertical-align:0.000000pt;}
.ls0_c00040{letter-spacing:0.000000pt;}
.ws0_c00040{word-spacing:-32.737280pt;}
.ws1_c00040{word-spacing:-14.720000pt;}
.ws2_c00040{word-spacing:0.000000pt;}
._14_c00040{margin-left:-5.597032pt;}
._6_c00040{margin-left:-4.356004pt;}
._8_c00040{margin-left:-2.326073pt;}
._0_c00040{margin-left:-1.000619pt;}
._9_c00040{width:1.062261pt;}
._f_c00040{width:2.184653pt;}
._5_c00040{width:3.296641pt;}
._4_c00040{width:4.904623pt;}
._2_c00040{width:9.184311pt;}
._3_c00040{width:10.092133pt;}
._11_c00040{width:11.013148pt;}
._10_c00040{width:12.303614pt;}
._d_c00040{width:14.426233pt;}
._7_c00040{width:17.365999pt;}
._a_c00040{width:18.783147pt;}
._15_c00040{width:20.846146pt;}
._e_c00040{width:23.079809pt;}
._c_c00040{width:26.468935pt;}
._b_c00040{width:27.882084pt;}
._12_c00040{width:70.446379pt;}
._13_c00040{width:108.739606pt;}
._1_c00040{width:1788.498049pt;}
.fs0_c00040{font-size:58.880000pt;}
.y0_c00040{bottom:0.000000pt;}
.y2e_c00040{bottom:100.800000pt;}
.y2d_c00040{bottom:119.519733pt;}
.y2c_c00040{bottom:138.266667pt;}
.y2b_c00040{bottom:164.826800pt;}
.y2a_c00040{bottom:183.547067pt;}
.y29_c00040{bottom:202.266800pt;}
.y28_c00040{bottom:220.826667pt;}
.y27_c00040{bottom:247.547067pt;}
.y26_c00040{bottom:266.266800pt;}
.y25_c00040{bottom:284.826667pt;}
.y24_c00040{bottom:303.546933pt;}
.y23_c00040{bottom:322.266667pt;}
.y22_c00040{bottom:348.866267pt;}
.y21_c00040{bottom:367.586533pt;}
.y20_c00040{bottom:386.306800pt;}
.y1f_c00040{bottom:404.866667pt;}
.y1e_c00040{bottom:431.586400pt;}
.y1d_c00040{bottom:450.306667pt;}
.y1c_c00040{bottom:476.866800pt;}
.y1b_c00040{bottom:495.586533pt;}
.y1a_c00040{bottom:514.306800pt;}
.y19_c00040{bottom:532.866667pt;}
.y18_c00040{bottom:559.586667pt;}
.y17_c00040{bottom:586.333333pt;}
.y16_c00040{bottom:604.894133pt;}
.y15_c00040{bottom:623.613867pt;}
.y14_c00040{bottom:642.333600pt;}
.y13_c00040{bottom:660.893467pt;}
.y12_c00040{bottom:679.613733pt;}
.y11_c00040{bottom:698.333467pt;}
.y10_c00040{bottom:716.893333pt;}
.yf_c00040{bottom:735.613600pt;}
.ye_c00040{bottom:754.333333pt;}
.yd_c00040{bottom:780.893600pt;}
.yc_c00040{bottom:799.653467pt;}
.yb_c00040{bottom:818.373733pt;}
.ya_c00040{bottom:836.933600pt;}
.y9_c00040{bottom:855.653333pt;}
.y8_c00040{bottom:874.373600pt;}
.y7_c00040{bottom:892.933467pt;}
.y6_c00040{bottom:911.653200pt;}
.y5_c00040{bottom:930.373467pt;}
.y4_c00040{bottom:948.933333pt;}
.y3_c00040{bottom:975.653333pt;}
.y2_c00040{bottom:994.373333pt;}
.y1_c00040{bottom:1044.160000pt;}
.h2_c00040{height:50.628750pt;}
.h1_c00040{height:1122.666667pt;}
.h0_c00040{height:1122.720000pt;}
.w1_c00040{width:794.000000pt;}
.w0_c00040{width:794.080000pt;}
.x0_c00040{left:0.000000pt;}
.x1_c00040{left:113.471867pt;}
.x2_c00040{left:132.352133pt;}
.x3_c00040{left:141.939600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_aeb0a5a533e400b8f4fa8ff9.woff2')format("woff");}.ff1_c00041{font-family:ff1_c00041;line-height:1.070312;font-style:normal;font-weight:normal;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_8b0701136755e70ca98120f9.woff2')format("woff");}.ff2_c00041{font-family:ff2_c00041;line-height:0.666504;font-style: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;}
.ls0_c00041{letter-spacing:0.000000px;}
.sc__c00041{text-shadow:none;}
.sc0_c00041{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00041{-webkit-text-stroke:0px transparent;}
.sc0_c00041{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00041{word-spacing:-16.560000px;}
.ws1_c00041{word-spacing:0.000000px;}
._f_c00041{margin-left:-7.243904px;}
._d_c00041{margin-left:-5.899655px;}
._5_c00041{margin-left:-3.576516px;}
._2_c00041{margin-left:-2.268611px;}
._0_c00041{margin-left:-1.125696px;}
._4_c00041{width:1.102873px;}
._3_c00041{width:2.185589px;}
._8_c00041{width:4.038703px;}
._13_c00041{width:6.027378px;}
._e_c00041{width:7.304859px;}
._10_c00041{width:8.424359px;}
._18_c00041{width:11.758297px;}
._14_c00041{width:12.913993px;}
._c_c00041{width:14.881574px;}
._b_c00041{width:16.245865px;}
._1c_c00041{width:17.278806px;}
._9_c00041{width:20.006057px;}
._a_c00041{width:21.141632px;}
._15_c00041{width:23.183157px;}
._11_c00041{width:25.983099px;}
._12_c00041{width:26.998252px;}
._6_c00041{width:30.304999px;}
._7_c00041{width:31.688671px;}
._19_c00041{width:34.377910px;}
._16_c00041{width:36.698669px;}
._17_c00041{width:37.898015px;}
._1b_c00041{width:67.289785px;}
._1a_c00041{width:68.574461px;}
._1d_c00041{width:79.252176px;}
._1_c00041{width:2012.060305px;}
.fc0_c00041{color:rgb(0,0,0);}
.fs0_c00041{font-size:66.240000px;}
.y0_c00041{bottom:0.000000px;}
.y2f_c00041{bottom:101.520300px;}
.y2e_c00041{bottom:122.400150px;}
.y2d_c00041{bottom:143.496300px;}
.y2c_c00041{bottom:164.550150px;}
.y2b_c00041{bottom:185.430000px;}
.y2a_c00041{bottom:215.490000px;}
.y29_c00041{bottom:245.549850px;}
.y28_c00041{bottom:266.429700px;}
.y27_c00041{bottom:287.490000px;}
.y26_c00041{bottom:317.549400px;}
.y25_c00041{bottom:338.429250px;}
.y24_c00041{bottom:359.489550px;}
.y23_c00041{bottom:380.549850px;}
.y22_c00041{bottom:401.474850px;}
.y21_c00041{bottom:422.535150px;}
.y20_c00041{bottom:443.595450px;}
.y1f_c00041{bottom:464.475300px;}
.y1e_c00041{bottom:485.535000px;}
.y1d_c00041{bottom:506.595300px;}
.y1c_c00041{bottom:527.475150px;}
.y1b_c00041{bottom:548.534850px;}
.y1a_c00041{bottom:569.595150px;}
.y19_c00041{bottom:590.475000px;}
.y18_c00041{bottom:620.534850px;}
.y17_c00041{bottom:641.625150px;}
.y16_c00041{bottom:662.505000px;}
.y15_c00041{bottom:692.565600px;}
.y14_c00041{bottom:713.625300px;}
.y13_c00041{bottom:734.505150px;}
.y12_c00041{bottom:755.565450px;}
.y11_c00041{bottom:776.625150px;}
.y10_c00041{bottom:797.505000px;}
.yf_c00041{bottom:818.565300px;}
.ye_c00041{bottom:839.625000px;}
.yd_c00041{bottom:869.505000px;}
.yc_c00041{bottom:899.610000px;}
.yb_c00041{bottom:920.670450px;}
.ya_c00041{bottom:941.550300px;}
.y9_c00041{bottom:962.610000px;}
.y8_c00041{bottom:983.670300px;}
.y7_c00041{bottom:1004.550150px;}
.y6_c00041{bottom:1025.609850px;}
.y5_c00041{bottom:1046.670150px;}
.y4_c00041{bottom:1067.550000px;}
.y3_c00041{bottom:1097.609700px;}
.y2_c00041{bottom:1118.670000px;}
.y1_c00041{bottom:1174.680000px;}
.h2_c00041{height:56.957344px;}
.h1_c00041{height:1263.000000px;}
.h0_c00041{height:1263.060000px;}
.w1_c00041{width:893.250000px;}
.w0_c00041{width:893.340000px;}
.x0_c00041{left:0.000000px;}
.x1_c00041{left:127.655850px;}
.x2_c00041{left:148.896150px;}
.x3_c00041{left:159.690150px;}
@media print{
.v0_c00041{vertical-align:0.000000pt;}
.ls0_c00041{letter-spacing:0.000000pt;}
.ws0_c00041{word-spacing:-14.720000pt;}
.ws1_c00041{word-spacing:0.000000pt;}
._f_c00041{margin-left:-6.439026pt;}
._d_c00041{margin-left:-5.244138pt;}
._5_c00041{margin-left:-3.179126pt;}
._2_c00041{margin-left:-2.016543pt;}
._0_c00041{margin-left:-1.000619pt;}
._4_c00041{width:0.980332pt;}
._3_c00041{width:1.942746pt;}
._8_c00041{width:3.589958pt;}
._13_c00041{width:5.357669pt;}
._e_c00041{width:6.493208pt;}
._10_c00041{width:7.488319pt;}
._18_c00041{width:10.451819pt;}
._14_c00041{width:11.479105pt;}
._c_c00041{width:13.228066pt;}
._b_c00041{width:14.440769pt;}
._1c_c00041{width:15.358939pt;}
._9_c00041{width:17.783161pt;}
._a_c00041{width:18.792562pt;}
._15_c00041{width:20.607251pt;}
._11_c00041{width:23.096088pt;}
._12_c00041{width:23.998446pt;}
._6_c00041{width:26.937777pt;}
._7_c00041{width:28.167707pt;}
._19_c00041{width:30.558142pt;}
._16_c00041{width:32.621039pt;}
._17_c00041{width:33.687125pt;}
._1b_c00041{width:59.813143pt;}
._1a_c00041{width:60.955077pt;}
._1d_c00041{width:70.446379pt;}
._1_c00041{width:1788.498049pt;}
.fs0_c00041{font-size:58.880000pt;}
.y0_c00041{bottom:0.000000pt;}
.y2f_c00041{bottom:90.240267pt;}
.y2e_c00041{bottom:108.800133pt;}
.y2d_c00041{bottom:127.552267pt;}
.y2c_c00041{bottom:146.266800pt;}
.y2b_c00041{bottom:164.826667pt;}
.y2a_c00041{bottom:191.546667pt;}
.y29_c00041{bottom:218.266533pt;}
.y28_c00041{bottom:236.826400pt;}
.y27_c00041{bottom:255.546667pt;}
.y26_c00041{bottom:282.266133pt;}
.y25_c00041{bottom:300.826000pt;}
.y24_c00041{bottom:319.546267pt;}
.y23_c00041{bottom:338.266533pt;}
.y22_c00041{bottom:356.866533pt;}
.y21_c00041{bottom:375.586800pt;}
.y20_c00041{bottom:394.307067pt;}
.y1f_c00041{bottom:412.866933pt;}
.y1e_c00041{bottom:431.586667pt;}
.y1d_c00041{bottom:450.306933pt;}
.y1c_c00041{bottom:468.866800pt;}
.y1b_c00041{bottom:487.586533pt;}
.y1a_c00041{bottom:506.306800pt;}
.y19_c00041{bottom:524.866667pt;}
.y18_c00041{bottom:551.586533pt;}
.y17_c00041{bottom:570.333467pt;}
.y16_c00041{bottom:588.893333pt;}
.y15_c00041{bottom:615.613867pt;}
.y14_c00041{bottom:634.333600pt;}
.y13_c00041{bottom:652.893467pt;}
.y12_c00041{bottom:671.613733pt;}
.y11_c00041{bottom:690.333467pt;}
.y10_c00041{bottom:708.893333pt;}
.yf_c00041{bottom:727.613600pt;}
.ye_c00041{bottom:746.333333pt;}
.yd_c00041{bottom:772.893333pt;}
.yc_c00041{bottom:799.653333pt;}
.yb_c00041{bottom:818.373733pt;}
.ya_c00041{bottom:836.933600pt;}
.y9_c00041{bottom:855.653333pt;}
.y8_c00041{bottom:874.373600pt;}
.y7_c00041{bottom:892.933467pt;}
.y6_c00041{bottom:911.653200pt;}
.y5_c00041{bottom:930.373467pt;}
.y4_c00041{bottom:948.933333pt;}
.y3_c00041{bottom:975.653067pt;}
.y2_c00041{bottom:994.373333pt;}
.y1_c00041{bottom:1044.160000pt;}
.h2_c00041{height:50.628750pt;}
.h1_c00041{height:1122.666667pt;}
.h0_c00041{height:1122.720000pt;}
.w1_c00041{width:794.000000pt;}
.w0_c00041{width:794.080000pt;}
.x0_c00041{left:0.000000pt;}
.x1_c00041{left:113.471867pt;}
.x2_c00041{left:132.352133pt;}
.x3_c00041{left:141.946800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e01d0cf5182a3cb320de9afc.woff2')format("woff");}.ff1_c00042{font-family:ff1_c00042;line-height:1.070312;font-style:normal;font-weight:normal;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_8b0701136755e70ca98120f9.woff2')format("woff");}.ff2_c00042{font-family:ff2_c00042;line-height:0.666504;font-style:normal;font-weight:normal;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_9d396929f66ab96ebb6912b8.woff2')format("woff");}.ff3_c00042{font-family:ff3_c00042;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00042{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00042{vertical-align:0.000000px;}
.ls1_c00042{letter-spacing:0.000000px;}
.ls0_c00042{letter-spacing:79.481280px;}
.sc__c00042{text-shadow:none;}
.sc0_c00042{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00042{-webkit-text-stroke:0px transparent;}
.sc0_c00042{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00042{word-spacing:-18.414720px;}
.ws0_c00042{word-spacing:-16.560000px;}
.ws2_c00042{word-spacing:0.000000px;}
._a_c00042{margin-left:-3.378586px;}
._0_c00042{margin-left:-1.125696px;}
._8_c00042{width:1.458161px;}
._3_c00042{width:2.658354px;}
._d_c00042{width:4.777298px;}
._6_c00042{width:5.827473px;}
._7_c00042{width:7.333069px;}
._f_c00042{width:10.019501px;}
._5_c00042{width:11.188259px;}
._4_c00042{width:12.254307px;}
._10_c00042{width:13.399306px;}
._c_c00042{width:16.810969px;}
._e_c00042{width:23.978702px;}
._b_c00042{width:26.495986px;}
._9_c00042{width:61.602244px;}
._2_c00042{width:79.252176px;}
._1_c00042{width:2012.060305px;}
.fc0_c00042{color:rgb(0,0,0);}
.fs0_c00042{font-size:66.240000px;}
.y0_c00042{bottom:0.000000px;}
.y2b_c00042{bottom:95.400000px;}
.y2a_c00042{bottom:125.459700px;}
.y29_c00042{bottom:146.555850px;}
.y28_c00042{bottom:167.429850px;}
.y27_c00042{bottom:188.490150px;}
.y26_c00042{bottom:209.549850px;}
.y25_c00042{bottom:230.429700px;}
.y24_c00042{bottom:251.490000px;}
.y23_c00042{bottom:281.550150px;}
.y22_c00042{bottom:302.430000px;}
.y21_c00042{bottom:323.490300px;}
.y20_c00042{bottom:344.550000px;}
.y1f_c00042{bottom:365.429850px;}
.y1e_c00042{bottom:386.490150px;}
.y1d_c00042{bottom:407.595000px;}
.y1c_c00042{bottom:437.475000px;}
.y1b_c00042{bottom:467.535000px;}
.y1a_c00042{bottom:497.595000px;}
.y19_c00042{bottom:527.475150px;}
.y18_c00042{bottom:548.534850px;}
.y17_c00042{bottom:569.595150px;}
.y16_c00042{bottom:590.475000px;}
.y15_c00042{bottom:620.534850px;}
.y14_c00042{bottom:641.625150px;}
.y13_c00042{bottom:662.505000px;}
.y12_c00042{bottom:692.565000px;}
.y11_c00042{bottom:722.625000px;}
.y10_c00042{bottom:752.505000px;}
.yf_c00042{bottom:782.565300px;}
.ye_c00042{bottom:803.625000px;}
.yd_c00042{bottom:833.504700px;}
.yc_c00042{bottom:854.565000px;}
.yb_c00042{bottom:884.625000px;}
.ya_c00042{bottom:905.550000px;}
.y9_c00042{bottom:935.609700px;}
.y8_c00042{bottom:956.670000px;}
.y7_c00042{bottom:986.550000px;}
.y6_c00042{bottom:1016.610000px;}
.y5_c00042{bottom:1046.670150px;}
.y4_c00042{bottom:1067.550000px;}
.y3_c00042{bottom:1097.609700px;}
.y2_c00042{bottom:1118.670000px;}
.y1_c00042{bottom:1174.680000px;}
.h2_c00042{height:56.957344px;}
.h1_c00042{height:1263.000000px;}
.h0_c00042{height:1263.060000px;}
.w1_c00042{width:893.250000px;}
.w0_c00042{width:893.340000px;}
.x0_c00042{left:0.000000px;}
.x1_c00042{left:127.655850px;}
.x3_c00042{left:148.896150px;}
.x2_c00042{left:159.690150px;}
@media print{
.v0_c00042{vertical-align:0.000000pt;}
.ls1_c00042{letter-spacing:0.000000pt;}
.ls0_c00042{letter-spacing:70.650027pt;}
.ws1_c00042{word-spacing:-16.368640pt;}
.ws0_c00042{word-spacing:-14.720000pt;}
.ws2_c00042{word-spacing:0.000000pt;}
._a_c00042{margin-left:-3.003187pt;}
._0_c00042{margin-left:-1.000619pt;}
._8_c00042{width:1.296143pt;}
._3_c00042{width:2.362982pt;}
._d_c00042{width:4.246487pt;}
._6_c00042{width:5.179976pt;}
._7_c00042{width:6.518283pt;}
._f_c00042{width:8.906224pt;}
._5_c00042{width:9.945119pt;}
._4_c00042{width:10.892718pt;}
._10_c00042{width:11.910494pt;}
._c_c00042{width:14.943083pt;}
._e_c00042{width:21.314402pt;}
._b_c00042{width:23.551988pt;}
._9_c00042{width:54.757550pt;}
._2_c00042{width:70.446379pt;}
._1_c00042{width:1788.498049pt;}
.fs0_c00042{font-size:58.880000pt;}
.y0_c00042{bottom:0.000000pt;}
.y2b_c00042{bottom:84.800000pt;}
.y2a_c00042{bottom:111.519733pt;}
.y29_c00042{bottom:130.271867pt;}
.y28_c00042{bottom:148.826533pt;}
.y27_c00042{bottom:167.546800pt;}
.y26_c00042{bottom:186.266533pt;}
.y25_c00042{bottom:204.826400pt;}
.y24_c00042{bottom:223.546667pt;}
.y23_c00042{bottom:250.266800pt;}
.y22_c00042{bottom:268.826667pt;}
.y21_c00042{bottom:287.546933pt;}
.y20_c00042{bottom:306.266667pt;}
.y1f_c00042{bottom:324.826533pt;}
.y1e_c00042{bottom:343.546800pt;}
.y1d_c00042{bottom:362.306667pt;}
.y1c_c00042{bottom:388.866667pt;}
.y1b_c00042{bottom:415.586667pt;}
.y1a_c00042{bottom:442.306667pt;}
.y19_c00042{bottom:468.866800pt;}
.y18_c00042{bottom:487.586533pt;}
.y17_c00042{bottom:506.306800pt;}
.y16_c00042{bottom:524.866667pt;}
.y15_c00042{bottom:551.586533pt;}
.y14_c00042{bottom:570.333467pt;}
.y13_c00042{bottom:588.893333pt;}
.y12_c00042{bottom:615.613333pt;}
.y11_c00042{bottom:642.333333pt;}
.y10_c00042{bottom:668.893333pt;}
.yf_c00042{bottom:695.613600pt;}
.ye_c00042{bottom:714.333333pt;}
.yd_c00042{bottom:740.893067pt;}
.yc_c00042{bottom:759.613333pt;}
.yb_c00042{bottom:786.333333pt;}
.ya_c00042{bottom:804.933333pt;}
.y9_c00042{bottom:831.653067pt;}
.y8_c00042{bottom:850.373333pt;}
.y7_c00042{bottom:876.933333pt;}
.y6_c00042{bottom:903.653333pt;}
.y5_c00042{bottom:930.373467pt;}
.y4_c00042{bottom:948.933333pt;}
.y3_c00042{bottom:975.653067pt;}
.y2_c00042{bottom:994.373333pt;}
.y1_c00042{bottom:1044.160000pt;}
.h2_c00042{height:50.628750pt;}
.h1_c00042{height:1122.666667pt;}
.h0_c00042{height:1122.720000pt;}
.w1_c00042{width:794.000000pt;}
.w0_c00042{width:794.080000pt;}
.x0_c00042{left:0.000000pt;}
.x1_c00042{left:113.471867pt;}
.x3_c00042{left:132.352133pt;}
.x2_c00042{left:141.946800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0df689fb9f7c4efd7ce780a5.woff2')format("woff");}.ff1_c00043{font-family:ff1_c00043;line-height:1.070312;font-style:normal;font-weight:normal;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_8b0701136755e70ca98120f9.woff2')format("woff");}.ff2_c00043{font-family:ff2_c00043;line-height:0.666504;font-style:normal;font-weight:normal;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_3ccb8ea73a72af736cc4b56e.woff2')format("woff");}.ff3_c00043{font-family:ff3_c00043;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00043{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00043{vertical-align:0.000000px;}
.ls0_c00043{letter-spacing:0.000000px;}
.sc__c00043{text-shadow:none;}
.sc0_c00043{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00043{-webkit-text-stroke:0px transparent;}
.sc0_c00043{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00043{word-spacing:-16.560000px;}
.ws1_c00043{word-spacing:0.000000px;}
._8_c00043{margin-left:-8.859674px;}
._6_c00043{margin-left:-6.767536px;}
._7_c00043{margin-left:-4.014700px;}
._f_c00043{margin-left:-2.203530px;}
._0_c00043{margin-left:-1.125696px;}
._5_c00043{width:1.177280px;}
._2_c00043{width:3.045628px;}
._e_c00043{width:4.436720px;}
._4_c00043{width:6.027188px;}
._14_c00043{width:7.174112px;}
._9_c00043{width:8.278640px;}
._12_c00043{width:9.339749px;}
._13_c00043{width:10.713416px;}
._3_c00043{width:14.109408px;}
._a_c00043{width:16.208739px;}
._b_c00043{width:17.347534px;}
._c_c00043{width:25.172061px;}
._d_c00043{width:26.494427px;}
._11_c00043{width:62.288245px;}
._10_c00043{width:79.252176px;}
._1_c00043{width:2012.060305px;}
.fc0_c00043{color:rgb(0,0,0);}
.fs0_c00043{font-size:66.240000px;}
.y0_c00043{bottom:0.000000px;}
.y2b_c00043{bottom:95.399850px;}
.y2a_c00043{bottom:116.459550px;}
.y29_c00043{bottom:137.555700px;}
.y28_c00043{bottom:158.429700px;}
.y27_c00043{bottom:179.490000px;}
.y26_c00043{bottom:209.549850px;}
.y25_c00043{bottom:230.429700px;}
.y24_c00043{bottom:251.490000px;}
.y23_c00043{bottom:281.549850px;}
.y22_c00043{bottom:302.429700px;}
.y21_c00043{bottom:323.490000px;}
.y20_c00043{bottom:353.550000px;}
.y1f_c00043{bottom:383.430000px;}
.y1e_c00043{bottom:404.535300px;}
.y1d_c00043{bottom:425.595600px;}
.y1c_c00043{bottom:446.475450px;}
.y1b_c00043{bottom:467.535150px;}
.y1a_c00043{bottom:488.595450px;}
.y19_c00043{bottom:509.475300px;}
.y18_c00043{bottom:530.535000px;}
.y17_c00043{bottom:560.595000px;}
.y16_c00043{bottom:590.475000px;}
.y15_c00043{bottom:647.565000px;}
.y14_c00043{bottom:677.625000px;}
.y13_c00043{bottom:707.505000px;}
.y12_c00043{bottom:737.565300px;}
.y11_c00043{bottom:758.625000px;}
.y10_c00043{bottom:788.504850px;}
.yf_c00043{bottom:809.565150px;}
.ye_c00043{bottom:830.624850px;}
.yd_c00043{bottom:851.504700px;}
.yc_c00043{bottom:872.565000px;}
.yb_c00043{bottom:902.670000px;}
.ya_c00043{bottom:932.550000px;}
.y9_c00043{bottom:962.610300px;}
.y8_c00043{bottom:983.670600px;}
.y7_c00043{bottom:1004.550450px;}
.y6_c00043{bottom:1025.610150px;}
.y5_c00043{bottom:1046.670450px;}
.y4_c00043{bottom:1067.550300px;}
.y3_c00043{bottom:1088.610000px;}
.y2_c00043{bottom:1118.670000px;}
.y1_c00043{bottom:1174.680000px;}
.h3_c00043{height:48.224531px;}
.h2_c00043{height:56.957344px;}
.h1_c00043{height:1263.000000px;}
.h0_c00043{height:1263.060000px;}
.w1_c00043{width:893.250000px;}
.w0_c00043{width:893.340000px;}
.x0_c00043{left:0.000000px;}
.x1_c00043{left:127.655850px;}
.x2_c00043{left:148.896150px;}
.x3_c00043{left:159.690150px;}
@media print{
.v0_c00043{vertical-align:0.000000pt;}
.ls0_c00043{letter-spacing:0.000000pt;}
.ws0_c00043{word-spacing:-14.720000pt;}
.ws1_c00043{word-spacing:0.000000pt;}
._8_c00043{margin-left:-7.875265pt;}
._6_c00043{margin-left:-6.015588pt;}
._7_c00043{margin-left:-3.568623pt;}
._f_c00043{margin-left:-1.958694pt;}
._0_c00043{margin-left:-1.000619pt;}
._5_c00043{width:1.046471pt;}
._2_c00043{width:2.707225pt;}
._e_c00043{width:3.943751pt;}
._4_c00043{width:5.357501pt;}
._14_c00043{width:6.376989pt;}
._9_c00043{width:7.358791pt;}
._12_c00043{width:8.301999pt;}
._13_c00043{width:9.523037pt;}
._3_c00043{width:12.541696pt;}
._a_c00043{width:14.407768pt;}
._b_c00043{width:15.420030pt;}
._c_c00043{width:22.375165pt;}
._d_c00043{width:23.550602pt;}
._11_c00043{width:55.367329pt;}
._10_c00043{width:70.446379pt;}
._1_c00043{width:1788.498049pt;}
.fs0_c00043{font-size:58.880000pt;}
.y0_c00043{bottom:0.000000pt;}
.y2b_c00043{bottom:84.799867pt;}
.y2a_c00043{bottom:103.519600pt;}
.y29_c00043{bottom:122.271733pt;}
.y28_c00043{bottom:140.826400pt;}
.y27_c00043{bottom:159.546667pt;}
.y26_c00043{bottom:186.266533pt;}
.y25_c00043{bottom:204.826400pt;}
.y24_c00043{bottom:223.546667pt;}
.y23_c00043{bottom:250.266533pt;}
.y22_c00043{bottom:268.826400pt;}
.y21_c00043{bottom:287.546667pt;}
.y20_c00043{bottom:314.266667pt;}
.y1f_c00043{bottom:340.826667pt;}
.y1e_c00043{bottom:359.586933pt;}
.y1d_c00043{bottom:378.307200pt;}
.y1c_c00043{bottom:396.867067pt;}
.y1b_c00043{bottom:415.586800pt;}
.y1a_c00043{bottom:434.307067pt;}
.y19_c00043{bottom:452.866933pt;}
.y18_c00043{bottom:471.586667pt;}
.y17_c00043{bottom:498.306667pt;}
.y16_c00043{bottom:524.866667pt;}
.y15_c00043{bottom:575.613333pt;}
.y14_c00043{bottom:602.333333pt;}
.y13_c00043{bottom:628.893333pt;}
.y12_c00043{bottom:655.613600pt;}
.y11_c00043{bottom:674.333333pt;}
.y10_c00043{bottom:700.893200pt;}
.yf_c00043{bottom:719.613467pt;}
.ye_c00043{bottom:738.333200pt;}
.yd_c00043{bottom:756.893067pt;}
.yc_c00043{bottom:775.613333pt;}
.yb_c00043{bottom:802.373333pt;}
.ya_c00043{bottom:828.933333pt;}
.y9_c00043{bottom:855.653600pt;}
.y8_c00043{bottom:874.373867pt;}
.y7_c00043{bottom:892.933733pt;}
.y6_c00043{bottom:911.653467pt;}
.y5_c00043{bottom:930.373733pt;}
.y4_c00043{bottom:948.933600pt;}
.y3_c00043{bottom:967.653333pt;}
.y2_c00043{bottom:994.373333pt;}
.y1_c00043{bottom:1044.160000pt;}
.h3_c00043{height:42.866250pt;}
.h2_c00043{height:50.628750pt;}
.h1_c00043{height:1122.666667pt;}
.h0_c00043{height:1122.720000pt;}
.w1_c00043{width:794.000000pt;}
.w0_c00043{width:794.080000pt;}
.x0_c00043{left:0.000000pt;}
.x1_c00043{left:113.471867pt;}
.x2_c00043{left:132.352133pt;}
.x3_c00043{left:141.946800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4402ec20e5d53e1a58d7b00f.woff2')format("woff");}.ff1_c00044{font-family:ff1_c00044;line-height:1.070312;font-style:normal;font-weight:normal;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_8b0701136755e70ca98120f9.woff2')format("woff");}.ff2_c00044{font-family:ff2_c00044;line-height:0.666504;font-style:normal;font-weight:normal;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_0f1ba9dbefce4231cd885e11.woff2')format("woff");}.ff3_c00044{font-family:ff3_c00044;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00044;src:url('chunks/assets/font_ccfae26782d71e301882c850.woff2')format("woff");}.ff4_c00044{font-family:ff4_c00044;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls1_c00044{letter-spacing:0.000000px;}
.ls0_c00044{letter-spacing:69.426480px;}
.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;}
}
.ws1_c00044{word-spacing:-39.744000px;}
.ws0_c00044{word-spacing:-16.560000px;}
.ws2_c00044{word-spacing:0.000000px;}
._d_c00044{margin-left:-7.024467px;}
._e_c00044{margin-left:-4.999584px;}
._2_c00044{margin-left:-3.444506px;}
._12_c00044{margin-left:-2.381974px;}
._0_c00044{margin-left:-1.125696px;}
._3_c00044{width:1.655815px;}
._8_c00044{width:2.903897px;}
._9_c00044{width:4.393135px;}
._f_c00044{width:5.729549px;}
._c_c00044{width:8.409722px;}
._6_c00044{width:9.471609px;}
._13_c00044{width:10.862729px;}
._14_c00044{width:12.056408px;}
._11_c00044{width:19.539736px;}
._4_c00044{width:20.668837px;}
._10_c00044{width:22.016990px;}
._5_c00044{width:33.118274px;}
._15_c00044{width:37.093172px;}
._a_c00044{width:45.970290px;}
._b_c00044{width:47.402110px;}
._7_c00044{width:79.252176px;}
._1_c00044{width:2012.060305px;}
.fc0_c00044{color:rgb(0,0,0);}
.fs0_c00044{font-size:66.240000px;}
.y0_c00044{bottom:0.000000px;}
.y2c_c00044{bottom:128.520450px;}
.y2b_c00044{bottom:149.436000px;}
.y2a_c00044{bottom:170.490450px;}
.y29_c00044{bottom:191.550150px;}
.y28_c00044{bottom:212.430000px;}
.y27_c00044{bottom:233.490300px;}
.y26_c00044{bottom:254.550000px;}
.y25_c00044{bottom:275.429850px;}
.y24_c00044{bottom:296.490150px;}
.y23_c00044{bottom:317.550450px;}
.y22_c00044{bottom:338.430300px;}
.y21_c00044{bottom:359.490600px;}
.y20_c00044{bottom:380.550300px;}
.y1f_c00044{bottom:401.475300px;}
.y1e_c00044{bottom:422.535000px;}
.y1d_c00044{bottom:452.595000px;}
.y1c_c00044{bottom:473.475000px;}
.y1b_c00044{bottom:503.535000px;}
.y1a_c00044{bottom:533.595150px;}
.y19_c00044{bottom:554.475000px;}
.y18_c00044{bottom:584.535000px;}
.y17_c00044{bottom:614.595300px;}
.y16_c00044{bottom:635.475150px;}
.y15_c00044{bottom:656.565450px;}
.y14_c00044{bottom:677.625150px;}
.y13_c00044{bottom:698.505000px;}
.y12_c00044{bottom:728.565000px;}
.y11_c00044{bottom:758.625750px;}
.y10_c00044{bottom:779.505600px;}
.yf_c00044{bottom:800.565300px;}
.ye_c00044{bottom:821.625000px;}
.yd_c00044{bottom:851.505000px;}
.yc_c00044{bottom:881.565000px;}
.yb_c00044{bottom:911.670600px;}
.ya_c00044{bottom:932.550450px;}
.y9_c00044{bottom:953.610150px;}
.y8_c00044{bottom:974.670450px;}
.y7_c00044{bottom:995.550300px;}
.y6_c00044{bottom:1016.610000px;}
.y5_c00044{bottom:1046.670000px;}
.y4_c00044{bottom:1076.550000px;}
.y3_c00044{bottom:1097.609700px;}
.y2_c00044{bottom:1118.670000px;}
.y1_c00044{bottom:1174.680000px;}
.h2_c00044{height:56.957344px;}
.h1_c00044{height:1263.000000px;}
.h0_c00044{height:1263.060000px;}
.w1_c00044{width:893.250000px;}
.w0_c00044{width:893.340000px;}
.x0_c00044{left:0.000000px;}
.x1_c00044{left:127.655850px;}
.x2_c00044{left:148.896150px;}
.x3_c00044{left:159.510000px;}
.x4_c00044{left:191.370300px;}
@media print{
.v0_c00044{vertical-align:0.000000pt;}
.ls1_c00044{letter-spacing:0.000000pt;}
.ls0_c00044{letter-spacing:61.712427pt;}
.ws1_c00044{word-spacing:-35.328000pt;}
.ws0_c00044{word-spacing:-14.720000pt;}
.ws2_c00044{word-spacing:0.000000pt;}
._d_c00044{margin-left:-6.243971pt;}
._e_c00044{margin-left:-4.444075pt;}
._2_c00044{margin-left:-3.061783pt;}
._12_c00044{margin-left:-2.117310pt;}
._0_c00044{margin-left:-1.000619pt;}
._3_c00044{width:1.471835pt;}
._8_c00044{width:2.581242pt;}
._9_c00044{width:3.905009pt;}
._f_c00044{width:5.092932pt;}
._c_c00044{width:7.475309pt;}
._6_c00044{width:8.419208pt;}
._13_c00044{width:9.655759pt;}
._14_c00044{width:10.716807pt;}
._11_c00044{width:17.368654pt;}
._4_c00044{width:18.372299pt;}
._10_c00044{width:19.570657pt;}
._5_c00044{width:29.438466pt;}
._15_c00044{width:32.971708pt;}
._a_c00044{width:40.862480pt;}
._b_c00044{width:42.135209pt;}
._7_c00044{width:70.446379pt;}
._1_c00044{width:1788.498049pt;}
.fs0_c00044{font-size:58.880000pt;}
.y0_c00044{bottom:0.000000pt;}
.y2c_c00044{bottom:114.240400pt;}
.y2b_c00044{bottom:132.832000pt;}
.y2a_c00044{bottom:151.547067pt;}
.y29_c00044{bottom:170.266800pt;}
.y28_c00044{bottom:188.826667pt;}
.y27_c00044{bottom:207.546933pt;}
.y26_c00044{bottom:226.266667pt;}
.y25_c00044{bottom:244.826533pt;}
.y24_c00044{bottom:263.546800pt;}
.y23_c00044{bottom:282.267067pt;}
.y22_c00044{bottom:300.826933pt;}
.y21_c00044{bottom:319.547200pt;}
.y20_c00044{bottom:338.266933pt;}
.y1f_c00044{bottom:356.866933pt;}
.y1e_c00044{bottom:375.586667pt;}
.y1d_c00044{bottom:402.306667pt;}
.y1c_c00044{bottom:420.866667pt;}
.y1b_c00044{bottom:447.586667pt;}
.y1a_c00044{bottom:474.306800pt;}
.y19_c00044{bottom:492.866667pt;}
.y18_c00044{bottom:519.586667pt;}
.y17_c00044{bottom:546.306933pt;}
.y16_c00044{bottom:564.866800pt;}
.y15_c00044{bottom:583.613733pt;}
.y14_c00044{bottom:602.333467pt;}
.y13_c00044{bottom:620.893333pt;}
.y12_c00044{bottom:647.613333pt;}
.y11_c00044{bottom:674.334000pt;}
.y10_c00044{bottom:692.893867pt;}
.yf_c00044{bottom:711.613600pt;}
.ye_c00044{bottom:730.333333pt;}
.yd_c00044{bottom:756.893333pt;}
.yc_c00044{bottom:783.613333pt;}
.yb_c00044{bottom:810.373867pt;}
.ya_c00044{bottom:828.933733pt;}
.y9_c00044{bottom:847.653467pt;}
.y8_c00044{bottom:866.373733pt;}
.y7_c00044{bottom:884.933600pt;}
.y6_c00044{bottom:903.653333pt;}
.y5_c00044{bottom:930.373333pt;}
.y4_c00044{bottom:956.933333pt;}
.y3_c00044{bottom:975.653067pt;}
.y2_c00044{bottom:994.373333pt;}
.y1_c00044{bottom:1044.160000pt;}
.h2_c00044{height:50.628750pt;}
.h1_c00044{height:1122.666667pt;}
.h0_c00044{height:1122.720000pt;}
.w1_c00044{width:794.000000pt;}
.w0_c00044{width:794.080000pt;}
.x0_c00044{left:0.000000pt;}
.x1_c00044{left:113.471867pt;}
.x2_c00044{left:132.352133pt;}
.x3_c00044{left:141.786667pt;}
.x4_c00044{left:170.106933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4239aa0594ad163777d81c4e.woff2')format("woff");}.ff1_c00045{font-family:ff1_c00045;line-height:1.070312;font-style:normal;font-weight:normal;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_8b0701136755e70ca98120f9.woff2')format("woff");}.ff2_c00045{font-family:ff2_c00045;line-height:0.666504;font-style:normal;font-weight:normal;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_158a328973e13e06352c33ea.woff2')format("woff");}.ff3_c00045{font-family:ff3_c00045;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls0_c00045{letter-spacing:0.000000px;}
.sc__c00045{text-shadow:none;}
.sc0_c00045{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00045{-webkit-text-stroke:0px transparent;}
.sc0_c00045{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00045{word-spacing:-16.560000px;}
.ws1_c00045{word-spacing:0.000000px;}
._2_c00045{margin-left:-4.106304px;}
._3_c00045{margin-left:-2.715896px;}
._0_c00045{margin-left:-1.125696px;}
._5_c00045{width:1.119534px;}
._8_c00045{width:2.138663px;}
._11_c00045{width:4.171737px;}
._c_c00045{width:5.548264px;}
._b_c00045{width:6.623703px;}
._d_c00045{width:8.345247px;}
._13_c00045{width:9.426836px;}
._10_c00045{width:10.670045px;}
._f_c00045{width:11.856365px;}
._6_c00045{width:14.307023px;}
._7_c00045{width:15.373458px;}
._15_c00045{width:16.415180px;}
._9_c00045{width:20.933616px;}
._e_c00045{width:22.623188px;}
._14_c00045{width:44.380469px;}
._12_c00045{width:62.288245px;}
._a_c00045{width:68.559804px;}
._4_c00045{width:79.252176px;}
._1_c00045{width:2012.060305px;}
.fc0_c00045{color:rgb(0,0,0);}
.fs0_c00045{font-size:66.240000px;}
.y0_c00045{bottom:0.000000px;}
.y2e_c00045{bottom:95.399850px;}
.y2d_c00045{bottom:116.459550px;}
.y2c_c00045{bottom:137.555700px;}
.y2b_c00045{bottom:158.429700px;}
.y2a_c00045{bottom:179.490000px;}
.y29_c00045{bottom:200.550300px;}
.y28_c00045{bottom:221.430150px;}
.y27_c00045{bottom:242.490450px;}
.y26_c00045{bottom:263.550150px;}
.y25_c00045{bottom:284.430000px;}
.y24_c00045{bottom:314.490300px;}
.y23_c00045{bottom:335.550000px;}
.y22_c00045{bottom:356.429850px;}
.y21_c00045{bottom:377.490150px;}
.y20_c00045{bottom:398.595000px;}
.y1f_c00045{bottom:419.474850px;}
.y1e_c00045{bottom:440.535150px;}
.y1d_c00045{bottom:461.595450px;}
.y1c_c00045{bottom:482.475300px;}
.y1b_c00045{bottom:503.535000px;}
.y1a_c00045{bottom:533.595000px;}
.y19_c00045{bottom:590.475600px;}
.y18_c00045{bottom:611.535300px;}
.y17_c00045{bottom:632.595600px;}
.y16_c00045{bottom:653.505300px;}
.y15_c00045{bottom:674.565600px;}
.y14_c00045{bottom:695.625300px;}
.y13_c00045{bottom:716.505150px;}
.y12_c00045{bottom:737.565450px;}
.y11_c00045{bottom:758.625150px;}
.y10_c00045{bottom:779.505000px;}
.yf_c00045{bottom:809.565450px;}
.ye_c00045{bottom:830.625150px;}
.yd_c00045{bottom:851.505000px;}
.yc_c00045{bottom:881.565300px;}
.yb_c00045{bottom:902.670150px;}
.ya_c00045{bottom:923.550000px;}
.y9_c00045{bottom:944.609700px;}
.y8_c00045{bottom:965.670000px;}
.y7_c00045{bottom:995.550300px;}
.y6_c00045{bottom:1016.610000px;}
.y5_c00045{bottom:1046.670000px;}
.y4_c00045{bottom:1076.550000px;}
.y3_c00045{bottom:1097.609700px;}
.y2_c00045{bottom:1118.670000px;}
.y1_c00045{bottom:1174.680000px;}
.h3_c00045{height:48.224531px;}
.h2_c00045{height:56.957344px;}
.h1_c00045{height:1263.000000px;}
.h0_c00045{height:1263.060000px;}
.w1_c00045{width:893.250000px;}
.w0_c00045{width:893.340000px;}
.x0_c00045{left:0.000000px;}
.x1_c00045{left:127.655850px;}
.x2_c00045{left:148.896150px;}
.x3_c00045{left:159.690150px;}
@media print{
.v0_c00045{vertical-align:0.000000pt;}
.ls0_c00045{letter-spacing:0.000000pt;}
.ws0_c00045{word-spacing:-14.720000pt;}
.ws1_c00045{word-spacing:0.000000pt;}
._2_c00045{margin-left:-3.650048pt;}
._3_c00045{margin-left:-2.414129pt;}
._0_c00045{margin-left:-1.000619pt;}
._5_c00045{width:0.995141pt;}
._8_c00045{width:1.901034pt;}
._11_c00045{width:3.708211pt;}
._c_c00045{width:4.931790pt;}
._b_c00045{width:5.887736pt;}
._d_c00045{width:7.417997pt;}
._13_c00045{width:8.379409pt;}
._10_c00045{width:9.484485pt;}
._f_c00045{width:10.538991pt;}
._6_c00045{width:12.717353pt;}
._7_c00045{width:13.665296pt;}
._15_c00045{width:14.591271pt;}
._9_c00045{width:18.607659pt;}
._e_c00045{width:20.109500pt;}
._14_c00045{width:39.449306pt;}
._12_c00045{width:55.367329pt;}
._a_c00045{width:60.942048pt;}
._4_c00045{width:70.446379pt;}
._1_c00045{width:1788.498049pt;}
.fs0_c00045{font-size:58.880000pt;}
.y0_c00045{bottom:0.000000pt;}
.y2e_c00045{bottom:84.799867pt;}
.y2d_c00045{bottom:103.519600pt;}
.y2c_c00045{bottom:122.271733pt;}
.y2b_c00045{bottom:140.826400pt;}
.y2a_c00045{bottom:159.546667pt;}
.y29_c00045{bottom:178.266933pt;}
.y28_c00045{bottom:196.826800pt;}
.y27_c00045{bottom:215.547067pt;}
.y26_c00045{bottom:234.266800pt;}
.y25_c00045{bottom:252.826667pt;}
.y24_c00045{bottom:279.546933pt;}
.y23_c00045{bottom:298.266667pt;}
.y22_c00045{bottom:316.826533pt;}
.y21_c00045{bottom:335.546800pt;}
.y20_c00045{bottom:354.306667pt;}
.y1f_c00045{bottom:372.866533pt;}
.y1e_c00045{bottom:391.586800pt;}
.y1d_c00045{bottom:410.307067pt;}
.y1c_c00045{bottom:428.866933pt;}
.y1b_c00045{bottom:447.586667pt;}
.y1a_c00045{bottom:474.306667pt;}
.y19_c00045{bottom:524.867200pt;}
.y18_c00045{bottom:543.586933pt;}
.y17_c00045{bottom:562.307200pt;}
.y16_c00045{bottom:580.893600pt;}
.y15_c00045{bottom:599.613867pt;}
.y14_c00045{bottom:618.333600pt;}
.y13_c00045{bottom:636.893467pt;}
.y12_c00045{bottom:655.613733pt;}
.y11_c00045{bottom:674.333467pt;}
.y10_c00045{bottom:692.893333pt;}
.yf_c00045{bottom:719.613733pt;}
.ye_c00045{bottom:738.333467pt;}
.yd_c00045{bottom:756.893333pt;}
.yc_c00045{bottom:783.613600pt;}
.yb_c00045{bottom:802.373467pt;}
.ya_c00045{bottom:820.933333pt;}
.y9_c00045{bottom:839.653067pt;}
.y8_c00045{bottom:858.373333pt;}
.y7_c00045{bottom:884.933600pt;}
.y6_c00045{bottom:903.653333pt;}
.y5_c00045{bottom:930.373333pt;}
.y4_c00045{bottom:956.933333pt;}
.y3_c00045{bottom:975.653067pt;}
.y2_c00045{bottom:994.373333pt;}
.y1_c00045{bottom:1044.160000pt;}
.h3_c00045{height:42.866250pt;}
.h2_c00045{height:50.628750pt;}
.h1_c00045{height:1122.666667pt;}
.h0_c00045{height:1122.720000pt;}
.w1_c00045{width:794.000000pt;}
.w0_c00045{width:794.080000pt;}
.x0_c00045{left:0.000000pt;}
.x1_c00045{left:113.471867pt;}
.x2_c00045{left:132.352133pt;}
.x3_c00045{left:141.946800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9ad96f07420a9eb45145fb02.woff2')format("woff");}.ff1_c00046{font-family:ff1_c00046;line-height:1.070312;font-style:normal;font-weight:normal;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_de77fefe0d5005cf9ba70c25.woff2')format("woff");}.ff2_c00046{font-family:ff2_c00046;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls0_c00046{letter-spacing:0.000000px;}
.sc__c00046{text-shadow:none;}
.sc0_c00046{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00046{-webkit-text-stroke:0px transparent;}
.sc0_c00046{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00046{word-spacing:-15.012000px;}
.ws1_c00046{word-spacing:0.000000px;}
._6_c00046{margin-left:-4.813859px;}
._5_c00046{margin-left:-3.414261px;}
._7_c00046{margin-left:-2.375258px;}
._0_c00046{margin-left:-1.125696px;}
._3_c00046{width:1.127992px;}
._2_c00046{width:2.647403px;}
._f_c00046{width:4.633901px;}
._14_c00046{width:5.692328px;}
._15_c00046{width:6.826505px;}
._11_c00046{width:8.014444px;}
._9_c00046{width:9.408522px;}
._a_c00046{width:10.449375px;}
._b_c00046{width:11.505801px;}
._c_c00046{width:13.196271px;}
._d_c00046{width:14.401853px;}
._4_c00046{width:19.873746px;}
._16_c00046{width:20.985251px;}
._e_c00046{width:22.128085px;}
._10_c00046{width:23.644837px;}
._8_c00046{width:25.635963px;}
._12_c00046{width:26.956679px;}
._13_c00046{width:62.288245px;}
._1_c00046{width:2012.060305px;}
.fc0_c00046{color:rgb(0,0,0);}
.fs1_c00046{font-size:54.000000px;}
.fs0_c00046{font-size:66.240000px;}
.y0_c00046{bottom:0.000000px;}
.y2f_c00046{bottom:101.520150px;}
.y2e_c00046{bottom:122.400000px;}
.y2d_c00046{bottom:143.496150px;}
.y2c_c00046{bottom:164.550000px;}
.y2b_c00046{bottom:194.430000px;}
.y2a_c00046{bottom:215.490300px;}
.y29_c00046{bottom:236.550000px;}
.y28_c00046{bottom:266.430000px;}
.y27_c00046{bottom:323.490150px;}
.y26_c00046{bottom:344.550450px;}
.y25_c00046{bottom:365.430300px;}
.y24_c00046{bottom:386.490600px;}
.y23_c00046{bottom:407.595450px;}
.y22_c00046{bottom:428.475300px;}
.y21_c00046{bottom:449.535000px;}
.y20_c00046{bottom:470.595300px;}
.y1f_c00046{bottom:491.475150px;}
.y1e_c00046{bottom:512.534850px;}
.y1d_c00046{bottom:533.595150px;}
.y1c_c00046{bottom:554.475000px;}
.y1b_c00046{bottom:584.534550px;}
.y1a_c00046{bottom:605.594850px;}
.y19_c00046{bottom:626.474700px;}
.y18_c00046{bottom:647.565000px;}
.y17_c00046{bottom:668.625300px;}
.y16_c00046{bottom:689.505150px;}
.y15_c00046{bottom:710.565450px;}
.y14_c00046{bottom:731.625150px;}
.y13_c00046{bottom:752.505000px;}
.y12_c00046{bottom:773.565300px;}
.y11_c00046{bottom:794.625600px;}
.y10_c00046{bottom:815.505450px;}
.yf_c00046{bottom:836.565750px;}
.ye_c00046{bottom:857.625450px;}
.yd_c00046{bottom:878.505300px;}
.yc_c00046{bottom:899.610150px;}
.yb_c00046{bottom:920.670450px;}
.ya_c00046{bottom:941.550300px;}
.y9_c00046{bottom:962.610000px;}
.y8_c00046{bottom:983.670300px;}
.y7_c00046{bottom:1004.550150px;}
.y6_c00046{bottom:1025.609850px;}
.y5_c00046{bottom:1046.670150px;}
.y4_c00046{bottom:1067.550000px;}
.y3_c00046{bottom:1097.609700px;}
.y2_c00046{bottom:1118.670000px;}
.y1_c00046{bottom:1174.680000px;}
.h3_c00046{height:48.224531px;}
.h2_c00046{height:56.957344px;}
.h1_c00046{height:1263.000000px;}
.h0_c00046{height:1263.060000px;}
.w1_c00046{width:893.250000px;}
.w0_c00046{width:893.340000px;}
.x0_c00046{left:0.000000px;}
.x1_c00046{left:127.655850px;}
.x2_c00046{left:148.896150px;}
@media print{
.v0_c00046{vertical-align:0.000000pt;}
.ls0_c00046{letter-spacing:0.000000pt;}
.ws0_c00046{word-spacing:-13.344000pt;}
.ws1_c00046{word-spacing:0.000000pt;}
._6_c00046{margin-left:-4.278986pt;}
._5_c00046{margin-left:-3.034899pt;}
._7_c00046{margin-left:-2.111341pt;}
._0_c00046{margin-left:-1.000619pt;}
._3_c00046{width:1.002659pt;}
._2_c00046{width:2.353247pt;}
._f_c00046{width:4.119023pt;}
._14_c00046{width:5.059847pt;}
._15_c00046{width:6.068004pt;}
._11_c00046{width:7.123950pt;}
._9_c00046{width:8.363131pt;}
._a_c00046{width:9.288333pt;}
._b_c00046{width:10.227378pt;}
._c_c00046{width:11.730018pt;}
._d_c00046{width:12.801647pt;}
._4_c00046{width:17.665552pt;}
._16_c00046{width:18.653556pt;}
._e_c00046{width:19.669409pt;}
._10_c00046{width:21.017633pt;}
._8_c00046{width:22.787523pt;}
._12_c00046{width:23.961493pt;}
._13_c00046{width:55.367329pt;}
._1_c00046{width:1788.498049pt;}
.fs1_c00046{font-size:48.000000pt;}
.fs0_c00046{font-size:58.880000pt;}
.y0_c00046{bottom:0.000000pt;}
.y2f_c00046{bottom:90.240133pt;}
.y2e_c00046{bottom:108.800000pt;}
.y2d_c00046{bottom:127.552133pt;}
.y2c_c00046{bottom:146.266667pt;}
.y2b_c00046{bottom:172.826667pt;}
.y2a_c00046{bottom:191.546933pt;}
.y29_c00046{bottom:210.266667pt;}
.y28_c00046{bottom:236.826667pt;}
.y27_c00046{bottom:287.546800pt;}
.y26_c00046{bottom:306.267067pt;}
.y25_c00046{bottom:324.826933pt;}
.y24_c00046{bottom:343.547200pt;}
.y23_c00046{bottom:362.307067pt;}
.y22_c00046{bottom:380.866933pt;}
.y21_c00046{bottom:399.586667pt;}
.y20_c00046{bottom:418.306933pt;}
.y1f_c00046{bottom:436.866800pt;}
.y1e_c00046{bottom:455.586533pt;}
.y1d_c00046{bottom:474.306800pt;}
.y1c_c00046{bottom:492.866667pt;}
.y1b_c00046{bottom:519.586267pt;}
.y1a_c00046{bottom:538.306533pt;}
.y19_c00046{bottom:556.866400pt;}
.y18_c00046{bottom:575.613333pt;}
.y17_c00046{bottom:594.333600pt;}
.y16_c00046{bottom:612.893467pt;}
.y15_c00046{bottom:631.613733pt;}
.y14_c00046{bottom:650.333467pt;}
.y13_c00046{bottom:668.893333pt;}
.y12_c00046{bottom:687.613600pt;}
.y11_c00046{bottom:706.333867pt;}
.y10_c00046{bottom:724.893733pt;}
.yf_c00046{bottom:743.614000pt;}
.ye_c00046{bottom:762.333733pt;}
.yd_c00046{bottom:780.893600pt;}
.yc_c00046{bottom:799.653467pt;}
.yb_c00046{bottom:818.373733pt;}
.ya_c00046{bottom:836.933600pt;}
.y9_c00046{bottom:855.653333pt;}
.y8_c00046{bottom:874.373600pt;}
.y7_c00046{bottom:892.933467pt;}
.y6_c00046{bottom:911.653200pt;}
.y5_c00046{bottom:930.373467pt;}
.y4_c00046{bottom:948.933333pt;}
.y3_c00046{bottom:975.653067pt;}
.y2_c00046{bottom:994.373333pt;}
.y1_c00046{bottom:1044.160000pt;}
.h3_c00046{height:42.866250pt;}
.h2_c00046{height:50.628750pt;}
.h1_c00046{height:1122.666667pt;}
.h0_c00046{height:1122.720000pt;}
.w1_c00046{width:794.000000pt;}
.w0_c00046{width:794.080000pt;}
.x0_c00046{left:0.000000pt;}
.x1_c00046{left:113.471867pt;}
.x2_c00046{left:132.352133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_df4d711aa47d5c554ce2aac7.woff2')format("woff");}.ff1_c00047{font-family:ff1_c00047;line-height:1.070312;font-style:normal;font-weight:normal;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_8b0701136755e70ca98120f9.woff2')format("woff");}.ff2_c00047{font-family:ff2_c00047;line-height:0.666504;font-style:normal;font-weight:normal;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_12cc5e9a879579824f251f9a.woff2')format("woff");}.ff3_c00047{font-family:ff3_c00047;line-height:0.938965;font-style:normal;font-weight:normal;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_b252fc151438566a6c735e13.woff2')format("woff");}.ff4_c00047{font-family:ff4_c00047;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00047;src:url('chunks/assets/font_60201d8148d5d90db6824616.woff2')format("woff");}.ff5_c00047{font-family:ff5_c00047;line-height:0.728027;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1_c00047{vertical-align:-5.758596px;}
.v0_c00047{vertical-align:0.000000px;}
.ls4_c00047{letter-spacing:0.000000px;}
.ls0_c00047{letter-spacing:0.261600px;}
.ls5_c00047{letter-spacing:0.262200px;}
.ls1_c00047{letter-spacing:0.383460px;}
.ls2_c00047{letter-spacing:6.785280px;}
.ls3_c00047{letter-spacing:37.720440px;}
.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;}
}
.ws2_c00047{word-spacing:-18.414720px;}
.ws0_c00047{word-spacing:-16.560000px;}
.ws1_c00047{word-spacing:-15.012000px;}
.ws3_c00047{word-spacing:-11.609280px;}
.ws4_c00047{word-spacing:0.000000px;}
._e_c00047{margin-left:-6.300326px;}
._b_c00047{margin-left:-5.269031px;}
._a_c00047{margin-left:-4.240148px;}
._c_c00047{margin-left:-2.919515px;}
._0_c00047{margin-left:-1.125696px;}
._3_c00047{width:1.110768px;}
._2_c00047{width:3.044607px;}
._8_c00047{width:4.304343px;}
._5_c00047{width:6.856341px;}
._9_c00047{width:8.611764px;}
._7_c00047{width:10.730549px;}
._10_c00047{width:14.506759px;}
._11_c00047{width:16.626455px;}
._6_c00047{width:20.072629px;}
._12_c00047{width:23.578596px;}
._15_c00047{width:36.961892px;}
._d_c00047{width:44.908715px;}
._f_c00047{width:46.429815px;}
._13_c00047{width:53.735618px;}
._14_c00047{width:55.006386px;}
._4_c00047{width:79.252176px;}
._1_c00047{width:2012.060305px;}
.fc0_c00047{color:rgb(0,0,0);}
.fs2_c00047{font-size:41.760000px;}
.fs1_c00047{font-size:54.000000px;}
.fs0_c00047{font-size:66.240000px;}
.y0_c00047{bottom:0.000000px;}
.y2e_c00047{bottom:95.400000px;}
.y2d_c00047{bottom:116.459700px;}
.y2c_c00047{bottom:137.555850px;}
.y2b_c00047{bottom:167.429850px;}
.y2a_c00047{bottom:188.490150px;}
.y29_c00047{bottom:209.549850px;}
.y28_c00047{bottom:230.429700px;}
.y27_c00047{bottom:251.490000px;}
.y26_c00047{bottom:281.550300px;}
.y25_c00047{bottom:302.430150px;}
.y24_c00047{bottom:323.490450px;}
.y23_c00047{bottom:344.550150px;}
.y22_c00047{bottom:365.430000px;}
.y21_c00047{bottom:395.535150px;}
.y20_c00047{bottom:416.595450px;}
.y1f_c00047{bottom:437.475300px;}
.y1e_c00047{bottom:458.535000px;}
.y1d_c00047{bottom:488.595150px;}
.y1c_c00047{bottom:509.475000px;}
.y1b_c00047{bottom:530.534700px;}
.y1a_c00047{bottom:551.595000px;}
.y19_c00047{bottom:581.474700px;}
.y18_c00047{bottom:602.535000px;}
.y17_c00047{bottom:623.595300px;}
.y16_c00047{bottom:644.505000px;}
.y15_c00047{bottom:674.565450px;}
.y14_c00047{bottom:695.625150px;}
.y13_c00047{bottom:716.505000px;}
.y12_c00047{bottom:737.565300px;}
.y11_c00047{bottom:758.625000px;}
.y10_c00047{bottom:788.505000px;}
.yf_c00047{bottom:809.565300px;}
.ye_c00047{bottom:830.625000px;}
.yd_c00047{bottom:851.504850px;}
.yc_c00047{bottom:872.565150px;}
.yb_c00047{bottom:893.670000px;}
.ya_c00047{bottom:923.550300px;}
.y9_c00047{bottom:944.610000px;}
.y8_c00047{bottom:974.670150px;}
.y7_c00047{bottom:995.550000px;}
.y6_c00047{bottom:1016.609700px;}
.y5_c00047{bottom:1037.670000px;}
.y4_c00047{bottom:1067.550000px;}
.y3_c00047{bottom:1097.609700px;}
.y2_c00047{bottom:1118.670000px;}
.y1_c00047{bottom:1174.680000px;}
.h3_c00047{height:48.224531px;}
.h2_c00047{height:56.957344px;}
.h1_c00047{height:1263.000000px;}
.h0_c00047{height:1263.060000px;}
.w1_c00047{width:893.250000px;}
.w0_c00047{width:893.340000px;}
.x0_c00047{left:0.000000px;}
.x1_c00047{left:127.655850px;}
.x3_c00047{left:148.888050px;}
.x2_c00047{left:159.690150px;}
@media print{
.v1_c00047{vertical-align:-5.118752pt;}
.v0_c00047{vertical-align:0.000000pt;}
.ls4_c00047{letter-spacing:0.000000pt;}
.ls0_c00047{letter-spacing:0.232533pt;}
.ls5_c00047{letter-spacing:0.233067pt;}
.ls1_c00047{letter-spacing:0.340853pt;}
.ls2_c00047{letter-spacing:6.031360pt;}
.ls3_c00047{letter-spacing:33.529280pt;}
.ws2_c00047{word-spacing:-16.368640pt;}
.ws0_c00047{word-spacing:-14.720000pt;}
.ws1_c00047{word-spacing:-13.344000pt;}
.ws3_c00047{word-spacing:-10.319360pt;}
.ws4_c00047{word-spacing:0.000000pt;}
._e_c00047{margin-left:-5.600290pt;}
._b_c00047{margin-left:-4.683583pt;}
._a_c00047{margin-left:-3.769021pt;}
._c_c00047{margin-left:-2.595125pt;}
._0_c00047{margin-left:-1.000619pt;}
._3_c00047{width:0.987349pt;}
._2_c00047{width:2.706317pt;}
._8_c00047{width:3.826082pt;}
._5_c00047{width:6.094525pt;}
._9_c00047{width:7.654901pt;}
._7_c00047{width:9.538266pt;}
._10_c00047{width:12.894897pt;}
._11_c00047{width:14.779071pt;}
._6_c00047{width:17.842337pt;}
._12_c00047{width:20.958752pt;}
._15_c00047{width:32.855015pt;}
._d_c00047{width:39.918858pt;}
._f_c00047{width:41.270947pt;}
._13_c00047{width:47.764993pt;}
._14_c00047{width:48.894566pt;}
._4_c00047{width:70.446379pt;}
._1_c00047{width:1788.498049pt;}
.fs2_c00047{font-size:37.120000pt;}
.fs1_c00047{font-size:48.000000pt;}
.fs0_c00047{font-size:58.880000pt;}
.y0_c00047{bottom:0.000000pt;}
.y2e_c00047{bottom:84.800000pt;}
.y2d_c00047{bottom:103.519733pt;}
.y2c_c00047{bottom:122.271867pt;}
.y2b_c00047{bottom:148.826533pt;}
.y2a_c00047{bottom:167.546800pt;}
.y29_c00047{bottom:186.266533pt;}
.y28_c00047{bottom:204.826400pt;}
.y27_c00047{bottom:223.546667pt;}
.y26_c00047{bottom:250.266933pt;}
.y25_c00047{bottom:268.826800pt;}
.y24_c00047{bottom:287.547067pt;}
.y23_c00047{bottom:306.266800pt;}
.y22_c00047{bottom:324.826667pt;}
.y21_c00047{bottom:351.586800pt;}
.y20_c00047{bottom:370.307067pt;}
.y1f_c00047{bottom:388.866933pt;}
.y1e_c00047{bottom:407.586667pt;}
.y1d_c00047{bottom:434.306800pt;}
.y1c_c00047{bottom:452.866667pt;}
.y1b_c00047{bottom:471.586400pt;}
.y1a_c00047{bottom:490.306667pt;}
.y19_c00047{bottom:516.866400pt;}
.y18_c00047{bottom:535.586667pt;}
.y17_c00047{bottom:554.306933pt;}
.y16_c00047{bottom:572.893333pt;}
.y15_c00047{bottom:599.613733pt;}
.y14_c00047{bottom:618.333467pt;}
.y13_c00047{bottom:636.893333pt;}
.y12_c00047{bottom:655.613600pt;}
.y11_c00047{bottom:674.333333pt;}
.y10_c00047{bottom:700.893333pt;}
.yf_c00047{bottom:719.613600pt;}
.ye_c00047{bottom:738.333333pt;}
.yd_c00047{bottom:756.893200pt;}
.yc_c00047{bottom:775.613467pt;}
.yb_c00047{bottom:794.373333pt;}
.ya_c00047{bottom:820.933600pt;}
.y9_c00047{bottom:839.653333pt;}
.y8_c00047{bottom:866.373467pt;}
.y7_c00047{bottom:884.933333pt;}
.y6_c00047{bottom:903.653067pt;}
.y5_c00047{bottom:922.373333pt;}
.y4_c00047{bottom:948.933333pt;}
.y3_c00047{bottom:975.653067pt;}
.y2_c00047{bottom:994.373333pt;}
.y1_c00047{bottom:1044.160000pt;}
.h3_c00047{height:42.866250pt;}
.h2_c00047{height:50.628750pt;}
.h1_c00047{height:1122.666667pt;}
.h0_c00047{height:1122.720000pt;}
.w1_c00047{width:794.000000pt;}
.w0_c00047{width:794.080000pt;}
.x0_c00047{left:0.000000pt;}
.x1_c00047{left:113.471867pt;}
.x3_c00047{left:132.344933pt;}
.x2_c00047{left:141.946800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1fccce0aa72af0f0f38fd588.woff2')format("woff");}.ff1_c00048{font-family:ff1_c00048;line-height:1.070312;font-style:normal;font-weight:normal;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_d8c6d1ad3814cd78c1a42ca3.woff2')format("woff");}.ff2_c00048{font-family:ff2_c00048;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00048;src:url('chunks/assets/font_60201d8148d5d90db6824616.woff2')format("woff");}.ff3_c00048{font-family:ff3_c00048;line-height:0.728027;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1_c00048{vertical-align:-5.760936px;}
.v0_c00048{vertical-align:0.000000px;}
.ls0_c00048{letter-spacing:0.000000px;}
.sc__c00048{text-shadow:none;}
.sc0_c00048{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00048{-webkit-text-stroke:0px transparent;}
.sc0_c00048{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00048{word-spacing:-22.057920px;}
.ws2_c00048{word-spacing:-15.012000px;}
.ws0_c00048{word-spacing:-11.609280px;}
.ws3_c00048{word-spacing:0.000000px;}
._2_c00048{margin-left:-3.640894px;}
._3_c00048{margin-left:-2.126171px;}
._0_c00048{margin-left:-1.125696px;}
._4_c00048{width:1.008833px;}
._9_c00048{width:3.774539px;}
._5_c00048{width:9.117244px;}
._6_c00048{width:11.177615px;}
._8_c00048{width:16.505093px;}
._7_c00048{width:26.890994px;}
._1_c00048{width:2012.060305px;}
.fc0_c00048{color:rgb(0,0,0);}
.fs1_c00048{font-size:41.760000px;}
.fs2_c00048{font-size:54.000000px;}
.fs0_c00048{font-size:66.240000px;}
.y0_c00048{bottom:0.000000px;}
.ya_c00048{bottom:941.550300px;}
.y9_c00048{bottom:962.610000px;}
.y8_c00048{bottom:992.669700px;}
.y7_c00048{bottom:1013.549550px;}
.y6_c00048{bottom:1034.609850px;}
.y5_c00048{bottom:1055.670150px;}
.y4_c00048{bottom:1076.550000px;}
.y3_c00048{bottom:1097.609700px;}
.y2_c00048{bottom:1118.670000px;}
.y1_c00048{bottom:1174.680000px;}
.h3_c00048{height:48.224531px;}
.h2_c00048{height:56.957344px;}
.h1_c00048{height:1263.000000px;}
.h0_c00048{height:1263.060000px;}
.w1_c00048{width:893.250000px;}
.w0_c00048{width:893.340000px;}
.x0_c00048{left:0.000000px;}
.x1_c00048{left:127.655850px;}
.x2_c00048{left:148.896150px;}
@media print{
.v1_c00048{vertical-align:-5.120832pt;}
.v0_c00048{vertical-align:0.000000pt;}
.ls0_c00048{letter-spacing:0.000000pt;}
.ws1_c00048{word-spacing:-19.607040pt;}
.ws2_c00048{word-spacing:-13.344000pt;}
.ws0_c00048{word-spacing:-10.319360pt;}
.ws3_c00048{word-spacing:0.000000pt;}
._2_c00048{margin-left:-3.236350pt;}
._3_c00048{margin-left:-1.889930pt;}
._0_c00048{margin-left:-1.000619pt;}
._4_c00048{width:0.896740pt;}
._9_c00048{width:3.355146pt;}
._5_c00048{width:8.104217pt;}
._6_c00048{width:9.935658pt;}
._8_c00048{width:14.671194pt;}
._7_c00048{width:23.903106pt;}
._1_c00048{width:1788.498049pt;}
.fs1_c00048{font-size:37.120000pt;}
.fs2_c00048{font-size:48.000000pt;}
.fs0_c00048{font-size:58.880000pt;}
.y0_c00048{bottom:0.000000pt;}
.ya_c00048{bottom:836.933600pt;}
.y9_c00048{bottom:855.653333pt;}
.y8_c00048{bottom:882.373067pt;}
.y7_c00048{bottom:900.932933pt;}
.y6_c00048{bottom:919.653200pt;}
.y5_c00048{bottom:938.373467pt;}
.y4_c00048{bottom:956.933333pt;}
.y3_c00048{bottom:975.653067pt;}
.y2_c00048{bottom:994.373333pt;}
.y1_c00048{bottom:1044.160000pt;}
.h3_c00048{height:42.866250pt;}
.h2_c00048{height:50.628750pt;}
.h1_c00048{height:1122.666667pt;}
.h0_c00048{height:1122.720000pt;}
.w1_c00048{width:794.000000pt;}
.w0_c00048{width:794.080000pt;}
.x0_c00048{left:0.000000pt;}
.x1_c00048{left:113.471867pt;}
.x2_c00048{left:132.352133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0f627680f61248bdb474ac45.woff2')format("woff");}.ff1_c00049{font-family:ff1_c00049;line-height:1.070312;font-style:normal;font-weight:normal;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_d66c16ae6a9c813ac29b3a8c.woff2')format("woff");}.ff2_c00049{font-family:ff2_c00049;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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);}
.m1_c00049{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_c00049{vertical-align:0.000000px;}
.ls0_c00049{letter-spacing:0.000000px;}
.sc__c00049{text-shadow:none;}
.sc0_c00049{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00049{-webkit-text-stroke:0px transparent;}
.sc0_c00049{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00049{word-spacing:-15.012000px;}
.ws1_c00049{word-spacing:0.000000px;}
._14_c00049{margin-left:-15.162806px;}
._5_c00049{margin-left:-4.935967px;}
._4_c00049{margin-left:-3.509720px;}
._b_c00049{margin-left:-2.500999px;}
._0_c00049{margin-left:-1.194352px;}
._3_c00049{width:1.149940px;}
._f_c00049{width:2.508520px;}
._e_c00049{width:3.976790px;}
._a_c00049{width:5.961179px;}
._6_c00049{width:7.691289px;}
._13_c00049{width:8.846225px;}
._d_c00049{width:11.260867px;}
._7_c00049{width:12.982428px;}
._c_c00049{width:14.111126px;}
._12_c00049{width:17.038209px;}
._11_c00049{width:21.394954px;}
._8_c00049{width:22.522028px;}
._9_c00049{width:62.255920px;}
._10_c00049{width:89.844227px;}
._2_c00049{width:187.479128px;}
._1_c00049{width:1528.576381px;}
.fc0_c00049{color:rgb(0,0,0);}
.fs2_c00049{font-size:54.000000px;}
.fs0_c00049{font-size:66.240000px;}
.fs1_c00049{font-size:84.240000px;}
.y0_c00049{bottom:0.000000px;}
.y1e_c00049{bottom:89.459700px;}
.y1d_c00049{bottom:470.595450px;}
.y1c_c00049{bottom:491.475300px;}
.y1b_c00049{bottom:512.535000px;}
.y1a_c00049{bottom:533.595300px;}
.y19_c00049{bottom:554.475150px;}
.y18_c00049{bottom:575.534850px;}
.y17_c00049{bottom:596.595150px;}
.y16_c00049{bottom:617.475000px;}
.y15_c00049{bottom:638.534700px;}
.y14_c00049{bottom:659.625150px;}
.y13_c00049{bottom:680.505000px;}
.y12_c00049{bottom:701.565300px;}
.y11_c00049{bottom:722.625000px;}
.y10_c00049{bottom:752.505000px;}
.yf_c00049{bottom:791.566050px;}
.ye_c00049{bottom:812.625750px;}
.yd_c00049{bottom:833.505600px;}
.yc_c00049{bottom:854.565300px;}
.yb_c00049{bottom:875.625000px;}
.ya_c00049{bottom:896.550000px;}
.y9_c00049{bottom:926.610000px;}
.y8_c00049{bottom:983.670000px;}
.y7_c00049{bottom:1004.549850px;}
.y6_c00049{bottom:1025.610150px;}
.y5_c00049{bottom:1046.670450px;}
.y4_c00049{bottom:1067.550300px;}
.y3_c00049{bottom:1088.610000px;}
.y2_c00049{bottom:1118.670000px;}
.y1_c00049{bottom:1174.680000px;}
.h4_c00049{height:48.224531px;}
.h2_c00049{height:56.957344px;}
.h3_c00049{height:61.329023px;}
.h1_c00049{height:1263.000000px;}
.h0_c00049{height:1263.060000px;}
.w1_c00049{width:893.250000px;}
.w0_c00049{width:893.340000px;}
.x0_c00049{left:0.000000px;}
.x1_c00049{left:127.655850px;}
.x2_c00049{left:148.896150px;}
@media print{
.v0_c00049{vertical-align:0.000000pt;}
.ls0_c00049{letter-spacing:0.000000pt;}
.ws0_c00049{word-spacing:-13.344000pt;}
.ws1_c00049{word-spacing:0.000000pt;}
._14_c00049{margin-left:-13.478050pt;}
._5_c00049{margin-left:-4.387526pt;}
._4_c00049{margin-left:-3.119751pt;}
._b_c00049{margin-left:-2.223110pt;}
._0_c00049{margin-left:-1.061646pt;}
._3_c00049{width:1.022169pt;}
._f_c00049{width:2.229796pt;}
._e_c00049{width:3.534924pt;}
._a_c00049{width:5.298826pt;}
._6_c00049{width:6.836702pt;}
._13_c00049{width:7.863312pt;}
._d_c00049{width:10.009659pt;}
._7_c00049{width:11.539936pt;}
._c_c00049{width:12.543223pt;}
._12_c00049{width:15.145075pt;}
._11_c00049{width:19.017737pt;}
._8_c00049{width:20.019580pt;}
._9_c00049{width:55.338595pt;}
._10_c00049{width:79.861535pt;}
._2_c00049{width:166.648114pt;}
._1_c00049{width:1358.734561pt;}
.fs2_c00049{font-size:48.000000pt;}
.fs0_c00049{font-size:58.880000pt;}
.fs1_c00049{font-size:74.880000pt;}
.y0_c00049{bottom:0.000000pt;}
.y1e_c00049{bottom:79.519733pt;}
.y1d_c00049{bottom:418.307067pt;}
.y1c_c00049{bottom:436.866933pt;}
.y1b_c00049{bottom:455.586667pt;}
.y1a_c00049{bottom:474.306933pt;}
.y19_c00049{bottom:492.866800pt;}
.y18_c00049{bottom:511.586533pt;}
.y17_c00049{bottom:530.306800pt;}
.y16_c00049{bottom:548.866667pt;}
.y15_c00049{bottom:567.586400pt;}
.y14_c00049{bottom:586.333467pt;}
.y13_c00049{bottom:604.893333pt;}
.y12_c00049{bottom:623.613600pt;}
.y11_c00049{bottom:642.333333pt;}
.y10_c00049{bottom:668.893333pt;}
.yf_c00049{bottom:703.614267pt;}
.ye_c00049{bottom:722.334000pt;}
.yd_c00049{bottom:740.893867pt;}
.yc_c00049{bottom:759.613600pt;}
.yb_c00049{bottom:778.333333pt;}
.ya_c00049{bottom:796.933333pt;}
.y9_c00049{bottom:823.653333pt;}
.y8_c00049{bottom:874.373333pt;}
.y7_c00049{bottom:892.933200pt;}
.y6_c00049{bottom:911.653467pt;}
.y5_c00049{bottom:930.373733pt;}
.y4_c00049{bottom:948.933600pt;}
.y3_c00049{bottom:967.653333pt;}
.y2_c00049{bottom:994.373333pt;}
.y1_c00049{bottom:1044.160000pt;}
.h4_c00049{height:42.866250pt;}
.h2_c00049{height:50.628750pt;}
.h3_c00049{height:54.514688pt;}
.h1_c00049{height:1122.666667pt;}
.h0_c00049{height:1122.720000pt;}
.w1_c00049{width:794.000000pt;}
.w0_c00049{width:794.080000pt;}
.x0_c00049{left:0.000000pt;}
.x1_c00049{left:113.471867pt;}
.x2_c00049{left:132.352133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_11b324278aa5a7f3f2c89891.woff2')format("woff");}.ff1_c00050{font-family:ff1_c00050;line-height:1.070312;font-style: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);}
.m1_c00050{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_c00050{vertical-align:0.000000px;}
.ls0_c00050{letter-spacing:0.000000px;}
.sc__c00050{text-shadow:none;}
.sc0_c00050{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00050{-webkit-text-stroke:0px transparent;}
.sc0_c00050{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00050{word-spacing:-15.012000px;}
.ws1_c00050{word-spacing:0.000000px;}
._4_c00050{margin-left:-15.162806px;}
._0_c00050{margin-left:-1.194352px;}
._5_c00050{width:1.123275px;}
._e_c00050{width:2.285412px;}
._8_c00050{width:3.879931px;}
._9_c00050{width:4.986394px;}
._b_c00050{width:6.089923px;}
._a_c00050{width:7.354260px;}
._d_c00050{width:11.459520px;}
._10_c00050{width:13.502080px;}
._f_c00050{width:14.606276px;}
._3_c00050{width:19.741350px;}
._c_c00050{width:21.088168px;}
._7_c00050{width:24.718586px;}
._6_c00050{width:25.966575px;}
._2_c00050{width:27.086520px;}
._1_c00050{width:1528.576381px;}
.fc0_c00050{color:rgb(0,0,0);}
.fs1_c00050{font-size:54.000000px;}
.fs0_c00050{font-size:66.240000px;}
.y0_c00050{bottom:0.000000px;}
.y1d_c00050{bottom:114.480150px;}
.y1c_c00050{bottom:135.576300px;}
.y1b_c00050{bottom:156.450300px;}
.y1a_c00050{bottom:177.509700px;}
.y19_c00050{bottom:198.570000px;}
.y18_c00050{bottom:228.450450px;}
.y17_c00050{bottom:249.510150px;}
.y16_c00050{bottom:270.570450px;}
.y15_c00050{bottom:291.450300px;}
.y14_c00050{bottom:312.510000px;}
.y13_c00050{bottom:342.570150px;}
.y12_c00050{bottom:363.450450px;}
.y11_c00050{bottom:384.510150px;}
.y10_c00050{bottom:405.615600px;}
.yf_c00050{bottom:426.495450px;}
.ye_c00050{bottom:447.555150px;}
.yd_c00050{bottom:468.615450px;}
.yc_c00050{bottom:489.495300px;}
.yb_c00050{bottom:510.555000px;}
.ya_c00050{bottom:540.615450px;}
.y9_c00050{bottom:561.495300px;}
.y8_c00050{bottom:582.555000px;}
.y7_c00050{bottom:612.615000px;}
.y6_c00050{bottom:651.525000px;}
.y5_c00050{bottom:1055.670150px;}
.y4_c00050{bottom:1076.550000px;}
.y3_c00050{bottom:1097.609700px;}
.y2_c00050{bottom:1118.670000px;}
.y1_c00050{bottom:1174.680000px;}
.h2_c00050{height:56.957344px;}
.h3_c00050{height:56.958544px;}
.h1_c00050{height:1263.000000px;}
.h0_c00050{height:1263.060000px;}
.w1_c00050{width:893.250000px;}
.w0_c00050{width:893.340000px;}
.x0_c00050{left:0.000000px;}
.x1_c00050{left:127.655850px;}
.x2_c00050{left:148.896150px;}
@media print{
.v0_c00050{vertical-align:0.000000pt;}
.ls0_c00050{letter-spacing:0.000000pt;}
.ws0_c00050{word-spacing:-13.344000pt;}
.ws1_c00050{word-spacing:0.000000pt;}
._4_c00050{margin-left:-13.478050pt;}
._0_c00050{margin-left:-1.061646pt;}
._5_c00050{width:0.998467pt;}
._e_c00050{width:2.031477pt;}
._8_c00050{width:3.448828pt;}
._9_c00050{width:4.432350pt;}
._b_c00050{width:5.413265pt;}
._a_c00050{width:6.537120pt;}
._d_c00050{width:10.186240pt;}
._10_c00050{width:12.001849pt;}
._f_c00050{width:12.983356pt;}
._3_c00050{width:17.547867pt;}
._c_c00050{width:18.745038pt;}
._7_c00050{width:21.972076pt;}
._6_c00050{width:23.081400pt;}
._2_c00050{width:24.076907pt;}
._1_c00050{width:1358.734561pt;}
.fs1_c00050{font-size:48.000000pt;}
.fs0_c00050{font-size:58.880000pt;}
.y0_c00050{bottom:0.000000pt;}
.y1d_c00050{bottom:101.760133pt;}
.y1c_c00050{bottom:120.512267pt;}
.y1b_c00050{bottom:139.066933pt;}
.y1a_c00050{bottom:157.786400pt;}
.y19_c00050{bottom:176.506667pt;}
.y18_c00050{bottom:203.067067pt;}
.y17_c00050{bottom:221.786800pt;}
.y16_c00050{bottom:240.507067pt;}
.y15_c00050{bottom:259.066933pt;}
.y14_c00050{bottom:277.786667pt;}
.y13_c00050{bottom:304.506800pt;}
.y12_c00050{bottom:323.067067pt;}
.y11_c00050{bottom:341.786800pt;}
.y10_c00050{bottom:360.547200pt;}
.yf_c00050{bottom:379.107067pt;}
.ye_c00050{bottom:397.826800pt;}
.yd_c00050{bottom:416.547067pt;}
.yc_c00050{bottom:435.106933pt;}
.yb_c00050{bottom:453.826667pt;}
.ya_c00050{bottom:480.547067pt;}
.y9_c00050{bottom:499.106933pt;}
.y8_c00050{bottom:517.826667pt;}
.y7_c00050{bottom:544.546667pt;}
.y6_c00050{bottom:579.133333pt;}
.y5_c00050{bottom:938.373467pt;}
.y4_c00050{bottom:956.933333pt;}
.y3_c00050{bottom:975.653067pt;}
.y2_c00050{bottom:994.373333pt;}
.y1_c00050{bottom:1044.160000pt;}
.h2_c00050{height:50.628750pt;}
.h3_c00050{height:50.629817pt;}
.h1_c00050{height:1122.666667pt;}
.h0_c00050{height:1122.720000pt;}
.w1_c00050{width:794.000000pt;}
.w0_c00050{width:794.080000pt;}
.x0_c00050{left:0.000000pt;}
.x1_c00050{left:113.471867pt;}
.x2_c00050{left:132.352133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f5dadf4fb210ee2f2360b175.woff2')format("woff");}.ff1_c00051{font-family:ff1_c00051;line-height:1.070312;font-style:normal;font-weight:normal;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_8b0701136755e70ca98120f9.woff2')format("woff");}.ff2_c00051{font-family:ff2_c00051;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00051{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00051{vertical-align:0.000000px;}
.ls0_c00051{letter-spacing:0.000000px;}
.sc__c00051{text-shadow:none;}
.sc0_c00051{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00051{-webkit-text-stroke:0px transparent;}
.sc0_c00051{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00051{word-spacing:-18.414720px;}
.ws0_c00051{word-spacing:-16.560000px;}
.ws2_c00051{word-spacing:-15.012000px;}
.ws3_c00051{word-spacing:0.000000px;}
._4_c00051{margin-left:-15.162806px;}
._0_c00051{margin-left:-1.194352px;}
._6_c00051{width:7.478364px;}
._3_c00051{width:8.808836px;}
._7_c00051{width:10.295839px;}
._8_c00051{width:12.255017px;}
._5_c00051{width:14.638796px;}
._2_c00051{width:79.252176px;}
._1_c00051{width:1528.576381px;}
.fc0_c00051{color:rgb(0,0,0);}
.fs1_c00051{font-size:54.000000px;}
.fs0_c00051{font-size:66.240000px;}
.y0_c00051{bottom:0.000000px;}
.y18_c00051{bottom:110.520000px;}
.y17_c00051{bottom:131.579700px;}
.y16_c00051{bottom:152.490000px;}
.y15_c00051{bottom:182.550000px;}
.y14_c00051{bottom:221.429700px;}
.y13_c00051{bottom:242.490000px;}
.y12_c00051{bottom:755.565300px;}
.y11_c00051{bottom:776.625000px;}
.y10_c00051{bottom:806.505000px;}
.yf_c00051{bottom:827.565300px;}
.ye_c00051{bottom:848.625000px;}
.yd_c00051{bottom:878.505000px;}
.yc_c00051{bottom:899.609850px;}
.yb_c00051{bottom:920.670150px;}
.ya_c00051{bottom:941.550000px;}
.y9_c00051{bottom:962.609700px;}
.y8_c00051{bottom:983.670000px;}
.y7_c00051{bottom:1013.549550px;}
.y6_c00051{bottom:1034.609850px;}
.y5_c00051{bottom:1055.670150px;}
.y4_c00051{bottom:1076.550000px;}
.y3_c00051{bottom:1097.609700px;}
.y2_c00051{bottom:1118.670000px;}
.y1_c00051{bottom:1174.680000px;}
.h2_c00051{height:56.957344px;}
.h1_c00051{height:1263.000000px;}
.h0_c00051{height:1263.060000px;}
.w1_c00051{width:893.250000px;}
.w0_c00051{width:893.340000px;}
.x0_c00051{left:0.000000px;}
.x1_c00051{left:127.655850px;}
.x3_c00051{left:148.896150px;}
.x2_c00051{left:159.690150px;}
.x4_c00051{left:234.029250px;}
@media print{
.v0_c00051{vertical-align:0.000000pt;}
.ls0_c00051{letter-spacing:0.000000pt;}
.ws1_c00051{word-spacing:-16.368640pt;}
.ws0_c00051{word-spacing:-14.720000pt;}
.ws2_c00051{word-spacing:-13.344000pt;}
.ws3_c00051{word-spacing:0.000000pt;}
._4_c00051{margin-left:-13.478050pt;}
._0_c00051{margin-left:-1.061646pt;}
._6_c00051{width:6.647435pt;}
._3_c00051{width:7.830077pt;}
._7_c00051{width:9.151857pt;}
._8_c00051{width:10.893349pt;}
._5_c00051{width:13.012263pt;}
._2_c00051{width:70.446379pt;}
._1_c00051{width:1358.734561pt;}
.fs1_c00051{font-size:48.000000pt;}
.fs0_c00051{font-size:58.880000pt;}
.y0_c00051{bottom:0.000000pt;}
.y18_c00051{bottom:98.240000pt;}
.y17_c00051{bottom:116.959733pt;}
.y16_c00051{bottom:135.546667pt;}
.y15_c00051{bottom:162.266667pt;}
.y14_c00051{bottom:196.826400pt;}
.y13_c00051{bottom:215.546667pt;}
.y12_c00051{bottom:671.613600pt;}
.y11_c00051{bottom:690.333333pt;}
.y10_c00051{bottom:716.893333pt;}
.yf_c00051{bottom:735.613600pt;}
.ye_c00051{bottom:754.333333pt;}
.yd_c00051{bottom:780.893333pt;}
.yc_c00051{bottom:799.653200pt;}
.yb_c00051{bottom:818.373467pt;}
.ya_c00051{bottom:836.933333pt;}
.y9_c00051{bottom:855.653067pt;}
.y8_c00051{bottom:874.373333pt;}
.y7_c00051{bottom:900.932933pt;}
.y6_c00051{bottom:919.653200pt;}
.y5_c00051{bottom:938.373467pt;}
.y4_c00051{bottom:956.933333pt;}
.y3_c00051{bottom:975.653067pt;}
.y2_c00051{bottom:994.373333pt;}
.y1_c00051{bottom:1044.160000pt;}
.h2_c00051{height:50.628750pt;}
.h1_c00051{height:1122.666667pt;}
.h0_c00051{height:1122.720000pt;}
.w1_c00051{width:794.000000pt;}
.w0_c00051{width:794.080000pt;}
.x0_c00051{left:0.000000pt;}
.x1_c00051{left:113.471867pt;}
.x3_c00051{left:132.352133pt;}
.x2_c00051{left:141.946800pt;}
.x4_c00051{left:208.026000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b74d73cf783a807fada91d95.woff2')format("woff");}.ff1_c00052{font-family:ff1_c00052;line-height:1.070312;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00052{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00052{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00052{vertical-align:0.000000px;}
.ls6_c00052{letter-spacing:0.000000px;}
.ls5_c00052{letter-spacing:0.027360px;}
.ls3_c00052{letter-spacing:0.261600px;}
.ls0_c00052{letter-spacing:0.263460px;}
.ls1_c00052{letter-spacing:0.304800px;}
.ls2_c00052{letter-spacing:13.068480px;}
.ls4_c00052{letter-spacing:26.746620px;}
.sc__c00052{text-shadow:none;}
.sc0_c00052{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00052{-webkit-text-stroke:0px transparent;}
.sc0_c00052{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00052{word-spacing:-18.414720px;}
.ws1_c00052{word-spacing:-15.012000px;}
.ws2_c00052{word-spacing:0.000000px;}
._c_c00052{margin-left:-4.881669px;}
._2_c00052{margin-left:-3.179948px;}
._0_c00052{margin-left:-1.194352px;}
._3_c00052{width:1.322548px;}
._a_c00052{width:3.251902px;}
._10_c00052{width:4.629429px;}
._11_c00052{width:6.428547px;}
._5_c00052{width:7.485790px;}
._4_c00052{width:8.645076px;}
._d_c00052{width:9.845355px;}
._e_c00052{width:10.956566px;}
._6_c00052{width:13.391591px;}
._7_c00052{width:15.353439px;}
._b_c00052{width:23.827708px;}
._8_c00052{width:25.444680px;}
._9_c00052{width:26.669526px;}
._f_c00052{width:27.692988px;}
._1_c00052{width:1528.576381px;}
.fc0_c00052{color:rgb(0,0,0);}
.fs1_c00052{font-size:54.000000px;}
.fs0_c00052{font-size:66.240000px;}
.y0_c00052{bottom:0.000000px;}
.y23_c00052{bottom:109.800150px;}
.y22_c00052{bottom:130.859850px;}
.y21_c00052{bottom:151.950150px;}
.y20_c00052{bottom:172.830300px;}
.y1f_c00052{bottom:193.890600px;}
.y1e_c00052{bottom:214.950300px;}
.y1d_c00052{bottom:235.830150px;}
.y1c_c00052{bottom:256.890450px;}
.y1b_c00052{bottom:277.950150px;}
.y1a_c00052{bottom:298.830000px;}
.y19_c00052{bottom:328.890600px;}
.y18_c00052{bottom:349.950300px;}
.y17_c00052{bottom:370.830150px;}
.y16_c00052{bottom:391.935000px;}
.y15_c00052{bottom:412.995300px;}
.y14_c00052{bottom:433.875150px;}
.y13_c00052{bottom:454.934850px;}
.y12_c00052{bottom:475.995150px;}
.y11_c00052{bottom:496.875000px;}
.y10_c00052{bottom:526.935000px;}
.yf_c00052{bottom:565.815600px;}
.ye_c00052{bottom:586.875300px;}
.yd_c00052{bottom:607.935000px;}
.yc_c00052{bottom:899.610000px;}
.yb_c00052{bottom:920.670300px;}
.ya_c00052{bottom:941.550150px;}
.y9_c00052{bottom:962.609850px;}
.y8_c00052{bottom:983.670150px;}
.y7_c00052{bottom:1004.550000px;}
.y6_c00052{bottom:1034.609850px;}
.y5_c00052{bottom:1055.670150px;}
.y4_c00052{bottom:1076.550000px;}
.y3_c00052{bottom:1097.609700px;}
.y2_c00052{bottom:1118.670000px;}
.y1_c00052{bottom:1174.680000px;}
.h2_c00052{height:56.957344px;}
.h1_c00052{height:1263.000000px;}
.h0_c00052{height:1263.060000px;}
.w1_c00052{width:893.250000px;}
.w0_c00052{width:893.340000px;}
.x0_c00052{left:0.000000px;}
.x1_c00052{left:127.655850px;}
.x2_c00052{left:148.896150px;}
.x3_c00052{left:234.029850px;}
@media print{
.v0_c00052{vertical-align:0.000000pt;}
.ls6_c00052{letter-spacing:0.000000pt;}
.ls5_c00052{letter-spacing:0.024320pt;}
.ls3_c00052{letter-spacing:0.232533pt;}
.ls0_c00052{letter-spacing:0.234187pt;}
.ls1_c00052{letter-spacing:0.270933pt;}
.ls2_c00052{letter-spacing:11.616427pt;}
.ls4_c00052{letter-spacing:23.774773pt;}
.ws0_c00052{word-spacing:-16.368640pt;}
.ws1_c00052{word-spacing:-13.344000pt;}
.ws2_c00052{word-spacing:0.000000pt;}
._c_c00052{margin-left:-4.339261pt;}
._2_c00052{margin-left:-2.826620pt;}
._0_c00052{margin-left:-1.061646pt;}
._3_c00052{width:1.175598pt;}
._a_c00052{width:2.890579pt;}
._10_c00052{width:4.115048pt;}
._11_c00052{width:5.714264pt;}
._5_c00052{width:6.654036pt;}
._4_c00052{width:7.684512pt;}
._d_c00052{width:8.751426pt;}
._e_c00052{width:9.739170pt;}
._6_c00052{width:11.903636pt;}
._7_c00052{width:13.647501pt;}
._b_c00052{width:21.180185pt;}
._8_c00052{width:22.617493pt;}
._9_c00052{width:23.706245pt;}
._f_c00052{width:24.615989pt;}
._1_c00052{width:1358.734561pt;}
.fs1_c00052{font-size:48.000000pt;}
.fs0_c00052{font-size:58.880000pt;}
.y0_c00052{bottom:0.000000pt;}
.y23_c00052{bottom:97.600133pt;}
.y22_c00052{bottom:116.319867pt;}
.y21_c00052{bottom:135.066800pt;}
.y20_c00052{bottom:153.626933pt;}
.y1f_c00052{bottom:172.347200pt;}
.y1e_c00052{bottom:191.066933pt;}
.y1d_c00052{bottom:209.626800pt;}
.y1c_c00052{bottom:228.347067pt;}
.y1b_c00052{bottom:247.066800pt;}
.y1a_c00052{bottom:265.626667pt;}
.y19_c00052{bottom:292.347200pt;}
.y18_c00052{bottom:311.066933pt;}
.y17_c00052{bottom:329.626800pt;}
.y16_c00052{bottom:348.386667pt;}
.y15_c00052{bottom:367.106933pt;}
.y14_c00052{bottom:385.666800pt;}
.y13_c00052{bottom:404.386533pt;}
.y12_c00052{bottom:423.106800pt;}
.y11_c00052{bottom:441.666667pt;}
.y10_c00052{bottom:468.386667pt;}
.yf_c00052{bottom:502.947200pt;}
.ye_c00052{bottom:521.666933pt;}
.yd_c00052{bottom:540.386667pt;}
.yc_c00052{bottom:799.653333pt;}
.yb_c00052{bottom:818.373600pt;}
.ya_c00052{bottom:836.933467pt;}
.y9_c00052{bottom:855.653200pt;}
.y8_c00052{bottom:874.373467pt;}
.y7_c00052{bottom:892.933333pt;}
.y6_c00052{bottom:919.653200pt;}
.y5_c00052{bottom:938.373467pt;}
.y4_c00052{bottom:956.933333pt;}
.y3_c00052{bottom:975.653067pt;}
.y2_c00052{bottom:994.373333pt;}
.y1_c00052{bottom:1044.160000pt;}
.h2_c00052{height:50.628750pt;}
.h1_c00052{height:1122.666667pt;}
.h0_c00052{height:1122.720000pt;}
.w1_c00052{width:794.000000pt;}
.w0_c00052{width:794.080000pt;}
.x0_c00052{left:0.000000pt;}
.x1_c00052{left:113.471867pt;}
.x2_c00052{left:132.352133pt;}
.x3_c00052{left:208.026533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_211c2feed757e47b82817bf6.woff2')format("woff");}.ff1_c00053{font-family:ff1_c00053;line-height:1.070312;font-style: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;}
.ls0_c00053{letter-spacing:0.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:0.000000px;}
._4_c00053{margin-left:-3.269899px;}
._0_c00053{margin-left:-1.194352px;}
._5_c00053{width:1.061231px;}
._2_c00053{width:3.251902px;}
._3_c00053{width:24.707574px;}
._1_c00053{width:1528.576381px;}
.fc0_c00053{color:rgb(0,0,0);}
.fs0_c00053{font-size:66.240000px;}
.y0_c00053{bottom:0.000000px;}
.yd_c00053{bottom:113.940300px;}
.yc_c00053{bottom:134.855850px;}
.yb_c00053{bottom:173.909850px;}
.ya_c00053{bottom:194.970150px;}
.y9_c00053{bottom:215.850000px;}
.y8_c00053{bottom:553.215000px;}
.y7_c00053{bottom:592.095000px;}
.y6_c00053{bottom:613.154700px;}
.y5_c00053{bottom:634.215000px;}
.y4_c00053{bottom:1067.550000px;}
.y3_c00053{bottom:1097.609700px;}
.y2_c00053{bottom:1118.670000px;}
.y1_c00053{bottom:1174.680000px;}
.h2_c00053{height:56.957344px;}
.h1_c00053{height:1263.000000px;}
.h0_c00053{height:1263.060000px;}
.w1_c00053{width:893.250000px;}
.w0_c00053{width:893.340000px;}
.x0_c00053{left:0.000000px;}
.x1_c00053{left:127.655850px;}
.x2_c00053{left:148.896150px;}
.x3_c00053{left:234.029850px;}
@media print{
.v0_c00053{vertical-align:0.000000pt;}
.ls0_c00053{letter-spacing:0.000000pt;}
.ws0_c00053{word-spacing:0.000000pt;}
._4_c00053{margin-left:-2.906576pt;}
._0_c00053{margin-left:-1.061646pt;}
._5_c00053{width:0.943316pt;}
._2_c00053{width:2.890579pt;}
._3_c00053{width:21.962288pt;}
._1_c00053{width:1358.734561pt;}
.fs0_c00053{font-size:58.880000pt;}
.y0_c00053{bottom:0.000000pt;}
.yd_c00053{bottom:101.280267pt;}
.yc_c00053{bottom:119.871867pt;}
.yb_c00053{bottom:154.586533pt;}
.ya_c00053{bottom:173.306800pt;}
.y9_c00053{bottom:191.866667pt;}
.y8_c00053{bottom:491.746667pt;}
.y7_c00053{bottom:526.306667pt;}
.y6_c00053{bottom:545.026400pt;}
.y5_c00053{bottom:563.746667pt;}
.y4_c00053{bottom:948.933333pt;}
.y3_c00053{bottom:975.653067pt;}
.y2_c00053{bottom:994.373333pt;}
.y1_c00053{bottom:1044.160000pt;}
.h2_c00053{height:50.628750pt;}
.h1_c00053{height:1122.666667pt;}
.h0_c00053{height:1122.720000pt;}
.w1_c00053{width:794.000000pt;}
.w0_c00053{width:794.080000pt;}
.x0_c00053{left:0.000000pt;}
.x1_c00053{left:113.471867pt;}
.x2_c00053{left:132.352133pt;}
.x3_c00053{left:208.026533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_97bf385aa3817e24cea01a7c.woff2')format("woff");}.ff1_c00054{font-family:ff1_c00054;line-height:1.070312;font-style:normal;font-weight:normal;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_e493e6d560a727322e59cbca.woff2')format("woff");}.ff2_c00054{font-family:ff2_c00054;line-height:0.895996;font-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_c00054{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0_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);}
.m2_c00054{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1_c00054{vertical-align:-1.441404px;}
.v0_c00054{vertical-align:0.000000px;}
.ls1_c00054{letter-spacing:0.000000px;}
.ls0_c00054{letter-spacing:0.110640px;}
.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;}
}
.ws1_c00054{word-spacing:-18.414720px;}
.ws0_c00054{word-spacing:-15.012000px;}
.ws6_c00054{word-spacing:-13.505760px;}
.ws5_c00054{word-spacing:-12.204000px;}
.ws7_c00054{word-spacing:0.000000px;}
.ws2_c00054{word-spacing:27.172746px;}
.ws3_c00054{word-spacing:27.522990px;}
.ws4_c00054{word-spacing:54.900720px;}
._e_c00054{margin-left:-8.878598px;}
._c_c00054{margin-left:-7.473311px;}
._d_c00054{margin-left:-6.285496px;}
._b_c00054{margin-left:-4.437781px;}
._8_c00054{margin-left:-3.378661px;}
._9_c00054{margin-left:-2.301418px;}
._0_c00054{margin-left:-1.194352px;}
._7_c00054{width:1.261504px;}
._6_c00054{width:2.783093px;}
._a_c00054{width:5.713959px;}
._13_c00054{width:6.769785px;}
._12_c00054{width:10.278842px;}
._5_c00054{width:11.325896px;}
._4_c00054{width:14.535109px;}
._3_c00054{width:15.631610px;}
._11_c00054{width:16.899114px;}
._10_c00054{width:19.561241px;}
._f_c00054{width:20.863398px;}
._16_c00054{width:25.304342px;}
._14_c00054{width:26.562571px;}
._15_c00054{width:27.847780px;}
._19_c00054{width:40.655419px;}
._1e_c00054{width:42.547267px;}
._18_c00054{width:44.766512px;}
._1a_c00054{width:45.982768px;}
._1c_c00054{width:47.945520px;}
._22_c00054{width:49.541400px;}
._1d_c00054{width:50.594718px;}
._17_c00054{width:53.304501px;}
._1b_c00054{width:54.641520px;}
._20_c00054{width:57.879092px;}
._21_c00054{width:67.104720px;}
._23_c00054{width:77.405400px;}
._2_c00054{width:89.844227px;}
._1f_c00054{width:154.984800px;}
._1_c00054{width:1528.576381px;}
.fc1_c00054{color:rgb(89,89,89);}
.fc0_c00054{color:rgb(0,0,0);}
.fs1_c00054{font-size:54.000000px;}
.fs2_c00054{font-size:59.760000px;}
.fs0_c00054{font-size:66.240000px;}
.fs3_c00054{font-size:84.240000px;}
.y0_c00054{bottom:0.000000px;}
.y21_c00054{bottom:14.610000px;}
.y20_c00054{bottom:36.150000px;}
.y1f_c00054{bottom:57.705000px;}
.y1e_c00054{bottom:79.230000px;}
.y1d_c00054{bottom:100.050000px;}
.y22_c00054{bottom:110.415000px;}
.y2d_c00054{bottom:110.415600px;}
.y1b_c00054{bottom:123.120600px;}
.y23_c00054{bottom:131.835150px;}
.y1a_c00054{bottom:144.216750px;}
.y2e_c00054{bottom:146.130900px;}
.y24_c00054{bottom:153.285150px;}
.y19_c00054{bottom:165.090750px;}
.y25_c00054{bottom:174.705300px;}
.y2f_c00054{bottom:181.876050px;}
.y18_c00054{bottom:186.150450px;}
.y26_c00054{bottom:196.170000px;}
.y35_c00054{bottom:197.610115px;}
.y17_c00054{bottom:207.210150px;}
.y34_c00054{bottom:209.490000px;}
.y27_c00054{bottom:217.590150px;}
.y30_c00054{bottom:217.590750px;}
.y16_c00054{bottom:228.090600px;}
.y28_c00054{bottom:239.010300px;}
.y15_c00054{bottom:249.150300px;}
.y31_c00054{bottom:253.290750px;}
.y29_c00054{bottom:260.460300px;}
.y14_c00054{bottom:270.210000px;}
.y2a_c00054{bottom:281.880450px;}
.y32_c00054{bottom:289.051050px;}
.y13_c00054{bottom:300.090000px;}
.y2b_c00054{bottom:303.330450px;}
.y2c_c00054{bottom:324.750600px;}
.y33_c00054{bottom:324.751050px;}
.y12_c00054{bottom:339.150300px;}
.y36_c00054{bottom:352.980000px;}
.y11_c00054{bottom:360.210000px;}
.y1c_c00054{bottom:404.640000px;}
.y10_c00054{bottom:806.505450px;}
.yf_c00054{bottom:827.565750px;}
.ye_c00054{bottom:848.625450px;}
.yd_c00054{bottom:869.505300px;}
.yc_c00054{bottom:890.565600px;}
.yb_c00054{bottom:911.670450px;}
.ya_c00054{bottom:932.550300px;}
.y9_c00054{bottom:953.609700px;}
.y8_c00054{bottom:974.670000px;}
.y7_c00054{bottom:1004.550450px;}
.y6_c00054{bottom:1025.610150px;}
.y5_c00054{bottom:1046.670450px;}
.y4_c00054{bottom:1067.550300px;}
.y3_c00054{bottom:1088.610000px;}
.y2_c00054{bottom:1118.670000px;}
.y1_c00054{bottom:1174.680000px;}
.h5_c00054{height:38.759766px;}
.h6_c00054{height:42.894141px;}
.h2_c00054{height:56.957344px;}
.h3_c00054{height:56.958544px;}
.h7_c00054{height:60.465234px;}
.h4_c00054{height:384.300000px;}
.h1_c00054{height:1263.000000px;}
.h0_c00054{height:1263.060000px;}
.w2_c00054{width:680.220000px;}
.w1_c00054{width:893.250000px;}
.w0_c00054{width:893.340000px;}
.x0_c00054{left:0.000000px;}
.x6_c00054{left:62.100000px;}
.x4_c00054{left:126.000000px;}
.x1_c00054{left:127.655850px;}
.xd_c00054{left:133.950000px;}
.xc_c00054{left:145.515000px;}
.x2_c00054{left:148.896150px;}
.xa_c00054{left:163.410000px;}
.x8_c00054{left:166.110000px;}
.x9_c00054{left:170.250240px;}
.x5_c00054{left:206.310000px;}
.x3_c00054{left:234.029280px;}
.x7_c00054{left:618.330000px;}
.xb_c00054{left:657.570000px;}
@media print{
.v1_c00054{vertical-align:-1.281248pt;}
.v0_c00054{vertical-align:0.000000pt;}
.ls1_c00054{letter-spacing:0.000000pt;}
.ls0_c00054{letter-spacing:0.098347pt;}
.ws1_c00054{word-spacing:-16.368640pt;}
.ws0_c00054{word-spacing:-13.344000pt;}
.ws6_c00054{word-spacing:-12.005120pt;}
.ws5_c00054{word-spacing:-10.848000pt;}
.ws7_c00054{word-spacing:0.000000pt;}
.ws2_c00054{word-spacing:24.153552pt;}
.ws3_c00054{word-spacing:24.464880pt;}
.ws4_c00054{word-spacing:48.800640pt;}
._e_c00054{margin-left:-7.892087pt;}
._c_c00054{margin-left:-6.642943pt;}
._d_c00054{margin-left:-5.587108pt;}
._b_c00054{margin-left:-3.944694pt;}
._8_c00054{margin-left:-3.003254pt;}
._9_c00054{margin-left:-2.045705pt;}
._0_c00054{margin-left:-1.061646pt;}
._7_c00054{width:1.121337pt;}
._6_c00054{width:2.473861pt;}
._a_c00054{width:5.079075pt;}
._13_c00054{width:6.017587pt;}
._12_c00054{width:9.136749pt;}
._5_c00054{width:10.067463pt;}
._4_c00054{width:12.920097pt;}
._3_c00054{width:13.894764pt;}
._11_c00054{width:15.021435pt;}
._10_c00054{width:17.387770pt;}
._f_c00054{width:18.545242pt;}
._16_c00054{width:22.492749pt;}
._14_c00054{width:23.611174pt;}
._15_c00054{width:24.753582pt;}
._19_c00054{width:36.138150pt;}
._1e_c00054{width:37.819793pt;}
._18_c00054{width:39.792455pt;}
._1a_c00054{width:40.873572pt;}
._1c_c00054{width:42.618240pt;}
._22_c00054{width:44.036800pt;}
._1d_c00054{width:44.973083pt;}
._17_c00054{width:47.381779pt;}
._1b_c00054{width:48.570240pt;}
._20_c00054{width:51.448082pt;}
._21_c00054{width:59.648640pt;}
._23_c00054{width:68.804800pt;}
._2_c00054{width:79.861535pt;}
._1f_c00054{width:137.764267pt;}
._1_c00054{width:1358.734561pt;}
.fs1_c00054{font-size:48.000000pt;}
.fs2_c00054{font-size:53.120000pt;}
.fs0_c00054{font-size:58.880000pt;}
.fs3_c00054{font-size:74.880000pt;}
.y0_c00054{bottom:0.000000pt;}
.y21_c00054{bottom:12.986667pt;}
.y20_c00054{bottom:32.133333pt;}
.y1f_c00054{bottom:51.293333pt;}
.y1e_c00054{bottom:70.426667pt;}
.y1d_c00054{bottom:88.933333pt;}
.y22_c00054{bottom:98.146667pt;}
.y2d_c00054{bottom:98.147200pt;}
.y1b_c00054{bottom:109.440533pt;}
.y23_c00054{bottom:117.186800pt;}
.y1a_c00054{bottom:128.192667pt;}
.y2e_c00054{bottom:129.894133pt;}
.y24_c00054{bottom:136.253467pt;}
.y19_c00054{bottom:146.747333pt;}
.y25_c00054{bottom:155.293600pt;}
.y2f_c00054{bottom:161.667600pt;}
.y18_c00054{bottom:165.467067pt;}
.y26_c00054{bottom:174.373333pt;}
.y35_c00054{bottom:175.653435pt;}
.y17_c00054{bottom:184.186800pt;}
.y34_c00054{bottom:186.213333pt;}
.y27_c00054{bottom:193.413467pt;}
.y30_c00054{bottom:193.414000pt;}
.y16_c00054{bottom:202.747200pt;}
.y28_c00054{bottom:212.453600pt;}
.y15_c00054{bottom:221.466933pt;}
.y31_c00054{bottom:225.147333pt;}
.y29_c00054{bottom:231.520267pt;}
.y14_c00054{bottom:240.186667pt;}
.y2a_c00054{bottom:250.560400pt;}
.y32_c00054{bottom:256.934267pt;}
.y13_c00054{bottom:266.746667pt;}
.y2b_c00054{bottom:269.627067pt;}
.y2c_c00054{bottom:288.667200pt;}
.y33_c00054{bottom:288.667600pt;}
.y12_c00054{bottom:301.466933pt;}
.y36_c00054{bottom:313.760000pt;}
.y11_c00054{bottom:320.186667pt;}
.y1c_c00054{bottom:359.680000pt;}
.y10_c00054{bottom:716.893733pt;}
.yf_c00054{bottom:735.614000pt;}
.ye_c00054{bottom:754.333733pt;}
.yd_c00054{bottom:772.893600pt;}
.yc_c00054{bottom:791.613867pt;}
.yb_c00054{bottom:810.373733pt;}
.ya_c00054{bottom:828.933600pt;}
.y9_c00054{bottom:847.653067pt;}
.y8_c00054{bottom:866.373333pt;}
.y7_c00054{bottom:892.933733pt;}
.y6_c00054{bottom:911.653467pt;}
.y5_c00054{bottom:930.373733pt;}
.y4_c00054{bottom:948.933600pt;}
.y3_c00054{bottom:967.653333pt;}
.y2_c00054{bottom:994.373333pt;}
.y1_c00054{bottom:1044.160000pt;}
.h5_c00054{height:34.453125pt;}
.h6_c00054{height:38.128125pt;}
.h2_c00054{height:50.628750pt;}
.h3_c00054{height:50.629817pt;}
.h7_c00054{height:53.746875pt;}
.h4_c00054{height:341.600000pt;}
.h1_c00054{height:1122.666667pt;}
.h0_c00054{height:1122.720000pt;}
.w2_c00054{width:604.640000pt;}
.w1_c00054{width:794.000000pt;}
.w0_c00054{width:794.080000pt;}
.x0_c00054{left:0.000000pt;}
.x6_c00054{left:55.200000pt;}
.x4_c00054{left:112.000000pt;}
.x1_c00054{left:113.471867pt;}
.xd_c00054{left:119.066667pt;}
.xc_c00054{left:129.346667pt;}
.x2_c00054{left:132.352133pt;}
.xa_c00054{left:145.253333pt;}
.x8_c00054{left:147.653333pt;}
.x9_c00054{left:151.333547pt;}
.x5_c00054{left:183.386667pt;}
.x3_c00054{left:208.026027pt;}
.x7_c00054{left:549.626667pt;}
.xb_c00054{left:584.506667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8307d12b891130b57c341987.woff2')format("woff");}.ff1_c00055{font-family:ff1_c00055;line-height:1.070312;font-style:normal;font-weight:normal;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_8b0701136755e70ca98120f9.woff2')format("woff");}.ff2_c00055{font-family:ff2_c00055;line-height:0.666504;font-style:normal;font-weight:normal;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_80d845a870e2f4ab46eb345a.woff2')format("woff");}.ff3_c00055{font-family:ff3_c00055;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00055{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00055{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00055{vertical-align:0.000000px;}
.ls9_c00055{letter-spacing:-0.109200px;}
.ls8_c00055{letter-spacing:0.000000px;}
.ls0_c00055{letter-spacing:0.107520px;}
.ls7_c00055{letter-spacing:0.109860px;}
.ls1_c00055{letter-spacing:0.304800px;}
.ls3_c00055{letter-spacing:0.306660px;}
.ls2_c00055{letter-spacing:0.829380px;}
.ls6_c00055{letter-spacing:1.546620px;}
.ls5_c00055{letter-spacing:2.268480px;}
.ls4_c00055{letter-spacing:10.188000px;}
.sc__c00055{text-shadow:none;}
.sc0_c00055{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00055{-webkit-text-stroke:0px transparent;}
.sc0_c00055{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00055{word-spacing:-36.829440px;}
.ws4_c00055{word-spacing:-36.720240px;}
.ws1_c00055{word-spacing:-18.414720px;}
.ws2_c00055{word-spacing:-16.560000px;}
.ws0_c00055{word-spacing:-15.012000px;}
.ws5_c00055{word-spacing:0.000000px;}
._a_c00055{margin-left:-4.835038px;}
._c_c00055{margin-left:-3.177150px;}
._0_c00055{margin-left:-1.194352px;}
._5_c00055{width:1.100909px;}
._13_c00055{width:2.573296px;}
._d_c00055{width:3.876700px;}
._6_c00055{width:4.900771px;}
._14_c00055{width:6.632931px;}
._b_c00055{width:8.609814px;}
._2_c00055{width:10.556730px;}
._3_c00055{width:11.795885px;}
._4_c00055{width:12.850670px;}
._9_c00055{width:14.881863px;}
._12_c00055{width:16.241568px;}
._11_c00055{width:17.353850px;}
._f_c00055{width:26.626190px;}
._10_c00055{width:27.886589px;}
._8_c00055{width:38.486420px;}
._e_c00055{width:79.252176px;}
._7_c00055{width:89.844227px;}
._1_c00055{width:1528.576381px;}
.fc0_c00055{color:rgb(0,0,0);}
.fs1_c00055{font-size:54.000000px;}
.fs0_c00055{font-size:66.240000px;}
.y0_c00055{bottom:0.000000px;}
.y2a_c00055{bottom:188.490300px;}
.y29_c00055{bottom:209.550000px;}
.y28_c00055{bottom:230.429850px;}
.y27_c00055{bottom:251.490150px;}
.y26_c00055{bottom:272.549850px;}
.y25_c00055{bottom:293.429700px;}
.y24_c00055{bottom:314.490000px;}
.y23_c00055{bottom:344.550150px;}
.y22_c00055{bottom:365.430600px;}
.y21_c00055{bottom:386.490900px;}
.y20_c00055{bottom:407.595750px;}
.y1f_c00055{bottom:428.475600px;}
.y1e_c00055{bottom:449.535300px;}
.y1d_c00055{bottom:470.595600px;}
.y1c_c00055{bottom:491.475450px;}
.y1b_c00055{bottom:512.535150px;}
.y1a_c00055{bottom:533.595450px;}
.y19_c00055{bottom:554.475300px;}
.y18_c00055{bottom:575.535000px;}
.y17_c00055{bottom:605.595000px;}
.y16_c00055{bottom:626.474850px;}
.y15_c00055{bottom:647.565150px;}
.y14_c00055{bottom:668.624850px;}
.y13_c00055{bottom:689.504700px;}
.y12_c00055{bottom:710.565000px;}
.y11_c00055{bottom:740.625000px;}
.y10_c00055{bottom:770.505000px;}
.yf_c00055{bottom:800.565000px;}
.ye_c00055{bottom:830.625150px;}
.yd_c00055{bottom:851.505000px;}
.yc_c00055{bottom:881.565450px;}
.yb_c00055{bottom:902.670300px;}
.ya_c00055{bottom:923.550150px;}
.y9_c00055{bottom:944.609850px;}
.y8_c00055{bottom:965.670150px;}
.y7_c00055{bottom:986.550000px;}
.y6_c00055{bottom:1016.610000px;}
.y5_c00055{bottom:1055.670150px;}
.y4_c00055{bottom:1076.550000px;}
.y3_c00055{bottom:1097.609700px;}
.y2_c00055{bottom:1118.670000px;}
.y1_c00055{bottom:1174.680000px;}
.h2_c00055{height:56.957344px;}
.h1_c00055{height:1263.000000px;}
.h0_c00055{height:1263.060000px;}
.w1_c00055{width:893.250000px;}
.w0_c00055{width:893.340000px;}
.x0_c00055{left:0.000000px;}
.x1_c00055{left:127.655850px;}
.x2_c00055{left:148.896150px;}
@media print{
.v0_c00055{vertical-align:0.000000pt;}
.ls9_c00055{letter-spacing:-0.097067pt;}
.ls8_c00055{letter-spacing:0.000000pt;}
.ls0_c00055{letter-spacing:0.095573pt;}
.ls7_c00055{letter-spacing:0.097653pt;}
.ls1_c00055{letter-spacing:0.270933pt;}
.ls3_c00055{letter-spacing:0.272587pt;}
.ls2_c00055{letter-spacing:0.737227pt;}
.ls6_c00055{letter-spacing:1.374773pt;}
.ls5_c00055{letter-spacing:2.016427pt;}
.ls4_c00055{letter-spacing:9.056000pt;}
.ws3_c00055{word-spacing:-32.737280pt;}
.ws4_c00055{word-spacing:-32.640213pt;}
.ws1_c00055{word-spacing:-16.368640pt;}
.ws2_c00055{word-spacing:-14.720000pt;}
.ws0_c00055{word-spacing:-13.344000pt;}
.ws5_c00055{word-spacing:0.000000pt;}
._a_c00055{margin-left:-4.297812pt;}
._c_c00055{margin-left:-2.824133pt;}
._0_c00055{margin-left:-1.061646pt;}
._5_c00055{width:0.978586pt;}
._13_c00055{width:2.287374pt;}
._d_c00055{width:3.445956pt;}
._6_c00055{width:4.356241pt;}
._14_c00055{width:5.895939pt;}
._b_c00055{width:7.653168pt;}
._2_c00055{width:9.383760pt;}
._3_c00055{width:10.485231pt;}
._4_c00055{width:11.422818pt;}
._9_c00055{width:13.228323pt;}
._12_c00055{width:14.436949pt;}
._11_c00055{width:15.425644pt;}
._f_c00055{width:23.667725pt;}
._10_c00055{width:24.788079pt;}
._8_c00055{width:34.210151pt;}
._e_c00055{width:70.446379pt;}
._7_c00055{width:79.861535pt;}
._1_c00055{width:1358.734561pt;}
.fs1_c00055{font-size:48.000000pt;}
.fs0_c00055{font-size:58.880000pt;}
.y0_c00055{bottom:0.000000pt;}
.y2a_c00055{bottom:167.546933pt;}
.y29_c00055{bottom:186.266667pt;}
.y28_c00055{bottom:204.826533pt;}
.y27_c00055{bottom:223.546800pt;}
.y26_c00055{bottom:242.266533pt;}
.y25_c00055{bottom:260.826400pt;}
.y24_c00055{bottom:279.546667pt;}
.y23_c00055{bottom:306.266800pt;}
.y22_c00055{bottom:324.827200pt;}
.y21_c00055{bottom:343.547467pt;}
.y20_c00055{bottom:362.307333pt;}
.y1f_c00055{bottom:380.867200pt;}
.y1e_c00055{bottom:399.586933pt;}
.y1d_c00055{bottom:418.307200pt;}
.y1c_c00055{bottom:436.867067pt;}
.y1b_c00055{bottom:455.586800pt;}
.y1a_c00055{bottom:474.307067pt;}
.y19_c00055{bottom:492.866933pt;}
.y18_c00055{bottom:511.586667pt;}
.y17_c00055{bottom:538.306667pt;}
.y16_c00055{bottom:556.866533pt;}
.y15_c00055{bottom:575.613467pt;}
.y14_c00055{bottom:594.333200pt;}
.y13_c00055{bottom:612.893067pt;}
.y12_c00055{bottom:631.613333pt;}
.y11_c00055{bottom:658.333333pt;}
.y10_c00055{bottom:684.893333pt;}
.yf_c00055{bottom:711.613333pt;}
.ye_c00055{bottom:738.333467pt;}
.yd_c00055{bottom:756.893333pt;}
.yc_c00055{bottom:783.613733pt;}
.yb_c00055{bottom:802.373600pt;}
.ya_c00055{bottom:820.933467pt;}
.y9_c00055{bottom:839.653200pt;}
.y8_c00055{bottom:858.373467pt;}
.y7_c00055{bottom:876.933333pt;}
.y6_c00055{bottom:903.653333pt;}
.y5_c00055{bottom:938.373467pt;}
.y4_c00055{bottom:956.933333pt;}
.y3_c00055{bottom:975.653067pt;}
.y2_c00055{bottom:994.373333pt;}
.y1_c00055{bottom:1044.160000pt;}
.h2_c00055{height:50.628750pt;}
.h1_c00055{height:1122.666667pt;}
.h0_c00055{height:1122.720000pt;}
.w1_c00055{width:794.000000pt;}
.w0_c00055{width:794.080000pt;}
.x0_c00055{left:0.000000pt;}
.x1_c00055{left:113.471867pt;}
.x2_c00055{left:132.352133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9255988b2f04e0f723f13421.woff2')format("woff");}.ff1_c00056{font-family:ff1_c00056;line-height:1.070312;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00056{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00056{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00056{vertical-align:0.000000px;}
.ls6_c00056{letter-spacing:0.000000px;}
.ls1_c00056{letter-spacing:0.107520px;}
.ls5_c00056{letter-spacing:0.304320px;}
.ls3_c00056{letter-spacing:0.304800px;}
.ls2_c00056{letter-spacing:0.306660px;}
.ls0_c00056{letter-spacing:0.307140px;}
.ls4_c00056{letter-spacing:8.029380px;}
.sc__c00056{text-shadow:none;}
.sc0_c00056{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00056{-webkit-text-stroke:0px transparent;}
.sc0_c00056{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00056{word-spacing:-18.414720px;}
.ws1_c00056{word-spacing:-15.012000px;}
.ws2_c00056{word-spacing:0.000000px;}
._c_c00056{margin-left:-5.743432px;}
._b_c00056{margin-left:-3.995401px;}
._e_c00056{margin-left:-2.243169px;}
._0_c00056{margin-left:-1.194352px;}
._6_c00056{width:1.248391px;}
._2_c00056{width:3.251902px;}
._3_c00056{width:4.636840px;}
._4_c00056{width:5.963839px;}
._5_c00056{width:7.152895px;}
._8_c00056{width:8.389560px;}
._9_c00056{width:10.100365px;}
._10_c00056{width:11.882439px;}
._d_c00056{width:15.102721px;}
._7_c00056{width:16.758401px;}
._11_c00056{width:24.841745px;}
._a_c00056{width:31.960379px;}
._f_c00056{width:34.577510px;}
._1_c00056{width:1528.576381px;}
.fc0_c00056{color:rgb(0,0,0);}
.fs1_c00056{font-size:54.000000px;}
.fs0_c00056{font-size:66.240000px;}
.y0_c00056{bottom:0.000000px;}
.y21_c00056{bottom:91.440300px;}
.y20_c00056{bottom:121.499850px;}
.y1f_c00056{bottom:142.596000px;}
.y1e_c00056{bottom:163.470000px;}
.y1d_c00056{bottom:184.529700px;}
.y1c_c00056{bottom:205.590150px;}
.y1b_c00056{bottom:226.470000px;}
.y1a_c00056{bottom:256.530600px;}
.y19_c00056{bottom:277.590900px;}
.y18_c00056{bottom:298.470750px;}
.y17_c00056{bottom:319.530450px;}
.y16_c00056{bottom:340.590750px;}
.y15_c00056{bottom:361.470600px;}
.y14_c00056{bottom:382.530300px;}
.y13_c00056{bottom:403.635150px;}
.y12_c00056{bottom:424.515600px;}
.y11_c00056{bottom:445.575300px;}
.y10_c00056{bottom:466.635000px;}
.yf_c00056{bottom:496.515750px;}
.ye_c00056{bottom:517.575450px;}
.yd_c00056{bottom:538.635150px;}
.yc_c00056{bottom:559.515600px;}
.yb_c00056{bottom:580.575300px;}
.ya_c00056{bottom:601.635000px;}
.y9_c00056{bottom:631.515450px;}
.y8_c00056{bottom:652.605150px;}
.y7_c00056{bottom:673.665450px;}
.y6_c00056{bottom:694.545300px;}
.y5_c00056{bottom:715.605000px;}
.y4_c00056{bottom:745.665000px;}
.y3_c00056{bottom:784.545300px;}
.y2_c00056{bottom:805.605000px;}
.y1_c00056{bottom:1174.680000px;}
.h2_c00056{height:56.957344px;}
.h1_c00056{height:1263.000000px;}
.h0_c00056{height:1263.060000px;}
.w1_c00056{width:893.250000px;}
.w0_c00056{width:893.340000px;}
.x0_c00056{left:0.000000px;}
.x1_c00056{left:127.655850px;}
.x3_c00056{left:148.896150px;}
.x2_c00056{left:234.029250px;}
@media print{
.v0_c00056{vertical-align:0.000000pt;}
.ls6_c00056{letter-spacing:0.000000pt;}
.ls1_c00056{letter-spacing:0.095573pt;}
.ls5_c00056{letter-spacing:0.270507pt;}
.ls3_c00056{letter-spacing:0.270933pt;}
.ls2_c00056{letter-spacing:0.272587pt;}
.ls0_c00056{letter-spacing:0.273013pt;}
.ls4_c00056{letter-spacing:7.137227pt;}
.ws0_c00056{word-spacing:-16.368640pt;}
.ws1_c00056{word-spacing:-13.344000pt;}
.ws2_c00056{word-spacing:0.000000pt;}
._c_c00056{margin-left:-5.105273pt;}
._b_c00056{margin-left:-3.551467pt;}
._e_c00056{margin-left:-1.993928pt;}
._0_c00056{margin-left:-1.061646pt;}
._6_c00056{width:1.109681pt;}
._2_c00056{width:2.890579pt;}
._3_c00056{width:4.121635pt;}
._4_c00056{width:5.301190pt;}
._5_c00056{width:6.358129pt;}
._8_c00056{width:7.457387pt;}
._9_c00056{width:8.978102pt;}
._10_c00056{width:10.562168pt;}
._d_c00056{width:13.424641pt;}
._7_c00056{width:14.896357pt;}
._11_c00056{width:22.081551pt;}
._a_c00056{width:28.409226pt;}
._f_c00056{width:30.735564pt;}
._1_c00056{width:1358.734561pt;}
.fs1_c00056{font-size:48.000000pt;}
.fs0_c00056{font-size:58.880000pt;}
.y0_c00056{bottom:0.000000pt;}
.y21_c00056{bottom:81.280267pt;}
.y20_c00056{bottom:107.999867pt;}
.y1f_c00056{bottom:126.752000pt;}
.y1e_c00056{bottom:145.306667pt;}
.y1d_c00056{bottom:164.026400pt;}
.y1c_c00056{bottom:182.746800pt;}
.y1b_c00056{bottom:201.306667pt;}
.y1a_c00056{bottom:228.027200pt;}
.y19_c00056{bottom:246.747467pt;}
.y18_c00056{bottom:265.307333pt;}
.y17_c00056{bottom:284.027067pt;}
.y16_c00056{bottom:302.747333pt;}
.y15_c00056{bottom:321.307200pt;}
.y14_c00056{bottom:340.026933pt;}
.y13_c00056{bottom:358.786800pt;}
.y12_c00056{bottom:377.347200pt;}
.y11_c00056{bottom:396.066933pt;}
.y10_c00056{bottom:414.786667pt;}
.yf_c00056{bottom:441.347333pt;}
.ye_c00056{bottom:460.067067pt;}
.yd_c00056{bottom:478.786800pt;}
.yc_c00056{bottom:497.347200pt;}
.yb_c00056{bottom:516.066933pt;}
.ya_c00056{bottom:534.786667pt;}
.y9_c00056{bottom:561.347067pt;}
.y8_c00056{bottom:580.093467pt;}
.y7_c00056{bottom:598.813733pt;}
.y6_c00056{bottom:617.373600pt;}
.y5_c00056{bottom:636.093333pt;}
.y4_c00056{bottom:662.813333pt;}
.y3_c00056{bottom:697.373600pt;}
.y2_c00056{bottom:716.093333pt;}
.y1_c00056{bottom:1044.160000pt;}
.h2_c00056{height:50.628750pt;}
.h1_c00056{height:1122.666667pt;}
.h0_c00056{height:1122.720000pt;}
.w1_c00056{width:794.000000pt;}
.w0_c00056{width:794.080000pt;}
.x0_c00056{left:0.000000pt;}
.x1_c00056{left:113.471867pt;}
.x3_c00056{left:132.352133pt;}
.x2_c00056{left:208.026000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5417fa9c02efd2f680c032d0.woff2')format("woff");}.ff1_c00057{font-family:ff1_c00057;line-height:1.070312;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00057{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00057{vertical-align:0.000000px;}
.ls0_c00057{letter-spacing:0.000000px;}
.sc__c00057{text-shadow:none;}
.sc0_c00057{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00057{-webkit-text-stroke:0px transparent;}
.sc0_c00057{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00057{word-spacing:0.000000px;}
._0_c00057{margin-left:-1.194352px;}
._8_c00057{width:1.394176px;}
._2_c00057{width:3.251916px;}
._4_c00057{width:6.560565px;}
._3_c00057{width:8.608619px;}
._6_c00057{width:15.830604px;}
._7_c00057{width:16.845475px;}
._5_c00057{width:25.700421px;}
._1_c00057{width:1528.576381px;}
.fc0_c00057{color:rgb(0,0,0);}
.fs0_c00057{font-size:66.240000px;}
.y0_c00057{bottom:0.000000px;}
.ya_c00057{bottom:120.420000px;}
.y9_c00057{bottom:141.516150px;}
.y8_c00057{bottom:162.570000px;}
.y7_c00057{bottom:192.450000px;}
.y6_c00057{bottom:231.509700px;}
.y5_c00057{bottom:252.570000px;}
.y4_c00057{bottom:654.765000px;}
.y3_c00057{bottom:693.825300px;}
.y2_c00057{bottom:714.885000px;}
.y1_c00057{bottom:1174.680000px;}
.h2_c00057{height:56.957344px;}
.h1_c00057{height:1263.000000px;}
.h0_c00057{height:1263.060000px;}
.w1_c00057{width:893.250000px;}
.w0_c00057{width:893.340000px;}
.x0_c00057{left:0.000000px;}
.x1_c00057{left:127.655850px;}
.x3_c00057{left:148.896150px;}
.x2_c00057{left:234.030750px;}
@media print{
.v0_c00057{vertical-align:0.000000pt;}
.ls0_c00057{letter-spacing:0.000000pt;}
.ws0_c00057{word-spacing:0.000000pt;}
._0_c00057{margin-left:-1.061646pt;}
._8_c00057{width:1.239267pt;}
._2_c00057{width:2.890592pt;}
._4_c00057{width:5.831614pt;}
._3_c00057{width:7.652106pt;}
._6_c00057{width:14.071648pt;}
._7_c00057{width:14.973756pt;}
._5_c00057{width:22.844819pt;}
._1_c00057{width:1358.734561pt;}
.fs0_c00057{font-size:58.880000pt;}
.y0_c00057{bottom:0.000000pt;}
.ya_c00057{bottom:107.040000pt;}
.y9_c00057{bottom:125.792133pt;}
.y8_c00057{bottom:144.506667pt;}
.y7_c00057{bottom:171.066667pt;}
.y6_c00057{bottom:205.786400pt;}
.y5_c00057{bottom:224.506667pt;}
.y4_c00057{bottom:582.013333pt;}
.y3_c00057{bottom:616.733600pt;}
.y2_c00057{bottom:635.453333pt;}
.y1_c00057{bottom:1044.160000pt;}
.h2_c00057{height:50.628750pt;}
.h1_c00057{height:1122.666667pt;}
.h0_c00057{height:1122.720000pt;}
.w1_c00057{width:794.000000pt;}
.w0_c00057{width:794.080000pt;}
.x0_c00057{left:0.000000pt;}
.x1_c00057{left:113.471867pt;}
.x3_c00057{left:132.352133pt;}
.x2_c00057{left:208.027333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_aa1f6be58716cd4c02fd007a.woff2')format("woff");}.ff1_c00058{font-family:ff1_c00058;line-height:1.070312;font-style:normal;font-weight:normal;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_4a8b6532f4df7617a9c0d365.woff2')format("woff");}.ff2_c00058{font-family:ff2_c00058;line-height:0.938965;font-style: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);}
.m1_c00058{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_c00058{vertical-align:0.000000px;}
.ls0_c00058{letter-spacing:0.000000px;}
.sc__c00058{text-shadow:none;}
.sc0_c00058{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00058{-webkit-text-stroke:0px transparent;}
.sc0_c00058{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00058{word-spacing:-36.829440px;}
.ws1_c00058{word-spacing:-15.012000px;}
.ws2_c00058{word-spacing:0.000000px;}
._0_c00058{margin-left:-1.194352px;}
._6_c00058{width:2.232635px;}
._5_c00058{width:3.727775px;}
._7_c00058{width:5.133383px;}
._2_c00058{width:6.624849px;}
._3_c00058{width:7.763235px;}
._4_c00058{width:89.844227px;}
._1_c00058{width:1528.576381px;}
.fc0_c00058{color:rgb(0,0,0);}
.fs1_c00058{font-size:54.000000px;}
.fs0_c00058{font-size:66.240000px;}
.y0_c00058{bottom:0.000000px;}
.yf_c00058{bottom:89.459850px;}
.ye_c00058{bottom:110.520150px;}
.yd_c00058{bottom:860.504850px;}
.yc_c00058{bottom:881.565150px;}
.yb_c00058{bottom:902.670450px;}
.ya_c00058{bottom:923.550300px;}
.y9_c00058{bottom:944.609850px;}
.y8_c00058{bottom:965.670150px;}
.y7_c00058{bottom:986.550000px;}
.y6_c00058{bottom:1016.610000px;}
.y5_c00058{bottom:1055.670150px;}
.y4_c00058{bottom:1076.550000px;}
.y3_c00058{bottom:1097.609700px;}
.y2_c00058{bottom:1118.670000px;}
.y1_c00058{bottom:1174.680000px;}
.h2_c00058{height:56.957344px;}
.h3_c00058{height:56.957944px;}
.h1_c00058{height:1263.000000px;}
.h0_c00058{height:1263.060000px;}
.w1_c00058{width:893.250000px;}
.w0_c00058{width:893.340000px;}
.x0_c00058{left:0.000000px;}
.x1_c00058{left:127.655850px;}
.x2_c00058{left:148.896150px;}
.x3_c00058{left:234.029250px;}
@media print{
.v0_c00058{vertical-align:0.000000pt;}
.ls0_c00058{letter-spacing:0.000000pt;}
.ws0_c00058{word-spacing:-32.737280pt;}
.ws1_c00058{word-spacing:-13.344000pt;}
.ws2_c00058{word-spacing:0.000000pt;}
._0_c00058{margin-left:-1.061646pt;}
._6_c00058{width:1.984565pt;}
._5_c00058{width:3.313578pt;}
._7_c00058{width:4.563007pt;}
._2_c00058{width:5.888755pt;}
._3_c00058{width:6.900654pt;}
._4_c00058{width:79.861535pt;}
._1_c00058{width:1358.734561pt;}
.fs1_c00058{font-size:48.000000pt;}
.fs0_c00058{font-size:58.880000pt;}
.y0_c00058{bottom:0.000000pt;}
.yf_c00058{bottom:79.519867pt;}
.ye_c00058{bottom:98.240133pt;}
.yd_c00058{bottom:764.893200pt;}
.yc_c00058{bottom:783.613467pt;}
.yb_c00058{bottom:802.373733pt;}
.ya_c00058{bottom:820.933600pt;}
.y9_c00058{bottom:839.653200pt;}
.y8_c00058{bottom:858.373467pt;}
.y7_c00058{bottom:876.933333pt;}
.y6_c00058{bottom:903.653333pt;}
.y5_c00058{bottom:938.373467pt;}
.y4_c00058{bottom:956.933333pt;}
.y3_c00058{bottom:975.653067pt;}
.y2_c00058{bottom:994.373333pt;}
.y1_c00058{bottom:1044.160000pt;}
.h2_c00058{height:50.628750pt;}
.h3_c00058{height:50.629283pt;}
.h1_c00058{height:1122.666667pt;}
.h0_c00058{height:1122.720000pt;}
.w1_c00058{width:794.000000pt;}
.w0_c00058{width:794.080000pt;}
.x0_c00058{left:0.000000pt;}
.x1_c00058{left:113.471867pt;}
.x2_c00058{left:132.352133pt;}
.x3_c00058{left:208.026000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4096f403fdfd87dfa3f5b22b.woff2')format("woff");}.ff1_c00059{font-family:ff1_c00059;line-height:1.070312;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00059{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00059{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00059{vertical-align:0.000000px;}
.ls0_c00059{letter-spacing:0.000000px;}
.sc__c00059{text-shadow:none;}
.sc0_c00059{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00059{-webkit-text-stroke:0px transparent;}
.sc0_c00059{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00059{word-spacing:0.000000px;}
._9_c00059{margin-left:-3.619756px;}
._5_c00059{margin-left:-2.577021px;}
._0_c00059{margin-left:-1.194352px;}
._7_c00059{width:1.125484px;}
._a_c00059{width:3.047716px;}
._8_c00059{width:5.044800px;}
._6_c00059{width:6.357861px;}
._4_c00059{width:7.816915px;}
._c_c00059{width:10.999069px;}
._b_c00059{width:12.253738px;}
._e_c00059{width:13.318987px;}
._3_c00059{width:15.302433px;}
._2_c00059{width:16.560464px;}
._f_c00059{width:19.608385px;}
._10_c00059{width:21.196299px;}
._d_c00059{width:26.894094px;}
._1_c00059{width:1528.576381px;}
.fc0_c00059{color:rgb(0,0,0);}
.fs0_c00059{font-size:66.240000px;}
.y0_c00059{bottom:0.000000px;}
.y19_c00059{bottom:162.930150px;}
.y18_c00059{bottom:183.990450px;}
.y17_c00059{bottom:205.050150px;}
.y16_c00059{bottom:225.930000px;}
.y15_c00059{bottom:246.990300px;}
.y14_c00059{bottom:268.050000px;}
.y13_c00059{bottom:297.930000px;}
.y12_c00059{bottom:336.990300px;}
.y11_c00059{bottom:358.050000px;}
.y10_c00059{bottom:797.505000px;}
.yf_c00059{bottom:827.565450px;}
.ye_c00059{bottom:848.625150px;}
.yd_c00059{bottom:869.505000px;}
.yc_c00059{bottom:890.565300px;}
.yb_c00059{bottom:911.670150px;}
.ya_c00059{bottom:932.550000px;}
.y9_c00059{bottom:953.609700px;}
.y8_c00059{bottom:974.670000px;}
.y7_c00059{bottom:1004.550000px;}
.y6_c00059{bottom:1025.609700px;}
.y5_c00059{bottom:1046.670000px;}
.y4_c00059{bottom:1076.550000px;}
.y3_c00059{bottom:1097.609700px;}
.y2_c00059{bottom:1118.670000px;}
.y1_c00059{bottom:1174.680000px;}
.h2_c00059{height:56.957344px;}
.h1_c00059{height:1263.000000px;}
.h0_c00059{height:1263.060000px;}
.w1_c00059{width:893.250000px;}
.w0_c00059{width:893.340000px;}
.x0_c00059{left:0.000000px;}
.x1_c00059{left:127.655850px;}
.x2_c00059{left:148.896150px;}
.x3_c00059{left:234.029250px;}
@media print{
.v0_c00059{vertical-align:0.000000pt;}
.ls0_c00059{letter-spacing:0.000000pt;}
.ws0_c00059{word-spacing:0.000000pt;}
._9_c00059{margin-left:-3.217561pt;}
._5_c00059{margin-left:-2.290685pt;}
._0_c00059{margin-left:-1.061646pt;}
._7_c00059{width:1.000430pt;}
._a_c00059{width:2.709081pt;}
._8_c00059{width:4.484267pt;}
._6_c00059{width:5.651432pt;}
._4_c00059{width:6.948369pt;}
._c_c00059{width:9.776950pt;}
._b_c00059{width:10.892211pt;}
._e_c00059{width:11.839099pt;}
._3_c00059{width:13.602163pt;}
._2_c00059{width:14.720412pt;}
._f_c00059{width:17.429675pt;}
._10_c00059{width:18.841155pt;}
._d_c00059{width:23.905861pt;}
._1_c00059{width:1358.734561pt;}
.fs0_c00059{font-size:58.880000pt;}
.y0_c00059{bottom:0.000000pt;}
.y19_c00059{bottom:144.826800pt;}
.y18_c00059{bottom:163.547067pt;}
.y17_c00059{bottom:182.266800pt;}
.y16_c00059{bottom:200.826667pt;}
.y15_c00059{bottom:219.546933pt;}
.y14_c00059{bottom:238.266667pt;}
.y13_c00059{bottom:264.826667pt;}
.y12_c00059{bottom:299.546933pt;}
.y11_c00059{bottom:318.266667pt;}
.y10_c00059{bottom:708.893333pt;}
.yf_c00059{bottom:735.613733pt;}
.ye_c00059{bottom:754.333467pt;}
.yd_c00059{bottom:772.893333pt;}
.yc_c00059{bottom:791.613600pt;}
.yb_c00059{bottom:810.373467pt;}
.ya_c00059{bottom:828.933333pt;}
.y9_c00059{bottom:847.653067pt;}
.y8_c00059{bottom:866.373333pt;}
.y7_c00059{bottom:892.933333pt;}
.y6_c00059{bottom:911.653067pt;}
.y5_c00059{bottom:930.373333pt;}
.y4_c00059{bottom:956.933333pt;}
.y3_c00059{bottom:975.653067pt;}
.y2_c00059{bottom:994.373333pt;}
.y1_c00059{bottom:1044.160000pt;}
.h2_c00059{height:50.628750pt;}
.h1_c00059{height:1122.666667pt;}
.h0_c00059{height:1122.720000pt;}
.w1_c00059{width:794.000000pt;}
.w0_c00059{width:794.080000pt;}
.x0_c00059{left:0.000000pt;}
.x1_c00059{left:113.471867pt;}
.x2_c00059{left:132.352133pt;}
.x3_c00059{left:208.026000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0e8efe699b5e24677f6e9b67.woff2')format("woff");}.ff1_c00060{font-family:ff1_c00060;line-height:1.070312;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00060{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00060{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00060{vertical-align:0.000000px;}
.ls0_c00060{letter-spacing:0.000000px;}
.sc__c00060{text-shadow:none;}
.sc0_c00060{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00060{-webkit-text-stroke:0px transparent;}
.sc0_c00060{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00060{word-spacing:0.000000px;}
._7_c00060{margin-left:-6.322179px;}
._8_c00060{margin-left:-4.284131px;}
._9_c00060{margin-left:-3.181895px;}
._0_c00060{margin-left:-1.194352px;}
._6_c00060{width:1.392173px;}
._2_c00060{width:3.251916px;}
._5_c00060{width:4.281681px;}
._a_c00060{width:8.121563px;}
._4_c00060{width:9.355863px;}
._3_c00060{width:10.399492px;}
._1_c00060{width:1528.576381px;}
.fc0_c00060{color:rgb(0,0,0);}
.fs0_c00060{font-size:66.240000px;}
.y0_c00060{bottom:0.000000px;}
.y11_c00060{bottom:223.410150px;}
.y10_c00060{bottom:244.290600px;}
.yf_c00060{bottom:265.350300px;}
.ye_c00060{bottom:286.409850px;}
.yd_c00060{bottom:307.290300px;}
.yc_c00060{bottom:328.350000px;}
.yb_c00060{bottom:358.410000px;}
.ya_c00060{bottom:397.334700px;}
.y9_c00060{bottom:418.395000px;}
.y8_c00060{bottom:728.925300px;}
.y7_c00060{bottom:749.984850px;}
.y6_c00060{bottom:770.865300px;}
.y5_c00060{bottom:791.925000px;}
.y4_c00060{bottom:821.985000px;}
.y3_c00060{bottom:860.865300px;}
.y2_c00060{bottom:881.925000px;}
.y1_c00060{bottom:1174.680000px;}
.h2_c00060{height:56.957344px;}
.h3_c00060{height:56.957944px;}
.h1_c00060{height:1263.000000px;}
.h0_c00060{height:1263.060000px;}
.w1_c00060{width:893.250000px;}
.w0_c00060{width:893.340000px;}
.x0_c00060{left:0.000000px;}
.x1_c00060{left:127.655850px;}
.x3_c00060{left:148.896150px;}
.x2_c00060{left:234.029250px;}
@media print{
.v0_c00060{vertical-align:0.000000pt;}
.ls0_c00060{letter-spacing:0.000000pt;}
.ws0_c00060{word-spacing:0.000000pt;}
._7_c00060{margin-left:-5.619714pt;}
._8_c00060{margin-left:-3.808116pt;}
._9_c00060{margin-left:-2.828351pt;}
._0_c00060{margin-left:-1.061646pt;}
._6_c00060{width:1.237487pt;}
._2_c00060{width:2.890592pt;}
._5_c00060{width:3.805939pt;}
._a_c00060{width:7.219167pt;}
._4_c00060{width:8.316323pt;}
._3_c00060{width:9.243993pt;}
._1_c00060{width:1358.734561pt;}
.fs0_c00060{font-size:58.880000pt;}
.y0_c00060{bottom:0.000000pt;}
.y11_c00060{bottom:198.586800pt;}
.y10_c00060{bottom:217.147200pt;}
.yf_c00060{bottom:235.866933pt;}
.ye_c00060{bottom:254.586533pt;}
.yd_c00060{bottom:273.146933pt;}
.yc_c00060{bottom:291.866667pt;}
.yb_c00060{bottom:318.586667pt;}
.ya_c00060{bottom:353.186400pt;}
.y9_c00060{bottom:371.906667pt;}
.y8_c00060{bottom:647.933600pt;}
.y7_c00060{bottom:666.653200pt;}
.y6_c00060{bottom:685.213600pt;}
.y5_c00060{bottom:703.933333pt;}
.y4_c00060{bottom:730.653333pt;}
.y3_c00060{bottom:765.213600pt;}
.y2_c00060{bottom:783.933333pt;}
.y1_c00060{bottom:1044.160000pt;}
.h2_c00060{height:50.628750pt;}
.h3_c00060{height:50.629283pt;}
.h1_c00060{height:1122.666667pt;}
.h0_c00060{height:1122.720000pt;}
.w1_c00060{width:794.000000pt;}
.w0_c00060{width:794.080000pt;}
.x0_c00060{left:0.000000pt;}
.x1_c00060{left:113.471867pt;}
.x3_c00060{left:132.352133pt;}
.x2_c00060{left:208.026000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4946e9702a168a2093d71ea8.woff2')format("woff");}.ff1_c00061{font-family:ff1_c00061;line-height:1.070312;font-style:normal;font-weight:normal;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_fdb273aaca12a5e3ba7dd805.woff2')format("woff");}.ff2_c00061{font-family:ff2_c00061;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00061{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00061{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00061{vertical-align:0.000000px;}
.ls0_c00061{letter-spacing:0.000000px;}
.sc__c00061{text-shadow:none;}
.sc0_c00061{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00061{-webkit-text-stroke:0px transparent;}
.sc0_c00061{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00061{word-spacing:0.000000px;}
._2_c00061{margin-left:-15.195180px;}
._7_c00061{margin-left:-8.594539px;}
._5_c00061{margin-left:-6.505295px;}
._e_c00061{margin-left:-4.701506px;}
._6_c00061{margin-left:-3.292824px;}
._0_c00061{margin-left:-1.194352px;}
._9_c00061{width:1.055785px;}
._c_c00061{width:2.915389px;}
._d_c00061{width:4.988863px;}
._b_c00061{width:8.051220px;}
._a_c00061{width:9.143503px;}
._8_c00061{width:11.194534px;}
._4_c00061{width:13.577818px;}
._3_c00061{width:15.168886px;}
._1_c00061{width:1528.576381px;}
.fc0_c00061{color:rgb(0,0,0);}
.fs0_c00061{font-size:66.240000px;}
.y0_c00061{bottom:0.000000px;}
.y18_c00061{bottom:149.796150px;}
.y17_c00061{bottom:197.850000px;}
.y16_c00061{bottom:245.910000px;}
.y15_c00061{bottom:266.790450px;}
.y14_c00061{bottom:287.850150px;}
.y13_c00061{bottom:308.909850px;}
.y12_c00061{bottom:329.790300px;}
.y11_c00061{bottom:350.850150px;}
.y10_c00061{bottom:371.909850px;}
.yf_c00061{bottom:392.834850px;}
.ye_c00061{bottom:413.895150px;}
.yd_c00061{bottom:434.954850px;}
.yc_c00061{bottom:455.834700px;}
.yb_c00061{bottom:476.895000px;}
.ya_c00061{bottom:506.955000px;}
.y9_c00061{bottom:527.834850px;}
.y8_c00061{bottom:548.895150px;}
.y7_c00061{bottom:569.954850px;}
.y6_c00061{bottom:590.834700px;}
.y5_c00061{bottom:611.895000px;}
.y4_c00061{bottom:641.985000px;}
.y3_c00061{bottom:680.865300px;}
.y2_c00061{bottom:701.925000px;}
.y1_c00061{bottom:1174.680000px;}
.h2_c00061{height:56.957344px;}
.h1_c00061{height:1263.000000px;}
.h0_c00061{height:1263.060000px;}
.w1_c00061{width:893.250000px;}
.w0_c00061{width:893.340000px;}
.x0_c00061{left:0.000000px;}
.x1_c00061{left:127.655850px;}
.x3_c00061{left:148.896150px;}
.x2_c00061{left:234.029850px;}
@media print{
.v0_c00061{vertical-align:0.000000pt;}
.ls0_c00061{letter-spacing:0.000000pt;}
.ws0_c00061{word-spacing:0.000000pt;}
._2_c00061{margin-left:-13.506826pt;}
._7_c00061{margin-left:-7.639590pt;}
._5_c00061{margin-left:-5.782484pt;}
._e_c00061{margin-left:-4.179116pt;}
._6_c00061{margin-left:-2.926954pt;}
._0_c00061{margin-left:-1.061646pt;}
._9_c00061{width:0.938476pt;}
._c_c00061{width:2.591457pt;}
._d_c00061{width:4.434545pt;}
._b_c00061{width:7.156640pt;}
._a_c00061{width:8.127558pt;}
._8_c00061{width:9.950696pt;}
._4_c00061{width:12.069172pt;}
._3_c00061{width:13.483455pt;}
._1_c00061{width:1358.734561pt;}
.fs0_c00061{font-size:58.880000pt;}
.y0_c00061{bottom:0.000000pt;}
.y18_c00061{bottom:133.152133pt;}
.y17_c00061{bottom:175.866667pt;}
.y16_c00061{bottom:218.586667pt;}
.y15_c00061{bottom:237.147067pt;}
.y14_c00061{bottom:255.866800pt;}
.y13_c00061{bottom:274.586533pt;}
.y12_c00061{bottom:293.146933pt;}
.y11_c00061{bottom:311.866800pt;}
.y10_c00061{bottom:330.586533pt;}
.yf_c00061{bottom:349.186533pt;}
.ye_c00061{bottom:367.906800pt;}
.yd_c00061{bottom:386.626533pt;}
.yc_c00061{bottom:405.186400pt;}
.yb_c00061{bottom:423.906667pt;}
.ya_c00061{bottom:450.626667pt;}
.y9_c00061{bottom:469.186533pt;}
.y8_c00061{bottom:487.906800pt;}
.y7_c00061{bottom:506.626533pt;}
.y6_c00061{bottom:525.186400pt;}
.y5_c00061{bottom:543.906667pt;}
.y4_c00061{bottom:570.653333pt;}
.y3_c00061{bottom:605.213600pt;}
.y2_c00061{bottom:623.933333pt;}
.y1_c00061{bottom:1044.160000pt;}
.h2_c00061{height:50.628750pt;}
.h1_c00061{height:1122.666667pt;}
.h0_c00061{height:1122.720000pt;}
.w1_c00061{width:794.000000pt;}
.w0_c00061{width:794.080000pt;}
.x0_c00061{left:0.000000pt;}
.x1_c00061{left:113.471867pt;}
.x3_c00061{left:132.352133pt;}
.x2_c00061{left:208.026533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_be08898d387c50d020ed0fc6.woff2')format("woff");}.ff1_c00062{font-family:ff1_c00062;line-height:1.070312;font-style:normal;font-weight:normal;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_bc7bacd526deb8da2c8d283f.woff2')format("woff");}.ff2_c00062{font-family:ff2_c00062;line-height:0.938965;font-style: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;}
.ls1_c00062{letter-spacing:0.000000px;}
.ls0_c00062{letter-spacing:0.304320px;}
.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:-18.414720px;}
.ws0_c00062{word-spacing:-15.012000px;}
.ws2_c00062{word-spacing:0.000000px;}
._10_c00062{margin-left:-4.573581px;}
._d_c00062{margin-left:-2.253405px;}
._0_c00062{margin-left:-1.194352px;}
._6_c00062{width:1.592362px;}
._2_c00062{width:3.251902px;}
._9_c00062{width:4.658333px;}
._a_c00062{width:5.944190px;}
._f_c00062{width:7.775185px;}
._e_c00062{width:8.853180px;}
._b_c00062{width:10.557245px;}
._c_c00062{width:11.905992px;}
._7_c00062{width:14.572114px;}
._8_c00062{width:15.644908px;}
._4_c00062{width:29.677169px;}
._3_c00062{width:30.870721px;}
._5_c00062{width:89.844227px;}
._1_c00062{width:1528.576381px;}
.fc0_c00062{color:rgb(0,0,0);}
.fs1_c00062{font-size:54.000000px;}
.fs0_c00062{font-size:66.240000px;}
.y0_c00062{bottom:0.000000px;}
.y14_c00062{bottom:89.100150px;}
.y13_c00062{bottom:110.159850px;}
.y12_c00062{bottom:131.220150px;}
.y11_c00062{bottom:161.130450px;}
.y10_c00062{bottom:182.190750px;}
.yf_c00062{bottom:203.250450px;}
.ye_c00062{bottom:224.130300px;}
.yd_c00062{bottom:245.190600px;}
.yc_c00062{bottom:266.250300px;}
.yb_c00062{bottom:287.130150px;}
.ya_c00062{bottom:308.190450px;}
.y9_c00062{bottom:329.250150px;}
.y8_c00062{bottom:350.130000px;}
.y7_c00062{bottom:380.190150px;}
.y6_c00062{bottom:401.295000px;}
.y5_c00062{bottom:431.175000px;}
.y4_c00062{bottom:470.235000px;}
.y3_c00062{bottom:509.115300px;}
.y2_c00062{bottom:530.175000px;}
.y1_c00062{bottom:1174.680000px;}
.h2_c00062{height:56.957344px;}
.h1_c00062{height:1263.000000px;}
.h0_c00062{height:1263.060000px;}
.w1_c00062{width:893.250000px;}
.w0_c00062{width:893.340000px;}
.x0_c00062{left:0.000000px;}
.x1_c00062{left:127.655850px;}
.x3_c00062{left:148.896150px;}
.x2_c00062{left:234.029850px;}
@media print{
.v0_c00062{vertical-align:0.000000pt;}
.ls1_c00062{letter-spacing:0.000000pt;}
.ls0_c00062{letter-spacing:0.270507pt;}
.ws1_c00062{word-spacing:-16.368640pt;}
.ws0_c00062{word-spacing:-13.344000pt;}
.ws2_c00062{word-spacing:0.000000pt;}
._10_c00062{margin-left:-4.065405pt;}
._d_c00062{margin-left:-2.003026pt;}
._0_c00062{margin-left:-1.061646pt;}
._6_c00062{width:1.415433pt;}
._2_c00062{width:2.890579pt;}
._9_c00062{width:4.140740pt;}
._a_c00062{width:5.283725pt;}
._f_c00062{width:6.911275pt;}
._e_c00062{width:7.869494pt;}
._b_c00062{width:9.384218pt;}
._c_c00062{width:10.583104pt;}
._7_c00062{width:12.952990pt;}
._8_c00062{width:13.906585pt;}
._4_c00062{width:26.379706pt;}
._3_c00062{width:27.440641pt;}
._5_c00062{width:79.861535pt;}
._1_c00062{width:1358.734561pt;}
.fs1_c00062{font-size:48.000000pt;}
.fs0_c00062{font-size:58.880000pt;}
.y0_c00062{bottom:0.000000pt;}
.y14_c00062{bottom:79.200133pt;}
.y13_c00062{bottom:97.919867pt;}
.y12_c00062{bottom:116.640133pt;}
.y11_c00062{bottom:143.227067pt;}
.y10_c00062{bottom:161.947333pt;}
.yf_c00062{bottom:180.667067pt;}
.ye_c00062{bottom:199.226933pt;}
.yd_c00062{bottom:217.947200pt;}
.yc_c00062{bottom:236.666933pt;}
.yb_c00062{bottom:255.226800pt;}
.ya_c00062{bottom:273.947067pt;}
.y9_c00062{bottom:292.666800pt;}
.y8_c00062{bottom:311.226667pt;}
.y7_c00062{bottom:337.946800pt;}
.y6_c00062{bottom:356.706667pt;}
.y5_c00062{bottom:383.266667pt;}
.y4_c00062{bottom:417.986667pt;}
.y3_c00062{bottom:452.546933pt;}
.y2_c00062{bottom:471.266667pt;}
.y1_c00062{bottom:1044.160000pt;}
.h2_c00062{height:50.628750pt;}
.h1_c00062{height:1122.666667pt;}
.h0_c00062{height:1122.720000pt;}
.w1_c00062{width:794.000000pt;}
.w0_c00062{width:794.080000pt;}
.x0_c00062{left:0.000000pt;}
.x1_c00062{left:113.471867pt;}
.x3_c00062{left:132.352133pt;}
.x2_c00062{left:208.026533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_57a1b5a890ed8dedb9f14071.woff2')format("woff");}.ff1_c00063{font-family:ff1_c00063;line-height:1.070312;font-style:normal;font-weight:normal;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_0cc57d508086641d97459f57.woff2')format("woff");}.ff2_c00063{font-family:ff2_c00063;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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);}
.m1_c00063{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_c00063{vertical-align:0.000000px;}
.ls1_c00063{letter-spacing:0.000000px;}
.ls0_c00063{letter-spacing:0.237120px;}
.sc__c00063{text-shadow:none;}
.sc0_c00063{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00063{-webkit-text-stroke:0px transparent;}
.sc0_c00063{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00063{word-spacing:-18.414720px;}
.ws1_c00063{word-spacing:-15.012000px;}
.ws2_c00063{word-spacing:0.000000px;}
._9_c00063{margin-left:-3.775170px;}
._5_c00063{margin-left:-2.704694px;}
._0_c00063{margin-left:-1.194352px;}
._4_c00063{width:1.362305px;}
._f_c00063{width:2.773441px;}
._c_c00063{width:4.593935px;}
._a_c00063{width:5.829041px;}
._11_c00063{width:7.544733px;}
._12_c00063{width:8.552214px;}
._7_c00063{width:10.799137px;}
._6_c00063{width:12.454281px;}
._b_c00063{width:14.422544px;}
._3_c00063{width:15.895970px;}
._2_c00063{width:19.939993px;}
._10_c00063{width:21.192996px;}
._e_c00063{width:23.840607px;}
._d_c00063{width:24.905180px;}
._8_c00063{width:62.255920px;}
._1_c00063{width:1528.576381px;}
.fc0_c00063{color:rgb(0,0,0);}
.fs1_c00063{font-size:54.000000px;}
.fs0_c00063{font-size:66.240000px;}
.y0_c00063{bottom:0.000000px;}
.y1b_c00063{bottom:521.535000px;}
.y1a_c00063{bottom:551.595450px;}
.y19_c00063{bottom:572.475300px;}
.y18_c00063{bottom:593.534850px;}
.y17_c00063{bottom:614.595150px;}
.y16_c00063{bottom:635.474700px;}
.y15_c00063{bottom:656.565300px;}
.y14_c00063{bottom:677.625000px;}
.y13_c00063{bottom:707.505000px;}
.y12_c00063{bottom:728.565300px;}
.y11_c00063{bottom:749.625000px;}
.y10_c00063{bottom:779.504700px;}
.yf_c00063{bottom:800.565750px;}
.ye_c00063{bottom:821.625450px;}
.yd_c00063{bottom:842.505300px;}
.yc_c00063{bottom:863.565600px;}
.yb_c00063{bottom:884.625300px;}
.ya_c00063{bottom:905.550300px;}
.y9_c00063{bottom:926.610000px;}
.y8_c00063{bottom:956.670000px;}
.y7_c00063{bottom:1013.550150px;}
.y6_c00063{bottom:1034.609850px;}
.y5_c00063{bottom:1055.670150px;}
.y4_c00063{bottom:1076.550000px;}
.y3_c00063{bottom:1097.609700px;}
.y2_c00063{bottom:1118.670000px;}
.y1_c00063{bottom:1174.680000px;}
.h3_c00063{height:48.224531px;}
.h2_c00063{height:56.957344px;}
.h5_c00063{height:56.957944px;}
.h4_c00063{height:56.958544px;}
.h1_c00063{height:1263.000000px;}
.h0_c00063{height:1263.060000px;}
.w1_c00063{width:893.250000px;}
.w0_c00063{width:893.340000px;}
.x0_c00063{left:0.000000px;}
.x1_c00063{left:127.655850px;}
.x2_c00063{left:148.896150px;}
@media print{
.v0_c00063{vertical-align:0.000000pt;}
.ls1_c00063{letter-spacing:0.000000pt;}
.ls0_c00063{letter-spacing:0.210773pt;}
.ws0_c00063{word-spacing:-16.368640pt;}
.ws1_c00063{word-spacing:-13.344000pt;}
.ws2_c00063{word-spacing:0.000000pt;}
._9_c00063{margin-left:-3.355707pt;}
._5_c00063{margin-left:-2.404173pt;}
._0_c00063{margin-left:-1.061646pt;}
._4_c00063{width:1.210938pt;}
._f_c00063{width:2.465281pt;}
._c_c00063{width:4.083498pt;}
._a_c00063{width:5.181369pt;}
._11_c00063{width:6.706430pt;}
._12_c00063{width:7.601968pt;}
._7_c00063{width:9.599233pt;}
._6_c00063{width:11.070472pt;}
._b_c00063{width:12.820039pt;}
._3_c00063{width:14.129752pt;}
._2_c00063{width:17.724438pt;}
._10_c00063{width:18.838219pt;}
._e_c00063{width:21.191651pt;}
._d_c00063{width:22.137938pt;}
._8_c00063{width:55.338595pt;}
._1_c00063{width:1358.734561pt;}
.fs1_c00063{font-size:48.000000pt;}
.fs0_c00063{font-size:58.880000pt;}
.y0_c00063{bottom:0.000000pt;}
.y1b_c00063{bottom:463.586667pt;}
.y1a_c00063{bottom:490.307067pt;}
.y19_c00063{bottom:508.866933pt;}
.y18_c00063{bottom:527.586533pt;}
.y17_c00063{bottom:546.306800pt;}
.y16_c00063{bottom:564.866400pt;}
.y15_c00063{bottom:583.613600pt;}
.y14_c00063{bottom:602.333333pt;}
.y13_c00063{bottom:628.893333pt;}
.y12_c00063{bottom:647.613600pt;}
.y11_c00063{bottom:666.333333pt;}
.y10_c00063{bottom:692.893067pt;}
.yf_c00063{bottom:711.614000pt;}
.ye_c00063{bottom:730.333733pt;}
.yd_c00063{bottom:748.893600pt;}
.yc_c00063{bottom:767.613867pt;}
.yb_c00063{bottom:786.333600pt;}
.ya_c00063{bottom:804.933600pt;}
.y9_c00063{bottom:823.653333pt;}
.y8_c00063{bottom:850.373333pt;}
.y7_c00063{bottom:900.933467pt;}
.y6_c00063{bottom:919.653200pt;}
.y5_c00063{bottom:938.373467pt;}
.y4_c00063{bottom:956.933333pt;}
.y3_c00063{bottom:975.653067pt;}
.y2_c00063{bottom:994.373333pt;}
.y1_c00063{bottom:1044.160000pt;}
.h3_c00063{height:42.866250pt;}
.h2_c00063{height:50.628750pt;}
.h5_c00063{height:50.629283pt;}
.h4_c00063{height:50.629817pt;}
.h1_c00063{height:1122.666667pt;}
.h0_c00063{height:1122.720000pt;}
.w1_c00063{width:794.000000pt;}
.w0_c00063{width:794.080000pt;}
.x0_c00063{left:0.000000pt;}
.x1_c00063{left:113.471867pt;}
.x2_c00063{left:132.352133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d8065b9c1311af6269a2b98d.woff2')format("woff");}.ff1_c00064{font-family:ff1_c00064;line-height:1.070312;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00064{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00064{vertical-align:0.000000px;}
.ls0_c00064{letter-spacing:0.000000px;}
.sc__c00064{text-shadow:none;}
.sc0_c00064{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00064{-webkit-text-stroke:0px transparent;}
.sc0_c00064{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00064{word-spacing:0.000000px;}
._0_c00064{margin-left:-1.194352px;}
._5_c00064{width:1.140679px;}
._2_c00064{width:3.251902px;}
._3_c00064{width:13.312887px;}
._4_c00064{width:14.443908px;}
._1_c00064{width:1528.576381px;}
.fc0_c00064{color:rgb(0,0,0);}
.fs0_c00064{font-size:66.240000px;}
.y0_c00064{bottom:0.000000px;}
.y3_c00064{bottom:107.459850px;}
.y2_c00064{bottom:128.520150px;}
.y1_c00064{bottom:1174.680000px;}
.h2_c00064{height:56.957344px;}
.h1_c00064{height:1263.000000px;}
.h0_c00064{height:1263.060000px;}
.w1_c00064{width:893.250000px;}
.w0_c00064{width:893.340000px;}
.x0_c00064{left:0.000000px;}
.x1_c00064{left:127.655850px;}
.x2_c00064{left:234.029250px;}
@media print{
.v0_c00064{vertical-align:0.000000pt;}
.ls0_c00064{letter-spacing:0.000000pt;}
.ws0_c00064{word-spacing:0.000000pt;}
._0_c00064{margin-left:-1.061646pt;}
._5_c00064{width:1.013937pt;}
._2_c00064{width:2.890579pt;}
._3_c00064{width:11.833677pt;}
._4_c00064{width:12.839029pt;}
._1_c00064{width:1358.734561pt;}
.fs0_c00064{font-size:58.880000pt;}
.y0_c00064{bottom:0.000000pt;}
.y3_c00064{bottom:95.519867pt;}
.y2_c00064{bottom:114.240133pt;}
.y1_c00064{bottom:1044.160000pt;}
.h2_c00064{height:50.628750pt;}
.h1_c00064{height:1122.666667pt;}
.h0_c00064{height:1122.720000pt;}
.w1_c00064{width:794.000000pt;}
.w0_c00064{width:794.080000pt;}
.x0_c00064{left:0.000000pt;}
.x1_c00064{left:113.471867pt;}
.x2_c00064{left:208.026000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5b6100ec42b8f33a345fd689.woff2')format("woff");}.ff1_c00065{font-family:ff1_c00065;line-height:1.070312;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00065{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00065{vertical-align:0.000000px;}
.ls0_c00065{letter-spacing:0.000000px;}
.sc__c00065{text-shadow:none;}
.sc0_c00065{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00065{-webkit-text-stroke:0px transparent;}
.sc0_c00065{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00065{word-spacing:0.000000px;}
._0_c00065{margin-left:-1.194352px;}
._2_c00065{width:3.251916px;}
._3_c00065{width:5.430863px;}
._4_c00065{width:6.494763px;}
._1_c00065{width:1528.576381px;}
.fc0_c00065{color:rgb(0,0,0);}
.fs0_c00065{font-size:66.240000px;}
.y0_c00065{bottom:0.000000px;}
.y4_c00065{bottom:167.430000px;}
.y3_c00065{bottom:206.490300px;}
.y2_c00065{bottom:227.550000px;}
.y1_c00065{bottom:1174.680000px;}
.h2_c00065{height:56.957344px;}
.h1_c00065{height:1263.000000px;}
.h0_c00065{height:1263.060000px;}
.w1_c00065{width:893.250000px;}
.w0_c00065{width:893.340000px;}
.x0_c00065{left:0.000000px;}
.x1_c00065{left:127.655850px;}
.x3_c00065{left:148.896150px;}
.x2_c00065{left:234.029850px;}
@media print{
.v0_c00065{vertical-align:0.000000pt;}
.ls0_c00065{letter-spacing:0.000000pt;}
.ws0_c00065{word-spacing:0.000000pt;}
._0_c00065{margin-left:-1.061646pt;}
._2_c00065{width:2.890592pt;}
._3_c00065{width:4.827434pt;}
._4_c00065{width:5.773123pt;}
._1_c00065{width:1358.734561pt;}
.fs0_c00065{font-size:58.880000pt;}
.y0_c00065{bottom:0.000000pt;}
.y4_c00065{bottom:148.826667pt;}
.y3_c00065{bottom:183.546933pt;}
.y2_c00065{bottom:202.266667pt;}
.y1_c00065{bottom:1044.160000pt;}
.h2_c00065{height:50.628750pt;}
.h1_c00065{height:1122.666667pt;}
.h0_c00065{height:1122.720000pt;}
.w1_c00065{width:794.000000pt;}
.w0_c00065{width:794.080000pt;}
.x0_c00065{left:0.000000pt;}
.x1_c00065{left:113.471867pt;}
.x3_c00065{left:132.352133pt;}
.x2_c00065{left:208.026533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_498f0b3855db0535e56be3e3.woff2')format("woff");}.ff1_c00066{font-family:ff1_c00066;line-height:1.070312;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00066{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00066{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00066{vertical-align:0.000000px;}
.ls6_c00066{letter-spacing:0.000000px;}
.ls3_c00066{letter-spacing:0.125520px;}
.ls4_c00066{letter-spacing:0.261120px;}
.ls2_c00066{letter-spacing:0.306660px;}
.ls0_c00066{letter-spacing:0.307140px;}
.ls5_c00066{letter-spacing:7.307520px;}
.ls1_c00066{letter-spacing:20.988000px;}
.sc__c00066{text-shadow:none;}
.sc0_c00066{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00066{-webkit-text-stroke:0px transparent;}
.sc0_c00066{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00066{word-spacing:-18.414720px;}
.ws1_c00066{word-spacing:-15.012000px;}
.ws2_c00066{word-spacing:0.000000px;}
._8_c00066{margin-left:-3.577733px;}
._4_c00066{margin-left:-2.383623px;}
._0_c00066{margin-left:-1.194352px;}
._5_c00066{width:1.456523px;}
._f_c00066{width:3.577602px;}
._10_c00066{width:4.653631px;}
._3_c00066{width:6.656217px;}
._c_c00066{width:8.018311px;}
._9_c00066{width:9.207913px;}
._a_c00066{width:10.532487px;}
._b_c00066{width:12.056214px;}
._d_c00066{width:14.572114px;}
._e_c00066{width:15.975756px;}
._6_c00066{width:21.064296px;}
._7_c00066{width:22.323529px;}
._12_c00066{width:26.827054px;}
._11_c00066{width:28.547492px;}
._2_c00066{width:89.844227px;}
._13_c00066{width:845.739072px;}
._1_c00066{width:1528.576381px;}
.fc0_c00066{color:rgb(0,0,0);}
.fs1_c00066{font-size:54.000000px;}
.fs0_c00066{font-size:66.240000px;}
.y0_c00066{bottom:0.000000px;}
.y2a_c00066{bottom:197.490000px;}
.y29_c00066{bottom:218.550300px;}
.y28_c00066{bottom:239.430150px;}
.y27_c00066{bottom:260.490450px;}
.y26_c00066{bottom:281.550150px;}
.y25_c00066{bottom:302.430000px;}
.y24_c00066{bottom:332.490300px;}
.y23_c00066{bottom:353.550300px;}
.y22_c00066{bottom:374.430150px;}
.y21_c00066{bottom:395.535000px;}
.y20_c00066{bottom:425.595450px;}
.y1f_c00066{bottom:446.475300px;}
.y1e_c00066{bottom:467.535000px;}
.y1d_c00066{bottom:497.595450px;}
.y1c_c00066{bottom:518.475300px;}
.y1b_c00066{bottom:539.535000px;}
.y1a_c00066{bottom:569.594550px;}
.y19_c00066{bottom:590.474400px;}
.y18_c00066{bottom:611.534700px;}
.y17_c00066{bottom:632.595000px;}
.y16_c00066{bottom:653.504700px;}
.y15_c00066{bottom:674.565000px;}
.y14_c00066{bottom:704.625750px;}
.y13_c00066{bottom:725.505600px;}
.y12_c00066{bottom:746.565900px;}
.y11_c00066{bottom:767.625600px;}
.y10_c00066{bottom:788.505450px;}
.yf_c00066{bottom:809.565750px;}
.ye_c00066{bottom:830.625450px;}
.yd_c00066{bottom:851.505300px;}
.yc_c00066{bottom:872.565600px;}
.yb_c00066{bottom:893.670450px;}
.ya_c00066{bottom:914.550300px;}
.y9_c00066{bottom:935.610000px;}
.y8_c00066{bottom:965.670000px;}
.y7_c00066{bottom:995.550000px;}
.y6_c00066{bottom:1025.610150px;}
.y5_c00066{bottom:1046.670450px;}
.y4_c00066{bottom:1067.550300px;}
.y3_c00066{bottom:1088.610000px;}
.y2_c00066{bottom:1118.670000px;}
.y1_c00066{bottom:1174.680000px;}
.h2_c00066{height:56.957344px;}
.h1_c00066{height:1263.000000px;}
.h0_c00066{height:1263.060000px;}
.w1_c00066{width:893.250000px;}
.w0_c00066{width:893.340000px;}
.x0_c00066{left:0.000000px;}
.x1_c00066{left:127.655850px;}
.x2_c00066{left:148.888050px;}
@media print{
.v0_c00066{vertical-align:0.000000pt;}
.ls6_c00066{letter-spacing:0.000000pt;}
.ls3_c00066{letter-spacing:0.111573pt;}
.ls4_c00066{letter-spacing:0.232107pt;}
.ls2_c00066{letter-spacing:0.272587pt;}
.ls0_c00066{letter-spacing:0.273013pt;}
.ls5_c00066{letter-spacing:6.495573pt;}
.ls1_c00066{letter-spacing:18.656000pt;}
.ws0_c00066{word-spacing:-16.368640pt;}
.ws1_c00066{word-spacing:-13.344000pt;}
.ws2_c00066{word-spacing:0.000000pt;}
._8_c00066{margin-left:-3.180207pt;}
._4_c00066{margin-left:-2.118776pt;}
._0_c00066{margin-left:-1.061646pt;}
._5_c00066{width:1.294687pt;}
._f_c00066{width:3.180091pt;}
._10_c00066{width:4.136561pt;}
._3_c00066{width:5.916637pt;}
._c_c00066{width:7.127387pt;}
._9_c00066{width:8.184812pt;}
._a_c00066{width:9.362211pt;}
._b_c00066{width:10.716635pt;}
._d_c00066{width:12.952990pt;}
._e_c00066{width:14.200672pt;}
._6_c00066{width:18.723819pt;}
._7_c00066{width:19.843137pt;}
._12_c00066{width:23.846270pt;}
._11_c00066{width:25.375548pt;}
._2_c00066{width:79.861535pt;}
._13_c00066{width:751.768064pt;}
._1_c00066{width:1358.734561pt;}
.fs1_c00066{font-size:48.000000pt;}
.fs0_c00066{font-size:58.880000pt;}
.y0_c00066{bottom:0.000000pt;}
.y2a_c00066{bottom:175.546667pt;}
.y29_c00066{bottom:194.266933pt;}
.y28_c00066{bottom:212.826800pt;}
.y27_c00066{bottom:231.547067pt;}
.y26_c00066{bottom:250.266800pt;}
.y25_c00066{bottom:268.826667pt;}
.y24_c00066{bottom:295.546933pt;}
.y23_c00066{bottom:314.266933pt;}
.y22_c00066{bottom:332.826800pt;}
.y21_c00066{bottom:351.586667pt;}
.y20_c00066{bottom:378.307067pt;}
.y1f_c00066{bottom:396.866933pt;}
.y1e_c00066{bottom:415.586667pt;}
.y1d_c00066{bottom:442.307067pt;}
.y1c_c00066{bottom:460.866933pt;}
.y1b_c00066{bottom:479.586667pt;}
.y1a_c00066{bottom:506.306267pt;}
.y19_c00066{bottom:524.866133pt;}
.y18_c00066{bottom:543.586400pt;}
.y17_c00066{bottom:562.306667pt;}
.y16_c00066{bottom:580.893067pt;}
.y15_c00066{bottom:599.613333pt;}
.y14_c00066{bottom:626.334000pt;}
.y13_c00066{bottom:644.893867pt;}
.y12_c00066{bottom:663.614133pt;}
.y11_c00066{bottom:682.333867pt;}
.y10_c00066{bottom:700.893733pt;}
.yf_c00066{bottom:719.614000pt;}
.ye_c00066{bottom:738.333733pt;}
.yd_c00066{bottom:756.893600pt;}
.yc_c00066{bottom:775.613867pt;}
.yb_c00066{bottom:794.373733pt;}
.ya_c00066{bottom:812.933600pt;}
.y9_c00066{bottom:831.653333pt;}
.y8_c00066{bottom:858.373333pt;}
.y7_c00066{bottom:884.933333pt;}
.y6_c00066{bottom:911.653467pt;}
.y5_c00066{bottom:930.373733pt;}
.y4_c00066{bottom:948.933600pt;}
.y3_c00066{bottom:967.653333pt;}
.y2_c00066{bottom:994.373333pt;}
.y1_c00066{bottom:1044.160000pt;}
.h2_c00066{height:50.628750pt;}
.h1_c00066{height:1122.666667pt;}
.h0_c00066{height:1122.720000pt;}
.w1_c00066{width:794.000000pt;}
.w0_c00066{width:794.080000pt;}
.x0_c00066{left:0.000000pt;}
.x1_c00066{left:113.471867pt;}
.x2_c00066{left:132.344933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4a2d1b2043c200509d998a0c.woff2')format("woff");}.ff1_c00067{font-family:ff1_c00067;line-height:1.070312;font-style:normal;font-weight:normal;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_8b0701136755e70ca98120f9.woff2')format("woff");}.ff2_c00067{font-family:ff2_c00067;line-height:0.666504;font-style:normal;font-weight:normal;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_2c661173fbe578d4a1a8299a.woff2')format("woff");}.ff3_c00067{font-family:ff3_c00067;line-height:0.938965;font-style: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;}
.ls2_c00067{letter-spacing:0.000000px;}
.ls1_c00067{letter-spacing:0.109860px;}
.ls0_c00067{letter-spacing:0.261600px;}
.sc__c00067{text-shadow:none;}
.sc0_c00067{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00067{-webkit-text-stroke:0px transparent;}
.sc0_c00067{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00067{word-spacing:-36.829440px;}
.ws3_c00067{word-spacing:-18.414720px;}
.ws0_c00067{word-spacing:-16.560000px;}
.ws2_c00067{word-spacing:-15.012000px;}
.ws4_c00067{word-spacing:0.000000px;}
._6_c00067{margin-left:-2.584298px;}
._0_c00067{margin-left:-1.194352px;}
._5_c00067{width:1.108758px;}
._4_c00067{width:2.121325px;}
._2_c00067{width:3.251902px;}
._3_c00067{width:15.567327px;}
._7_c00067{width:79.252176px;}
._1_c00067{width:1528.576381px;}
.fc0_c00067{color:rgb(0,0,0);}
.fs1_c00067{font-size:54.000000px;}
.fs0_c00067{font-size:66.240000px;}
.y0_c00067{bottom:0.000000px;}
.y16_c00067{bottom:11.265000px;}
.y14_c00067{bottom:11.625000px;}
.y12_c00067{bottom:102.600000px;}
.y11_c00067{bottom:123.659700px;}
.y10_c00067{bottom:144.755850px;}
.yf_c00067{bottom:174.630000px;}
.ye_c00067{bottom:195.690300px;}
.yd_c00067{bottom:216.750000px;}
.yc_c00067{bottom:246.629700px;}
.yb_c00067{bottom:267.690000px;}
.ya_c00067{bottom:297.750150px;}
.y9_c00067{bottom:318.630000px;}
.y8_c00067{bottom:348.690300px;}
.y7_c00067{bottom:369.750000px;}
.y6_c00067{bottom:390.675000px;}
.y5_c00067{bottom:420.735000px;}
.y4_c00067{bottom:459.615600px;}
.y3_c00067{bottom:480.675300px;}
.y2_c00067{bottom:501.735000px;}
.y15_c00067{bottom:662.760000px;}
.y13_c00067{bottom:792.180000px;}
.y1_c00067{bottom:1174.680000px;}
.h5_c00067{height:37.440300px;}
.h3_c00067{height:37.620150px;}
.h4_c00067{height:46.432617px;}
.h2_c00067{height:56.957344px;}
.h1_c00067{height:1263.000000px;}
.h0_c00067{height:1263.060000px;}
.w3_c00067{width:141.660300px;}
.w2_c00067{width:336.780000px;}
.w1_c00067{width:893.250000px;}
.w0_c00067{width:893.340000px;}
.x0_c00067{left:0.000000px;}
.x6_c00067{left:11.055000px;}
.x1_c00067{left:127.655850px;}
.x3_c00067{left:148.896150px;}
.x4_c00067{left:159.690165px;}
.x7_c00067{left:196.380000px;}
.x2_c00067{left:234.029250px;}
.x5_c00067{left:370.800000px;}
@media print{
.v0_c00067{vertical-align:0.000000pt;}
.ls2_c00067{letter-spacing:0.000000pt;}
.ls1_c00067{letter-spacing:0.097653pt;}
.ls0_c00067{letter-spacing:0.232533pt;}
.ws1_c00067{word-spacing:-32.737280pt;}
.ws3_c00067{word-spacing:-16.368640pt;}
.ws0_c00067{word-spacing:-14.720000pt;}
.ws2_c00067{word-spacing:-13.344000pt;}
.ws4_c00067{word-spacing:0.000000pt;}
._6_c00067{margin-left:-2.297154pt;}
._0_c00067{margin-left:-1.061646pt;}
._5_c00067{width:0.985563pt;}
._4_c00067{width:1.885623pt;}
._2_c00067{width:2.890579pt;}
._3_c00067{width:13.837624pt;}
._7_c00067{width:70.446379pt;}
._1_c00067{width:1358.734561pt;}
.fs1_c00067{font-size:48.000000pt;}
.fs0_c00067{font-size:58.880000pt;}
.y0_c00067{bottom:0.000000pt;}
.y16_c00067{bottom:10.013333pt;}
.y14_c00067{bottom:10.333333pt;}
.y12_c00067{bottom:91.200000pt;}
.y11_c00067{bottom:109.919733pt;}
.y10_c00067{bottom:128.671867pt;}
.yf_c00067{bottom:155.226667pt;}
.ye_c00067{bottom:173.946933pt;}
.yd_c00067{bottom:192.666667pt;}
.yc_c00067{bottom:219.226400pt;}
.yb_c00067{bottom:237.946667pt;}
.ya_c00067{bottom:264.666800pt;}
.y9_c00067{bottom:283.226667pt;}
.y8_c00067{bottom:309.946933pt;}
.y7_c00067{bottom:328.666667pt;}
.y6_c00067{bottom:347.266667pt;}
.y5_c00067{bottom:373.986667pt;}
.y4_c00067{bottom:408.547200pt;}
.y3_c00067{bottom:427.266933pt;}
.y2_c00067{bottom:445.986667pt;}
.y15_c00067{bottom:589.120000pt;}
.y13_c00067{bottom:704.160000pt;}
.y1_c00067{bottom:1044.160000pt;}
.h5_c00067{height:33.280267pt;}
.h3_c00067{height:33.440133pt;}
.h4_c00067{height:41.273438pt;}
.h2_c00067{height:50.628750pt;}
.h1_c00067{height:1122.666667pt;}
.h0_c00067{height:1122.720000pt;}
.w3_c00067{width:125.920267pt;}
.w2_c00067{width:299.360000pt;}
.w1_c00067{width:794.000000pt;}
.w0_c00067{width:794.080000pt;}
.x0_c00067{left:0.000000pt;}
.x6_c00067{left:9.826667pt;}
.x1_c00067{left:113.471867pt;}
.x3_c00067{left:132.352133pt;}
.x4_c00067{left:141.946813pt;}
.x7_c00067{left:174.560000pt;}
.x2_c00067{left:208.026000pt;}
.x5_c00067{left:329.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_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_f98cefd746520c0b0c71a38c.woff2')format("woff");}.ff1_c00068{font-family:ff1_c00068;line-height:1.070312;font-style:normal;font-weight:normal;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_8b0701136755e70ca98120f9.woff2')format("woff");}.ff2_c00068{font-family:ff2_c00068;line-height:0.666504;font-style:normal;font-weight:normal;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_0f1ba9dbefce4231cd885e11.woff2')format("woff");}.ff3_c00068{font-family:ff3_c00068;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00068;src:url('chunks/assets/font_ccfae26782d71e301882c850.woff2')format("woff");}.ff4_c00068{font-family:ff4_c00068;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00068;src:url('chunks/assets/font_de2f1c77bd0c2a0a78c2fda3.woff2')format("woff");}.ff5_c00068{font-family:ff5_c00068;line-height:0.938965;font-style: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);}
.v2_c00068{vertical-align:-5.758596px;}
.v0_c00068{vertical-align:0.000000px;}
.v1_c00068{vertical-align:23.758620px;}
.ls6_c00068{letter-spacing:0.000000px;}
.ls2_c00068{letter-spacing:0.107520px;}
.ls1_c00068{letter-spacing:0.261600px;}
.ls3_c00068{letter-spacing:0.304800px;}
.ls5_c00068{letter-spacing:0.306660px;}
.ls4_c00068{letter-spacing:14.507520px;}
.ls0_c00068{letter-spacing:69.426480px;}
.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:-39.744000px;}
.ws3_c00068{word-spacing:-18.414720px;}
.ws0_c00068{word-spacing:-16.560000px;}
.ws4_c00068{word-spacing:-15.012000px;}
.ws1_c00068{word-spacing:-11.609280px;}
.ws5_c00068{word-spacing:0.000000px;}
._12_c00068{margin-left:-2.212862px;}
._0_c00068{margin-left:-1.194352px;}
._5_c00068{width:1.028191px;}
._4_c00068{width:2.103227px;}
._3_c00068{width:3.251749px;}
._d_c00068{width:5.765272px;}
._8_c00068{width:9.173141px;}
._11_c00068{width:11.029957px;}
._7_c00068{width:13.813173px;}
._6_c00068{width:15.595812px;}
._10_c00068{width:20.072069px;}
._9_c00068{width:21.596325px;}
._a_c00068{width:22.843225px;}
._e_c00068{width:35.243944px;}
._f_c00068{width:36.524751px;}
._b_c00068{width:64.385328px;}
._c_c00068{width:65.413755px;}
._2_c00068{width:79.252176px;}
._1_c00068{width:1528.576381px;}
.fc0_c00068{color:rgb(0,0,0);}
.fs1_c00068{font-size:41.760000px;}
.fs2_c00068{font-size:54.000000px;}
.fs0_c00068{font-size:66.240000px;}
.y0_c00068{bottom:0.000000px;}
.y2a_c00068{bottom:107.459550px;}
.y29_c00068{bottom:128.519850px;}
.y28_c00068{bottom:149.435550px;}
.y27_c00068{bottom:170.490000px;}
.y26_c00068{bottom:191.550300px;}
.y25_c00068{bottom:212.430150px;}
.y24_c00068{bottom:233.490450px;}
.y23_c00068{bottom:254.550150px;}
.y22_c00068{bottom:275.430000px;}
.y21_c00068{bottom:305.490150px;}
.y20_c00068{bottom:326.549850px;}
.y1f_c00068{bottom:347.429700px;}
.y1e_c00068{bottom:368.490000px;}
.y1d_c00068{bottom:398.595000px;}
.y1c_c00068{bottom:428.475000px;}
.y1b_c00068{bottom:458.535000px;}
.y1a_c00068{bottom:488.595000px;}
.y19_c00068{bottom:518.475000px;}
.y18_c00068{bottom:548.535000px;}
.y17_c00068{bottom:578.595000px;}
.y16_c00068{bottom:608.475000px;}
.y15_c00068{bottom:638.535000px;}
.y14_c00068{bottom:668.625150px;}
.y13_c00068{bottom:689.505000px;}
.y12_c00068{bottom:719.565300px;}
.y11_c00068{bottom:740.625000px;}
.y10_c00068{bottom:770.505000px;}
.yf_c00068{bottom:800.565450px;}
.ye_c00068{bottom:821.625150px;}
.yd_c00068{bottom:842.505000px;}
.yc_c00068{bottom:863.565300px;}
.yb_c00068{bottom:884.625000px;}
.ya_c00068{bottom:905.550000px;}
.y9_c00068{bottom:935.609700px;}
.y8_c00068{bottom:956.670000px;}
.y7_c00068{bottom:986.550000px;}
.y6_c00068{bottom:1016.610000px;}
.y5_c00068{bottom:1046.670450px;}
.y4_c00068{bottom:1067.550300px;}
.y3_c00068{bottom:1088.610000px;}
.y2_c00068{bottom:1118.670000px;}
.y1_c00068{bottom:1174.680000px;}
.h2_c00068{height:56.957344px;}
.h3_c00068{height:59.666511px;}
.h4_c00068{height:59.668851px;}
.h1_c00068{height:1263.000000px;}
.h0_c00068{height:1263.060000px;}
.w1_c00068{width:893.250000px;}
.w0_c00068{width:893.340000px;}
.x0_c00068{left:0.000000px;}
.x1_c00068{left:127.655850px;}
.x4_c00068{left:148.896150px;}
.x2_c00068{left:159.690150px;}
.x3_c00068{left:191.370645px;}
@media print{
.v2_c00068{vertical-align:-5.118752pt;}
.v0_c00068{vertical-align:0.000000pt;}
.v1_c00068{vertical-align:21.118773pt;}
.ls6_c00068{letter-spacing:0.000000pt;}
.ls2_c00068{letter-spacing:0.095573pt;}
.ls1_c00068{letter-spacing:0.232533pt;}
.ls3_c00068{letter-spacing:0.270933pt;}
.ls5_c00068{letter-spacing:0.272587pt;}
.ls4_c00068{letter-spacing:12.895573pt;}
.ls0_c00068{letter-spacing:61.712427pt;}
.ws2_c00068{word-spacing:-35.328000pt;}
.ws3_c00068{word-spacing:-16.368640pt;}
.ws0_c00068{word-spacing:-14.720000pt;}
.ws4_c00068{word-spacing:-13.344000pt;}
.ws1_c00068{word-spacing:-10.319360pt;}
.ws5_c00068{word-spacing:0.000000pt;}
._12_c00068{margin-left:-1.966988pt;}
._0_c00068{margin-left:-1.061646pt;}
._5_c00068{width:0.913947pt;}
._4_c00068{width:1.869535pt;}
._3_c00068{width:2.890444pt;}
._d_c00068{width:5.124686pt;}
._8_c00068{width:8.153903pt;}
._11_c00068{width:9.804406pt;}
._7_c00068{width:12.278376pt;}
._6_c00068{width:13.862944pt;}
._10_c00068{width:17.841839pt;}
._9_c00068{width:19.196733pt;}
._a_c00068{width:20.305089pt;}
._e_c00068{width:31.327950pt;}
._f_c00068{width:32.466446pt;}
._b_c00068{width:57.231403pt;}
._c_c00068{width:58.145560pt;}
._2_c00068{width:70.446379pt;}
._1_c00068{width:1358.734561pt;}
.fs1_c00068{font-size:37.120000pt;}
.fs2_c00068{font-size:48.000000pt;}
.fs0_c00068{font-size:58.880000pt;}
.y0_c00068{bottom:0.000000pt;}
.y2a_c00068{bottom:95.519600pt;}
.y29_c00068{bottom:114.239867pt;}
.y28_c00068{bottom:132.831600pt;}
.y27_c00068{bottom:151.546667pt;}
.y26_c00068{bottom:170.266933pt;}
.y25_c00068{bottom:188.826800pt;}
.y24_c00068{bottom:207.547067pt;}
.y23_c00068{bottom:226.266800pt;}
.y22_c00068{bottom:244.826667pt;}
.y21_c00068{bottom:271.546800pt;}
.y20_c00068{bottom:290.266533pt;}
.y1f_c00068{bottom:308.826400pt;}
.y1e_c00068{bottom:327.546667pt;}
.y1d_c00068{bottom:354.306667pt;}
.y1c_c00068{bottom:380.866667pt;}
.y1b_c00068{bottom:407.586667pt;}
.y1a_c00068{bottom:434.306667pt;}
.y19_c00068{bottom:460.866667pt;}
.y18_c00068{bottom:487.586667pt;}
.y17_c00068{bottom:514.306667pt;}
.y16_c00068{bottom:540.866667pt;}
.y15_c00068{bottom:567.586667pt;}
.y14_c00068{bottom:594.333467pt;}
.y13_c00068{bottom:612.893333pt;}
.y12_c00068{bottom:639.613600pt;}
.y11_c00068{bottom:658.333333pt;}
.y10_c00068{bottom:684.893333pt;}
.yf_c00068{bottom:711.613733pt;}
.ye_c00068{bottom:730.333467pt;}
.yd_c00068{bottom:748.893333pt;}
.yc_c00068{bottom:767.613600pt;}
.yb_c00068{bottom:786.333333pt;}
.ya_c00068{bottom:804.933333pt;}
.y9_c00068{bottom:831.653067pt;}
.y8_c00068{bottom:850.373333pt;}
.y7_c00068{bottom:876.933333pt;}
.y6_c00068{bottom:903.653333pt;}
.y5_c00068{bottom:930.373733pt;}
.y4_c00068{bottom:948.933600pt;}
.y3_c00068{bottom:967.653333pt;}
.y2_c00068{bottom:994.373333pt;}
.y1_c00068{bottom:1044.160000pt;}
.h2_c00068{height:50.628750pt;}
.h3_c00068{height:53.036898pt;}
.h4_c00068{height:53.038978pt;}
.h1_c00068{height:1122.666667pt;}
.h0_c00068{height:1122.720000pt;}
.w1_c00068{width:794.000000pt;}
.w0_c00068{width:794.080000pt;}
.x0_c00068{left:0.000000pt;}
.x1_c00068{left:113.471867pt;}
.x4_c00068{left:132.352133pt;}
.x2_c00068{left:141.946800pt;}
.x3_c00068{left:170.107240pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d59e92a490f0ad23212175f8.woff2')format("woff");}.ff1_c00069{font-family:ff1_c00069;line-height:1.070312;font-style: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);}
.m1_c00069{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_c00069{vertical-align:0.000000px;}
.ls5_c00069{letter-spacing:0.000000px;}
.ls1_c00069{letter-spacing:0.304800px;}
.ls3_c00069{letter-spacing:0.306660px;}
.ls0_c00069{letter-spacing:0.456960px;}
.ls2_c00069{letter-spacing:14.507520px;}
.ls4_c00069{letter-spacing:15.227040px;}
.sc__c00069{text-shadow:none;}
.sc0_c00069{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00069{-webkit-text-stroke:0px transparent;}
.sc0_c00069{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00069{word-spacing:-18.414720px;}
.ws1_c00069{word-spacing:-15.012000px;}
.ws2_c00069{word-spacing:0.000000px;}
._f_c00069{margin-left:-3.448444px;}
._7_c00069{margin-left:-2.214543px;}
._0_c00069{margin-left:-1.194352px;}
._4_c00069{width:1.591897px;}
._13_c00069{width:2.749179px;}
._3_c00069{width:3.872579px;}
._2_c00069{width:5.293139px;}
._a_c00069{width:6.629061px;}
._b_c00069{width:9.174704px;}
._c_c00069{width:10.551511px;}
._d_c00069{width:11.559368px;}
._14_c00069{width:12.584381px;}
._12_c00069{width:13.865202px;}
._10_c00069{width:15.595805px;}
._11_c00069{width:17.012480px;}
._15_c00069{width:19.455598px;}
._8_c00069{width:21.507301px;}
._9_c00069{width:23.493536px;}
._e_c00069{width:26.498140px;}
._6_c00069{width:27.720875px;}
._5_c00069{width:28.916045px;}
._1_c00069{width:1528.576381px;}
.fc0_c00069{color:rgb(0,0,0);}
.fs1_c00069{font-size:54.000000px;}
.fs0_c00069{font-size:66.240000px;}
.y0_c00069{bottom:0.000000px;}
.y2a_c00069{bottom:215.490300px;}
.y29_c00069{bottom:236.550000px;}
.y28_c00069{bottom:257.429850px;}
.y27_c00069{bottom:278.490150px;}
.y26_c00069{bottom:299.549850px;}
.y25_c00069{bottom:320.429700px;}
.y24_c00069{bottom:341.490000px;}
.y23_c00069{bottom:371.550300px;}
.y22_c00069{bottom:392.475300px;}
.y21_c00069{bottom:413.535000px;}
.y20_c00069{bottom:434.595300px;}
.y1f_c00069{bottom:455.475150px;}
.y1e_c00069{bottom:476.534850px;}
.y1d_c00069{bottom:497.595150px;}
.y1c_c00069{bottom:518.475000px;}
.y1b_c00069{bottom:539.534700px;}
.y1a_c00069{bottom:560.595000px;}
.y19_c00069{bottom:590.476200px;}
.y18_c00069{bottom:611.535900px;}
.y17_c00069{bottom:632.596200px;}
.y16_c00069{bottom:653.505900px;}
.y15_c00069{bottom:674.565600px;}
.y14_c00069{bottom:695.625300px;}
.y13_c00069{bottom:716.505150px;}
.y12_c00069{bottom:737.565450px;}
.y11_c00069{bottom:758.625150px;}
.y10_c00069{bottom:779.505000px;}
.yf_c00069{bottom:809.565150px;}
.ye_c00069{bottom:830.624850px;}
.yd_c00069{bottom:851.504700px;}
.yc_c00069{bottom:872.565000px;}
.yb_c00069{bottom:902.670450px;}
.ya_c00069{bottom:923.550300px;}
.y9_c00069{bottom:944.609700px;}
.y8_c00069{bottom:965.670000px;}
.y7_c00069{bottom:995.550000px;}
.y6_c00069{bottom:1025.610000px;}
.y5_c00069{bottom:1055.670150px;}
.y4_c00069{bottom:1076.550000px;}
.y3_c00069{bottom:1097.609700px;}
.y2_c00069{bottom:1118.670000px;}
.y1_c00069{bottom:1174.680000px;}
.h2_c00069{height:56.957344px;}
.h3_c00069{height:56.958544px;}
.h1_c00069{height:1263.000000px;}
.h0_c00069{height:1263.060000px;}
.w1_c00069{width:893.250000px;}
.w0_c00069{width:893.340000px;}
.x0_c00069{left:0.000000px;}
.x1_c00069{left:127.655850px;}
.x2_c00069{left:148.896150px;}
@media print{
.v0_c00069{vertical-align:0.000000pt;}
.ls5_c00069{letter-spacing:0.000000pt;}
.ls1_c00069{letter-spacing:0.270933pt;}
.ls3_c00069{letter-spacing:0.272587pt;}
.ls0_c00069{letter-spacing:0.406187pt;}
.ls2_c00069{letter-spacing:12.895573pt;}
.ls4_c00069{letter-spacing:13.535147pt;}
.ws0_c00069{word-spacing:-16.368640pt;}
.ws1_c00069{word-spacing:-13.344000pt;}
.ws2_c00069{word-spacing:0.000000pt;}
._f_c00069{margin-left:-3.065283pt;}
._7_c00069{margin-left:-1.968483pt;}
._0_c00069{margin-left:-1.061646pt;}
._4_c00069{width:1.415019pt;}
._13_c00069{width:2.443714pt;}
._3_c00069{width:3.442293pt;}
._2_c00069{width:4.705012pt;}
._a_c00069{width:5.892499pt;}
._b_c00069{width:8.155293pt;}
._c_c00069{width:9.379121pt;}
._d_c00069{width:10.274994pt;}
._14_c00069{width:11.186117pt;}
._12_c00069{width:12.324624pt;}
._10_c00069{width:13.862938pt;}
._11_c00069{width:15.122205pt;}
._15_c00069{width:17.293865pt;}
._8_c00069{width:19.117601pt;}
._9_c00069{width:20.883143pt;}
._e_c00069{width:23.553902pt;}
._6_c00069{width:24.640778pt;}
._5_c00069{width:25.703151pt;}
._1_c00069{width:1358.734561pt;}
.fs1_c00069{font-size:48.000000pt;}
.fs0_c00069{font-size:58.880000pt;}
.y0_c00069{bottom:0.000000pt;}
.y2a_c00069{bottom:191.546933pt;}
.y29_c00069{bottom:210.266667pt;}
.y28_c00069{bottom:228.826533pt;}
.y27_c00069{bottom:247.546800pt;}
.y26_c00069{bottom:266.266533pt;}
.y25_c00069{bottom:284.826400pt;}
.y24_c00069{bottom:303.546667pt;}
.y23_c00069{bottom:330.266933pt;}
.y22_c00069{bottom:348.866933pt;}
.y21_c00069{bottom:367.586667pt;}
.y20_c00069{bottom:386.306933pt;}
.y1f_c00069{bottom:404.866800pt;}
.y1e_c00069{bottom:423.586533pt;}
.y1d_c00069{bottom:442.306800pt;}
.y1c_c00069{bottom:460.866667pt;}
.y1b_c00069{bottom:479.586400pt;}
.y1a_c00069{bottom:498.306667pt;}
.y19_c00069{bottom:524.867733pt;}
.y18_c00069{bottom:543.587467pt;}
.y17_c00069{bottom:562.307733pt;}
.y16_c00069{bottom:580.894133pt;}
.y15_c00069{bottom:599.613867pt;}
.y14_c00069{bottom:618.333600pt;}
.y13_c00069{bottom:636.893467pt;}
.y12_c00069{bottom:655.613733pt;}
.y11_c00069{bottom:674.333467pt;}
.y10_c00069{bottom:692.893333pt;}
.yf_c00069{bottom:719.613467pt;}
.ye_c00069{bottom:738.333200pt;}
.yd_c00069{bottom:756.893067pt;}
.yc_c00069{bottom:775.613333pt;}
.yb_c00069{bottom:802.373733pt;}
.ya_c00069{bottom:820.933600pt;}
.y9_c00069{bottom:839.653067pt;}
.y8_c00069{bottom:858.373333pt;}
.y7_c00069{bottom:884.933333pt;}
.y6_c00069{bottom:911.653333pt;}
.y5_c00069{bottom:938.373467pt;}
.y4_c00069{bottom:956.933333pt;}
.y3_c00069{bottom:975.653067pt;}
.y2_c00069{bottom:994.373333pt;}
.y1_c00069{bottom:1044.160000pt;}
.h2_c00069{height:50.628750pt;}
.h3_c00069{height:50.629817pt;}
.h1_c00069{height:1122.666667pt;}
.h0_c00069{height:1122.720000pt;}
.w1_c00069{width:794.000000pt;}
.w0_c00069{width:794.080000pt;}
.x0_c00069{left:0.000000pt;}
.x1_c00069{left:113.471867pt;}
.x2_c00069{left:132.352133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_81004735f2b86aeda3d782fa.woff2')format("woff");}.ff1_c00070{font-family:ff1_c00070;line-height:1.070312;font-style:normal;font-weight:normal;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_1de15fc0f02e4da5ce3a3d18.woff2')format("woff");}.ff2_c00070{font-family:ff2_c00070;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00070{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00070{vertical-align:0.000000px;}
.ls1_c00070{letter-spacing:0.000000px;}
.ls0_c00070{letter-spacing:0.229260px;}
.sc__c00070{text-shadow:none;}
.sc0_c00070{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00070{-webkit-text-stroke:0px transparent;}
.sc0_c00070{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00070{word-spacing:-18.414720px;}
.ws1_c00070{word-spacing:0.000000px;}
._0_c00070{margin-left:-1.194352px;}
._5_c00070{width:1.078672px;}
._9_c00070{width:2.184615px;}
._2_c00070{width:3.251902px;}
._a_c00070{width:8.214577px;}
._8_c00070{width:13.180605px;}
._7_c00070{width:14.373121px;}
._3_c00070{width:24.907167px;}
._4_c00070{width:25.956720px;}
._6_c00070{width:30.106242px;}
._1_c00070{width:1528.576381px;}
.fc0_c00070{color:rgb(0,0,0);}
.fs0_c00070{font-size:66.240000px;}
.fs1_c00070{font-size:66.384000px;}
.y0_c00070{bottom:0.000000px;}
.yb_c00070{bottom:9.570000px;}
.ye_c00070{bottom:18.150000px;}
.y8_c00070{bottom:102.059700px;}
.y7_c00070{bottom:122.940150px;}
.y6_c00070{bottom:144.035700px;}
.y5_c00070{bottom:174.090000px;}
.y4_c00070{bottom:212.970000px;}
.y3_c00070{bottom:234.029700px;}
.y2_c00070{bottom:255.090000px;}
.ya_c00070{bottom:357.300000px;}
.y9_c00070{bottom:387.975000px;}
.yd_c00070{bottom:975.240000px;}
.yc_c00070{bottom:1014.450000px;}
.y1_c00070{bottom:1174.680000px;}
.h4_c00070{height:56.520150px;}
.h2_c00070{height:56.957344px;}
.h3_c00070{height:57.081164px;}
.h5_c00070{height:65.339700px;}
.h1_c00070{height:1263.000000px;}
.h0_c00070{height:1263.060000px;}
.w3_c00070{width:150.660000px;}
.w2_c00070{width:172.800000px;}
.w1_c00070{width:893.250000px;}
.w0_c00070{width:893.340000px;}
.x0_c00070{left:0.000000px;}
.x6_c00070{left:10.905000px;}
.x1_c00070{left:127.655850px;}
.x3_c00070{left:148.896150px;}
.x2_c00070{left:234.029850px;}
.x8_c00070{left:359.820000px;}
.x7_c00070{left:370.695000px;}
.x5_c00070{left:572.040000px;}
.x4_c00070{left:582.945000px;}
@media print{
.v0_c00070{vertical-align:0.000000pt;}
.ls1_c00070{letter-spacing:0.000000pt;}
.ls0_c00070{letter-spacing:0.203787pt;}
.ws0_c00070{word-spacing:-16.368640pt;}
.ws1_c00070{word-spacing:0.000000pt;}
._0_c00070{margin-left:-1.061646pt;}
._5_c00070{width:0.958820pt;}
._9_c00070{width:1.941880pt;}
._2_c00070{width:2.890579pt;}
._a_c00070{width:7.301847pt;}
._8_c00070{width:11.716093pt;}
._7_c00070{width:12.776107pt;}
._3_c00070{width:22.139704pt;}
._4_c00070{width:23.072640pt;}
._6_c00070{width:26.761104pt;}
._1_c00070{width:1358.734561pt;}
.fs0_c00070{font-size:58.880000pt;}
.fs1_c00070{font-size:59.008000pt;}
.y0_c00070{bottom:0.000000pt;}
.yb_c00070{bottom:8.506667pt;}
.ye_c00070{bottom:16.133333pt;}
.y8_c00070{bottom:90.719733pt;}
.y7_c00070{bottom:109.280133pt;}
.y6_c00070{bottom:128.031733pt;}
.y5_c00070{bottom:154.746667pt;}
.y4_c00070{bottom:189.306667pt;}
.y3_c00070{bottom:208.026400pt;}
.y2_c00070{bottom:226.746667pt;}
.ya_c00070{bottom:317.600000pt;}
.y9_c00070{bottom:344.866667pt;}
.yd_c00070{bottom:866.880000pt;}
.yc_c00070{bottom:901.733333pt;}
.y1_c00070{bottom:1044.160000pt;}
.h4_c00070{height:50.240133pt;}
.h2_c00070{height:50.628750pt;}
.h3_c00070{height:50.738813pt;}
.h5_c00070{height:58.079733pt;}
.h1_c00070{height:1122.666667pt;}
.h0_c00070{height:1122.720000pt;}
.w3_c00070{width:133.920000pt;}
.w2_c00070{width:153.600000pt;}
.w1_c00070{width:794.000000pt;}
.w0_c00070{width:794.080000pt;}
.x0_c00070{left:0.000000pt;}
.x6_c00070{left:9.693333pt;}
.x1_c00070{left:113.471867pt;}
.x3_c00070{left:132.352133pt;}
.x2_c00070{left:208.026533pt;}
.x8_c00070{left:319.840000pt;}
.x7_c00070{left:329.506667pt;}
.x5_c00070{left:508.480000pt;}
.x4_c00070{left:518.173333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_da178da165e6ea85eed196f2.woff2')format("woff");}.ff1_c00071{font-family:ff1_c00071;line-height:1.070312;font-style: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);}
.m1_c00071{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_c00071{vertical-align:0.000000px;}
.ls1_c00071{letter-spacing:0.000000px;}
.ls0_c00071{letter-spacing:0.306660px;}
.sc__c00071{text-shadow:none;}
.sc0_c00071{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00071{-webkit-text-stroke:0px transparent;}
.sc0_c00071{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00071{word-spacing:-18.414720px;}
.ws1_c00071{word-spacing:-15.012000px;}
.ws2_c00071{word-spacing:0.000000px;}
._2_c00071{margin-left:-4.635624px;}
._a_c00071{margin-left:-2.549751px;}
._0_c00071{margin-left:-1.194352px;}
._8_c00071{width:1.068680px;}
._9_c00071{width:2.979420px;}
._7_c00071{width:4.495266px;}
._6_c00071{width:5.907164px;}
._c_c00071{width:10.076191px;}
._b_c00071{width:11.195156px;}
._e_c00071{width:12.990295px;}
._d_c00071{width:14.023968px;}
._5_c00071{width:21.037696px;}
._4_c00071{width:22.317630px;}
._3_c00071{width:23.382228px;}
._f_c00071{width:24.821603px;}
._10_c00071{width:26.415512px;}
._1_c00071{width:1528.576381px;}
.fc0_c00071{color:rgb(0,0,0);}
.fs1_c00071{font-size:54.000000px;}
.fs0_c00071{font-size:66.240000px;}
.y0_c00071{bottom:0.000000px;}
.y10_c00071{bottom:103.859850px;}
.yf_c00071{bottom:124.920150px;}
.ye_c00071{bottom:420.915000px;}
.yd_c00071{bottom:459.795300px;}
.yc_c00071{bottom:480.855000px;}
.yb_c00071{bottom:920.670150px;}
.ya_c00071{bottom:941.550000px;}
.y9_c00071{bottom:962.609700px;}
.y8_c00071{bottom:983.670000px;}
.y7_c00071{bottom:1013.550150px;}
.y6_c00071{bottom:1034.609850px;}
.y5_c00071{bottom:1055.670150px;}
.y4_c00071{bottom:1076.550000px;}
.y3_c00071{bottom:1097.609700px;}
.y2_c00071{bottom:1118.670000px;}
.y1_c00071{bottom:1174.680000px;}
.h2_c00071{height:56.957344px;}
.h1_c00071{height:1263.000000px;}
.h0_c00071{height:1263.060000px;}
.w1_c00071{width:893.250000px;}
.w0_c00071{width:893.340000px;}
.x0_c00071{left:0.000000px;}
.x1_c00071{left:127.655850px;}
.x2_c00071{left:148.896150px;}
.x3_c00071{left:234.030510px;}
@media print{
.v0_c00071{vertical-align:0.000000pt;}
.ls1_c00071{letter-spacing:0.000000pt;}
.ls0_c00071{letter-spacing:0.272587pt;}
.ws0_c00071{word-spacing:-16.368640pt;}
.ws1_c00071{word-spacing:-13.344000pt;}
.ws2_c00071{word-spacing:0.000000pt;}
._2_c00071{margin-left:-4.120555pt;}
._a_c00071{margin-left:-2.266445pt;}
._0_c00071{margin-left:-1.061646pt;}
._8_c00071{width:0.949937pt;}
._9_c00071{width:2.648373pt;}
._7_c00071{width:3.995792pt;}
._6_c00071{width:5.250813pt;}
._c_c00071{width:8.956614pt;}
._b_c00071{width:9.951250pt;}
._e_c00071{width:11.546929pt;}
._d_c00071{width:12.465749pt;}
._5_c00071{width:18.700174pt;}
._4_c00071{width:19.837893pt;}
._3_c00071{width:20.784203pt;}
._f_c00071{width:22.063647pt;}
._10_c00071{width:23.480456pt;}
._1_c00071{width:1358.734561pt;}
.fs1_c00071{font-size:48.000000pt;}
.fs0_c00071{font-size:58.880000pt;}
.y0_c00071{bottom:0.000000pt;}
.y10_c00071{bottom:92.319867pt;}
.yf_c00071{bottom:111.040133pt;}
.ye_c00071{bottom:374.146667pt;}
.yd_c00071{bottom:408.706933pt;}
.yc_c00071{bottom:427.426667pt;}
.yb_c00071{bottom:818.373467pt;}
.ya_c00071{bottom:836.933333pt;}
.y9_c00071{bottom:855.653067pt;}
.y8_c00071{bottom:874.373333pt;}
.y7_c00071{bottom:900.933467pt;}
.y6_c00071{bottom:919.653200pt;}
.y5_c00071{bottom:938.373467pt;}
.y4_c00071{bottom:956.933333pt;}
.y3_c00071{bottom:975.653067pt;}
.y2_c00071{bottom:994.373333pt;}
.y1_c00071{bottom:1044.160000pt;}
.h2_c00071{height:50.628750pt;}
.h1_c00071{height:1122.666667pt;}
.h0_c00071{height:1122.720000pt;}
.w1_c00071{width:794.000000pt;}
.w0_c00071{width:794.080000pt;}
.x0_c00071{left:0.000000pt;}
.x1_c00071{left:113.471867pt;}
.x2_c00071{left:132.352133pt;}
.x3_c00071{left:208.027120pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fbef5e1671748100e89a2864.woff2')format("woff");}.ff1_c00072{font-family:ff1_c00072;line-height:1.070312;font-style: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);}
.m1_c00072{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_c00072{vertical-align:0.000000px;}
.ls1_c00072{letter-spacing:0.000000px;}
.ls0_c00072{letter-spacing:0.306660px;}
.sc__c00072{text-shadow:none;}
.sc0_c00072{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00072{-webkit-text-stroke:0px transparent;}
.sc0_c00072{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00072{word-spacing:-15.012000px;}
.ws1_c00072{word-spacing:0.000000px;}
._8_c00072{margin-left:-6.137201px;}
._9_c00072{margin-left:-2.849738px;}
._0_c00072{margin-left:-1.194352px;}
._2_c00072{width:1.917668px;}
._3_c00072{width:3.055455px;}
._d_c00072{width:4.693763px;}
._6_c00072{width:8.213316px;}
._7_c00072{width:9.949284px;}
._c_c00072{width:11.946199px;}
._e_c00072{width:12.947649px;}
._5_c00072{width:25.355550px;}
._4_c00072{width:26.964599px;}
._a_c00072{width:33.846346px;}
._b_c00072{width:34.853832px;}
._1_c00072{width:1528.576381px;}
.fc0_c00072{color:rgb(0,0,0);}
.fs1_c00072{font-size:54.000000px;}
.fs0_c00072{font-size:66.240000px;}
.y0_c00072{bottom:0.000000px;}
.y10_c00072{bottom:214.949550px;}
.yf_c00072{bottom:236.009850px;}
.ye_c00072{bottom:257.070150px;}
.yd_c00072{bottom:277.950300px;}
.yc_c00072{bottom:299.010000px;}
.yb_c00072{bottom:328.890000px;}
.ya_c00072{bottom:367.950150px;}
.y9_c00072{bottom:389.055000px;}
.y8_c00072{bottom:656.205000px;}
.y7_c00072{bottom:695.085300px;}
.y6_c00072{bottom:716.145000px;}
.y5_c00072{bottom:1055.670150px;}
.y4_c00072{bottom:1076.550000px;}
.y3_c00072{bottom:1097.609700px;}
.y2_c00072{bottom:1118.670000px;}
.y1_c00072{bottom:1174.680000px;}
.h2_c00072{height:56.957344px;}
.h1_c00072{height:1263.000000px;}
.h0_c00072{height:1263.060000px;}
.w1_c00072{width:893.250000px;}
.w0_c00072{width:893.340000px;}
.x0_c00072{left:0.000000px;}
.x1_c00072{left:127.655850px;}
.x2_c00072{left:148.896150px;}
.x3_c00072{left:234.030750px;}
@media print{
.v0_c00072{vertical-align:0.000000pt;}
.ls1_c00072{letter-spacing:0.000000pt;}
.ls0_c00072{letter-spacing:0.272587pt;}
.ws0_c00072{word-spacing:-13.344000pt;}
.ws1_c00072{word-spacing:0.000000pt;}
._8_c00072{margin-left:-5.455290pt;}
._9_c00072{margin-left:-2.533100pt;}
._0_c00072{margin-left:-1.061646pt;}
._2_c00072{width:1.704594pt;}
._3_c00072{width:2.715960pt;}
._d_c00072{width:4.172234pt;}
._6_c00072{width:7.300726pt;}
._7_c00072{width:8.843808pt;}
._c_c00072{width:10.618844pt;}
._e_c00072{width:11.509022pt;}
._5_c00072{width:22.538267pt;}
._4_c00072{width:23.968532pt;}
._a_c00072{width:30.085641pt;}
._b_c00072{width:30.981184pt;}
._1_c00072{width:1358.734561pt;}
.fs1_c00072{font-size:48.000000pt;}
.fs0_c00072{font-size:58.880000pt;}
.y0_c00072{bottom:0.000000pt;}
.y10_c00072{bottom:191.066267pt;}
.yf_c00072{bottom:209.786533pt;}
.ye_c00072{bottom:228.506800pt;}
.yd_c00072{bottom:247.066933pt;}
.yc_c00072{bottom:265.786667pt;}
.yb_c00072{bottom:292.346667pt;}
.ya_c00072{bottom:327.066800pt;}
.y9_c00072{bottom:345.826667pt;}
.y8_c00072{bottom:583.293333pt;}
.y7_c00072{bottom:617.853600pt;}
.y6_c00072{bottom:636.573333pt;}
.y5_c00072{bottom:938.373467pt;}
.y4_c00072{bottom:956.933333pt;}
.y3_c00072{bottom:975.653067pt;}
.y2_c00072{bottom:994.373333pt;}
.y1_c00072{bottom:1044.160000pt;}
.h2_c00072{height:50.628750pt;}
.h1_c00072{height:1122.666667pt;}
.h0_c00072{height:1122.720000pt;}
.w1_c00072{width:794.000000pt;}
.w0_c00072{width:794.080000pt;}
.x0_c00072{left:0.000000pt;}
.x1_c00072{left:113.471867pt;}
.x2_c00072{left:132.352133pt;}
.x3_c00072{left:208.027333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_28cd4831000780d065d64b1f.woff2')format("woff");}.ff1_c00073{font-family:ff1_c00073;line-height:1.070312;font-style: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:0.304320px;}
.ls1_c00073{letter-spacing:0.304800px;}
.ls2_c00073{letter-spacing:0.306660px;}
.sc__c00073{text-shadow:none;}
.sc0_c00073{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00073{-webkit-text-stroke:0px transparent;}
.sc0_c00073{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00073{word-spacing:-18.414720px;}
.ws1_c00073{word-spacing:-15.012000px;}
.ws2_c00073{word-spacing:0.000000px;}
._4_c00073{margin-left:-2.441844px;}
._0_c00073{margin-left:-1.194352px;}
._9_c00073{width:1.056244px;}
._2_c00073{width:3.251902px;}
._a_c00073{width:5.573400px;}
._b_c00073{width:6.757334px;}
._5_c00073{width:8.808758px;}
._6_c00073{width:9.971192px;}
._7_c00073{width:10.995031px;}
._8_c00073{width:12.003745px;}
._c_c00073{width:13.530850px;}
._3_c00073{width:29.278278px;}
._1_c00073{width:1528.576381px;}
.fc0_c00073{color:rgb(0,0,0);}
.fs1_c00073{font-size:54.000000px;}
.fs0_c00073{font-size:66.240000px;}
.fs2_c00073{font-size:66.384000px;}
.y19_c00073{bottom:-0.285000px;}
.y0_c00073{bottom:0.000000px;}
.y16_c00073{bottom:3.030000px;}
.y13_c00073{bottom:104.400450px;}
.y12_c00073{bottom:125.460150px;}
.y11_c00073{bottom:146.556300px;}
.y10_c00073{bottom:167.430300px;}
.yf_c00073{bottom:188.490600px;}
.ye_c00073{bottom:209.550300px;}
.yd_c00073{bottom:230.430150px;}
.yc_c00073{bottom:251.490450px;}
.yb_c00073{bottom:272.550150px;}
.ya_c00073{bottom:293.430000px;}
.y9_c00073{bottom:323.490300px;}
.y8_c00073{bottom:344.550000px;}
.y7_c00073{bottom:365.429850px;}
.y6_c00073{bottom:386.490150px;}
.y5_c00073{bottom:407.595000px;}
.y4_c00073{bottom:437.475000px;}
.y3_c00073{bottom:476.534700px;}
.y2_c00073{bottom:497.595000px;}
.y18_c00073{bottom:626.040000px;}
.y17_c00073{bottom:646.665000px;}
.y15_c00073{bottom:1008.180000px;}
.y14_c00073{bottom:1032.090000px;}
.y1_c00073{bottom:1174.680000px;}
.h5_c00073{height:46.619550px;}
.h3_c00073{height:50.040300px;}
.h2_c00073{height:56.957344px;}
.h4_c00073{height:57.081164px;}
.h1_c00073{height:1263.000000px;}
.h0_c00073{height:1263.060000px;}
.w2_c00073{width:135.179850px;}
.w3_c00073{width:188.460000px;}
.w1_c00073{width:893.250000px;}
.w0_c00073{width:893.340000px;}
.x0_c00073{left:0.000000px;}
.x6_c00073{left:10.896000px;}
.x1_c00073{left:127.655850px;}
.x3_c00073{left:148.896150px;}
.x2_c00073{left:234.030750px;}
.x8_c00073{left:445.140000px;}
.x5_c00073{left:450.180000px;}
.x7_c00073{left:456.225000px;}
.x4_c00073{left:461.085000px;}
@media print{
.v0_c00073{vertical-align:0.000000pt;}
.ls3_c00073{letter-spacing:0.000000pt;}
.ls0_c00073{letter-spacing:0.270507pt;}
.ls1_c00073{letter-spacing:0.270933pt;}
.ls2_c00073{letter-spacing:0.272587pt;}
.ws0_c00073{word-spacing:-16.368640pt;}
.ws1_c00073{word-spacing:-13.344000pt;}
.ws2_c00073{word-spacing:0.000000pt;}
._4_c00073{margin-left:-2.170528pt;}
._0_c00073{margin-left:-1.061646pt;}
._9_c00073{width:0.938884pt;}
._2_c00073{width:2.890579pt;}
._a_c00073{width:4.954133pt;}
._b_c00073{width:6.006519pt;}
._5_c00073{width:7.830007pt;}
._6_c00073{width:8.863282pt;}
._7_c00073{width:9.773361pt;}
._8_c00073{width:10.669995pt;}
._c_c00073{width:12.027422pt;}
._3_c00073{width:26.025136pt;}
._1_c00073{width:1358.734561pt;}
.fs1_c00073{font-size:48.000000pt;}
.fs0_c00073{font-size:58.880000pt;}
.fs2_c00073{font-size:59.008000pt;}
.y19_c00073{bottom:-0.253333pt;}
.y0_c00073{bottom:0.000000pt;}
.y16_c00073{bottom:2.693333pt;}
.y13_c00073{bottom:92.800400pt;}
.y12_c00073{bottom:111.520133pt;}
.y11_c00073{bottom:130.272267pt;}
.y10_c00073{bottom:148.826933pt;}
.yf_c00073{bottom:167.547200pt;}
.ye_c00073{bottom:186.266933pt;}
.yd_c00073{bottom:204.826800pt;}
.yc_c00073{bottom:223.547067pt;}
.yb_c00073{bottom:242.266800pt;}
.ya_c00073{bottom:260.826667pt;}
.y9_c00073{bottom:287.546933pt;}
.y8_c00073{bottom:306.266667pt;}
.y7_c00073{bottom:324.826533pt;}
.y6_c00073{bottom:343.546800pt;}
.y5_c00073{bottom:362.306667pt;}
.y4_c00073{bottom:388.866667pt;}
.y3_c00073{bottom:423.586400pt;}
.y2_c00073{bottom:442.306667pt;}
.y18_c00073{bottom:556.480000pt;}
.y17_c00073{bottom:574.813333pt;}
.y15_c00073{bottom:896.160000pt;}
.y14_c00073{bottom:917.413333pt;}
.y1_c00073{bottom:1044.160000pt;}
.h5_c00073{height:41.439600pt;}
.h3_c00073{height:44.480267pt;}
.h2_c00073{height:50.628750pt;}
.h4_c00073{height:50.738813pt;}
.h1_c00073{height:1122.666667pt;}
.h0_c00073{height:1122.720000pt;}
.w2_c00073{width:120.159867pt;}
.w3_c00073{width:167.520000pt;}
.w1_c00073{width:794.000000pt;}
.w0_c00073{width:794.080000pt;}
.x0_c00073{left:0.000000pt;}
.x6_c00073{left:9.685333pt;}
.x1_c00073{left:113.471867pt;}
.x3_c00073{left:132.352133pt;}
.x2_c00073{left:208.027333pt;}
.x8_c00073{left:395.680000pt;}
.x5_c00073{left:400.160000pt;}
.x7_c00073{left:405.533333pt;}
.x4_c00073{left:409.853333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_65cf10eeeeed443733a58030.woff2')format("woff");}.ff1_c00074{font-family:ff1_c00074;line-height:1.070312;font-style:normal;font-weight:normal;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_2c661173fbe578d4a1a8299a.woff2')format("woff");}.ff2_c00074{font-family:ff2_c00074;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00074{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00074{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00074{vertical-align:0.000000px;}
.ls7_c00074{letter-spacing:0.000000px;}
.ls6_c00074{letter-spacing:0.107520px;}
.ls1_c00074{letter-spacing:0.261600px;}
.ls4_c00074{letter-spacing:0.304320px;}
.ls0_c00074{letter-spacing:0.304800px;}
.ls3_c00074{letter-spacing:0.307140px;}
.ls5_c00074{letter-spacing:4.427040px;}
.ls2_c00074{letter-spacing:5.146620px;}
.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:-36.829440px;}
.ws0_c00074{word-spacing:-18.414720px;}
.ws1_c00074{word-spacing:-15.012000px;}
.ws3_c00074{word-spacing:0.000000px;}
._c_c00074{margin-left:-4.637000px;}
._3_c00074{margin-left:-3.510329px;}
._d_c00074{margin-left:-2.491022px;}
._0_c00074{margin-left:-1.194352px;}
._2_c00074{width:1.134538px;}
._e_c00074{width:3.393142px;}
._a_c00074{width:4.702074px;}
._8_c00074{width:6.689641px;}
._9_c00074{width:8.083657px;}
._6_c00074{width:13.976022px;}
._b_c00074{width:18.097290px;}
._4_c00074{width:20.335457px;}
._5_c00074{width:21.597657px;}
._7_c00074{width:27.623958px;}
._f_c00074{width:845.765568px;}
._1_c00074{width:1528.576381px;}
.fc0_c00074{color:rgb(0,0,0);}
.fs1_c00074{font-size:54.000000px;}
.fs0_c00074{font-size:66.240000px;}
.y0_c00074{bottom:0.000000px;}
.y1c_c00074{bottom:200.010000px;}
.y1b_c00074{bottom:239.070300px;}
.y1a_c00074{bottom:260.130000px;}
.y19_c00074{bottom:599.475000px;}
.y18_c00074{bottom:620.534700px;}
.y17_c00074{bottom:641.625000px;}
.y16_c00074{bottom:671.505450px;}
.y15_c00074{bottom:692.565750px;}
.y14_c00074{bottom:713.625450px;}
.y13_c00074{bottom:734.505300px;}
.y12_c00074{bottom:755.565600px;}
.y11_c00074{bottom:776.625300px;}
.y10_c00074{bottom:797.505150px;}
.yf_c00074{bottom:818.565450px;}
.ye_c00074{bottom:839.625150px;}
.yd_c00074{bottom:860.505000px;}
.yc_c00074{bottom:890.565450px;}
.yb_c00074{bottom:911.670300px;}
.ya_c00074{bottom:932.550150px;}
.y9_c00074{bottom:953.609850px;}
.y8_c00074{bottom:974.670150px;}
.y7_c00074{bottom:995.550000px;}
.y6_c00074{bottom:1025.609700px;}
.y5_c00074{bottom:1046.670000px;}
.y4_c00074{bottom:1076.550000px;}
.y3_c00074{bottom:1097.609700px;}
.y2_c00074{bottom:1118.670000px;}
.y1_c00074{bottom:1174.680000px;}
.h2_c00074{height:56.957344px;}
.h1_c00074{height:1263.000000px;}
.h0_c00074{height:1263.060000px;}
.w1_c00074{width:893.250000px;}
.w0_c00074{width:893.340000px;}
.x0_c00074{left:0.000000px;}
.x1_c00074{left:127.655850px;}
.x2_c00074{left:148.896150px;}
.x4_c00074{left:191.550000px;}
.x3_c00074{left:234.030360px;}
@media print{
.v0_c00074{vertical-align:0.000000pt;}
.ls7_c00074{letter-spacing:0.000000pt;}
.ls6_c00074{letter-spacing:0.095573pt;}
.ls1_c00074{letter-spacing:0.232533pt;}
.ls4_c00074{letter-spacing:0.270507pt;}
.ls0_c00074{letter-spacing:0.270933pt;}
.ls3_c00074{letter-spacing:0.273013pt;}
.ls5_c00074{letter-spacing:3.935147pt;}
.ls2_c00074{letter-spacing:4.574773pt;}
.ws2_c00074{word-spacing:-32.737280pt;}
.ws0_c00074{word-spacing:-16.368640pt;}
.ws1_c00074{word-spacing:-13.344000pt;}
.ws3_c00074{word-spacing:0.000000pt;}
._c_c00074{margin-left:-4.121778pt;}
._3_c00074{margin-left:-3.120293pt;}
._d_c00074{margin-left:-2.214242pt;}
._0_c00074{margin-left:-1.061646pt;}
._2_c00074{width:1.008478pt;}
._e_c00074{width:3.016126pt;}
._a_c00074{width:4.179622pt;}
._8_c00074{width:5.946347pt;}
._9_c00074{width:7.185473pt;}
._6_c00074{width:12.423131pt;}
._b_c00074{width:16.086480pt;}
._4_c00074{width:18.075962pt;}
._5_c00074{width:19.197917pt;}
._7_c00074{width:24.554629pt;}
._f_c00074{width:751.791616pt;}
._1_c00074{width:1358.734561pt;}
.fs1_c00074{font-size:48.000000pt;}
.fs0_c00074{font-size:58.880000pt;}
.y0_c00074{bottom:0.000000pt;}
.y1c_c00074{bottom:177.786667pt;}
.y1b_c00074{bottom:212.506933pt;}
.y1a_c00074{bottom:231.226667pt;}
.y19_c00074{bottom:532.866667pt;}
.y18_c00074{bottom:551.586400pt;}
.y17_c00074{bottom:570.333333pt;}
.y16_c00074{bottom:596.893733pt;}
.y15_c00074{bottom:615.614000pt;}
.y14_c00074{bottom:634.333733pt;}
.y13_c00074{bottom:652.893600pt;}
.y12_c00074{bottom:671.613867pt;}
.y11_c00074{bottom:690.333600pt;}
.y10_c00074{bottom:708.893467pt;}
.yf_c00074{bottom:727.613733pt;}
.ye_c00074{bottom:746.333467pt;}
.yd_c00074{bottom:764.893333pt;}
.yc_c00074{bottom:791.613733pt;}
.yb_c00074{bottom:810.373600pt;}
.ya_c00074{bottom:828.933467pt;}
.y9_c00074{bottom:847.653200pt;}
.y8_c00074{bottom:866.373467pt;}
.y7_c00074{bottom:884.933333pt;}
.y6_c00074{bottom:911.653067pt;}
.y5_c00074{bottom:930.373333pt;}
.y4_c00074{bottom:956.933333pt;}
.y3_c00074{bottom:975.653067pt;}
.y2_c00074{bottom:994.373333pt;}
.y1_c00074{bottom:1044.160000pt;}
.h2_c00074{height:50.628750pt;}
.h1_c00074{height:1122.666667pt;}
.h0_c00074{height:1122.720000pt;}
.w1_c00074{width:794.000000pt;}
.w0_c00074{width:794.080000pt;}
.x0_c00074{left:0.000000pt;}
.x1_c00074{left:113.471867pt;}
.x2_c00074{left:132.352133pt;}
.x4_c00074{left:170.266667pt;}
.x3_c00074{left:208.026987pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_40b06717d7e017065eaed625.woff2')format("woff");}.ff1_c00075{font-family:ff1_c00075;line-height:1.070312;font-style:normal;font-weight:normal;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_8b0701136755e70ca98120f9.woff2')format("woff");}.ff2_c00075{font-family:ff2_c00075;line-height:0.666504;font-style:normal;font-weight:normal;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_0f1ba9dbefce4231cd885e11.woff2')format("woff");}.ff3_c00075{font-family:ff3_c00075;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00075;src:url('chunks/assets/font_ccfae26782d71e301882c850.woff2')format("woff");}.ff4_c00075{font-family:ff4_c00075;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00075{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00075{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00075{vertical-align:0.000000px;}
.ls4_c00075{letter-spacing:0.000000px;}
.ls2_c00075{letter-spacing:0.107520px;}
.ls1_c00075{letter-spacing:0.125520px;}
.ls0_c00075{letter-spacing:0.306660px;}
.ls3_c00075{letter-spacing:69.426480px;}
.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;}
}
.ws3_c00075{word-spacing:-39.744000px;}
.ws1_c00075{word-spacing:-18.414720px;}
.ws2_c00075{word-spacing:-16.560000px;}
.ws0_c00075{word-spacing:-15.012000px;}
.ws4_c00075{word-spacing:0.000000px;}
._9_c00075{margin-left:-3.509720px;}
._a_c00075{margin-left:-2.315259px;}
._0_c00075{margin-left:-1.194352px;}
._6_c00075{width:1.459029px;}
._2_c00075{width:3.219530px;}
._d_c00075{width:4.328827px;}
._7_c00075{width:5.432111px;}
._8_c00075{width:6.453977px;}
._e_c00075{width:7.717349px;}
._4_c00075{width:9.377560px;}
._3_c00075{width:10.433666px;}
._b_c00075{width:13.778781px;}
._c_c00075{width:14.829002px;}
._f_c00075{width:79.252176px;}
._5_c00075{width:89.844227px;}
._1_c00075{width:1528.576381px;}
.fc0_c00075{color:rgb(0,0,0);}
.fs1_c00075{font-size:54.000000px;}
.fs0_c00075{font-size:66.240000px;}
.y0_c00075{bottom:0.000000px;}
.y1e_c00075{bottom:100.259700px;}
.y1d_c00075{bottom:130.320150px;}
.y1c_c00075{bottom:160.230000px;}
.y1b_c00075{bottom:190.290000px;}
.y1a_c00075{bottom:220.350150px;}
.y19_c00075{bottom:241.230000px;}
.y18_c00075{bottom:271.290000px;}
.y17_c00075{bottom:301.350000px;}
.y16_c00075{bottom:331.230000px;}
.y15_c00075{bottom:361.290000px;}
.y14_c00075{bottom:391.395150px;}
.y13_c00075{bottom:412.275000px;}
.y12_c00075{bottom:442.334850px;}
.y11_c00075{bottom:463.395150px;}
.y10_c00075{bottom:484.275000px;}
.yf_c00075{bottom:514.335000px;}
.ye_c00075{bottom:535.395300px;}
.yd_c00075{bottom:556.275150px;}
.yc_c00075{bottom:577.334850px;}
.yb_c00075{bottom:598.395150px;}
.ya_c00075{bottom:619.275000px;}
.y9_c00075{bottom:649.365450px;}
.y8_c00075{bottom:670.425150px;}
.y7_c00075{bottom:691.305000px;}
.y6_c00075{bottom:721.365000px;}
.y5_c00075{bottom:760.425000px;}
.y4_c00075{bottom:799.304700px;}
.y3_c00075{bottom:820.365000px;}
.y2_c00075{bottom:1118.490000px;}
.y1_c00075{bottom:1174.680000px;}
.h2_c00075{height:56.957344px;}
.h1_c00075{height:1263.000000px;}
.h0_c00075{height:1263.060000px;}
.w1_c00075{width:893.250000px;}
.w0_c00075{width:893.340000px;}
.x0_c00075{left:0.000000px;}
.x1_c00075{left:127.655850px;}
.x3_c00075{left:148.896150px;}
.x4_c00075{left:159.690150px;}
.x2_c00075{left:234.030750px;}
@media print{
.v0_c00075{vertical-align:0.000000pt;}
.ls4_c00075{letter-spacing:0.000000pt;}
.ls2_c00075{letter-spacing:0.095573pt;}
.ls1_c00075{letter-spacing:0.111573pt;}
.ls0_c00075{letter-spacing:0.272587pt;}
.ls3_c00075{letter-spacing:61.712427pt;}
.ws3_c00075{word-spacing:-35.328000pt;}
.ws1_c00075{word-spacing:-16.368640pt;}
.ws2_c00075{word-spacing:-14.720000pt;}
.ws0_c00075{word-spacing:-13.344000pt;}
.ws4_c00075{word-spacing:0.000000pt;}
._9_c00075{margin-left:-3.119751pt;}
._a_c00075{margin-left:-2.058008pt;}
._0_c00075{margin-left:-1.061646pt;}
._6_c00075{width:1.296914pt;}
._2_c00075{width:2.861805pt;}
._d_c00075{width:3.847846pt;}
._7_c00075{width:4.828543pt;}
._8_c00075{width:5.736869pt;}
._e_c00075{width:6.859866pt;}
._4_c00075{width:8.335609pt;}
._3_c00075{width:9.274370pt;}
._b_c00075{width:12.247805pt;}
._c_c00075{width:13.181335pt;}
._f_c00075{width:70.446379pt;}
._5_c00075{width:79.861535pt;}
._1_c00075{width:1358.734561pt;}
.fs1_c00075{font-size:48.000000pt;}
.fs0_c00075{font-size:58.880000pt;}
.y0_c00075{bottom:0.000000pt;}
.y1e_c00075{bottom:89.119733pt;}
.y1d_c00075{bottom:115.840133pt;}
.y1c_c00075{bottom:142.426667pt;}
.y1b_c00075{bottom:169.146667pt;}
.y1a_c00075{bottom:195.866800pt;}
.y19_c00075{bottom:214.426667pt;}
.y18_c00075{bottom:241.146667pt;}
.y17_c00075{bottom:267.866667pt;}
.y16_c00075{bottom:294.426667pt;}
.y15_c00075{bottom:321.146667pt;}
.y14_c00075{bottom:347.906800pt;}
.y13_c00075{bottom:366.466667pt;}
.y12_c00075{bottom:393.186533pt;}
.y11_c00075{bottom:411.906800pt;}
.y10_c00075{bottom:430.466667pt;}
.yf_c00075{bottom:457.186667pt;}
.ye_c00075{bottom:475.906933pt;}
.yd_c00075{bottom:494.466800pt;}
.yc_c00075{bottom:513.186533pt;}
.yb_c00075{bottom:531.906800pt;}
.ya_c00075{bottom:550.466667pt;}
.y9_c00075{bottom:577.213733pt;}
.y8_c00075{bottom:595.933467pt;}
.y7_c00075{bottom:614.493333pt;}
.y6_c00075{bottom:641.213333pt;}
.y5_c00075{bottom:675.933333pt;}
.y4_c00075{bottom:710.493067pt;}
.y3_c00075{bottom:729.213333pt;}
.y2_c00075{bottom:994.213333pt;}
.y1_c00075{bottom:1044.160000pt;}
.h2_c00075{height:50.628750pt;}
.h1_c00075{height:1122.666667pt;}
.h0_c00075{height:1122.720000pt;}
.w1_c00075{width:794.000000pt;}
.w0_c00075{width:794.080000pt;}
.x0_c00075{left:0.000000pt;}
.x1_c00075{left:113.471867pt;}
.x3_c00075{left:132.352133pt;}
.x4_c00075{left:141.946800pt;}
.x2_c00075{left:208.027333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8788f4ba59f1156687f67006.woff2')format("woff");}.ff1_c00076{font-family:ff1_c00076;line-height:1.070312;font-style: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);}
.m1_c00076{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_c00076{vertical-align:0.000000px;}
.ls0_c00076{letter-spacing:0.000000px;}
.sc__c00076{text-shadow:none;}
.sc0_c00076{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00076{-webkit-text-stroke:0px transparent;}
.sc0_c00076{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00076{word-spacing:0.000000px;}
._4_c00076{margin-left:-10.043727px;}
._f_c00076{margin-left:-8.313584px;}
._e_c00076{margin-left:-7.191114px;}
._3_c00076{margin-left:-6.071720px;}
._2_c00076{margin-left:-4.768509px;}
._10_c00076{margin-left:-3.722456px;}
._5_c00076{margin-left:-2.537006px;}
._0_c00076{margin-left:-1.194352px;}
._7_c00076{width:1.142991px;}
._6_c00076{width:2.941111px;}
._c_c00076{width:5.100136px;}
._b_c00076{width:6.428600px;}
._a_c00076{width:8.047296px;}
._d_c00076{width:9.679691px;}
._11_c00076{width:11.280616px;}
._9_c00076{width:15.808839px;}
._8_c00076{width:17.223847px;}
._12_c00076{width:845.739072px;}
._1_c00076{width:1528.576381px;}
.fc0_c00076{color:rgb(0,0,0);}
.fs0_c00076{font-size:66.240000px;}
.y0_c00076{bottom:0.000000px;}
.y1b_c00076{bottom:144.935700px;}
.y1a_c00076{bottom:165.990000px;}
.y19_c00076{bottom:196.050150px;}
.y18_c00076{bottom:216.930000px;}
.y17_c00076{bottom:237.990300px;}
.y16_c00076{bottom:259.050000px;}
.y15_c00076{bottom:288.930450px;}
.y14_c00076{bottom:309.990750px;}
.y13_c00076{bottom:331.050450px;}
.y12_c00076{bottom:351.930300px;}
.y11_c00076{bottom:372.990600px;}
.y10_c00076{bottom:394.095450px;}
.yf_c00076{bottom:414.975300px;}
.ye_c00076{bottom:436.035000px;}
.yd_c00076{bottom:466.095150px;}
.yc_c00076{bottom:486.975300px;}
.yb_c00076{bottom:508.035000px;}
.ya_c00076{bottom:537.915000px;}
.y9_c00076{bottom:576.975300px;}
.y8_c00076{bottom:598.035000px;}
.y7_c00076{bottom:1004.550150px;}
.y6_c00076{bottom:1025.609850px;}
.y5_c00076{bottom:1046.670150px;}
.y4_c00076{bottom:1067.550000px;}
.y3_c00076{bottom:1097.609700px;}
.y2_c00076{bottom:1118.670000px;}
.y1_c00076{bottom:1174.680000px;}
.h2_c00076{height:56.957344px;}
.h1_c00076{height:1263.000000px;}
.h0_c00076{height:1263.060000px;}
.w1_c00076{width:893.250000px;}
.w0_c00076{width:893.340000px;}
.x0_c00076{left:0.000000px;}
.x1_c00076{left:127.655850px;}
.x2_c00076{left:148.896150px;}
.x3_c00076{left:234.029250px;}
@media print{
.v0_c00076{vertical-align:0.000000pt;}
.ls0_c00076{letter-spacing:0.000000pt;}
.ws0_c00076{word-spacing:0.000000pt;}
._4_c00076{margin-left:-8.927758pt;}
._f_c00076{margin-left:-7.389852pt;}
._e_c00076{margin-left:-6.392102pt;}
._3_c00076{margin-left:-5.397084pt;}
._2_c00076{margin-left:-4.238675pt;}
._10_c00076{margin-left:-3.308850pt;}
._5_c00076{margin-left:-2.255116pt;}
._0_c00076{margin-left:-1.061646pt;}
._7_c00076{width:1.015992pt;}
._6_c00076{width:2.614321pt;}
._c_c00076{width:4.533454pt;}
._b_c00076{width:5.714311pt;}
._a_c00076{width:7.153152pt;}
._d_c00076{width:8.604169pt;}
._11_c00076{width:10.027214pt;}
._9_c00076{width:14.052301pt;}
._8_c00076{width:15.310086pt;}
._12_c00076{width:751.768064pt;}
._1_c00076{width:1358.734561pt;}
.fs0_c00076{font-size:58.880000pt;}
.y0_c00076{bottom:0.000000pt;}
.y1b_c00076{bottom:128.831733pt;}
.y1a_c00076{bottom:147.546667pt;}
.y19_c00076{bottom:174.266800pt;}
.y18_c00076{bottom:192.826667pt;}
.y17_c00076{bottom:211.546933pt;}
.y16_c00076{bottom:230.266667pt;}
.y15_c00076{bottom:256.827067pt;}
.y14_c00076{bottom:275.547333pt;}
.y13_c00076{bottom:294.267067pt;}
.y12_c00076{bottom:312.826933pt;}
.y11_c00076{bottom:331.547200pt;}
.y10_c00076{bottom:350.307067pt;}
.yf_c00076{bottom:368.866933pt;}
.ye_c00076{bottom:387.586667pt;}
.yd_c00076{bottom:414.306800pt;}
.yc_c00076{bottom:432.866933pt;}
.yb_c00076{bottom:451.586667pt;}
.ya_c00076{bottom:478.146667pt;}
.y9_c00076{bottom:512.866933pt;}
.y8_c00076{bottom:531.586667pt;}
.y7_c00076{bottom:892.933467pt;}
.y6_c00076{bottom:911.653200pt;}
.y5_c00076{bottom:930.373467pt;}
.y4_c00076{bottom:948.933333pt;}
.y3_c00076{bottom:975.653067pt;}
.y2_c00076{bottom:994.373333pt;}
.y1_c00076{bottom:1044.160000pt;}
.h2_c00076{height:50.628750pt;}
.h1_c00076{height:1122.666667pt;}
.h0_c00076{height:1122.720000pt;}
.w1_c00076{width:794.000000pt;}
.w0_c00076{width:794.080000pt;}
.x0_c00076{left:0.000000pt;}
.x1_c00076{left:113.471867pt;}
.x2_c00076{left:132.352133pt;}
.x3_c00076{left:208.026000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f7231ef66c57da499a4c50eb.woff2')format("woff");}.ff1_c00077{font-family:ff1_c00077;line-height:1.070312;font-style: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);}
.m1_c00077{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_c00077{vertical-align:0.000000px;}
.ls0_c00077{letter-spacing:0.000000px;}
.sc__c00077{text-shadow:none;}
.sc0_c00077{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00077{-webkit-text-stroke:0px transparent;}
.sc0_c00077{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00077{word-spacing:0.000000px;}
._0_c00077{margin-left:-1.194352px;}
._6_c00077{width:1.018898px;}
._2_c00077{width:3.251916px;}
._5_c00077{width:12.716220px;}
._3_c00077{width:14.969872px;}
._4_c00077{width:16.230474px;}
._1_c00077{width:1528.576381px;}
.fc0_c00077{color:rgb(0,0,0);}
.fs0_c00077{font-size:66.240000px;}
.y0_c00077{bottom:0.000000px;}
.ya_c00077{bottom:151.230000px;}
.y9_c00077{bottom:181.110000px;}
.y8_c00077{bottom:202.170300px;}
.y7_c00077{bottom:223.230000px;}
.y6_c00077{bottom:253.110000px;}
.y5_c00077{bottom:292.170000px;}
.y4_c00077{bottom:689.505000px;}
.y3_c00077{bottom:728.565300px;}
.y2_c00077{bottom:749.625000px;}
.y1_c00077{bottom:1174.680000px;}
.h2_c00077{height:56.957344px;}
.h1_c00077{height:1263.000000px;}
.h0_c00077{height:1263.060000px;}
.w1_c00077{width:893.250000px;}
.w0_c00077{width:893.340000px;}
.x0_c00077{left:0.000000px;}
.x1_c00077{left:127.655850px;}
.x3_c00077{left:148.896150px;}
.x2_c00077{left:234.021750px;}
@media print{
.v0_c00077{vertical-align:0.000000pt;}
.ls0_c00077{letter-spacing:0.000000pt;}
.ws0_c00077{word-spacing:0.000000pt;}
._0_c00077{margin-left:-1.061646pt;}
._6_c00077{width:0.905687pt;}
._2_c00077{width:2.890592pt;}
._5_c00077{width:11.303307pt;}
._3_c00077{width:13.306553pt;}
._4_c00077{width:14.427088pt;}
._1_c00077{width:1358.734561pt;}
.fs0_c00077{font-size:58.880000pt;}
.y0_c00077{bottom:0.000000pt;}
.ya_c00077{bottom:134.426667pt;}
.y9_c00077{bottom:160.986667pt;}
.y8_c00077{bottom:179.706933pt;}
.y7_c00077{bottom:198.426667pt;}
.y6_c00077{bottom:224.986667pt;}
.y5_c00077{bottom:259.706667pt;}
.y4_c00077{bottom:612.893333pt;}
.y3_c00077{bottom:647.613600pt;}
.y2_c00077{bottom:666.333333pt;}
.y1_c00077{bottom:1044.160000pt;}
.h2_c00077{height:50.628750pt;}
.h1_c00077{height:1122.666667pt;}
.h0_c00077{height:1122.720000pt;}
.w1_c00077{width:794.000000pt;}
.w0_c00077{width:794.080000pt;}
.x0_c00077{left:0.000000pt;}
.x1_c00077{left:113.471867pt;}
.x3_c00077{left:132.352133pt;}
.x2_c00077{left:208.019333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0dbafaf1af9eb6c2923ec8cd.woff2')format("woff");}.ff1_c00078{font-family:ff1_c00078;line-height:1.070312;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00078{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00078{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00078{vertical-align:0.000000px;}
.ls0_c00078{letter-spacing:0.000000px;}
.sc__c00078{text-shadow:none;}
.sc0_c00078{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00078{-webkit-text-stroke:0px transparent;}
.sc0_c00078{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00078{word-spacing:0.000000px;}
._3_c00078{margin-left:-6.396071px;}
._6_c00078{margin-left:-2.778500px;}
._0_c00078{margin-left:-1.194352px;}
._4_c00078{width:1.714338px;}
._2_c00078{width:3.251902px;}
._7_c00078{width:5.165852px;}
._8_c00078{width:6.363550px;}
._5_c00078{width:13.021166px;}
._1_c00078{width:1528.576381px;}
.fc0_c00078{color:rgb(0,0,0);}
.fs0_c00078{font-size:66.240000px;}
.y0_c00078{bottom:0.000000px;}
.yc_c00078{bottom:137.735700px;}
.yb_c00078{bottom:176.609700px;}
.ya_c00078{bottom:197.670000px;}
.y9_c00078{bottom:600.195000px;}
.y8_c00078{bottom:621.254700px;}
.y7_c00078{bottom:642.345450px;}
.y6_c00078{bottom:663.225300px;}
.y5_c00078{bottom:684.285000px;}
.y4_c00078{bottom:714.345000px;}
.y3_c00078{bottom:753.225300px;}
.y2_c00078{bottom:774.285000px;}
.y1_c00078{bottom:1174.680000px;}
.h2_c00078{height:56.957344px;}
.h1_c00078{height:1263.000000px;}
.h0_c00078{height:1263.060000px;}
.w1_c00078{width:893.250000px;}
.w0_c00078{width:893.340000px;}
.x0_c00078{left:0.000000px;}
.x1_c00078{left:127.655850px;}
.x3_c00078{left:148.896150px;}
.x2_c00078{left:234.030750px;}
@media print{
.v0_c00078{vertical-align:0.000000pt;}
.ls0_c00078{letter-spacing:0.000000pt;}
.ws0_c00078{word-spacing:0.000000pt;}
._3_c00078{margin-left:-5.685396pt;}
._6_c00078{margin-left:-2.469778pt;}
._0_c00078{margin-left:-1.061646pt;}
._4_c00078{width:1.523856pt;}
._2_c00078{width:2.890579pt;}
._7_c00078{width:4.591868pt;}
._8_c00078{width:5.656489pt;}
._5_c00078{width:11.574370pt;}
._1_c00078{width:1358.734561pt;}
.fs0_c00078{font-size:58.880000pt;}
.y0_c00078{bottom:0.000000pt;}
.yc_c00078{bottom:122.431733pt;}
.yb_c00078{bottom:156.986400pt;}
.ya_c00078{bottom:175.706667pt;}
.y9_c00078{bottom:533.506667pt;}
.y8_c00078{bottom:552.226400pt;}
.y7_c00078{bottom:570.973733pt;}
.y6_c00078{bottom:589.533600pt;}
.y5_c00078{bottom:608.253333pt;}
.y4_c00078{bottom:634.973333pt;}
.y3_c00078{bottom:669.533600pt;}
.y2_c00078{bottom:688.253333pt;}
.y1_c00078{bottom:1044.160000pt;}
.h2_c00078{height:50.628750pt;}
.h1_c00078{height:1122.666667pt;}
.h0_c00078{height:1122.720000pt;}
.w1_c00078{width:794.000000pt;}
.w0_c00078{width:794.080000pt;}
.x0_c00078{left:0.000000pt;}
.x1_c00078{left:113.471867pt;}
.x3_c00078{left:132.352133pt;}
.x2_c00078{left:208.027333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a10389ce5d2c75e168f815cc.woff2')format("woff");}.ff1_c00079{font-family:ff1_c00079;line-height:1.070312;font-style: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);}
.m1_c00079{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_c00079{vertical-align:0.000000px;}
.ls0_c00079{letter-spacing:0.000000px;}
.sc__c00079{text-shadow:none;}
.sc0_c00079{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00079{-webkit-text-stroke:0px transparent;}
.sc0_c00079{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00079{word-spacing:0.000000px;}
._9_c00079{margin-left:-15.195180px;}
._b_c00079{margin-left:-4.834381px;}
._c_c00079{margin-left:-3.807012px;}
._6_c00079{margin-left:-2.385298px;}
._0_c00079{margin-left:-1.194352px;}
._2_c00079{width:1.219077px;}
._3_c00079{width:2.284977px;}
._8_c00079{width:10.400097px;}
._7_c00079{width:11.527235px;}
._a_c00079{width:12.896915px;}
._5_c00079{width:23.664639px;}
._4_c00079{width:24.973888px;}
._1_c00079{width:1528.576381px;}
.fc0_c00079{color:rgb(0,0,0);}
.fs0_c00079{font-size:66.240000px;}
.y0_c00079{bottom:0.000000px;}
.y13_c00079{bottom:89.459700px;}
.y12_c00079{bottom:119.520000px;}
.y11_c00079{bottom:140.435550px;}
.y10_c00079{bottom:161.490450px;}
.yf_c00079{bottom:182.550150px;}
.ye_c00079{bottom:203.430000px;}
.yd_c00079{bottom:233.490450px;}
.yc_c00079{bottom:254.550150px;}
.yb_c00079{bottom:275.430000px;}
.ya_c00079{bottom:305.490000px;}
.y9_c00079{bottom:344.370300px;}
.y8_c00079{bottom:365.430000px;}
.y7_c00079{bottom:1013.549550px;}
.y6_c00079{bottom:1034.609850px;}
.y5_c00079{bottom:1055.670150px;}
.y4_c00079{bottom:1076.550000px;}
.y3_c00079{bottom:1097.609700px;}
.y2_c00079{bottom:1118.670000px;}
.y1_c00079{bottom:1174.680000px;}
.h2_c00079{height:56.957344px;}
.h1_c00079{height:1263.000000px;}
.h0_c00079{height:1263.060000px;}
.w1_c00079{width:893.250000px;}
.w0_c00079{width:893.340000px;}
.x0_c00079{left:0.000000px;}
.x1_c00079{left:127.655850px;}
.x2_c00079{left:148.896150px;}
.x3_c00079{left:234.029850px;}
@media print{
.v0_c00079{vertical-align:0.000000pt;}
.ls0_c00079{letter-spacing:0.000000pt;}
.ws0_c00079{word-spacing:0.000000pt;}
._9_c00079{margin-left:-13.506826pt;}
._b_c00079{margin-left:-4.297228pt;}
._c_c00079{margin-left:-3.384011pt;}
._6_c00079{margin-left:-2.120265pt;}
._0_c00079{margin-left:-1.061646pt;}
._2_c00079{width:1.083624pt;}
._3_c00079{width:2.031091pt;}
._8_c00079{width:9.244530pt;}
._7_c00079{width:10.246431pt;}
._a_c00079{width:11.463924pt;}
._5_c00079{width:21.035235pt;}
._4_c00079{width:22.199012pt;}
._1_c00079{width:1358.734561pt;}
.fs0_c00079{font-size:58.880000pt;}
.y0_c00079{bottom:0.000000pt;}
.y13_c00079{bottom:79.519733pt;}
.y12_c00079{bottom:106.240000pt;}
.y11_c00079{bottom:124.831600pt;}
.y10_c00079{bottom:143.547067pt;}
.yf_c00079{bottom:162.266800pt;}
.ye_c00079{bottom:180.826667pt;}
.yd_c00079{bottom:207.547067pt;}
.yc_c00079{bottom:226.266800pt;}
.yb_c00079{bottom:244.826667pt;}
.ya_c00079{bottom:271.546667pt;}
.y9_c00079{bottom:306.106933pt;}
.y8_c00079{bottom:324.826667pt;}
.y7_c00079{bottom:900.932933pt;}
.y6_c00079{bottom:919.653200pt;}
.y5_c00079{bottom:938.373467pt;}
.y4_c00079{bottom:956.933333pt;}
.y3_c00079{bottom:975.653067pt;}
.y2_c00079{bottom:994.373333pt;}
.y1_c00079{bottom:1044.160000pt;}
.h2_c00079{height:50.628750pt;}
.h1_c00079{height:1122.666667pt;}
.h0_c00079{height:1122.720000pt;}
.w1_c00079{width:794.000000pt;}
.w0_c00079{width:794.080000pt;}
.x0_c00079{left:0.000000pt;}
.x1_c00079{left:113.471867pt;}
.x2_c00079{left:132.352133pt;}
.x3_c00079{left:208.026533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_010397d01e07c4ff82a3a817.woff2')format("woff");}.ff1_c00080{font-family:ff1_c00080;line-height:1.070312;font-style: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);}
.m1_c00080{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_c00080{vertical-align:0.000000px;}
.ls0_c00080{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00080{word-spacing:-18.414720px;}
.ws0_c00080{word-spacing:-15.012000px;}
.ws2_c00080{word-spacing:0.000000px;}
._7_c00080{margin-left:-8.575759px;}
._6_c00080{margin-left:-6.896080px;}
._8_c00080{margin-left:-4.089801px;}
._9_c00080{margin-left:-3.001685px;}
._0_c00080{margin-left:-1.194352px;}
._4_c00080{width:1.473860px;}
._2_c00080{width:3.251902px;}
._5_c00080{width:5.164276px;}
._3_c00080{width:13.381784px;}
._a_c00080{width:24.310180px;}
._b_c00080{width:25.348422px;}
._1_c00080{width:1528.576381px;}
.fc0_c00080{color:rgb(0,0,0);}
.fs1_c00080{font-size:54.000000px;}
.fs0_c00080{font-size:66.240000px;}
.y0_c00080{bottom:0.000000px;}
.ya_c00080{bottom:91.440300px;}
.y9_c00080{bottom:112.500000px;}
.y8_c00080{bottom:555.915150px;}
.y7_c00080{bottom:576.795300px;}
.y6_c00080{bottom:597.854700px;}
.y5_c00080{bottom:618.915000px;}
.y4_c00080{bottom:648.825000px;}
.y3_c00080{bottom:687.884700px;}
.y2_c00080{bottom:708.945000px;}
.y1_c00080{bottom:1174.680000px;}
.h2_c00080{height:56.957344px;}
.h3_c00080{height:56.958544px;}
.h1_c00080{height:1263.000000px;}
.h0_c00080{height:1263.060000px;}
.w1_c00080{width:893.250000px;}
.w0_c00080{width:893.340000px;}
.x0_c00080{left:0.000000px;}
.x1_c00080{left:127.655850px;}
.x3_c00080{left:148.896150px;}
.x2_c00080{left:234.029250px;}
@media print{
.v0_c00080{vertical-align:0.000000pt;}
.ls0_c00080{letter-spacing:0.000000pt;}
.ws1_c00080{word-spacing:-16.368640pt;}
.ws0_c00080{word-spacing:-13.344000pt;}
.ws2_c00080{word-spacing:0.000000pt;}
._7_c00080{margin-left:-7.622897pt;}
._6_c00080{margin-left:-6.129849pt;}
._8_c00080{margin-left:-3.635379pt;}
._9_c00080{margin-left:-2.668164pt;}
._0_c00080{margin-left:-1.061646pt;}
._4_c00080{width:1.310098pt;}
._2_c00080{width:2.890579pt;}
._5_c00080{width:4.590468pt;}
._3_c00080{width:11.894919pt;}
._a_c00080{width:21.609049pt;}
._b_c00080{width:22.531931pt;}
._1_c00080{width:1358.734561pt;}
.fs1_c00080{font-size:48.000000pt;}
.fs0_c00080{font-size:58.880000pt;}
.y0_c00080{bottom:0.000000pt;}
.ya_c00080{bottom:81.280267pt;}
.y9_c00080{bottom:100.000000pt;}
.y8_c00080{bottom:494.146800pt;}
.y7_c00080{bottom:512.706933pt;}
.y6_c00080{bottom:531.426400pt;}
.y5_c00080{bottom:550.146667pt;}
.y4_c00080{bottom:576.733333pt;}
.y3_c00080{bottom:611.453067pt;}
.y2_c00080{bottom:630.173333pt;}
.y1_c00080{bottom:1044.160000pt;}
.h2_c00080{height:50.628750pt;}
.h3_c00080{height:50.629817pt;}
.h1_c00080{height:1122.666667pt;}
.h0_c00080{height:1122.720000pt;}
.w1_c00080{width:794.000000pt;}
.w0_c00080{width:794.080000pt;}
.x0_c00080{left:0.000000pt;}
.x1_c00080{left:113.471867pt;}
.x3_c00080{left:132.352133pt;}
.x2_c00080{left:208.026000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e349a2c26ac0c0b1334fd2b5.woff2')format("woff");}.ff1_c00081{font-family:ff1_c00081;line-height:1.070312;font-style:normal;font-weight:normal;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_7eb76b71de9fc9cf3bcdf820.woff2')format("woff");}.ff2_c00081{font-family:ff2_c00081;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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);}
.m1_c00081{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_c00081{vertical-align:0.000000px;}
.ls0_c00081{letter-spacing:0.000000px;}
.sc__c00081{text-shadow:none;}
.sc0_c00081{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00081{-webkit-text-stroke:0px transparent;}
.sc0_c00081{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00081{word-spacing:-18.414720px;}
.ws0_c00081{word-spacing:-15.012000px;}
.ws2_c00081{word-spacing:0.000000px;}
._d_c00081{margin-left:-4.768509px;}
._0_c00081{margin-left:-1.194352px;}
._4_c00081{width:1.125280px;}
._5_c00081{width:2.191116px;}
._2_c00081{width:3.251902px;}
._b_c00081{width:5.630032px;}
._c_c00081{width:7.644750px;}
._6_c00081{width:11.148680px;}
._7_c00081{width:12.256073px;}
._a_c00081{width:14.970602px;}
._9_c00081{width:16.726110px;}
._3_c00081{width:76.111165px;}
._8_c00081{width:117.383636px;}
._e_c00081{width:845.401538px;}
._1_c00081{width:1528.576381px;}
.fc0_c00081{color:rgb(0,0,0);}
.fs1_c00081{font-size:54.000000px;}
.fs2_c00081{font-size:59.760000px;}
.fs0_c00081{font-size:66.240000px;}
.y0_c00081{bottom:0.000000px;}
.y10_c00081{bottom:12.420000px;}
.y13_c00081{bottom:12.600000px;}
.ye_c00081{bottom:21.960000px;}
.yf_c00081{bottom:31.320000px;}
.y17_c00081{bottom:108.540300px;}
.y16_c00081{bottom:129.420150px;}
.y15_c00081{bottom:156.090000px;}
.y14_c00081{bottom:193.890000px;}
.y12_c00081{bottom:231.510000px;}
.y11_c00081{bottom:269.310000px;}
.yd_c00081{bottom:307.110000px;}
.yc_c00081{bottom:385.770450px;}
.yb_c00081{bottom:406.875300px;}
.ya_c00081{bottom:427.935000px;}
.y9_c00081{bottom:475.995300px;}
.y8_c00081{bottom:496.875150px;}
.y7_c00081{bottom:517.934850px;}
.y6_c00081{bottom:538.995150px;}
.y5_c00081{bottom:559.875000px;}
.y4_c00081{bottom:598.935000px;}
.y3_c00081{bottom:646.845300px;}
.y2_c00081{bottom:667.905000px;}
.y1_c00081{bottom:1174.680000px;}
.h5_c00081{height:36.900000px;}
.h7_c00081{height:37.079850px;}
.h6_c00081{height:37.080450px;}
.h4_c00081{height:48.224531px;}
.h3_c00081{height:55.800000px;}
.h2_c00081{height:56.957344px;}
.h1_c00081{height:1263.000000px;}
.h0_c00081{height:1263.060000px;}
.w4_c00081{width:189.930000px;}
.w3_c00081{width:198.750000px;}
.w2_c00081{width:288.570000px;}
.w1_c00081{width:893.250000px;}
.w0_c00081{width:893.340000px;}
.x0_c00081{left:0.000000px;}
.xa_c00081{left:7.740150px;}
.x9_c00081{left:9.540000px;}
.x6_c00081{left:14.040000px;}
.x7_c00081{left:36.030000px;}
.xc_c00081{left:62.865000px;}
.xd_c00081{left:67.170000px;}
.xb_c00081{left:71.850000px;}
.xe_c00081{left:74.190000px;}
.x1_c00081{left:127.655850px;}
.x3_c00081{left:148.896150px;}
.x4_c00081{left:154.839000px;}
.x2_c00081{left:234.029850px;}
.x5_c00081{left:417.675000px;}
.x8_c00081{left:617.145000px;}
@media print{
.v0_c00081{vertical-align:0.000000pt;}
.ls0_c00081{letter-spacing:0.000000pt;}
.ws1_c00081{word-spacing:-16.368640pt;}
.ws0_c00081{word-spacing:-13.344000pt;}
.ws2_c00081{word-spacing:0.000000pt;}
._d_c00081{margin-left:-4.238675pt;}
._0_c00081{margin-left:-1.061646pt;}
._4_c00081{width:1.000249pt;}
._5_c00081{width:1.947659pt;}
._2_c00081{width:2.890579pt;}
._b_c00081{width:5.004473pt;}
._c_c00081{width:6.795333pt;}
._6_c00081{width:9.909938pt;}
._7_c00081{width:10.894287pt;}
._a_c00081{width:13.307202pt;}
._9_c00081{width:14.867653pt;}
._3_c00081{width:67.654369pt;}
._8_c00081{width:104.341010pt;}
._e_c00081{width:751.468034pt;}
._1_c00081{width:1358.734561pt;}
.fs1_c00081{font-size:48.000000pt;}
.fs2_c00081{font-size:53.120000pt;}
.fs0_c00081{font-size:58.880000pt;}
.y0_c00081{bottom:0.000000pt;}
.y10_c00081{bottom:11.040000pt;}
.y13_c00081{bottom:11.200000pt;}
.ye_c00081{bottom:19.520000pt;}
.yf_c00081{bottom:27.840000pt;}
.y17_c00081{bottom:96.480267pt;}
.y16_c00081{bottom:115.040133pt;}
.y15_c00081{bottom:138.746667pt;}
.y14_c00081{bottom:172.346667pt;}
.y12_c00081{bottom:205.786667pt;}
.y11_c00081{bottom:239.386667pt;}
.yd_c00081{bottom:272.986667pt;}
.yc_c00081{bottom:342.907067pt;}
.yb_c00081{bottom:361.666933pt;}
.ya_c00081{bottom:380.386667pt;}
.y9_c00081{bottom:423.106933pt;}
.y8_c00081{bottom:441.666800pt;}
.y7_c00081{bottom:460.386533pt;}
.y6_c00081{bottom:479.106800pt;}
.y5_c00081{bottom:497.666667pt;}
.y4_c00081{bottom:532.386667pt;}
.y3_c00081{bottom:574.973600pt;}
.y2_c00081{bottom:593.693333pt;}
.y1_c00081{bottom:1044.160000pt;}
.h5_c00081{height:32.800000pt;}
.h7_c00081{height:32.959867pt;}
.h6_c00081{height:32.960400pt;}
.h4_c00081{height:42.866250pt;}
.h3_c00081{height:49.600000pt;}
.h2_c00081{height:50.628750pt;}
.h1_c00081{height:1122.666667pt;}
.h0_c00081{height:1122.720000pt;}
.w4_c00081{width:168.826667pt;}
.w3_c00081{width:176.666667pt;}
.w2_c00081{width:256.506667pt;}
.w1_c00081{width:794.000000pt;}
.w0_c00081{width:794.080000pt;}
.x0_c00081{left:0.000000pt;}
.xa_c00081{left:6.880133pt;}
.x9_c00081{left:8.480000pt;}
.x6_c00081{left:12.480000pt;}
.x7_c00081{left:32.026667pt;}
.xc_c00081{left:55.880000pt;}
.xd_c00081{left:59.706667pt;}
.xb_c00081{left:63.866667pt;}
.xe_c00081{left:65.946667pt;}
.x1_c00081{left:113.471867pt;}
.x3_c00081{left:132.352133pt;}
.x4_c00081{left:137.634667pt;}
.x2_c00081{left:208.026533pt;}
.x5_c00081{left:371.266667pt;}
.x8_c00081{left:548.573333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_912016fe8b1e11da866895e0.woff2')format("woff");}.ff1_c00082{font-family:ff1_c00082;line-height:1.070312;font-style:normal;font-weight:normal;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_8b0701136755e70ca98120f9.woff2')format("woff");}.ff2_c00082{font-family:ff2_c00082;line-height:0.666504;font-style: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);}
.m1_c00082{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_c00082{vertical-align:0.000000px;}
.ls0_c00082{letter-spacing:0.000000px;}
.sc__c00082{text-shadow:none;}
.sc0_c00082{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00082{-webkit-text-stroke:0px transparent;}
.sc0_c00082{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00082{word-spacing:-16.560000px;}
.ws1_c00082{word-spacing:0.000000px;}
._0_c00082{margin-left:-1.194352px;}
._3_c00082{width:1.231005px;}
._4_c00082{width:2.581970px;}
._6_c00082{width:4.043769px;}
._8_c00082{width:5.165956px;}
._9_c00082{width:6.424679px;}
._7_c00082{width:9.706151px;}
._5_c00082{width:10.928805px;}
._a_c00082{width:79.252176px;}
._2_c00082{width:89.844227px;}
._b_c00082{width:845.739072px;}
._1_c00082{width:1528.576381px;}
.fc0_c00082{color:rgb(0,0,0);}
.fs0_c00082{font-size:66.240000px;}
.y0_c00082{bottom:0.000000px;}
.y24_c00082{bottom:215.490000px;}
.y23_c00082{bottom:236.550000px;}
.y22_c00082{bottom:266.430000px;}
.y21_c00082{bottom:296.490000px;}
.y20_c00082{bottom:326.550000px;}
.y1f_c00082{bottom:356.430000px;}
.y1e_c00082{bottom:386.490000px;}
.y1d_c00082{bottom:416.595000px;}
.y1c_c00082{bottom:446.475000px;}
.y1b_c00082{bottom:476.535000px;}
.y1a_c00082{bottom:506.595000px;}
.y19_c00082{bottom:536.475000px;}
.y18_c00082{bottom:566.535000px;}
.y17_c00082{bottom:596.595150px;}
.y16_c00082{bottom:617.475000px;}
.y15_c00082{bottom:647.565000px;}
.y14_c00082{bottom:677.625000px;}
.y13_c00082{bottom:707.505000px;}
.y12_c00082{bottom:737.565000px;}
.y11_c00082{bottom:767.625150px;}
.y10_c00082{bottom:788.505000px;}
.yf_c00082{bottom:818.565000px;}
.ye_c00082{bottom:848.625150px;}
.yd_c00082{bottom:869.505000px;}
.yc_c00082{bottom:890.565300px;}
.yb_c00082{bottom:911.670150px;}
.ya_c00082{bottom:932.550300px;}
.y9_c00082{bottom:953.610000px;}
.y8_c00082{bottom:983.670600px;}
.y7_c00082{bottom:1004.550450px;}
.y6_c00082{bottom:1025.610150px;}
.y5_c00082{bottom:1046.670450px;}
.y4_c00082{bottom:1067.550300px;}
.y3_c00082{bottom:1088.610000px;}
.y2_c00082{bottom:1118.670000px;}
.y1_c00082{bottom:1174.680000px;}
.h2_c00082{height:56.957344px;}
.h1_c00082{height:1263.000000px;}
.h0_c00082{height:1263.060000px;}
.w1_c00082{width:893.250000px;}
.w0_c00082{width:893.340000px;}
.x0_c00082{left:0.000000px;}
.x1_c00082{left:127.655850px;}
.x2_c00082{left:148.896150px;}
@media print{
.v0_c00082{vertical-align:0.000000pt;}
.ls0_c00082{letter-spacing:0.000000pt;}
.ws0_c00082{word-spacing:-14.720000pt;}
.ws1_c00082{word-spacing:0.000000pt;}
._0_c00082{margin-left:-1.061646pt;}
._3_c00082{width:1.094227pt;}
._4_c00082{width:2.295084pt;}
._6_c00082{width:3.594461pt;}
._8_c00082{width:4.591961pt;}
._9_c00082{width:5.710826pt;}
._7_c00082{width:8.627690pt;}
._5_c00082{width:9.714493pt;}
._a_c00082{width:70.446379pt;}
._2_c00082{width:79.861535pt;}
._b_c00082{width:751.768064pt;}
._1_c00082{width:1358.734561pt;}
.fs0_c00082{font-size:58.880000pt;}
.y0_c00082{bottom:0.000000pt;}
.y24_c00082{bottom:191.546667pt;}
.y23_c00082{bottom:210.266667pt;}
.y22_c00082{bottom:236.826667pt;}
.y21_c00082{bottom:263.546667pt;}
.y20_c00082{bottom:290.266667pt;}
.y1f_c00082{bottom:316.826667pt;}
.y1e_c00082{bottom:343.546667pt;}
.y1d_c00082{bottom:370.306667pt;}
.y1c_c00082{bottom:396.866667pt;}
.y1b_c00082{bottom:423.586667pt;}
.y1a_c00082{bottom:450.306667pt;}
.y19_c00082{bottom:476.866667pt;}
.y18_c00082{bottom:503.586667pt;}
.y17_c00082{bottom:530.306800pt;}
.y16_c00082{bottom:548.866667pt;}
.y15_c00082{bottom:575.613333pt;}
.y14_c00082{bottom:602.333333pt;}
.y13_c00082{bottom:628.893333pt;}
.y12_c00082{bottom:655.613333pt;}
.y11_c00082{bottom:682.333467pt;}
.y10_c00082{bottom:700.893333pt;}
.yf_c00082{bottom:727.613333pt;}
.ye_c00082{bottom:754.333467pt;}
.yd_c00082{bottom:772.893333pt;}
.yc_c00082{bottom:791.613600pt;}
.yb_c00082{bottom:810.373467pt;}
.ya_c00082{bottom:828.933600pt;}
.y9_c00082{bottom:847.653333pt;}
.y8_c00082{bottom:874.373867pt;}
.y7_c00082{bottom:892.933733pt;}
.y6_c00082{bottom:911.653467pt;}
.y5_c00082{bottom:930.373733pt;}
.y4_c00082{bottom:948.933600pt;}
.y3_c00082{bottom:967.653333pt;}
.y2_c00082{bottom:994.373333pt;}
.y1_c00082{bottom:1044.160000pt;}
.h2_c00082{height:50.628750pt;}
.h1_c00082{height:1122.666667pt;}
.h0_c00082{height:1122.720000pt;}
.w1_c00082{width:794.000000pt;}
.w0_c00082{width:794.080000pt;}
.x0_c00082{left:0.000000pt;}
.x1_c00082{left:113.471867pt;}
.x2_c00082{left:132.352133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bd3d6cf8ece1e05b1a4e269f.woff2')format("woff");}.ff1_c00083{font-family:ff1_c00083;line-height:1.070312;font-style:normal;font-weight:normal;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_b36c0a072f6e784a9a56075d.woff2')format("woff");}.ff2_c00083{font-family:ff2_c00083;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00083;src:url('chunks/assets/font_8b0701136755e70ca98120f9.woff2')format("woff");}.ff3_c00083{font-family:ff3_c00083;line-height:0.666504;font-style:normal;font-weight:normal;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_0f1ba9dbefce4231cd885e11.woff2')format("woff");}.ff4_c00083{font-family:ff4_c00083;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls3_c00083{letter-spacing:0.000000px;}
.ls0_c00083{letter-spacing:0.261600px;}
.ls1_c00083{letter-spacing:0.827040px;}
.ls2_c00083{letter-spacing:69.426480px;}
.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:-39.744000px;}
.ws1_c00083{word-spacing:-18.414720px;}
.ws2_c00083{word-spacing:-16.560000px;}
.ws0_c00083{word-spacing:-15.012000px;}
.ws4_c00083{word-spacing:0.000000px;}
._0_c00083{margin-left:-1.457091px;}
._5_c00083{width:1.435094px;}
._15_c00083{width:2.690002px;}
._16_c00083{width:3.958212px;}
._17_c00083{width:4.975278px;}
._a_c00083{width:6.026528px;}
._9_c00083{width:7.420063px;}
._e_c00083{width:8.808836px;}
._11_c00083{width:10.268951px;}
._10_c00083{width:11.329136px;}
._b_c00083{width:13.021989px;}
._c_c00083{width:14.095268px;}
._d_c00083{width:16.657772px;}
._3_c00083{width:20.269050px;}
._4_c00083{width:21.434610px;}
._18_c00083{width:24.243797px;}
._12_c00083{width:27.223779px;}
._7_c00083{width:28.982735px;}
._6_c00083{width:30.167895px;}
._19_c00083{width:32.721217px;}
._8_c00083{width:39.411306px;}
._14_c00083{width:51.758348px;}
._13_c00083{width:53.009129px;}
._f_c00083{width:79.252176px;}
._2_c00083{width:187.479128px;}
._1_c00083{width:1953.503549px;}
.fc0_c00083{color:rgb(0,0,0);}
.fs2_c00083{font-size:54.000000px;}
.fs0_c00083{font-size:66.240000px;}
.fs1_c00083{font-size:84.240000px;}
.y0_c00083{bottom:0.000000px;}
.y2b_c00083{bottom:131.400150px;}
.y2a_c00083{bottom:152.490450px;}
.y29_c00083{bottom:173.550150px;}
.y28_c00083{bottom:194.430000px;}
.y27_c00083{bottom:224.490450px;}
.y26_c00083{bottom:245.550150px;}
.y25_c00083{bottom:266.430000px;}
.y24_c00083{bottom:296.490000px;}
.y23_c00083{bottom:326.550000px;}
.y22_c00083{bottom:356.430000px;}
.y21_c00083{bottom:386.490300px;}
.y20_c00083{bottom:407.595150px;}
.y1f_c00083{bottom:428.475000px;}
.y1e_c00083{bottom:458.534250px;}
.y1d_c00083{bottom:479.594550px;}
.y1c_c00083{bottom:500.474400px;}
.y1b_c00083{bottom:521.534100px;}
.y1a_c00083{bottom:542.594400px;}
.y19_c00083{bottom:563.474250px;}
.y18_c00083{bottom:584.534550px;}
.y17_c00083{bottom:605.594850px;}
.y16_c00083{bottom:626.474700px;}
.y15_c00083{bottom:647.565000px;}
.y14_c00083{bottom:677.625000px;}
.y13_c00083{bottom:707.505000px;}
.y12_c00083{bottom:737.565000px;}
.y11_c00083{bottom:767.625000px;}
.y10_c00083{bottom:797.504700px;}
.yf_c00083{bottom:818.565000px;}
.ye_c00083{bottom:848.625150px;}
.yd_c00083{bottom:869.505000px;}
.yc_c00083{bottom:890.565300px;}
.yb_c00083{bottom:911.670150px;}
.ya_c00083{bottom:932.550000px;}
.y9_c00083{bottom:953.609700px;}
.y8_c00083{bottom:974.670000px;}
.y7_c00083{bottom:1004.549850px;}
.y6_c00083{bottom:1025.610150px;}
.y5_c00083{bottom:1046.670450px;}
.y4_c00083{bottom:1067.550300px;}
.y3_c00083{bottom:1088.610000px;}
.y2_c00083{bottom:1118.670000px;}
.y1_c00083{bottom:1174.680000px;}
.h2_c00083{height:56.957344px;}
.h3_c00083{height:61.329023px;}
.h1_c00083{height:1263.000000px;}
.h0_c00083{height:1263.060000px;}
.w1_c00083{width:893.250000px;}
.w0_c00083{width:893.340000px;}
.x0_c00083{left:0.000000px;}
.x1_c00083{left:127.655850px;}
.x2_c00083{left:148.896150px;}
.x3_c00083{left:159.510000px;}
@media print{
.v0_c00083{vertical-align:0.000000pt;}
.ls3_c00083{letter-spacing:0.000000pt;}
.ls0_c00083{letter-spacing:0.232533pt;}
.ls1_c00083{letter-spacing:0.735147pt;}
.ls2_c00083{letter-spacing:61.712427pt;}
.ws3_c00083{word-spacing:-35.328000pt;}
.ws1_c00083{word-spacing:-16.368640pt;}
.ws2_c00083{word-spacing:-14.720000pt;}
.ws0_c00083{word-spacing:-13.344000pt;}
.ws4_c00083{word-spacing:0.000000pt;}
._0_c00083{margin-left:-1.295192pt;}
._5_c00083{width:1.275639pt;}
._15_c00083{width:2.391113pt;}
._16_c00083{width:3.518411pt;}
._17_c00083{width:4.422469pt;}
._a_c00083{width:5.356914pt;}
._9_c00083{width:6.595612pt;}
._e_c00083{width:7.830077pt;}
._11_c00083{width:9.127956pt;}
._10_c00083{width:10.070344pt;}
._b_c00083{width:11.575101pt;}
._c_c00083{width:12.529127pt;}
._d_c00083{width:14.806908pt;}
._3_c00083{width:18.016933pt;}
._4_c00083{width:19.052986pt;}
._18_c00083{width:21.550042pt;}
._12_c00083{width:24.198915pt;}
._7_c00083{width:25.762431pt;}
._6_c00083{width:26.815906pt;}
._19_c00083{width:29.085527pt;}
._8_c00083{width:35.032272pt;}
._14_c00083{width:46.007420pt;}
._13_c00083{width:47.119226pt;}
._f_c00083{width:70.446379pt;}
._2_c00083{width:166.648114pt;}
._1_c00083{width:1736.447599pt;}
.fs2_c00083{font-size:48.000000pt;}
.fs0_c00083{font-size:58.880000pt;}
.fs1_c00083{font-size:74.880000pt;}
.y0_c00083{bottom:0.000000pt;}
.y2b_c00083{bottom:116.800133pt;}
.y2a_c00083{bottom:135.547067pt;}
.y29_c00083{bottom:154.266800pt;}
.y28_c00083{bottom:172.826667pt;}
.y27_c00083{bottom:199.547067pt;}
.y26_c00083{bottom:218.266800pt;}
.y25_c00083{bottom:236.826667pt;}
.y24_c00083{bottom:263.546667pt;}
.y23_c00083{bottom:290.266667pt;}
.y22_c00083{bottom:316.826667pt;}
.y21_c00083{bottom:343.546933pt;}
.y20_c00083{bottom:362.306800pt;}
.y1f_c00083{bottom:380.866667pt;}
.y1e_c00083{bottom:407.586000pt;}
.y1d_c00083{bottom:426.306267pt;}
.y1c_c00083{bottom:444.866133pt;}
.y1b_c00083{bottom:463.585867pt;}
.y1a_c00083{bottom:482.306133pt;}
.y19_c00083{bottom:500.866000pt;}
.y18_c00083{bottom:519.586267pt;}
.y17_c00083{bottom:538.306533pt;}
.y16_c00083{bottom:556.866400pt;}
.y15_c00083{bottom:575.613333pt;}
.y14_c00083{bottom:602.333333pt;}
.y13_c00083{bottom:628.893333pt;}
.y12_c00083{bottom:655.613333pt;}
.y11_c00083{bottom:682.333333pt;}
.y10_c00083{bottom:708.893067pt;}
.yf_c00083{bottom:727.613333pt;}
.ye_c00083{bottom:754.333467pt;}
.yd_c00083{bottom:772.893333pt;}
.yc_c00083{bottom:791.613600pt;}
.yb_c00083{bottom:810.373467pt;}
.ya_c00083{bottom:828.933333pt;}
.y9_c00083{bottom:847.653067pt;}
.y8_c00083{bottom:866.373333pt;}
.y7_c00083{bottom:892.933200pt;}
.y6_c00083{bottom:911.653467pt;}
.y5_c00083{bottom:930.373733pt;}
.y4_c00083{bottom:948.933600pt;}
.y3_c00083{bottom:967.653333pt;}
.y2_c00083{bottom:994.373333pt;}
.y1_c00083{bottom:1044.160000pt;}
.h2_c00083{height:50.628750pt;}
.h3_c00083{height:54.514688pt;}
.h1_c00083{height:1122.666667pt;}
.h0_c00083{height:1122.720000pt;}
.w1_c00083{width:794.000000pt;}
.w0_c00083{width:794.080000pt;}
.x0_c00083{left:0.000000pt;}
.x1_c00083{left:113.471867pt;}
.x2_c00083{left:132.352133pt;}
.x3_c00083{left:141.786667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7c07a8840ff3c3388f456ac2.woff2')format("woff");}.ff1_c00084{font-family:ff1_c00084;line-height:1.070312;font-style:normal;font-weight:normal;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_332f168a148f8d86749a7371.woff2')format("woff");}.ff2_c00084{font-family:ff2_c00084;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00084;src:url('chunks/assets/font_8b0701136755e70ca98120f9.woff2')format("woff");}.ff3_c00084{font-family:ff3_c00084;line-height:0.666504;font-style:normal;font-weight:normal;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_0f1ba9dbefce4231cd885e11.woff2')format("woff");}.ff4_c00084{font-family:ff4_c00084;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00084;src:url('chunks/assets/font_4a8b6532f4df7617a9c0d365.woff2')format("woff");}.ff5_c00084{font-family:ff5_c00084;line-height:0.938965;font-style: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);}
.m1_c00084{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_c00084{vertical-align:0.000000px;}
.ls3_c00084{letter-spacing:0.000000px;}
.ls1_c00084{letter-spacing:0.261600px;}
.ls2_c00084{letter-spacing:21.709860px;}
.ls0_c00084{letter-spacing:69.426480px;}
.sc__c00084{text-shadow:none;}
.sc0_c00084{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00084{-webkit-text-stroke:0px transparent;}
.sc0_c00084{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00084{word-spacing:-39.744000px;}
.ws4_c00084{word-spacing:-36.829440px;}
.ws2_c00084{word-spacing:-18.414720px;}
.ws0_c00084{word-spacing:-16.560000px;}
.ws3_c00084{word-spacing:-15.012000px;}
.ws5_c00084{word-spacing:0.000000px;}
._0_c00084{margin-left:-1.457091px;}
._4_c00084{width:1.495692px;}
._11_c00084{width:2.510927px;}
._3_c00084{width:3.708325px;}
._9_c00084{width:5.101894px;}
._2_c00084{width:6.491030px;}
._7_c00084{width:7.687104px;}
._d_c00084{width:8.811797px;}
._e_c00084{width:9.935517px;}
._b_c00084{width:11.260062px;}
._c_c00084{width:13.513027px;}
._a_c00084{width:20.469591px;}
._8_c00084{width:22.480503px;}
._10_c00084{width:32.654044px;}
._f_c00084{width:33.714818px;}
._5_c00084{width:62.288245px;}
._6_c00084{width:79.252176px;}
._1_c00084{width:1953.503549px;}
.fc0_c00084{color:rgb(0,0,0);}
.fs1_c00084{font-size:54.000000px;}
.fs0_c00084{font-size:66.240000px;}
.y0_c00084{bottom:0.000000px;}
.y2b_c00084{bottom:104.400300px;}
.y2a_c00084{bottom:125.460000px;}
.y29_c00084{bottom:146.556150px;}
.y28_c00084{bottom:167.430150px;}
.y27_c00084{bottom:188.490450px;}
.y26_c00084{bottom:209.550150px;}
.y25_c00084{bottom:230.430000px;}
.y24_c00084{bottom:251.490300px;}
.y23_c00084{bottom:272.550000px;}
.y22_c00084{bottom:302.430000px;}
.y21_c00084{bottom:323.490300px;}
.y20_c00084{bottom:344.550000px;}
.y1f_c00084{bottom:365.429850px;}
.y1e_c00084{bottom:386.490150px;}
.y1d_c00084{bottom:407.595000px;}
.y1c_c00084{bottom:437.475600px;}
.y1b_c00084{bottom:458.535300px;}
.y1a_c00084{bottom:479.595600px;}
.y19_c00084{bottom:500.475450px;}
.y18_c00084{bottom:521.535150px;}
.y17_c00084{bottom:542.595450px;}
.y16_c00084{bottom:563.475300px;}
.y15_c00084{bottom:584.535000px;}
.y14_c00084{bottom:614.595000px;}
.y13_c00084{bottom:635.474850px;}
.y12_c00084{bottom:656.565150px;}
.y11_c00084{bottom:677.624850px;}
.y10_c00084{bottom:698.504700px;}
.yf_c00084{bottom:719.565000px;}
.ye_c00084{bottom:749.625000px;}
.yd_c00084{bottom:779.505000px;}
.yc_c00084{bottom:809.565000px;}
.yb_c00084{bottom:839.625000px;}
.ya_c00084{bottom:869.505000px;}
.y9_c00084{bottom:899.610000px;}
.y8_c00084{bottom:929.670000px;}
.y7_c00084{bottom:959.550000px;}
.y6_c00084{bottom:989.610000px;}
.y5_c00084{bottom:1019.670000px;}
.y4_c00084{bottom:1076.550000px;}
.y3_c00084{bottom:1097.609700px;}
.y2_c00084{bottom:1118.670000px;}
.y1_c00084{bottom:1174.680000px;}
.h3_c00084{height:48.224531px;}
.h2_c00084{height:56.957344px;}
.h1_c00084{height:1263.000000px;}
.h0_c00084{height:1263.060000px;}
.w1_c00084{width:893.250000px;}
.w0_c00084{width:893.340000px;}
.x0_c00084{left:0.000000px;}
.x1_c00084{left:127.655850px;}
.x2_c00084{left:148.896150px;}
.x3_c00084{left:159.510000px;}
@media print{
.v0_c00084{vertical-align:0.000000pt;}
.ls3_c00084{letter-spacing:0.000000pt;}
.ls1_c00084{letter-spacing:0.232533pt;}
.ls2_c00084{letter-spacing:19.297653pt;}
.ls0_c00084{letter-spacing:61.712427pt;}
.ws1_c00084{word-spacing:-35.328000pt;}
.ws4_c00084{word-spacing:-32.737280pt;}
.ws2_c00084{word-spacing:-16.368640pt;}
.ws0_c00084{word-spacing:-14.720000pt;}
.ws3_c00084{word-spacing:-13.344000pt;}
.ws5_c00084{word-spacing:0.000000pt;}
._0_c00084{margin-left:-1.295192pt;}
._4_c00084{width:1.329504pt;}
._11_c00084{width:2.231935pt;}
._3_c00084{width:3.296288pt;}
._9_c00084{width:4.535017pt;}
._2_c00084{width:5.769804pt;}
._7_c00084{width:6.832981pt;}
._d_c00084{width:7.832709pt;}
._e_c00084{width:8.831571pt;}
._b_c00084{width:10.008944pt;}
._c_c00084{width:12.011579pt;}
._a_c00084{width:18.195192pt;}
._8_c00084{width:19.982670pt;}
._10_c00084{width:29.025817pt;}
._f_c00084{width:29.968727pt;}
._5_c00084{width:55.367329pt;}
._6_c00084{width:70.446379pt;}
._1_c00084{width:1736.447599pt;}
.fs1_c00084{font-size:48.000000pt;}
.fs0_c00084{font-size:58.880000pt;}
.y0_c00084{bottom:0.000000pt;}
.y2b_c00084{bottom:92.800267pt;}
.y2a_c00084{bottom:111.520000pt;}
.y29_c00084{bottom:130.272133pt;}
.y28_c00084{bottom:148.826800pt;}
.y27_c00084{bottom:167.547067pt;}
.y26_c00084{bottom:186.266800pt;}
.y25_c00084{bottom:204.826667pt;}
.y24_c00084{bottom:223.546933pt;}
.y23_c00084{bottom:242.266667pt;}
.y22_c00084{bottom:268.826667pt;}
.y21_c00084{bottom:287.546933pt;}
.y20_c00084{bottom:306.266667pt;}
.y1f_c00084{bottom:324.826533pt;}
.y1e_c00084{bottom:343.546800pt;}
.y1d_c00084{bottom:362.306667pt;}
.y1c_c00084{bottom:388.867200pt;}
.y1b_c00084{bottom:407.586933pt;}
.y1a_c00084{bottom:426.307200pt;}
.y19_c00084{bottom:444.867067pt;}
.y18_c00084{bottom:463.586800pt;}
.y17_c00084{bottom:482.307067pt;}
.y16_c00084{bottom:500.866933pt;}
.y15_c00084{bottom:519.586667pt;}
.y14_c00084{bottom:546.306667pt;}
.y13_c00084{bottom:564.866533pt;}
.y12_c00084{bottom:583.613467pt;}
.y11_c00084{bottom:602.333200pt;}
.y10_c00084{bottom:620.893067pt;}
.yf_c00084{bottom:639.613333pt;}
.ye_c00084{bottom:666.333333pt;}
.yd_c00084{bottom:692.893333pt;}
.yc_c00084{bottom:719.613333pt;}
.yb_c00084{bottom:746.333333pt;}
.ya_c00084{bottom:772.893333pt;}
.y9_c00084{bottom:799.653333pt;}
.y8_c00084{bottom:826.373333pt;}
.y7_c00084{bottom:852.933333pt;}
.y6_c00084{bottom:879.653333pt;}
.y5_c00084{bottom:906.373333pt;}
.y4_c00084{bottom:956.933333pt;}
.y3_c00084{bottom:975.653067pt;}
.y2_c00084{bottom:994.373333pt;}
.y1_c00084{bottom:1044.160000pt;}
.h3_c00084{height:42.866250pt;}
.h2_c00084{height:50.628750pt;}
.h1_c00084{height:1122.666667pt;}
.h0_c00084{height:1122.720000pt;}
.w1_c00084{width:794.000000pt;}
.w0_c00084{width:794.080000pt;}
.x0_c00084{left:0.000000pt;}
.x1_c00084{left:113.471867pt;}
.x2_c00084{left:132.352133pt;}
.x3_c00084{left:141.786667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c4aa3f089a99b8849263a42b.woff2')format("woff");}.ff1_c00085{font-family:ff1_c00085;line-height:1.070312;font-style:normal;font-weight:normal;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_990706accdc0e9400e128de5.woff2')format("woff");}.ff2_c00085{font-family:ff2_c00085;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00085{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00085{transform:matrix(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_c00085{vertical-align:0.000000px;}
.ls1_c00085{letter-spacing:0.000000px;}
.ls0_c00085{letter-spacing:0.353760px;}
.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;}
}
.ws1_c00085{word-spacing:-36.829440px;}
.ws0_c00085{word-spacing:-15.012000px;}
.ws2_c00085{word-spacing:0.000000px;}
._d_c00085{margin-left:-3.378661px;}
._0_c00085{margin-left:-1.457091px;}
._4_c00085{width:1.107535px;}
._12_c00085{width:2.203862px;}
._2_c00085{width:3.310788px;}
._3_c00085{width:4.374668px;}
._11_c00085{width:5.429264px;}
._10_c00085{width:7.020073px;}
._9_c00085{width:9.235949px;}
._8_c00085{width:10.530020px;}
._c_c00085{width:12.516947px;}
._6_c00085{width:13.878858px;}
._7_c00085{width:15.428563px;}
._5_c00085{width:16.956741px;}
._f_c00085{width:19.673929px;}
._e_c00085{width:21.200074px;}
._b_c00085{width:23.930032px;}
._a_c00085{width:25.138379px;}
._1_c00085{width:1953.503549px;}
.fc0_c00085{color:rgb(0,0,0);}
.fs1_c00085{font-size:54.000000px;}
.fs0_c00085{font-size:66.240000px;}
.y0_c00085{bottom:0.000000px;}
.y2d_c00085{bottom:134.459700px;}
.y2c_c00085{bottom:164.550450px;}
.y2b_c00085{bottom:185.430300px;}
.y2a_c00085{bottom:206.490600px;}
.y29_c00085{bottom:227.550300px;}
.y28_c00085{bottom:248.430150px;}
.y27_c00085{bottom:269.490450px;}
.y26_c00085{bottom:290.550150px;}
.y25_c00085{bottom:311.430000px;}
.y24_c00085{bottom:332.490300px;}
.y23_c00085{bottom:353.550000px;}
.y22_c00085{bottom:383.429850px;}
.y21_c00085{bottom:404.534700px;}
.y20_c00085{bottom:425.595000px;}
.y1f_c00085{bottom:455.475300px;}
.y1e_c00085{bottom:476.535000px;}
.y1d_c00085{bottom:506.595300px;}
.y1c_c00085{bottom:527.475150px;}
.y1b_c00085{bottom:548.534850px;}
.y1a_c00085{bottom:569.595150px;}
.y19_c00085{bottom:590.475000px;}
.y18_c00085{bottom:620.534700px;}
.y17_c00085{bottom:641.625000px;}
.y16_c00085{bottom:671.505150px;}
.y15_c00085{bottom:692.565450px;}
.y14_c00085{bottom:713.625150px;}
.y13_c00085{bottom:734.505000px;}
.y12_c00085{bottom:764.565600px;}
.y11_c00085{bottom:785.625300px;}
.y10_c00085{bottom:806.505150px;}
.yf_c00085{bottom:827.565450px;}
.ye_c00085{bottom:848.625150px;}
.yd_c00085{bottom:869.505000px;}
.yc_c00085{bottom:899.610000px;}
.yb_c00085{bottom:920.670300px;}
.ya_c00085{bottom:941.550150px;}
.y9_c00085{bottom:962.609850px;}
.y8_c00085{bottom:983.670150px;}
.y7_c00085{bottom:1004.550000px;}
.y6_c00085{bottom:1025.609700px;}
.y5_c00085{bottom:1046.670000px;}
.y4_c00085{bottom:1076.550000px;}
.y3_c00085{bottom:1097.609700px;}
.y2_c00085{bottom:1118.670000px;}
.y1_c00085{bottom:1174.680000px;}
.h2_c00085{height:56.957344px;}
.h1_c00085{height:1263.000000px;}
.h0_c00085{height:1263.060000px;}
.w1_c00085{width:893.250000px;}
.w0_c00085{width:893.340000px;}
.x0_c00085{left:0.000000px;}
.x1_c00085{left:127.655850px;}
.x2_c00085{left:148.896150px;}
@media print{
.v0_c00085{vertical-align:0.000000pt;}
.ls1_c00085{letter-spacing:0.000000pt;}
.ls0_c00085{letter-spacing:0.314453pt;}
.ws1_c00085{word-spacing:-32.737280pt;}
.ws0_c00085{word-spacing:-13.344000pt;}
.ws2_c00085{word-spacing:0.000000pt;}
._d_c00085{margin-left:-3.003254pt;}
._0_c00085{margin-left:-1.295192pt;}
._4_c00085{width:0.984476pt;}
._12_c00085{width:1.958988pt;}
._2_c00085{width:2.942923pt;}
._3_c00085{width:3.888594pt;}
._11_c00085{width:4.826012pt;}
._10_c00085{width:6.240065pt;}
._9_c00085{width:8.209732pt;}
._8_c00085{width:9.360018pt;}
._c_c00085{width:11.126175pt;}
._6_c00085{width:12.336763pt;}
._7_c00085{width:13.714278pt;}
._5_c00085{width:15.072659pt;}
._f_c00085{width:17.487937pt;}
._e_c00085{width:18.844510pt;}
._b_c00085{width:21.271140pt;}
._a_c00085{width:22.345226pt;}
._1_c00085{width:1736.447599pt;}
.fs1_c00085{font-size:48.000000pt;}
.fs0_c00085{font-size:58.880000pt;}
.y0_c00085{bottom:0.000000pt;}
.y2d_c00085{bottom:119.519733pt;}
.y2c_c00085{bottom:146.267067pt;}
.y2b_c00085{bottom:164.826933pt;}
.y2a_c00085{bottom:183.547200pt;}
.y29_c00085{bottom:202.266933pt;}
.y28_c00085{bottom:220.826800pt;}
.y27_c00085{bottom:239.547067pt;}
.y26_c00085{bottom:258.266800pt;}
.y25_c00085{bottom:276.826667pt;}
.y24_c00085{bottom:295.546933pt;}
.y23_c00085{bottom:314.266667pt;}
.y22_c00085{bottom:340.826533pt;}
.y21_c00085{bottom:359.586400pt;}
.y20_c00085{bottom:378.306667pt;}
.y1f_c00085{bottom:404.866933pt;}
.y1e_c00085{bottom:423.586667pt;}
.y1d_c00085{bottom:450.306933pt;}
.y1c_c00085{bottom:468.866800pt;}
.y1b_c00085{bottom:487.586533pt;}
.y1a_c00085{bottom:506.306800pt;}
.y19_c00085{bottom:524.866667pt;}
.y18_c00085{bottom:551.586400pt;}
.y17_c00085{bottom:570.333333pt;}
.y16_c00085{bottom:596.893467pt;}
.y15_c00085{bottom:615.613733pt;}
.y14_c00085{bottom:634.333467pt;}
.y13_c00085{bottom:652.893333pt;}
.y12_c00085{bottom:679.613867pt;}
.y11_c00085{bottom:698.333600pt;}
.y10_c00085{bottom:716.893467pt;}
.yf_c00085{bottom:735.613733pt;}
.ye_c00085{bottom:754.333467pt;}
.yd_c00085{bottom:772.893333pt;}
.yc_c00085{bottom:799.653333pt;}
.yb_c00085{bottom:818.373600pt;}
.ya_c00085{bottom:836.933467pt;}
.y9_c00085{bottom:855.653200pt;}
.y8_c00085{bottom:874.373467pt;}
.y7_c00085{bottom:892.933333pt;}
.y6_c00085{bottom:911.653067pt;}
.y5_c00085{bottom:930.373333pt;}
.y4_c00085{bottom:956.933333pt;}
.y3_c00085{bottom:975.653067pt;}
.y2_c00085{bottom:994.373333pt;}
.y1_c00085{bottom:1044.160000pt;}
.h2_c00085{height:50.628750pt;}
.h1_c00085{height:1122.666667pt;}
.h0_c00085{height:1122.720000pt;}
.w1_c00085{width:794.000000pt;}
.w0_c00085{width:794.080000pt;}
.x0_c00085{left:0.000000pt;}
.x1_c00085{left:113.471867pt;}
.x2_c00085{left:132.352133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_911b7d9eb701fac9ae9cb4ee.woff2')format("woff");}.ff1_c00086{font-family:ff1_c00086;line-height:1.070312;font-style:normal;font-weight:normal;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_990706accdc0e9400e128de5.woff2')format("woff");}.ff2_c00086{font-family:ff2_c00086;line-height:0.938965;font-style:normal;font-weight:normal;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_91fe91bc6426cb86af5013f5.woff2')format("woff");}.ff3_c00086{font-family:ff3_c00086;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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);}
.m1_c00086{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_c00086{vertical-align:0.000000px;}
.ls1_c00086{letter-spacing:0.000000px;}
.ls0_c00086{letter-spacing:0.353760px;}
.sc__c00086{text-shadow:none;}
.sc0_c00086{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00086{-webkit-text-stroke:0px transparent;}
.sc0_c00086{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00086{word-spacing:-36.829440px;}
.ws1_c00086{word-spacing:0.000000px;}
._8_c00086{margin-left:-8.364605px;}
._7_c00086{margin-left:-5.735581px;}
._d_c00086{margin-left:-4.440846px;}
._6_c00086{margin-left:-3.181579px;}
._0_c00086{margin-left:-1.457091px;}
._9_c00086{width:1.048072px;}
._b_c00086{width:2.059705px;}
._2_c00086{width:3.514641px;}
._c_c00086{width:4.846868px;}
._e_c00086{width:6.048783px;}
._a_c00086{width:10.466011px;}
._4_c00086{width:11.590251px;}
._3_c00086{width:13.048300px;}
._5_c00086{width:14.078682px;}
._f_c00086{width:15.434266px;}
._10_c00086{width:16.559483px;}
._11_c00086{width:21.064296px;}
._12_c00086{width:22.258730px;}
._16_c00086{width:35.866593px;}
._14_c00086{width:44.508064px;}
._15_c00086{width:112.624560px;}
._17_c00086{width:121.265568px;}
._13_c00086{width:845.765568px;}
._1_c00086{width:1953.503549px;}
.fc1_c00086{color:rgb(255,0,0);}
.fc0_c00086{color:rgb(0,0,0);}
.fs1_c00086{font-size:54.000000px;}
.fs0_c00086{font-size:66.240000px;}
.y0_c00086{bottom:0.000000px;}
.y1c_c00086{bottom:4.110000px;}
.y18_c00086{bottom:97.559700px;}
.y17_c00086{bottom:118.620150px;}
.y16_c00086{bottom:148.535700px;}
.y15_c00086{bottom:178.590000px;}
.y14_c00086{bottom:208.650000px;}
.y13_c00086{bottom:229.529850px;}
.y12_c00086{bottom:250.590150px;}
.y11_c00086{bottom:271.649850px;}
.y10_c00086{bottom:292.529700px;}
.yf_c00086{bottom:313.590000px;}
.ye_c00086{bottom:343.650300px;}
.yd_c00086{bottom:364.530150px;}
.yc_c00086{bottom:385.590450px;}
.yb_c00086{bottom:406.695300px;}
.ya_c00086{bottom:427.575150px;}
.y9_c00086{bottom:448.634850px;}
.y8_c00086{bottom:469.695150px;}
.y7_c00086{bottom:490.575300px;}
.y6_c00086{bottom:511.635000px;}
.y5_c00086{bottom:541.695000px;}
.y4_c00086{bottom:580.575000px;}
.y3_c00086{bottom:601.634700px;}
.y2_c00086{bottom:622.695000px;}
.y1b_c00086{bottom:1039.500000px;}
.y1a_c00086{bottom:1073.670000px;}
.y19_c00086{bottom:1103.730000px;}
.y1_c00086{bottom:1174.680000px;}
.h3_c00086{height:48.224531px;}
.h2_c00086{height:56.957344px;}
.h4_c00086{height:90.000000px;}
.h1_c00086{height:1263.000000px;}
.h0_c00086{height:1263.060000px;}
.w2_c00086{width:211.680000px;}
.w1_c00086{width:893.250000px;}
.w0_c00086{width:893.340000px;}
.x0_c00086{left:0.000000px;}
.x6_c00086{left:10.835700px;}
.x1_c00086{left:127.655850px;}
.x5_c00086{left:138.455850px;}
.x3_c00086{left:148.896150px;}
.x4_c00086{left:191.550000px;}
.x2_c00086{left:234.030750px;}
@media print{
.v0_c00086{vertical-align:0.000000pt;}
.ls1_c00086{letter-spacing:0.000000pt;}
.ls0_c00086{letter-spacing:0.314453pt;}
.ws0_c00086{word-spacing:-32.737280pt;}
.ws1_c00086{word-spacing:0.000000pt;}
._8_c00086{margin-left:-7.435204pt;}
._7_c00086{margin-left:-5.098294pt;}
._d_c00086{margin-left:-3.947418pt;}
._6_c00086{margin-left:-2.828070pt;}
._0_c00086{margin-left:-1.295192pt;}
._9_c00086{width:0.931620pt;}
._b_c00086{width:1.830849pt;}
._2_c00086{width:3.124125pt;}
._c_c00086{width:4.308327pt;}
._e_c00086{width:5.376696pt;}
._a_c00086{width:9.303121pt;}
._4_c00086{width:10.302446pt;}
._3_c00086{width:11.598489pt;}
._5_c00086{width:12.514384pt;}
._f_c00086{width:13.719348pt;}
._10_c00086{width:14.719540pt;}
._11_c00086{width:18.723819pt;}
._12_c00086{width:19.785538pt;}
._16_c00086{width:31.881416pt;}
._14_c00086{width:39.562724pt;}
._15_c00086{width:100.110720pt;}
._17_c00086{width:107.791616pt;}
._13_c00086{width:751.791616pt;}
._1_c00086{width:1736.447599pt;}
.fs1_c00086{font-size:48.000000pt;}
.fs0_c00086{font-size:58.880000pt;}
.y0_c00086{bottom:0.000000pt;}
.y1c_c00086{bottom:3.653333pt;}
.y18_c00086{bottom:86.719733pt;}
.y17_c00086{bottom:105.440133pt;}
.y16_c00086{bottom:132.031733pt;}
.y15_c00086{bottom:158.746667pt;}
.y14_c00086{bottom:185.466667pt;}
.y13_c00086{bottom:204.026533pt;}
.y12_c00086{bottom:222.746800pt;}
.y11_c00086{bottom:241.466533pt;}
.y10_c00086{bottom:260.026400pt;}
.yf_c00086{bottom:278.746667pt;}
.ye_c00086{bottom:305.466933pt;}
.yd_c00086{bottom:324.026800pt;}
.yc_c00086{bottom:342.747067pt;}
.yb_c00086{bottom:361.506933pt;}
.ya_c00086{bottom:380.066800pt;}
.y9_c00086{bottom:398.786533pt;}
.y8_c00086{bottom:417.506800pt;}
.y7_c00086{bottom:436.066933pt;}
.y6_c00086{bottom:454.786667pt;}
.y5_c00086{bottom:481.506667pt;}
.y4_c00086{bottom:516.066667pt;}
.y3_c00086{bottom:534.786400pt;}
.y2_c00086{bottom:553.506667pt;}
.y1b_c00086{bottom:924.000000pt;}
.y1a_c00086{bottom:954.373333pt;}
.y19_c00086{bottom:981.093333pt;}
.y1_c00086{bottom:1044.160000pt;}
.h3_c00086{height:42.866250pt;}
.h2_c00086{height:50.628750pt;}
.h4_c00086{height:80.000000pt;}
.h1_c00086{height:1122.666667pt;}
.h0_c00086{height:1122.720000pt;}
.w2_c00086{width:188.160000pt;}
.w1_c00086{width:794.000000pt;}
.w0_c00086{width:794.080000pt;}
.x0_c00086{left:0.000000pt;}
.x6_c00086{left:9.631733pt;}
.x1_c00086{left:113.471867pt;}
.x5_c00086{left:123.071867pt;}
.x3_c00086{left:132.352133pt;}
.x4_c00086{left:170.266667pt;}
.x2_c00086{left:208.027333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ad87e7530b53ac2aca951e28.woff2')format("woff");}.ff1_c00087{font-family:ff1_c00087;line-height:1.070312;font-style:normal;font-weight:normal;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_514433efa992a6c60e03505f.woff2')format("woff");}.ff2_c00087{font-family:ff2_c00087;line-height:0.938965;font-style:normal;font-weight:normal;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_6173c6f7480b41f913789646.woff2')format("woff");}.ff3_c00087{font-family:ff3_c00087;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls0_c00087{letter-spacing:0.000000px;}
.sc__c00087{text-shadow:none;}
.sc0_c00087{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00087{-webkit-text-stroke:0px transparent;}
.sc0_c00087{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00087{word-spacing:-36.829440px;}
.ws1_c00087{word-spacing:0.000000px;}
._f_c00087{margin-left:-4.415514px;}
._14_c00087{margin-left:-2.583045px;}
._0_c00087{margin-left:-1.457091px;}
._b_c00087{width:1.071396px;}
._c_c00087{width:2.134458px;}
._2_c00087{width:3.514641px;}
._12_c00087{width:4.911675px;}
._9_c00087{width:6.390820px;}
._a_c00087{width:7.816381px;}
._4_c00087{width:11.590251px;}
._3_c00087{width:13.048300px;}
._5_c00087{width:14.078682px;}
._13_c00087{width:15.792272px;}
._d_c00087{width:20.401958px;}
._e_c00087{width:28.219342px;}
._6_c00087{width:29.541192px;}
._7_c00087{width:30.871640px;}
._10_c00087{width:32.124448px;}
._11_c00087{width:33.342470px;}
._17_c00087{width:35.866593px;}
._15_c00087{width:44.505680px;}
._8_c00087{width:62.288245px;}
._16_c00087{width:112.624560px;}
._18_c00087{width:121.263581px;}
._1_c00087{width:1953.503549px;}
.fc0_c00087{color:rgb(0,0,0);}
.fs1_c00087{font-size:54.000000px;}
.fs0_c00087{font-size:66.240000px;}
.y0_c00087{bottom:0.000000px;}
.y1c_c00087{bottom:6.300000px;}
.y1b_c00087{bottom:36.180000px;}
.y1a_c00087{bottom:66.240000px;}
.y18_c00087{bottom:97.559550px;}
.y17_c00087{bottom:118.619850px;}
.y16_c00087{bottom:139.716000px;}
.y15_c00087{bottom:160.590000px;}
.y14_c00087{bottom:190.650750px;}
.y13_c00087{bottom:211.710450px;}
.y12_c00087{bottom:232.590900px;}
.y11_c00087{bottom:253.650600px;}
.y10_c00087{bottom:274.710300px;}
.yf_c00087{bottom:295.590750px;}
.ye_c00087{bottom:316.650450px;}
.yd_c00087{bottom:337.710150px;}
.yc_c00087{bottom:358.590600px;}
.yb_c00087{bottom:379.650300px;}
.ya_c00087{bottom:400.755150px;}
.y9_c00087{bottom:421.635000px;}
.y8_c00087{bottom:442.695300px;}
.y7_c00087{bottom:463.755000px;}
.y6_c00087{bottom:493.635000px;}
.y5_c00087{bottom:550.695000px;}
.y4_c00087{bottom:589.575000px;}
.y3_c00087{bottom:610.634700px;}
.y2_c00087{bottom:631.695000px;}
.y19_c00087{bottom:1037.490000px;}
.y1_c00087{bottom:1174.680000px;}
.h3_c00087{height:48.224531px;}
.h2_c00087{height:56.957344px;}
.h4_c00087{height:91.979850px;}
.h1_c00087{height:1263.000000px;}
.h0_c00087{height:1263.060000px;}
.w2_c00087{width:207.030000px;}
.w1_c00087{width:893.250000px;}
.w0_c00087{width:893.340000px;}
.x0_c00087{left:0.000000px;}
.x4_c00087{left:10.800000px;}
.x1_c00087{left:127.655850px;}
.x3_c00087{left:148.896150px;}
.x2_c00087{left:234.030750px;}
@media print{
.v0_c00087{vertical-align:0.000000pt;}
.ls0_c00087{letter-spacing:0.000000pt;}
.ws0_c00087{word-spacing:-32.737280pt;}
.ws1_c00087{word-spacing:0.000000pt;}
._f_c00087{margin-left:-3.924901pt;}
._14_c00087{margin-left:-2.296040pt;}
._0_c00087{margin-left:-1.295192pt;}
._b_c00087{width:0.952352pt;}
._c_c00087{width:1.897296pt;}
._2_c00087{width:3.124125pt;}
._12_c00087{width:4.365933pt;}
._9_c00087{width:5.680729pt;}
._a_c00087{width:6.947894pt;}
._4_c00087{width:10.302446pt;}
._3_c00087{width:11.598489pt;}
._5_c00087{width:12.514384pt;}
._13_c00087{width:14.037575pt;}
._d_c00087{width:18.135074pt;}
._e_c00087{width:25.083860pt;}
._6_c00087{width:26.258837pt;}
._7_c00087{width:27.441457pt;}
._10_c00087{width:28.555065pt;}
._11_c00087{width:29.637751pt;}
._17_c00087{width:31.881416pt;}
._15_c00087{width:39.560604pt;}
._8_c00087{width:55.367329pt;}
._16_c00087{width:100.110720pt;}
._18_c00087{width:107.789850pt;}
._1_c00087{width:1736.447599pt;}
.fs1_c00087{font-size:48.000000pt;}
.fs0_c00087{font-size:58.880000pt;}
.y0_c00087{bottom:0.000000pt;}
.y1c_c00087{bottom:5.600000pt;}
.y1b_c00087{bottom:32.160000pt;}
.y1a_c00087{bottom:58.880000pt;}
.y18_c00087{bottom:86.719600pt;}
.y17_c00087{bottom:105.439867pt;}
.y16_c00087{bottom:124.192000pt;}
.y15_c00087{bottom:142.746667pt;}
.y14_c00087{bottom:169.467333pt;}
.y13_c00087{bottom:188.187067pt;}
.y12_c00087{bottom:206.747467pt;}
.y11_c00087{bottom:225.467200pt;}
.y10_c00087{bottom:244.186933pt;}
.yf_c00087{bottom:262.747333pt;}
.ye_c00087{bottom:281.467067pt;}
.yd_c00087{bottom:300.186800pt;}
.yc_c00087{bottom:318.747200pt;}
.yb_c00087{bottom:337.466933pt;}
.ya_c00087{bottom:356.226800pt;}
.y9_c00087{bottom:374.786667pt;}
.y8_c00087{bottom:393.506933pt;}
.y7_c00087{bottom:412.226667pt;}
.y6_c00087{bottom:438.786667pt;}
.y5_c00087{bottom:489.506667pt;}
.y4_c00087{bottom:524.066667pt;}
.y3_c00087{bottom:542.786400pt;}
.y2_c00087{bottom:561.506667pt;}
.y19_c00087{bottom:922.213333pt;}
.y1_c00087{bottom:1044.160000pt;}
.h3_c00087{height:42.866250pt;}
.h2_c00087{height:50.628750pt;}
.h4_c00087{height:81.759867pt;}
.h1_c00087{height:1122.666667pt;}
.h0_c00087{height:1122.720000pt;}
.w2_c00087{width:184.026667pt;}
.w1_c00087{width:794.000000pt;}
.w0_c00087{width:794.080000pt;}
.x0_c00087{left:0.000000pt;}
.x4_c00087{left:9.600000pt;}
.x1_c00087{left:113.471867pt;}
.x3_c00087{left:132.352133pt;}
.x2_c00087{left:208.027333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_267697159212db90d07d24ac.woff2')format("woff");}.ff1_c00088{font-family:ff1_c00088;line-height:1.070312;font-style: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);}
.m1_c00088{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_c00088{vertical-align:0.000000px;}
.ls0_c00088{letter-spacing:0.000000px;}
.sc__c00088{text-shadow:none;}
.sc0_c00088{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00088{-webkit-text-stroke:0px transparent;}
.sc0_c00088{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00088{word-spacing:-18.414720px;}
.ws1_c00088{word-spacing:-15.012000px;}
.ws2_c00088{word-spacing:0.000000px;}
._a_c00088{margin-left:-4.172884px;}
._10_c00088{margin-left:-3.146985px;}
._0_c00088{margin-left:-1.457091px;}
._14_c00088{width:1.098498px;}
._4_c00088{width:2.382510px;}
._5_c00088{width:3.980760px;}
._18_c00088{width:5.531640px;}
._1a_c00088{width:6.562459px;}
._19_c00088{width:7.764900px;}
._1c_c00088{width:9.339185px;}
._1b_c00088{width:10.614813px;}
._2_c00088{width:12.187491px;}
._3_c00088{width:13.696833px;}
._16_c00088{width:14.771733px;}
._17_c00088{width:15.923929px;}
._f_c00088{width:17.209889px;}
._15_c00088{width:19.699276px;}
._13_c00088{width:20.932549px;}
._1d_c00088{width:22.588280px;}
._6_c00088{width:24.243797px;}
._7_c00088{width:25.423617px;}
._1e_c00088{width:26.580402px;}
._c_c00088{width:29.080937px;}
._d_c00088{width:30.196977px;}
._e_c00088{width:31.861753px;}
._9_c00088{width:37.754150px;}
._8_c00088{width:39.003742px;}
._12_c00088{width:53.987394px;}
._11_c00088{width:55.641751px;}
._b_c00088{width:89.844227px;}
._1_c00088{width:1953.503549px;}
.fc0_c00088{color:rgb(0,0,0);}
.fs1_c00088{font-size:54.000000px;}
.fs0_c00088{font-size:66.240000px;}
.y0_c00088{bottom:0.000000px;}
.y2c_c00088{bottom:137.556300px;}
.y2b_c00088{bottom:158.430300px;}
.y2a_c00088{bottom:179.490600px;}
.y29_c00088{bottom:200.550300px;}
.y28_c00088{bottom:221.430150px;}
.y27_c00088{bottom:242.490450px;}
.y26_c00088{bottom:263.550150px;}
.y25_c00088{bottom:284.430000px;}
.y24_c00088{bottom:305.490300px;}
.y23_c00088{bottom:326.550000px;}
.y22_c00088{bottom:347.429850px;}
.y21_c00088{bottom:368.490150px;}
.y20_c00088{bottom:389.595000px;}
.y1f_c00088{bottom:419.475000px;}
.y1e_c00088{bottom:458.535000px;}
.y1d_c00088{bottom:488.595300px;}
.y1c_c00088{bottom:509.475150px;}
.y1b_c00088{bottom:530.534850px;}
.y1a_c00088{bottom:551.595150px;}
.y19_c00088{bottom:572.475000px;}
.y18_c00088{bottom:602.535150px;}
.y17_c00088{bottom:623.595450px;}
.y16_c00088{bottom:644.505150px;}
.y15_c00088{bottom:665.565450px;}
.y14_c00088{bottom:686.625150px;}
.y13_c00088{bottom:707.505000px;}
.y12_c00088{bottom:737.565000px;}
.y11_c00088{bottom:767.625000px;}
.y10_c00088{bottom:797.504700px;}
.yf_c00088{bottom:818.565300px;}
.ye_c00088{bottom:839.625000px;}
.yd_c00088{bottom:860.504850px;}
.yc_c00088{bottom:881.565150px;}
.yb_c00088{bottom:902.670000px;}
.ya_c00088{bottom:932.550000px;}
.y9_c00088{bottom:971.609400px;}
.y8_c00088{bottom:992.669700px;}
.y7_c00088{bottom:1013.549550px;}
.y6_c00088{bottom:1034.609850px;}
.y5_c00088{bottom:1055.670150px;}
.y4_c00088{bottom:1076.550000px;}
.y3_c00088{bottom:1097.609700px;}
.y2_c00088{bottom:1118.670000px;}
.y1_c00088{bottom:1174.680000px;}
.h2_c00088{height:56.957344px;}
.h1_c00088{height:1263.000000px;}
.h0_c00088{height:1263.060000px;}
.w1_c00088{width:893.250000px;}
.w0_c00088{width:893.340000px;}
.x0_c00088{left:0.000000px;}
.x1_c00088{left:127.655850px;}
.x2_c00088{left:148.896150px;}
@media print{
.v0_c00088{vertical-align:0.000000pt;}
.ls0_c00088{letter-spacing:0.000000pt;}
.ws0_c00088{word-spacing:-16.368640pt;}
.ws1_c00088{word-spacing:-13.344000pt;}
.ws2_c00088{word-spacing:0.000000pt;}
._a_c00088{margin-left:-3.709230pt;}
._10_c00088{margin-left:-2.797320pt;}
._0_c00088{margin-left:-1.295192pt;}
._14_c00088{width:0.976443pt;}
._4_c00088{width:2.117787pt;}
._5_c00088{width:3.538454pt;}
._18_c00088{width:4.917013pt;}
._1a_c00088{width:5.833297pt;}
._19_c00088{width:6.902133pt;}
._1c_c00088{width:8.301498pt;}
._1b_c00088{width:9.435389pt;}
._2_c00088{width:10.833325pt;}
._3_c00088{width:12.174963pt;}
._16_c00088{width:13.130429pt;}
._17_c00088{width:14.154604pt;}
._f_c00088{width:15.297679pt;}
._15_c00088{width:17.510467pt;}
._13_c00088{width:18.606710pt;}
._1d_c00088{width:20.078472pt;}
._6_c00088{width:21.550042pt;}
._7_c00088{width:22.598771pt;}
._1e_c00088{width:23.627024pt;}
._c_c00088{width:25.849721pt;}
._d_c00088{width:26.841757pt;}
._e_c00088{width:28.321558pt;}
._9_c00088{width:33.559245pt;}
._8_c00088{width:34.669992pt;}
._12_c00088{width:47.988794pt;}
._11_c00088{width:49.459334pt;}
._b_c00088{width:79.861535pt;}
._1_c00088{width:1736.447599pt;}
.fs1_c00088{font-size:48.000000pt;}
.fs0_c00088{font-size:58.880000pt;}
.y0_c00088{bottom:0.000000pt;}
.y2c_c00088{bottom:122.272267pt;}
.y2b_c00088{bottom:140.826933pt;}
.y2a_c00088{bottom:159.547200pt;}
.y29_c00088{bottom:178.266933pt;}
.y28_c00088{bottom:196.826800pt;}
.y27_c00088{bottom:215.547067pt;}
.y26_c00088{bottom:234.266800pt;}
.y25_c00088{bottom:252.826667pt;}
.y24_c00088{bottom:271.546933pt;}
.y23_c00088{bottom:290.266667pt;}
.y22_c00088{bottom:308.826533pt;}
.y21_c00088{bottom:327.546800pt;}
.y20_c00088{bottom:346.306667pt;}
.y1f_c00088{bottom:372.866667pt;}
.y1e_c00088{bottom:407.586667pt;}
.y1d_c00088{bottom:434.306933pt;}
.y1c_c00088{bottom:452.866800pt;}
.y1b_c00088{bottom:471.586533pt;}
.y1a_c00088{bottom:490.306800pt;}
.y19_c00088{bottom:508.866667pt;}
.y18_c00088{bottom:535.586800pt;}
.y17_c00088{bottom:554.307067pt;}
.y16_c00088{bottom:572.893467pt;}
.y15_c00088{bottom:591.613733pt;}
.y14_c00088{bottom:610.333467pt;}
.y13_c00088{bottom:628.893333pt;}
.y12_c00088{bottom:655.613333pt;}
.y11_c00088{bottom:682.333333pt;}
.y10_c00088{bottom:708.893067pt;}
.yf_c00088{bottom:727.613600pt;}
.ye_c00088{bottom:746.333333pt;}
.yd_c00088{bottom:764.893200pt;}
.yc_c00088{bottom:783.613467pt;}
.yb_c00088{bottom:802.373333pt;}
.ya_c00088{bottom:828.933333pt;}
.y9_c00088{bottom:863.652800pt;}
.y8_c00088{bottom:882.373067pt;}
.y7_c00088{bottom:900.932933pt;}
.y6_c00088{bottom:919.653200pt;}
.y5_c00088{bottom:938.373467pt;}
.y4_c00088{bottom:956.933333pt;}
.y3_c00088{bottom:975.653067pt;}
.y2_c00088{bottom:994.373333pt;}
.y1_c00088{bottom:1044.160000pt;}
.h2_c00088{height:50.628750pt;}
.h1_c00088{height:1122.666667pt;}
.h0_c00088{height:1122.720000pt;}
.w1_c00088{width:794.000000pt;}
.w0_c00088{width:794.080000pt;}
.x0_c00088{left:0.000000pt;}
.x1_c00088{left:113.471867pt;}
.x2_c00088{left:132.352133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_da6ae1ba9b1ad5515938ce2d.woff2')format("woff");}.ff1_c00089{font-family:ff1_c00089;line-height:1.070312;font-style: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);}
.m1_c00089{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1_c00089{vertical-align:-5.760936px;}
.v0_c00089{vertical-align:0.000000px;}
.ls2_c00089{letter-spacing:0.000000px;}
.ls1_c00089{letter-spacing:0.263940px;}
.ls0_c00089{letter-spacing:27.468480px;}
.sc__c00089{text-shadow:none;}
.sc0_c00089{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00089{-webkit-text-stroke:0px transparent;}
.sc0_c00089{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00089{word-spacing:-18.414720px;}
.ws1_c00089{word-spacing:-15.012000px;}
.ws2_c00089{word-spacing:-11.609280px;}
.ws3_c00089{word-spacing:0.000000px;}
._a_c00089{margin-left:-4.107815px;}
._7_c00089{margin-left:-2.561605px;}
._0_c00089{margin-left:-1.457091px;}
._2_c00089{width:1.060006px;}
._d_c00089{width:2.321511px;}
._f_c00089{width:4.372310px;}
._6_c00089{width:5.456468px;}
._10_c00089{width:6.822054px;}
._12_c00089{width:8.411370px;}
._8_c00089{width:10.266683px;}
._9_c00089{width:11.459309px;}
._11_c00089{width:12.754757px;}
._4_c00089{width:13.843209px;}
._5_c00089{width:14.845342px;}
._3_c00089{width:16.163231px;}
._e_c00089{width:19.539740px;}
._13_c00089{width:20.580096px;}
._c_c00089{width:21.793201px;}
._b_c00089{width:23.183091px;}
._14_c00089{width:26.985240px;}
._15_c00089{width:28.877632px;}
._16_c00089{width:41.232754px;}
._1_c00089{width:1953.503549px;}
.fc0_c00089{color:rgb(0,0,0);}
.fs2_c00089{font-size:41.760000px;}
.fs1_c00089{font-size:54.000000px;}
.fs0_c00089{font-size:66.240000px;}
.y0_c00089{bottom:0.000000px;}
.y2d_c00089{bottom:116.459700px;}
.y2c_c00089{bottom:146.556450px;}
.y2b_c00089{bottom:167.430450px;}
.y2a_c00089{bottom:188.490750px;}
.y29_c00089{bottom:209.550450px;}
.y28_c00089{bottom:230.430300px;}
.y27_c00089{bottom:251.490600px;}
.y26_c00089{bottom:272.550300px;}
.y25_c00089{bottom:293.430150px;}
.y24_c00089{bottom:314.490450px;}
.y23_c00089{bottom:335.550150px;}
.y22_c00089{bottom:356.430000px;}
.y21_c00089{bottom:386.490000px;}
.y20_c00089{bottom:416.595000px;}
.y1f_c00089{bottom:446.475000px;}
.y1e_c00089{bottom:467.534700px;}
.y1d_c00089{bottom:488.595000px;}
.y1c_c00089{bottom:518.475450px;}
.y1b_c00089{bottom:539.535150px;}
.y1a_c00089{bottom:560.595450px;}
.y19_c00089{bottom:581.475300px;}
.y18_c00089{bottom:602.535000px;}
.y17_c00089{bottom:623.595300px;}
.y16_c00089{bottom:644.505000px;}
.y15_c00089{bottom:674.565000px;}
.y14_c00089{bottom:704.625000px;}
.y13_c00089{bottom:734.505600px;}
.y12_c00089{bottom:755.565300px;}
.y11_c00089{bottom:776.625000px;}
.y10_c00089{bottom:797.504850px;}
.yf_c00089{bottom:818.565150px;}
.ye_c00089{bottom:839.624850px;}
.yd_c00089{bottom:860.504700px;}
.yc_c00089{bottom:881.565450px;}
.yb_c00089{bottom:902.670300px;}
.ya_c00089{bottom:923.550150px;}
.y9_c00089{bottom:944.609850px;}
.y8_c00089{bottom:965.670150px;}
.y7_c00089{bottom:986.550000px;}
.y6_c00089{bottom:1016.610000px;}
.y5_c00089{bottom:1037.670000px;}
.y4_c00089{bottom:1067.550000px;}
.y3_c00089{bottom:1097.609700px;}
.y2_c00089{bottom:1118.670000px;}
.y1_c00089{bottom:1174.680000px;}
.h2_c00089{height:56.957344px;}
.h1_c00089{height:1263.000000px;}
.h0_c00089{height:1263.060000px;}
.w1_c00089{width:893.250000px;}
.w0_c00089{width:893.340000px;}
.x0_c00089{left:0.000000px;}
.x1_c00089{left:127.655850px;}
.x2_c00089{left:148.896150px;}
@media print{
.v1_c00089{vertical-align:-5.120832pt;}
.v0_c00089{vertical-align:0.000000pt;}
.ls2_c00089{letter-spacing:0.000000pt;}
.ls1_c00089{letter-spacing:0.234613pt;}
.ls0_c00089{letter-spacing:24.416427pt;}
.ws0_c00089{word-spacing:-16.368640pt;}
.ws1_c00089{word-spacing:-13.344000pt;}
.ws2_c00089{word-spacing:-10.319360pt;}
.ws3_c00089{word-spacing:0.000000pt;}
._a_c00089{margin-left:-3.651391pt;}
._7_c00089{margin-left:-2.276983pt;}
._0_c00089{margin-left:-1.295192pt;}
._2_c00089{width:0.942228pt;}
._d_c00089{width:2.063565pt;}
._f_c00089{width:3.886498pt;}
._6_c00089{width:4.850193pt;}
._10_c00089{width:6.064048pt;}
._12_c00089{width:7.476773pt;}
._8_c00089{width:9.125941pt;}
._9_c00089{width:10.186052pt;}
._11_c00089{width:11.337562pt;}
._4_c00089{width:12.305074pt;}
._5_c00089{width:13.195859pt;}
._3_c00089{width:14.367316pt;}
._e_c00089{width:17.368658pt;}
._13_c00089{width:18.293419pt;}
._c_c00089{width:19.371734pt;}
._b_c00089{width:20.607192pt;}
._14_c00089{width:23.986880pt;}
._15_c00089{width:25.669006pt;}
._16_c00089{width:36.651337pt;}
._1_c00089{width:1736.447599pt;}
.fs2_c00089{font-size:37.120000pt;}
.fs1_c00089{font-size:48.000000pt;}
.fs0_c00089{font-size:58.880000pt;}
.y0_c00089{bottom:0.000000pt;}
.y2d_c00089{bottom:103.519733pt;}
.y2c_c00089{bottom:130.272400pt;}
.y2b_c00089{bottom:148.827067pt;}
.y2a_c00089{bottom:167.547333pt;}
.y29_c00089{bottom:186.267067pt;}
.y28_c00089{bottom:204.826933pt;}
.y27_c00089{bottom:223.547200pt;}
.y26_c00089{bottom:242.266933pt;}
.y25_c00089{bottom:260.826800pt;}
.y24_c00089{bottom:279.547067pt;}
.y23_c00089{bottom:298.266800pt;}
.y22_c00089{bottom:316.826667pt;}
.y21_c00089{bottom:343.546667pt;}
.y20_c00089{bottom:370.306667pt;}
.y1f_c00089{bottom:396.866667pt;}
.y1e_c00089{bottom:415.586400pt;}
.y1d_c00089{bottom:434.306667pt;}
.y1c_c00089{bottom:460.867067pt;}
.y1b_c00089{bottom:479.586800pt;}
.y1a_c00089{bottom:498.307067pt;}
.y19_c00089{bottom:516.866933pt;}
.y18_c00089{bottom:535.586667pt;}
.y17_c00089{bottom:554.306933pt;}
.y16_c00089{bottom:572.893333pt;}
.y15_c00089{bottom:599.613333pt;}
.y14_c00089{bottom:626.333333pt;}
.y13_c00089{bottom:652.893867pt;}
.y12_c00089{bottom:671.613600pt;}
.y11_c00089{bottom:690.333333pt;}
.y10_c00089{bottom:708.893200pt;}
.yf_c00089{bottom:727.613467pt;}
.ye_c00089{bottom:746.333200pt;}
.yd_c00089{bottom:764.893067pt;}
.yc_c00089{bottom:783.613733pt;}
.yb_c00089{bottom:802.373600pt;}
.ya_c00089{bottom:820.933467pt;}
.y9_c00089{bottom:839.653200pt;}
.y8_c00089{bottom:858.373467pt;}
.y7_c00089{bottom:876.933333pt;}
.y6_c00089{bottom:903.653333pt;}
.y5_c00089{bottom:922.373333pt;}
.y4_c00089{bottom:948.933333pt;}
.y3_c00089{bottom:975.653067pt;}
.y2_c00089{bottom:994.373333pt;}
.y1_c00089{bottom:1044.160000pt;}
.h2_c00089{height:50.628750pt;}
.h1_c00089{height:1122.666667pt;}
.h0_c00089{height:1122.720000pt;}
.w1_c00089{width:794.000000pt;}
.w0_c00089{width:794.080000pt;}
.x0_c00089{left:0.000000pt;}
.x1_c00089{left:113.471867pt;}
.x2_c00089{left:132.352133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c00a72638c7712a027ee52b0.woff2')format("woff");}.ff1_c00090{font-family:ff1_c00090;line-height:1.070312;font-style:normal;font-weight:normal;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_4d9b3fc6023579b97a3ffbf1.woff2')format("woff");}.ff2_c00090{font-family:ff2_c00090;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00090{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00090{vertical-align:-5.758596px;}
.v0_c00090{vertical-align:0.000000px;}
.v2_c00090{vertical-align:5.758596px;}
.ls1_c00090{letter-spacing:0.000000px;}
.ls0_c00090{letter-spacing:0.001200px;}
.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:-18.414720px;}
.ws2_c00090{word-spacing:-15.012000px;}
.ws0_c00090{word-spacing:-11.609280px;}
.ws3_c00090{word-spacing:0.000000px;}
._7_c00090{margin-left:-4.636496px;}
._d_c00090{margin-left:-2.715780px;}
._0_c00090{margin-left:-1.457091px;}
._9_c00090{width:1.039451px;}
._a_c00090{width:2.250790px;}
._b_c00090{width:3.263897px;}
._c_c00090{width:5.696176px;}
._e_c00090{width:6.815901px;}
._6_c00090{width:7.947826px;}
._5_c00090{width:9.264423px;}
._8_c00090{width:11.260301px;}
._3_c00090{width:12.485062px;}
._4_c00090{width:13.867049px;}
._12_c00090{width:14.881661px;}
._f_c00090{width:19.839469px;}
._11_c00090{width:30.250779px;}
._10_c00090{width:31.474025px;}
._2_c00090{width:35.505336px;}
._1_c00090{width:1953.503549px;}
.fc0_c00090{color:rgb(0,0,0);}
.fs1_c00090{font-size:41.760000px;}
.fs2_c00090{font-size:54.000000px;}
.fs0_c00090{font-size:66.240000px;}
.y0_c00090{bottom:0.000000px;}
.y2e_c00090{bottom:95.400000px;}
.y2d_c00090{bottom:116.459700px;}
.y2c_c00090{bottom:146.556750px;}
.y2b_c00090{bottom:167.430750px;}
.y2a_c00090{bottom:188.491050px;}
.y29_c00090{bottom:209.550750px;}
.y28_c00090{bottom:230.430600px;}
.y27_c00090{bottom:251.490900px;}
.y26_c00090{bottom:272.550600px;}
.y25_c00090{bottom:293.430450px;}
.y24_c00090{bottom:314.490750px;}
.y23_c00090{bottom:335.550450px;}
.y22_c00090{bottom:356.430300px;}
.y21_c00090{bottom:377.490600px;}
.y20_c00090{bottom:398.595450px;}
.y1f_c00090{bottom:419.475300px;}
.y1e_c00090{bottom:440.535000px;}
.y1d_c00090{bottom:470.595000px;}
.y1c_c00090{bottom:491.475000px;}
.y1b_c00090{bottom:521.535000px;}
.y1a_c00090{bottom:551.595450px;}
.y19_c00090{bottom:572.475300px;}
.y18_c00090{bottom:593.535000px;}
.y17_c00090{bottom:614.595300px;}
.y16_c00090{bottom:635.475150px;}
.y15_c00090{bottom:656.565450px;}
.y14_c00090{bottom:677.625150px;}
.y13_c00090{bottom:698.505000px;}
.y12_c00090{bottom:719.565300px;}
.y11_c00090{bottom:740.625000px;}
.y10_c00090{bottom:770.505000px;}
.yf_c00090{bottom:800.565000px;}
.ye_c00090{bottom:830.625000px;}
.yd_c00090{bottom:851.504850px;}
.yc_c00090{bottom:872.565150px;}
.yb_c00090{bottom:893.670000px;}
.ya_c00090{bottom:923.550000px;}
.y9_c00090{bottom:953.610000px;}
.y8_c00090{bottom:983.670600px;}
.y7_c00090{bottom:1004.550450px;}
.y6_c00090{bottom:1025.610150px;}
.y5_c00090{bottom:1046.670450px;}
.y4_c00090{bottom:1067.550300px;}
.y3_c00090{bottom:1088.610000px;}
.y2_c00090{bottom:1118.670000px;}
.y1_c00090{bottom:1174.680000px;}
.h2_c00090{height:56.957344px;}
.h1_c00090{height:1263.000000px;}
.h0_c00090{height:1263.060000px;}
.w1_c00090{width:893.250000px;}
.w0_c00090{width:893.340000px;}
.x0_c00090{left:0.000000px;}
.x1_c00090{left:127.655850px;}
.x2_c00090{left:148.896150px;}
@media print{
.v1_c00090{vertical-align:-5.118752pt;}
.v0_c00090{vertical-align:0.000000pt;}
.v2_c00090{vertical-align:5.118752pt;}
.ls1_c00090{letter-spacing:0.000000pt;}
.ls0_c00090{letter-spacing:0.001067pt;}
.ws1_c00090{word-spacing:-16.368640pt;}
.ws2_c00090{word-spacing:-13.344000pt;}
.ws0_c00090{word-spacing:-10.319360pt;}
.ws3_c00090{word-spacing:0.000000pt;}
._7_c00090{margin-left:-4.121330pt;}
._d_c00090{margin-left:-2.414026pt;}
._0_c00090{margin-left:-1.295192pt;}
._9_c00090{width:0.923956pt;}
._a_c00090{width:2.000702pt;}
._b_c00090{width:2.901241pt;}
._c_c00090{width:5.063268pt;}
._e_c00090{width:6.058579pt;}
._6_c00090{width:7.064734pt;}
._5_c00090{width:8.235043pt;}
._8_c00090{width:10.009157pt;}
._3_c00090{width:11.097833pt;}
._4_c00090{width:12.326265pt;}
._12_c00090{width:13.228143pt;}
._f_c00090{width:17.635083pt;}
._11_c00090{width:26.889581pt;}
._10_c00090{width:27.976911pt;}
._2_c00090{width:31.560299pt;}
._1_c00090{width:1736.447599pt;}
.fs1_c00090{font-size:37.120000pt;}
.fs2_c00090{font-size:48.000000pt;}
.fs0_c00090{font-size:58.880000pt;}
.y0_c00090{bottom:0.000000pt;}
.y2e_c00090{bottom:84.800000pt;}
.y2d_c00090{bottom:103.519733pt;}
.y2c_c00090{bottom:130.272667pt;}
.y2b_c00090{bottom:148.827333pt;}
.y2a_c00090{bottom:167.547600pt;}
.y29_c00090{bottom:186.267333pt;}
.y28_c00090{bottom:204.827200pt;}
.y27_c00090{bottom:223.547467pt;}
.y26_c00090{bottom:242.267200pt;}
.y25_c00090{bottom:260.827067pt;}
.y24_c00090{bottom:279.547333pt;}
.y23_c00090{bottom:298.267067pt;}
.y22_c00090{bottom:316.826933pt;}
.y21_c00090{bottom:335.547200pt;}
.y20_c00090{bottom:354.307067pt;}
.y1f_c00090{bottom:372.866933pt;}
.y1e_c00090{bottom:391.586667pt;}
.y1d_c00090{bottom:418.306667pt;}
.y1c_c00090{bottom:436.866667pt;}
.y1b_c00090{bottom:463.586667pt;}
.y1a_c00090{bottom:490.307067pt;}
.y19_c00090{bottom:508.866933pt;}
.y18_c00090{bottom:527.586667pt;}
.y17_c00090{bottom:546.306933pt;}
.y16_c00090{bottom:564.866800pt;}
.y15_c00090{bottom:583.613733pt;}
.y14_c00090{bottom:602.333467pt;}
.y13_c00090{bottom:620.893333pt;}
.y12_c00090{bottom:639.613600pt;}
.y11_c00090{bottom:658.333333pt;}
.y10_c00090{bottom:684.893333pt;}
.yf_c00090{bottom:711.613333pt;}
.ye_c00090{bottom:738.333333pt;}
.yd_c00090{bottom:756.893200pt;}
.yc_c00090{bottom:775.613467pt;}
.yb_c00090{bottom:794.373333pt;}
.ya_c00090{bottom:820.933333pt;}
.y9_c00090{bottom:847.653333pt;}
.y8_c00090{bottom:874.373867pt;}
.y7_c00090{bottom:892.933733pt;}
.y6_c00090{bottom:911.653467pt;}
.y5_c00090{bottom:930.373733pt;}
.y4_c00090{bottom:948.933600pt;}
.y3_c00090{bottom:967.653333pt;}
.y2_c00090{bottom:994.373333pt;}
.y1_c00090{bottom:1044.160000pt;}
.h2_c00090{height:50.628750pt;}
.h1_c00090{height:1122.666667pt;}
.h0_c00090{height:1122.720000pt;}
.w1_c00090{width:794.000000pt;}
.w0_c00090{width:794.080000pt;}
.x0_c00090{left:0.000000pt;}
.x1_c00090{left:113.471867pt;}
.x2_c00090{left:132.352133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c916a07fda60ccdf863107b0.woff2')format("woff");}.ff1_c00091{font-family:ff1_c00091;line-height:1.070312;font-style: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);}
.v1_c00091{vertical-align:-5.760936px;}
.v0_c00091{vertical-align:0.000000px;}
.ls0_c00091{letter-spacing:0.000000px;}
.sc__c00091{text-shadow:none;}
.sc0_c00091{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00091{-webkit-text-stroke:0px transparent;}
.sc0_c00091{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00091{word-spacing:-18.414720px;}
.ws1_c00091{word-spacing:-15.012000px;}
.ws2_c00091{word-spacing:-11.609280px;}
.ws3_c00091{word-spacing:0.000000px;}
._5_c00091{margin-left:-4.636137px;}
._2_c00091{margin-left:-2.650237px;}
._0_c00091{margin-left:-1.457091px;}
._e_c00091{width:1.188353px;}
._f_c00091{width:2.397326px;}
._a_c00091{width:3.575431px;}
._b_c00091{width:4.588228px;}
._c_c00091{width:6.209445px;}
._11_c00091{width:8.548374px;}
._3_c00091{width:10.596698px;}
._4_c00091{width:11.931265px;}
._d_c00091{width:14.139976px;}
._6_c00091{width:15.234886px;}
._7_c00091{width:16.362709px;}
._10_c00091{width:23.780292px;}
._15_c00091{width:25.447653px;}
._16_c00091{width:30.999925px;}
._8_c00091{width:33.914406px;}
._9_c00091{width:35.376870px;}
._12_c00091{width:48.222399px;}
._13_c00091{width:50.097780px;}
._14_c00091{width:89.844227px;}
._1_c00091{width:1953.503549px;}
.fc0_c00091{color:rgb(0,0,0);}
.fs2_c00091{font-size:41.760000px;}
.fs1_c00091{font-size:54.000000px;}
.fs0_c00091{font-size:66.240000px;}
.y0_c00091{bottom:0.000000px;}
.y2c_c00091{bottom:110.519850px;}
.y2b_c00091{bottom:131.399700px;}
.y2a_c00091{bottom:152.490000px;}
.y29_c00091{bottom:182.550000px;}
.y28_c00091{bottom:212.430000px;}
.y27_c00091{bottom:251.490000px;}
.y26_c00091{bottom:272.550300px;}
.y25_c00091{bottom:293.430150px;}
.y24_c00091{bottom:314.490450px;}
.y23_c00091{bottom:335.550150px;}
.y22_c00091{bottom:356.430000px;}
.y21_c00091{bottom:386.490000px;}
.y20_c00091{bottom:416.595000px;}
.y1f_c00091{bottom:446.475750px;}
.y1e_c00091{bottom:467.535450px;}
.y1d_c00091{bottom:488.595150px;}
.y1c_c00091{bottom:509.475000px;}
.y1b_c00091{bottom:530.534700px;}
.y1a_c00091{bottom:551.595000px;}
.y19_c00091{bottom:581.475000px;}
.y18_c00091{bottom:611.535000px;}
.y17_c00091{bottom:641.625300px;}
.y16_c00091{bottom:662.505150px;}
.y15_c00091{bottom:683.565450px;}
.y14_c00091{bottom:704.625150px;}
.y13_c00091{bottom:725.505000px;}
.y12_c00091{bottom:746.565300px;}
.y11_c00091{bottom:767.625000px;}
.y10_c00091{bottom:797.505000px;}
.yf_c00091{bottom:827.565000px;}
.ye_c00091{bottom:857.625150px;}
.yd_c00091{bottom:878.505000px;}
.yc_c00091{bottom:899.609850px;}
.yb_c00091{bottom:920.670150px;}
.ya_c00091{bottom:941.550000px;}
.y9_c00091{bottom:971.609400px;}
.y8_c00091{bottom:992.669700px;}
.y7_c00091{bottom:1013.549550px;}
.y6_c00091{bottom:1034.609250px;}
.y5_c00091{bottom:1055.669550px;}
.y4_c00091{bottom:1076.549400px;}
.y3_c00091{bottom:1097.609700px;}
.y2_c00091{bottom:1118.670000px;}
.y1_c00091{bottom:1174.680000px;}
.h2_c00091{height:56.957344px;}
.h1_c00091{height:1263.000000px;}
.h0_c00091{height:1263.060000px;}
.w1_c00091{width:893.250000px;}
.w0_c00091{width:893.340000px;}
.x0_c00091{left:0.000000px;}
.x1_c00091{left:127.655850px;}
.x2_c00091{left:148.896150px;}
@media print{
.v1_c00091{vertical-align:-5.120832pt;}
.v0_c00091{vertical-align:0.000000pt;}
.ls0_c00091{letter-spacing:0.000000pt;}
.ws0_c00091{word-spacing:-16.368640pt;}
.ws1_c00091{word-spacing:-13.344000pt;}
.ws2_c00091{word-spacing:-10.319360pt;}
.ws3_c00091{word-spacing:0.000000pt;}
._5_c00091{margin-left:-4.121011pt;}
._2_c00091{margin-left:-2.355766pt;}
._0_c00091{margin-left:-1.295192pt;}
._e_c00091{width:1.056314pt;}
._f_c00091{width:2.130957pt;}
._a_c00091{width:3.178161pt;}
._b_c00091{width:4.078425pt;}
._c_c00091{width:5.519506pt;}
._11_c00091{width:7.598555pt;}
._3_c00091{width:9.419287pt;}
._4_c00091{width:10.605569pt;}
._d_c00091{width:12.568867pt;}
._6_c00091{width:13.542121pt;}
._7_c00091{width:14.544630pt;}
._10_c00091{width:21.138038pt;}
._15_c00091{width:22.620136pt;}
._16_c00091{width:27.555489pt;}
._8_c00091{width:30.146138pt;}
._9_c00091{width:31.446106pt;}
._12_c00091{width:42.864355pt;}
._13_c00091{width:44.531360pt;}
._14_c00091{width:79.861535pt;}
._1_c00091{width:1736.447599pt;}
.fs2_c00091{font-size:37.120000pt;}
.fs1_c00091{font-size:48.000000pt;}
.fs0_c00091{font-size:58.880000pt;}
.y0_c00091{bottom:0.000000pt;}
.y2c_c00091{bottom:98.239867pt;}
.y2b_c00091{bottom:116.799733pt;}
.y2a_c00091{bottom:135.546667pt;}
.y29_c00091{bottom:162.266667pt;}
.y28_c00091{bottom:188.826667pt;}
.y27_c00091{bottom:223.546667pt;}
.y26_c00091{bottom:242.266933pt;}
.y25_c00091{bottom:260.826800pt;}
.y24_c00091{bottom:279.547067pt;}
.y23_c00091{bottom:298.266800pt;}
.y22_c00091{bottom:316.826667pt;}
.y21_c00091{bottom:343.546667pt;}
.y20_c00091{bottom:370.306667pt;}
.y1f_c00091{bottom:396.867333pt;}
.y1e_c00091{bottom:415.587067pt;}
.y1d_c00091{bottom:434.306800pt;}
.y1c_c00091{bottom:452.866667pt;}
.y1b_c00091{bottom:471.586400pt;}
.y1a_c00091{bottom:490.306667pt;}
.y19_c00091{bottom:516.866667pt;}
.y18_c00091{bottom:543.586667pt;}
.y17_c00091{bottom:570.333600pt;}
.y16_c00091{bottom:588.893467pt;}
.y15_c00091{bottom:607.613733pt;}
.y14_c00091{bottom:626.333467pt;}
.y13_c00091{bottom:644.893333pt;}
.y12_c00091{bottom:663.613600pt;}
.y11_c00091{bottom:682.333333pt;}
.y10_c00091{bottom:708.893333pt;}
.yf_c00091{bottom:735.613333pt;}
.ye_c00091{bottom:762.333467pt;}
.yd_c00091{bottom:780.893333pt;}
.yc_c00091{bottom:799.653200pt;}
.yb_c00091{bottom:818.373467pt;}
.ya_c00091{bottom:836.933333pt;}
.y9_c00091{bottom:863.652800pt;}
.y8_c00091{bottom:882.373067pt;}
.y7_c00091{bottom:900.932933pt;}
.y6_c00091{bottom:919.652667pt;}
.y5_c00091{bottom:938.372933pt;}
.y4_c00091{bottom:956.932800pt;}
.y3_c00091{bottom:975.653067pt;}
.y2_c00091{bottom:994.373333pt;}
.y1_c00091{bottom:1044.160000pt;}
.h2_c00091{height:50.628750pt;}
.h1_c00091{height:1122.666667pt;}
.h0_c00091{height:1122.720000pt;}
.w1_c00091{width:794.000000pt;}
.w0_c00091{width:794.080000pt;}
.x0_c00091{left:0.000000pt;}
.x1_c00091{left:113.471867pt;}
.x2_c00091{left:132.352133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_36d6d4b95ae85398484ccba9.woff2')format("woff");}.ff1_c00092{font-family:ff1_c00092;line-height:1.070312;font-style: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);}
.v1_c00092{vertical-align:-5.760936px;}
.v0_c00092{vertical-align:0.000000px;}
.v2_c00092{vertical-align:5.760936px;}
.ls1_c00092{letter-spacing:0.000000px;}
.ls0_c00092{letter-spacing:0.304800px;}
.sc__c00092{text-shadow:none;}
.sc0_c00092{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00092{-webkit-text-stroke:0px transparent;}
.sc0_c00092{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00092{word-spacing:-18.414720px;}
.ws1_c00092{word-spacing:-15.012000px;}
.ws2_c00092{word-spacing:-11.609280px;}
.ws3_c00092{word-spacing:0.000000px;}
._15_c00092{margin-left:-4.768509px;}
._18_c00092{margin-left:-3.554280px;}
._0_c00092{margin-left:-1.457091px;}
._7_c00092{width:1.235006px;}
._2_c00092{width:2.585192px;}
._3_c00092{width:3.804309px;}
._d_c00092{width:5.285644px;}
._e_c00092{width:6.347129px;}
._10_c00092{width:7.550174px;}
._14_c00092{width:9.050535px;}
._6_c00092{width:10.134521px;}
._9_c00092{width:11.791038px;}
._a_c00092{width:13.179530px;}
._c_c00092{width:15.104636px;}
._b_c00092{width:16.360582px;}
._13_c00092{width:17.916738px;}
._4_c00092{width:19.605591px;}
._5_c00092{width:20.664985px;}
._f_c00092{width:21.926057px;}
._17_c00092{width:23.122352px;}
._16_c00092{width:24.507231px;}
._11_c00092{width:27.524191px;}
._12_c00092{width:28.537088px;}
._8_c00092{width:30.802084px;}
._1_c00092{width:1953.503549px;}
.fc0_c00092{color:rgb(0,0,0);}
.fs2_c00092{font-size:41.760000px;}
.fs1_c00092{font-size:54.000000px;}
.fs0_c00092{font-size:66.240000px;}
.y0_c00092{bottom:0.000000px;}
.y2f_c00092{bottom:92.520150px;}
.y2e_c00092{bottom:113.400000px;}
.y2d_c00092{bottom:143.496600px;}
.y2c_c00092{bottom:164.550450px;}
.y2b_c00092{bottom:185.430300px;}
.y2a_c00092{bottom:206.490600px;}
.y29_c00092{bottom:227.550300px;}
.y28_c00092{bottom:248.430150px;}
.y27_c00092{bottom:269.490450px;}
.y26_c00092{bottom:290.550150px;}
.y25_c00092{bottom:311.430000px;}
.y24_c00092{bottom:332.490300px;}
.y23_c00092{bottom:353.550000px;}
.y22_c00092{bottom:383.430000px;}
.y21_c00092{bottom:404.534850px;}
.y20_c00092{bottom:425.595150px;}
.y1f_c00092{bottom:446.475000px;}
.y1e_c00092{bottom:467.534700px;}
.y1d_c00092{bottom:488.595000px;}
.y1c_c00092{bottom:518.475000px;}
.y1b_c00092{bottom:548.535000px;}
.y1a_c00092{bottom:578.595450px;}
.y19_c00092{bottom:599.475300px;}
.y18_c00092{bottom:620.535000px;}
.y17_c00092{bottom:650.625000px;}
.y16_c00092{bottom:671.504850px;}
.y15_c00092{bottom:692.565150px;}
.y14_c00092{bottom:713.624850px;}
.y13_c00092{bottom:734.504700px;}
.y12_c00092{bottom:755.565000px;}
.y11_c00092{bottom:785.625600px;}
.y10_c00092{bottom:806.505450px;}
.yf_c00092{bottom:827.565150px;}
.ye_c00092{bottom:848.624850px;}
.yd_c00092{bottom:869.504700px;}
.yc_c00092{bottom:890.565000px;}
.yb_c00092{bottom:920.669850px;}
.ya_c00092{bottom:941.549700px;}
.y9_c00092{bottom:962.610000px;}
.y8_c00092{bottom:983.670300px;}
.y7_c00092{bottom:1004.550150px;}
.y6_c00092{bottom:1025.609850px;}
.y5_c00092{bottom:1046.670150px;}
.y4_c00092{bottom:1067.550000px;}
.y3_c00092{bottom:1097.609700px;}
.y2_c00092{bottom:1118.670000px;}
.y1_c00092{bottom:1174.680000px;}
.h2_c00092{height:56.957344px;}
.h1_c00092{height:1263.000000px;}
.h0_c00092{height:1263.060000px;}
.w1_c00092{width:893.250000px;}
.w0_c00092{width:893.340000px;}
.x0_c00092{left:0.000000px;}
.x1_c00092{left:127.655850px;}
.x2_c00092{left:148.896150px;}
@media print{
.v1_c00092{vertical-align:-5.120832pt;}
.v0_c00092{vertical-align:0.000000pt;}
.v2_c00092{vertical-align:5.120832pt;}
.ls1_c00092{letter-spacing:0.000000pt;}
.ls0_c00092{letter-spacing:0.270933pt;}
.ws0_c00092{word-spacing:-16.368640pt;}
.ws1_c00092{word-spacing:-13.344000pt;}
.ws2_c00092{word-spacing:-10.319360pt;}
.ws3_c00092{word-spacing:0.000000pt;}
._15_c00092{margin-left:-4.238675pt;}
._18_c00092{margin-left:-3.159360pt;}
._0_c00092{margin-left:-1.295192pt;}
._7_c00092{width:1.097783pt;}
._2_c00092{width:2.297948pt;}
._3_c00092{width:3.381608pt;}
._d_c00092{width:4.698350pt;}
._e_c00092{width:5.641893pt;}
._10_c00092{width:6.711265pt;}
._14_c00092{width:8.044920pt;}
._6_c00092{width:9.008463pt;}
._9_c00092{width:10.480923pt;}
._a_c00092{width:11.715138pt;}
._c_c00092{width:13.426343pt;}
._b_c00092{width:14.542740pt;}
._13_c00092{width:15.925990pt;}
._4_c00092{width:17.427192pt;}
._5_c00092{width:18.368875pt;}
._f_c00092{width:19.489828pt;}
._17_c00092{width:20.553202pt;}
._16_c00092{width:21.784205pt;}
._11_c00092{width:24.465947pt;}
._12_c00092{width:25.366300pt;}
._8_c00092{width:27.379630pt;}
._1_c00092{width:1736.447599pt;}
.fs2_c00092{font-size:37.120000pt;}
.fs1_c00092{font-size:48.000000pt;}
.fs0_c00092{font-size:58.880000pt;}
.y0_c00092{bottom:0.000000pt;}
.y2f_c00092{bottom:82.240133pt;}
.y2e_c00092{bottom:100.800000pt;}
.y2d_c00092{bottom:127.552533pt;}
.y2c_c00092{bottom:146.267067pt;}
.y2b_c00092{bottom:164.826933pt;}
.y2a_c00092{bottom:183.547200pt;}
.y29_c00092{bottom:202.266933pt;}
.y28_c00092{bottom:220.826800pt;}
.y27_c00092{bottom:239.547067pt;}
.y26_c00092{bottom:258.266800pt;}
.y25_c00092{bottom:276.826667pt;}
.y24_c00092{bottom:295.546933pt;}
.y23_c00092{bottom:314.266667pt;}
.y22_c00092{bottom:340.826667pt;}
.y21_c00092{bottom:359.586533pt;}
.y20_c00092{bottom:378.306800pt;}
.y1f_c00092{bottom:396.866667pt;}
.y1e_c00092{bottom:415.586400pt;}
.y1d_c00092{bottom:434.306667pt;}
.y1c_c00092{bottom:460.866667pt;}
.y1b_c00092{bottom:487.586667pt;}
.y1a_c00092{bottom:514.307067pt;}
.y19_c00092{bottom:532.866933pt;}
.y18_c00092{bottom:551.586667pt;}
.y17_c00092{bottom:578.333333pt;}
.y16_c00092{bottom:596.893200pt;}
.y15_c00092{bottom:615.613467pt;}
.y14_c00092{bottom:634.333200pt;}
.y13_c00092{bottom:652.893067pt;}
.y12_c00092{bottom:671.613333pt;}
.y11_c00092{bottom:698.333867pt;}
.y10_c00092{bottom:716.893733pt;}
.yf_c00092{bottom:735.613467pt;}
.ye_c00092{bottom:754.333200pt;}
.yd_c00092{bottom:772.893067pt;}
.yc_c00092{bottom:791.613333pt;}
.yb_c00092{bottom:818.373200pt;}
.ya_c00092{bottom:836.933067pt;}
.y9_c00092{bottom:855.653333pt;}
.y8_c00092{bottom:874.373600pt;}
.y7_c00092{bottom:892.933467pt;}
.y6_c00092{bottom:911.653200pt;}
.y5_c00092{bottom:930.373467pt;}
.y4_c00092{bottom:948.933333pt;}
.y3_c00092{bottom:975.653067pt;}
.y2_c00092{bottom:994.373333pt;}
.y1_c00092{bottom:1044.160000pt;}
.h2_c00092{height:50.628750pt;}
.h1_c00092{height:1122.666667pt;}
.h0_c00092{height:1122.720000pt;}
.w1_c00092{width:794.000000pt;}
.w0_c00092{width:794.080000pt;}
.x0_c00092{left:0.000000pt;}
.x1_c00092{left:113.471867pt;}
.x2_c00092{left:132.352133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0bd77511a01318aa01e89429.woff2')format("woff");}.ff1_c00093{font-family:ff1_c00093;line-height:1.070312;font-style:normal;font-weight:normal;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_2c661173fbe578d4a1a8299a.woff2')format("woff");}.ff2_c00093{font-family:ff2_c00093;line-height:0.938965;font-style: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);}
.m1_c00093{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_c00093{vertical-align:0.000000px;}
.ls0_c00093{letter-spacing:0.000000px;}
.sc__c00093{text-shadow:none;}
.sc0_c00093{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00093{-webkit-text-stroke:0px transparent;}
.sc0_c00093{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00093{word-spacing:-36.829440px;}
.ws1_c00093{word-spacing:0.000000px;}
._d_c00093{margin-left:-6.472905px;}
._6_c00093{margin-left:-4.044108px;}
._7_c00093{margin-left:-3.006931px;}
._0_c00093{margin-left:-1.457091px;}
._b_c00093{width:1.017264px;}
._8_c00093{width:2.046793px;}
._3_c00093{width:3.245144px;}
._2_c00093{width:4.535930px;}
._e_c00093{width:7.352706px;}
._a_c00093{width:12.475098px;}
._9_c00093{width:13.644216px;}
._c_c00093{width:19.939238px;}
._5_c00093{width:46.300519px;}
._4_c00093{width:89.844227px;}
._1_c00093{width:1953.503549px;}
.fc0_c00093{color:rgb(0,0,0);}
.fs0_c00093{font-size:66.240000px;}
.y0_c00093{bottom:0.000000px;}
.y1b_c00093{bottom:89.820150px;}
.y1a_c00093{bottom:110.879850px;}
.y19_c00093{bottom:590.475300px;}
.y18_c00093{bottom:611.535000px;}
.y17_c00093{bottom:632.595300px;}
.y16_c00093{bottom:653.505000px;}
.y15_c00093{bottom:674.565300px;}
.y14_c00093{bottom:695.625450px;}
.y13_c00093{bottom:716.505300px;}
.y12_c00093{bottom:737.565600px;}
.y11_c00093{bottom:758.625300px;}
.y10_c00093{bottom:779.505150px;}
.yf_c00093{bottom:800.565450px;}
.ye_c00093{bottom:821.625150px;}
.yd_c00093{bottom:842.505000px;}
.yc_c00093{bottom:872.565750px;}
.yb_c00093{bottom:893.670600px;}
.ya_c00093{bottom:914.550450px;}
.y9_c00093{bottom:935.610150px;}
.y8_c00093{bottom:956.670450px;}
.y7_c00093{bottom:977.550300px;}
.y6_c00093{bottom:998.610000px;}
.y5_c00093{bottom:1028.670000px;}
.y4_c00093{bottom:1058.550000px;}
.y3_c00093{bottom:1097.609700px;}
.y2_c00093{bottom:1118.670000px;}
.y1_c00093{bottom:1174.680000px;}
.h2_c00093{height:56.957344px;}
.h1_c00093{height:1263.000000px;}
.h0_c00093{height:1263.060000px;}
.w1_c00093{width:893.250000px;}
.w0_c00093{width:893.340000px;}
.x0_c00093{left:0.000000px;}
.x1_c00093{left:127.655850px;}
.x2_c00093{left:148.896150px;}
.x3_c00093{left:234.028980px;}
@media print{
.v0_c00093{vertical-align:0.000000pt;}
.ls0_c00093{letter-spacing:0.000000pt;}
.ws0_c00093{word-spacing:-32.737280pt;}
.ws1_c00093{word-spacing:0.000000pt;}
._d_c00093{margin-left:-5.753694pt;}
._6_c00093{margin-left:-3.594763pt;}
._7_c00093{margin-left:-2.672828pt;}
._0_c00093{margin-left:-1.295192pt;}
._b_c00093{width:0.904234pt;}
._8_c00093{width:1.819371pt;}
._3_c00093{width:2.884572pt;}
._2_c00093{width:4.031938pt;}
._e_c00093{width:6.535739pt;}
._a_c00093{width:11.088976pt;}
._9_c00093{width:12.128192pt;}
._c_c00093{width:17.723767pt;}
._5_c00093{width:41.156017pt;}
._4_c00093{width:79.861535pt;}
._1_c00093{width:1736.447599pt;}
.fs0_c00093{font-size:58.880000pt;}
.y0_c00093{bottom:0.000000pt;}
.y1b_c00093{bottom:79.840133pt;}
.y1a_c00093{bottom:98.559867pt;}
.y19_c00093{bottom:524.866933pt;}
.y18_c00093{bottom:543.586667pt;}
.y17_c00093{bottom:562.306933pt;}
.y16_c00093{bottom:580.893333pt;}
.y15_c00093{bottom:599.613600pt;}
.y14_c00093{bottom:618.333733pt;}
.y13_c00093{bottom:636.893600pt;}
.y12_c00093{bottom:655.613867pt;}
.y11_c00093{bottom:674.333600pt;}
.y10_c00093{bottom:692.893467pt;}
.yf_c00093{bottom:711.613733pt;}
.ye_c00093{bottom:730.333467pt;}
.yd_c00093{bottom:748.893333pt;}
.yc_c00093{bottom:775.614000pt;}
.yb_c00093{bottom:794.373867pt;}
.ya_c00093{bottom:812.933733pt;}
.y9_c00093{bottom:831.653467pt;}
.y8_c00093{bottom:850.373733pt;}
.y7_c00093{bottom:868.933600pt;}
.y6_c00093{bottom:887.653333pt;}
.y5_c00093{bottom:914.373333pt;}
.y4_c00093{bottom:940.933333pt;}
.y3_c00093{bottom:975.653067pt;}
.y2_c00093{bottom:994.373333pt;}
.y1_c00093{bottom:1044.160000pt;}
.h2_c00093{height:50.628750pt;}
.h1_c00093{height:1122.666667pt;}
.h0_c00093{height:1122.720000pt;}
.w1_c00093{width:794.000000pt;}
.w0_c00093{width:794.080000pt;}
.x0_c00093{left:0.000000pt;}
.x1_c00093{left:113.471867pt;}
.x2_c00093{left:132.352133pt;}
.x3_c00093{left:208.025760pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_03b38d86886ba2b2540da74a.woff2')format("woff");}.ff1_c00094{font-family:ff1_c00094;line-height:1.070312;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00094{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00094{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00094{vertical-align:0.000000px;}
.ls2_c00094{letter-spacing:0.000000px;}
.ls1_c00094{letter-spacing:5.148960px;}
.ls0_c00094{letter-spacing:12.346620px;}
.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;}
}
.ws1_c00094{word-spacing:-18.414720px;}
.ws0_c00094{word-spacing:-15.012000px;}
.ws2_c00094{word-spacing:0.000000px;}
._11_c00094{margin-left:-4.040649px;}
._8_c00094{margin-left:-2.715446px;}
._0_c00094{margin-left:-1.457091px;}
._3_c00094{width:1.193730px;}
._4_c00094{width:2.715033px;}
._7_c00094{width:5.034730px;}
._5_c00094{width:6.358125px;}
._6_c00094{width:7.483633px;}
._c_c00094{width:8.545325px;}
._9_c00094{width:10.608017px;}
._a_c00094{width:11.805905px;}
._b_c00094{width:13.181230px;}
._10_c00094{width:14.674775px;}
._2_c00094{width:19.606595px;}
._d_c00094{width:44.849396px;}
._e_c00094{width:45.964287px;}
._f_c00094{width:89.811769px;}
._1_c00094{width:1953.503549px;}
.fc0_c00094{color:rgb(0,0,0);}
.fs1_c00094{font-size:54.000000px;}
.fs0_c00094{font-size:66.240000px;}
.y0_c00094{bottom:0.000000px;}
.y1e_c00094{bottom:99.900150px;}
.y1d_c00094{bottom:120.959850px;}
.y1c_c00094{bottom:142.056000px;}
.y1b_c00094{bottom:162.930000px;}
.y1a_c00094{bottom:192.990450px;}
.y19_c00094{bottom:214.050150px;}
.y18_c00094{bottom:234.930000px;}
.y17_c00094{bottom:255.990300px;}
.y16_c00094{bottom:277.050000px;}
.y15_c00094{bottom:306.930000px;}
.y14_c00094{bottom:336.990000px;}
.y13_c00094{bottom:376.050000px;}
.y12_c00094{bottom:414.975300px;}
.y11_c00094{bottom:436.035000px;}
.y10_c00094{bottom:797.505150px;}
.yf_c00094{bottom:818.565450px;}
.ye_c00094{bottom:839.625150px;}
.yd_c00094{bottom:860.505450px;}
.yc_c00094{bottom:881.565750px;}
.yb_c00094{bottom:902.670600px;}
.ya_c00094{bottom:923.550450px;}
.y9_c00094{bottom:944.610150px;}
.y8_c00094{bottom:965.670450px;}
.y7_c00094{bottom:986.550300px;}
.y6_c00094{bottom:1007.610000px;}
.y5_c00094{bottom:1037.670000px;}
.y4_c00094{bottom:1067.550000px;}
.y3_c00094{bottom:1097.609700px;}
.y2_c00094{bottom:1118.670000px;}
.y1_c00094{bottom:1174.680000px;}
.h2_c00094{height:56.957344px;}
.h1_c00094{height:1263.000000px;}
.h0_c00094{height:1263.060000px;}
.w1_c00094{width:893.250000px;}
.w0_c00094{width:893.340000px;}
.x0_c00094{left:0.000000px;}
.x1_c00094{left:127.655850px;}
.x2_c00094{left:148.896150px;}
.x3_c00094{left:234.029850px;}
@media print{
.v0_c00094{vertical-align:0.000000pt;}
.ls2_c00094{letter-spacing:0.000000pt;}
.ls1_c00094{letter-spacing:4.576853pt;}
.ls0_c00094{letter-spacing:10.974773pt;}
.ws1_c00094{word-spacing:-16.368640pt;}
.ws0_c00094{word-spacing:-13.344000pt;}
.ws2_c00094{word-spacing:0.000000pt;}
._11_c00094{margin-left:-3.591688pt;}
._8_c00094{margin-left:-2.413730pt;}
._0_c00094{margin-left:-1.295192pt;}
._3_c00094{width:1.061094pt;}
._4_c00094{width:2.413362pt;}
._7_c00094{width:4.475315pt;}
._5_c00094{width:5.651666pt;}
._6_c00094{width:6.652118pt;}
._c_c00094{width:7.595844pt;}
._9_c00094{width:9.429349pt;}
._a_c00094{width:10.494138pt;}
._b_c00094{width:11.716649pt;}
._10_c00094{width:13.044244pt;}
._2_c00094{width:17.428084pt;}
._d_c00094{width:39.866129pt;}
._e_c00094{width:40.857144pt;}
._f_c00094{width:79.832684pt;}
._1_c00094{width:1736.447599pt;}
.fs1_c00094{font-size:48.000000pt;}
.fs0_c00094{font-size:58.880000pt;}
.y0_c00094{bottom:0.000000pt;}
.y1e_c00094{bottom:88.800133pt;}
.y1d_c00094{bottom:107.519867pt;}
.y1c_c00094{bottom:126.272000pt;}
.y1b_c00094{bottom:144.826667pt;}
.y1a_c00094{bottom:171.547067pt;}
.y19_c00094{bottom:190.266800pt;}
.y18_c00094{bottom:208.826667pt;}
.y17_c00094{bottom:227.546933pt;}
.y16_c00094{bottom:246.266667pt;}
.y15_c00094{bottom:272.826667pt;}
.y14_c00094{bottom:299.546667pt;}
.y13_c00094{bottom:334.266667pt;}
.y12_c00094{bottom:368.866933pt;}
.y11_c00094{bottom:387.586667pt;}
.y10_c00094{bottom:708.893467pt;}
.yf_c00094{bottom:727.613733pt;}
.ye_c00094{bottom:746.333467pt;}
.yd_c00094{bottom:764.893733pt;}
.yc_c00094{bottom:783.614000pt;}
.yb_c00094{bottom:802.373867pt;}
.ya_c00094{bottom:820.933733pt;}
.y9_c00094{bottom:839.653467pt;}
.y8_c00094{bottom:858.373733pt;}
.y7_c00094{bottom:876.933600pt;}
.y6_c00094{bottom:895.653333pt;}
.y5_c00094{bottom:922.373333pt;}
.y4_c00094{bottom:948.933333pt;}
.y3_c00094{bottom:975.653067pt;}
.y2_c00094{bottom:994.373333pt;}
.y1_c00094{bottom:1044.160000pt;}
.h2_c00094{height:50.628750pt;}
.h1_c00094{height:1122.666667pt;}
.h0_c00094{height:1122.720000pt;}
.w1_c00094{width:794.000000pt;}
.w0_c00094{width:794.080000pt;}
.x0_c00094{left:0.000000pt;}
.x1_c00094{left:113.471867pt;}
.x2_c00094{left:132.352133pt;}
.x3_c00094{left:208.026533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3115bf359435b2b7b1ad1696.woff2')format("woff");}.ff1_c00095{font-family:ff1_c00095;line-height:1.070312;font-style: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);}
.v5_c00095{vertical-align:-23.760000px;}
.v1_c00095{vertical-align:-5.760936px;}
.v0_c00095{vertical-align:0.000000px;}
.v3_c00095{vertical-align:5.760936px;}
.v2_c00095{vertical-align:23.758620px;}
.v4_c00095{vertical-align:29.520000px;}
.ls8_c00095{letter-spacing:0.000000px;}
.ls0_c00095{letter-spacing:0.107520px;}
.ls4_c00095{letter-spacing:0.109860px;}
.ls2_c00095{letter-spacing:0.227040px;}
.ls6_c00095{letter-spacing:1.546620px;}
.ls7_c00095{letter-spacing:4.427040px;}
.ls1_c00095{letter-spacing:10.188000px;}
.ls5_c00095{letter-spacing:10.907520px;}
.ls3_c00095{letter-spacing:14.509860px;}
.sc__c00095{text-shadow:none;}
.sc0_c00095{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00095{-webkit-text-stroke:0px transparent;}
.sc0_c00095{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00095{word-spacing:-18.414720px;}
.ws1_c00095{word-spacing:-15.012000px;}
.ws2_c00095{word-spacing:-11.609280px;}
.ws3_c00095{word-spacing:0.000000px;}
._f_c00095{margin-left:-4.759092px;}
._c_c00095{margin-left:-3.583853px;}
._d_c00095{margin-left:-2.493576px;}
._0_c00095{margin-left:-1.457091px;}
._7_c00095{width:1.063722px;}
._6_c00095{width:3.134620px;}
._3_c00095{width:4.980013px;}
._2_c00095{width:6.492315px;}
._a_c00095{width:7.552660px;}
._9_c00095{width:8.588616px;}
._5_c00095{width:9.741914px;}
._4_c00095{width:11.280252px;}
._8_c00095{width:12.320365px;}
._10_c00095{width:14.169496px;}
._e_c00095{width:15.292050px;}
._b_c00095{width:16.306338px;}
._12_c00095{width:194.165280px;}
._11_c00095{width:200.912906px;}
._1_c00095{width:1953.503549px;}
.fc0_c00095{color:rgb(0,0,0);}
.fs2_c00095{font-size:41.760000px;}
.fs1_c00095{font-size:54.000000px;}
.fs0_c00095{font-size:66.240000px;}
.y0_c00095{bottom:0.000000px;}
.y2d_c00095{bottom:125.459700px;}
.y2c_c00095{bottom:146.555850px;}
.y2b_c00095{bottom:167.429850px;}
.y2a_c00095{bottom:188.490150px;}
.y29_c00095{bottom:209.549850px;}
.y28_c00095{bottom:230.429700px;}
.y27_c00095{bottom:251.490000px;}
.y26_c00095{bottom:281.550150px;}
.y25_c00095{bottom:302.430000px;}
.y24_c00095{bottom:332.490000px;}
.y23_c00095{bottom:362.550000px;}
.y22_c00095{bottom:383.429850px;}
.y21_c00095{bottom:404.534700px;}
.y20_c00095{bottom:425.595000px;}
.y1f_c00095{bottom:455.475300px;}
.y1e_c00095{bottom:476.535000px;}
.y1d_c00095{bottom:497.595300px;}
.y1c_c00095{bottom:518.475150px;}
.y1b_c00095{bottom:539.534850px;}
.y1a_c00095{bottom:560.595150px;}
.y19_c00095{bottom:581.475000px;}
.y18_c00095{bottom:611.535000px;}
.y17_c00095{bottom:632.595300px;}
.y16_c00095{bottom:653.505000px;}
.y15_c00095{bottom:674.565300px;}
.y14_c00095{bottom:695.625000px;}
.y13_c00095{bottom:725.505000px;}
.y12_c00095{bottom:746.565300px;}
.y11_c00095{bottom:767.625000px;}
.y10_c00095{bottom:797.505150px;}
.yf_c00095{bottom:818.565450px;}
.ye_c00095{bottom:839.625150px;}
.yd_c00095{bottom:860.505000px;}
.yc_c00095{bottom:881.565300px;}
.yb_c00095{bottom:902.670150px;}
.ya_c00095{bottom:923.550000px;}
.y9_c00095{bottom:953.610000px;}
.y8_c00095{bottom:983.670000px;}
.y7_c00095{bottom:1013.550150px;}
.y6_c00095{bottom:1034.609850px;}
.y5_c00095{bottom:1055.670150px;}
.y4_c00095{bottom:1076.550000px;}
.y3_c00095{bottom:1097.609700px;}
.y2_c00095{bottom:1118.670000px;}
.y1_c00095{bottom:1174.680000px;}
.h2_c00095{height:56.957344px;}
.h3_c00095{height:59.666511px;}
.h4_c00095{height:59.667891px;}
.h1_c00095{height:1263.000000px;}
.h0_c00095{height:1263.060000px;}
.w1_c00095{width:893.250000px;}
.w0_c00095{width:893.340000px;}
.x0_c00095{left:0.000000px;}
.x1_c00095{left:127.655850px;}
.x2_c00095{left:148.896150px;}
.x3_c00095{left:286.995000px;}
@media print{
.v5_c00095{vertical-align:-21.120000pt;}
.v1_c00095{vertical-align:-5.120832pt;}
.v0_c00095{vertical-align:0.000000pt;}
.v3_c00095{vertical-align:5.120832pt;}
.v2_c00095{vertical-align:21.118773pt;}
.v4_c00095{vertical-align:26.240000pt;}
.ls8_c00095{letter-spacing:0.000000pt;}
.ls0_c00095{letter-spacing:0.095573pt;}
.ls4_c00095{letter-spacing:0.097653pt;}
.ls2_c00095{letter-spacing:0.201813pt;}
.ls6_c00095{letter-spacing:1.374773pt;}
.ls7_c00095{letter-spacing:3.935147pt;}
.ls1_c00095{letter-spacing:9.056000pt;}
.ls5_c00095{letter-spacing:9.695573pt;}
.ls3_c00095{letter-spacing:12.897653pt;}
.ws0_c00095{word-spacing:-16.368640pt;}
.ws1_c00095{word-spacing:-13.344000pt;}
.ws2_c00095{word-spacing:-10.319360pt;}
.ws3_c00095{word-spacing:0.000000pt;}
._f_c00095{margin-left:-4.230304pt;}
._c_c00095{margin-left:-3.185647pt;}
._d_c00095{margin-left:-2.216512pt;}
._0_c00095{margin-left:-1.295192pt;}
._7_c00095{width:0.945531pt;}
._6_c00095{width:2.786329pt;}
._3_c00095{width:4.426678pt;}
._2_c00095{width:5.770947pt;}
._a_c00095{width:6.713476pt;}
._9_c00095{width:7.634325pt;}
._5_c00095{width:8.659479pt;}
._4_c00095{width:10.026891pt;}
._8_c00095{width:10.951436pt;}
._10_c00095{width:12.595108pt;}
._e_c00095{width:13.592933pt;}
._b_c00095{width:14.494523pt;}
._12_c00095{width:172.591360pt;}
._11_c00095{width:178.589250pt;}
._1_c00095{width:1736.447599pt;}
.fs2_c00095{font-size:37.120000pt;}
.fs1_c00095{font-size:48.000000pt;}
.fs0_c00095{font-size:58.880000pt;}
.y0_c00095{bottom:0.000000pt;}
.y2d_c00095{bottom:111.519733pt;}
.y2c_c00095{bottom:130.271867pt;}
.y2b_c00095{bottom:148.826533pt;}
.y2a_c00095{bottom:167.546800pt;}
.y29_c00095{bottom:186.266533pt;}
.y28_c00095{bottom:204.826400pt;}
.y27_c00095{bottom:223.546667pt;}
.y26_c00095{bottom:250.266800pt;}
.y25_c00095{bottom:268.826667pt;}
.y24_c00095{bottom:295.546667pt;}
.y23_c00095{bottom:322.266667pt;}
.y22_c00095{bottom:340.826533pt;}
.y21_c00095{bottom:359.586400pt;}
.y20_c00095{bottom:378.306667pt;}
.y1f_c00095{bottom:404.866933pt;}
.y1e_c00095{bottom:423.586667pt;}
.y1d_c00095{bottom:442.306933pt;}
.y1c_c00095{bottom:460.866800pt;}
.y1b_c00095{bottom:479.586533pt;}
.y1a_c00095{bottom:498.306800pt;}
.y19_c00095{bottom:516.866667pt;}
.y18_c00095{bottom:543.586667pt;}
.y17_c00095{bottom:562.306933pt;}
.y16_c00095{bottom:580.893333pt;}
.y15_c00095{bottom:599.613600pt;}
.y14_c00095{bottom:618.333333pt;}
.y13_c00095{bottom:644.893333pt;}
.y12_c00095{bottom:663.613600pt;}
.y11_c00095{bottom:682.333333pt;}
.y10_c00095{bottom:708.893467pt;}
.yf_c00095{bottom:727.613733pt;}
.ye_c00095{bottom:746.333467pt;}
.yd_c00095{bottom:764.893333pt;}
.yc_c00095{bottom:783.613600pt;}
.yb_c00095{bottom:802.373467pt;}
.ya_c00095{bottom:820.933333pt;}
.y9_c00095{bottom:847.653333pt;}
.y8_c00095{bottom:874.373333pt;}
.y7_c00095{bottom:900.933467pt;}
.y6_c00095{bottom:919.653200pt;}
.y5_c00095{bottom:938.373467pt;}
.y4_c00095{bottom:956.933333pt;}
.y3_c00095{bottom:975.653067pt;}
.y2_c00095{bottom:994.373333pt;}
.y1_c00095{bottom:1044.160000pt;}
.h2_c00095{height:50.628750pt;}
.h3_c00095{height:53.036898pt;}
.h4_c00095{height:53.038125pt;}
.h1_c00095{height:1122.666667pt;}
.h0_c00095{height:1122.720000pt;}
.w1_c00095{width:794.000000pt;}
.w0_c00095{width:794.080000pt;}
.x0_c00095{left:0.000000pt;}
.x1_c00095{left:113.471867pt;}
.x2_c00095{left:132.352133pt;}
.x3_c00095{left:255.106667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ae8043065fe1299e73601bdb.woff2')format("woff");}.ff1_c00096{font-family:ff1_c00096;line-height:1.070312;font-style: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);}
.v1_c00096{vertical-align:-5.760936px;}
.v0_c00096{vertical-align:0.000000px;}
.v2_c00096{vertical-align:5.760936px;}
.v3_c00096{vertical-align:23.760960px;}
.ls5_c00096{letter-spacing:0.000000px;}
.ls0_c00096{letter-spacing:0.000480px;}
.ls1_c00096{letter-spacing:0.092640px;}
.ls2_c00096{letter-spacing:0.107520px;}
.ls3_c00096{letter-spacing:0.109860px;}
.ls4_c00096{letter-spacing:0.829380px;}
.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:-18.414720px;}
.ws2_c00096{word-spacing:-15.012000px;}
.ws1_c00096{word-spacing:-11.609280px;}
.ws3_c00096{word-spacing:0.000000px;}
._d_c00096{margin-left:-5.298239px;}
._e_c00096{margin-left:-4.040266px;}
._16_c00096{margin-left:-2.536644px;}
._0_c00096{margin-left:-1.457091px;}
._3_c00096{width:1.082609px;}
._2_c00096{width:2.649610px;}
._15_c00096{width:4.503369px;}
._10_c00096{width:6.561501px;}
._9_c00096{width:7.681204px;}
._8_c00096{width:8.809354px;}
._14_c00096{width:13.445858px;}
._11_c00096{width:14.704284px;}
._a_c00096{width:16.029924px;}
._b_c00096{width:17.041397px;}
._12_c00096{width:20.996580px;}
._13_c00096{width:22.289090px;}
._f_c00096{width:26.364868px;}
._7_c00096{width:28.181989px;}
._6_c00096{width:29.411093px;}
._4_c00096{width:50.089026px;}
._c_c00096{width:173.639333px;}
._5_c00096{width:193.985165px;}
._17_c00096{width:845.765568px;}
._1_c00096{width:1953.503549px;}
.fc0_c00096{color:rgb(0,0,0);}
.fs1_c00096{font-size:41.760000px;}
.fs2_c00096{font-size:54.000000px;}
.fs0_c00096{font-size:66.240000px;}
.y0_c00096{bottom:0.000000px;}
.y26_c00096{bottom:254.370000px;}
.y25_c00096{bottom:275.430750px;}
.y24_c00096{bottom:296.490450px;}
.y23_c00096{bottom:317.550150px;}
.y22_c00096{bottom:338.430000px;}
.y21_c00096{bottom:368.490150px;}
.y20_c00096{bottom:389.595000px;}
.y1f_c00096{bottom:419.475150px;}
.y1e_c00096{bottom:440.534850px;}
.y1d_c00096{bottom:461.595150px;}
.y1c_c00096{bottom:482.475000px;}
.y1b_c00096{bottom:512.535300px;}
.y1a_c00096{bottom:533.595600px;}
.y19_c00096{bottom:554.475450px;}
.y18_c00096{bottom:575.535150px;}
.y17_c00096{bottom:596.595450px;}
.y16_c00096{bottom:617.475300px;}
.y15_c00096{bottom:638.535000px;}
.y14_c00096{bottom:668.625000px;}
.y13_c00096{bottom:698.505000px;}
.y12_c00096{bottom:728.565300px;}
.y11_c00096{bottom:749.625000px;}
.y10_c00096{bottom:779.504850px;}
.yf_c00096{bottom:800.565150px;}
.ye_c00096{bottom:821.624850px;}
.yd_c00096{bottom:842.504700px;}
.yc_c00096{bottom:863.565000px;}
.yb_c00096{bottom:893.670000px;}
.ya_c00096{bottom:923.550300px;}
.y9_c00096{bottom:944.610000px;}
.y8_c00096{bottom:974.670150px;}
.y7_c00096{bottom:995.550000px;}
.y6_c00096{bottom:1016.609700px;}
.y5_c00096{bottom:1037.670000px;}
.y4_c00096{bottom:1067.550000px;}
.y3_c00096{bottom:1097.609700px;}
.y2_c00096{bottom:1118.670000px;}
.y1_c00096{bottom:1174.680000px;}
.h2_c00096{height:56.957344px;}
.h4_c00096{height:59.666511px;}
.h3_c00096{height:59.668851px;}
.h1_c00096{height:1263.000000px;}
.h0_c00096{height:1263.060000px;}
.w1_c00096{width:893.250000px;}
.w0_c00096{width:893.340000px;}
.x0_c00096{left:0.000000px;}
.x1_c00096{left:127.655850px;}
.x2_c00096{left:148.896150px;}
.x4_c00096{left:191.550000px;}
.x3_c00096{left:286.995000px;}
@media print{
.v1_c00096{vertical-align:-5.120832pt;}
.v0_c00096{vertical-align:0.000000pt;}
.v2_c00096{vertical-align:5.120832pt;}
.v3_c00096{vertical-align:21.120853pt;}
.ls5_c00096{letter-spacing:0.000000pt;}
.ls0_c00096{letter-spacing:0.000427pt;}
.ls1_c00096{letter-spacing:0.082347pt;}
.ls2_c00096{letter-spacing:0.095573pt;}
.ls3_c00096{letter-spacing:0.097653pt;}
.ls4_c00096{letter-spacing:0.737227pt;}
.ws0_c00096{word-spacing:-16.368640pt;}
.ws2_c00096{word-spacing:-13.344000pt;}
.ws1_c00096{word-spacing:-10.319360pt;}
.ws3_c00096{word-spacing:0.000000pt;}
._d_c00096{margin-left:-4.709546pt;}
._e_c00096{margin-left:-3.591347pt;}
._16_c00096{margin-left:-2.254795pt;}
._0_c00096{margin-left:-1.295192pt;}
._3_c00096{width:0.962319pt;}
._2_c00096{width:2.355209pt;}
._15_c00096{width:4.002994pt;}
._10_c00096{width:5.832446pt;}
._9_c00096{width:6.827737pt;}
._8_c00096{width:7.830537pt;}
._14_c00096{width:11.951873pt;}
._11_c00096{width:13.070475pt;}
._a_c00096{width:14.248821pt;}
._b_c00096{width:15.147909pt;}
._12_c00096{width:18.663626pt;}
._13_c00096{width:19.812525pt;}
._f_c00096{width:23.435438pt;}
._7_c00096{width:25.050657pt;}
._6_c00096{width:26.143194pt;}
._4_c00096{width:44.523579pt;}
._c_c00096{width:154.346074pt;}
._5_c00096{width:172.431258pt;}
._17_c00096{width:751.791616pt;}
._1_c00096{width:1736.447599pt;}
.fs1_c00096{font-size:37.120000pt;}
.fs2_c00096{font-size:48.000000pt;}
.fs0_c00096{font-size:58.880000pt;}
.y0_c00096{bottom:0.000000pt;}
.y26_c00096{bottom:226.106667pt;}
.y25_c00096{bottom:244.827333pt;}
.y24_c00096{bottom:263.547067pt;}
.y23_c00096{bottom:282.266800pt;}
.y22_c00096{bottom:300.826667pt;}
.y21_c00096{bottom:327.546800pt;}
.y20_c00096{bottom:346.306667pt;}
.y1f_c00096{bottom:372.866800pt;}
.y1e_c00096{bottom:391.586533pt;}
.y1d_c00096{bottom:410.306800pt;}
.y1c_c00096{bottom:428.866667pt;}
.y1b_c00096{bottom:455.586933pt;}
.y1a_c00096{bottom:474.307200pt;}
.y19_c00096{bottom:492.867067pt;}
.y18_c00096{bottom:511.586800pt;}
.y17_c00096{bottom:530.307067pt;}
.y16_c00096{bottom:548.866933pt;}
.y15_c00096{bottom:567.586667pt;}
.y14_c00096{bottom:594.333333pt;}
.y13_c00096{bottom:620.893333pt;}
.y12_c00096{bottom:647.613600pt;}
.y11_c00096{bottom:666.333333pt;}
.y10_c00096{bottom:692.893200pt;}
.yf_c00096{bottom:711.613467pt;}
.ye_c00096{bottom:730.333200pt;}
.yd_c00096{bottom:748.893067pt;}
.yc_c00096{bottom:767.613333pt;}
.yb_c00096{bottom:794.373333pt;}
.ya_c00096{bottom:820.933600pt;}
.y9_c00096{bottom:839.653333pt;}
.y8_c00096{bottom:866.373467pt;}
.y7_c00096{bottom:884.933333pt;}
.y6_c00096{bottom:903.653067pt;}
.y5_c00096{bottom:922.373333pt;}
.y4_c00096{bottom:948.933333pt;}
.y3_c00096{bottom:975.653067pt;}
.y2_c00096{bottom:994.373333pt;}
.y1_c00096{bottom:1044.160000pt;}
.h2_c00096{height:50.628750pt;}
.h4_c00096{height:53.036898pt;}
.h3_c00096{height:53.038978pt;}
.h1_c00096{height:1122.666667pt;}
.h0_c00096{height:1122.720000pt;}
.w1_c00096{width:794.000000pt;}
.w0_c00096{width:794.080000pt;}
.x0_c00096{left:0.000000pt;}
.x1_c00096{left:113.471867pt;}
.x2_c00096{left:132.352133pt;}
.x4_c00096{left:170.266667pt;}
.x3_c00096{left:255.106667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2d86e226d2608f4b228ded28.woff2')format("woff");}.ff1_c00097{font-family:ff1_c00097;line-height:1.070312;font-style:normal;font-weight:normal;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_50c8be7ea87cae7343a9286b.woff2')format("woff");}.ff2_c00097{font-family:ff2_c00097;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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);}
.m1_c00097{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1_c00097{vertical-align:-5.758596px;}
.v0_c00097{vertical-align:0.000000px;}
.v2_c00097{vertical-align:5.758596px;}
.ls0_c00097{letter-spacing:0.000000px;}
.sc__c00097{text-shadow:none;}
.sc0_c00097{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00097{-webkit-text-stroke:0px transparent;}
.sc0_c00097{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00097{word-spacing:-18.414720px;}
.ws0_c00097{word-spacing:-11.609280px;}
.ws2_c00097{word-spacing:0.000000px;}
._0_c00097{margin-left:-1.457091px;}
._6_c00097{width:2.059895px;}
._5_c00097{width:14.573525px;}
._4_c00097{width:15.631958px;}
._2_c00097{width:19.541366px;}
._7_c00097{width:20.664638px;}
._8_c00097{width:21.725925px;}
._3_c00097{width:117.678832px;}
._9_c00097{width:845.765568px;}
._1_c00097{width:1953.503549px;}
.fc0_c00097{color:rgb(0,0,0);}
.fs1_c00097{font-size:41.760000px;}
.fs0_c00097{font-size:66.240000px;}
.y0_c00097{bottom:0.000000px;}
.yf_c00097{bottom:10.440000px;}
.ya_c00097{bottom:10.485000px;}
.yc_c00097{bottom:10.620000px;}
.y8_c00097{bottom:27.900000px;}
.y1b_c00097{bottom:28.080000px;}
.y1f_c00097{bottom:137.016150px;}
.y1e_c00097{bottom:176.070000px;}
.y1d_c00097{bottom:220.710000px;}
.y1c_c00097{bottom:253.290000px;}
.y1a_c00097{bottom:285.870000px;}
.y19_c00097{bottom:375.509550px;}
.y18_c00097{bottom:396.615000px;}
.y17_c00097{bottom:444.495000px;}
.y16_c00097{bottom:489.315000px;}
.y15_c00097{bottom:556.815000px;}
.y14_c00097{bottom:589.395000px;}
.y13_c00097{bottom:621.975000px;}
.y12_c00097{bottom:654.585000px;}
.y11_c00097{bottom:687.345000px;}
.y10_c00097{bottom:719.925000px;}
.ye_c00097{bottom:787.425000px;}
.yd_c00097{bottom:820.005000px;}
.yb_c00097{bottom:852.585000px;}
.y9_c00097{bottom:885.345000px;}
.y7_c00097{bottom:917.970000px;}
.y6_c00097{bottom:1007.609700px;}
.y5_c00097{bottom:1028.670000px;}
.y4_c00097{bottom:1076.550000px;}
.y3_c00097{bottom:1097.609700px;}
.y2_c00097{bottom:1118.670000px;}
.y1_c00097{bottom:1174.680000px;}
.h6_c00097{height:31.859700px;}
.h7_c00097{height:31.860300px;}
.h5_c00097{height:31.896150px;}
.h4_c00097{height:48.224531px;}
.h2_c00097{height:56.957344px;}
.h8_c00097{height:66.600000px;}
.h3_c00097{height:66.779850px;}
.h1_c00097{height:1263.000000px;}
.h0_c00097{height:1263.060000px;}
.w2_c00097{width:679.065000px;}
.w1_c00097{width:893.250000px;}
.w0_c00097{width:893.340000px;}
.x0_c00097{left:0.000000px;}
.x4_c00097{left:7.739700px;}
.x1_c00097{left:127.655850px;}
.x2_c00097{left:148.896150px;}
.x5_c00097{left:191.550000px;}
.x3_c00097{left:234.029850px;}
@media print{
.v1_c00097{vertical-align:-5.118752pt;}
.v0_c00097{vertical-align:0.000000pt;}
.v2_c00097{vertical-align:5.118752pt;}
.ls0_c00097{letter-spacing:0.000000pt;}
.ws1_c00097{word-spacing:-16.368640pt;}
.ws0_c00097{word-spacing:-10.319360pt;}
.ws2_c00097{word-spacing:0.000000pt;}
._0_c00097{margin-left:-1.295192pt;}
._6_c00097{width:1.831018pt;}
._5_c00097{width:12.954245pt;}
._4_c00097{width:13.895074pt;}
._2_c00097{width:17.370103pt;}
._7_c00097{width:18.368568pt;}
._8_c00097{width:19.311933pt;}
._3_c00097{width:104.603406pt;}
._9_c00097{width:751.791616pt;}
._1_c00097{width:1736.447599pt;}
.fs1_c00097{font-size:37.120000pt;}
.fs0_c00097{font-size:58.880000pt;}
.y0_c00097{bottom:0.000000pt;}
.yf_c00097{bottom:9.280000pt;}
.ya_c00097{bottom:9.320000pt;}
.yc_c00097{bottom:9.440000pt;}
.y8_c00097{bottom:24.800000pt;}
.y1b_c00097{bottom:24.960000pt;}
.y1f_c00097{bottom:121.792133pt;}
.y1e_c00097{bottom:156.506667pt;}
.y1d_c00097{bottom:196.186667pt;}
.y1c_c00097{bottom:225.146667pt;}
.y1a_c00097{bottom:254.106667pt;}
.y19_c00097{bottom:333.786267pt;}
.y18_c00097{bottom:352.546667pt;}
.y17_c00097{bottom:395.106667pt;}
.y16_c00097{bottom:434.946667pt;}
.y15_c00097{bottom:494.946667pt;}
.y14_c00097{bottom:523.906667pt;}
.y13_c00097{bottom:552.866667pt;}
.y12_c00097{bottom:581.853333pt;}
.y11_c00097{bottom:610.973333pt;}
.y10_c00097{bottom:639.933333pt;}
.ye_c00097{bottom:699.933333pt;}
.yd_c00097{bottom:728.893333pt;}
.yb_c00097{bottom:757.853333pt;}
.y9_c00097{bottom:786.973333pt;}
.y7_c00097{bottom:815.973333pt;}
.y6_c00097{bottom:895.653067pt;}
.y5_c00097{bottom:914.373333pt;}
.y4_c00097{bottom:956.933333pt;}
.y3_c00097{bottom:975.653067pt;}
.y2_c00097{bottom:994.373333pt;}
.y1_c00097{bottom:1044.160000pt;}
.h6_c00097{height:28.319733pt;}
.h7_c00097{height:28.320267pt;}
.h5_c00097{height:28.352133pt;}
.h4_c00097{height:42.866250pt;}
.h2_c00097{height:50.628750pt;}
.h8_c00097{height:59.200000pt;}
.h3_c00097{height:59.359867pt;}
.h1_c00097{height:1122.666667pt;}
.h0_c00097{height:1122.720000pt;}
.w2_c00097{width:603.613333pt;}
.w1_c00097{width:794.000000pt;}
.w0_c00097{width:794.080000pt;}
.x0_c00097{left:0.000000pt;}
.x4_c00097{left:6.879733pt;}
.x1_c00097{left:113.471867pt;}
.x2_c00097{left:132.352133pt;}
.x5_c00097{left:170.266667pt;}
.x3_c00097{left:208.026533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d58c2b9866460ccd36f872ea.woff2')format("woff");}.ff1_c00098{font-family:ff1_c00098;line-height:1.070312;font-style:normal;font-weight:normal;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_a177e57f2625a436041899fc.woff2')format("woff");}.ff2_c00098{font-family:ff2_c00098;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00098;src:url('chunks/assets/font_067529eeb3b4734f326960dd.woff2')format("woff");}.ff3_c00098{font-family:ff3_c00098;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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);}
.m1_c00098{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1_c00098{vertical-align:-5.760936px;}
.v0_c00098{vertical-align:0.000000px;}
.ls1_c00098{letter-spacing:0.000000px;}
.ls0_c00098{letter-spacing:0.261600px;}
.sc__c00098{text-shadow:none;}
.sc0_c00098{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00098{-webkit-text-stroke:0px transparent;}
.sc0_c00098{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00098{word-spacing:-18.414720px;}
.ws1_c00098{word-spacing:-15.012000px;}
.ws2_c00098{word-spacing:0.000000px;}
._5_c00098{margin-left:-3.708986px;}
._6_c00098{margin-left:-2.621652px;}
._0_c00098{margin-left:-1.457091px;}
._c_c00098{width:1.059384px;}
._11_c00098{width:2.109606px;}
._13_c00098{width:3.919612px;}
._d_c00098{width:7.481329px;}
._7_c00098{width:9.008261px;}
._8_c00098{width:10.928936px;}
._9_c00098{width:12.201153px;}
._3_c00098{width:13.445869px;}
._b_c00098{width:14.572114px;}
._a_c00098{width:16.029728px;}
._12_c00098{width:17.057030px;}
._e_c00098{width:22.058517px;}
._f_c00098{width:23.844355px;}
._10_c00098{width:25.524602px;}
._4_c00098{width:62.288245px;}
._2_c00098{width:117.678832px;}
._14_c00098{width:845.765568px;}
._1_c00098{width:1953.503549px;}
.fc0_c00098{color:rgb(0,0,0);}
.fs1_c00098{font-size:41.760000px;}
.fs2_c00098{font-size:54.000000px;}
.fs0_c00098{font-size:66.240000px;}
.y0_c00098{bottom:0.000000px;}
.y7_c00098{bottom:10.440000px;}
.y9_c00098{bottom:10.620000px;}
.y5_c00098{bottom:27.900000px;}
.y23_c00098{bottom:200.730000px;}
.y22_c00098{bottom:221.790450px;}
.y21_c00098{bottom:242.850150px;}
.y20_c00098{bottom:263.909850px;}
.y1f_c00098{bottom:284.790300px;}
.y1e_c00098{bottom:305.850300px;}
.y1d_c00098{bottom:326.910000px;}
.y1c_c00098{bottom:347.790450px;}
.y1b_c00098{bottom:368.850150px;}
.y1a_c00098{bottom:389.955000px;}
.y19_c00098{bottom:419.835150px;}
.y18_c00098{bottom:440.895450px;}
.y17_c00098{bottom:461.955150px;}
.y16_c00098{bottom:482.835000px;}
.y15_c00098{bottom:503.895300px;}
.y14_c00098{bottom:524.955000px;}
.y13_c00098{bottom:554.835000px;}
.y12_c00098{bottom:575.895300px;}
.y11_c00098{bottom:596.955000px;}
.y10_c00098{bottom:626.835000px;}
.yf_c00098{bottom:680.505000px;}
.ye_c00098{bottom:713.085000px;}
.yd_c00098{bottom:745.845000px;}
.yc_c00098{bottom:778.425000px;}
.yb_c00098{bottom:868.065000px;}
.ya_c00098{bottom:916.170000px;}
.y8_c00098{bottom:942.630000px;}
.y6_c00098{bottom:975.390000px;}
.y4_c00098{bottom:1007.970000px;}
.y3_c00098{bottom:1097.609700px;}
.y2_c00098{bottom:1118.670000px;}
.y1_c00098{bottom:1174.680000px;}
.h5_c00098{height:31.859700px;}
.h6_c00098{height:31.860300px;}
.h4_c00098{height:48.224531px;}
.h2_c00098{height:56.957344px;}
.h3_c00098{height:66.779850px;}
.h1_c00098{height:1263.000000px;}
.h0_c00098{height:1263.060000px;}
.w2_c00098{width:679.065000px;}
.w1_c00098{width:893.250000px;}
.w0_c00098{width:893.340000px;}
.x0_c00098{left:0.000000px;}
.x3_c00098{left:7.739700px;}
.x1_c00098{left:127.655850px;}
.x4_c00098{left:148.896150px;}
.x5_c00098{left:191.550000px;}
.x2_c00098{left:234.029850px;}
@media print{
.v1_c00098{vertical-align:-5.120832pt;}
.v0_c00098{vertical-align:0.000000pt;}
.ls1_c00098{letter-spacing:0.000000pt;}
.ls0_c00098{letter-spacing:0.232533pt;}
.ws0_c00098{word-spacing:-16.368640pt;}
.ws1_c00098{word-spacing:-13.344000pt;}
.ws2_c00098{word-spacing:0.000000pt;}
._5_c00098{margin-left:-3.296877pt;}
._6_c00098{margin-left:-2.330357pt;}
._0_c00098{margin-left:-1.295192pt;}
._c_c00098{width:0.941675pt;}
._11_c00098{width:1.875205pt;}
._13_c00098{width:3.484099pt;}
._d_c00098{width:6.650070pt;}
._7_c00098{width:8.007343pt;}
._8_c00098{width:9.714609pt;}
._9_c00098{width:10.845469pt;}
._3_c00098{width:11.951884pt;}
._b_c00098{width:12.952990pt;}
._a_c00098{width:14.248647pt;}
._12_c00098{width:15.161804pt;}
._e_c00098{width:19.607571pt;}
._f_c00098{width:21.194982pt;}
._10_c00098{width:22.688535pt;}
._4_c00098{width:55.367329pt;}
._2_c00098{width:104.603406pt;}
._14_c00098{width:751.791616pt;}
._1_c00098{width:1736.447599pt;}
.fs1_c00098{font-size:37.120000pt;}
.fs2_c00098{font-size:48.000000pt;}
.fs0_c00098{font-size:58.880000pt;}
.y0_c00098{bottom:0.000000pt;}
.y7_c00098{bottom:9.280000pt;}
.y9_c00098{bottom:9.440000pt;}
.y5_c00098{bottom:24.800000pt;}
.y23_c00098{bottom:178.426667pt;}
.y22_c00098{bottom:197.147067pt;}
.y21_c00098{bottom:215.866800pt;}
.y20_c00098{bottom:234.586533pt;}
.y1f_c00098{bottom:253.146933pt;}
.y1e_c00098{bottom:271.866933pt;}
.y1d_c00098{bottom:290.586667pt;}
.y1c_c00098{bottom:309.147067pt;}
.y1b_c00098{bottom:327.866800pt;}
.y1a_c00098{bottom:346.626667pt;}
.y19_c00098{bottom:373.186800pt;}
.y18_c00098{bottom:391.907067pt;}
.y17_c00098{bottom:410.626800pt;}
.y16_c00098{bottom:429.186667pt;}
.y15_c00098{bottom:447.906933pt;}
.y14_c00098{bottom:466.626667pt;}
.y13_c00098{bottom:493.186667pt;}
.y12_c00098{bottom:511.906933pt;}
.y11_c00098{bottom:530.626667pt;}
.y10_c00098{bottom:557.186667pt;}
.yf_c00098{bottom:604.893333pt;}
.ye_c00098{bottom:633.853333pt;}
.yd_c00098{bottom:662.973333pt;}
.yc_c00098{bottom:691.933333pt;}
.yb_c00098{bottom:771.613333pt;}
.ya_c00098{bottom:814.373333pt;}
.y8_c00098{bottom:837.893333pt;}
.y6_c00098{bottom:867.013333pt;}
.y4_c00098{bottom:895.973333pt;}
.y3_c00098{bottom:975.653067pt;}
.y2_c00098{bottom:994.373333pt;}
.y1_c00098{bottom:1044.160000pt;}
.h5_c00098{height:28.319733pt;}
.h6_c00098{height:28.320267pt;}
.h4_c00098{height:42.866250pt;}
.h2_c00098{height:50.628750pt;}
.h3_c00098{height:59.359867pt;}
.h1_c00098{height:1122.666667pt;}
.h0_c00098{height:1122.720000pt;}
.w2_c00098{width:603.613333pt;}
.w1_c00098{width:794.000000pt;}
.w0_c00098{width:794.080000pt;}
.x0_c00098{left:0.000000pt;}
.x3_c00098{left:6.879733pt;}
.x1_c00098{left:113.471867pt;}
.x4_c00098{left:132.352133pt;}
.x5_c00098{left:170.266667pt;}
.x2_c00098{left:208.026533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2fce758ad7af7257dc4c488a.woff2')format("woff");}.ff1_c00099{font-family:ff1_c00099;line-height:1.070312;font-style:normal;font-weight:normal;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_067529eeb3b4734f326960dd.woff2')format("woff");}.ff2_c00099{font-family:ff2_c00099;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00099;src:url('chunks/assets/font_09b59ff8c33e896983117db3.woff2')format("woff");}.ff3_c00099{font-family:ff3_c00099;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00099;src:url('chunks/assets/font_7f949f20c490d8977da65eb6.woff2')format("woff");}.ff4_c00099{font-family:ff4_c00099;line-height:0.666504;font-style:normal;font-weight:normal;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_99d700820229c4e0b81d5d87.woff2')format("woff");}.ff5_c00099{font-family:ff5_c00099;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00099{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00099{vertical-align:0.000000px;}
.ls2_c00099{letter-spacing:0.000000px;}
.ls0_c00099{letter-spacing:0.261600px;}
.ls1_c00099{letter-spacing:0.475620px;}
.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;}
}
.ws1_c00099{word-spacing:-49.680000px;}
.ws0_c00099{word-spacing:-15.012000px;}
.ws2_c00099{word-spacing:0.000000px;}
._0_c00099{margin-left:-1.457091px;}
._8_c00099{width:1.658457px;}
._7_c00099{width:3.244627px;}
._4_c00099{width:4.371297px;}
._3_c00099{width:5.498202px;}
._5_c00099{width:6.657692px;}
._6_c00099{width:7.908188px;}
._a_c00099{width:15.435629px;}
._b_c00099{width:17.134610px;}
._9_c00099{width:20.070448px;}
._2_c00099{width:117.678832px;}
._c_c00099{width:845.765280px;}
._1_c00099{width:1953.503549px;}
.fc0_c00099{color:rgb(0,0,0);}
.fs1_c00099{font-size:54.000000px;}
.fs0_c00099{font-size:66.240000px;}
.y0_c00099{bottom:0.000000px;}
.y7_c00099{bottom:10.440000px;}
.ya_c00099{bottom:10.620000px;}
.y9_c00099{bottom:12.960000px;}
.y5_c00099{bottom:27.900000px;}
.y19_c00099{bottom:551.055000px;}
.y18_c00099{bottom:572.115000px;}
.y17_c00099{bottom:602.175000px;}
.y16_c00099{bottom:632.054550px;}
.y15_c00099{bottom:653.144850px;}
.y14_c00099{bottom:674.204550px;}
.y13_c00099{bottom:695.085000px;}
.y12_c00099{bottom:725.145150px;}
.y11_c00099{bottom:746.204850px;}
.y10_c00099{bottom:767.085300px;}
.yf_c00099{bottom:788.145000px;}
.ye_c00099{bottom:818.205000px;}
.yd_c00099{bottom:844.845000px;}
.yc_c00099{bottom:877.425000px;}
.yb_c00099{bottom:910.050000px;}
.y8_c00099{bottom:942.630000px;}
.y6_c00099{bottom:975.390000px;}
.y4_c00099{bottom:1007.970000px;}
.y3_c00099{bottom:1097.609700px;}
.y2_c00099{bottom:1118.670000px;}
.y1_c00099{bottom:1174.680000px;}
.h5_c00099{height:31.859700px;}
.h6_c00099{height:31.860300px;}
.h7_c00099{height:31.896150px;}
.h4_c00099{height:48.224531px;}
.h2_c00099{height:56.957344px;}
.h3_c00099{height:66.779850px;}
.h1_c00099{height:1263.000000px;}
.h0_c00099{height:1263.060000px;}
.w3_c00099{width:245.190000px;}
.w2_c00099{width:432.795000px;}
.w1_c00099{width:893.250000px;}
.w0_c00099{width:893.340000px;}
.x0_c00099{left:0.000000px;}
.x5_c00099{left:35.820000px;}
.xb_c00099{left:43.560000px;}
.x8_c00099{left:52.740000px;}
.x7_c00099{left:60.660000px;}
.x9_c00099{left:61.920000px;}
.x1_c00099{left:127.655850px;}
.xc_c00099{left:148.896150px;}
.x3_c00099{left:167.799000px;}
.x6_c00099{left:183.999000px;}
.xa_c00099{left:190.839000px;}
.x2_c00099{left:234.029730px;}
.x4_c00099{left:561.885000px;}
@media print{
.v0_c00099{vertical-align:0.000000pt;}
.ls2_c00099{letter-spacing:0.000000pt;}
.ls0_c00099{letter-spacing:0.232533pt;}
.ls1_c00099{letter-spacing:0.422773pt;}
.ws1_c00099{word-spacing:-44.160000pt;}
.ws0_c00099{word-spacing:-13.344000pt;}
.ws2_c00099{word-spacing:0.000000pt;}
._0_c00099{margin-left:-1.295192pt;}
._8_c00099{width:1.474184pt;}
._7_c00099{width:2.884113pt;}
._4_c00099{width:3.885597pt;}
._3_c00099{width:4.887291pt;}
._5_c00099{width:5.917949pt;}
._6_c00099{width:7.029501pt;}
._a_c00099{width:13.720559pt;}
._b_c00099{width:15.230765pt;}
._9_c00099{width:17.840399pt;}
._2_c00099{width:104.603406pt;}
._c_c00099{width:751.791360pt;}
._1_c00099{width:1736.447599pt;}
.fs1_c00099{font-size:48.000000pt;}
.fs0_c00099{font-size:58.880000pt;}
.y0_c00099{bottom:0.000000pt;}
.y7_c00099{bottom:9.280000pt;}
.ya_c00099{bottom:9.440000pt;}
.y9_c00099{bottom:11.520000pt;}
.y5_c00099{bottom:24.800000pt;}
.y19_c00099{bottom:489.826667pt;}
.y18_c00099{bottom:508.546667pt;}
.y17_c00099{bottom:535.266667pt;}
.y16_c00099{bottom:561.826267pt;}
.y15_c00099{bottom:580.573200pt;}
.y14_c00099{bottom:599.292933pt;}
.y13_c00099{bottom:617.853333pt;}
.y12_c00099{bottom:644.573467pt;}
.y11_c00099{bottom:663.293200pt;}
.y10_c00099{bottom:681.853600pt;}
.yf_c00099{bottom:700.573333pt;}
.ye_c00099{bottom:727.293333pt;}
.yd_c00099{bottom:750.973333pt;}
.yc_c00099{bottom:779.933333pt;}
.yb_c00099{bottom:808.933333pt;}
.y8_c00099{bottom:837.893333pt;}
.y6_c00099{bottom:867.013333pt;}
.y4_c00099{bottom:895.973333pt;}
.y3_c00099{bottom:975.653067pt;}
.y2_c00099{bottom:994.373333pt;}
.y1_c00099{bottom:1044.160000pt;}
.h5_c00099{height:28.319733pt;}
.h6_c00099{height:28.320267pt;}
.h7_c00099{height:28.352133pt;}
.h4_c00099{height:42.866250pt;}
.h2_c00099{height:50.628750pt;}
.h3_c00099{height:59.359867pt;}
.h1_c00099{height:1122.666667pt;}
.h0_c00099{height:1122.720000pt;}
.w3_c00099{width:217.946667pt;}
.w2_c00099{width:384.706667pt;}
.w1_c00099{width:794.000000pt;}
.w0_c00099{width:794.080000pt;}
.x0_c00099{left:0.000000pt;}
.x5_c00099{left:31.840000pt;}
.xb_c00099{left:38.720000pt;}
.x8_c00099{left:46.880000pt;}
.x7_c00099{left:53.920000pt;}
.x9_c00099{left:55.040000pt;}
.x1_c00099{left:113.471867pt;}
.xc_c00099{left:132.352133pt;}
.x3_c00099{left:149.154667pt;}
.x6_c00099{left:163.554667pt;}
.xa_c00099{left:169.634667pt;}
.x2_c00099{left:208.026427pt;}
.x4_c00099{left:499.453333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9d62a49e0d6df0aec7755b6d.woff2')format("woff");}.ff1_c00100{font-family:ff1_c00100;line-height:1.070312;font-style:normal;font-weight:normal;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_860c817e42ab4d3b9b65b385.woff2')format("woff");}.ff2_c00100{font-family:ff2_c00100;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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);}
.m1_c00100{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1_c00100{vertical-align:-5.760936px;}
.v0_c00100{vertical-align:0.000000px;}
.ls0_c00100{letter-spacing:0.000000px;}
.sc__c00100{text-shadow:none;}
.sc0_c00100{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00100{-webkit-text-stroke:0px transparent;}
.sc0_c00100{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00100{word-spacing:-11.609280px;}
.ws1_c00100{word-spacing:0.000000px;}
._a_c00100{margin-left:-4.602618px;}
._9_c00100{margin-left:-2.914707px;}
._2_c00100{margin-left:-1.076954px;}
._6_c00100{width:1.307377px;}
._7_c00100{width:2.452330px;}
._3_c00100{width:4.503369px;}
._14_c00100{width:5.895224px;}
._19_c00100{width:7.422440px;}
._12_c00100{width:8.562799px;}
._11_c00100{width:9.975798px;}
._d_c00100{width:11.989772px;}
._e_c00100{width:13.055516px;}
._17_c00100{width:14.919764px;}
._8_c00100{width:16.884130px;}
._18_c00100{width:19.461894px;}
._10_c00100{width:22.455294px;}
._f_c00100{width:24.194540px;}
._13_c00100{width:25.386285px;}
._5_c00100{width:30.262215px;}
._4_c00100{width:31.842589px;}
._16_c00100{width:34.693588px;}
._15_c00100{width:35.852973px;}
._b_c00100{width:62.288245px;}
._c_c00100{width:89.844227px;}
._1_c00100{width:187.479128px;}
._0_c00100{width:2298.149418px;}
.fc0_c00100{color:rgb(0,0,0);}
.fs2_c00100{font-size:41.760000px;}
.fs0_c00100{font-size:66.240000px;}
.fs1_c00100{font-size:84.240000px;}
.y0_c00100{bottom:0.000000px;}
.y2b_c00100{bottom:122.400150px;}
.y2a_c00100{bottom:143.496300px;}
.y29_c00100{bottom:164.550150px;}
.y28_c00100{bottom:185.430000px;}
.y27_c00100{bottom:215.490000px;}
.y26_c00100{bottom:254.550000px;}
.y25_c00100{bottom:284.430450px;}
.y24_c00100{bottom:305.490750px;}
.y23_c00100{bottom:326.550450px;}
.y22_c00100{bottom:347.430300px;}
.y21_c00100{bottom:368.490600px;}
.y20_c00100{bottom:389.595450px;}
.y1f_c00100{bottom:410.475300px;}
.y1e_c00100{bottom:431.535000px;}
.y1d_c00100{bottom:452.595300px;}
.y1c_c00100{bottom:473.475150px;}
.y1b_c00100{bottom:494.534850px;}
.y1a_c00100{bottom:515.595150px;}
.y19_c00100{bottom:536.475000px;}
.y18_c00100{bottom:557.534700px;}
.y17_c00100{bottom:578.595000px;}
.y16_c00100{bottom:608.475000px;}
.y15_c00100{bottom:638.535000px;}
.y14_c00100{bottom:668.626050px;}
.y13_c00100{bottom:689.505900px;}
.y12_c00100{bottom:710.565600px;}
.y11_c00100{bottom:731.625300px;}
.y10_c00100{bottom:752.505150px;}
.yf_c00100{bottom:773.565450px;}
.ye_c00100{bottom:794.625150px;}
.yd_c00100{bottom:815.505000px;}
.yc_c00100{bottom:845.565000px;}
.yb_c00100{bottom:884.625000px;}
.ya_c00100{bottom:941.550600px;}
.y9_c00100{bottom:962.610300px;}
.y8_c00100{bottom:983.670600px;}
.y7_c00100{bottom:1004.550450px;}
.y6_c00100{bottom:1025.610150px;}
.y5_c00100{bottom:1046.670450px;}
.y4_c00100{bottom:1067.550300px;}
.y3_c00100{bottom:1088.610000px;}
.y2_c00100{bottom:1118.670000px;}
.y1_c00100{bottom:1174.680000px;}
.h4_c00100{height:48.224531px;}
.h2_c00100{height:56.957344px;}
.h3_c00100{height:61.329023px;}
.h1_c00100{height:1263.000000px;}
.h0_c00100{height:1263.060000px;}
.w1_c00100{width:893.250000px;}
.w0_c00100{width:893.340000px;}
.x0_c00100{left:0.000000px;}
.x1_c00100{left:127.655850px;}
.x2_c00100{left:148.896150px;}
@media print{
.v1_c00100{vertical-align:-5.120832pt;}
.v0_c00100{vertical-align:0.000000pt;}
.ls0_c00100{letter-spacing:0.000000pt;}
.ws0_c00100{word-spacing:-10.319360pt;}
.ws1_c00100{word-spacing:0.000000pt;}
._a_c00100{margin-left:-4.091216pt;}
._9_c00100{margin-left:-2.590851pt;}
._2_c00100{margin-left:-0.957292pt;}
._6_c00100{width:1.162113pt;}
._7_c00100{width:2.179849pt;}
._3_c00100{width:4.002994pt;}
._14_c00100{width:5.240199pt;}
._19_c00100{width:6.597725pt;}
._12_c00100{width:7.611377pt;}
._11_c00100{width:8.867376pt;}
._d_c00100{width:10.657575pt;}
._e_c00100{width:11.604903pt;}
._17_c00100{width:13.262012pt;}
._8_c00100{width:15.008115pt;}
._18_c00100{width:17.299461pt;}
._10_c00100{width:19.960261pt;}
._f_c00100{width:21.506258pt;}
._13_c00100{width:22.565586pt;}
._5_c00100{width:26.899747pt;}
._4_c00100{width:28.304524pt;}
._16_c00100{width:30.838745pt;}
._15_c00100{width:31.869309pt;}
._b_c00100{width:55.367329pt;}
._c_c00100{width:79.861535pt;}
._1_c00100{width:166.648114pt;}
._0_c00100{width:2042.799483pt;}
.fs2_c00100{font-size:37.120000pt;}
.fs0_c00100{font-size:58.880000pt;}
.fs1_c00100{font-size:74.880000pt;}
.y0_c00100{bottom:0.000000pt;}
.y2b_c00100{bottom:108.800133pt;}
.y2a_c00100{bottom:127.552267pt;}
.y29_c00100{bottom:146.266800pt;}
.y28_c00100{bottom:164.826667pt;}
.y27_c00100{bottom:191.546667pt;}
.y26_c00100{bottom:226.266667pt;}
.y25_c00100{bottom:252.827067pt;}
.y24_c00100{bottom:271.547333pt;}
.y23_c00100{bottom:290.267067pt;}
.y22_c00100{bottom:308.826933pt;}
.y21_c00100{bottom:327.547200pt;}
.y20_c00100{bottom:346.307067pt;}
.y1f_c00100{bottom:364.866933pt;}
.y1e_c00100{bottom:383.586667pt;}
.y1d_c00100{bottom:402.306933pt;}
.y1c_c00100{bottom:420.866800pt;}
.y1b_c00100{bottom:439.586533pt;}
.y1a_c00100{bottom:458.306800pt;}
.y19_c00100{bottom:476.866667pt;}
.y18_c00100{bottom:495.586400pt;}
.y17_c00100{bottom:514.306667pt;}
.y16_c00100{bottom:540.866667pt;}
.y15_c00100{bottom:567.586667pt;}
.y14_c00100{bottom:594.334267pt;}
.y13_c00100{bottom:612.894133pt;}
.y12_c00100{bottom:631.613867pt;}
.y11_c00100{bottom:650.333600pt;}
.y10_c00100{bottom:668.893467pt;}
.yf_c00100{bottom:687.613733pt;}
.ye_c00100{bottom:706.333467pt;}
.yd_c00100{bottom:724.893333pt;}
.yc_c00100{bottom:751.613333pt;}
.yb_c00100{bottom:786.333333pt;}
.ya_c00100{bottom:836.933867pt;}
.y9_c00100{bottom:855.653600pt;}
.y8_c00100{bottom:874.373867pt;}
.y7_c00100{bottom:892.933733pt;}
.y6_c00100{bottom:911.653467pt;}
.y5_c00100{bottom:930.373733pt;}
.y4_c00100{bottom:948.933600pt;}
.y3_c00100{bottom:967.653333pt;}
.y2_c00100{bottom:994.373333pt;}
.y1_c00100{bottom:1044.160000pt;}
.h4_c00100{height:42.866250pt;}
.h2_c00100{height:50.628750pt;}
.h3_c00100{height:54.514688pt;}
.h1_c00100{height:1122.666667pt;}
.h0_c00100{height:1122.720000pt;}
.w1_c00100{width:794.000000pt;}
.w0_c00100{width:794.080000pt;}
.x0_c00100{left:0.000000pt;}
.x1_c00100{left:113.471867pt;}
.x2_c00100{left:132.352133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2358a0d0e7f6a4960bc43a46.woff2')format("woff");}.ff1_c00101{font-family:ff1_c00101;line-height:1.070312;font-style:normal;font-weight:normal;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_2c661173fbe578d4a1a8299a.woff2')format("woff");}.ff2_c00101{font-family:ff2_c00101;line-height:0.938965;font-style:normal;font-weight:normal;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_5cc5b7d90a2d72e6c70349eb.woff2')format("woff");}.ff3_c00101{font-family:ff3_c00101;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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);}
.m1_c00101{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_c00101{vertical-align:0.000000px;}
.ls0_c00101{letter-spacing:0.000000px;}
.sc__c00101{text-shadow:none;}
.sc0_c00101{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00101{-webkit-text-stroke:0px transparent;}
.sc0_c00101{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00101{word-spacing:-36.829440px;}
.ws1_c00101{word-spacing:-18.414720px;}
.ws2_c00101{word-spacing:0.000000px;}
._9_c00101{margin-left:-4.041164px;}
._a_c00101{margin-left:-2.779825px;}
._2_c00101{margin-left:-1.459523px;}
._4_c00101{width:1.655815px;}
._c_c00101{width:2.781229px;}
._5_c00101{width:3.841175px;}
._6_c00101{width:5.516520px;}
._b_c00101{width:11.997677px;}
._f_c00101{width:17.241772px;}
._e_c00101{width:19.482265px;}
._7_c00101{width:27.664296px;}
._8_c00101{width:28.908046px;}
._1_c00101{width:31.399240px;}
._3_c00101{width:32.582503px;}
._d_c00101{width:117.681265px;}
._0_c00101{width:2298.149418px;}
.fc2_c00101{color:rgb(89,89,89);}
.fc1_c00101{color:rgb(64,64,64);}
.fc0_c00101{color:rgb(0,0,0);}
.fs0_c00101{font-size:66.240000px;}
.fs1_c00101{font-size:79.200000px;}
.y0_c00101{bottom:0.000000px;}
.y21_c00101{bottom:8.094300px;}
.y1e_c00101{bottom:15.840000px;}
.y24_c00101{bottom:15.840300px;}
.y22_c00101{bottom:17.094300px;}
.y1a_c00101{bottom:21.240000px;}
.y20_c00101{bottom:26.094300px;}
.y1c_c00101{bottom:30.240000px;}
.y29_c00101{bottom:33.405000px;}
.y18_c00101{bottom:39.240000px;}
.y1b_c00101{bottom:48.240000px;}
.y28_c00101{bottom:52.305000px;}
.y19_c00101{bottom:57.240000px;}
.y23_c00101{bottom:102.600000px;}
.y27_c00101{bottom:118.905000px;}
.y26_c00101{bottom:137.805000px;}
.y2b_c00101{bottom:141.225150px;}
.y1f_c00101{bottom:145.835700px;}
.y2a_c00101{bottom:160.125150px;}
.y2d_c00101{bottom:189.540300px;}
.y1d_c00101{bottom:191.550000px;}
.y2c_c00101{bottom:212.400000px;}
.y17_c00101{bottom:234.930000px;}
.y16_c00101{bottom:346.890450px;}
.y15_c00101{bottom:367.950150px;}
.y14_c00101{bottom:389.055000px;}
.y13_c00101{bottom:437.115450px;}
.y12_c00101{bottom:457.995300px;}
.y11_c00101{bottom:479.055000px;}
.y10_c00101{bottom:500.115300px;}
.yf_c00101{bottom:520.995150px;}
.ye_c00101{bottom:542.054850px;}
.yd_c00101{bottom:563.115150px;}
.yc_c00101{bottom:583.995000px;}
.yb_c00101{bottom:605.054700px;}
.ya_c00101{bottom:626.115000px;}
.y9_c00101{bottom:656.025000px;}
.y8_c00101{bottom:695.085000px;}
.y25_c00101{bottom:739.800000px;}
.y7_c00101{bottom:1004.550000px;}
.y6_c00101{bottom:1025.609700px;}
.y5_c00101{bottom:1046.670150px;}
.y4_c00101{bottom:1067.550000px;}
.y3_c00101{bottom:1097.609700px;}
.y2_c00101{bottom:1118.670000px;}
.y1_c00101{bottom:1174.680000px;}
.h7_c00101{height:42.516150px;}
.h5_c00101{height:42.659700px;}
.h6_c00101{height:45.000000px;}
.h4_c00101{height:48.224531px;}
.h2_c00101{height:56.957344px;}
.h9_c00101{height:68.101172px;}
.h3_c00101{height:89.279850px;}
.h8_c00101{height:242.280000px;}
.h1_c00101{height:1263.000000px;}
.h0_c00101{height:1263.060000px;}
.w3_c00101{width:155.370000px;}
.w4_c00101{width:247.170000px;}
.w2_c00101{width:274.530000px;}
.w5_c00101{width:680.220000px;}
.w1_c00101{width:893.250000px;}
.w0_c00101{width:893.340000px;}
.x0_c00101{left:0.000000px;}
.xb_c00101{left:12.420150px;}
.x7_c00101{left:22.680000px;}
.xe_c00101{left:31.314000px;}
.x6_c00101{left:34.560000px;}
.x9_c00101{left:39.600000px;}
.x10_c00101{left:44.820000px;}
.x4_c00101{left:58.314000px;}
.xf_c00101{left:61.906380px;}
.xc_c00101{left:68.070000px;}
.xa_c00101{left:83.385000px;}
.x16_c00101{left:88.919700px;}
.x1_c00101{left:127.655850px;}
.xd_c00101{left:131.445000px;}
.x2_c00101{left:148.896150px;}
.x15_c00101{left:171.689670px;}
.x14_c00101{left:178.529910px;}
.x3_c00101{left:234.029850px;}
.x17_c00101{left:269.849700px;}
.x13_c00101{left:311.789610px;}
.x12_c00101{left:368.069460px;}
.x11_c00101{left:374.909700px;}
.x5_c00101{left:403.635000px;}
.x8_c00101{left:559.905000px;}
@media print{
.v0_c00101{vertical-align:0.000000pt;}
.ls0_c00101{letter-spacing:0.000000pt;}
.ws0_c00101{word-spacing:-32.737280pt;}
.ws1_c00101{word-spacing:-16.368640pt;}
.ws2_c00101{word-spacing:0.000000pt;}
._9_c00101{margin-left:-3.592146pt;}
._a_c00101{margin-left:-2.470956pt;}
._2_c00101{margin-left:-1.297354pt;}
._4_c00101{width:1.471835pt;}
._c_c00101{width:2.472204pt;}
._5_c00101{width:3.414378pt;}
._6_c00101{width:4.903573pt;}
._b_c00101{width:10.664602pt;}
._f_c00101{width:15.326019pt;}
._e_c00101{width:17.317569pt;}
._7_c00101{width:24.590485pt;}
._8_c00101{width:25.696041pt;}
._1_c00101{width:27.910436pt;}
._3_c00101{width:28.962225pt;}
._d_c00101{width:104.605569pt;}
._0_c00101{width:2042.799483pt;}
.fs0_c00101{font-size:58.880000pt;}
.fs1_c00101{font-size:70.400000pt;}
.y0_c00101{bottom:0.000000pt;}
.y21_c00101{bottom:7.194933pt;}
.y1e_c00101{bottom:14.080000pt;}
.y24_c00101{bottom:14.080267pt;}
.y22_c00101{bottom:15.194933pt;}
.y1a_c00101{bottom:18.880000pt;}
.y20_c00101{bottom:23.194933pt;}
.y1c_c00101{bottom:26.880000pt;}
.y29_c00101{bottom:29.693333pt;}
.y18_c00101{bottom:34.880000pt;}
.y1b_c00101{bottom:42.880000pt;}
.y28_c00101{bottom:46.493333pt;}
.y19_c00101{bottom:50.880000pt;}
.y23_c00101{bottom:91.200000pt;}
.y27_c00101{bottom:105.693333pt;}
.y26_c00101{bottom:122.493333pt;}
.y2b_c00101{bottom:125.533467pt;}
.y1f_c00101{bottom:129.631733pt;}
.y2a_c00101{bottom:142.333467pt;}
.y2d_c00101{bottom:168.480267pt;}
.y1d_c00101{bottom:170.266667pt;}
.y2c_c00101{bottom:188.800000pt;}
.y17_c00101{bottom:208.826667pt;}
.y16_c00101{bottom:308.347067pt;}
.y15_c00101{bottom:327.066800pt;}
.y14_c00101{bottom:345.826667pt;}
.y13_c00101{bottom:388.547067pt;}
.y12_c00101{bottom:407.106933pt;}
.y11_c00101{bottom:425.826667pt;}
.y10_c00101{bottom:444.546933pt;}
.yf_c00101{bottom:463.106800pt;}
.ye_c00101{bottom:481.826533pt;}
.yd_c00101{bottom:500.546800pt;}
.yc_c00101{bottom:519.106667pt;}
.yb_c00101{bottom:537.826400pt;}
.ya_c00101{bottom:556.546667pt;}
.y9_c00101{bottom:583.133333pt;}
.y8_c00101{bottom:617.853333pt;}
.y25_c00101{bottom:657.600000pt;}
.y7_c00101{bottom:892.933333pt;}
.y6_c00101{bottom:911.653067pt;}
.y5_c00101{bottom:930.373467pt;}
.y4_c00101{bottom:948.933333pt;}
.y3_c00101{bottom:975.653067pt;}
.y2_c00101{bottom:994.373333pt;}
.y1_c00101{bottom:1044.160000pt;}
.h7_c00101{height:37.792133pt;}
.h5_c00101{height:37.919733pt;}
.h6_c00101{height:40.000000pt;}
.h4_c00101{height:42.866250pt;}
.h2_c00101{height:50.628750pt;}
.h9_c00101{height:60.534375pt;}
.h3_c00101{height:79.359867pt;}
.h8_c00101{height:215.360000pt;}
.h1_c00101{height:1122.666667pt;}
.h0_c00101{height:1122.720000pt;}
.w3_c00101{width:138.106667pt;}
.w4_c00101{width:219.706667pt;}
.w2_c00101{width:244.026667pt;}
.w5_c00101{width:604.640000pt;}
.w1_c00101{width:794.000000pt;}
.w0_c00101{width:794.080000pt;}
.x0_c00101{left:0.000000pt;}
.xb_c00101{left:11.040133pt;}
.x7_c00101{left:20.160000pt;}
.xe_c00101{left:27.834667pt;}
.x6_c00101{left:30.720000pt;}
.x9_c00101{left:35.200000pt;}
.x10_c00101{left:39.840000pt;}
.x4_c00101{left:51.834667pt;}
.xf_c00101{left:55.027893pt;}
.xc_c00101{left:60.506667pt;}
.xa_c00101{left:74.120000pt;}
.x16_c00101{left:79.039733pt;}
.x1_c00101{left:113.471867pt;}
.xd_c00101{left:116.840000pt;}
.x2_c00101{left:132.352133pt;}
.x15_c00101{left:152.613040pt;}
.x14_c00101{left:158.693253pt;}
.x3_c00101{left:208.026533pt;}
.x17_c00101{left:239.866400pt;}
.x13_c00101{left:277.146320pt;}
.x12_c00101{left:327.172853pt;}
.x11_c00101{left:333.253067pt;}
.x5_c00101{left:358.786667pt;}
.x8_c00101{left:497.693333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4a0ee1757db5ca038dc6e3cc.woff2')format("woff");}.ff1_c00102{font-family:ff1_c00102;line-height:1.070312;font-style:normal;font-weight:normal;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_5cc5b7d90a2d72e6c70349eb.woff2')format("woff");}.ff2_c00102{font-family:ff2_c00102;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00102;src:url('chunks/assets/font_2c661173fbe578d4a1a8299a.woff2')format("woff");}.ff3_c00102{font-family:ff3_c00102;line-height:0.938965;font-style: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);}
.m1_c00102{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_c00102{vertical-align:0.000000px;}
.ls0_c00102{letter-spacing:0.000000px;}
.sc__c00102{text-shadow:none;}
.sc0_c00102{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00102{-webkit-text-stroke:0px transparent;}
.sc0_c00102{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00102{word-spacing:-36.829440px;}
.ws0_c00102{word-spacing:-18.414720px;}
.ws2_c00102{word-spacing:0.000000px;}
._c_c00102{margin-left:-4.239711px;}
._b_c00102{margin-left:-2.231430px;}
._1_c00102{margin-left:-1.126186px;}
._4_c00102{width:1.409863px;}
._3_c00102{width:2.515560px;}
._a_c00102{width:4.766750px;}
._9_c00102{width:5.961179px;}
._7_c00102{width:7.418989px;}
._8_c00102{width:11.663723px;}
._6_c00102{width:15.632682px;}
._5_c00102{width:19.693855px;}
._2_c00102{width:130.457001px;}
._d_c00102{width:845.477663px;}
._0_c00102{width:2298.149418px;}
.fc2_c00102{color:rgb(89,89,89);}
.fc1_c00102{color:rgb(64,64,64);}
.fc0_c00102{color:rgb(0,0,0);}
.fs1_c00102{font-size:59.760000px;}
.fs0_c00102{font-size:66.240000px;}
.fs3_c00102{font-size:79.200000px;}
.fs2_c00102{font-size:79.344000px;}
.y0_c00102{bottom:0.000000px;}
.y11_c00102{bottom:8.099850px;}
.ye_c00102{bottom:8.100000px;}
.y9_c00102{bottom:9.900000px;}
.y18_c00102{bottom:15.840000px;}
.y16_c00102{bottom:16.020000px;}
.y12_c00102{bottom:17.100000px;}
.yb_c00102{bottom:18.900000px;}
.yd_c00102{bottom:26.100000px;}
.y10_c00102{bottom:26.145000px;}
.y7_c00102{bottom:27.900000px;}
.ya_c00102{bottom:36.900000px;}
.y8_c00102{bottom:45.900000px;}
.y27_c00102{bottom:83.910000px;}
.y24_c00102{bottom:89.640300px;}
.y26_c00102{bottom:102.810000px;}
.y23_c00102{bottom:110.520000px;}
.y22_c00102{bottom:131.579700px;}
.y21_c00102{bottom:152.670000px;}
.y20_c00102{bottom:182.550000px;}
.y29_c00102{bottom:189.390150px;}
.y28_c00102{bottom:212.295000px;}
.y1f_c00102{bottom:221.609700px;}
.y1e_c00102{bottom:242.670000px;}
.y25_c00102{bottom:287.460000px;}
.y1d_c00102{bottom:551.954850px;}
.y1c_c00102{bottom:573.015150px;}
.y1b_c00102{bottom:593.895000px;}
.y1a_c00102{bottom:623.955000px;}
.y19_c00102{bottom:650.625000px;}
.y17_c00102{bottom:696.345000px;}
.y15_c00102{bottom:739.545000px;}
.y14_c00102{bottom:782.925000px;}
.y13_c00102{bottom:828.645000px;}
.yf_c00102{bottom:874.365000px;}
.yc_c00102{bottom:920.130000px;}
.y6_c00102{bottom:966.030000px;}
.y5_c00102{bottom:1055.490300px;}
.y4_c00102{bottom:1076.550000px;}
.y3_c00102{bottom:1097.609700px;}
.y2_c00102{bottom:1118.670000px;}
.y1_c00102{bottom:1174.680000px;}
.h8_c00102{height:42.479850px;}
.h7_c00102{height:42.659700px;}
.h5_c00102{height:45.000000px;}
.h6_c00102{height:45.035700px;}
.h4_c00102{height:48.224531px;}
.h2_c00102{height:56.957344px;}
.h9_c00102{height:56.957944px;}
.h3_c00102{height:66.600000px;}
.hc_c00102{height:68.101172px;}
.hb_c00102{height:68.224992px;}
.ha_c00102{height:242.280000px;}
.h1_c00102{height:1263.000000px;}
.h0_c00102{height:1263.060000px;}
.w3_c00102{width:155.370000px;}
.w4_c00102{width:247.170000px;}
.w2_c00102{width:274.530000px;}
.w5_c00102{width:680.220000px;}
.w1_c00102{width:893.250000px;}
.w0_c00102{width:893.340000px;}
.x0_c00102{left:0.000000px;}
.x12_c00102{left:10.620150px;}
.x6_c00102{left:22.680000px;}
.x13_c00102{left:31.314000px;}
.x5_c00102{left:34.560000px;}
.xc_c00102{left:35.814000px;}
.x8_c00102{left:39.600000px;}
.xf_c00102{left:40.853880px;}
.xd_c00102{left:43.193880px;}
.xb_c00102{left:46.260000px;}
.x3_c00102{left:58.314000px;}
.xa_c00102{left:61.014000px;}
.x10_c00102{left:68.070000px;}
.x9_c00102{left:83.385000px;}
.xe_c00102{left:103.545000px;}
.x11_c00102{left:116.865000px;}
.x1_c00102{left:127.655850px;}
.x1a_c00102{left:135.719700px;}
.x14_c00102{left:148.896150px;}
.x1b_c00102{left:210.960000px;}
.x15_c00102{left:234.030750px;}
.x19_c00102{left:275.789520px;}
.x18_c00102{left:282.629760px;}
.x2_c00102{left:340.094850px;}
.x17_c00102{left:380.444460px;}
.x16_c00102{left:387.284700px;}
.x4_c00102{left:403.635000px;}
.x7_c00102{left:559.905000px;}
@media print{
.v0_c00102{vertical-align:0.000000pt;}
.ls0_c00102{letter-spacing:0.000000pt;}
.ws1_c00102{word-spacing:-32.737280pt;}
.ws0_c00102{word-spacing:-16.368640pt;}
.ws2_c00102{word-spacing:0.000000pt;}
._c_c00102{margin-left:-3.768632pt;}
._b_c00102{margin-left:-1.983493pt;}
._1_c00102{margin-left:-1.001054pt;}
._4_c00102{width:1.253212pt;}
._3_c00102{width:2.236053pt;}
._a_c00102{width:4.237111pt;}
._9_c00102{width:5.298826pt;}
._7_c00102{width:6.594657pt;}
._8_c00102{width:10.367753pt;}
._6_c00102{width:13.895717pt;}
._5_c00102{width:17.505649pt;}
._2_c00102{width:115.961778pt;}
._d_c00102{width:751.535701pt;}
._0_c00102{width:2042.799483pt;}
.fs1_c00102{font-size:53.120000pt;}
.fs0_c00102{font-size:58.880000pt;}
.fs3_c00102{font-size:70.400000pt;}
.fs2_c00102{font-size:70.528000pt;}
.y0_c00102{bottom:0.000000pt;}
.y11_c00102{bottom:7.199867pt;}
.ye_c00102{bottom:7.200000pt;}
.y9_c00102{bottom:8.800000pt;}
.y18_c00102{bottom:14.080000pt;}
.y16_c00102{bottom:14.240000pt;}
.y12_c00102{bottom:15.200000pt;}
.yb_c00102{bottom:16.800000pt;}
.yd_c00102{bottom:23.200000pt;}
.y10_c00102{bottom:23.240000pt;}
.y7_c00102{bottom:24.800000pt;}
.ya_c00102{bottom:32.800000pt;}
.y8_c00102{bottom:40.800000pt;}
.y27_c00102{bottom:74.586667pt;}
.y24_c00102{bottom:79.680267pt;}
.y26_c00102{bottom:91.386667pt;}
.y23_c00102{bottom:98.240000pt;}
.y22_c00102{bottom:116.959733pt;}
.y21_c00102{bottom:135.706667pt;}
.y20_c00102{bottom:162.266667pt;}
.y29_c00102{bottom:168.346800pt;}
.y28_c00102{bottom:188.706667pt;}
.y1f_c00102{bottom:196.986400pt;}
.y1e_c00102{bottom:215.706667pt;}
.y25_c00102{bottom:255.520000pt;}
.y1d_c00102{bottom:490.626533pt;}
.y1c_c00102{bottom:509.346800pt;}
.y1b_c00102{bottom:527.906667pt;}
.y1a_c00102{bottom:554.626667pt;}
.y19_c00102{bottom:578.333333pt;}
.y17_c00102{bottom:618.973333pt;}
.y15_c00102{bottom:657.373333pt;}
.y14_c00102{bottom:695.933333pt;}
.y13_c00102{bottom:736.573333pt;}
.yf_c00102{bottom:777.213333pt;}
.yc_c00102{bottom:817.893333pt;}
.y6_c00102{bottom:858.693333pt;}
.y5_c00102{bottom:938.213600pt;}
.y4_c00102{bottom:956.933333pt;}
.y3_c00102{bottom:975.653067pt;}
.y2_c00102{bottom:994.373333pt;}
.y1_c00102{bottom:1044.160000pt;}
.h8_c00102{height:37.759867pt;}
.h7_c00102{height:37.919733pt;}
.h5_c00102{height:40.000000pt;}
.h6_c00102{height:40.031733pt;}
.h4_c00102{height:42.866250pt;}
.h2_c00102{height:50.628750pt;}
.h9_c00102{height:50.629283pt;}
.h3_c00102{height:59.200000pt;}
.hc_c00102{height:60.534375pt;}
.hb_c00102{height:60.644438pt;}
.ha_c00102{height:215.360000pt;}
.h1_c00102{height:1122.666667pt;}
.h0_c00102{height:1122.720000pt;}
.w3_c00102{width:138.106667pt;}
.w4_c00102{width:219.706667pt;}
.w2_c00102{width:244.026667pt;}
.w5_c00102{width:604.640000pt;}
.w1_c00102{width:794.000000pt;}
.w0_c00102{width:794.080000pt;}
.x0_c00102{left:0.000000pt;}
.x12_c00102{left:9.440133pt;}
.x6_c00102{left:20.160000pt;}
.x13_c00102{left:27.834667pt;}
.x5_c00102{left:30.720000pt;}
.xc_c00102{left:31.834667pt;}
.x8_c00102{left:35.200000pt;}
.xf_c00102{left:36.314560pt;}
.xd_c00102{left:38.394560pt;}
.xb_c00102{left:41.120000pt;}
.x3_c00102{left:51.834667pt;}
.xa_c00102{left:54.234667pt;}
.x10_c00102{left:60.506667pt;}
.x9_c00102{left:74.120000pt;}
.xe_c00102{left:92.040000pt;}
.x11_c00102{left:103.880000pt;}
.x1_c00102{left:113.471867pt;}
.x1a_c00102{left:120.639733pt;}
.x14_c00102{left:132.352133pt;}
.x1b_c00102{left:187.520000pt;}
.x15_c00102{left:208.027333pt;}
.x19_c00102{left:245.146240pt;}
.x18_c00102{left:251.226453pt;}
.x2_c00102{left:302.306533pt;}
.x17_c00102{left:338.172853pt;}
.x16_c00102{left:344.253067pt;}
.x4_c00102{left:358.786667pt;}
.x7_c00102{left:497.693333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d9a59c03f96cfa632dbf98c0.woff2')format("woff");}.ff1_c00103{font-family:ff1_c00103;line-height:1.070312;font-style:normal;font-weight:normal;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_5cc5b7d90a2d72e6c70349eb.woff2')format("woff");}.ff2_c00103{font-family:ff2_c00103;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00103;src:url('chunks/assets/font_447b120f259c22c160ba6fed.woff2')format("woff");}.ff3_c00103{font-family:ff3_c00103;line-height:0.971191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00103{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00103{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00103{vertical-align:0.000000px;}
.ls0_c00103{letter-spacing:0.000000px;}
.sc__c00103{text-shadow:none;}
.sc0_c00103{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00103{-webkit-text-stroke:0px transparent;}
.sc0_c00103{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00103{word-spacing:-22.017600px;}
.ws0_c00103{word-spacing:-18.414720px;}
.ws2_c00103{word-spacing:0.000000px;}
._8_c00103{margin-left:-15.230972px;}
._1_c00103{margin-left:-1.126186px;}
._5_c00103{width:1.456190px;}
._9_c00103{width:4.570155px;}
._6_c00103{width:7.972709px;}
._7_c00103{width:9.276392px;}
._4_c00103{width:17.189564px;}
._3_c00103{width:20.153497px;}
._2_c00103{width:98.933173px;}
._a_c00103{width:117.347928px;}
._0_c00103{width:2298.149418px;}
.fc2_c00103{color:rgb(89,89,89);}
.fc1_c00103{color:rgb(64,64,64);}
.fc0_c00103{color:rgb(0,0,0);}
.fs0_c00103{font-size:66.240000px;}
.fs1_c00103{font-size:79.200000px;}
.y0_c00103{bottom:0.000000px;}
.y22_c00103{bottom:4.500000px;}
.yf_c00103{bottom:8.100000px;}
.y2f_c00103{bottom:9.975000px;}
.y8_c00103{bottom:10.080000px;}
.y24_c00103{bottom:15.300000px;}
.yc_c00103{bottom:15.840000px;}
.y27_c00103{bottom:15.840300px;}
.y10_c00103{bottom:17.100000px;}
.ya_c00103{bottom:19.080000px;}
.y21_c00103{bottom:22.500000px;}
.y1f_c00103{bottom:24.300000px;}
.ye_c00103{bottom:26.100000px;}
.y6_c00103{bottom:28.080000px;}
.y23_c00103{bottom:33.300000px;}
.y9_c00103{bottom:37.080000px;}
.y20_c00103{bottom:40.500000px;}
.y7_c00103{bottom:46.080000px;}
.y2a_c00103{bottom:52.560000px;}
.y29_c00103{bottom:71.460000px;}
.y2c_c00103{bottom:99.825300px;}
.y26_c00103{bottom:107.279850px;}
.y2b_c00103{bottom:118.725300px;}
.y25_c00103{bottom:150.510000px;}
.y2d_c00103{bottom:169.455150px;}
.y31_c00103{bottom:189.570300px;}
.y1e_c00103{bottom:193.710000px;}
.y30_c00103{bottom:212.430000px;}
.y1d_c00103{bottom:275.790600px;}
.y1c_c00103{bottom:296.850300px;}
.y1b_c00103{bottom:317.910000px;}
.y1a_c00103{bottom:365.970300px;}
.y19_c00103{bottom:386.850150px;}
.y18_c00103{bottom:407.955000px;}
.y17_c00103{bottom:438.015000px;}
.y16_c00103{bottom:476.895000px;}
.y28_c00103{bottom:521.640000px;}
.y2e_c00103{bottom:662.220000px;}
.y15_c00103{bottom:778.245450px;}
.y14_c00103{bottom:799.305150px;}
.y13_c00103{bottom:820.184700px;}
.y12_c00103{bottom:841.245000px;}
.y11_c00103{bottom:871.305000px;}
.yd_c00103{bottom:897.990000px;}
.yb_c00103{bottom:943.710000px;}
.y5_c00103{bottom:986.910000px;}
.y4_c00103{bottom:1076.550000px;}
.y3_c00103{bottom:1097.609700px;}
.y2_c00103{bottom:1118.670000px;}
.y1_c00103{bottom:1174.680000px;}
.h5_c00103{height:42.479850px;}
.h9_c00103{height:42.480450px;}
.ha_c00103{height:42.516150px;}
.h6_c00103{height:45.000000px;}
.h4_c00103{height:48.224531px;}
.hb_c00103{height:50.650313px;}
.hd_c00103{height:50.939700px;}
.h2_c00103{height:56.957344px;}
.h7_c00103{height:56.958544px;}
.h8_c00103{height:59.400000px;}
.h3_c00103{height:66.780450px;}
.he_c00103{height:68.101172px;}
.hc_c00103{height:242.460000px;}
.h1_c00103{height:1263.000000px;}
.h0_c00103{height:1263.060000px;}
.w3_c00103{width:155.370000px;}
.w6_c00103{width:202.320000px;}
.w4_c00103{width:247.170000px;}
.w2_c00103{width:274.530000px;}
.w5_c00103{width:680.220000px;}
.w1_c00103{width:893.250000px;}
.w0_c00103{width:893.340000px;}
.x0_c00103{left:0.000000px;}
.xa_c00103{left:8.279850px;}
.xd_c00103{left:16.920150px;}
.x6_c00103{left:22.680000px;}
.x5_c00103{left:34.560000px;}
.x8_c00103{left:39.600000px;}
.x13_c00103{left:46.260000px;}
.xe_c00103{left:54.714300px;}
.x3_c00103{left:58.314000px;}
.x11_c00103{left:61.230000px;}
.xb_c00103{left:68.070000px;}
.x9_c00103{left:83.385000px;}
.x19_c00103{left:88.844850px;}
.xc_c00103{left:90.225000px;}
.x12_c00103{left:103.545000px;}
.x1_c00103{left:127.655850px;}
.xf_c00103{left:131.445000px;}
.x10_c00103{left:148.896150px;}
.x17_c00103{left:224.819910px;}
.x2_c00103{left:234.029850px;}
.x18_c00103{left:264.780000px;}
.x1a_c00103{left:273.389850px;}
.x16_c00103{left:280.229610px;}
.x15_c00103{left:287.069850px;}
.x14_c00103{left:363.494850px;}
.x4_c00103{left:403.635000px;}
.x7_c00103{left:559.905000px;}
@media print{
.v0_c00103{vertical-align:0.000000pt;}
.ls0_c00103{letter-spacing:0.000000pt;}
.ws1_c00103{word-spacing:-19.571200pt;}
.ws0_c00103{word-spacing:-16.368640pt;}
.ws2_c00103{word-spacing:0.000000pt;}
._8_c00103{margin-left:-13.538642pt;}
._1_c00103{margin-left:-1.001054pt;}
._5_c00103{width:1.294391pt;}
._9_c00103{width:4.062360pt;}
._6_c00103{width:7.086853pt;}
._7_c00103{width:8.245682pt;}
._4_c00103{width:15.279613pt;}
._3_c00103{width:17.914219pt;}
._2_c00103{width:87.940598pt;}
._a_c00103{width:104.309269pt;}
._0_c00103{width:2042.799483pt;}
.fs0_c00103{font-size:58.880000pt;}
.fs1_c00103{font-size:70.400000pt;}
.y0_c00103{bottom:0.000000pt;}
.y22_c00103{bottom:4.000000pt;}
.yf_c00103{bottom:7.200000pt;}
.y2f_c00103{bottom:8.866667pt;}
.y8_c00103{bottom:8.960000pt;}
.y24_c00103{bottom:13.600000pt;}
.yc_c00103{bottom:14.080000pt;}
.y27_c00103{bottom:14.080267pt;}
.y10_c00103{bottom:15.200000pt;}
.ya_c00103{bottom:16.960000pt;}
.y21_c00103{bottom:20.000000pt;}
.y1f_c00103{bottom:21.600000pt;}
.ye_c00103{bottom:23.200000pt;}
.y6_c00103{bottom:24.960000pt;}
.y23_c00103{bottom:29.600000pt;}
.y9_c00103{bottom:32.960000pt;}
.y20_c00103{bottom:36.000000pt;}
.y7_c00103{bottom:40.960000pt;}
.y2a_c00103{bottom:46.720000pt;}
.y29_c00103{bottom:63.520000pt;}
.y2c_c00103{bottom:88.733600pt;}
.y26_c00103{bottom:95.359867pt;}
.y2b_c00103{bottom:105.533600pt;}
.y25_c00103{bottom:133.786667pt;}
.y2d_c00103{bottom:150.626800pt;}
.y31_c00103{bottom:168.506933pt;}
.y1e_c00103{bottom:172.186667pt;}
.y30_c00103{bottom:188.826667pt;}
.y1d_c00103{bottom:245.147200pt;}
.y1c_c00103{bottom:263.866933pt;}
.y1b_c00103{bottom:282.586667pt;}
.y1a_c00103{bottom:325.306933pt;}
.y19_c00103{bottom:343.866800pt;}
.y18_c00103{bottom:362.626667pt;}
.y17_c00103{bottom:389.346667pt;}
.y16_c00103{bottom:423.906667pt;}
.y28_c00103{bottom:463.680000pt;}
.y2e_c00103{bottom:588.640000pt;}
.y15_c00103{bottom:691.773733pt;}
.y14_c00103{bottom:710.493467pt;}
.y13_c00103{bottom:729.053067pt;}
.y12_c00103{bottom:747.773333pt;}
.y11_c00103{bottom:774.493333pt;}
.yd_c00103{bottom:798.213333pt;}
.yb_c00103{bottom:838.853333pt;}
.y5_c00103{bottom:877.253333pt;}
.y4_c00103{bottom:956.933333pt;}
.y3_c00103{bottom:975.653067pt;}
.y2_c00103{bottom:994.373333pt;}
.y1_c00103{bottom:1044.160000pt;}
.h5_c00103{height:37.759867pt;}
.h9_c00103{height:37.760400pt;}
.ha_c00103{height:37.792133pt;}
.h6_c00103{height:40.000000pt;}
.h4_c00103{height:42.866250pt;}
.hb_c00103{height:45.022500pt;}
.hd_c00103{height:45.279733pt;}
.h2_c00103{height:50.628750pt;}
.h7_c00103{height:50.629817pt;}
.h8_c00103{height:52.800000pt;}
.h3_c00103{height:59.360400pt;}
.he_c00103{height:60.534375pt;}
.hc_c00103{height:215.520000pt;}
.h1_c00103{height:1122.666667pt;}
.h0_c00103{height:1122.720000pt;}
.w3_c00103{width:138.106667pt;}
.w6_c00103{width:179.840000pt;}
.w4_c00103{width:219.706667pt;}
.w2_c00103{width:244.026667pt;}
.w5_c00103{width:604.640000pt;}
.w1_c00103{width:794.000000pt;}
.w0_c00103{width:794.080000pt;}
.x0_c00103{left:0.000000pt;}
.xa_c00103{left:7.359867pt;}
.xd_c00103{left:15.040133pt;}
.x6_c00103{left:20.160000pt;}
.x5_c00103{left:30.720000pt;}
.x8_c00103{left:35.200000pt;}
.x13_c00103{left:41.120000pt;}
.xe_c00103{left:48.634933pt;}
.x3_c00103{left:51.834667pt;}
.x11_c00103{left:54.426667pt;}
.xb_c00103{left:60.506667pt;}
.x9_c00103{left:74.120000pt;}
.x19_c00103{left:78.973200pt;}
.xc_c00103{left:80.200000pt;}
.x12_c00103{left:92.040000pt;}
.x1_c00103{left:113.471867pt;}
.xf_c00103{left:116.840000pt;}
.x10_c00103{left:132.352133pt;}
.x17_c00103{left:199.839920pt;}
.x2_c00103{left:208.026533pt;}
.x18_c00103{left:235.360000pt;}
.x1a_c00103{left:243.013200pt;}
.x16_c00103{left:249.092987pt;}
.x15_c00103{left:255.173200pt;}
.x14_c00103{left:323.106533pt;}
.x4_c00103{left:358.786667pt;}
.x7_c00103{left:497.693333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ed2c167a4a467b5cb2d152b8.woff2')format("woff");}.ff1_c00104{font-family:ff1_c00104;line-height:1.070312;font-style:normal;font-weight:normal;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_5cc5b7d90a2d72e6c70349eb.woff2')format("woff");}.ff2_c00104{font-family:ff2_c00104;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00104;src:url('chunks/assets/font_2735ce153960e34ea822c0f3.woff2')format("woff");}.ff3_c00104{font-family:ff3_c00104;line-height:0.971191;font-style:normal;font-weight:normal;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_60863be2a35dd9285673b7c7.woff2')format("woff");}.ff4_c00104{font-family:ff4_c00104;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00104{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00104{vertical-align:0.000000px;}
.ls1_c00104{letter-spacing:0.000000px;}
.ls0_c00104{letter-spacing:0.351840px;}
.sc__c00104{text-shadow:none;}
.sc0_c00104{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00104{-webkit-text-stroke:0px transparent;}
.sc0_c00104{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00104{word-spacing:0.000000px;}
._1_c00104{margin-left:-1.126186px;}
._4_c00104{width:1.409863px;}
._3_c00104{width:2.515560px;}
._5_c00104{width:15.632682px;}
._2_c00104{width:130.457000px;}
._0_c00104{width:2298.149418px;}
.fc0_c00104{color:rgb(0,0,0);}
.fs1_c00104{font-size:59.760000px;}
.fs0_c00104{font-size:66.240000px;}
.y0_c00104{bottom:0.000000px;}
.ya_c00104{bottom:4.320000px;}
.y29_c00104{bottom:8.099700px;}
.y16_c00104{bottom:8.100000px;}
.y1b_c00104{bottom:8.100150px;}
.yc_c00104{bottom:15.300000px;}
.ye_c00104{bottom:15.840000px;}
.y10_c00104{bottom:16.065000px;}
.y27_c00104{bottom:17.093850px;}
.y14_c00104{bottom:17.100000px;}
.y9_c00104{bottom:22.320000px;}
.y7_c00104{bottom:24.300000px;}
.y28_c00104{bottom:26.093850px;}
.y15_c00104{bottom:26.100000px;}
.y1a_c00104{bottom:26.130000px;}
.yb_c00104{bottom:33.300000px;}
.y8_c00104{bottom:40.320000px;}
.y2a_c00104{bottom:90.540300px;}
.y26_c00104{bottom:136.296150px;}
.y25_c00104{bottom:182.010000px;}
.y24_c00104{bottom:227.730000px;}
.y23_c00104{bottom:273.450000px;}
.y22_c00104{bottom:316.830000px;}
.y21_c00104{bottom:360.030000px;}
.y20_c00104{bottom:403.455000px;}
.y1f_c00104{bottom:446.655000px;}
.y1e_c00104{bottom:492.375000px;}
.y1d_c00104{bottom:535.755000px;}
.y1c_c00104{bottom:578.955000px;}
.y19_c00104{bottom:622.155000px;}
.y18_c00104{bottom:668.085000px;}
.y17_c00104{bottom:711.285000px;}
.y13_c00104{bottom:754.485000px;}
.y12_c00104{bottom:800.385000px;}
.y11_c00104{bottom:843.585000px;}
.yf_c00104{bottom:886.785000px;}
.yd_c00104{bottom:930.210000px;}
.y6_c00104{bottom:973.410000px;}
.y5_c00104{bottom:1055.490300px;}
.y4_c00104{bottom:1076.550000px;}
.y3_c00104{bottom:1097.609700px;}
.y2_c00104{bottom:1118.670000px;}
.y1_c00104{bottom:1174.680000px;}
.h5_c00104{height:42.479850px;}
.ha_c00104{height:42.480450px;}
.hc_c00104{height:42.516150px;}
.hd_c00104{height:42.659700px;}
.h7_c00104{height:42.696150px;}
.h9_c00104{height:45.000000px;}
.he_c00104{height:45.035700px;}
.hb_c00104{height:45.036300px;}
.h4_c00104{height:48.224531px;}
.h6_c00104{height:50.650313px;}
.h8_c00104{height:51.385430px;}
.h2_c00104{height:56.957344px;}
.h3_c00104{height:59.220150px;}
.h1_c00104{height:1263.000000px;}
.h0_c00104{height:1263.060000px;}
.w3_c00104{width:155.370000px;}
.w4_c00104{width:247.170000px;}
.w2_c00104{width:274.530000px;}
.w1_c00104{width:893.250000px;}
.w0_c00104{width:893.340000px;}
.x0_c00104{left:0.000000px;}
.xa_c00104{left:7.740150px;}
.x6_c00104{left:22.680000px;}
.x11_c00104{left:30.960000px;}
.x12_c00104{left:32.940000px;}
.x5_c00104{left:34.560000px;}
.x8_c00104{left:39.600000px;}
.x14_c00104{left:41.580000px;}
.x3_c00104{left:58.314000px;}
.xb_c00104{left:61.230000px;}
.xd_c00104{left:62.490000px;}
.x10_c00104{left:68.070000px;}
.x9_c00104{left:83.385000px;}
.x13_c00104{left:90.225000px;}
.xc_c00104{left:95.265000px;}
.xf_c00104{left:103.545000px;}
.xe_c00104{left:116.865000px;}
.x1_c00104{left:127.655850px;}
.x2_c00104{left:340.094850px;}
.x4_c00104{left:403.635000px;}
.x7_c00104{left:559.905000px;}
@media print{
.v0_c00104{vertical-align:0.000000pt;}
.ls1_c00104{letter-spacing:0.000000pt;}
.ls0_c00104{letter-spacing:0.312747pt;}
.ws0_c00104{word-spacing:0.000000pt;}
._1_c00104{margin-left:-1.001054pt;}
._4_c00104{width:1.253212pt;}
._3_c00104{width:2.236053pt;}
._5_c00104{width:13.895717pt;}
._2_c00104{width:115.961778pt;}
._0_c00104{width:2042.799483pt;}
.fs1_c00104{font-size:53.120000pt;}
.fs0_c00104{font-size:58.880000pt;}
.y0_c00104{bottom:0.000000pt;}
.ya_c00104{bottom:3.840000pt;}
.y29_c00104{bottom:7.199733pt;}
.y16_c00104{bottom:7.200000pt;}
.y1b_c00104{bottom:7.200133pt;}
.yc_c00104{bottom:13.600000pt;}
.ye_c00104{bottom:14.080000pt;}
.y10_c00104{bottom:14.280000pt;}
.y27_c00104{bottom:15.194533pt;}
.y14_c00104{bottom:15.200000pt;}
.y9_c00104{bottom:19.840000pt;}
.y7_c00104{bottom:21.600000pt;}
.y28_c00104{bottom:23.194533pt;}
.y15_c00104{bottom:23.200000pt;}
.y1a_c00104{bottom:23.226667pt;}
.yb_c00104{bottom:29.600000pt;}
.y8_c00104{bottom:35.840000pt;}
.y2a_c00104{bottom:80.480267pt;}
.y26_c00104{bottom:121.152133pt;}
.y25_c00104{bottom:161.786667pt;}
.y24_c00104{bottom:202.426667pt;}
.y23_c00104{bottom:243.066667pt;}
.y22_c00104{bottom:281.626667pt;}
.y21_c00104{bottom:320.026667pt;}
.y20_c00104{bottom:358.626667pt;}
.y1f_c00104{bottom:397.026667pt;}
.y1e_c00104{bottom:437.666667pt;}
.y1d_c00104{bottom:476.226667pt;}
.y1c_c00104{bottom:514.626667pt;}
.y19_c00104{bottom:553.026667pt;}
.y18_c00104{bottom:593.853333pt;}
.y17_c00104{bottom:632.253333pt;}
.y13_c00104{bottom:670.653333pt;}
.y12_c00104{bottom:711.453333pt;}
.y11_c00104{bottom:749.853333pt;}
.yf_c00104{bottom:788.253333pt;}
.yd_c00104{bottom:826.853333pt;}
.y6_c00104{bottom:865.253333pt;}
.y5_c00104{bottom:938.213600pt;}
.y4_c00104{bottom:956.933333pt;}
.y3_c00104{bottom:975.653067pt;}
.y2_c00104{bottom:994.373333pt;}
.y1_c00104{bottom:1044.160000pt;}
.h5_c00104{height:37.759867pt;}
.ha_c00104{height:37.760400pt;}
.hc_c00104{height:37.792133pt;}
.hd_c00104{height:37.919733pt;}
.h7_c00104{height:37.952133pt;}
.h9_c00104{height:40.000000pt;}
.he_c00104{height:40.031733pt;}
.hb_c00104{height:40.032267pt;}
.h4_c00104{height:42.866250pt;}
.h6_c00104{height:45.022500pt;}
.h8_c00104{height:45.675938pt;}
.h2_c00104{height:50.628750pt;}
.h3_c00104{height:52.640133pt;}
.h1_c00104{height:1122.666667pt;}
.h0_c00104{height:1122.720000pt;}
.w3_c00104{width:138.106667pt;}
.w4_c00104{width:219.706667pt;}
.w2_c00104{width:244.026667pt;}
.w1_c00104{width:794.000000pt;}
.w0_c00104{width:794.080000pt;}
.x0_c00104{left:0.000000pt;}
.xa_c00104{left:6.880133pt;}
.x6_c00104{left:20.160000pt;}
.x11_c00104{left:27.520000pt;}
.x12_c00104{left:29.280000pt;}
.x5_c00104{left:30.720000pt;}
.x8_c00104{left:35.200000pt;}
.x14_c00104{left:36.960000pt;}
.x3_c00104{left:51.834667pt;}
.xb_c00104{left:54.426667pt;}
.xd_c00104{left:55.546667pt;}
.x10_c00104{left:60.506667pt;}
.x9_c00104{left:74.120000pt;}
.x13_c00104{left:80.200000pt;}
.xc_c00104{left:84.680000pt;}
.xf_c00104{left:92.040000pt;}
.xe_c00104{left:103.880000pt;}
.x1_c00104{left:113.471867pt;}
.x2_c00104{left:302.306533pt;}
.x4_c00104{left:358.786667pt;}
.x7_c00104{left:497.693333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_6feb109ee6779ac7eb1c04b2.woff2')format("woff");}.ff1_c00105{font-family:ff1_c00105;line-height:1.070312;font-style:normal;font-weight:normal;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_5cc5b7d90a2d72e6c70349eb.woff2')format("woff");}.ff2_c00105{font-family:ff2_c00105;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00105;src:url('chunks/assets/font_9ba3420e2161464e92b70642.woff2')format("woff");}.ff3_c00105{font-family:ff3_c00105;line-height:0.971191;font-style:normal;font-weight:normal;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_60863be2a35dd9285673b7c7.woff2')format("woff");}.ff4_c00105{font-family:ff4_c00105;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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);}
.m1_c00105{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_c00105{vertical-align:0.000000px;}
.ls1_c00105{letter-spacing:0.000000px;}
.ls0_c00105{letter-spacing:0.351840px;}
.sc__c00105{text-shadow:none;}
.sc0_c00105{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00105{-webkit-text-stroke:0px transparent;}
.sc0_c00105{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00105{word-spacing:-18.414720px;}
.ws1_c00105{word-spacing:0.000000px;}
._7_c00105{margin-left:-4.768509px;}
._8_c00105{margin-left:-3.716924px;}
._9_c00105{margin-left:-2.433252px;}
._1_c00105{margin-left:-1.126186px;}
._4_c00105{width:1.409863px;}
._3_c00105{width:2.515560px;}
._6_c00105{width:15.632682px;}
._b_c00105{width:16.873517px;}
._5_c00105{width:19.693855px;}
._a_c00105{width:80.517558px;}
._2_c00105{width:130.457000px;}
._0_c00105{width:2298.149418px;}
.fc1_c00105{color:rgb(255,0,0);}
.fc3_c00105{color:rgb(89,89,89);}
.fc2_c00105{color:rgb(64,64,64);}
.fc0_c00105{color:rgb(0,0,0);}
.fs0_c00105{font-size:66.240000px;}
.fs2_c00105{font-size:79.200000px;}
.fs1_c00105{font-size:79.344000px;}
.y0_c00105{bottom:0.000000px;}
.yf_c00105{bottom:8.100000px;}
.y9_c00105{bottom:9.900000px;}
.y20_c00105{bottom:15.833850px;}
.y11_c00105{bottom:15.885000px;}
.y14_c00105{bottom:16.020000px;}
.yd_c00105{bottom:17.100000px;}
.yb_c00105{bottom:18.900000px;}
.ye_c00105{bottom:26.100000px;}
.y7_c00105{bottom:27.900000px;}
.ya_c00105{bottom:36.900000px;}
.y8_c00105{bottom:45.900000px;}
.y21_c00105{bottom:89.640300px;}
.y24_c00105{bottom:95.190000px;}
.y23_c00105{bottom:114.090000px;}
.y1f_c00105{bottom:135.396150px;}
.y1e_c00105{bottom:178.770000px;}
.y26_c00105{bottom:189.390150px;}
.y25_c00105{bottom:212.295000px;}
.y1d_c00105{bottom:268.230000px;}
.y1c_c00105{bottom:289.290300px;}
.y1b_c00105{bottom:310.350000px;}
.y1a_c00105{bottom:358.230000px;}
.y22_c00105{bottom:403.200000px;}
.y19_c00105{bottom:668.265450px;}
.y18_c00105{bottom:689.325150px;}
.y17_c00105{bottom:710.204700px;}
.y16_c00105{bottom:731.265000px;}
.y15_c00105{bottom:761.325000px;}
.y13_c00105{bottom:787.785000px;}
.y12_c00105{bottom:831.165000px;}
.y10_c00105{bottom:876.885000px;}
.yc_c00105{bottom:920.130000px;}
.y6_c00105{bottom:966.030000px;}
.y5_c00105{bottom:1055.490300px;}
.y4_c00105{bottom:1076.550000px;}
.y3_c00105{bottom:1097.609700px;}
.y2_c00105{bottom:1118.670000px;}
.y1_c00105{bottom:1174.680000px;}
.ha_c00105{height:42.479850px;}
.h6_c00105{height:42.515700px;}
.h8_c00105{height:42.660300px;}
.h5_c00105{height:45.000000px;}
.h4_c00105{height:48.224531px;}
.h7_c00105{height:50.650313px;}
.h2_c00105{height:56.957344px;}
.h9_c00105{height:56.958544px;}
.h3_c00105{height:66.600000px;}
.hd_c00105{height:68.101172px;}
.hc_c00105{height:68.224992px;}
.hb_c00105{height:242.280000px;}
.h1_c00105{height:1263.000000px;}
.h0_c00105{height:1263.060000px;}
.w3_c00105{width:155.190000px;}
.w5_c00105{width:237.090000px;}
.w4_c00105{width:247.170000px;}
.w2_c00105{width:274.530000px;}
.w6_c00105{width:680.220000px;}
.w1_c00105{width:893.250000px;}
.w0_c00105{width:893.340000px;}
.x0_c00105{left:0.000000px;}
.xa_c00105{left:7.740150px;}
.x6_c00105{left:22.500000px;}
.xc_c00105{left:30.600000px;}
.x5_c00105{left:34.380000px;}
.x8_c00105{left:39.600000px;}
.x3_c00105{left:58.314000px;}
.xb_c00105{left:61.050000px;}
.xd_c00105{left:68.625000px;}
.x12_c00105{left:78.165000px;}
.x9_c00105{left:83.385000px;}
.xf_c00105{left:90.225000px;}
.xe_c00105{left:116.865000px;}
.x13_c00105{left:126.405000px;}
.x1_c00105{left:127.655850px;}
.x10_c00105{left:148.896150px;}
.x11_c00105{left:234.029850px;}
.x16_c00105{left:271.154910px;}
.x17_c00105{left:277.095000px;}
.x2_c00105{left:340.094850px;}
.x15_c00105{left:379.184760px;}
.x14_c00105{left:386.025000px;}
.x4_c00105{left:403.815000px;}
.x7_c00105{left:559.905000px;}
@media print{
.v0_c00105{vertical-align:0.000000pt;}
.ls1_c00105{letter-spacing:0.000000pt;}
.ls0_c00105{letter-spacing:0.312747pt;}
.ws0_c00105{word-spacing:-16.368640pt;}
.ws1_c00105{word-spacing:0.000000pt;}
._7_c00105{margin-left:-4.238675pt;}
._8_c00105{margin-left:-3.303933pt;}
._9_c00105{margin-left:-2.162891pt;}
._1_c00105{margin-left:-1.001054pt;}
._4_c00105{width:1.253212pt;}
._3_c00105{width:2.236053pt;}
._6_c00105{width:13.895717pt;}
._b_c00105{width:14.998682pt;}
._5_c00105{width:17.505649pt;}
._a_c00105{width:71.571162pt;}
._2_c00105{width:115.961778pt;}
._0_c00105{width:2042.799483pt;}
.fs0_c00105{font-size:58.880000pt;}
.fs2_c00105{font-size:70.400000pt;}
.fs1_c00105{font-size:70.528000pt;}
.y0_c00105{bottom:0.000000pt;}
.yf_c00105{bottom:7.200000pt;}
.y9_c00105{bottom:8.800000pt;}
.y20_c00105{bottom:14.074533pt;}
.y11_c00105{bottom:14.120000pt;}
.y14_c00105{bottom:14.240000pt;}
.yd_c00105{bottom:15.200000pt;}
.yb_c00105{bottom:16.800000pt;}
.ye_c00105{bottom:23.200000pt;}
.y7_c00105{bottom:24.800000pt;}
.ya_c00105{bottom:32.800000pt;}
.y8_c00105{bottom:40.800000pt;}
.y21_c00105{bottom:79.680267pt;}
.y24_c00105{bottom:84.613333pt;}
.y23_c00105{bottom:101.413333pt;}
.y1f_c00105{bottom:120.352133pt;}
.y1e_c00105{bottom:158.906667pt;}
.y26_c00105{bottom:168.346800pt;}
.y25_c00105{bottom:188.706667pt;}
.y1d_c00105{bottom:238.426667pt;}
.y1c_c00105{bottom:257.146933pt;}
.y1b_c00105{bottom:275.866667pt;}
.y1a_c00105{bottom:318.426667pt;}
.y22_c00105{bottom:358.400000pt;}
.y19_c00105{bottom:594.013733pt;}
.y18_c00105{bottom:612.733467pt;}
.y17_c00105{bottom:631.293067pt;}
.y16_c00105{bottom:650.013333pt;}
.y15_c00105{bottom:676.733333pt;}
.y13_c00105{bottom:700.253333pt;}
.y12_c00105{bottom:738.813333pt;}
.y10_c00105{bottom:779.453333pt;}
.yc_c00105{bottom:817.893333pt;}
.y6_c00105{bottom:858.693333pt;}
.y5_c00105{bottom:938.213600pt;}
.y4_c00105{bottom:956.933333pt;}
.y3_c00105{bottom:975.653067pt;}
.y2_c00105{bottom:994.373333pt;}
.y1_c00105{bottom:1044.160000pt;}
.ha_c00105{height:37.759867pt;}
.h6_c00105{height:37.791733pt;}
.h8_c00105{height:37.920267pt;}
.h5_c00105{height:40.000000pt;}
.h4_c00105{height:42.866250pt;}
.h7_c00105{height:45.022500pt;}
.h2_c00105{height:50.628750pt;}
.h9_c00105{height:50.629817pt;}
.h3_c00105{height:59.200000pt;}
.hd_c00105{height:60.534375pt;}
.hc_c00105{height:60.644438pt;}
.hb_c00105{height:215.360000pt;}
.h1_c00105{height:1122.666667pt;}
.h0_c00105{height:1122.720000pt;}
.w3_c00105{width:137.946667pt;}
.w5_c00105{width:210.746667pt;}
.w4_c00105{width:219.706667pt;}
.w2_c00105{width:244.026667pt;}
.w6_c00105{width:604.640000pt;}
.w1_c00105{width:794.000000pt;}
.w0_c00105{width:794.080000pt;}
.x0_c00105{left:0.000000pt;}
.xa_c00105{left:6.880133pt;}
.x6_c00105{left:20.000000pt;}
.xc_c00105{left:27.200000pt;}
.x5_c00105{left:30.560000pt;}
.x8_c00105{left:35.200000pt;}
.x3_c00105{left:51.834667pt;}
.xb_c00105{left:54.266667pt;}
.xd_c00105{left:61.000000pt;}
.x12_c00105{left:69.480000pt;}
.x9_c00105{left:74.120000pt;}
.xf_c00105{left:80.200000pt;}
.xe_c00105{left:103.880000pt;}
.x13_c00105{left:112.360000pt;}
.x1_c00105{left:113.471867pt;}
.x10_c00105{left:132.352133pt;}
.x11_c00105{left:208.026533pt;}
.x16_c00105{left:241.026587pt;}
.x17_c00105{left:246.306667pt;}
.x2_c00105{left:302.306533pt;}
.x15_c00105{left:337.053120pt;}
.x14_c00105{left:343.133333pt;}
.x4_c00105{left:358.946667pt;}
.x7_c00105{left:497.693333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_753944c3b3cc11d5a58c5de7.woff2')format("woff");}.ff1_c00106{font-family:ff1_c00106;line-height:1.070312;font-style:normal;font-weight:normal;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_5cc5b7d90a2d72e6c70349eb.woff2')format("woff");}.ff2_c00106{font-family:ff2_c00106;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00106;src:url('chunks/assets/font_40622ec1549c2ca1f50eee93.woff2')format("woff");}.ff3_c00106{font-family:ff3_c00106;line-height:0.971191;font-style: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);}
.m1_c00106{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_c00106{vertical-align:0.000000px;}
.ls0_c00106{letter-spacing:0.000000px;}
.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;}
}
.ws2_c00106{word-spacing:-22.017600px;}
.ws1_c00106{word-spacing:-18.454752px;}
.ws0_c00106{word-spacing:-18.414720px;}
.ws3_c00106{word-spacing:0.000000px;}
._7_c00106{margin-left:-3.112915px;}
._1_c00106{margin-left:-1.920851px;}
._2_c00106{width:1.733880px;}
._3_c00106{width:2.871827px;}
._6_c00106{width:4.016553px;}
._4_c00106{width:6.623430px;}
._5_c00106{width:8.411491px;}
._b_c00106{width:17.155782px;}
._9_c00106{width:19.871266px;}
._a_c00106{width:21.214892px;}
._8_c00106{width:79.578343px;}
._0_c00106{width:2298.149418px;}
.fc1_c00106{color:rgb(255,0,0);}
.fc3_c00106{color:rgb(89,89,89);}
.fc2_c00106{color:rgb(64,64,64);}
.fc0_c00106{color:rgb(0,0,0);}
.fs0_c00106{font-size:66.240000px;}
.fs1_c00106{font-size:66.384000px;}
.fs2_c00106{font-size:79.200000px;}
.y0_c00106{bottom:0.000000px;}
.yf_c00106{bottom:8.100000px;}
.y1b_c00106{bottom:8.135700px;}
.y11_c00106{bottom:17.100000px;}
.y1c_c00106{bottom:17.135700px;}
.yd_c00106{bottom:26.100000px;}
.y1a_c00106{bottom:26.129700px;}
.y10_c00106{bottom:35.100000px;}
.y22_c00106{bottom:40.109850px;}
.ye_c00106{bottom:44.100000px;}
.y21_c00106{bottom:59.039700px;}
.y20_c00106{bottom:99.750000px;}
.y1d_c00106{bottom:101.700000px;}
.y1f_c00106{bottom:118.650000px;}
.y19_c00106{bottom:128.340300px;}
.y24_c00106{bottom:150.300150px;}
.y23_c00106{bottom:169.200150px;}
.y18_c00106{bottom:174.090000px;}
.y26_c00106{bottom:189.509700px;}
.y25_c00106{bottom:212.370000px;}
.y17_c00106{bottom:219.810000px;}
.y16_c00106{bottom:265.530000px;}
.y15_c00106{bottom:311.250000px;}
.y14_c00106{bottom:356.970000px;}
.y13_c00106{bottom:402.915000px;}
.y12_c00106{bottom:466.635000px;}
.yc_c00106{bottom:512.355000px;}
.yb_c00106{bottom:598.215600px;}
.ya_c00106{bottom:619.275300px;}
.y9_c00106{bottom:640.185000px;}
.y8_c00106{bottom:688.245000px;}
.y7_c00106{bottom:727.125000px;}
.y1e_c00106{bottom:772.020000px;}
.y6_c00106{bottom:1034.610150px;}
.y5_c00106{bottom:1055.670450px;}
.y4_c00106{bottom:1076.550300px;}
.y3_c00106{bottom:1097.609700px;}
.y2_c00106{bottom:1118.670000px;}
.y1_c00106{bottom:1174.680000px;}
.h6_c00106{height:45.000000px;}
.h8_c00106{height:45.035700px;}
.h5_c00106{height:48.224531px;}
.h7_c00106{height:50.650313px;}
.h2_c00106{height:56.957344px;}
.h3_c00106{height:56.958544px;}
.ha_c00106{height:57.081164px;}
.h4_c00106{height:63.000000px;}
.hb_c00106{height:68.101172px;}
.h9_c00106{height:242.280000px;}
.h1_c00106{height:1263.000000px;}
.h0_c00106{height:1263.060000px;}
.w3_c00106{width:155.370000px;}
.w4_c00106{width:247.170000px;}
.w2_c00106{width:274.530000px;}
.w5_c00106{width:680.220000px;}
.w1_c00106{width:893.250000px;}
.w0_c00106{width:893.340000px;}
.x0_c00106{left:0.000000px;}
.xb_c00106{left:7.740150px;}
.x7_c00106{left:22.680000px;}
.x6_c00106{left:34.560000px;}
.x9_c00106{left:39.600000px;}
.x4_c00106{left:58.314000px;}
.xc_c00106{left:61.050000px;}
.xe_c00106{left:68.070000px;}
.x16_c00106{left:72.869700px;}
.xa_c00106{left:83.385000px;}
.xd_c00106{left:90.225000px;}
.x1_c00106{left:127.655850px;}
.xf_c00106{left:131.445000px;}
.x2_c00106{left:148.896150px;}
.x3_c00106{left:234.029850px;}
.x14_c00106{left:254.054670px;}
.x15_c00106{left:256.574790px;}
.x17_c00106{left:294.329700px;}
.x13_c00106{left:307.289370px;}
.x12_c00106{left:314.129610px;}
.x11_c00106{left:388.334460px;}
.x10_c00106{left:395.174700px;}
.x5_c00106{left:403.635000px;}
.x8_c00106{left:559.905000px;}
@media print{
.v0_c00106{vertical-align:0.000000pt;}
.ls0_c00106{letter-spacing:0.000000pt;}
.ws2_c00106{word-spacing:-19.571200pt;}
.ws1_c00106{word-spacing:-16.404224pt;}
.ws0_c00106{word-spacing:-16.368640pt;}
.ws3_c00106{word-spacing:0.000000pt;}
._7_c00106{margin-left:-2.767036pt;}
._1_c00106{margin-left:-1.707423pt;}
._2_c00106{width:1.541227pt;}
._3_c00106{width:2.552735pt;}
._6_c00106{width:3.570269pt;}
._4_c00106{width:5.887493pt;}
._5_c00106{width:7.476881pt;}
._b_c00106{width:15.249584pt;}
._9_c00106{width:17.663348pt;}
._a_c00106{width:18.857682pt;}
._8_c00106{width:70.736305pt;}
._0_c00106{width:2042.799483pt;}
.fs0_c00106{font-size:58.880000pt;}
.fs1_c00106{font-size:59.008000pt;}
.fs2_c00106{font-size:70.400000pt;}
.y0_c00106{bottom:0.000000pt;}
.yf_c00106{bottom:7.200000pt;}
.y1b_c00106{bottom:7.231733pt;}
.y11_c00106{bottom:15.200000pt;}
.y1c_c00106{bottom:15.231733pt;}
.yd_c00106{bottom:23.200000pt;}
.y1a_c00106{bottom:23.226400pt;}
.y10_c00106{bottom:31.200000pt;}
.y22_c00106{bottom:35.653200pt;}
.ye_c00106{bottom:39.200000pt;}
.y21_c00106{bottom:52.479733pt;}
.y20_c00106{bottom:88.666667pt;}
.y1d_c00106{bottom:90.400000pt;}
.y1f_c00106{bottom:105.466667pt;}
.y19_c00106{bottom:114.080267pt;}
.y24_c00106{bottom:133.600133pt;}
.y23_c00106{bottom:150.400133pt;}
.y18_c00106{bottom:154.746667pt;}
.y26_c00106{bottom:168.453067pt;}
.y25_c00106{bottom:188.773333pt;}
.y17_c00106{bottom:195.386667pt;}
.y16_c00106{bottom:236.026667pt;}
.y15_c00106{bottom:276.666667pt;}
.y14_c00106{bottom:317.306667pt;}
.y13_c00106{bottom:358.146667pt;}
.y12_c00106{bottom:414.786667pt;}
.yc_c00106{bottom:455.426667pt;}
.yb_c00106{bottom:531.747200pt;}
.ya_c00106{bottom:550.466933pt;}
.y9_c00106{bottom:569.053333pt;}
.y8_c00106{bottom:611.773333pt;}
.y7_c00106{bottom:646.333333pt;}
.y1e_c00106{bottom:686.240000pt;}
.y6_c00106{bottom:919.653467pt;}
.y5_c00106{bottom:938.373733pt;}
.y4_c00106{bottom:956.933600pt;}
.y3_c00106{bottom:975.653067pt;}
.y2_c00106{bottom:994.373333pt;}
.y1_c00106{bottom:1044.160000pt;}
.h6_c00106{height:40.000000pt;}
.h8_c00106{height:40.031733pt;}
.h5_c00106{height:42.866250pt;}
.h7_c00106{height:45.022500pt;}
.h2_c00106{height:50.628750pt;}
.h3_c00106{height:50.629817pt;}
.ha_c00106{height:50.738813pt;}
.h4_c00106{height:56.000000pt;}
.hb_c00106{height:60.534375pt;}
.h9_c00106{height:215.360000pt;}
.h1_c00106{height:1122.666667pt;}
.h0_c00106{height:1122.720000pt;}
.w3_c00106{width:138.106667pt;}
.w4_c00106{width:219.706667pt;}
.w2_c00106{width:244.026667pt;}
.w5_c00106{width:604.640000pt;}
.w1_c00106{width:794.000000pt;}
.w0_c00106{width:794.080000pt;}
.x0_c00106{left:0.000000pt;}
.xb_c00106{left:6.880133pt;}
.x7_c00106{left:20.160000pt;}
.x6_c00106{left:30.720000pt;}
.x9_c00106{left:35.200000pt;}
.x4_c00106{left:51.834667pt;}
.xc_c00106{left:54.266667pt;}
.xe_c00106{left:60.506667pt;}
.x16_c00106{left:64.773067pt;}
.xa_c00106{left:74.120000pt;}
.xd_c00106{left:80.200000pt;}
.x1_c00106{left:113.471867pt;}
.xf_c00106{left:116.840000pt;}
.x2_c00106{left:132.352133pt;}
.x3_c00106{left:208.026533pt;}
.x14_c00106{left:225.826373pt;}
.x15_c00106{left:228.066480pt;}
.x17_c00106{left:261.626400pt;}
.x13_c00106{left:273.146107pt;}
.x12_c00106{left:279.226320pt;}
.x11_c00106{left:345.186187pt;}
.x10_c00106{left:351.266400pt;}
.x5_c00106{left:358.786667pt;}
.x8_c00106{left:497.693333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f45cbf0500c1a3cc49aa8da3.woff2')format("woff");}.ff1_c00107{font-family:ff1_c00107;line-height:1.070312;font-style:normal;font-weight:normal;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_5cc5b7d90a2d72e6c70349eb.woff2')format("woff");}.ff2_c00107{font-family:ff2_c00107;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00107;src:url('chunks/assets/font_0332f57c248271244fbf9fb9.woff2')format("woff");}.ff3_c00107{font-family:ff3_c00107;line-height:0.971191;font-style: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);}
.m1_c00107{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_c00107{vertical-align:0.000000px;}
.ls0_c00107{letter-spacing:0.000000px;}
.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:-22.017600px;}
.ws1_c00107{word-spacing:-18.454752px;}
.ws0_c00107{word-spacing:-18.414720px;}
.ws3_c00107{word-spacing:0.000000px;}
._8_c00107{margin-left:-3.972989px;}
._1_c00107{margin-left:-1.126186px;}
._4_c00107{width:1.409863px;}
._3_c00107{width:2.515560px;}
._9_c00107{width:4.441018px;}
._7_c00107{width:15.893547px;}
._6_c00107{width:17.090492px;}
._5_c00107{width:19.693855px;}
._2_c00107{width:93.627060px;}
._a_c00107{width:845.765568px;}
._0_c00107{width:2298.149418px;}
.fc1_c00107{color:rgb(255,0,0);}
.fc3_c00107{color:rgb(89,89,89);}
.fc2_c00107{color:rgb(64,64,64);}
.fc0_c00107{color:rgb(0,0,0);}
.fs0_c00107{font-size:66.240000px;}
.fs1_c00107{font-size:66.384000px;}
.fs2_c00107{font-size:79.200000px;}
.y0_c00107{bottom:0.000000px;}
.ye_c00107{bottom:8.100000px;}
.y9_c00107{bottom:9.900000px;}
.yf_c00107{bottom:17.100000px;}
.yb_c00107{bottom:18.900000px;}
.yd_c00107{bottom:26.100000px;}
.y11_c00107{bottom:26.145000px;}
.y7_c00107{bottom:27.900000px;}
.ya_c00107{bottom:36.900000px;}
.y8_c00107{bottom:45.900000px;}
.y20_c00107{bottom:53.610000px;}
.y1f_c00107{bottom:72.510000px;}
.y22_c00107{bottom:85.110000px;}
.y21_c00107{bottom:104.010000px;}
.y24_c00107{bottom:131.219700px;}
.y23_c00107{bottom:150.119700px;}
.y26_c00107{bottom:189.465300px;}
.y25_c00107{bottom:212.325000px;}
.y1d_c00107{bottom:244.470000px;}
.y1c_c00107{bottom:265.530000px;}
.y1b_c00107{bottom:286.590300px;}
.y1a_c00107{bottom:307.650000px;}
.y19_c00107{bottom:337.530000px;}
.y18_c00107{bottom:376.590000px;}
.y1e_c00107{bottom:421.380000px;}
.y17_c00107{bottom:693.284700px;}
.y16_c00107{bottom:714.345150px;}
.y15_c00107{bottom:735.225000px;}
.y14_c00107{bottom:765.285000px;}
.y13_c00107{bottom:782.925000px;}
.y12_c00107{bottom:828.645000px;}
.y10_c00107{bottom:874.365000px;}
.yc_c00107{bottom:920.130000px;}
.y6_c00107{bottom:966.030000px;}
.y5_c00107{bottom:1055.490300px;}
.y4_c00107{bottom:1076.550000px;}
.y3_c00107{bottom:1097.609700px;}
.y2_c00107{bottom:1118.670000px;}
.y1_c00107{bottom:1174.680000px;}
.h5_c00107{height:45.000000px;}
.h7_c00107{height:45.035700px;}
.h4_c00107{height:48.224531px;}
.h6_c00107{height:50.650313px;}
.h2_c00107{height:56.957344px;}
.h8_c00107{height:56.958544px;}
.ha_c00107{height:57.081164px;}
.h3_c00107{height:66.600000px;}
.hb_c00107{height:68.101172px;}
.h9_c00107{height:242.280000px;}
.h1_c00107{height:1263.000000px;}
.h0_c00107{height:1263.060000px;}
.w3_c00107{width:155.370000px;}
.w4_c00107{width:247.170000px;}
.w2_c00107{width:274.530000px;}
.w5_c00107{width:680.220000px;}
.w1_c00107{width:893.250000px;}
.w0_c00107{width:893.340000px;}
.x0_c00107{left:0.000000px;}
.xa_c00107{left:7.740150px;}
.x6_c00107{left:22.680000px;}
.x5_c00107{left:34.560000px;}
.x8_c00107{left:39.600000px;}
.x3_c00107{left:58.314000px;}
.xb_c00107{left:68.070000px;}
.x15_c00107{left:72.869700px;}
.x9_c00107{left:83.385000px;}
.xd_c00107{left:90.225000px;}
.x1_c00107{left:127.655850px;}
.xc_c00107{left:131.445000px;}
.xe_c00107{left:148.896150px;}
.xf_c00107{left:191.550000px;}
.x12_c00107{left:266.789460px;}
.x14_c00107{left:298.289520px;}
.x13_c00107{left:305.129760px;}
.x16_c00107{left:306.209700px;}
.x2_c00107{left:340.094850px;}
.x11_c00107{left:352.289460px;}
.x10_c00107{left:359.129700px;}
.x4_c00107{left:403.635000px;}
.x7_c00107{left:559.905000px;}
@media print{
.v0_c00107{vertical-align:0.000000pt;}
.ls0_c00107{letter-spacing:0.000000pt;}
.ws2_c00107{word-spacing:-19.571200pt;}
.ws1_c00107{word-spacing:-16.404224pt;}
.ws0_c00107{word-spacing:-16.368640pt;}
.ws3_c00107{word-spacing:0.000000pt;}
._8_c00107{margin-left:-3.531546pt;}
._1_c00107{margin-left:-1.001054pt;}
._4_c00107{width:1.253212pt;}
._3_c00107{width:2.236053pt;}
._9_c00107{width:3.947571pt;}
._7_c00107{width:14.127598pt;}
._6_c00107{width:15.191548pt;}
._5_c00107{width:17.505649pt;}
._2_c00107{width:83.224053pt;}
._a_c00107{width:751.791616pt;}
._0_c00107{width:2042.799483pt;}
.fs0_c00107{font-size:58.880000pt;}
.fs1_c00107{font-size:59.008000pt;}
.fs2_c00107{font-size:70.400000pt;}
.y0_c00107{bottom:0.000000pt;}
.ye_c00107{bottom:7.200000pt;}
.y9_c00107{bottom:8.800000pt;}
.yf_c00107{bottom:15.200000pt;}
.yb_c00107{bottom:16.800000pt;}
.yd_c00107{bottom:23.200000pt;}
.y11_c00107{bottom:23.240000pt;}
.y7_c00107{bottom:24.800000pt;}
.ya_c00107{bottom:32.800000pt;}
.y8_c00107{bottom:40.800000pt;}
.y20_c00107{bottom:47.653333pt;}
.y1f_c00107{bottom:64.453333pt;}
.y22_c00107{bottom:75.653333pt;}
.y21_c00107{bottom:92.453333pt;}
.y24_c00107{bottom:116.639733pt;}
.y23_c00107{bottom:133.439733pt;}
.y26_c00107{bottom:168.413600pt;}
.y25_c00107{bottom:188.733333pt;}
.y1d_c00107{bottom:217.306667pt;}
.y1c_c00107{bottom:236.026667pt;}
.y1b_c00107{bottom:254.746933pt;}
.y1a_c00107{bottom:273.466667pt;}
.y19_c00107{bottom:300.026667pt;}
.y18_c00107{bottom:334.746667pt;}
.y1e_c00107{bottom:374.560000pt;}
.y17_c00107{bottom:616.253067pt;}
.y16_c00107{bottom:634.973467pt;}
.y15_c00107{bottom:653.533333pt;}
.y14_c00107{bottom:680.253333pt;}
.y13_c00107{bottom:695.933333pt;}
.y12_c00107{bottom:736.573333pt;}
.y10_c00107{bottom:777.213333pt;}
.yc_c00107{bottom:817.893333pt;}
.y6_c00107{bottom:858.693333pt;}
.y5_c00107{bottom:938.213600pt;}
.y4_c00107{bottom:956.933333pt;}
.y3_c00107{bottom:975.653067pt;}
.y2_c00107{bottom:994.373333pt;}
.y1_c00107{bottom:1044.160000pt;}
.h5_c00107{height:40.000000pt;}
.h7_c00107{height:40.031733pt;}
.h4_c00107{height:42.866250pt;}
.h6_c00107{height:45.022500pt;}
.h2_c00107{height:50.628750pt;}
.h8_c00107{height:50.629817pt;}
.ha_c00107{height:50.738813pt;}
.h3_c00107{height:59.200000pt;}
.hb_c00107{height:60.534375pt;}
.h9_c00107{height:215.360000pt;}
.h1_c00107{height:1122.666667pt;}
.h0_c00107{height:1122.720000pt;}
.w3_c00107{width:138.106667pt;}
.w4_c00107{width:219.706667pt;}
.w2_c00107{width:244.026667pt;}
.w5_c00107{width:604.640000pt;}
.w1_c00107{width:794.000000pt;}
.w0_c00107{width:794.080000pt;}
.x0_c00107{left:0.000000pt;}
.xa_c00107{left:6.880133pt;}
.x6_c00107{left:20.160000pt;}
.x5_c00107{left:30.720000pt;}
.x8_c00107{left:35.200000pt;}
.x3_c00107{left:51.834667pt;}
.xb_c00107{left:60.506667pt;}
.x15_c00107{left:64.773067pt;}
.x9_c00107{left:74.120000pt;}
.xd_c00107{left:80.200000pt;}
.x1_c00107{left:113.471867pt;}
.xc_c00107{left:116.840000pt;}
.xe_c00107{left:132.352133pt;}
.xf_c00107{left:170.266667pt;}
.x12_c00107{left:237.146187pt;}
.x14_c00107{left:265.146240pt;}
.x13_c00107{left:271.226453pt;}
.x16_c00107{left:272.186400pt;}
.x2_c00107{left:302.306533pt;}
.x11_c00107{left:313.146187pt;}
.x10_c00107{left:319.226400pt;}
.x4_c00107{left:358.786667pt;}
.x7_c00107{left:497.693333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_1194bca7d1462096908e8f46.woff2')format("woff");}.ff1_c00108{font-family:ff1_c00108;line-height:1.070312;font-style:normal;font-weight:normal;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_5cc5b7d90a2d72e6c70349eb.woff2')format("woff");}.ff2_c00108{font-family:ff2_c00108;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00108;src:url('chunks/assets/font_240a662804a2de3ba3c62b86.woff2')format("woff");}.ff3_c00108{font-family:ff3_c00108;line-height:0.971191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00108{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00108{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00108{vertical-align:0.000000px;}
.ls0_c00108{letter-spacing:0.000000px;}
.sc__c00108{text-shadow:none;}
.sc0_c00108{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00108{-webkit-text-stroke:0px transparent;}
.sc0_c00108{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00108{word-spacing:-23.316480px;}
.ws3_c00108{word-spacing:-22.017600px;}
.ws2_c00108{word-spacing:-18.454752px;}
.ws1_c00108{word-spacing:-18.414720px;}
.ws4_c00108{word-spacing:0.000000px;}
._6_c00108{margin-left:-2.355637px;}
._1_c00108{margin-left:-1.126186px;}
._5_c00108{width:1.733880px;}
._7_c00108{width:3.776914px;}
._8_c00108{width:4.968351px;}
._4_c00108{width:17.189564px;}
._3_c00108{width:20.153497px;}
._2_c00108{width:80.517558px;}
._9_c00108{width:845.765568px;}
._0_c00108{width:2298.149418px;}
.fc1_c00108{color:rgb(255,0,0);}
.fc3_c00108{color:rgb(89,89,89);}
.fc2_c00108{color:rgb(64,64,64);}
.fc0_c00108{color:rgb(0,0,0);}
.fs0_c00108{font-size:66.240000px;}
.fs1_c00108{font-size:66.384000px;}
.fs2_c00108{font-size:79.200000px;}
.y0_c00108{bottom:0.000000px;}
.y21_c00108{bottom:5.759700px;}
.yd_c00108{bottom:8.100000px;}
.y8_c00108{bottom:10.080000px;}
.y11_c00108{bottom:16.020000px;}
.ye_c00108{bottom:17.100000px;}
.ya_c00108{bottom:19.080000px;}
.y20_c00108{bottom:24.659700px;}
.yc_c00108{bottom:26.100000px;}
.y6_c00108{bottom:28.080000px;}
.y9_c00108{bottom:37.080000px;}
.y7_c00108{bottom:46.080000px;}
.y1f_c00108{bottom:96.375000px;}
.y23_c00108{bottom:114.375000px;}
.y1e_c00108{bottom:115.275000px;}
.y22_c00108{bottom:133.275000px;}
.y25_c00108{bottom:189.465300px;}
.y24_c00108{bottom:212.325000px;}
.y1c_c00108{bottom:216.750000px;}
.y1b_c00108{bottom:255.810000px;}
.y1d_c00108{bottom:300.600000px;}
.y1a_c00108{bottom:574.275150px;}
.y19_c00108{bottom:595.155000px;}
.y18_c00108{bottom:616.215300px;}
.y17_c00108{bottom:637.275300px;}
.y16_c00108{bottom:658.185000px;}
.y15_c00108{bottom:688.245000px;}
.y14_c00108{bottom:714.885000px;}
.y13_c00108{bottom:760.605000px;}
.y12_c00108{bottom:806.325000px;}
.y10_c00108{bottom:852.045000px;}
.yf_c00108{bottom:895.470000px;}
.yb_c00108{bottom:941.190000px;}
.y5_c00108{bottom:986.910000px;}
.y4_c00108{bottom:1076.550000px;}
.y3_c00108{bottom:1097.609700px;}
.y2_c00108{bottom:1118.670000px;}
.y1_c00108{bottom:1174.680000px;}
.h7_c00108{height:42.696150px;}
.h5_c00108{height:45.000000px;}
.h4_c00108{height:48.224531px;}
.h6_c00108{height:50.650313px;}
.h2_c00108{height:56.957344px;}
.h9_c00108{height:57.081164px;}
.h3_c00108{height:66.780450px;}
.ha_c00108{height:68.101172px;}
.h8_c00108{height:242.280000px;}
.h1_c00108{height:1263.000000px;}
.h0_c00108{height:1263.060000px;}
.w3_c00108{width:155.370000px;}
.w4_c00108{width:247.170000px;}
.w2_c00108{width:274.530000px;}
.w5_c00108{width:680.220000px;}
.w1_c00108{width:893.250000px;}
.w0_c00108{width:893.340000px;}
.x0_c00108{left:0.000000px;}
.xa_c00108{left:7.740150px;}
.x6_c00108{left:22.680000px;}
.xf_c00108{left:32.940000px;}
.x5_c00108{left:34.560000px;}
.x8_c00108{left:39.600000px;}
.x3_c00108{left:58.314000px;}
.xe_c00108{left:61.230000px;}
.xb_c00108{left:68.070000px;}
.x18_c00108{left:72.794700px;}
.x9_c00108{left:83.385000px;}
.xc_c00108{left:90.225000px;}
.x1_c00108{left:127.655850px;}
.xd_c00108{left:131.445000px;}
.x10_c00108{left:148.896150px;}
.x11_c00108{left:191.550000px;}
.x2_c00108{left:234.029850px;}
.x14_c00108{left:235.649910px;}
.x15_c00108{left:240.149910px;}
.x17_c00108{left:272.339520px;}
.x16_c00108{left:279.179760px;}
.x19_c00108{left:296.249700px;}
.x13_c00108{left:375.869460px;}
.x12_c00108{left:382.709700px;}
.x4_c00108{left:403.635000px;}
.x7_c00108{left:559.905000px;}
@media print{
.v0_c00108{vertical-align:0.000000pt;}
.ls0_c00108{letter-spacing:0.000000pt;}
.ws0_c00108{word-spacing:-20.725760pt;}
.ws3_c00108{word-spacing:-19.571200pt;}
.ws2_c00108{word-spacing:-16.404224pt;}
.ws1_c00108{word-spacing:-16.368640pt;}
.ws4_c00108{word-spacing:0.000000pt;}
._6_c00108{margin-left:-2.093900pt;}
._1_c00108{margin-left:-1.001054pt;}
._5_c00108{width:1.541227pt;}
._7_c00108{width:3.357257pt;}
._8_c00108{width:4.416312pt;}
._4_c00108{width:15.279613pt;}
._3_c00108{width:17.914219pt;}
._2_c00108{width:71.571162pt;}
._9_c00108{width:751.791616pt;}
._0_c00108{width:2042.799483pt;}
.fs0_c00108{font-size:58.880000pt;}
.fs1_c00108{font-size:59.008000pt;}
.fs2_c00108{font-size:70.400000pt;}
.y0_c00108{bottom:0.000000pt;}
.y21_c00108{bottom:5.119733pt;}
.yd_c00108{bottom:7.200000pt;}
.y8_c00108{bottom:8.960000pt;}
.y11_c00108{bottom:14.240000pt;}
.ye_c00108{bottom:15.200000pt;}
.ya_c00108{bottom:16.960000pt;}
.y20_c00108{bottom:21.919733pt;}
.yc_c00108{bottom:23.200000pt;}
.y6_c00108{bottom:24.960000pt;}
.y9_c00108{bottom:32.960000pt;}
.y7_c00108{bottom:40.960000pt;}
.y1f_c00108{bottom:85.666667pt;}
.y23_c00108{bottom:101.666667pt;}
.y1e_c00108{bottom:102.466667pt;}
.y22_c00108{bottom:118.466667pt;}
.y25_c00108{bottom:168.413600pt;}
.y24_c00108{bottom:188.733333pt;}
.y1c_c00108{bottom:192.666667pt;}
.y1b_c00108{bottom:227.386667pt;}
.y1d_c00108{bottom:267.200000pt;}
.y1a_c00108{bottom:510.466800pt;}
.y19_c00108{bottom:529.026667pt;}
.y18_c00108{bottom:547.746933pt;}
.y17_c00108{bottom:566.466933pt;}
.y16_c00108{bottom:585.053333pt;}
.y15_c00108{bottom:611.773333pt;}
.y14_c00108{bottom:635.453333pt;}
.y13_c00108{bottom:676.093333pt;}
.y12_c00108{bottom:716.733333pt;}
.y10_c00108{bottom:757.373333pt;}
.yf_c00108{bottom:795.973333pt;}
.yb_c00108{bottom:836.613333pt;}
.y5_c00108{bottom:877.253333pt;}
.y4_c00108{bottom:956.933333pt;}
.y3_c00108{bottom:975.653067pt;}
.y2_c00108{bottom:994.373333pt;}
.y1_c00108{bottom:1044.160000pt;}
.h7_c00108{height:37.952133pt;}
.h5_c00108{height:40.000000pt;}
.h4_c00108{height:42.866250pt;}
.h6_c00108{height:45.022500pt;}
.h2_c00108{height:50.628750pt;}
.h9_c00108{height:50.738813pt;}
.h3_c00108{height:59.360400pt;}
.ha_c00108{height:60.534375pt;}
.h8_c00108{height:215.360000pt;}
.h1_c00108{height:1122.666667pt;}
.h0_c00108{height:1122.720000pt;}
.w3_c00108{width:138.106667pt;}
.w4_c00108{width:219.706667pt;}
.w2_c00108{width:244.026667pt;}
.w5_c00108{width:604.640000pt;}
.w1_c00108{width:794.000000pt;}
.w0_c00108{width:794.080000pt;}
.x0_c00108{left:0.000000pt;}
.xa_c00108{left:6.880133pt;}
.x6_c00108{left:20.160000pt;}
.xf_c00108{left:29.280000pt;}
.x5_c00108{left:30.720000pt;}
.x8_c00108{left:35.200000pt;}
.x3_c00108{left:51.834667pt;}
.xe_c00108{left:54.426667pt;}
.xb_c00108{left:60.506667pt;}
.x18_c00108{left:64.706400pt;}
.x9_c00108{left:74.120000pt;}
.xc_c00108{left:80.200000pt;}
.x1_c00108{left:113.471867pt;}
.xd_c00108{left:116.840000pt;}
.x10_c00108{left:132.352133pt;}
.x11_c00108{left:170.266667pt;}
.x2_c00108{left:208.026533pt;}
.x14_c00108{left:209.466587pt;}
.x15_c00108{left:213.466587pt;}
.x17_c00108{left:242.079573pt;}
.x16_c00108{left:248.159787pt;}
.x19_c00108{left:263.333067pt;}
.x13_c00108{left:334.106187pt;}
.x12_c00108{left:340.186400pt;}
.x4_c00108{left:358.786667pt;}
.x7_c00108{left:497.693333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_1b70ba9959f6201f9c0940e9.woff2')format("woff");}.ff1_c00109{font-family:ff1_c00109;line-height:1.070312;font-style:normal;font-weight:normal;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_5cc5b7d90a2d72e6c70349eb.woff2')format("woff");}.ff2_c00109{font-family:ff2_c00109;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00109;src:url('chunks/assets/font_437471de5fd56b8e363109cb.woff2')format("woff");}.ff3_c00109{font-family:ff3_c00109;line-height:0.971191;font-style: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);}
.m1_c00109{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_c00109{vertical-align:0.000000px;}
.ls0_c00109{letter-spacing:0.000000px;}
.sc__c00109{text-shadow:none;}
.sc0_c00109{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00109{-webkit-text-stroke:0px transparent;}
.sc0_c00109{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00109{word-spacing:0.000000px;}
._1_c00109{margin-left:-1.126186px;}
._d_c00109{width:2.913455px;}
._5_c00109{width:4.372310px;}
._9_c00109{width:5.961216px;}
._a_c00109{width:7.288488px;}
._c_c00109{width:9.615892px;}
._b_c00109{width:10.862931px;}
._4_c00109{width:17.189564px;}
._3_c00109{width:20.153497px;}
._8_c00109{width:23.307357px;}
._7_c00109{width:24.402893px;}
._6_c00109{width:26.561302px;}
._2_c00109{width:80.517558px;}
._e_c00109{width:845.710994px;}
._0_c00109{width:2298.149418px;}
.fc0_c00109{color:rgb(0,0,0);}
.fs0_c00109{font-size:66.240000px;}
.y0_c00109{bottom:0.000000px;}
.yd_c00109{bottom:8.100000px;}
.y17_c00109{bottom:8.100150px;}
.y8_c00109{bottom:10.080000px;}
.ye_c00109{bottom:17.100000px;}
.ya_c00109{bottom:19.080000px;}
.yc_c00109{bottom:26.100000px;}
.y16_c00109{bottom:26.130000px;}
.y6_c00109{bottom:28.080000px;}
.y9_c00109{bottom:37.080000px;}
.y7_c00109{bottom:46.080000px;}
.y27_c00109{bottom:153.209850px;}
.y26_c00109{bottom:174.270150px;}
.y25_c00109{bottom:195.150300px;}
.y24_c00109{bottom:216.209700px;}
.y23_c00109{bottom:237.270000px;}
.y22_c00109{bottom:267.149850px;}
.y21_c00109{bottom:288.210150px;}
.y20_c00109{bottom:309.270450px;}
.y1f_c00109{bottom:330.150300px;}
.y1e_c00109{bottom:351.210000px;}
.y1d_c00109{bottom:381.270000px;}
.y1c_c00109{bottom:411.195000px;}
.y1b_c00109{bottom:437.835000px;}
.y1a_c00109{bottom:483.555000px;}
.y19_c00109{bottom:529.455000px;}
.y18_c00109{bottom:575.175000px;}
.y15_c00109{bottom:620.895000px;}
.y14_c00109{bottom:666.645000px;}
.y13_c00109{bottom:712.365000px;}
.y12_c00109{bottom:758.085000px;}
.y11_c00109{bottom:803.985000px;}
.y10_c00109{bottom:849.705000px;}
.yf_c00109{bottom:895.470000px;}
.yb_c00109{bottom:941.190000px;}
.y5_c00109{bottom:986.910000px;}
.y4_c00109{bottom:1076.550000px;}
.y3_c00109{bottom:1097.609700px;}
.y2_c00109{bottom:1118.670000px;}
.y1_c00109{bottom:1174.680000px;}
.h5_c00109{height:45.000000px;}
.h8_c00109{height:45.035700px;}
.h7_c00109{height:45.036300px;}
.h4_c00109{height:48.224531px;}
.h6_c00109{height:50.650313px;}
.h2_c00109{height:56.957344px;}
.h9_c00109{height:56.958544px;}
.h3_c00109{height:66.780450px;}
.h1_c00109{height:1263.000000px;}
.h0_c00109{height:1263.060000px;}
.w3_c00109{width:155.370000px;}
.w4_c00109{width:247.170000px;}
.w2_c00109{width:274.530000px;}
.w1_c00109{width:893.250000px;}
.w0_c00109{width:893.340000px;}
.x0_c00109{left:0.000000px;}
.xa_c00109{left:7.740150px;}
.x6_c00109{left:22.680000px;}
.x5_c00109{left:34.560000px;}
.x8_c00109{left:39.600000px;}
.x3_c00109{left:58.314000px;}
.xb_c00109{left:61.230000px;}
.xd_c00109{left:68.070000px;}
.x9_c00109{left:83.385000px;}
.xc_c00109{left:87.525000px;}
.xe_c00109{left:90.225000px;}
.x1_c00109{left:127.655850px;}
.xf_c00109{left:131.445000px;}
.x10_c00109{left:148.896150px;}
.x2_c00109{left:234.029850px;}
.x4_c00109{left:403.635000px;}
.x7_c00109{left:559.905000px;}
@media print{
.v0_c00109{vertical-align:0.000000pt;}
.ls0_c00109{letter-spacing:0.000000pt;}
.ws0_c00109{word-spacing:0.000000pt;}
._1_c00109{margin-left:-1.001054pt;}
._d_c00109{width:2.589738pt;}
._5_c00109{width:3.886498pt;}
._9_c00109{width:5.298858pt;}
._a_c00109{width:6.478656pt;}
._c_c00109{width:8.547459pt;}
._b_c00109{width:9.655938pt;}
._4_c00109{width:15.279613pt;}
._3_c00109{width:17.914219pt;}
._8_c00109{width:20.717650pt;}
._7_c00109{width:21.691460pt;}
._6_c00109{width:23.610046pt;}
._2_c00109{width:71.571162pt;}
._e_c00109{width:751.743105pt;}
._0_c00109{width:2042.799483pt;}
.fs0_c00109{font-size:58.880000pt;}
.y0_c00109{bottom:0.000000pt;}
.yd_c00109{bottom:7.200000pt;}
.y17_c00109{bottom:7.200133pt;}
.y8_c00109{bottom:8.960000pt;}
.ye_c00109{bottom:15.200000pt;}
.ya_c00109{bottom:16.960000pt;}
.yc_c00109{bottom:23.200000pt;}
.y16_c00109{bottom:23.226667pt;}
.y6_c00109{bottom:24.960000pt;}
.y9_c00109{bottom:32.960000pt;}
.y7_c00109{bottom:40.960000pt;}
.y27_c00109{bottom:136.186533pt;}
.y26_c00109{bottom:154.906800pt;}
.y25_c00109{bottom:173.466933pt;}
.y24_c00109{bottom:192.186400pt;}
.y23_c00109{bottom:210.906667pt;}
.y22_c00109{bottom:237.466533pt;}
.y21_c00109{bottom:256.186800pt;}
.y20_c00109{bottom:274.907067pt;}
.y1f_c00109{bottom:293.466933pt;}
.y1e_c00109{bottom:312.186667pt;}
.y1d_c00109{bottom:338.906667pt;}
.y1c_c00109{bottom:365.506667pt;}
.y1b_c00109{bottom:389.186667pt;}
.y1a_c00109{bottom:429.826667pt;}
.y19_c00109{bottom:470.626667pt;}
.y18_c00109{bottom:511.266667pt;}
.y15_c00109{bottom:551.906667pt;}
.y14_c00109{bottom:592.573333pt;}
.y13_c00109{bottom:633.213333pt;}
.y12_c00109{bottom:673.853333pt;}
.y11_c00109{bottom:714.653333pt;}
.y10_c00109{bottom:755.293333pt;}
.yf_c00109{bottom:795.973333pt;}
.yb_c00109{bottom:836.613333pt;}
.y5_c00109{bottom:877.253333pt;}
.y4_c00109{bottom:956.933333pt;}
.y3_c00109{bottom:975.653067pt;}
.y2_c00109{bottom:994.373333pt;}
.y1_c00109{bottom:1044.160000pt;}
.h5_c00109{height:40.000000pt;}
.h8_c00109{height:40.031733pt;}
.h7_c00109{height:40.032267pt;}
.h4_c00109{height:42.866250pt;}
.h6_c00109{height:45.022500pt;}
.h2_c00109{height:50.628750pt;}
.h9_c00109{height:50.629817pt;}
.h3_c00109{height:59.360400pt;}
.h1_c00109{height:1122.666667pt;}
.h0_c00109{height:1122.720000pt;}
.w3_c00109{width:138.106667pt;}
.w4_c00109{width:219.706667pt;}
.w2_c00109{width:244.026667pt;}
.w1_c00109{width:794.000000pt;}
.w0_c00109{width:794.080000pt;}
.x0_c00109{left:0.000000pt;}
.xa_c00109{left:6.880133pt;}
.x6_c00109{left:20.160000pt;}
.x5_c00109{left:30.720000pt;}
.x8_c00109{left:35.200000pt;}
.x3_c00109{left:51.834667pt;}
.xb_c00109{left:54.426667pt;}
.xd_c00109{left:60.506667pt;}
.x9_c00109{left:74.120000pt;}
.xc_c00109{left:77.800000pt;}
.xe_c00109{left:80.200000pt;}
.x1_c00109{left:113.471867pt;}
.xf_c00109{left:116.840000pt;}
.x10_c00109{left:132.352133pt;}
.x2_c00109{left:208.026533pt;}
.x4_c00109{left:358.786667pt;}
.x7_c00109{left:497.693333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_58c85303ee6f7d1c6f822f11.woff2')format("woff");}.ff1_c00110{font-family:ff1_c00110;line-height:1.070312;font-style:normal;font-weight:normal;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_f1a6241980de30057244f828.woff2')format("woff");}.ff2_c00110{font-family:ff2_c00110;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00110;src:url('chunks/assets/font_ab707ae874eb02d278a1e8dd.woff2')format("woff");}.ff3_c00110{font-family:ff3_c00110;line-height:0.971191;font-style:normal;font-weight:normal;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_60863be2a35dd9285673b7c7.woff2')format("woff");}.ff4_c00110{font-family:ff4_c00110;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00110;src:url('chunks/assets/font_2c661173fbe578d4a1a8299a.woff2')format("woff");}.ff5_c00110{font-family:ff5_c00110;line-height:0.938965;font-style: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);}
.m1_c00110{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_c00110{vertical-align:0.000000px;}
.ls1_c00110{letter-spacing:0.000000px;}
.ls0_c00110{letter-spacing:0.351840px;}
.sc__c00110{text-shadow:none;}
.sc0_c00110{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00110{-webkit-text-stroke:0px transparent;}
.sc0_c00110{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00110{word-spacing:-36.829440px;}
.ws0_c00110{word-spacing:-23.316480px;}
.ws4_c00110{word-spacing:-22.017600px;}
.ws3_c00110{word-spacing:-18.454752px;}
.ws2_c00110{word-spacing:-18.414720px;}
.ws5_c00110{word-spacing:0.000000px;}
._1_c00110{margin-left:-1.093374px;}
._4_c00110{width:1.114689px;}
._2_c00110{width:3.150924px;}
._5_c00110{width:4.630153px;}
._9_c00110{width:6.590029px;}
._7_c00110{width:7.616740px;}
._8_c00110{width:8.621844px;}
._a_c00110{width:9.657316px;}
._6_c00110{width:11.129181px;}
._c_c00110{width:21.913526px;}
._b_c00110{width:23.170440px;}
._3_c00110{width:80.484746px;}
._0_c00110{width:2298.149418px;}
.fc1_c00110{color:rgb(255,0,0);}
.fc3_c00110{color:rgb(89,89,89);}
.fc2_c00110{color:rgb(64,64,64);}
.fc0_c00110{color:rgb(0,0,0);}
.fs0_c00110{font-size:66.240000px;}
.fs1_c00110{font-size:66.384000px;}
.fs2_c00110{font-size:79.200000px;}
.y0_c00110{bottom:0.000000px;}
.y13_c00110{bottom:8.100000px;}
.y25_c00110{bottom:8.789850px;}
.ya_c00110{bottom:9.900000px;}
.y10_c00110{bottom:15.840000px;}
.ye_c00110{bottom:16.020000px;}
.y14_c00110{bottom:17.100000px;}
.yc_c00110{bottom:18.930000px;}
.y12_c00110{bottom:26.100000px;}
.y24_c00110{bottom:27.689850px;}
.y8_c00110{bottom:27.930000px;}
.yb_c00110{bottom:36.930000px;}
.y9_c00110{bottom:45.930000px;}
.y27_c00110{bottom:99.794700px;}
.y23_c00110{bottom:100.185000px;}
.y26_c00110{bottom:118.694700px;}
.y22_c00110{bottom:119.085000px;}
.y20_c00110{bottom:129.779850px;}
.y1f_c00110{bottom:177.870000px;}
.y29_c00110{bottom:189.644700px;}
.y28_c00110{bottom:212.505000px;}
.y1e_c00110{bottom:225.930300px;}
.y1d_c00110{bottom:246.810150px;}
.y1c_c00110{bottom:267.870450px;}
.y1b_c00110{bottom:288.930150px;}
.y1a_c00110{bottom:309.810000px;}
.y19_c00110{bottom:330.870300px;}
.y18_c00110{bottom:351.930000px;}
.y17_c00110{bottom:381.810000px;}
.y16_c00110{bottom:408.495000px;}
.y15_c00110{bottom:454.215000px;}
.y11_c00110{bottom:497.595000px;}
.yf_c00110{bottom:543.315000px;}
.yd_c00110{bottom:586.515000px;}
.y7_c00110{bottom:629.895000px;}
.y6_c00110{bottom:719.565450px;}
.y5_c00110{bottom:740.625150px;}
.y4_c00110{bottom:761.505000px;}
.y3_c00110{bottom:809.565000px;}
.y2_c00110{bottom:848.445000px;}
.y21_c00110{bottom:893.160000px;}
.y1_c00110{bottom:1174.680000px;}
.h6_c00110{height:42.479850px;}
.h5_c00110{height:42.659700px;}
.h8_c00110{height:45.000000px;}
.h4_c00110{height:48.224531px;}
.h7_c00110{height:50.650313px;}
.h2_c00110{height:56.957344px;}
.ha_c00110{height:57.081164px;}
.h3_c00110{height:66.815700px;}
.hb_c00110{height:68.101172px;}
.h9_c00110{height:242.460000px;}
.h1_c00110{height:1263.000000px;}
.h0_c00110{height:1263.060000px;}
.w3_c00110{width:155.370000px;}
.w4_c00110{width:247.170000px;}
.w2_c00110{width:274.530000px;}
.w5_c00110{width:680.220000px;}
.w1_c00110{width:893.250000px;}
.w0_c00110{width:893.340000px;}
.x0_c00110{left:0.000000px;}
.xc_c00110{left:7.740150px;}
.x7_c00110{left:31.860000px;}
.x6_c00110{left:34.560000px;}
.xa_c00110{left:39.600000px;}
.x8_c00110{left:53.850000px;}
.x4_c00110{left:58.314000px;}
.xb_c00110{left:83.385000px;}
.xd_c00110{left:94.896000px;}
.x14_c00110{left:118.004700px;}
.x1_c00110{left:127.655850px;}
.x2_c00110{left:148.896150px;}
.x3_c00110{left:234.021750px;}
.x10_c00110{left:252.254700px;}
.x11_c00110{left:260.354700px;}
.x15_c00110{left:269.429700px;}
.x12_c00110{left:286.484550px;}
.x13_c00110{left:294.584550px;}
.xe_c00110{left:368.204700px;}
.xf_c00110{left:374.504700px;}
.x5_c00110{left:403.635000px;}
.x9_c00110{left:559.905000px;}
@media print{
.v0_c00110{vertical-align:0.000000pt;}
.ls1_c00110{letter-spacing:0.000000pt;}
.ls0_c00110{letter-spacing:0.312747pt;}
.ws1_c00110{word-spacing:-32.737280pt;}
.ws0_c00110{word-spacing:-20.725760pt;}
.ws4_c00110{word-spacing:-19.571200pt;}
.ws3_c00110{word-spacing:-16.404224pt;}
.ws2_c00110{word-spacing:-16.368640pt;}
.ws5_c00110{word-spacing:0.000000pt;}
._1_c00110{margin-left:-0.971888pt;}
._4_c00110{width:0.990834pt;}
._2_c00110{width:2.800822pt;}
._5_c00110{width:4.115692pt;}
._9_c00110{width:5.857803pt;}
._7_c00110{width:6.770435pt;}
._8_c00110{width:7.663861pt;}
._a_c00110{width:8.584281pt;}
._6_c00110{width:9.892605pt;}
._c_c00110{width:19.478690pt;}
._b_c00110{width:20.595947pt;}
._3_c00110{width:71.541996pt;}
._0_c00110{width:2042.799483pt;}
.fs0_c00110{font-size:58.880000pt;}
.fs1_c00110{font-size:59.008000pt;}
.fs2_c00110{font-size:70.400000pt;}
.y0_c00110{bottom:0.000000pt;}
.y13_c00110{bottom:7.200000pt;}
.y25_c00110{bottom:7.813200pt;}
.ya_c00110{bottom:8.800000pt;}
.y10_c00110{bottom:14.080000pt;}
.ye_c00110{bottom:14.240000pt;}
.y14_c00110{bottom:15.200000pt;}
.yc_c00110{bottom:16.826667pt;}
.y12_c00110{bottom:23.200000pt;}
.y24_c00110{bottom:24.613200pt;}
.y8_c00110{bottom:24.826667pt;}
.yb_c00110{bottom:32.826667pt;}
.y9_c00110{bottom:40.826667pt;}
.y27_c00110{bottom:88.706400pt;}
.y23_c00110{bottom:89.053333pt;}
.y26_c00110{bottom:105.506400pt;}
.y22_c00110{bottom:105.853333pt;}
.y20_c00110{bottom:115.359867pt;}
.y1f_c00110{bottom:158.106667pt;}
.y29_c00110{bottom:168.573067pt;}
.y28_c00110{bottom:188.893333pt;}
.y1e_c00110{bottom:200.826933pt;}
.y1d_c00110{bottom:219.386800pt;}
.y1c_c00110{bottom:238.107067pt;}
.y1b_c00110{bottom:256.826800pt;}
.y1a_c00110{bottom:275.386667pt;}
.y19_c00110{bottom:294.106933pt;}
.y18_c00110{bottom:312.826667pt;}
.y17_c00110{bottom:339.386667pt;}
.y16_c00110{bottom:363.106667pt;}
.y15_c00110{bottom:403.746667pt;}
.y11_c00110{bottom:442.306667pt;}
.yf_c00110{bottom:482.946667pt;}
.yd_c00110{bottom:521.346667pt;}
.y7_c00110{bottom:559.906667pt;}
.y6_c00110{bottom:639.613733pt;}
.y5_c00110{bottom:658.333467pt;}
.y4_c00110{bottom:676.893333pt;}
.y3_c00110{bottom:719.613333pt;}
.y2_c00110{bottom:754.173333pt;}
.y21_c00110{bottom:793.920000pt;}
.y1_c00110{bottom:1044.160000pt;}
.h6_c00110{height:37.759867pt;}
.h5_c00110{height:37.919733pt;}
.h8_c00110{height:40.000000pt;}
.h4_c00110{height:42.866250pt;}
.h7_c00110{height:45.022500pt;}
.h2_c00110{height:50.628750pt;}
.ha_c00110{height:50.738813pt;}
.h3_c00110{height:59.391733pt;}
.hb_c00110{height:60.534375pt;}
.h9_c00110{height:215.520000pt;}
.h1_c00110{height:1122.666667pt;}
.h0_c00110{height:1122.720000pt;}
.w3_c00110{width:138.106667pt;}
.w4_c00110{width:219.706667pt;}
.w2_c00110{width:244.026667pt;}
.w5_c00110{width:604.640000pt;}
.w1_c00110{width:794.000000pt;}
.w0_c00110{width:794.080000pt;}
.x0_c00110{left:0.000000pt;}
.xc_c00110{left:6.880133pt;}
.x7_c00110{left:28.320000pt;}
.x6_c00110{left:30.720000pt;}
.xa_c00110{left:35.200000pt;}
.x8_c00110{left:47.866667pt;}
.x4_c00110{left:51.834667pt;}
.xb_c00110{left:74.120000pt;}
.xd_c00110{left:84.352000pt;}
.x14_c00110{left:104.893067pt;}
.x1_c00110{left:113.471867pt;}
.x2_c00110{left:132.352133pt;}
.x3_c00110{left:208.019333pt;}
.x10_c00110{left:224.226400pt;}
.x11_c00110{left:231.426400pt;}
.x15_c00110{left:239.493067pt;}
.x12_c00110{left:254.652933pt;}
.x13_c00110{left:261.852933pt;}
.xe_c00110{left:327.293067pt;}
.xf_c00110{left:332.893067pt;}
.x5_c00110{left:358.786667pt;}
.x9_c00110{left:497.693333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_69635d4af741151794580f65.woff2')format("woff");}.ff1_c00111{font-family:ff1_c00111;line-height:1.070312;font-style:normal;font-weight:normal;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_f1a6241980de30057244f828.woff2')format("woff");}.ff2_c00111{font-family:ff2_c00111;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00111;src:url('chunks/assets/font_5938c4b9efda6e0f7abefe86.woff2')format("woff");}.ff3_c00111{font-family:ff3_c00111;line-height:0.971191;font-style:normal;font-weight:normal;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_60863be2a35dd9285673b7c7.woff2')format("woff");}.ff4_c00111{font-family:ff4_c00111;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls2_c00111{letter-spacing:0.000000px;}
.ls1_c00111{letter-spacing:0.034570px;}
.ls0_c00111{letter-spacing:0.351840px;}
.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:-22.017600px;}
.ws2_c00111{word-spacing:-18.454752px;}
.ws1_c00111{word-spacing:-18.449290px;}
.ws0_c00111{word-spacing:-18.414720px;}
.ws4_c00111{word-spacing:0.000000px;}
._1_c00111{margin-left:-1.093374px;}
._4_c00111{width:1.114689px;}
._2_c00111{width:3.150924px;}
._5_c00111{width:4.630153px;}
._3_c00111{width:80.484746px;}
._0_c00111{width:2298.149418px;}
.fc2_c00111{color:rgb(89,89,89);}
.fc1_c00111{color:rgb(64,64,64);}
.fc0_c00111{color:rgb(0,0,0);}
.fs0_c00111{font-size:66.240000px;}
.fs1_c00111{font-size:66.384000px;}
.fs2_c00111{font-size:79.200000px;}
.y0_c00111{bottom:0.000000px;}
.y1a_c00111{bottom:8.100000px;}
.y16_c00111{bottom:8.145000px;}
.ya_c00111{bottom:9.900000px;}
.y10_c00111{bottom:15.840000px;}
.ye_c00111{bottom:16.020000px;}
.y1b_c00111{bottom:17.100000px;}
.y23_c00111{bottom:17.135700px;}
.y17_c00111{bottom:17.145000px;}
.yc_c00111{bottom:18.900000px;}
.y1f_c00111{bottom:23.580000px;}
.y19_c00111{bottom:26.100000px;}
.y22_c00111{bottom:26.135700px;}
.y15_c00111{bottom:26.145000px;}
.y8_c00111{bottom:27.900000px;}
.yb_c00111{bottom:36.900000px;}
.y9_c00111{bottom:45.900000px;}
.y2b_c00111{bottom:57.135000px;}
.y2a_c00111{bottom:76.064850px;}
.y29_c00111{bottom:85.289850px;}
.y24_c00111{bottom:94.500000px;}
.y28_c00111{bottom:104.189850px;}
.y21_c00111{bottom:121.140300px;}
.y27_c00111{bottom:146.010000px;}
.y26_c00111{bottom:164.910000px;}
.y20_c00111{bottom:166.890000px;}
.y2d_c00111{bottom:189.644700px;}
.y1e_c00111{bottom:210.090000px;}
.y2c_c00111{bottom:212.505000px;}
.y1d_c00111{bottom:253.470000px;}
.y1c_c00111{bottom:296.670000px;}
.y18_c00111{bottom:339.870000px;}
.y14_c00111{bottom:385.770000px;}
.y13_c00111{bottom:431.535000px;}
.y12_c00111{bottom:474.735000px;}
.y11_c00111{bottom:518.115000px;}
.yf_c00111{bottom:561.315000px;}
.yd_c00111{bottom:604.515000px;}
.y7_c00111{bottom:647.925000px;}
.y6_c00111{bottom:737.565450px;}
.y5_c00111{bottom:758.625150px;}
.y4_c00111{bottom:779.505000px;}
.y3_c00111{bottom:827.565000px;}
.y2_c00111{bottom:866.445000px;}
.y25_c00111{bottom:893.160000px;}
.y1_c00111{bottom:1174.680000px;}
.h6_c00111{height:42.479850px;}
.h8_c00111{height:42.480450px;}
.h5_c00111{height:42.695550px;}
.ha_c00111{height:45.000000px;}
.h9_c00111{height:45.035700px;}
.h4_c00111{height:48.224531px;}
.h7_c00111{height:50.650313px;}
.h2_c00111{height:56.957344px;}
.hc_c00111{height:57.081164px;}
.h3_c00111{height:66.779850px;}
.hd_c00111{height:68.101172px;}
.hb_c00111{height:242.460000px;}
.h1_c00111{height:1263.000000px;}
.h0_c00111{height:1263.060000px;}
.w3_c00111{width:155.370000px;}
.w4_c00111{width:247.170000px;}
.w2_c00111{width:274.530000px;}
.w5_c00111{width:680.220000px;}
.w1_c00111{width:893.250000px;}
.w0_c00111{width:893.340000px;}
.x0_c00111{left:0.000000px;}
.xc_c00111{left:7.740150px;}
.x7_c00111{left:31.860000px;}
.x6_c00111{left:34.560000px;}
.xa_c00111{left:39.600000px;}
.x8_c00111{left:53.850000px;}
.x4_c00111{left:58.314000px;}
.xb_c00111{left:83.385000px;}
.xd_c00111{left:94.896000px;}
.x14_c00111{left:118.079700px;}
.x1_c00111{left:127.655850px;}
.x2_c00111{left:148.896150px;}
.x3_c00111{left:234.021750px;}
.x15_c00111{left:273.449700px;}
.x12_c00111{left:278.174700px;}
.x13_c00111{left:286.304580px;}
.x10_c00111{left:352.439400px;}
.x11_c00111{left:360.539400px;}
.x5_c00111{left:403.635000px;}
.xe_c00111{left:411.149700px;}
.xf_c00111{left:426.989400px;}
.x9_c00111{left:559.905000px;}
@media print{
.v0_c00111{vertical-align:0.000000pt;}
.ls2_c00111{letter-spacing:0.000000pt;}
.ls1_c00111{letter-spacing:0.030729pt;}
.ls0_c00111{letter-spacing:0.312747pt;}
.ws3_c00111{word-spacing:-19.571200pt;}
.ws2_c00111{word-spacing:-16.404224pt;}
.ws1_c00111{word-spacing:-16.399369pt;}
.ws0_c00111{word-spacing:-16.368640pt;}
.ws4_c00111{word-spacing:0.000000pt;}
._1_c00111{margin-left:-0.971888pt;}
._4_c00111{width:0.990834pt;}
._2_c00111{width:2.800822pt;}
._5_c00111{width:4.115692pt;}
._3_c00111{width:71.541996pt;}
._0_c00111{width:2042.799483pt;}
.fs0_c00111{font-size:58.880000pt;}
.fs1_c00111{font-size:59.008000pt;}
.fs2_c00111{font-size:70.400000pt;}
.y0_c00111{bottom:0.000000pt;}
.y1a_c00111{bottom:7.200000pt;}
.y16_c00111{bottom:7.240000pt;}
.ya_c00111{bottom:8.800000pt;}
.y10_c00111{bottom:14.080000pt;}
.ye_c00111{bottom:14.240000pt;}
.y1b_c00111{bottom:15.200000pt;}
.y23_c00111{bottom:15.231733pt;}
.y17_c00111{bottom:15.240000pt;}
.yc_c00111{bottom:16.800000pt;}
.y1f_c00111{bottom:20.960000pt;}
.y19_c00111{bottom:23.200000pt;}
.y22_c00111{bottom:23.231733pt;}
.y15_c00111{bottom:23.240000pt;}
.y8_c00111{bottom:24.800000pt;}
.yb_c00111{bottom:32.800000pt;}
.y9_c00111{bottom:40.800000pt;}
.y2b_c00111{bottom:50.786667pt;}
.y2a_c00111{bottom:67.613200pt;}
.y29_c00111{bottom:75.813200pt;}
.y24_c00111{bottom:84.000000pt;}
.y28_c00111{bottom:92.613200pt;}
.y21_c00111{bottom:107.680267pt;}
.y27_c00111{bottom:129.786667pt;}
.y26_c00111{bottom:146.586667pt;}
.y20_c00111{bottom:148.346667pt;}
.y2d_c00111{bottom:168.573067pt;}
.y1e_c00111{bottom:186.746667pt;}
.y2c_c00111{bottom:188.893333pt;}
.y1d_c00111{bottom:225.306667pt;}
.y1c_c00111{bottom:263.706667pt;}
.y18_c00111{bottom:302.106667pt;}
.y14_c00111{bottom:342.906667pt;}
.y13_c00111{bottom:383.586667pt;}
.y12_c00111{bottom:421.986667pt;}
.y11_c00111{bottom:460.546667pt;}
.yf_c00111{bottom:498.946667pt;}
.yd_c00111{bottom:537.346667pt;}
.y7_c00111{bottom:575.933333pt;}
.y6_c00111{bottom:655.613733pt;}
.y5_c00111{bottom:674.333467pt;}
.y4_c00111{bottom:692.893333pt;}
.y3_c00111{bottom:735.613333pt;}
.y2_c00111{bottom:770.173333pt;}
.y25_c00111{bottom:793.920000pt;}
.y1_c00111{bottom:1044.160000pt;}
.h6_c00111{height:37.759867pt;}
.h8_c00111{height:37.760400pt;}
.h5_c00111{height:37.951600pt;}
.ha_c00111{height:40.000000pt;}
.h9_c00111{height:40.031733pt;}
.h4_c00111{height:42.866250pt;}
.h7_c00111{height:45.022500pt;}
.h2_c00111{height:50.628750pt;}
.hc_c00111{height:50.738813pt;}
.h3_c00111{height:59.359867pt;}
.hd_c00111{height:60.534375pt;}
.hb_c00111{height:215.520000pt;}
.h1_c00111{height:1122.666667pt;}
.h0_c00111{height:1122.720000pt;}
.w3_c00111{width:138.106667pt;}
.w4_c00111{width:219.706667pt;}
.w2_c00111{width:244.026667pt;}
.w5_c00111{width:604.640000pt;}
.w1_c00111{width:794.000000pt;}
.w0_c00111{width:794.080000pt;}
.x0_c00111{left:0.000000pt;}
.xc_c00111{left:6.880133pt;}
.x7_c00111{left:28.320000pt;}
.x6_c00111{left:30.720000pt;}
.xa_c00111{left:35.200000pt;}
.x8_c00111{left:47.866667pt;}
.x4_c00111{left:51.834667pt;}
.xb_c00111{left:74.120000pt;}
.xd_c00111{left:84.352000pt;}
.x14_c00111{left:104.959733pt;}
.x1_c00111{left:113.471867pt;}
.x2_c00111{left:132.352133pt;}
.x3_c00111{left:208.019333pt;}
.x15_c00111{left:243.066400pt;}
.x12_c00111{left:247.266400pt;}
.x13_c00111{left:254.492960pt;}
.x10_c00111{left:313.279467pt;}
.x11_c00111{left:320.479467pt;}
.x5_c00111{left:358.786667pt;}
.xe_c00111{left:365.466400pt;}
.xf_c00111{left:379.546133pt;}
.x9_c00111{left:497.693333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3850190f21ea89ae45530568.woff2')format("woff");}.ff1_c00112{font-family:ff1_c00112;line-height:1.070312;font-style:normal;font-weight:normal;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_f1a6241980de30057244f828.woff2')format("woff");}.ff2_c00112{font-family:ff2_c00112;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00112;src:url('chunks/assets/font_b3378721e94c976b1b5f36c3.woff2')format("woff");}.ff3_c00112{font-family:ff3_c00112;line-height:0.971191;font-style:normal;font-weight:normal;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_60863be2a35dd9285673b7c7.woff2')format("woff");}.ff4_c00112{font-family:ff4_c00112;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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);}
.m1_c00112{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_c00112{vertical-align:0.000000px;}
.ls1_c00112{letter-spacing:0.000000px;}
.ls0_c00112{letter-spacing:0.351840px;}
.sc__c00112{text-shadow:none;}
.sc0_c00112{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00112{-webkit-text-stroke:0px transparent;}
.sc0_c00112{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00112{word-spacing:0.000000px;}
._1_c00112{margin-left:-1.126186px;}
._9_c00112{width:2.049181px;}
._8_c00112{width:11.923185px;}
._a_c00112{width:13.100286px;}
._5_c00112{width:15.499924px;}
._7_c00112{width:17.201833px;}
._6_c00112{width:24.640859px;}
._4_c00112{width:29.939674px;}
._3_c00112{width:41.398347px;}
._2_c00112{width:93.627060px;}
._0_c00112{width:2298.149418px;}
.fc0_c00112{color:rgb(0,0,0);}
.fs0_c00112{font-size:66.240000px;}
.y0_c00112{bottom:0.000000px;}
.ye_c00112{bottom:8.100000px;}
.y9_c00112{bottom:9.900000px;}
.y13_c00112{bottom:15.840000px;}
.y11_c00112{bottom:15.885000px;}
.yf_c00112{bottom:17.100000px;}
.yb_c00112{bottom:18.900000px;}
.yd_c00112{bottom:26.100000px;}
.y7_c00112{bottom:27.900000px;}
.ya_c00112{bottom:36.900000px;}
.y8_c00112{bottom:45.900000px;}
.y23_c00112{bottom:227.910150px;}
.y22_c00112{bottom:248.970450px;}
.y21_c00112{bottom:270.030150px;}
.y20_c00112{bottom:290.910000px;}
.y1f_c00112{bottom:320.970000px;}
.y1e_c00112{bottom:347.610000px;}
.y1d_c00112{bottom:393.375000px;}
.y1c_c00112{bottom:439.095000px;}
.y1b_c00112{bottom:482.475000px;}
.y1a_c00112{bottom:525.675000px;}
.y19_c00112{bottom:569.055000px;}
.y18_c00112{bottom:612.255000px;}
.y17_c00112{bottom:655.485000px;}
.y16_c00112{bottom:701.385000px;}
.y15_c00112{bottom:747.105000px;}
.y14_c00112{bottom:790.305000px;}
.y12_c00112{bottom:833.685000px;}
.y10_c00112{bottom:876.885000px;}
.yc_c00112{bottom:920.130000px;}
.y6_c00112{bottom:966.030000px;}
.y5_c00112{bottom:1055.490300px;}
.y4_c00112{bottom:1076.550000px;}
.y3_c00112{bottom:1097.609700px;}
.y2_c00112{bottom:1118.670000px;}
.y1_c00112{bottom:1174.680000px;}
.h9_c00112{height:42.479850px;}
.h8_c00112{height:42.480450px;}
.h7_c00112{height:42.515700px;}
.ha_c00112{height:42.516150px;}
.hb_c00112{height:42.659700px;}
.h5_c00112{height:45.000000px;}
.hc_c00112{height:45.036300px;}
.h4_c00112{height:48.224531px;}
.h6_c00112{height:50.650313px;}
.h2_c00112{height:56.957344px;}
.h3_c00112{height:66.600000px;}
.h1_c00112{height:1263.000000px;}
.h0_c00112{height:1263.060000px;}
.w3_c00112{width:155.370000px;}
.w4_c00112{width:247.170000px;}
.w2_c00112{width:274.530000px;}
.w1_c00112{width:893.250000px;}
.w0_c00112{width:893.340000px;}
.x0_c00112{left:0.000000px;}
.xb_c00112{left:7.740150px;}
.x6_c00112{left:31.860000px;}
.x5_c00112{left:34.560000px;}
.x9_c00112{left:39.600000px;}
.xd_c00112{left:49.710000px;}
.x7_c00112{left:53.850000px;}
.x3_c00112{left:58.314000px;}
.xa_c00112{left:83.385000px;}
.xc_c00112{left:94.896000px;}
.x1_c00112{left:127.655850px;}
.xe_c00112{left:148.896150px;}
.x2_c00112{left:340.094850px;}
.x4_c00112{left:403.635000px;}
.x8_c00112{left:559.905000px;}
@media print{
.v0_c00112{vertical-align:0.000000pt;}
.ls1_c00112{letter-spacing:0.000000pt;}
.ls0_c00112{letter-spacing:0.312747pt;}
.ws0_c00112{word-spacing:0.000000pt;}
._1_c00112{margin-left:-1.001054pt;}
._9_c00112{width:1.821495pt;}
._8_c00112{width:10.598386pt;}
._a_c00112{width:11.644698pt;}
._5_c00112{width:13.777710pt;}
._7_c00112{width:15.290518pt;}
._6_c00112{width:21.902986pt;}
._4_c00112{width:26.613043pt;}
._3_c00112{width:36.798531pt;}
._2_c00112{width:83.224053pt;}
._0_c00112{width:2042.799483pt;}
.fs0_c00112{font-size:58.880000pt;}
.y0_c00112{bottom:0.000000pt;}
.ye_c00112{bottom:7.200000pt;}
.y9_c00112{bottom:8.800000pt;}
.y13_c00112{bottom:14.080000pt;}
.y11_c00112{bottom:14.120000pt;}
.yf_c00112{bottom:15.200000pt;}
.yb_c00112{bottom:16.800000pt;}
.yd_c00112{bottom:23.200000pt;}
.y7_c00112{bottom:24.800000pt;}
.ya_c00112{bottom:32.800000pt;}
.y8_c00112{bottom:40.800000pt;}
.y23_c00112{bottom:202.586800pt;}
.y22_c00112{bottom:221.307067pt;}
.y21_c00112{bottom:240.026800pt;}
.y20_c00112{bottom:258.586667pt;}
.y1f_c00112{bottom:285.306667pt;}
.y1e_c00112{bottom:308.986667pt;}
.y1d_c00112{bottom:349.666667pt;}
.y1c_c00112{bottom:390.306667pt;}
.y1b_c00112{bottom:428.866667pt;}
.y1a_c00112{bottom:467.266667pt;}
.y19_c00112{bottom:505.826667pt;}
.y18_c00112{bottom:544.226667pt;}
.y17_c00112{bottom:582.653333pt;}
.y16_c00112{bottom:623.453333pt;}
.y15_c00112{bottom:664.093333pt;}
.y14_c00112{bottom:702.493333pt;}
.y12_c00112{bottom:741.053333pt;}
.y10_c00112{bottom:779.453333pt;}
.yc_c00112{bottom:817.893333pt;}
.y6_c00112{bottom:858.693333pt;}
.y5_c00112{bottom:938.213600pt;}
.y4_c00112{bottom:956.933333pt;}
.y3_c00112{bottom:975.653067pt;}
.y2_c00112{bottom:994.373333pt;}
.y1_c00112{bottom:1044.160000pt;}
.h9_c00112{height:37.759867pt;}
.h8_c00112{height:37.760400pt;}
.h7_c00112{height:37.791733pt;}
.ha_c00112{height:37.792133pt;}
.hb_c00112{height:37.919733pt;}
.h5_c00112{height:40.000000pt;}
.hc_c00112{height:40.032267pt;}
.h4_c00112{height:42.866250pt;}
.h6_c00112{height:45.022500pt;}
.h2_c00112{height:50.628750pt;}
.h3_c00112{height:59.200000pt;}
.h1_c00112{height:1122.666667pt;}
.h0_c00112{height:1122.720000pt;}
.w3_c00112{width:138.106667pt;}
.w4_c00112{width:219.706667pt;}
.w2_c00112{width:244.026667pt;}
.w1_c00112{width:794.000000pt;}
.w0_c00112{width:794.080000pt;}
.x0_c00112{left:0.000000pt;}
.xb_c00112{left:6.880133pt;}
.x6_c00112{left:28.320000pt;}
.x5_c00112{left:30.720000pt;}
.x9_c00112{left:35.200000pt;}
.xd_c00112{left:44.186667pt;}
.x7_c00112{left:47.866667pt;}
.x3_c00112{left:51.834667pt;}
.xa_c00112{left:74.120000pt;}
.xc_c00112{left:84.352000pt;}
.x1_c00112{left:113.471867pt;}
.xe_c00112{left:132.352133pt;}
.x2_c00112{left:302.306533pt;}
.x4_c00112{left:358.786667pt;}
.x8_c00112{left:497.693333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_af378855bd9db238d2052f9f.woff2')format("woff");}.ff1_c00113{font-family:ff1_c00113;line-height:1.070312;font-style:normal;font-weight:normal;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_f1a6241980de30057244f828.woff2')format("woff");}.ff2_c00113{font-family:ff2_c00113;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00113;src:url('chunks/assets/font_58ae4c3aea19b13cbdf358b6.woff2')format("woff");}.ff3_c00113{font-family:ff3_c00113;line-height:0.971191;font-style: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);}
.m1_c00113{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1_c00113{vertical-align:-5.760936px;}
.v0_c00113{vertical-align:0.000000px;}
.v2_c00113{vertical-align:5.760936px;}
.ls0_c00113{letter-spacing:0.000000px;}
.sc__c00113{text-shadow:none;}
.sc0_c00113{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00113{-webkit-text-stroke:0px transparent;}
.sc0_c00113{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00113{word-spacing:-22.017600px;}
.ws1_c00113{word-spacing:-18.414720px;}
.ws0_c00113{word-spacing:-11.609280px;}
.ws3_c00113{word-spacing:0.000000px;}
._6_c00113{margin-left:-2.320512px;}
._1_c00113{margin-left:-1.093374px;}
._4_c00113{width:1.114689px;}
._2_c00113{width:3.150924px;}
._5_c00113{width:4.630151px;}
._a_c00113{width:5.889244px;}
._7_c00113{width:6.954550px;}
._9_c00113{width:24.255223px;}
._8_c00113{width:25.373805px;}
._3_c00113{width:62.069859px;}
._0_c00113{width:2298.149418px;}
.fc2_c00113{color:rgb(89,89,89);}
.fc1_c00113{color:rgb(64,64,64);}
.fc0_c00113{color:rgb(0,0,0);}
.fs1_c00113{font-size:41.760000px;}
.fs0_c00113{font-size:66.240000px;}
.fs2_c00113{font-size:79.200000px;}
.y0_c00113{bottom:0.000000px;}
.y11_c00113{bottom:8.100000px;}
.ya_c00113{bottom:9.900000px;}
.ye_c00113{bottom:16.020000px;}
.y12_c00113{bottom:17.100000px;}
.yc_c00113{bottom:18.930000px;}
.y10_c00113{bottom:26.100000px;}
.y8_c00113{bottom:27.930000px;}
.yb_c00113{bottom:36.930000px;}
.y21_c00113{bottom:42.300150px;}
.y1c_c00113{bottom:42.510000px;}
.y9_c00113{bottom:45.930000px;}
.y20_c00113{bottom:61.200150px;}
.y1b_c00113{bottom:61.410000px;}
.y19_c00113{bottom:92.159700px;}
.y1f_c00113{bottom:136.979850px;}
.y23_c00113{bottom:189.435450px;}
.y1e_c00113{bottom:189.644700px;}
.y22_c00113{bottom:212.295150px;}
.y1d_c00113{bottom:212.505000px;}
.y18_c00113{bottom:400.215450px;}
.y17_c00113{bottom:421.275150px;}
.y16_c00113{bottom:442.155000px;}
.y15_c00113{bottom:463.215300px;}
.y14_c00113{bottom:484.275000px;}
.y13_c00113{bottom:514.155000px;}
.yf_c00113{bottom:540.795000px;}
.yd_c00113{bottom:586.515000px;}
.y7_c00113{bottom:629.895000px;}
.y6_c00113{bottom:719.565450px;}
.y5_c00113{bottom:740.625150px;}
.y4_c00113{bottom:761.505000px;}
.y3_c00113{bottom:809.565000px;}
.y2_c00113{bottom:848.445000px;}
.y1a_c00113{bottom:893.160000px;}
.y1_c00113{bottom:1174.680000px;}
.h5_c00113{height:42.659700px;}
.h6_c00113{height:45.000000px;}
.h4_c00113{height:48.224531px;}
.h7_c00113{height:50.650313px;}
.h2_c00113{height:56.957344px;}
.h3_c00113{height:66.815700px;}
.h9_c00113{height:68.101172px;}
.ha_c00113{height:242.280000px;}
.h8_c00113{height:242.460000px;}
.h1_c00113{height:1263.000000px;}
.h0_c00113{height:1263.060000px;}
.w3_c00113{width:155.370000px;}
.w4_c00113{width:247.170000px;}
.w2_c00113{width:274.530000px;}
.w5_c00113{width:680.220000px;}
.w1_c00113{width:893.250000px;}
.w0_c00113{width:893.340000px;}
.x0_c00113{left:0.000000px;}
.xc_c00113{left:7.740150px;}
.x7_c00113{left:31.860000px;}
.x6_c00113{left:34.560000px;}
.xa_c00113{left:39.600000px;}
.xd_c00113{left:44.812500px;}
.x8_c00113{left:53.850000px;}
.x4_c00113{left:58.314000px;}
.xb_c00113{left:83.385000px;}
.x11_c00113{left:90.750000px;}
.x13_c00113{left:102.059700px;}
.xe_c00113{left:126.000000px;}
.x1_c00113{left:127.655850px;}
.x2_c00113{left:148.896150px;}
.x3_c00113{left:234.021750px;}
.x12_c00113{left:294.015000px;}
.xf_c00113{left:324.150000px;}
.x10_c00113{left:325.770120px;}
.x5_c00113{left:403.635000px;}
.x9_c00113{left:559.905000px;}
@media print{
.v1_c00113{vertical-align:-5.120832pt;}
.v0_c00113{vertical-align:0.000000pt;}
.v2_c00113{vertical-align:5.120832pt;}
.ls0_c00113{letter-spacing:0.000000pt;}
.ws2_c00113{word-spacing:-19.571200pt;}
.ws1_c00113{word-spacing:-16.368640pt;}
.ws0_c00113{word-spacing:-10.319360pt;}
.ws3_c00113{word-spacing:0.000000pt;}
._6_c00113{margin-left:-2.062678pt;}
._1_c00113{margin-left:-0.971888pt;}
._4_c00113{width:0.990834pt;}
._2_c00113{width:2.800822pt;}
._5_c00113{width:4.115690pt;}
._a_c00113{width:5.234884pt;}
._7_c00113{width:6.181822pt;}
._9_c00113{width:21.560198pt;}
._8_c00113{width:22.554493pt;}
._3_c00113{width:55.173208pt;}
._0_c00113{width:2042.799483pt;}
.fs1_c00113{font-size:37.120000pt;}
.fs0_c00113{font-size:58.880000pt;}
.fs2_c00113{font-size:70.400000pt;}
.y0_c00113{bottom:0.000000pt;}
.y11_c00113{bottom:7.200000pt;}
.ya_c00113{bottom:8.800000pt;}
.ye_c00113{bottom:14.240000pt;}
.y12_c00113{bottom:15.200000pt;}
.yc_c00113{bottom:16.826667pt;}
.y10_c00113{bottom:23.200000pt;}
.y8_c00113{bottom:24.826667pt;}
.yb_c00113{bottom:32.826667pt;}
.y21_c00113{bottom:37.600133pt;}
.y1c_c00113{bottom:37.786667pt;}
.y9_c00113{bottom:40.826667pt;}
.y20_c00113{bottom:54.400133pt;}
.y1b_c00113{bottom:54.586667pt;}
.y19_c00113{bottom:81.919733pt;}
.y1f_c00113{bottom:121.759867pt;}
.y23_c00113{bottom:168.387067pt;}
.y1e_c00113{bottom:168.573067pt;}
.y22_c00113{bottom:188.706800pt;}
.y1d_c00113{bottom:188.893333pt;}
.y18_c00113{bottom:355.747067pt;}
.y17_c00113{bottom:374.466800pt;}
.y16_c00113{bottom:393.026667pt;}
.y15_c00113{bottom:411.746933pt;}
.y14_c00113{bottom:430.466667pt;}
.y13_c00113{bottom:457.026667pt;}
.yf_c00113{bottom:480.706667pt;}
.yd_c00113{bottom:521.346667pt;}
.y7_c00113{bottom:559.906667pt;}
.y6_c00113{bottom:639.613733pt;}
.y5_c00113{bottom:658.333467pt;}
.y4_c00113{bottom:676.893333pt;}
.y3_c00113{bottom:719.613333pt;}
.y2_c00113{bottom:754.173333pt;}
.y1a_c00113{bottom:793.920000pt;}
.y1_c00113{bottom:1044.160000pt;}
.h5_c00113{height:37.919733pt;}
.h6_c00113{height:40.000000pt;}
.h4_c00113{height:42.866250pt;}
.h7_c00113{height:45.022500pt;}
.h2_c00113{height:50.628750pt;}
.h3_c00113{height:59.391733pt;}
.h9_c00113{height:60.534375pt;}
.ha_c00113{height:215.360000pt;}
.h8_c00113{height:215.520000pt;}
.h1_c00113{height:1122.666667pt;}
.h0_c00113{height:1122.720000pt;}
.w3_c00113{width:138.106667pt;}
.w4_c00113{width:219.706667pt;}
.w2_c00113{width:244.026667pt;}
.w5_c00113{width:604.640000pt;}
.w1_c00113{width:794.000000pt;}
.w0_c00113{width:794.080000pt;}
.x0_c00113{left:0.000000pt;}
.xc_c00113{left:6.880133pt;}
.x7_c00113{left:28.320000pt;}
.x6_c00113{left:30.720000pt;}
.xa_c00113{left:35.200000pt;}
.xd_c00113{left:39.833333pt;}
.x8_c00113{left:47.866667pt;}
.x4_c00113{left:51.834667pt;}
.xb_c00113{left:74.120000pt;}
.x11_c00113{left:80.666667pt;}
.x13_c00113{left:90.719733pt;}
.xe_c00113{left:112.000000pt;}
.x1_c00113{left:113.471867pt;}
.x2_c00113{left:132.352133pt;}
.x3_c00113{left:208.019333pt;}
.x12_c00113{left:261.346667pt;}
.xf_c00113{left:288.133333pt;}
.x10_c00113{left:289.573440pt;}
.x5_c00113{left:358.786667pt;}
.x9_c00113{left:497.693333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_45ca09bbcf35b9c76dad3172.woff2')format("woff");}.ff1_c00114{font-family:ff1_c00114;line-height:1.070312;font-style:normal;font-weight:normal;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_f1a6241980de30057244f828.woff2')format("woff");}.ff2_c00114{font-family:ff2_c00114;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00114;src:url('chunks/assets/font_618995a8ac98956524e4f39c.woff2')format("woff");}.ff3_c00114{font-family:ff3_c00114;line-height:0.971191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00114{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00114{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1_c00114{vertical-align:-5.760936px;}
.v0_c00114{vertical-align:0.000000px;}
.v2_c00114{vertical-align:5.760936px;}
.ls0_c00114{letter-spacing:0.000000px;}
.sc__c00114{text-shadow:none;}
.sc0_c00114{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00114{-webkit-text-stroke:0px transparent;}
.sc0_c00114{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00114{word-spacing:-18.414720px;}
.ws1_c00114{word-spacing:-11.609280px;}
.ws2_c00114{word-spacing:0.000000px;}
._1_c00114{margin-left:-1.126186px;}
._3_c00114{width:1.014785px;}
._9_c00114{width:2.156038px;}
._4_c00114{width:3.807102px;}
._5_c00114{width:4.869139px;}
._a_c00114{width:6.028316px;}
._8_c00114{width:7.112080px;}
._6_c00114{width:15.268627px;}
._7_c00114{width:16.359431px;}
._b_c00114{width:21.155521px;}
._c_c00114{width:22.465470px;}
._2_c00114{width:80.517558px;}
._d_c00114{width:845.765568px;}
._0_c00114{width:2298.149418px;}
.fc0_c00114{color:rgb(0,0,0);}
.fs1_c00114{font-size:41.760000px;}
.fs0_c00114{font-size:66.240000px;}
.y0_c00114{bottom:0.000000px;}
.ye_c00114{bottom:7.919700px;}
.y19_c00114{bottom:7.920000px;}
.y16_c00114{bottom:7.920300px;}
.y12_c00114{bottom:8.099700px;}
.y1d_c00114{bottom:8.280000px;}
.y9_c00114{bottom:11.880000px;}
.yf_c00114{bottom:16.200000px;}
.yb_c00114{bottom:20.160000px;}
.yd_c00114{bottom:24.480000px;}
.y11_c00114{bottom:24.660000px;}
.y1c_c00114{bottom:24.840000px;}
.y6_c00114{bottom:28.260000px;}
.y8_c00114{bottom:28.440000px;}
.ya_c00114{bottom:36.720000px;}
.y7_c00114{bottom:44.820000px;}
.y29_c00114{bottom:263.910000px;}
.y28_c00114{bottom:284.970450px;}
.y27_c00114{bottom:305.850300px;}
.y26_c00114{bottom:326.910000px;}
.y25_c00114{bottom:347.970300px;}
.y24_c00114{bottom:368.850150px;}
.y23_c00114{bottom:389.955000px;}
.y22_c00114{bottom:411.015000px;}
.y21_c00114{bottom:440.895000px;}
.y20_c00114{bottom:467.535000px;}
.y1f_c00114{bottom:510.915000px;}
.y1e_c00114{bottom:554.115000px;}
.y1b_c00114{bottom:597.315000px;}
.y1a_c00114{bottom:640.725000px;}
.y18_c00114{bottom:683.925000px;}
.y17_c00114{bottom:727.305000px;}
.y15_c00114{bottom:770.505000px;}
.y14_c00114{bottom:813.885000px;}
.y13_c00114{bottom:857.085000px;}
.y10_c00114{bottom:900.330000px;}
.yc_c00114{bottom:943.710000px;}
.y5_c00114{bottom:986.910000px;}
.y4_c00114{bottom:1076.550000px;}
.y3_c00114{bottom:1097.609700px;}
.y2_c00114{bottom:1118.670000px;}
.y1_c00114{bottom:1174.680000px;}
.h5_c00114{height:42.479850px;}
.hb_c00114{height:42.480450px;}
.h8_c00114{height:42.515700px;}
.h9_c00114{height:42.659700px;}
.h7_c00114{height:42.660300px;}
.ha_c00114{height:42.695550px;}
.h4_c00114{height:48.224531px;}
.h6_c00114{height:50.650313px;}
.h2_c00114{height:56.957344px;}
.h3_c00114{height:66.780450px;}
.h1_c00114{height:1263.000000px;}
.h0_c00114{height:1263.060000px;}
.w3_c00114{width:155.370000px;}
.w4_c00114{width:247.170000px;}
.w2_c00114{width:274.530000px;}
.w1_c00114{width:893.250000px;}
.w0_c00114{width:893.340000px;}
.x0_c00114{left:0.000000px;}
.xb_c00114{left:7.740150px;}
.x6_c00114{left:31.860000px;}
.xc_c00114{left:33.300000px;}
.x5_c00114{left:34.560000px;}
.x11_c00114{left:37.071000px;}
.x9_c00114{left:39.600000px;}
.x10_c00114{left:42.471000px;}
.xd_c00114{left:44.812500px;}
.x7_c00114{left:53.850000px;}
.x3_c00114{left:58.314000px;}
.xa_c00114{left:83.385000px;}
.xf_c00114{left:94.896000px;}
.xe_c00114{left:108.044400px;}
.x1_c00114{left:127.655850px;}
.x12_c00114{left:148.896150px;}
.x13_c00114{left:191.550000px;}
.x2_c00114{left:234.021750px;}
.x4_c00114{left:403.635000px;}
.x8_c00114{left:559.905000px;}
@media print{
.v1_c00114{vertical-align:-5.120832pt;}
.v0_c00114{vertical-align:0.000000pt;}
.v2_c00114{vertical-align:5.120832pt;}
.ls0_c00114{letter-spacing:0.000000pt;}
.ws0_c00114{word-spacing:-16.368640pt;}
.ws1_c00114{word-spacing:-10.319360pt;}
.ws2_c00114{word-spacing:0.000000pt;}
._1_c00114{margin-left:-1.001054pt;}
._3_c00114{width:0.902031pt;}
._9_c00114{width:1.916478pt;}
._4_c00114{width:3.384091pt;}
._5_c00114{width:4.328124pt;}
._a_c00114{width:5.358503pt;}
._8_c00114{width:6.321848pt;}
._6_c00114{width:13.572113pt;}
._7_c00114{width:14.541717pt;}
._b_c00114{width:18.804907pt;}
._c_c00114{width:19.969306pt;}
._2_c00114{width:71.571162pt;}
._d_c00114{width:751.791616pt;}
._0_c00114{width:2042.799483pt;}
.fs1_c00114{font-size:37.120000pt;}
.fs0_c00114{font-size:58.880000pt;}
.y0_c00114{bottom:0.000000pt;}
.ye_c00114{bottom:7.039733pt;}
.y19_c00114{bottom:7.040000pt;}
.y16_c00114{bottom:7.040267pt;}
.y12_c00114{bottom:7.199733pt;}
.y1d_c00114{bottom:7.360000pt;}
.y9_c00114{bottom:10.560000pt;}
.yf_c00114{bottom:14.400000pt;}
.yb_c00114{bottom:17.920000pt;}
.yd_c00114{bottom:21.760000pt;}
.y11_c00114{bottom:21.920000pt;}
.y1c_c00114{bottom:22.080000pt;}
.y6_c00114{bottom:25.120000pt;}
.y8_c00114{bottom:25.280000pt;}
.ya_c00114{bottom:32.640000pt;}
.y7_c00114{bottom:39.840000pt;}
.y29_c00114{bottom:234.586667pt;}
.y28_c00114{bottom:253.307067pt;}
.y27_c00114{bottom:271.866933pt;}
.y26_c00114{bottom:290.586667pt;}
.y25_c00114{bottom:309.306933pt;}
.y24_c00114{bottom:327.866800pt;}
.y23_c00114{bottom:346.626667pt;}
.y22_c00114{bottom:365.346667pt;}
.y21_c00114{bottom:391.906667pt;}
.y20_c00114{bottom:415.586667pt;}
.y1f_c00114{bottom:454.146667pt;}
.y1e_c00114{bottom:492.546667pt;}
.y1b_c00114{bottom:530.946667pt;}
.y1a_c00114{bottom:569.533333pt;}
.y18_c00114{bottom:607.933333pt;}
.y17_c00114{bottom:646.493333pt;}
.y15_c00114{bottom:684.893333pt;}
.y14_c00114{bottom:723.453333pt;}
.y13_c00114{bottom:761.853333pt;}
.y10_c00114{bottom:800.293333pt;}
.yc_c00114{bottom:838.853333pt;}
.y5_c00114{bottom:877.253333pt;}
.y4_c00114{bottom:956.933333pt;}
.y3_c00114{bottom:975.653067pt;}
.y2_c00114{bottom:994.373333pt;}
.y1_c00114{bottom:1044.160000pt;}
.h5_c00114{height:37.759867pt;}
.hb_c00114{height:37.760400pt;}
.h8_c00114{height:37.791733pt;}
.h9_c00114{height:37.919733pt;}
.h7_c00114{height:37.920267pt;}
.ha_c00114{height:37.951600pt;}
.h4_c00114{height:42.866250pt;}
.h6_c00114{height:45.022500pt;}
.h2_c00114{height:50.628750pt;}
.h3_c00114{height:59.360400pt;}
.h1_c00114{height:1122.666667pt;}
.h0_c00114{height:1122.720000pt;}
.w3_c00114{width:138.106667pt;}
.w4_c00114{width:219.706667pt;}
.w2_c00114{width:244.026667pt;}
.w1_c00114{width:794.000000pt;}
.w0_c00114{width:794.080000pt;}
.x0_c00114{left:0.000000pt;}
.xb_c00114{left:6.880133pt;}
.x6_c00114{left:28.320000pt;}
.xc_c00114{left:29.600000pt;}
.x5_c00114{left:30.720000pt;}
.x11_c00114{left:32.952000pt;}
.x9_c00114{left:35.200000pt;}
.x10_c00114{left:37.752000pt;}
.xd_c00114{left:39.833333pt;}
.x7_c00114{left:47.866667pt;}
.x3_c00114{left:51.834667pt;}
.xa_c00114{left:74.120000pt;}
.xf_c00114{left:84.352000pt;}
.xe_c00114{left:96.039467pt;}
.x1_c00114{left:113.471867pt;}
.x12_c00114{left:132.352133pt;}
.x13_c00114{left:170.266667pt;}
.x2_c00114{left:208.019333pt;}
.x4_c00114{left:358.786667pt;}
.x8_c00114{left:497.693333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_9c15d95756c9eed029628dc1.woff2')format("woff");}.ff1_c00115{font-family:ff1_c00115;line-height:1.070312;font-style:normal;font-weight:normal;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_f1a6241980de30057244f828.woff2')format("woff");}.ff2_c00115{font-family:ff2_c00115;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00115;src:url('chunks/assets/font_80e470257c26a5cd9748b1ad.woff2')format("woff");}.ff3_c00115{font-family:ff3_c00115;line-height:0.971191;font-style: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);}
.m1_c00115{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_c00115{vertical-align:0.000000px;}
.ls0_c00115{letter-spacing:0.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;}
}
.ws0_c00115{word-spacing:-23.316480px;}
.ws2_c00115{word-spacing:-22.017600px;}
.ws1_c00115{word-spacing:-18.414720px;}
.ws3_c00115{word-spacing:0.000000px;}
._1_c00115{margin-left:-1.093374px;}
._4_c00115{width:1.114689px;}
._2_c00115{width:3.150924px;}
._5_c00115{width:4.630153px;}
._8_c00115{width:6.821518px;}
._a_c00115{width:13.776636px;}
._9_c00115{width:15.436483px;}
._6_c00115{width:29.675297px;}
._7_c00115{width:31.248826px;}
._3_c00115{width:62.069859px;}
._b_c00115{width:845.765568px;}
._0_c00115{width:2261.432586px;}
.fc1_c00115{color:rgb(255,0,0);}
.fc3_c00115{color:rgb(89,89,89);}
.fc2_c00115{color:rgb(64,64,64);}
.fc0_c00115{color:rgb(0,0,0);}
.fs0_c00115{font-size:66.240000px;}
.fs1_c00115{font-size:79.200000px;}
.y0_c00115{bottom:0.000000px;}
.y18_c00115{bottom:8.099850px;}
.yf_c00115{bottom:8.100000px;}
.ya_c00115{bottom:9.930000px;}
.y13_c00115{bottom:15.840000px;}
.y10_c00115{bottom:17.100000px;}
.yc_c00115{bottom:18.930000px;}
.ye_c00115{bottom:26.100000px;}
.y17_c00115{bottom:26.145000px;}
.y8_c00115{bottom:27.930000px;}
.yb_c00115{bottom:36.930000px;}
.y9_c00115{bottom:45.930000px;}
.y24_c00115{bottom:58.290000px;}
.y23_c00115{bottom:77.190000px;}
.y26_c00115{bottom:81.899700px;}
.y25_c00115{bottom:100.800300px;}
.y28_c00115{bottom:143.790000px;}
.y27_c00115{bottom:162.690000px;}
.y21_c00115{bottom:163.110000px;}
.y20_c00115{bottom:184.170150px;}
.y2a_c00115{bottom:189.644700px;}
.y1f_c00115{bottom:205.229850px;}
.y29_c00115{bottom:212.505000px;}
.y1e_c00115{bottom:226.109700px;}
.y1d_c00115{bottom:247.170150px;}
.y1c_c00115{bottom:268.229850px;}
.y1b_c00115{bottom:289.109700px;}
.y1a_c00115{bottom:310.170000px;}
.y19_c00115{bottom:340.230000px;}
.y16_c00115{bottom:366.870000px;}
.y15_c00115{bottom:412.635000px;}
.y14_c00115{bottom:458.355000px;}
.y12_c00115{bottom:504.075000px;}
.y11_c00115{bottom:547.455000px;}
.yd_c00115{bottom:593.175000px;}
.y7_c00115{bottom:638.895000px;}
.y6_c00115{bottom:728.565450px;}
.y5_c00115{bottom:749.625150px;}
.y4_c00115{bottom:770.505000px;}
.y3_c00115{bottom:818.565000px;}
.y2_c00115{bottom:857.445000px;}
.y22_c00115{bottom:893.160000px;}
.y1_c00115{bottom:1174.680000px;}
.h7_c00115{height:42.479850px;}
.h5_c00115{height:45.000000px;}
.h8_c00115{height:45.035700px;}
.h4_c00115{height:48.224531px;}
.h6_c00115{height:50.650313px;}
.h2_c00115{height:56.957344px;}
.h3_c00115{height:66.815700px;}
.ha_c00115{height:68.101172px;}
.h9_c00115{height:242.460000px;}
.h1_c00115{height:1263.000000px;}
.h0_c00115{height:1263.060000px;}
.w3_c00115{width:155.370000px;}
.w4_c00115{width:247.170000px;}
.w2_c00115{width:274.530000px;}
.w5_c00115{width:680.220000px;}
.w1_c00115{width:893.250000px;}
.w0_c00115{width:893.340000px;}
.x0_c00115{left:0.000000px;}
.xb_c00115{left:7.740150px;}
.x6_c00115{left:31.860000px;}
.x5_c00115{left:34.560000px;}
.x9_c00115{left:39.600000px;}
.xd_c00115{left:42.471000px;}
.xf_c00115{left:44.812500px;}
.x10_c00115{left:49.710000px;}
.x7_c00115{left:53.850000px;}
.x3_c00115{left:58.314000px;}
.xe_c00115{left:81.044400px;}
.xa_c00115{left:83.385000px;}
.xc_c00115{left:94.896000px;}
.x19_c00115{left:102.059700px;}
.x1_c00115{left:127.655850px;}
.x11_c00115{left:148.896150px;}
.x12_c00115{left:191.550000px;}
.x17_c00115{left:194.939340px;}
.x18_c00115{left:203.039340px;}
.x15_c00115{left:218.519250px;}
.x16_c00115{left:229.859490px;}
.x2_c00115{left:234.021750px;}
.x1a_c00115{left:306.209700px;}
.x13_c00115{left:353.549700px;}
.x14_c00115{left:359.849700px;}
.x4_c00115{left:403.635000px;}
.x8_c00115{left:559.905000px;}
@media print{
.v0_c00115{vertical-align:0.000000pt;}
.ls0_c00115{letter-spacing:0.000000pt;}
.ws0_c00115{word-spacing:-20.725760pt;}
.ws2_c00115{word-spacing:-19.571200pt;}
.ws1_c00115{word-spacing:-16.368640pt;}
.ws3_c00115{word-spacing:0.000000pt;}
._1_c00115{margin-left:-0.971888pt;}
._4_c00115{width:0.990834pt;}
._2_c00115{width:2.800822pt;}
._5_c00115{width:4.115692pt;}
._8_c00115{width:6.063571pt;}
._a_c00115{width:12.245898pt;}
._9_c00115{width:13.721319pt;}
._6_c00115{width:26.378042pt;}
._7_c00115{width:27.776734pt;}
._3_c00115{width:55.173208pt;}
._b_c00115{width:751.791616pt;}
._0_c00115{width:2010.162299pt;}
.fs0_c00115{font-size:58.880000pt;}
.fs1_c00115{font-size:70.400000pt;}
.y0_c00115{bottom:0.000000pt;}
.y18_c00115{bottom:7.199867pt;}
.yf_c00115{bottom:7.200000pt;}
.ya_c00115{bottom:8.826667pt;}
.y13_c00115{bottom:14.080000pt;}
.y10_c00115{bottom:15.200000pt;}
.yc_c00115{bottom:16.826667pt;}
.ye_c00115{bottom:23.200000pt;}
.y17_c00115{bottom:23.240000pt;}
.y8_c00115{bottom:24.826667pt;}
.yb_c00115{bottom:32.826667pt;}
.y9_c00115{bottom:40.826667pt;}
.y24_c00115{bottom:51.813333pt;}
.y23_c00115{bottom:68.613333pt;}
.y26_c00115{bottom:72.799733pt;}
.y25_c00115{bottom:89.600267pt;}
.y28_c00115{bottom:127.813333pt;}
.y27_c00115{bottom:144.613333pt;}
.y21_c00115{bottom:144.986667pt;}
.y20_c00115{bottom:163.706800pt;}
.y2a_c00115{bottom:168.573067pt;}
.y1f_c00115{bottom:182.426533pt;}
.y29_c00115{bottom:188.893333pt;}
.y1e_c00115{bottom:200.986400pt;}
.y1d_c00115{bottom:219.706800pt;}
.y1c_c00115{bottom:238.426533pt;}
.y1b_c00115{bottom:256.986400pt;}
.y1a_c00115{bottom:275.706667pt;}
.y19_c00115{bottom:302.426667pt;}
.y16_c00115{bottom:326.106667pt;}
.y15_c00115{bottom:366.786667pt;}
.y14_c00115{bottom:407.426667pt;}
.y12_c00115{bottom:448.066667pt;}
.y11_c00115{bottom:486.626667pt;}
.yd_c00115{bottom:527.266667pt;}
.y7_c00115{bottom:567.906667pt;}
.y6_c00115{bottom:647.613733pt;}
.y5_c00115{bottom:666.333467pt;}
.y4_c00115{bottom:684.893333pt;}
.y3_c00115{bottom:727.613333pt;}
.y2_c00115{bottom:762.173333pt;}
.y22_c00115{bottom:793.920000pt;}
.y1_c00115{bottom:1044.160000pt;}
.h7_c00115{height:37.759867pt;}
.h5_c00115{height:40.000000pt;}
.h8_c00115{height:40.031733pt;}
.h4_c00115{height:42.866250pt;}
.h6_c00115{height:45.022500pt;}
.h2_c00115{height:50.628750pt;}
.h3_c00115{height:59.391733pt;}
.ha_c00115{height:60.534375pt;}
.h9_c00115{height:215.520000pt;}
.h1_c00115{height:1122.666667pt;}
.h0_c00115{height:1122.720000pt;}
.w3_c00115{width:138.106667pt;}
.w4_c00115{width:219.706667pt;}
.w2_c00115{width:244.026667pt;}
.w5_c00115{width:604.640000pt;}
.w1_c00115{width:794.000000pt;}
.w0_c00115{width:794.080000pt;}
.x0_c00115{left:0.000000pt;}
.xb_c00115{left:6.880133pt;}
.x6_c00115{left:28.320000pt;}
.x5_c00115{left:30.720000pt;}
.x9_c00115{left:35.200000pt;}
.xd_c00115{left:37.752000pt;}
.xf_c00115{left:39.833333pt;}
.x10_c00115{left:44.186667pt;}
.x7_c00115{left:47.866667pt;}
.x3_c00115{left:51.834667pt;}
.xe_c00115{left:72.039467pt;}
.xa_c00115{left:74.120000pt;}
.xc_c00115{left:84.352000pt;}
.x19_c00115{left:90.719733pt;}
.x1_c00115{left:113.471867pt;}
.x11_c00115{left:132.352133pt;}
.x12_c00115{left:170.266667pt;}
.x17_c00115{left:173.279413pt;}
.x18_c00115{left:180.479413pt;}
.x15_c00115{left:194.239333pt;}
.x16_c00115{left:204.319547pt;}
.x2_c00115{left:208.019333pt;}
.x1a_c00115{left:272.186400pt;}
.x13_c00115{left:314.266400pt;}
.x14_c00115{left:319.866400pt;}
.x4_c00115{left:358.786667pt;}
.x8_c00115{left:497.693333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ee145f144d21cf33a570fbb8.woff2')format("woff");}.ff1_c00116{font-family:ff1_c00116;line-height:1.070312;font-style:normal;font-weight:normal;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_f1a6241980de30057244f828.woff2')format("woff");}.ff2_c00116{font-family:ff2_c00116;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00116;src:url('chunks/assets/font_84c95f56f003dac6da725c30.woff2')format("woff");}.ff3_c00116{font-family:ff3_c00116;line-height:0.971191;font-style:normal;font-weight:normal;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_60863be2a35dd9285673b7c7.woff2')format("woff");}.ff4_c00116{font-family:ff4_c00116;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00116{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00116{vertical-align:0.000000px;}
.ls1_c00116{letter-spacing:0.000000px;}
.ls0_c00116{letter-spacing:0.351840px;}
.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;}
}
.ws1_c00116{word-spacing:-22.017600px;}
.ws0_c00116{word-spacing:-18.414720px;}
.ws2_c00116{word-spacing:0.000000px;}
._1_c00116{margin-left:-1.093374px;}
._4_c00116{width:1.114689px;}
._2_c00116{width:3.150924px;}
._5_c00116{width:4.630153px;}
._3_c00116{width:62.069859px;}
._0_c00116{width:2261.432586px;}
.fc2_c00116{color:rgb(89,89,89);}
.fc1_c00116{color:rgb(64,64,64);}
.fc0_c00116{color:rgb(0,0,0);}
.fs0_c00116{font-size:66.240000px;}
.fs1_c00116{font-size:79.200000px;}
.y0_c00116{bottom:0.000000px;}
.y12_c00116{bottom:8.100000px;}
.ye_c00116{bottom:8.130000px;}
.y1f_c00116{bottom:8.136600px;}
.y9_c00116{bottom:9.900000px;}
.y13_c00116{bottom:17.100000px;}
.yf_c00116{bottom:17.130000px;}
.y20_c00116{bottom:17.136300px;}
.yb_c00116{bottom:18.900000px;}
.y11_c00116{bottom:26.100000px;}
.yd_c00116{bottom:26.130000px;}
.y1e_c00116{bottom:26.130150px;}
.y7_c00116{bottom:27.900000px;}
.ya_c00116{bottom:36.900000px;}
.y8_c00116{bottom:45.900000px;}
.y24_c00116{bottom:54.899400px;}
.y23_c00116{bottom:73.800000px;}
.y21_c00116{bottom:102.240300px;}
.y1d_c00116{bottom:128.879850px;}
.y26_c00116{bottom:152.609700px;}
.y25_c00116{bottom:171.509700px;}
.y1c_c00116{bottom:174.630000px;}
.y28_c00116{bottom:189.644700px;}
.y27_c00116{bottom:212.505000px;}
.y1b_c00116{bottom:220.350000px;}
.y1a_c00116{bottom:266.070000px;}
.y19_c00116{bottom:311.790000px;}
.y18_c00116{bottom:357.510000px;}
.y17_c00116{bottom:403.455000px;}
.y16_c00116{bottom:449.175000px;}
.y15_c00116{bottom:494.895000px;}
.y14_c00116{bottom:540.615000px;}
.y10_c00116{bottom:586.335000px;}
.yc_c00116{bottom:632.055000px;}
.y6_c00116{bottom:677.985000px;}
.y5_c00116{bottom:767.445000px;}
.y4_c00116{bottom:788.504700px;}
.y3_c00116{bottom:809.565000px;}
.y2_c00116{bottom:857.445000px;}
.y22_c00116{bottom:893.160000px;}
.y1_c00116{bottom:1174.680000px;}
.h7_c00116{height:45.000000px;}
.h5_c00116{height:45.036300px;}
.h4_c00116{height:48.224531px;}
.h6_c00116{height:50.650313px;}
.h2_c00116{height:56.957344px;}
.h3_c00116{height:66.600000px;}
.h9_c00116{height:68.101172px;}
.h8_c00116{height:242.460000px;}
.h1_c00116{height:1263.000000px;}
.h0_c00116{height:1263.060000px;}
.w3_c00116{width:155.370000px;}
.w4_c00116{width:247.170000px;}
.w2_c00116{width:274.890000px;}
.w5_c00116{width:680.220000px;}
.w1_c00116{width:893.250000px;}
.w0_c00116{width:893.340000px;}
.x0_c00116{left:0.000000px;}
.xb_c00116{left:7.739700px;}
.x6_c00116{left:31.680000px;}
.x5_c00116{left:34.380000px;}
.x9_c00116{left:39.600000px;}
.xe_c00116{left:44.632500px;}
.xd_c00116{left:49.530000px;}
.xf_c00116{left:50.790000px;}
.x7_c00116{left:53.670000px;}
.x3_c00116{left:58.673850px;}
.xa_c00116{left:83.205000px;}
.xc_c00116{left:94.717500px;}
.x15_c00116{left:102.059700px;}
.x1_c00116{left:127.655850px;}
.x10_c00116{left:148.896150px;}
.x13_c00116{left:187.994700px;}
.x14_c00116{left:203.864850px;}
.x2_c00116{left:234.021750px;}
.x16_c00116{left:296.309700px;}
.x11_c00116{left:347.939700px;}
.x12_c00116{left:354.239700px;}
.x4_c00116{left:403.815000px;}
.x8_c00116{left:559.905000px;}
@media print{
.v0_c00116{vertical-align:0.000000pt;}
.ls1_c00116{letter-spacing:0.000000pt;}
.ls0_c00116{letter-spacing:0.312747pt;}
.ws1_c00116{word-spacing:-19.571200pt;}
.ws0_c00116{word-spacing:-16.368640pt;}
.ws2_c00116{word-spacing:0.000000pt;}
._1_c00116{margin-left:-0.971888pt;}
._4_c00116{width:0.990834pt;}
._2_c00116{width:2.800822pt;}
._5_c00116{width:4.115692pt;}
._3_c00116{width:55.173208pt;}
._0_c00116{width:2010.162299pt;}
.fs0_c00116{font-size:58.880000pt;}
.fs1_c00116{font-size:70.400000pt;}
.y0_c00116{bottom:0.000000pt;}
.y12_c00116{bottom:7.200000pt;}
.ye_c00116{bottom:7.226667pt;}
.y1f_c00116{bottom:7.232533pt;}
.y9_c00116{bottom:8.800000pt;}
.y13_c00116{bottom:15.200000pt;}
.yf_c00116{bottom:15.226667pt;}
.y20_c00116{bottom:15.232267pt;}
.yb_c00116{bottom:16.800000pt;}
.y11_c00116{bottom:23.200000pt;}
.yd_c00116{bottom:23.226667pt;}
.y1e_c00116{bottom:23.226800pt;}
.y7_c00116{bottom:24.800000pt;}
.ya_c00116{bottom:32.800000pt;}
.y8_c00116{bottom:40.800000pt;}
.y24_c00116{bottom:48.799467pt;}
.y23_c00116{bottom:65.600000pt;}
.y21_c00116{bottom:90.880267pt;}
.y1d_c00116{bottom:114.559867pt;}
.y26_c00116{bottom:135.653067pt;}
.y25_c00116{bottom:152.453067pt;}
.y1c_c00116{bottom:155.226667pt;}
.y28_c00116{bottom:168.573067pt;}
.y27_c00116{bottom:188.893333pt;}
.y1b_c00116{bottom:195.866667pt;}
.y1a_c00116{bottom:236.506667pt;}
.y19_c00116{bottom:277.146667pt;}
.y18_c00116{bottom:317.786667pt;}
.y17_c00116{bottom:358.626667pt;}
.y16_c00116{bottom:399.266667pt;}
.y15_c00116{bottom:439.906667pt;}
.y14_c00116{bottom:480.546667pt;}
.y10_c00116{bottom:521.186667pt;}
.yc_c00116{bottom:561.826667pt;}
.y6_c00116{bottom:602.653333pt;}
.y5_c00116{bottom:682.173333pt;}
.y4_c00116{bottom:700.893067pt;}
.y3_c00116{bottom:719.613333pt;}
.y2_c00116{bottom:762.173333pt;}
.y22_c00116{bottom:793.920000pt;}
.y1_c00116{bottom:1044.160000pt;}
.h7_c00116{height:40.000000pt;}
.h5_c00116{height:40.032267pt;}
.h4_c00116{height:42.866250pt;}
.h6_c00116{height:45.022500pt;}
.h2_c00116{height:50.628750pt;}
.h3_c00116{height:59.200000pt;}
.h9_c00116{height:60.534375pt;}
.h8_c00116{height:215.520000pt;}
.h1_c00116{height:1122.666667pt;}
.h0_c00116{height:1122.720000pt;}
.w3_c00116{width:138.106667pt;}
.w4_c00116{width:219.706667pt;}
.w2_c00116{width:244.346667pt;}
.w5_c00116{width:604.640000pt;}
.w1_c00116{width:794.000000pt;}
.w0_c00116{width:794.080000pt;}
.x0_c00116{left:0.000000pt;}
.xb_c00116{left:6.879733pt;}
.x6_c00116{left:28.160000pt;}
.x5_c00116{left:30.560000pt;}
.x9_c00116{left:35.200000pt;}
.xe_c00116{left:39.673333pt;}
.xd_c00116{left:44.026667pt;}
.xf_c00116{left:45.146667pt;}
.x7_c00116{left:47.706667pt;}
.x3_c00116{left:52.154533pt;}
.xa_c00116{left:73.960000pt;}
.xc_c00116{left:84.193333pt;}
.x15_c00116{left:90.719733pt;}
.x1_c00116{left:113.471867pt;}
.x10_c00116{left:132.352133pt;}
.x13_c00116{left:167.106400pt;}
.x14_c00116{left:181.213200pt;}
.x2_c00116{left:208.019333pt;}
.x16_c00116{left:263.386400pt;}
.x11_c00116{left:309.279733pt;}
.x12_c00116{left:314.879733pt;}
.x4_c00116{left:358.946667pt;}
.x8_c00116{left:497.693333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_13fab4d511b9f402adad1839.woff2')format("woff");}.ff1_c00117{font-family:ff1_c00117;line-height:1.070312;font-style:normal;font-weight:normal;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_75e72b4f1fd9bcf52151932e.woff2')format("woff");}.ff2_c00117{font-family:ff2_c00117;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00117{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00117{vertical-align:0.000000px;}
.ls1_c00117{letter-spacing:0.000000px;}
.ls0_c00117{letter-spacing:16.146240px;}
.sc__c00117{text-shadow:none;}
.sc0_c00117{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00117{-webkit-text-stroke:0px transparent;}
.sc0_c00117{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00117{word-spacing:-18.414720px;}
.ws1_c00117{word-spacing:0.000000px;}
._12_c00117{margin-left:-4.972520px;}
._7_c00117{margin-left:-3.775743px;}
._10_c00117{margin-left:-2.693794px;}
._1_c00117{margin-left:-1.389828px;}
._d_c00117{width:1.842660px;}
._3_c00117{width:2.982025px;}
._4_c00117{width:4.296970px;}
._5_c00117{width:6.227378px;}
._6_c00117{width:7.876580px;}
._b_c00117{width:8.998177px;}
._a_c00117{width:10.663038px;}
._c_c00117{width:12.139220px;}
._8_c00117{width:15.566050px;}
._9_c00117{width:16.825905px;}
._2_c00117{width:19.606595px;}
._f_c00117{width:21.165684px;}
._e_c00117{width:22.983925px;}
._15_c00117{width:24.314749px;}
._16_c00117{width:25.635963px;}
._11_c00117{width:28.484170px;}
._17_c00117{width:39.014043px;}
._18_c00117{width:40.780042px;}
._14_c00117{width:52.105683px;}
._13_c00117{width:53.301885px;}
._0_c00117{width:2261.432586px;}
.fc1_c00117{color:rgb(255,0,0);}
.fc0_c00117{color:rgb(0,0,0);}
.fs0_c00117{font-size:66.240000px;}
.y0_c00117{bottom:0.000000px;}
.y2f_c00117{bottom:92.520300px;}
.y2e_c00117{bottom:113.400150px;}
.y2d_c00117{bottom:134.459850px;}
.y2c_c00117{bottom:155.550150px;}
.y2b_c00117{bottom:176.430000px;}
.y2a_c00117{bottom:206.491200px;}
.y29_c00117{bottom:227.550900px;}
.y28_c00117{bottom:248.430750px;}
.y27_c00117{bottom:269.490450px;}
.y26_c00117{bottom:290.550150px;}
.y25_c00117{bottom:311.430000px;}
.y24_c00117{bottom:341.490750px;}
.y23_c00117{bottom:362.550450px;}
.y22_c00117{bottom:383.430300px;}
.y21_c00117{bottom:404.535150px;}
.y20_c00117{bottom:425.595450px;}
.y1f_c00117{bottom:446.475300px;}
.y1e_c00117{bottom:467.535000px;}
.y1d_c00117{bottom:497.595300px;}
.y1c_c00117{bottom:518.475150px;}
.y1b_c00117{bottom:539.534850px;}
.y1a_c00117{bottom:560.595150px;}
.y19_c00117{bottom:581.475000px;}
.y18_c00117{bottom:602.534700px;}
.y17_c00117{bottom:623.595000px;}
.y16_c00117{bottom:653.505150px;}
.y15_c00117{bottom:674.565450px;}
.y14_c00117{bottom:695.625150px;}
.y13_c00117{bottom:716.505000px;}
.y12_c00117{bottom:746.565450px;}
.y11_c00117{bottom:767.625150px;}
.y10_c00117{bottom:788.505000px;}
.yf_c00117{bottom:818.565450px;}
.ye_c00117{bottom:839.625150px;}
.yd_c00117{bottom:860.505000px;}
.yc_c00117{bottom:890.565000px;}
.yb_c00117{bottom:911.669850px;}
.ya_c00117{bottom:932.549700px;}
.y9_c00117{bottom:953.609400px;}
.y8_c00117{bottom:974.669700px;}
.y7_c00117{bottom:995.549550px;}
.y6_c00117{bottom:1016.609850px;}
.y5_c00117{bottom:1037.670150px;}
.y4_c00117{bottom:1058.550000px;}
.y3_c00117{bottom:1088.610000px;}
.y2_c00117{bottom:1118.670000px;}
.y1_c00117{bottom:1174.680000px;}
.h3_c00117{height:48.256875px;}
.h2_c00117{height:56.957344px;}
.h1_c00117{height:1263.000000px;}
.h0_c00117{height:1263.060000px;}
.w1_c00117{width:893.250000px;}
.w0_c00117{width:893.340000px;}
.x0_c00117{left:0.000000px;}
.x1_c00117{left:127.655850px;}
.x2_c00117{left:148.896150px;}
@media print{
.v0_c00117{vertical-align:0.000000pt;}
.ls1_c00117{letter-spacing:0.000000pt;}
.ls0_c00117{letter-spacing:14.352213pt;}
.ws0_c00117{word-spacing:-16.368640pt;}
.ws1_c00117{word-spacing:0.000000pt;}
._12_c00117{margin-left:-4.420017pt;}
._7_c00117{margin-left:-3.356216pt;}
._10_c00117{margin-left:-2.394484pt;}
._1_c00117{margin-left:-1.235402pt;}
._d_c00117{width:1.637920pt;}
._3_c00117{width:2.650689pt;}
._4_c00117{width:3.819529pt;}
._5_c00117{width:5.535447pt;}
._6_c00117{width:7.001404pt;}
._b_c00117{width:7.998380pt;}
._a_c00117{width:9.478256pt;}
._c_c00117{width:10.790418pt;}
._8_c00117{width:13.836489pt;}
._9_c00117{width:14.956360pt;}
._2_c00117{width:17.428084pt;}
._f_c00117{width:18.813941pt;}
._e_c00117{width:20.430155pt;}
._15_c00117{width:21.613110pt;}
._16_c00117{width:22.787523pt;}
._11_c00117{width:25.319262pt;}
._17_c00117{width:34.679149pt;}
._18_c00117{width:36.248926pt;}
._14_c00117{width:46.316163pt;}
._13_c00117{width:47.379453pt;}
._0_c00117{width:2010.162299pt;}
.fs0_c00117{font-size:58.880000pt;}
.y0_c00117{bottom:0.000000pt;}
.y2f_c00117{bottom:82.240267pt;}
.y2e_c00117{bottom:100.800133pt;}
.y2d_c00117{bottom:119.519867pt;}
.y2c_c00117{bottom:138.266800pt;}
.y2b_c00117{bottom:156.826667pt;}
.y2a_c00117{bottom:183.547733pt;}
.y29_c00117{bottom:202.267467pt;}
.y28_c00117{bottom:220.827333pt;}
.y27_c00117{bottom:239.547067pt;}
.y26_c00117{bottom:258.266800pt;}
.y25_c00117{bottom:276.826667pt;}
.y24_c00117{bottom:303.547333pt;}
.y23_c00117{bottom:322.267067pt;}
.y22_c00117{bottom:340.826933pt;}
.y21_c00117{bottom:359.586800pt;}
.y20_c00117{bottom:378.307067pt;}
.y1f_c00117{bottom:396.866933pt;}
.y1e_c00117{bottom:415.586667pt;}
.y1d_c00117{bottom:442.306933pt;}
.y1c_c00117{bottom:460.866800pt;}
.y1b_c00117{bottom:479.586533pt;}
.y1a_c00117{bottom:498.306800pt;}
.y19_c00117{bottom:516.866667pt;}
.y18_c00117{bottom:535.586400pt;}
.y17_c00117{bottom:554.306667pt;}
.y16_c00117{bottom:580.893467pt;}
.y15_c00117{bottom:599.613733pt;}
.y14_c00117{bottom:618.333467pt;}
.y13_c00117{bottom:636.893333pt;}
.y12_c00117{bottom:663.613733pt;}
.y11_c00117{bottom:682.333467pt;}
.y10_c00117{bottom:700.893333pt;}
.yf_c00117{bottom:727.613733pt;}
.ye_c00117{bottom:746.333467pt;}
.yd_c00117{bottom:764.893333pt;}
.yc_c00117{bottom:791.613333pt;}
.yb_c00117{bottom:810.373200pt;}
.ya_c00117{bottom:828.933067pt;}
.y9_c00117{bottom:847.652800pt;}
.y8_c00117{bottom:866.373067pt;}
.y7_c00117{bottom:884.932933pt;}
.y6_c00117{bottom:903.653200pt;}
.y5_c00117{bottom:922.373467pt;}
.y4_c00117{bottom:940.933333pt;}
.y3_c00117{bottom:967.653333pt;}
.y2_c00117{bottom:994.373333pt;}
.y1_c00117{bottom:1044.160000pt;}
.h3_c00117{height:42.895000pt;}
.h2_c00117{height:50.628750pt;}
.h1_c00117{height:1122.666667pt;}
.h0_c00117{height:1122.720000pt;}
.w1_c00117{width:794.000000pt;}
.w0_c00117{width:794.080000pt;}
.x0_c00117{left:0.000000pt;}
.x1_c00117{left:113.471867pt;}
.x2_c00117{left:132.352133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9b630bcac9f70aafa48d4ae9.woff2')format("woff");}.ff1_c00118{font-family:ff1_c00118;line-height:1.070312;font-style:normal;font-weight:normal;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_e30aa5453fef962722518fba.woff2')format("woff");}.ff2_c00118{font-family:ff2_c00118;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00118{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00118{vertical-align:0.000000px;}
.ls0_c00118{letter-spacing:0.000000px;}
.sc__c00118{text-shadow:none;}
.sc0_c00118{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00118{-webkit-text-stroke:0px transparent;}
.sc0_c00118{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00118{word-spacing:-18.414720px;}
.ws1_c00118{word-spacing:0.000000px;}
._8_c00118{margin-left:-4.041942px;}
._2_c00118{margin-left:-2.781500px;}
._1_c00118{margin-left:-1.722240px;}
._3_c00118{width:1.200681px;}
._11_c00118{width:2.452580px;}
._a_c00118{width:3.642476px;}
._9_c00118{width:4.834936px;}
._10_c00118{width:5.857184px;}
._c_c00118{width:6.986322px;}
._b_c00118{width:8.227368px;}
._f_c00118{width:9.257642px;}
._13_c00118{width:10.258801px;}
._5_c00118{width:12.054275px;}
._4_c00118{width:13.234761px;}
._16_c00118{width:17.202493px;}
._7_c00118{width:26.859622px;}
._6_c00118{width:27.888515px;}
._12_c00118{width:47.294872px;}
._d_c00118{width:48.488981px;}
._e_c00118{width:49.495351px;}
._17_c00118{width:50.674347px;}
._15_c00118{width:51.864993px;}
._14_c00118{width:53.124213px;}
._0_c00118{width:2261.432586px;}
.fc1_c00118{color:rgb(255,0,0);}
.fc0_c00118{color:rgb(0,0,0);}
.fs0_c00118{font-size:66.240000px;}
.y0_c00118{bottom:0.000000px;}
.y30_c00118{bottom:107.459850px;}
.y2f_c00118{bottom:128.520150px;}
.y2e_c00118{bottom:149.435700px;}
.y2d_c00118{bottom:170.490150px;}
.y2c_c00118{bottom:191.549850px;}
.y2b_c00118{bottom:212.429700px;}
.y2a_c00118{bottom:233.490000px;}
.y29_c00118{bottom:263.550300px;}
.y28_c00118{bottom:284.430150px;}
.y27_c00118{bottom:305.490450px;}
.y26_c00118{bottom:326.550150px;}
.y25_c00118{bottom:347.430000px;}
.y24_c00118{bottom:368.490300px;}
.y23_c00118{bottom:389.595150px;}
.y22_c00118{bottom:410.475000px;}
.y21_c00118{bottom:431.535300px;}
.y20_c00118{bottom:452.595600px;}
.y1f_c00118{bottom:473.475450px;}
.y1e_c00118{bottom:494.535150px;}
.y1d_c00118{bottom:515.595450px;}
.y1c_c00118{bottom:536.475300px;}
.y1b_c00118{bottom:557.535000px;}
.y1a_c00118{bottom:578.595300px;}
.y19_c00118{bottom:599.475150px;}
.y18_c00118{bottom:620.534850px;}
.y17_c00118{bottom:641.625150px;}
.y16_c00118{bottom:662.505000px;}
.y15_c00118{bottom:683.565300px;}
.y14_c00118{bottom:704.625000px;}
.y13_c00118{bottom:734.505000px;}
.y12_c00118{bottom:755.565300px;}
.y11_c00118{bottom:776.625000px;}
.y10_c00118{bottom:806.505000px;}
.yf_c00118{bottom:836.565000px;}
.ye_c00118{bottom:857.625450px;}
.yd_c00118{bottom:878.505300px;}
.yc_c00118{bottom:899.610150px;}
.yb_c00118{bottom:920.670450px;}
.ya_c00118{bottom:941.550300px;}
.y9_c00118{bottom:962.610000px;}
.y8_c00118{bottom:992.669700px;}
.y7_c00118{bottom:1013.549550px;}
.y6_c00118{bottom:1034.609850px;}
.y5_c00118{bottom:1055.670150px;}
.y4_c00118{bottom:1076.550000px;}
.y3_c00118{bottom:1097.609700px;}
.y2_c00118{bottom:1118.670000px;}
.y1_c00118{bottom:1174.680000px;}
.h3_c00118{height:48.256875px;}
.h2_c00118{height:56.957344px;}
.h1_c00118{height:1263.000000px;}
.h0_c00118{height:1263.060000px;}
.w1_c00118{width:893.250000px;}
.w0_c00118{width:893.340000px;}
.x0_c00118{left:0.000000px;}
.x1_c00118{left:127.655850px;}
.x2_c00118{left:148.896150px;}
@media print{
.v0_c00118{vertical-align:0.000000pt;}
.ls0_c00118{letter-spacing:0.000000pt;}
.ws0_c00118{word-spacing:-16.368640pt;}
.ws1_c00118{word-spacing:0.000000pt;}
._8_c00118{margin-left:-3.592838pt;}
._2_c00118{margin-left:-2.472444pt;}
._1_c00118{margin-left:-1.530880pt;}
._3_c00118{width:1.067272pt;}
._11_c00118{width:2.180071pt;}
._a_c00118{width:3.237756pt;}
._9_c00118{width:4.297721pt;}
._10_c00118{width:5.206386pt;}
._c_c00118{width:6.210064pt;}
._b_c00118{width:7.313216pt;}
._f_c00118{width:8.229015pt;}
._13_c00118{width:9.118935pt;}
._5_c00118{width:10.714911pt;}
._4_c00118{width:11.764232pt;}
._16_c00118{width:15.291105pt;}
._7_c00118{width:23.875219pt;}
._6_c00118{width:24.789791pt;}
._12_c00118{width:42.039887pt;}
._d_c00118{width:43.101316pt;}
._e_c00118{width:43.995868pt;}
._17_c00118{width:45.043864pt;}
._15_c00118{width:46.102216pt;}
._14_c00118{width:47.221523pt;}
._0_c00118{width:2010.162299pt;}
.fs0_c00118{font-size:58.880000pt;}
.y0_c00118{bottom:0.000000pt;}
.y30_c00118{bottom:95.519867pt;}
.y2f_c00118{bottom:114.240133pt;}
.y2e_c00118{bottom:132.831733pt;}
.y2d_c00118{bottom:151.546800pt;}
.y2c_c00118{bottom:170.266533pt;}
.y2b_c00118{bottom:188.826400pt;}
.y2a_c00118{bottom:207.546667pt;}
.y29_c00118{bottom:234.266933pt;}
.y28_c00118{bottom:252.826800pt;}
.y27_c00118{bottom:271.547067pt;}
.y26_c00118{bottom:290.266800pt;}
.y25_c00118{bottom:308.826667pt;}
.y24_c00118{bottom:327.546933pt;}
.y23_c00118{bottom:346.306800pt;}
.y22_c00118{bottom:364.866667pt;}
.y21_c00118{bottom:383.586933pt;}
.y20_c00118{bottom:402.307200pt;}
.y1f_c00118{bottom:420.867067pt;}
.y1e_c00118{bottom:439.586800pt;}
.y1d_c00118{bottom:458.307067pt;}
.y1c_c00118{bottom:476.866933pt;}
.y1b_c00118{bottom:495.586667pt;}
.y1a_c00118{bottom:514.306933pt;}
.y19_c00118{bottom:532.866800pt;}
.y18_c00118{bottom:551.586533pt;}
.y17_c00118{bottom:570.333467pt;}
.y16_c00118{bottom:588.893333pt;}
.y15_c00118{bottom:607.613600pt;}
.y14_c00118{bottom:626.333333pt;}
.y13_c00118{bottom:652.893333pt;}
.y12_c00118{bottom:671.613600pt;}
.y11_c00118{bottom:690.333333pt;}
.y10_c00118{bottom:716.893333pt;}
.yf_c00118{bottom:743.613333pt;}
.ye_c00118{bottom:762.333733pt;}
.yd_c00118{bottom:780.893600pt;}
.yc_c00118{bottom:799.653467pt;}
.yb_c00118{bottom:818.373733pt;}
.ya_c00118{bottom:836.933600pt;}
.y9_c00118{bottom:855.653333pt;}
.y8_c00118{bottom:882.373067pt;}
.y7_c00118{bottom:900.932933pt;}
.y6_c00118{bottom:919.653200pt;}
.y5_c00118{bottom:938.373467pt;}
.y4_c00118{bottom:956.933333pt;}
.y3_c00118{bottom:975.653067pt;}
.y2_c00118{bottom:994.373333pt;}
.y1_c00118{bottom:1044.160000pt;}
.h3_c00118{height:42.895000pt;}
.h2_c00118{height:50.628750pt;}
.h1_c00118{height:1122.666667pt;}
.h0_c00118{height:1122.720000pt;}
.w1_c00118{width:794.000000pt;}
.w0_c00118{width:794.080000pt;}
.x0_c00118{left:0.000000pt;}
.x1_c00118{left:113.471867pt;}
.x2_c00118{left:132.352133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9a68d7c8bf89d657aaf854c2.woff2')format("woff");}.ff1_c00119{font-family:ff1_c00119;line-height:1.070312;font-style:normal;font-weight:normal;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_9b3b58a9a102379d9b81c423.woff2')format("woff");}.ff2_c00119{font-family:ff2_c00119;line-height:0.938965;font-style: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);}
.v1_c00119{vertical-align:-5.760936px;}
.v0_c00119{vertical-align:0.000000px;}
.ls0_c00119{letter-spacing:0.000000px;}
.sc__c00119{text-shadow:none;}
.sc0_c00119{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00119{-webkit-text-stroke:0px transparent;}
.sc0_c00119{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00119{word-spacing:-18.414720px;}
.ws0_c00119{word-spacing:-11.609280px;}
.ws2_c00119{word-spacing:0.000000px;}
._3_c00119{margin-left:-4.572431px;}
._4_c00119{margin-left:-3.536644px;}
._e_c00119{margin-left:-2.310199px;}
._2_c00119{margin-left:-1.059095px;}
._6_c00119{width:1.061477px;}
._5_c00119{width:2.118693px;}
._1_c00119{width:3.708656px;}
._c_c00119{width:5.003848px;}
._d_c00119{width:6.125466px;}
._7_c00119{width:7.417705px;}
._8_c00119{width:9.335907px;}
._b_c00119{width:10.410380px;}
._9_c00119{width:12.255168px;}
._a_c00119{width:13.505817px;}
._10_c00119{width:15.218050px;}
._f_c00119{width:16.825499px;}
._11_c00119{width:19.581917px;}
._12_c00119{width:20.627263px;}
._14_c00119{width:25.104761px;}
._13_c00119{width:31.263538px;}
._15_c00119{width:846.459267px;}
._0_c00119{width:2261.432586px;}
.fc0_c00119{color:rgb(0,0,0);}
.fs1_c00119{font-size:41.760000px;}
.fs0_c00119{font-size:66.240000px;}
.y0_c00119{bottom:0.000000px;}
.y30_c00119{bottom:107.459850px;}
.y2f_c00119{bottom:128.520150px;}
.y2e_c00119{bottom:158.429850px;}
.y2d_c00119{bottom:179.490150px;}
.y2c_c00119{bottom:200.549850px;}
.y2b_c00119{bottom:221.429700px;}
.y2a_c00119{bottom:242.490000px;}
.y29_c00119{bottom:272.550150px;}
.y28_c00119{bottom:293.430000px;}
.y27_c00119{bottom:314.490300px;}
.y26_c00119{bottom:335.550000px;}
.y25_c00119{bottom:365.430900px;}
.y24_c00119{bottom:386.491200px;}
.y23_c00119{bottom:407.596050px;}
.y22_c00119{bottom:428.475900px;}
.y21_c00119{bottom:449.535600px;}
.y20_c00119{bottom:470.595900px;}
.y1f_c00119{bottom:491.475750px;}
.y1e_c00119{bottom:512.535450px;}
.y1d_c00119{bottom:533.595750px;}
.y1c_c00119{bottom:554.475600px;}
.y1b_c00119{bottom:575.535300px;}
.y1a_c00119{bottom:596.595600px;}
.y19_c00119{bottom:617.475450px;}
.y18_c00119{bottom:638.535150px;}
.y17_c00119{bottom:659.625450px;}
.y16_c00119{bottom:680.505300px;}
.y15_c00119{bottom:701.565600px;}
.y14_c00119{bottom:722.625300px;}
.y13_c00119{bottom:743.505150px;}
.y12_c00119{bottom:764.565450px;}
.y11_c00119{bottom:785.625150px;}
.y10_c00119{bottom:806.505000px;}
.yf_c00119{bottom:836.565750px;}
.ye_c00119{bottom:857.625450px;}
.yd_c00119{bottom:878.505300px;}
.yc_c00119{bottom:899.610150px;}
.yb_c00119{bottom:920.670450px;}
.ya_c00119{bottom:941.550300px;}
.y9_c00119{bottom:962.610000px;}
.y8_c00119{bottom:992.670300px;}
.y7_c00119{bottom:1013.550150px;}
.y6_c00119{bottom:1034.609850px;}
.y5_c00119{bottom:1055.670150px;}
.y4_c00119{bottom:1076.550000px;}
.y3_c00119{bottom:1097.609700px;}
.y2_c00119{bottom:1118.670000px;}
.y1_c00119{bottom:1174.680000px;}
.h2_c00119{height:56.957344px;}
.h1_c00119{height:1263.000000px;}
.h0_c00119{height:1263.060000px;}
.w1_c00119{width:893.250000px;}
.w0_c00119{width:893.340000px;}
.x0_c00119{left:0.000000px;}
.x1_c00119{left:127.655850px;}
.x2_c00119{left:148.896150px;}
@media print{
.v1_c00119{vertical-align:-5.120832pt;}
.v0_c00119{vertical-align:0.000000pt;}
.ls0_c00119{letter-spacing:0.000000pt;}
.ws1_c00119{word-spacing:-16.368640pt;}
.ws0_c00119{word-spacing:-10.319360pt;}
.ws2_c00119{word-spacing:0.000000pt;}
._3_c00119{margin-left:-4.064383pt;}
._4_c00119{margin-left:-3.143684pt;}
._e_c00119{margin-left:-2.053511pt;}
._2_c00119{margin-left:-0.941418pt;}
._6_c00119{width:0.943536pt;}
._5_c00119{width:1.883283pt;}
._1_c00119{width:3.296583pt;}
._c_c00119{width:4.447865pt;}
._d_c00119{width:5.444859pt;}
._7_c00119{width:6.593515pt;}
._8_c00119{width:8.298584pt;}
._b_c00119{width:9.253671pt;}
._9_c00119{width:10.893483pt;}
._a_c00119{width:12.005170pt;}
._10_c00119{width:13.527156pt;}
._f_c00119{width:14.955999pt;}
._11_c00119{width:17.406149pt;}
._12_c00119{width:18.335345pt;}
._14_c00119{width:22.315343pt;}
._13_c00119{width:27.789811pt;}
._15_c00119{width:752.408237pt;}
._0_c00119{width:2010.162299pt;}
.fs1_c00119{font-size:37.120000pt;}
.fs0_c00119{font-size:58.880000pt;}
.y0_c00119{bottom:0.000000pt;}
.y30_c00119{bottom:95.519867pt;}
.y2f_c00119{bottom:114.240133pt;}
.y2e_c00119{bottom:140.826533pt;}
.y2d_c00119{bottom:159.546800pt;}
.y2c_c00119{bottom:178.266533pt;}
.y2b_c00119{bottom:196.826400pt;}
.y2a_c00119{bottom:215.546667pt;}
.y29_c00119{bottom:242.266800pt;}
.y28_c00119{bottom:260.826667pt;}
.y27_c00119{bottom:279.546933pt;}
.y26_c00119{bottom:298.266667pt;}
.y25_c00119{bottom:324.827467pt;}
.y24_c00119{bottom:343.547733pt;}
.y23_c00119{bottom:362.307600pt;}
.y22_c00119{bottom:380.867467pt;}
.y21_c00119{bottom:399.587200pt;}
.y20_c00119{bottom:418.307467pt;}
.y1f_c00119{bottom:436.867333pt;}
.y1e_c00119{bottom:455.587067pt;}
.y1d_c00119{bottom:474.307333pt;}
.y1c_c00119{bottom:492.867200pt;}
.y1b_c00119{bottom:511.586933pt;}
.y1a_c00119{bottom:530.307200pt;}
.y19_c00119{bottom:548.867067pt;}
.y18_c00119{bottom:567.586800pt;}
.y17_c00119{bottom:586.333733pt;}
.y16_c00119{bottom:604.893600pt;}
.y15_c00119{bottom:623.613867pt;}
.y14_c00119{bottom:642.333600pt;}
.y13_c00119{bottom:660.893467pt;}
.y12_c00119{bottom:679.613733pt;}
.y11_c00119{bottom:698.333467pt;}
.y10_c00119{bottom:716.893333pt;}
.yf_c00119{bottom:743.614000pt;}
.ye_c00119{bottom:762.333733pt;}
.yd_c00119{bottom:780.893600pt;}
.yc_c00119{bottom:799.653467pt;}
.yb_c00119{bottom:818.373733pt;}
.ya_c00119{bottom:836.933600pt;}
.y9_c00119{bottom:855.653333pt;}
.y8_c00119{bottom:882.373600pt;}
.y7_c00119{bottom:900.933467pt;}
.y6_c00119{bottom:919.653200pt;}
.y5_c00119{bottom:938.373467pt;}
.y4_c00119{bottom:956.933333pt;}
.y3_c00119{bottom:975.653067pt;}
.y2_c00119{bottom:994.373333pt;}
.y1_c00119{bottom:1044.160000pt;}
.h2_c00119{height:50.628750pt;}
.h1_c00119{height:1122.666667pt;}
.h0_c00119{height:1122.720000pt;}
.w1_c00119{width:794.000000pt;}
.w0_c00119{width:794.080000pt;}
.x0_c00119{left:0.000000pt;}
.x1_c00119{left:113.471867pt;}
.x2_c00119{left:132.352133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_789c7c79ff04186f28b29d84.woff2')format("woff");}.ff1_c00120{font-family:ff1_c00120;line-height:1.070312;font-style:normal;font-weight:normal;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_6f38b5283e39e1dcf3197d65.woff2')format("woff");}.ff2_c00120{font-family:ff2_c00120;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00120;src:url('chunks/assets/font_2c661173fbe578d4a1a8299a.woff2')format("woff");}.ff3_c00120{font-family:ff3_c00120;line-height:0.938965;font-style: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);}
.v1_c00120{vertical-align:-5.758596px;}
.v0_c00120{vertical-align:0.000000px;}
.ls0_c00120{letter-spacing:0.000000px;}
.sc__c00120{text-shadow:none;}
.sc0_c00120{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00120{-webkit-text-stroke:0px transparent;}
.sc0_c00120{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00120{word-spacing:-36.829440px;}
.ws0_c00120{word-spacing:-18.414720px;}
.ws2_c00120{word-spacing:-11.609280px;}
.ws3_c00120{word-spacing:0.000000px;}
._1_c00120{margin-left:-1.126186px;}
._3_c00120{width:1.112043px;}
._5_c00120{width:9.210276px;}
._4_c00120{width:10.333391px;}
._2_c00120{width:80.517558px;}
._0_c00120{width:2261.432586px;}
.fc0_c00120{color:rgb(0,0,0);}
.fs1_c00120{font-size:41.760000px;}
.fs0_c00120{font-size:66.240000px;}
.y9_c00120{bottom:-9.900000px;}
.y0_c00120{bottom:0.000000px;}
.y3a_c00120{bottom:8.093850px;}
.y8_c00120{bottom:8.100000px;}
.y28_c00120{bottom:9.000000px;}
.y23_c00120{bottom:9.180000px;}
.ye_c00120{bottom:10.440000px;}
.y41_c00120{bottom:11.159700px;}
.y31_c00120{bottom:11.160000px;}
.y25_c00120{bottom:11.340000px;}
.y10_c00120{bottom:12.600000px;}
.y3c_c00120{bottom:14.933850px;}
.y3e_c00120{bottom:17.093850px;}
.y17_c00120{bottom:17.100000px;}
.y2b_c00120{bottom:19.260000px;}
.yb_c00120{bottom:19.440000px;}
.y42_c00120{bottom:20.159700px;}
.y32_c00120{bottom:20.160000px;}
.y21_c00120{bottom:20.340000px;}
.y13_c00120{bottom:21.600000px;}
.y39_c00120{bottom:26.093850px;}
.y1e_c00120{bottom:26.100000px;}
.y2c_c00120{bottom:28.260000px;}
.yc_c00120{bottom:28.440000px;}
.y40_c00120{bottom:29.159700px;}
.y30_c00120{bottom:29.160000px;}
.y24_c00120{bottom:29.340000px;}
.y19_c00120{bottom:30.599850px;}
.y7_c00120{bottom:30.600000px;}
.y27_c00120{bottom:31.500000px;}
.y22_c00120{bottom:31.680000px;}
.y15_c00120{bottom:32.940000px;}
.y3d_c00120{bottom:35.093850px;}
.y1b_c00120{bottom:35.100000px;}
.y2a_c00120{bottom:37.260000px;}
.y3b_c00120{bottom:37.433850px;}
.ya_c00120{bottom:37.440000px;}
.y12_c00120{bottom:39.600000px;}
.y38_c00120{bottom:44.093850px;}
.y1d_c00120{bottom:44.100000px;}
.yd_c00120{bottom:46.440000px;}
.y6_c00120{bottom:48.600000px;}
.y18_c00120{bottom:48.645000px;}
.y14_c00120{bottom:50.940000px;}
.y11_c00120{bottom:53.100000px;}
.y1c_c00120{bottom:57.600000px;}
.y1f_c00120{bottom:62.100000px;}
.y36_c00120{bottom:71.100000px;}
.y3f_c00120{bottom:91.440300px;}
.y37_c00120{bottom:143.496150px;}
.y35_c00120{bottom:207.210000px;}
.y34_c00120{bottom:298.110000px;}
.y33_c00120{bottom:350.130000px;}
.y2f_c00120{bottom:402.375000px;}
.y2e_c00120{bottom:454.395000px;}
.y2d_c00120{bottom:522.615000px;}
.y29_c00120{bottom:591.015000px;}
.y26_c00120{bottom:659.265000px;}
.y20_c00120{bottom:711.285000px;}
.y1a_c00120{bottom:763.485000px;}
.y16_c00120{bottom:845.205000px;}
.yf_c00120{bottom:913.470000px;}
.y5_c00120{bottom:986.190000px;}
.y4_c00120{bottom:1076.550000px;}
.y3_c00120{bottom:1097.609700px;}
.y2_c00120{bottom:1118.670000px;}
.y1_c00120{bottom:1174.680000px;}
.h4_c00120{height:48.224531px;}
.h9_c00120{height:51.300000px;}
.he_c00120{height:51.335700px;}
.h8_c00120{height:51.480450px;}
.hb_c00120{height:51.516150px;}
.h2_c00120{height:56.957344px;}
.hd_c00120{height:63.000000px;}
.h3_c00120{height:67.500000px;}
.ha_c00120{height:67.535700px;}
.h6_c00120{height:67.536300px;}
.h5_c00120{height:72.000000px;}
.h7_c00120{height:81.000000px;}
.hc_c00120{height:90.000000px;}
.h1_c00120{height:1263.000000px;}
.h0_c00120{height:1263.060000px;}
.w4_c00120{width:102.816150px;}
.w7_c00120{width:104.796150px;}
.w3_c00120{width:116.460300px;}
.w8_c00120{width:126.396150px;}
.w5_c00120{width:128.196150px;}
.w9_c00120{width:140.039700px;}
.w6_c00120{width:140.400000px;}
.w2_c00120{width:189.390000px;}
.w1_c00120{width:893.250000px;}
.w0_c00120{width:893.340000px;}
.x0_c00120{left:0.000000px;}
.x3_c00120{left:4.860450px;}
.x5_c00120{left:6.840000px;}
.x8_c00120{left:8.280000px;}
.x17_c00120{left:9.720000px;}
.x15_c00120{left:10.980000px;}
.x11_c00120{left:14.250000px;}
.x10_c00120{left:16.230000px;}
.x13_c00120{left:20.339880px;}
.xa_c00120{left:21.420000px;}
.xb_c00120{left:24.480000px;}
.xd_c00120{left:27.540000px;}
.xe_c00120{left:30.600000px;}
.xf_c00120{left:35.280000px;}
.x6_c00120{left:36.720000px;}
.x16_c00120{left:38.550000px;}
.x14_c00120{left:43.380000px;}
.x18_c00120{left:57.060000px;}
.x1_c00120{left:127.655850px;}
.x2_c00120{left:234.029850px;}
.x4_c00120{left:317.955000px;}
.x7_c00120{left:435.135000px;}
.x9_c00120{left:538.845000px;}
.x12_c00120{left:540.645000px;}
.xc_c00120{left:667.770000px;}
@media print{
.v1_c00120{vertical-align:-5.118752pt;}
.v0_c00120{vertical-align:0.000000pt;}
.ls0_c00120{letter-spacing:0.000000pt;}
.ws1_c00120{word-spacing:-32.737280pt;}
.ws0_c00120{word-spacing:-16.368640pt;}
.ws2_c00120{word-spacing:-10.319360pt;}
.ws3_c00120{word-spacing:0.000000pt;}
._1_c00120{margin-left:-1.001054pt;}
._3_c00120{width:0.988483pt;}
._5_c00120{width:8.186912pt;}
._4_c00120{width:9.185236pt;}
._2_c00120{width:71.571162pt;}
._0_c00120{width:2010.162299pt;}
.fs1_c00120{font-size:37.120000pt;}
.fs0_c00120{font-size:58.880000pt;}
.y9_c00120{bottom:-8.800000pt;}
.y0_c00120{bottom:0.000000pt;}
.y3a_c00120{bottom:7.194533pt;}
.y8_c00120{bottom:7.200000pt;}
.y28_c00120{bottom:8.000000pt;}
.y23_c00120{bottom:8.160000pt;}
.ye_c00120{bottom:9.280000pt;}
.y41_c00120{bottom:9.919733pt;}
.y31_c00120{bottom:9.920000pt;}
.y25_c00120{bottom:10.080000pt;}
.y10_c00120{bottom:11.200000pt;}
.y3c_c00120{bottom:13.274533pt;}
.y3e_c00120{bottom:15.194533pt;}
.y17_c00120{bottom:15.200000pt;}
.y2b_c00120{bottom:17.120000pt;}
.yb_c00120{bottom:17.280000pt;}
.y42_c00120{bottom:17.919733pt;}
.y32_c00120{bottom:17.920000pt;}
.y21_c00120{bottom:18.080000pt;}
.y13_c00120{bottom:19.200000pt;}
.y39_c00120{bottom:23.194533pt;}
.y1e_c00120{bottom:23.200000pt;}
.y2c_c00120{bottom:25.120000pt;}
.yc_c00120{bottom:25.280000pt;}
.y40_c00120{bottom:25.919733pt;}
.y30_c00120{bottom:25.920000pt;}
.y24_c00120{bottom:26.080000pt;}
.y19_c00120{bottom:27.199867pt;}
.y7_c00120{bottom:27.200000pt;}
.y27_c00120{bottom:28.000000pt;}
.y22_c00120{bottom:28.160000pt;}
.y15_c00120{bottom:29.280000pt;}
.y3d_c00120{bottom:31.194533pt;}
.y1b_c00120{bottom:31.200000pt;}
.y2a_c00120{bottom:33.120000pt;}
.y3b_c00120{bottom:33.274533pt;}
.ya_c00120{bottom:33.280000pt;}
.y12_c00120{bottom:35.200000pt;}
.y38_c00120{bottom:39.194533pt;}
.y1d_c00120{bottom:39.200000pt;}
.yd_c00120{bottom:41.280000pt;}
.y6_c00120{bottom:43.200000pt;}
.y18_c00120{bottom:43.240000pt;}
.y14_c00120{bottom:45.280000pt;}
.y11_c00120{bottom:47.200000pt;}
.y1c_c00120{bottom:51.200000pt;}
.y1f_c00120{bottom:55.200000pt;}
.y36_c00120{bottom:63.200000pt;}
.y3f_c00120{bottom:81.280267pt;}
.y37_c00120{bottom:127.552133pt;}
.y35_c00120{bottom:184.186667pt;}
.y34_c00120{bottom:264.986667pt;}
.y33_c00120{bottom:311.226667pt;}
.y2f_c00120{bottom:357.666667pt;}
.y2e_c00120{bottom:403.906667pt;}
.y2d_c00120{bottom:464.546667pt;}
.y29_c00120{bottom:525.346667pt;}
.y26_c00120{bottom:586.013333pt;}
.y20_c00120{bottom:632.253333pt;}
.y1a_c00120{bottom:678.653333pt;}
.y16_c00120{bottom:751.293333pt;}
.yf_c00120{bottom:811.973333pt;}
.y5_c00120{bottom:876.613333pt;}
.y4_c00120{bottom:956.933333pt;}
.y3_c00120{bottom:975.653067pt;}
.y2_c00120{bottom:994.373333pt;}
.y1_c00120{bottom:1044.160000pt;}
.h4_c00120{height:42.866250pt;}
.h9_c00120{height:45.600000pt;}
.he_c00120{height:45.631733pt;}
.h8_c00120{height:45.760400pt;}
.hb_c00120{height:45.792133pt;}
.h2_c00120{height:50.628750pt;}
.hd_c00120{height:56.000000pt;}
.h3_c00120{height:60.000000pt;}
.ha_c00120{height:60.031733pt;}
.h6_c00120{height:60.032267pt;}
.h5_c00120{height:64.000000pt;}
.h7_c00120{height:72.000000pt;}
.hc_c00120{height:80.000000pt;}
.h1_c00120{height:1122.666667pt;}
.h0_c00120{height:1122.720000pt;}
.w4_c00120{width:91.392133pt;}
.w7_c00120{width:93.152133pt;}
.w3_c00120{width:103.520267pt;}
.w8_c00120{width:112.352133pt;}
.w5_c00120{width:113.952133pt;}
.w9_c00120{width:124.479733pt;}
.w6_c00120{width:124.800000pt;}
.w2_c00120{width:168.346667pt;}
.w1_c00120{width:794.000000pt;}
.w0_c00120{width:794.080000pt;}
.x0_c00120{left:0.000000pt;}
.x3_c00120{left:4.320400pt;}
.x5_c00120{left:6.080000pt;}
.x8_c00120{left:7.360000pt;}
.x17_c00120{left:8.640000pt;}
.x15_c00120{left:9.760000pt;}
.x11_c00120{left:12.666667pt;}
.x10_c00120{left:14.426667pt;}
.x13_c00120{left:18.079893pt;}
.xa_c00120{left:19.040000pt;}
.xb_c00120{left:21.760000pt;}
.xd_c00120{left:24.480000pt;}
.xe_c00120{left:27.200000pt;}
.xf_c00120{left:31.360000pt;}
.x6_c00120{left:32.640000pt;}
.x16_c00120{left:34.266667pt;}
.x14_c00120{left:38.560000pt;}
.x18_c00120{left:50.720000pt;}
.x1_c00120{left:113.471867pt;}
.x2_c00120{left:208.026533pt;}
.x4_c00120{left:282.626667pt;}
.x7_c00120{left:386.786667pt;}
.x9_c00120{left:478.973333pt;}
.x12_c00120{left:480.573333pt;}
.xc_c00120{left:593.573333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_60edcc8bf5c4ec02c25bb5e0.woff2')format("woff");}.ff1_c00121{font-family:ff1_c00121;line-height:1.070312;font-style:normal;font-weight:normal;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_ccfae26782d71e301882c850.woff2')format("woff");}.ff2_c00121{font-family:ff2_c00121;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00121;src:url('chunks/assets/font_2c661173fbe578d4a1a8299a.woff2')format("woff");}.ff3_c00121{font-family:ff3_c00121;line-height:0.938965;font-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_c00121{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0_c00121{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2_c00121{transform:matrix(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_c00121{vertical-align:0.000000px;}
.ls0_c00121{letter-spacing:0.000000px;}
.sc__c00121{text-shadow:none;}
.sc0_c00121{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00121{-webkit-text-stroke:0px transparent;}
.sc0_c00121{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00121{word-spacing:-36.829440px;}
.ws1_c00121{word-spacing:-18.414720px;}
.ws2_c00121{word-spacing:0.000000px;}
._2_c00121{margin-left:-1.524551px;}
._3_c00121{width:1.072969px;}
._b_c00121{width:2.419774px;}
._9_c00121{width:3.582101px;}
._a_c00121{width:4.585176px;}
._5_c00121{width:5.735965px;}
._4_c00121{width:6.888761px;}
._7_c00121{width:12.584844px;}
._8_c00121{width:14.097399px;}
._c_c00121{width:15.567274px;}
._6_c00121{width:47.228061px;}
._1_c00121{width:89.844227px;}
._e_c00121{width:235.794311px;}
._f_c00121{width:455.833920px;}
._10_c00121{width:473.286720px;}
._d_c00121{width:845.981028px;}
._0_c00121{width:2261.432586px;}
.fc1_c00121{color:rgb(89,89,89);}
.fc0_c00121{color:rgb(0,0,0);}
.fs0_c00121{font-size:66.240000px;}
.y0_c00121{bottom:0.000000px;}
.y21_c00121{bottom:3.720000px;}
.y16_c00121{bottom:206.280000px;}
.y14_c00121{bottom:223.590300px;}
.y13_c00121{bottom:244.650300px;}
.y12_c00121{bottom:265.710000px;}
.y11_c00121{bottom:286.590450px;}
.y10_c00121{bottom:307.650150px;}
.yf_c00121{bottom:328.709850px;}
.ye_c00121{bottom:349.590300px;}
.yd_c00121{bottom:370.650000px;}
.yc_c00121{bottom:400.755000px;}
.yb_c00121{bottom:439.635000px;}
.y25_c00121{bottom:504.825000px;}
.y15_c00121{bottom:515.160000px;}
.y24_c00121{bottom:531.825000px;}
.y23_c00121{bottom:558.825000px;}
.y22_c00121{bottom:585.825000px;}
.y17_c00121{bottom:639.030000px;}
.y18_c00121{bottom:666.750150px;}
.y19_c00121{bottom:694.470300px;}
.y1a_c00121{bottom:722.190450px;}
.y1b_c00121{bottom:749.910000px;}
.y1c_c00121{bottom:777.630150px;}
.y1d_c00121{bottom:805.350300px;}
.y1e_c00121{bottom:833.070450px;}
.y1f_c00121{bottom:860.790600px;}
.y20_c00121{bottom:881.550000px;}
.ya_c00121{bottom:923.549850px;}
.y9_c00121{bottom:944.610150px;}
.y8_c00121{bottom:965.670450px;}
.y7_c00121{bottom:986.550300px;}
.y6_c00121{bottom:1007.610000px;}
.y5_c00121{bottom:1037.670150px;}
.y4_c00121{bottom:1058.550000px;}
.y3_c00121{bottom:1088.610000px;}
.y2_c00121{bottom:1118.670000px;}
.y1_c00121{bottom:1174.680000px;}
.h4_c00121{height:19.650000px;}
.h2_c00121{height:56.957344px;}
.h3_c00121{height:481.500000px;}
.h1_c00121{height:1263.000000px;}
.h0_c00121{height:1263.060000px;}
.w2_c00121{width:19.440300px;}
.w1_c00121{width:893.250000px;}
.w0_c00121{width:893.340000px;}
.x0_c00121{left:0.000000px;}
.x4_c00121{left:15.810300px;}
.x1_c00121{left:127.655850px;}
.x3_c00121{left:135.359700px;}
.x2_c00121{left:148.896150px;}
.x5_c00121{left:164.445000px;}
.x7_c00121{left:248.040000px;}
.x6_c00121{left:398.520000px;}
@media print{
.v0_c00121{vertical-align:0.000000pt;}
.ls0_c00121{letter-spacing:0.000000pt;}
.ws0_c00121{word-spacing:-32.737280pt;}
.ws1_c00121{word-spacing:-16.368640pt;}
.ws2_c00121{word-spacing:0.000000pt;}
._2_c00121{margin-left:-1.355156pt;}
._3_c00121{width:0.953750pt;}
._b_c00121{width:2.150910pt;}
._9_c00121{width:3.184090pt;}
._a_c00121{width:4.075712pt;}
._5_c00121{width:5.098636pt;}
._4_c00121{width:6.123343pt;}
._7_c00121{width:11.186528pt;}
._8_c00121{width:12.531022pt;}
._c_c00121{width:13.837577pt;}
._6_c00121{width:41.980499pt;}
._1_c00121{width:79.861535pt;}
._e_c00121{width:209.594943pt;}
._f_c00121{width:405.185707pt;}
._10_c00121{width:420.699307pt;}
._d_c00121{width:751.983136pt;}
._0_c00121{width:2010.162299pt;}
.fs0_c00121{font-size:58.880000pt;}
.y0_c00121{bottom:0.000000pt;}
.y21_c00121{bottom:3.306667pt;}
.y16_c00121{bottom:183.360000pt;}
.y14_c00121{bottom:198.746933pt;}
.y13_c00121{bottom:217.466933pt;}
.y12_c00121{bottom:236.186667pt;}
.y11_c00121{bottom:254.747067pt;}
.y10_c00121{bottom:273.466800pt;}
.yf_c00121{bottom:292.186533pt;}
.ye_c00121{bottom:310.746933pt;}
.yd_c00121{bottom:329.466667pt;}
.yc_c00121{bottom:356.226667pt;}
.yb_c00121{bottom:390.786667pt;}
.y25_c00121{bottom:448.733333pt;}
.y15_c00121{bottom:457.920000pt;}
.y24_c00121{bottom:472.733333pt;}
.y23_c00121{bottom:496.733333pt;}
.y22_c00121{bottom:520.733333pt;}
.y17_c00121{bottom:568.026667pt;}
.y18_c00121{bottom:592.666800pt;}
.y19_c00121{bottom:617.306933pt;}
.y1a_c00121{bottom:641.947067pt;}
.y1b_c00121{bottom:666.586667pt;}
.y1c_c00121{bottom:691.226800pt;}
.y1d_c00121{bottom:715.866933pt;}
.y1e_c00121{bottom:740.507067pt;}
.y1f_c00121{bottom:765.147200pt;}
.y20_c00121{bottom:783.600000pt;}
.ya_c00121{bottom:820.933200pt;}
.y9_c00121{bottom:839.653467pt;}
.y8_c00121{bottom:858.373733pt;}
.y7_c00121{bottom:876.933600pt;}
.y6_c00121{bottom:895.653333pt;}
.y5_c00121{bottom:922.373467pt;}
.y4_c00121{bottom:940.933333pt;}
.y3_c00121{bottom:967.653333pt;}
.y2_c00121{bottom:994.373333pt;}
.y1_c00121{bottom:1044.160000pt;}
.h4_c00121{height:17.466667pt;}
.h2_c00121{height:50.628750pt;}
.h3_c00121{height:428.000000pt;}
.h1_c00121{height:1122.666667pt;}
.h0_c00121{height:1122.720000pt;}
.w2_c00121{width:17.280267pt;}
.w1_c00121{width:794.000000pt;}
.w0_c00121{width:794.080000pt;}
.x0_c00121{left:0.000000pt;}
.x4_c00121{left:14.053600pt;}
.x1_c00121{left:113.471867pt;}
.x3_c00121{left:120.319733pt;}
.x2_c00121{left:132.352133pt;}
.x5_c00121{left:146.173333pt;}
.x7_c00121{left:220.480000pt;}
.x6_c00121{left:354.240000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d5ea500355285575a93d2c2e.woff2')format("woff");}.ff1_c00122{font-family:ff1_c00122;line-height:1.070312;font-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_c00122{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0_c00122{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00122{vertical-align:0.000000px;}
.ls0_c00122{letter-spacing:0.000000px;}
.sc__c00122{text-shadow:none;}
.sc0_c00122{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00122{-webkit-text-stroke:0px transparent;}
.sc0_c00122{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00122{word-spacing:-18.414720px;}
.ws1_c00122{word-spacing:0.000000px;}
._1_c00122{margin-left:-1.093374px;}
._6_c00122{width:1.088304px;}
._9_c00122{width:2.119269px;}
._2_c00122{width:3.150924px;}
._5_c00122{width:4.345370px;}
._4_c00122{width:5.393728px;}
._10_c00122{width:6.975892px;}
._8_c00122{width:10.858724px;}
._7_c00122{width:12.188359px;}
._b_c00122{width:13.257726px;}
._f_c00122{width:14.430923px;}
._c_c00122{width:17.390913px;}
._11_c00122{width:19.447195px;}
._e_c00122{width:21.292059px;}
._d_c00122{width:22.578368px;}
._a_c00122{width:26.959799px;}
._12_c00122{width:28.019780px;}
._13_c00122{width:29.643494px;}
._3_c00122{width:47.163122px;}
._14_c00122{width:235.363134px;}
._15_c00122{width:455.833920px;}
._16_c00122{width:473.286720px;}
._0_c00122{width:2261.432586px;}
.fc1_c00122{color:rgb(89,89,89);}
.fc0_c00122{color:rgb(0,0,0);}
.fs0_c00122{font-size:66.240000px;}
.fs1_c00122{font-size:66.384000px;}
.y0_c00122{bottom:0.000000px;}
.y28_c00122{bottom:3.735000px;}
.y1a_c00122{bottom:108.180000px;}
.y19_c00122{bottom:129.240300px;}
.y18_c00122{bottom:150.150000px;}
.y17_c00122{bottom:180.210000px;}
.y16_c00122{bottom:201.270300px;}
.y1c_c00122{bottom:206.310000px;}
.y15_c00122{bottom:222.150150px;}
.y14_c00122{bottom:243.209850px;}
.y13_c00122{bottom:264.270150px;}
.y12_c00122{bottom:285.150000px;}
.y11_c00122{bottom:315.210150px;}
.y10_c00122{bottom:336.270450px;}
.yf_c00122{bottom:357.150300px;}
.ye_c00122{bottom:378.210000px;}
.yd_c00122{bottom:399.315450px;}
.yc_c00122{bottom:420.195300px;}
.yb_c00122{bottom:441.255000px;}
.ya_c00122{bottom:471.315600px;}
.y9_c00122{bottom:492.195450px;}
.y8_c00122{bottom:513.255150px;}
.y7_c00122{bottom:534.315450px;}
.y6_c00122{bottom:555.195300px;}
.y5_c00122{bottom:576.255000px;}
.y4_c00122{bottom:606.315000px;}
.y3_c00122{bottom:645.225300px;}
.y2_c00122{bottom:666.285000px;}
.y2c_c00122{bottom:731.490000px;}
.y1b_c00122{bottom:741.780000px;}
.y2b_c00122{bottom:758.490000px;}
.y2a_c00122{bottom:785.490000px;}
.y29_c00122{bottom:812.490000px;}
.y1d_c00122{bottom:865.695000px;}
.y1e_c00122{bottom:890.309700px;}
.y1f_c00122{bottom:914.940150px;}
.y20_c00122{bottom:939.599850px;}
.y21_c00122{bottom:964.229700px;}
.y22_c00122{bottom:988.890000px;}
.y23_c00122{bottom:1013.504700px;}
.y24_c00122{bottom:1038.165000px;}
.y25_c00122{bottom:1062.794850px;}
.y26_c00122{bottom:1087.454550px;}
.y27_c00122{bottom:1108.200000px;}
.y1_c00122{bottom:1174.680000px;}
.h5_c00122{height:19.500000px;}
.h2_c00122{height:56.957344px;}
.h4_c00122{height:57.081164px;}
.h3_c00122{height:481.500000px;}
.h1_c00122{height:1263.000000px;}
.h0_c00122{height:1263.060000px;}
.w2_c00122{width:19.440300px;}
.w1_c00122{width:893.250000px;}
.w0_c00122{width:893.340000px;}
.x0_c00122{left:0.000000px;}
.x5_c00122{left:15.810000px;}
.x1_c00122{left:127.655850px;}
.x4_c00122{left:137.700000px;}
.x3_c00122{left:148.896150px;}
.x6_c00122{left:166.785000px;}
.x2_c00122{left:234.021750px;}
.x8_c00122{left:250.380000px;}
.x7_c00122{left:400.860000px;}
@media print{
.v0_c00122{vertical-align:0.000000pt;}
.ls0_c00122{letter-spacing:0.000000pt;}
.ws0_c00122{word-spacing:-16.368640pt;}
.ws1_c00122{word-spacing:0.000000pt;}
._1_c00122{margin-left:-0.971888pt;}
._6_c00122{width:0.967381pt;}
._9_c00122{width:1.883794pt;}
._2_c00122{width:2.800822pt;}
._5_c00122{width:3.862552pt;}
._4_c00122{width:4.794425pt;}
._10_c00122{width:6.200793pt;}
._8_c00122{width:9.652199pt;}
._7_c00122{width:10.834097pt;}
._b_c00122{width:11.784645pt;}
._f_c00122{width:12.827487pt;}
._c_c00122{width:15.458589pt;}
._11_c00122{width:17.286395pt;}
._e_c00122{width:18.926275pt;}
._d_c00122{width:20.069660pt;}
._a_c00122{width:23.964266pt;}
._12_c00122{width:24.906471pt;}
._13_c00122{width:26.349773pt;}
._3_c00122{width:41.922776pt;}
._14_c00122{width:209.211675pt;}
._15_c00122{width:405.185707pt;}
._16_c00122{width:420.699307pt;}
._0_c00122{width:2010.162299pt;}
.fs0_c00122{font-size:58.880000pt;}
.fs1_c00122{font-size:59.008000pt;}
.y0_c00122{bottom:0.000000pt;}
.y28_c00122{bottom:3.320000pt;}
.y1a_c00122{bottom:96.160000pt;}
.y19_c00122{bottom:114.880267pt;}
.y18_c00122{bottom:133.466667pt;}
.y17_c00122{bottom:160.186667pt;}
.y16_c00122{bottom:178.906933pt;}
.y1c_c00122{bottom:183.386667pt;}
.y15_c00122{bottom:197.466800pt;}
.y14_c00122{bottom:216.186533pt;}
.y13_c00122{bottom:234.906800pt;}
.y12_c00122{bottom:253.466667pt;}
.y11_c00122{bottom:280.186800pt;}
.y10_c00122{bottom:298.907067pt;}
.yf_c00122{bottom:317.466933pt;}
.ye_c00122{bottom:336.186667pt;}
.yd_c00122{bottom:354.947067pt;}
.yc_c00122{bottom:373.506933pt;}
.yb_c00122{bottom:392.226667pt;}
.ya_c00122{bottom:418.947200pt;}
.y9_c00122{bottom:437.507067pt;}
.y8_c00122{bottom:456.226800pt;}
.y7_c00122{bottom:474.947067pt;}
.y6_c00122{bottom:493.506933pt;}
.y5_c00122{bottom:512.226667pt;}
.y4_c00122{bottom:538.946667pt;}
.y3_c00122{bottom:573.533600pt;}
.y2_c00122{bottom:592.253333pt;}
.y2c_c00122{bottom:650.213333pt;}
.y1b_c00122{bottom:659.360000pt;}
.y2b_c00122{bottom:674.213333pt;}
.y2a_c00122{bottom:698.213333pt;}
.y29_c00122{bottom:722.213333pt;}
.y1d_c00122{bottom:769.506667pt;}
.y1e_c00122{bottom:791.386400pt;}
.y1f_c00122{bottom:813.280133pt;}
.y20_c00122{bottom:835.199867pt;}
.y21_c00122{bottom:857.093067pt;}
.y22_c00122{bottom:879.013333pt;}
.y23_c00122{bottom:900.893067pt;}
.y24_c00122{bottom:922.813333pt;}
.y25_c00122{bottom:944.706533pt;}
.y26_c00122{bottom:966.626267pt;}
.y27_c00122{bottom:985.066667pt;}
.y1_c00122{bottom:1044.160000pt;}
.h5_c00122{height:17.333333pt;}
.h2_c00122{height:50.628750pt;}
.h4_c00122{height:50.738813pt;}
.h3_c00122{height:428.000000pt;}
.h1_c00122{height:1122.666667pt;}
.h0_c00122{height:1122.720000pt;}
.w2_c00122{width:17.280267pt;}
.w1_c00122{width:794.000000pt;}
.w0_c00122{width:794.080000pt;}
.x0_c00122{left:0.000000pt;}
.x5_c00122{left:14.053333pt;}
.x1_c00122{left:113.471867pt;}
.x4_c00122{left:122.400000pt;}
.x3_c00122{left:132.352133pt;}
.x6_c00122{left:148.253333pt;}
.x2_c00122{left:208.019333pt;}
.x8_c00122{left:222.560000pt;}
.x7_c00122{left:356.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8579a9d6d9330f6c992bbc6c.woff2')format("woff");}.ff1_c00123{font-family:ff1_c00123;line-height:1.070312;font-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_c00123{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0_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);}
.m2_c00123{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_c00123{vertical-align:0.000000px;}
.ls0_c00123{letter-spacing:0.000000px;}
.sc__c00123{text-shadow:none;}
.sc0_c00123{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00123{-webkit-text-stroke:0px transparent;}
.sc0_c00123{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00123{word-spacing:-18.454752px;}
.ws0_c00123{word-spacing:-18.414720px;}
.ws2_c00123{word-spacing:0.000000px;}
._d_c00123{margin-left:-5.064950px;}
._c_c00123{margin-left:-3.742575px;}
._11_c00123{margin-left:-2.152454px;}
._2_c00123{margin-left:-1.093374px;}
._5_c00123{width:1.522889px;}
._6_c00123{width:3.068852px;}
._7_c00123{width:4.371242px;}
._10_c00123{width:6.428837px;}
._1_c00123{width:7.444680px;}
._3_c00123{width:8.568491px;}
._e_c00123{width:9.728967px;}
._f_c00123{width:10.863212px;}
._b_c00123{width:15.326646px;}
._a_c00123{width:16.621650px;}
._9_c00123{width:23.230409px;}
._8_c00123{width:27.620839px;}
._4_c00123{width:30.403498px;}
._13_c00123{width:236.422214px;}
._14_c00123{width:455.833920px;}
._15_c00123{width:473.286720px;}
._12_c00123{width:845.765568px;}
._0_c00123{width:2261.432586px;}
.fc1_c00123{color:rgb(89,89,89);}
.fc0_c00123{color:rgb(0,0,0);}
.fs0_c00123{font-size:66.240000px;}
.fs1_c00123{font-size:66.384000px;}
.y0_c00123{bottom:0.000000px;}
.y29_c00123{bottom:3.600000px;}
.y1c_c00123{bottom:102.059700px;}
.y1b_c00123{bottom:141.155850px;}
.y1e_c00123{bottom:206.280000px;}
.y2d_c00123{bottom:206.355000px;}
.y1d_c00123{bottom:207.000000px;}
.y2c_c00123{bottom:233.355000px;}
.y2b_c00123{bottom:260.355000px;}
.y2a_c00123{bottom:287.355000px;}
.y1f_c00123{bottom:321.225000px;}
.y20_c00123{bottom:351.359700px;}
.y21_c00123{bottom:381.495000px;}
.y22_c00123{bottom:411.629700px;}
.y23_c00123{bottom:441.795000px;}
.y24_c00123{bottom:471.929700px;}
.y25_c00123{bottom:502.049850px;}
.y26_c00123{bottom:532.184550px;}
.y27_c00123{bottom:562.319850px;}
.y28_c00123{bottom:583.200000px;}
.y1a_c00123{bottom:614.595000px;}
.y19_c00123{bottom:635.475300px;}
.y18_c00123{bottom:656.565600px;}
.y17_c00123{bottom:677.625300px;}
.y16_c00123{bottom:698.505150px;}
.y15_c00123{bottom:719.565450px;}
.y14_c00123{bottom:740.625150px;}
.y13_c00123{bottom:761.505000px;}
.y12_c00123{bottom:782.565750px;}
.y11_c00123{bottom:803.625450px;}
.y10_c00123{bottom:824.505300px;}
.yf_c00123{bottom:845.565600px;}
.ye_c00123{bottom:866.625300px;}
.yd_c00123{bottom:887.505150px;}
.yc_c00123{bottom:908.609700px;}
.yb_c00123{bottom:929.670450px;}
.ya_c00123{bottom:950.550300px;}
.y9_c00123{bottom:971.610000px;}
.y8_c00123{bottom:992.670300px;}
.y7_c00123{bottom:1013.550150px;}
.y6_c00123{bottom:1034.609850px;}
.y5_c00123{bottom:1055.670150px;}
.y4_c00123{bottom:1076.550000px;}
.y3_c00123{bottom:1097.609700px;}
.y2_c00123{bottom:1118.670000px;}
.y1_c00123{bottom:1174.680000px;}
.h6_c00123{height:19.440300px;}
.h2_c00123{height:56.957344px;}
.h3_c00123{height:56.958544px;}
.h5_c00123{height:57.081164px;}
.h4_c00123{height:481.680000px;}
.h1_c00123{height:1263.000000px;}
.h0_c00123{height:1263.060000px;}
.w2_c00123{width:19.440300px;}
.w3_c00123{width:243.900000px;}
.w1_c00123{width:893.250000px;}
.w0_c00123{width:893.340000px;}
.x0_c00123{left:0.000000px;}
.x5_c00123{left:15.765150px;}
.x9_c00123{left:104.475000px;}
.x1_c00123{left:127.655850px;}
.x4_c00123{left:135.179850px;}
.x2_c00123{left:148.896150px;}
.x7_c00123{left:164.445120px;}
.x6_c00123{left:173.550000px;}
.x3_c00123{left:191.550000px;}
.xa_c00123{left:247.860000px;}
.x8_c00123{left:345.420000px;}
@media print{
.v0_c00123{vertical-align:0.000000pt;}
.ls0_c00123{letter-spacing:0.000000pt;}
.ws1_c00123{word-spacing:-16.404224pt;}
.ws0_c00123{word-spacing:-16.368640pt;}
.ws2_c00123{word-spacing:0.000000pt;}
._d_c00123{margin-left:-4.502177pt;}
._c_c00123{margin-left:-3.326734pt;}
._11_c00123{margin-left:-1.913292pt;}
._2_c00123{margin-left:-0.971888pt;}
._5_c00123{width:1.353679pt;}
._6_c00123{width:2.727869pt;}
._7_c00123{width:3.885548pt;}
._10_c00123{width:5.714522pt;}
._1_c00123{width:6.617493pt;}
._3_c00123{width:7.616436pt;}
._e_c00123{width:8.647971pt;}
._f_c00123{width:9.656188pt;}
._b_c00123{width:13.623685pt;}
._a_c00123{width:14.774800pt;}
._9_c00123{width:20.649253pt;}
._8_c00123{width:24.551857pt;}
._4_c00123{width:27.025331pt;}
._13_c00123{width:210.153079pt;}
._14_c00123{width:405.185707pt;}
._15_c00123{width:420.699307pt;}
._12_c00123{width:751.791616pt;}
._0_c00123{width:2010.162299pt;}
.fs0_c00123{font-size:58.880000pt;}
.fs1_c00123{font-size:59.008000pt;}
.y0_c00123{bottom:0.000000pt;}
.y29_c00123{bottom:3.200000pt;}
.y1c_c00123{bottom:90.719733pt;}
.y1b_c00123{bottom:125.471867pt;}
.y1e_c00123{bottom:183.360000pt;}
.y2d_c00123{bottom:183.426667pt;}
.y1d_c00123{bottom:184.000000pt;}
.y2c_c00123{bottom:207.426667pt;}
.y2b_c00123{bottom:231.426667pt;}
.y2a_c00123{bottom:255.426667pt;}
.y1f_c00123{bottom:285.533333pt;}
.y20_c00123{bottom:312.319733pt;}
.y21_c00123{bottom:339.106667pt;}
.y22_c00123{bottom:365.893067pt;}
.y23_c00123{bottom:392.706667pt;}
.y24_c00123{bottom:419.493067pt;}
.y25_c00123{bottom:446.266533pt;}
.y26_c00123{bottom:473.052933pt;}
.y27_c00123{bottom:499.839867pt;}
.y28_c00123{bottom:518.400000pt;}
.y1a_c00123{bottom:546.306667pt;}
.y19_c00123{bottom:564.866933pt;}
.y18_c00123{bottom:583.613867pt;}
.y17_c00123{bottom:602.333600pt;}
.y16_c00123{bottom:620.893467pt;}
.y15_c00123{bottom:639.613733pt;}
.y14_c00123{bottom:658.333467pt;}
.y13_c00123{bottom:676.893333pt;}
.y12_c00123{bottom:695.614000pt;}
.y11_c00123{bottom:714.333733pt;}
.y10_c00123{bottom:732.893600pt;}
.yf_c00123{bottom:751.613867pt;}
.ye_c00123{bottom:770.333600pt;}
.yd_c00123{bottom:788.893467pt;}
.yc_c00123{bottom:807.653067pt;}
.yb_c00123{bottom:826.373733pt;}
.ya_c00123{bottom:844.933600pt;}
.y9_c00123{bottom:863.653333pt;}
.y8_c00123{bottom:882.373600pt;}
.y7_c00123{bottom:900.933467pt;}
.y6_c00123{bottom:919.653200pt;}
.y5_c00123{bottom:938.373467pt;}
.y4_c00123{bottom:956.933333pt;}
.y3_c00123{bottom:975.653067pt;}
.y2_c00123{bottom:994.373333pt;}
.y1_c00123{bottom:1044.160000pt;}
.h6_c00123{height:17.280267pt;}
.h2_c00123{height:50.628750pt;}
.h3_c00123{height:50.629817pt;}
.h5_c00123{height:50.738813pt;}
.h4_c00123{height:428.160000pt;}
.h1_c00123{height:1122.666667pt;}
.h0_c00123{height:1122.720000pt;}
.w2_c00123{width:17.280267pt;}
.w3_c00123{width:216.800000pt;}
.w1_c00123{width:794.000000pt;}
.w0_c00123{width:794.080000pt;}
.x0_c00123{left:0.000000pt;}
.x5_c00123{left:14.013467pt;}
.x9_c00123{left:92.866667pt;}
.x1_c00123{left:113.471867pt;}
.x4_c00123{left:120.159867pt;}
.x2_c00123{left:132.352133pt;}
.x7_c00123{left:146.173440pt;}
.x6_c00123{left:154.266667pt;}
.x3_c00123{left:170.266667pt;}
.xa_c00123{left:220.320000pt;}
.x8_c00123{left:307.040000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_739f43e95aec7b87f207f71d.woff2')format("woff");}.ff1_c00124{font-family:ff1_c00124;line-height:1.070312;font-style:normal;font-weight:normal;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_6382f5c60cc97a2aa0962bdb.woff2')format("woff");}.ff2_c00124{font-family:ff2_c00124;line-height:0.938965;font-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_c00124{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0_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);}
.m2_c00124{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_c00124{vertical-align:0.000000px;}
.ls0_c00124{letter-spacing:0.000000px;}
.sc__c00124{text-shadow:none;}
.sc0_c00124{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00124{-webkit-text-stroke:0px transparent;}
.sc0_c00124{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00124{word-spacing:-18.454752px;}
.ws1_c00124{word-spacing:-18.414720px;}
.ws2_c00124{word-spacing:0.000000px;}
._c_c00124{margin-left:-2.232804px;}
._1_c00124{margin-left:-1.093374px;}
._7_c00124{width:1.005383px;}
._3_c00124{width:2.090635px;}
._2_c00124{width:3.150924px;}
._8_c00124{width:4.472321px;}
._5_c00124{width:5.828497px;}
._4_c00124{width:6.888761px;}
._d_c00124{width:7.927389px;}
._a_c00124{width:10.863212px;}
._b_c00124{width:12.093883px;}
._6_c00124{width:15.699742px;}
._9_c00124{width:16.792616px;}
._f_c00124{width:235.363134px;}
._10_c00124{width:455.833920px;}
._11_c00124{width:473.286720px;}
._e_c00124{width:845.765568px;}
._0_c00124{width:2261.432586px;}
.fc1_c00124{color:rgb(89,89,89);}
.fc0_c00124{color:rgb(0,0,0);}
.fs0_c00124{font-size:66.240000px;}
.fs1_c00124{font-size:66.384000px;}
.y0_c00124{bottom:0.000000px;}
.y25_c00124{bottom:3.675000px;}
.y19_c00124{bottom:138.276000px;}
.y18_c00124{bottom:159.150000px;}
.y17_c00124{bottom:189.210150px;}
.y1b_c00124{bottom:206.385000px;}
.y16_c00124{bottom:210.270450px;}
.y15_c00124{bottom:231.150300px;}
.y14_c00124{bottom:252.210000px;}
.y13_c00124{bottom:273.270300px;}
.y12_c00124{bottom:294.150150px;}
.y11_c00124{bottom:315.209850px;}
.y10_c00124{bottom:336.270150px;}
.yf_c00124{bottom:357.150000px;}
.ye_c00124{bottom:387.209400px;}
.yd_c00124{bottom:408.314850px;}
.yc_c00124{bottom:429.194700px;}
.yb_c00124{bottom:450.254400px;}
.ya_c00124{bottom:471.314700px;}
.y9_c00124{bottom:492.194550px;}
.y8_c00124{bottom:513.254850px;}
.y7_c00124{bottom:534.315150px;}
.y6_c00124{bottom:555.195000px;}
.y5_c00124{bottom:585.255000px;}
.y4_c00124{bottom:615.315000px;}
.y3_c00124{bottom:654.225300px;}
.y2_c00124{bottom:675.285000px;}
.y29_c00124{bottom:731.490000px;}
.y1a_c00124{bottom:732.060000px;}
.y28_c00124{bottom:758.490000px;}
.y27_c00124{bottom:785.490000px;}
.y26_c00124{bottom:812.490000px;}
.y1c_c00124{bottom:846.360000px;}
.y1d_c00124{bottom:880.815450px;}
.y1e_c00124{bottom:915.270300px;}
.y1f_c00124{bottom:949.680000px;}
.y20_c00124{bottom:984.135450px;}
.y21_c00124{bottom:1018.590300px;}
.y22_c00124{bottom:1053.000000px;}
.y23_c00124{bottom:1087.454850px;}
.y24_c00124{bottom:1108.260000px;}
.y1_c00124{bottom:1174.680000px;}
.h6_c00124{height:19.439700px;}
.h2_c00124{height:56.957344px;}
.h3_c00124{height:56.959744px;}
.h5_c00124{height:57.081164px;}
.h4_c00124{height:481.680000px;}
.h1_c00124{height:1263.000000px;}
.h0_c00124{height:1263.060000px;}
.w2_c00124{width:19.440300px;}
.w3_c00124{width:243.900000px;}
.w1_c00124{width:893.250000px;}
.w0_c00124{width:893.340000px;}
.x0_c00124{left:0.000000px;}
.x6_c00124{left:15.765150px;}
.x9_c00124{left:104.475000px;}
.x1_c00124{left:127.655850px;}
.x5_c00124{left:135.179850px;}
.x3_c00124{left:148.896150px;}
.x7_c00124{left:164.265000px;}
.x4_c00124{left:191.550000px;}
.x2_c00124{left:234.030750px;}
.xa_c00124{left:247.860000px;}
.x8_c00124{left:345.420000px;}
@media print{
.v0_c00124{vertical-align:0.000000pt;}
.ls0_c00124{letter-spacing:0.000000pt;}
.ws0_c00124{word-spacing:-16.404224pt;}
.ws1_c00124{word-spacing:-16.368640pt;}
.ws2_c00124{word-spacing:0.000000pt;}
._c_c00124{margin-left:-1.984715pt;}
._1_c00124{margin-left:-0.971888pt;}
._7_c00124{width:0.893674pt;}
._3_c00124{width:1.858343pt;}
._2_c00124{width:2.800822pt;}
._8_c00124{width:3.975396pt;}
._5_c00124{width:5.180887pt;}
._4_c00124{width:6.123343pt;}
._d_c00124{width:7.046568pt;}
._a_c00124{width:9.656188pt;}
._b_c00124{width:10.750118pt;}
._6_c00124{width:13.955326pt;}
._9_c00124{width:14.926769pt;}
._f_c00124{width:209.211675pt;}
._10_c00124{width:405.185707pt;}
._11_c00124{width:420.699307pt;}
._e_c00124{width:751.791616pt;}
._0_c00124{width:2010.162299pt;}
.fs0_c00124{font-size:58.880000pt;}
.fs1_c00124{font-size:59.008000pt;}
.y0_c00124{bottom:0.000000pt;}
.y25_c00124{bottom:3.266667pt;}
.y19_c00124{bottom:122.912000pt;}
.y18_c00124{bottom:141.466667pt;}
.y17_c00124{bottom:168.186800pt;}
.y1b_c00124{bottom:183.453333pt;}
.y16_c00124{bottom:186.907067pt;}
.y15_c00124{bottom:205.466933pt;}
.y14_c00124{bottom:224.186667pt;}
.y13_c00124{bottom:242.906933pt;}
.y12_c00124{bottom:261.466800pt;}
.y11_c00124{bottom:280.186533pt;}
.y10_c00124{bottom:298.906800pt;}
.yf_c00124{bottom:317.466667pt;}
.ye_c00124{bottom:344.186133pt;}
.yd_c00124{bottom:362.946533pt;}
.yc_c00124{bottom:381.506400pt;}
.yb_c00124{bottom:400.226133pt;}
.ya_c00124{bottom:418.946400pt;}
.y9_c00124{bottom:437.506267pt;}
.y8_c00124{bottom:456.226533pt;}
.y7_c00124{bottom:474.946800pt;}
.y6_c00124{bottom:493.506667pt;}
.y5_c00124{bottom:520.226667pt;}
.y4_c00124{bottom:546.946667pt;}
.y3_c00124{bottom:581.533600pt;}
.y2_c00124{bottom:600.253333pt;}
.y29_c00124{bottom:650.213333pt;}
.y1a_c00124{bottom:650.720000pt;}
.y28_c00124{bottom:674.213333pt;}
.y27_c00124{bottom:698.213333pt;}
.y26_c00124{bottom:722.213333pt;}
.y1c_c00124{bottom:752.320000pt;}
.y1d_c00124{bottom:782.947067pt;}
.y1e_c00124{bottom:813.573600pt;}
.y1f_c00124{bottom:844.160000pt;}
.y20_c00124{bottom:874.787067pt;}
.y21_c00124{bottom:905.413600pt;}
.y22_c00124{bottom:936.000000pt;}
.y23_c00124{bottom:966.626533pt;}
.y24_c00124{bottom:985.120000pt;}
.y1_c00124{bottom:1044.160000pt;}
.h6_c00124{height:17.279733pt;}
.h2_c00124{height:50.628750pt;}
.h3_c00124{height:50.630883pt;}
.h5_c00124{height:50.738813pt;}
.h4_c00124{height:428.160000pt;}
.h1_c00124{height:1122.666667pt;}
.h0_c00124{height:1122.720000pt;}
.w2_c00124{width:17.280267pt;}
.w3_c00124{width:216.800000pt;}
.w1_c00124{width:794.000000pt;}
.w0_c00124{width:794.080000pt;}
.x0_c00124{left:0.000000pt;}
.x6_c00124{left:14.013467pt;}
.x9_c00124{left:92.866667pt;}
.x1_c00124{left:113.471867pt;}
.x5_c00124{left:120.159867pt;}
.x3_c00124{left:132.352133pt;}
.x7_c00124{left:146.013333pt;}
.x4_c00124{left:170.266667pt;}
.x2_c00124{left:208.027333pt;}
.xa_c00124{left:220.320000pt;}
.x8_c00124{left:307.040000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b2e4d31d2b48ec827bafeff5.woff2')format("woff");}.ff1_c00125{font-family:ff1_c00125;line-height:1.070312;font-style:normal;font-weight:normal;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_b7cf596018b6805d129100ee.woff2')format("woff");}.ff2_c00125{font-family:ff2_c00125;line-height:0.938965;font-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_c00125{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0_c00125{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00125{vertical-align:0.000000px;}
.ls0_c00125{letter-spacing:0.000000px;}
.sc__c00125{text-shadow:none;}
.sc0_c00125{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00125{-webkit-text-stroke:0px transparent;}
.sc0_c00125{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00125{word-spacing:-18.454752px;}
.ws0_c00125{word-spacing:-18.414720px;}
.ws2_c00125{word-spacing:0.000000px;}
._5_c00125{margin-left:-3.245813px;}
._1_c00125{margin-left:-1.093374px;}
._b_c00125{width:1.042338px;}
._6_c00125{width:2.046546px;}
._2_c00125{width:3.150924px;}
._c_c00125{width:4.967271px;}
._a_c00125{width:6.291360px;}
._e_c00125{width:8.180473px;}
._3_c00125{width:12.453361px;}
._4_c00125{width:13.645590px;}
._d_c00125{width:15.932857px;}
._9_c00125{width:22.464006px;}
._7_c00125{width:26.827574px;}
._8_c00125{width:27.848645px;}
._0_c00125{width:2261.432586px;}
.fc1_c00125{color:rgb(89,89,89);}
.fc0_c00125{color:rgb(0,0,0);}
.fs0_c00125{font-size:66.240000px;}
.fs1_c00125{font-size:66.384000px;}
.y0_c00125{bottom:0.000000px;}
.y27_c00125{bottom:3.675000px;}
.y29_c00125{bottom:3.720000px;}
.y19_c00125{bottom:93.240300px;}
.y18_c00125{bottom:123.120300px;}
.y17_c00125{bottom:144.216450px;}
.y16_c00125{bottom:165.270300px;}
.y15_c00125{bottom:186.150150px;}
.y1b_c00125{bottom:206.355000px;}
.y14_c00125{bottom:207.209850px;}
.y13_c00125{bottom:228.270150px;}
.y12_c00125{bottom:249.150000px;}
.y11_c00125{bottom:279.210000px;}
.y10_c00125{bottom:300.270000px;}
.yf_c00125{bottom:330.150000px;}
.ye_c00125{bottom:351.209700px;}
.yd_c00125{bottom:372.270000px;}
.yc_c00125{bottom:393.195000px;}
.yb_c00125{bottom:423.255000px;}
.ya_c00125{bottom:453.315000px;}
.y9_c00125{bottom:483.195450px;}
.y8_c00125{bottom:504.255150px;}
.y7_c00125{bottom:525.315450px;}
.y6_c00125{bottom:546.195300px;}
.y5_c00125{bottom:567.255000px;}
.y4_c00125{bottom:597.315000px;}
.y3_c00125{bottom:627.195000px;}
.y2_c00125{bottom:666.285000px;}
.y1a_c00125{bottom:718.560000px;}
.y2b_c00125{bottom:727.650000px;}
.y2a_c00125{bottom:754.650000px;}
.y28_c00125{bottom:781.650000px;}
.y1c_c00125{bottom:819.360000px;}
.y1d_c00125{bottom:849.165450px;}
.y1e_c00125{bottom:878.940450px;}
.y1f_c00125{bottom:908.715450px;}
.y20_c00125{bottom:938.520300px;}
.y21_c00125{bottom:968.295300px;}
.y22_c00125{bottom:998.100150px;}
.y23_c00125{bottom:1027.875150px;}
.y24_c00125{bottom:1057.650150px;}
.y25_c00125{bottom:1087.455000px;}
.y26_c00125{bottom:1108.260000px;}
.y1_c00125{bottom:1174.680000px;}
.h5_c00125{height:19.439700px;}
.h6_c00125{height:19.650000px;}
.h2_c00125{height:56.957344px;}
.h4_c00125{height:57.081164px;}
.h3_c00125{height:481.680000px;}
.h1_c00125{height:1263.000000px;}
.h0_c00125{height:1263.060000px;}
.w2_c00125{width:19.440300px;}
.w3_c00125{width:186.300000px;}
.w6_c00125{width:731.340000px;}
.w4_c00125{width:761.640000px;}
.w7_c00125{width:784.800000px;}
.w5_c00125{width:799.500000px;}
.w1_c00125{width:893.250000px;}
.w0_c00125{width:893.340000px;}
.x0_c00125{left:0.000000px;}
.x4_c00125{left:15.765150px;}
.x8_c00125{left:79.845000px;}
.x1_c00125{left:127.655850px;}
.xa_c00125{left:131.700000px;}
.x3_c00125{left:135.179850px;}
.x2_c00125{left:148.896150px;}
.xc_c00125{left:162.000000px;}
.x6_c00125{left:168.944850px;}
.x5_c00125{left:195.690000px;}
.x9_c00125{left:278.490000px;}
.xd_c00125{left:330.150000px;}
.xb_c00125{left:360.630000px;}
.x7_c00125{left:374.220000px;}
@media print{
.v0_c00125{vertical-align:0.000000pt;}
.ls0_c00125{letter-spacing:0.000000pt;}
.ws1_c00125{word-spacing:-16.404224pt;}
.ws0_c00125{word-spacing:-16.368640pt;}
.ws2_c00125{word-spacing:0.000000pt;}
._5_c00125{margin-left:-2.885167pt;}
._1_c00125{margin-left:-0.971888pt;}
._b_c00125{width:0.926522pt;}
._6_c00125{width:1.819152pt;}
._2_c00125{width:2.800822pt;}
._c_c00125{width:4.415352pt;}
._a_c00125{width:5.592320pt;}
._e_c00125{width:7.271532pt;}
._3_c00125{width:11.069654pt;}
._4_c00125{width:12.129413pt;}
._d_c00125{width:14.162539pt;}
._9_c00125{width:19.968005pt;}
._7_c00125{width:23.846732pt;}
._8_c00125{width:24.754351pt;}
._0_c00125{width:2010.162299pt;}
.fs0_c00125{font-size:58.880000pt;}
.fs1_c00125{font-size:59.008000pt;}
.y0_c00125{bottom:0.000000pt;}
.y27_c00125{bottom:3.266667pt;}
.y29_c00125{bottom:3.306667pt;}
.y19_c00125{bottom:82.880267pt;}
.y18_c00125{bottom:109.440267pt;}
.y17_c00125{bottom:128.192400pt;}
.y16_c00125{bottom:146.906933pt;}
.y15_c00125{bottom:165.466800pt;}
.y1b_c00125{bottom:183.426667pt;}
.y14_c00125{bottom:184.186533pt;}
.y13_c00125{bottom:202.906800pt;}
.y12_c00125{bottom:221.466667pt;}
.y11_c00125{bottom:248.186667pt;}
.y10_c00125{bottom:266.906667pt;}
.yf_c00125{bottom:293.466667pt;}
.ye_c00125{bottom:312.186400pt;}
.yd_c00125{bottom:330.906667pt;}
.yc_c00125{bottom:349.506667pt;}
.yb_c00125{bottom:376.226667pt;}
.ya_c00125{bottom:402.946667pt;}
.y9_c00125{bottom:429.507067pt;}
.y8_c00125{bottom:448.226800pt;}
.y7_c00125{bottom:466.947067pt;}
.y6_c00125{bottom:485.506933pt;}
.y5_c00125{bottom:504.226667pt;}
.y4_c00125{bottom:530.946667pt;}
.y3_c00125{bottom:557.506667pt;}
.y2_c00125{bottom:592.253333pt;}
.y1a_c00125{bottom:638.720000pt;}
.y2b_c00125{bottom:646.800000pt;}
.y2a_c00125{bottom:670.800000pt;}
.y28_c00125{bottom:694.800000pt;}
.y1c_c00125{bottom:728.320000pt;}
.y1d_c00125{bottom:754.813733pt;}
.y1e_c00125{bottom:781.280400pt;}
.y1f_c00125{bottom:807.747067pt;}
.y20_c00125{bottom:834.240267pt;}
.y21_c00125{bottom:860.706933pt;}
.y22_c00125{bottom:887.200133pt;}
.y23_c00125{bottom:913.666800pt;}
.y24_c00125{bottom:940.133467pt;}
.y25_c00125{bottom:966.626667pt;}
.y26_c00125{bottom:985.120000pt;}
.y1_c00125{bottom:1044.160000pt;}
.h5_c00125{height:17.279733pt;}
.h6_c00125{height:17.466667pt;}
.h2_c00125{height:50.628750pt;}
.h4_c00125{height:50.738813pt;}
.h3_c00125{height:428.160000pt;}
.h1_c00125{height:1122.666667pt;}
.h0_c00125{height:1122.720000pt;}
.w2_c00125{width:17.280267pt;}
.w3_c00125{width:165.600000pt;}
.w6_c00125{width:650.080000pt;}
.w4_c00125{width:677.013333pt;}
.w7_c00125{width:697.600000pt;}
.w5_c00125{width:710.666667pt;}
.w1_c00125{width:794.000000pt;}
.w0_c00125{width:794.080000pt;}
.x0_c00125{left:0.000000pt;}
.x4_c00125{left:14.013467pt;}
.x8_c00125{left:70.973333pt;}
.x1_c00125{left:113.471867pt;}
.xa_c00125{left:117.066667pt;}
.x3_c00125{left:120.159867pt;}
.x2_c00125{left:132.352133pt;}
.xc_c00125{left:144.000000pt;}
.x6_c00125{left:150.173200pt;}
.x5_c00125{left:173.946667pt;}
.x9_c00125{left:247.546667pt;}
.xd_c00125{left:293.466667pt;}
.xb_c00125{left:320.560000pt;}
.x7_c00125{left:332.640000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b41503a71e30ee352f05bbca.woff2')format("woff");}.ff1_c00126{font-family:ff1_c00126;line-height:1.070312;font-style:normal;font-weight:normal;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_2c661173fbe578d4a1a8299a.woff2')format("woff");}.ff2_c00126{font-family:ff2_c00126;line-height:0.938965;font-style: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);}
.m1_c00126{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_c00126{vertical-align:0.000000px;}
.ls0_c00126{letter-spacing:0.000000px;}
.sc__c00126{text-shadow:none;}
.sc0_c00126{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00126{-webkit-text-stroke:0px transparent;}
.sc0_c00126{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00126{word-spacing:-36.829440px;}
.ws1_c00126{word-spacing:0.000000px;}
._b_c00126{margin-left:-3.046645px;}
._1_c00126{margin-left:-1.530243px;}
._5_c00126{width:1.019398px;}
._8_c00126{width:2.934593px;}
._a_c00126{width:4.107457px;}
._9_c00126{width:6.027890px;}
._c_c00126{width:7.489417px;}
._d_c00126{width:8.492763px;}
._6_c00126{width:9.619785px;}
._3_c00126{width:12.027898px;}
._2_c00126{width:13.181049px;}
._4_c00126{width:14.540823px;}
._e_c00126{width:15.780719px;}
._f_c00126{width:22.785103px;}
._10_c00126{width:24.640859px;}
._11_c00126{width:25.774470px;}
._13_c00126{width:31.751685px;}
._12_c00126{width:32.968414px;}
._7_c00126{width:51.137187px;}
._0_c00126{width:2261.432586px;}
.fc0_c00126{color:rgb(0,0,0);}
.fs0_c00126{font-size:66.240000px;}
.y0_c00126{bottom:0.000000px;}
.y2e_c00126{bottom:104.400300px;}
.y2d_c00126{bottom:125.460000px;}
.y2c_c00126{bottom:146.556150px;}
.y2b_c00126{bottom:167.430150px;}
.y2a_c00126{bottom:188.490450px;}
.y29_c00126{bottom:209.550150px;}
.y28_c00126{bottom:230.430000px;}
.y27_c00126{bottom:251.490300px;}
.y26_c00126{bottom:272.550000px;}
.y25_c00126{bottom:302.430000px;}
.y24_c00126{bottom:332.490000px;}
.y23_c00126{bottom:353.550150px;}
.y22_c00126{bottom:374.430000px;}
.y21_c00126{bottom:404.535150px;}
.y20_c00126{bottom:425.595450px;}
.y1f_c00126{bottom:446.475300px;}
.y1e_c00126{bottom:467.535000px;}
.y1d_c00126{bottom:497.595150px;}
.y1c_c00126{bottom:518.475000px;}
.y1b_c00126{bottom:548.534700px;}
.y1a_c00126{bottom:569.595000px;}
.y19_c00126{bottom:599.475150px;}
.y18_c00126{bottom:620.534850px;}
.y17_c00126{bottom:641.625150px;}
.y16_c00126{bottom:662.505000px;}
.y15_c00126{bottom:683.565300px;}
.y14_c00126{bottom:704.625000px;}
.y13_c00126{bottom:734.505000px;}
.y12_c00126{bottom:755.565300px;}
.y11_c00126{bottom:776.625000px;}
.y10_c00126{bottom:806.506050px;}
.yf_c00126{bottom:827.565750px;}
.ye_c00126{bottom:848.625450px;}
.yd_c00126{bottom:869.505300px;}
.yc_c00126{bottom:890.565600px;}
.yb_c00126{bottom:911.670450px;}
.ya_c00126{bottom:932.550300px;}
.y9_c00126{bottom:953.610000px;}
.y8_c00126{bottom:983.670600px;}
.y7_c00126{bottom:1004.550450px;}
.y6_c00126{bottom:1025.610150px;}
.y5_c00126{bottom:1046.670450px;}
.y4_c00126{bottom:1067.550300px;}
.y3_c00126{bottom:1088.610000px;}
.y2_c00126{bottom:1118.670000px;}
.y1_c00126{bottom:1174.680000px;}
.h2_c00126{height:56.957344px;}
.h1_c00126{height:1263.000000px;}
.h0_c00126{height:1263.060000px;}
.w1_c00126{width:893.250000px;}
.w0_c00126{width:893.340000px;}
.x0_c00126{left:0.000000px;}
.x1_c00126{left:127.655850px;}
.x2_c00126{left:148.896150px;}
@media print{
.v0_c00126{vertical-align:0.000000pt;}
.ls0_c00126{letter-spacing:0.000000pt;}
.ws0_c00126{word-spacing:-32.737280pt;}
.ws1_c00126{word-spacing:0.000000pt;}
._b_c00126{margin-left:-2.708129pt;}
._1_c00126{margin-left:-1.360216pt;}
._5_c00126{width:0.906132pt;}
._8_c00126{width:2.608527pt;}
._a_c00126{width:3.651073pt;}
._9_c00126{width:5.358125pt;}
._c_c00126{width:6.657260pt;}
._d_c00126{width:7.549123pt;}
._6_c00126{width:8.550920pt;}
._3_c00126{width:10.691465pt;}
._2_c00126{width:11.716488pt;}
._4_c00126{width:12.925176pt;}
._e_c00126{width:14.027306pt;}
._f_c00126{width:20.253425pt;}
._10_c00126{width:21.902986pt;}
._11_c00126{width:22.910640pt;}
._13_c00126{width:28.223720pt;}
._12_c00126{width:29.305257pt;}
._7_c00126{width:45.455278pt;}
._0_c00126{width:2010.162299pt;}
.fs0_c00126{font-size:58.880000pt;}
.y0_c00126{bottom:0.000000pt;}
.y2e_c00126{bottom:92.800267pt;}
.y2d_c00126{bottom:111.520000pt;}
.y2c_c00126{bottom:130.272133pt;}
.y2b_c00126{bottom:148.826800pt;}
.y2a_c00126{bottom:167.547067pt;}
.y29_c00126{bottom:186.266800pt;}
.y28_c00126{bottom:204.826667pt;}
.y27_c00126{bottom:223.546933pt;}
.y26_c00126{bottom:242.266667pt;}
.y25_c00126{bottom:268.826667pt;}
.y24_c00126{bottom:295.546667pt;}
.y23_c00126{bottom:314.266800pt;}
.y22_c00126{bottom:332.826667pt;}
.y21_c00126{bottom:359.586800pt;}
.y20_c00126{bottom:378.307067pt;}
.y1f_c00126{bottom:396.866933pt;}
.y1e_c00126{bottom:415.586667pt;}
.y1d_c00126{bottom:442.306800pt;}
.y1c_c00126{bottom:460.866667pt;}
.y1b_c00126{bottom:487.586400pt;}
.y1a_c00126{bottom:506.306667pt;}
.y19_c00126{bottom:532.866800pt;}
.y18_c00126{bottom:551.586533pt;}
.y17_c00126{bottom:570.333467pt;}
.y16_c00126{bottom:588.893333pt;}
.y15_c00126{bottom:607.613600pt;}
.y14_c00126{bottom:626.333333pt;}
.y13_c00126{bottom:652.893333pt;}
.y12_c00126{bottom:671.613600pt;}
.y11_c00126{bottom:690.333333pt;}
.y10_c00126{bottom:716.894267pt;}
.yf_c00126{bottom:735.614000pt;}
.ye_c00126{bottom:754.333733pt;}
.yd_c00126{bottom:772.893600pt;}
.yc_c00126{bottom:791.613867pt;}
.yb_c00126{bottom:810.373733pt;}
.ya_c00126{bottom:828.933600pt;}
.y9_c00126{bottom:847.653333pt;}
.y8_c00126{bottom:874.373867pt;}
.y7_c00126{bottom:892.933733pt;}
.y6_c00126{bottom:911.653467pt;}
.y5_c00126{bottom:930.373733pt;}
.y4_c00126{bottom:948.933600pt;}
.y3_c00126{bottom:967.653333pt;}
.y2_c00126{bottom:994.373333pt;}
.y1_c00126{bottom:1044.160000pt;}
.h2_c00126{height:50.628750pt;}
.h1_c00126{height:1122.666667pt;}
.h0_c00126{height:1122.720000pt;}
.w1_c00126{width:794.000000pt;}
.w0_c00126{width:794.080000pt;}
.x0_c00126{left:0.000000pt;}
.x1_c00126{left:113.471867pt;}
.x2_c00126{left:132.352133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0a72d2912b59614c43ab0ca4.woff2')format("woff");}.ff1_c00127{font-family:ff1_c00127;line-height:1.070312;font-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_c00127{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0_c00127{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00127{vertical-align:0.000000px;}
.ls0_c00127{letter-spacing:0.000000px;}
.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:-18.454752px;}
.ws1_c00127{word-spacing:0.000000px;}
._d_c00127{margin-left:-3.231300px;}
._f_c00127{margin-left:-2.110263px;}
._2_c00127{margin-left:-1.041532px;}
._5_c00127{width:1.583228px;}
._6_c00127{width:2.666021px;}
._c_c00127{width:4.124941px;}
._a_c00127{width:5.165691px;}
._7_c00127{width:6.888310px;}
._8_c00127{width:8.412360px;}
._9_c00127{width:9.455983px;}
._10_c00127{width:11.194169px;}
._b_c00127{width:12.236454px;}
._4_c00127{width:13.963884px;}
._1_c00127{width:14.969059px;}
._3_c00127{width:16.011203px;}
._e_c00127{width:41.235697px;}
._11_c00127{width:236.380023px;}
._12_c00127{width:455.833920px;}
._13_c00127{width:473.286720px;}
._0_c00127{width:2261.432586px;}
.fc1_c00127{color:rgb(89,89,89);}
.fc0_c00127{color:rgb(0,0,0);}
.fs0_c00127{font-size:66.240000px;}
.fs1_c00127{font-size:66.384000px;}
.y0_c00127{bottom:0.000000px;}
.y29_c00127{bottom:3.750000px;}
.y1b_c00127{bottom:89.279700px;}
.y1a_c00127{bottom:110.340000px;}
.y19_c00127{bottom:131.400300px;}
.y18_c00127{bottom:152.310000px;}
.y17_c00127{bottom:173.370300px;}
.y16_c00127{bottom:194.430000px;}
.y1d_c00127{bottom:206.280000px;}
.y15_c00127{bottom:215.309850px;}
.y14_c00127{bottom:236.370150px;}
.y13_c00127{bottom:257.429850px;}
.y12_c00127{bottom:278.309700px;}
.y11_c00127{bottom:299.370000px;}
.y10_c00127{bottom:329.430000px;}
.yf_c00127{bottom:350.309850px;}
.ye_c00127{bottom:371.370150px;}
.yd_c00127{bottom:392.475000px;}
.yc_c00127{bottom:422.355000px;}
.yb_c00127{bottom:461.415000px;}
.y2d_c00127{bottom:526.605000px;}
.y1c_c00127{bottom:536.940000px;}
.y2c_c00127{bottom:553.605000px;}
.y2b_c00127{bottom:580.605000px;}
.y2a_c00127{bottom:607.605000px;}
.y1e_c00127{bottom:660.810000px;}
.y1f_c00127{bottom:685.440450px;}
.y20_c00127{bottom:710.100150px;}
.y21_c00127{bottom:734.730000px;}
.y22_c00127{bottom:759.390300px;}
.y23_c00127{bottom:784.005000px;}
.y24_c00127{bottom:808.665300px;}
.y25_c00127{bottom:833.295150px;}
.y26_c00127{bottom:857.954850px;}
.y27_c00127{bottom:882.570150px;}
.y28_c00127{bottom:903.300000px;}
.ya_c00127{bottom:950.550300px;}
.y9_c00127{bottom:971.610000px;}
.y8_c00127{bottom:992.670300px;}
.y7_c00127{bottom:1013.550150px;}
.y6_c00127{bottom:1034.609850px;}
.y5_c00127{bottom:1055.670150px;}
.y4_c00127{bottom:1076.550000px;}
.y3_c00127{bottom:1097.609700px;}
.y2_c00127{bottom:1118.670000px;}
.y1_c00127{bottom:1174.680000px;}
.h5_c00127{height:19.650000px;}
.h2_c00127{height:56.957344px;}
.h4_c00127{height:57.081164px;}
.h3_c00127{height:481.500000px;}
.h1_c00127{height:1263.000000px;}
.h0_c00127{height:1263.060000px;}
.w2_c00127{width:19.439700px;}
.w1_c00127{width:893.250000px;}
.w0_c00127{width:893.340000px;}
.x0_c00127{left:0.000000px;}
.x4_c00127{left:15.764700px;}
.x1_c00127{left:127.655850px;}
.x3_c00127{left:134.640300px;}
.x2_c00127{left:148.896150px;}
.x5_c00127{left:163.725000px;}
.x7_c00127{left:247.320000px;}
.x6_c00127{left:368.205000px;}
@media print{
.v0_c00127{vertical-align:0.000000pt;}
.ls0_c00127{letter-spacing:0.000000pt;}
.ws0_c00127{word-spacing:-16.404224pt;}
.ws1_c00127{word-spacing:0.000000pt;}
._d_c00127{margin-left:-2.872266pt;}
._f_c00127{margin-left:-1.875790pt;}
._2_c00127{margin-left:-0.925807pt;}
._5_c00127{width:1.407314pt;}
._6_c00127{width:2.369796pt;}
._c_c00127{width:3.666614pt;}
._a_c00127{width:4.591725pt;}
._7_c00127{width:6.122942pt;}
._8_c00127{width:7.477653pt;}
._9_c00127{width:8.405318pt;}
._10_c00127{width:9.950372pt;}
._b_c00127{width:10.876848pt;}
._4_c00127{width:12.412341pt;}
._1_c00127{width:13.305830pt;}
._3_c00127{width:14.232181pt;}
._e_c00127{width:36.653953pt;}
._11_c00127{width:210.115576pt;}
._12_c00127{width:405.185707pt;}
._13_c00127{width:420.699307pt;}
._0_c00127{width:2010.162299pt;}
.fs0_c00127{font-size:58.880000pt;}
.fs1_c00127{font-size:59.008000pt;}
.y0_c00127{bottom:0.000000pt;}
.y29_c00127{bottom:3.333333pt;}
.y1b_c00127{bottom:79.359733pt;}
.y1a_c00127{bottom:98.080000pt;}
.y19_c00127{bottom:116.800267pt;}
.y18_c00127{bottom:135.386667pt;}
.y17_c00127{bottom:154.106933pt;}
.y16_c00127{bottom:172.826667pt;}
.y1d_c00127{bottom:183.360000pt;}
.y15_c00127{bottom:191.386533pt;}
.y14_c00127{bottom:210.106800pt;}
.y13_c00127{bottom:228.826533pt;}
.y12_c00127{bottom:247.386400pt;}
.y11_c00127{bottom:266.106667pt;}
.y10_c00127{bottom:292.826667pt;}
.yf_c00127{bottom:311.386533pt;}
.ye_c00127{bottom:330.106800pt;}
.yd_c00127{bottom:348.866667pt;}
.yc_c00127{bottom:375.426667pt;}
.yb_c00127{bottom:410.146667pt;}
.y2d_c00127{bottom:468.093333pt;}
.y1c_c00127{bottom:477.280000pt;}
.y2c_c00127{bottom:492.093333pt;}
.y2b_c00127{bottom:516.093333pt;}
.y2a_c00127{bottom:540.093333pt;}
.y1e_c00127{bottom:587.386667pt;}
.y1f_c00127{bottom:609.280400pt;}
.y20_c00127{bottom:631.200133pt;}
.y21_c00127{bottom:653.093333pt;}
.y22_c00127{bottom:675.013600pt;}
.y23_c00127{bottom:696.893333pt;}
.y24_c00127{bottom:718.813600pt;}
.y25_c00127{bottom:740.706800pt;}
.y26_c00127{bottom:762.626533pt;}
.y27_c00127{bottom:784.506800pt;}
.y28_c00127{bottom:802.933333pt;}
.ya_c00127{bottom:844.933600pt;}
.y9_c00127{bottom:863.653333pt;}
.y8_c00127{bottom:882.373600pt;}
.y7_c00127{bottom:900.933467pt;}
.y6_c00127{bottom:919.653200pt;}
.y5_c00127{bottom:938.373467pt;}
.y4_c00127{bottom:956.933333pt;}
.y3_c00127{bottom:975.653067pt;}
.y2_c00127{bottom:994.373333pt;}
.y1_c00127{bottom:1044.160000pt;}
.h5_c00127{height:17.466667pt;}
.h2_c00127{height:50.628750pt;}
.h4_c00127{height:50.738813pt;}
.h3_c00127{height:428.000000pt;}
.h1_c00127{height:1122.666667pt;}
.h0_c00127{height:1122.720000pt;}
.w2_c00127{width:17.279733pt;}
.w1_c00127{width:794.000000pt;}
.w0_c00127{width:794.080000pt;}
.x0_c00127{left:0.000000pt;}
.x4_c00127{left:14.013067pt;}
.x1_c00127{left:113.471867pt;}
.x3_c00127{left:119.680267pt;}
.x2_c00127{left:132.352133pt;}
.x5_c00127{left:145.533333pt;}
.x7_c00127{left:219.840000pt;}
.x6_c00127{left:327.293333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_27cbeff38f85592114c4e05d.woff2')format("woff");}.ff1_c00128{font-family:ff1_c00128;line-height:1.070312;font-style:normal;font-weight:normal;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_2c661173fbe578d4a1a8299a.woff2')format("woff");}.ff2_c00128{font-family:ff2_c00128;line-height:0.938965;font-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_c00128{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0_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);}
.m2_c00128{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00128{vertical-align:-15.841380px;}
.v1_c00128{vertical-align:-5.758596px;}
.v0_c00128{vertical-align:0.000000px;}
.ls1_c00128{letter-spacing:0.000000px;}
.ls0_c00128{letter-spacing:0.058620px;}
.sc__c00128{text-shadow:none;}
.sc0_c00128{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00128{-webkit-text-stroke:0px transparent;}
.sc0_c00128{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00128{word-spacing:-36.829440px;}
.ws2_c00128{word-spacing:-15.012000px;}
.ws0_c00128{word-spacing:-11.609280px;}
.ws3_c00128{word-spacing:0.000000px;}
._9_c00128{margin-left:-4.502310px;}
._7_c00128{margin-left:-2.649823px;}
._2_c00128{margin-left:-1.459736px;}
._8_c00128{width:1.128530px;}
._a_c00128{width:2.945866px;}
._b_c00128{width:4.503369px;}
._c_c00128{width:5.632009px;}
._5_c00128{width:7.616359px;}
._6_c00128{width:8.930136px;}
._f_c00128{width:11.393791px;}
._1_c00128{width:12.982349px;}
._3_c00128{width:14.282934px;}
._4_c00128{width:15.585675px;}
._d_c00128{width:17.157154px;}
._e_c00128{width:20.203517px;}
._0_c00128{width:2261.432586px;}
.fc1_c00128{color:rgb(89,89,89);}
.fc0_c00128{color:rgb(0,0,0);}
.fs1_c00128{font-size:41.760000px;}
.fs4_c00128{font-size:43.920000px;}
.fs2_c00128{font-size:54.000000px;}
.fs3_c00128{font-size:54.144000px;}
.fs0_c00128{font-size:66.240000px;}
.y0_c00128{bottom:0.000000px;}
.y1c_c00128{bottom:11.985000px;}
.y2d_c00128{bottom:46.049700px;}
.y2c_c00128{bottom:61.560000px;}
.y1d_c00128{bottom:63.389850px;}
.y2b_c00128{bottom:110.235000px;}
.y1a_c00128{bottom:110.700000px;}
.y1e_c00128{bottom:114.764850px;}
.y1b_c00128{bottom:154.980000px;}
.y2a_c00128{bottom:158.910000px;}
.y1f_c00128{bottom:166.169700px;}
.y24_c00128{bottom:173.595000px;}
.y29_c00128{bottom:207.570000px;}
.y20_c00128{bottom:217.544700px;}
.y28_c00128{bottom:256.245000px;}
.y21_c00128{bottom:268.949550px;}
.y27_c00128{bottom:304.920000px;}
.y22_c00128{bottom:320.369700px;}
.y26_c00128{bottom:353.625000px;}
.y23_c00128{bottom:371.729400px;}
.y25_c00128{bottom:398.310000px;}
.y19_c00128{bottom:599.475300px;}
.y18_c00128{bottom:620.535000px;}
.y17_c00128{bottom:641.625300px;}
.y16_c00128{bottom:662.505150px;}
.y15_c00128{bottom:683.565450px;}
.y14_c00128{bottom:704.625150px;}
.y13_c00128{bottom:725.505000px;}
.y12_c00128{bottom:746.565300px;}
.y11_c00128{bottom:767.625000px;}
.y10_c00128{bottom:797.505150px;}
.yf_c00128{bottom:818.565450px;}
.ye_c00128{bottom:839.625150px;}
.yd_c00128{bottom:860.505000px;}
.yc_c00128{bottom:881.565300px;}
.yb_c00128{bottom:902.670150px;}
.ya_c00128{bottom:923.550000px;}
.y9_c00128{bottom:944.609700px;}
.y8_c00128{bottom:965.670150px;}
.y7_c00128{bottom:986.550000px;}
.y6_c00128{bottom:1016.610000px;}
.y5_c00128{bottom:1046.670000px;}
.y4_c00128{bottom:1076.550000px;}
.y3_c00128{bottom:1097.609700px;}
.y2_c00128{bottom:1118.670000px;}
.y1_c00128{bottom:1174.680000px;}
.h4_c00128{height:46.432617px;}
.h5_c00128{height:46.556438px;}
.h2_c00128{height:56.957344px;}
.h3_c00128{height:425.160000px;}
.h1_c00128{height:1263.000000px;}
.h0_c00128{height:1263.060000px;}
.w2_c00128{width:680.220000px;}
.w1_c00128{width:893.250000px;}
.w0_c00128{width:893.340000px;}
.x0_c00128{left:0.000000px;}
.x5_c00128{left:26.999700px;}
.x4_c00128{left:38.954940px;}
.x3_c00128{left:50.189700px;}
.x1_c00128{left:127.655850px;}
.x2_c00128{left:148.896150px;}
.x6_c00128{left:275.789700px;}
.x7_c00128{left:509.789700px;}
@media print{
.v2_c00128{vertical-align:-14.081227pt;}
.v1_c00128{vertical-align:-5.118752pt;}
.v0_c00128{vertical-align:0.000000pt;}
.ls1_c00128{letter-spacing:0.000000pt;}
.ls0_c00128{letter-spacing:0.052107pt;}
.ws1_c00128{word-spacing:-32.737280pt;}
.ws2_c00128{word-spacing:-13.344000pt;}
.ws0_c00128{word-spacing:-10.319360pt;}
.ws3_c00128{word-spacing:0.000000pt;}
._9_c00128{margin-left:-4.002053pt;}
._7_c00128{margin-left:-2.355398pt;}
._2_c00128{margin-left:-1.297543pt;}
._8_c00128{width:1.003138pt;}
._a_c00128{width:2.618547pt;}
._b_c00128{width:4.002994pt;}
._c_c00128{width:5.006230pt;}
._5_c00128{width:6.770097pt;}
._6_c00128{width:7.937898pt;}
._f_c00128{width:10.127814pt;}
._1_c00128{width:11.539866pt;}
._3_c00128{width:12.695941pt;}
._4_c00128{width:13.853934pt;}
._d_c00128{width:15.250803pt;}
._e_c00128{width:17.958682pt;}
._0_c00128{width:2010.162299pt;}
.fs1_c00128{font-size:37.120000pt;}
.fs4_c00128{font-size:39.040000pt;}
.fs2_c00128{font-size:48.000000pt;}
.fs3_c00128{font-size:48.128000pt;}
.fs0_c00128{font-size:58.880000pt;}
.y0_c00128{bottom:0.000000pt;}
.y1c_c00128{bottom:10.653333pt;}
.y2d_c00128{bottom:40.933067pt;}
.y2c_c00128{bottom:54.720000pt;}
.y1d_c00128{bottom:56.346533pt;}
.y2b_c00128{bottom:97.986667pt;}
.y1a_c00128{bottom:98.400000pt;}
.y1e_c00128{bottom:102.013200pt;}
.y1b_c00128{bottom:137.760000pt;}
.y2a_c00128{bottom:141.253333pt;}
.y1f_c00128{bottom:147.706400pt;}
.y24_c00128{bottom:154.306667pt;}
.y29_c00128{bottom:184.506667pt;}
.y20_c00128{bottom:193.373067pt;}
.y28_c00128{bottom:227.773333pt;}
.y21_c00128{bottom:239.066267pt;}
.y27_c00128{bottom:271.040000pt;}
.y22_c00128{bottom:284.773067pt;}
.y26_c00128{bottom:314.333333pt;}
.y23_c00128{bottom:330.426133pt;}
.y25_c00128{bottom:354.053333pt;}
.y19_c00128{bottom:532.866933pt;}
.y18_c00128{bottom:551.586667pt;}
.y17_c00128{bottom:570.333600pt;}
.y16_c00128{bottom:588.893467pt;}
.y15_c00128{bottom:607.613733pt;}
.y14_c00128{bottom:626.333467pt;}
.y13_c00128{bottom:644.893333pt;}
.y12_c00128{bottom:663.613600pt;}
.y11_c00128{bottom:682.333333pt;}
.y10_c00128{bottom:708.893467pt;}
.yf_c00128{bottom:727.613733pt;}
.ye_c00128{bottom:746.333467pt;}
.yd_c00128{bottom:764.893333pt;}
.yc_c00128{bottom:783.613600pt;}
.yb_c00128{bottom:802.373467pt;}
.ya_c00128{bottom:820.933333pt;}
.y9_c00128{bottom:839.653067pt;}
.y8_c00128{bottom:858.373467pt;}
.y7_c00128{bottom:876.933333pt;}
.y6_c00128{bottom:903.653333pt;}
.y5_c00128{bottom:930.373333pt;}
.y4_c00128{bottom:956.933333pt;}
.y3_c00128{bottom:975.653067pt;}
.y2_c00128{bottom:994.373333pt;}
.y1_c00128{bottom:1044.160000pt;}
.h4_c00128{height:41.273438pt;}
.h5_c00128{height:41.383500pt;}
.h2_c00128{height:50.628750pt;}
.h3_c00128{height:377.920000pt;}
.h1_c00128{height:1122.666667pt;}
.h0_c00128{height:1122.720000pt;}
.w2_c00128{width:604.640000pt;}
.w1_c00128{width:794.000000pt;}
.w0_c00128{width:794.080000pt;}
.x0_c00128{left:0.000000pt;}
.x5_c00128{left:23.999733pt;}
.x4_c00128{left:34.626613pt;}
.x3_c00128{left:44.613067pt;}
.x1_c00128{left:113.471867pt;}
.x2_c00128{left:132.352133pt;}
.x6_c00128{left:245.146400pt;}
.x7_c00128{left:453.146400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7ec2212b9e45f9040de11e34.woff2')format("woff");}.ff1_c00129{font-family:ff1_c00129;line-height:1.070312;font-style:normal;font-weight:normal;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_173f7ca48e971b0c59185bb6.woff2')format("woff");}.ff2_c00129{font-family:ff2_c00129;line-height:0.938965;font-style:normal;font-weight:normal;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_49b98351ba6f82602d88addb.woff2')format("woff");}.ff3_c00129{font-family:ff3_c00129;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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);}
.m1_c00129{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1_c00129{vertical-align:-5.760936px;}
.v0_c00129{vertical-align:0.000000px;}
.ls1_c00129{letter-spacing:0.000000px;}
.ls0_c00129{letter-spacing:0.070560px;}
.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:-18.414720px;}
.ws0_c00129{word-spacing:-11.609280px;}
.ws2_c00129{word-spacing:0.000000px;}
._7_c00129{margin-left:-4.041374px;}
._c_c00129{margin-left:-2.914759px;}
._1_c00129{margin-left:-1.208789px;}
._2_c00129{width:1.012322px;}
._9_c00129{width:3.774610px;}
._8_c00129{width:4.826957px;}
._a_c00129{width:6.040865px;}
._b_c00129{width:7.319060px;}
._6_c00129{width:8.344532px;}
._d_c00129{width:13.712066px;}
._e_c00129{width:15.462076px;}
._10_c00129{width:16.957544px;}
._3_c00129{width:23.845821px;}
._4_c00129{width:30.023138px;}
._5_c00129{width:31.625127px;}
._f_c00129{width:80.600161px;}
._0_c00129{width:2261.432586px;}
.fc0_c00129{color:rgb(0,0,0);}
.fs1_c00129{font-size:41.760000px;}
.fs2_c00129{font-size:59.760000px;}
.fs0_c00129{font-size:66.240000px;}
.y0_c00129{bottom:0.000000px;}
.y1e_c00129{bottom:8.100000px;}
.y1a_c00129{bottom:8.100150px;}
.y17_c00129{bottom:16.560000px;}
.y1f_c00129{bottom:17.100000px;}
.y1b_c00129{bottom:17.130000px;}
.y15_c00129{bottom:18.900000px;}
.y1d_c00129{bottom:26.100000px;}
.y19_c00129{bottom:26.130000px;}
.y13_c00129{bottom:27.900000px;}
.y14_c00129{bottom:36.900000px;}
.y16_c00129{bottom:39.060000px;}
.y2c_c00129{bottom:127.620150px;}
.y2b_c00129{bottom:154.290000px;}
.y2a_c00129{bottom:182.010000px;}
.y29_c00129{bottom:209.910000px;}
.y28_c00129{bottom:237.630000px;}
.y27_c00129{bottom:265.350000px;}
.y26_c00129{bottom:293.070000px;}
.y25_c00129{bottom:320.790000px;}
.y24_c00129{bottom:348.510000px;}
.y23_c00129{bottom:394.455000px;}
.y22_c00129{bottom:440.175000px;}
.y21_c00129{bottom:485.895000px;}
.y20_c00129{bottom:531.615000px;}
.y1c_c00129{bottom:577.335000px;}
.y18_c00129{bottom:623.055000px;}
.y12_c00129{bottom:668.985000px;}
.y11_c00129{bottom:758.445300px;}
.y10_c00129{bottom:779.505000px;}
.yf_c00129{bottom:827.565150px;}
.ye_c00129{bottom:848.624850px;}
.yd_c00129{bottom:869.504700px;}
.yc_c00129{bottom:890.565000px;}
.yb_c00129{bottom:920.670900px;}
.ya_c00129{bottom:941.550750px;}
.y9_c00129{bottom:962.610450px;}
.y8_c00129{bottom:983.670150px;}
.y7_c00129{bottom:1004.550000px;}
.y6_c00129{bottom:1025.609700px;}
.y5_c00129{bottom:1046.670150px;}
.y4_c00129{bottom:1067.550000px;}
.y3_c00129{bottom:1097.610000px;}
.y2_c00129{bottom:1118.670000px;}
.y1_c00129{bottom:1174.680000px;}
.h7_c00129{height:27.000000px;}
.h6_c00129{height:45.000000px;}
.h5_c00129{height:45.036300px;}
.h4_c00129{height:48.224531px;}
.h2_c00129{height:56.957344px;}
.h3_c00129{height:66.600000px;}
.h1_c00129{height:1263.000000px;}
.h0_c00129{height:1263.060000px;}
.w3_c00129{width:73.800000px;}
.w7_c00129{width:74.159700px;}
.wa_c00129{width:74.700000px;}
.w5_c00129{width:116.135700px;}
.w6_c00129{width:116.279850px;}
.w4_c00129{width:137.555850px;}
.w9_c00129{width:232.230000px;}
.w2_c00129{width:232.590000px;}
.w8_c00129{width:679.425000px;}
.w1_c00129{width:893.250000px;}
.w0_c00129{width:893.340000px;}
.x0_c00129{left:0.000000px;}
.xf_c00129{left:4.859700px;}
.xe_c00129{left:16.560000px;}
.x7_c00129{left:18.540000px;}
.x6_c00129{left:23.040000px;}
.x10_c00129{left:25.380000px;}
.xa_c00129{left:29.730000px;}
.xc_c00129{left:32.400000px;}
.x17_c00129{left:35.100000px;}
.x16_c00129{left:36.900000px;}
.x12_c00129{left:41.940000px;}
.x9_c00129{left:43.590000px;}
.x4_c00129{left:45.534000px;}
.x14_c00129{left:46.620000px;}
.x15_c00129{left:47.730000px;}
.x11_c00129{left:50.250000px;}
.x18_c00129{left:52.410000px;}
.x19_c00129{left:55.260000px;}
.x13_c00129{left:57.270000px;}
.x1_c00129{left:127.655850px;}
.x2_c00129{left:148.896150px;}
.x3_c00129{left:234.029850px;}
.x5_c00129{left:361.875000px;}
.x8_c00129{left:436.395000px;}
.xb_c00129{left:574.665000px;}
.xd_c00129{left:691.530000px;}
@media print{
.v1_c00129{vertical-align:-5.120832pt;}
.v0_c00129{vertical-align:0.000000pt;}
.ls1_c00129{letter-spacing:0.000000pt;}
.ls0_c00129{letter-spacing:0.062720pt;}
.ws1_c00129{word-spacing:-16.368640pt;}
.ws0_c00129{word-spacing:-10.319360pt;}
.ws2_c00129{word-spacing:0.000000pt;}
._7_c00129{margin-left:-3.592332pt;}
._c_c00129{margin-left:-2.590897pt;}
._1_c00129{margin-left:-1.074479pt;}
._2_c00129{width:0.899842pt;}
._9_c00129{width:3.355209pt;}
._8_c00129{width:4.290629pt;}
._a_c00129{width:5.369658pt;}
._b_c00129{width:6.505831pt;}
._6_c00129{width:7.417361pt;}
._d_c00129{width:12.188503pt;}
._e_c00129{width:13.744068pt;}
._10_c00129{width:15.073372pt;}
._3_c00129{width:21.196285pt;}
._4_c00129{width:26.687234pt;}
._5_c00129{width:28.111224pt;}
._f_c00129{width:71.644588pt;}
._0_c00129{width:2010.162299pt;}
.fs1_c00129{font-size:37.120000pt;}
.fs2_c00129{font-size:53.120000pt;}
.fs0_c00129{font-size:58.880000pt;}
.y0_c00129{bottom:0.000000pt;}
.y1e_c00129{bottom:7.200000pt;}
.y1a_c00129{bottom:7.200133pt;}
.y17_c00129{bottom:14.720000pt;}
.y1f_c00129{bottom:15.200000pt;}
.y1b_c00129{bottom:15.226667pt;}
.y15_c00129{bottom:16.800000pt;}
.y1d_c00129{bottom:23.200000pt;}
.y19_c00129{bottom:23.226667pt;}
.y13_c00129{bottom:24.800000pt;}
.y14_c00129{bottom:32.800000pt;}
.y16_c00129{bottom:34.720000pt;}
.y2c_c00129{bottom:113.440133pt;}
.y2b_c00129{bottom:137.146667pt;}
.y2a_c00129{bottom:161.786667pt;}
.y29_c00129{bottom:186.586667pt;}
.y28_c00129{bottom:211.226667pt;}
.y27_c00129{bottom:235.866667pt;}
.y26_c00129{bottom:260.506667pt;}
.y25_c00129{bottom:285.146667pt;}
.y24_c00129{bottom:309.786667pt;}
.y23_c00129{bottom:350.626667pt;}
.y22_c00129{bottom:391.266667pt;}
.y21_c00129{bottom:431.906667pt;}
.y20_c00129{bottom:472.546667pt;}
.y1c_c00129{bottom:513.186667pt;}
.y18_c00129{bottom:553.826667pt;}
.y12_c00129{bottom:594.653333pt;}
.y11_c00129{bottom:674.173600pt;}
.y10_c00129{bottom:692.893333pt;}
.yf_c00129{bottom:735.613467pt;}
.ye_c00129{bottom:754.333200pt;}
.yd_c00129{bottom:772.893067pt;}
.yc_c00129{bottom:791.613333pt;}
.yb_c00129{bottom:818.374133pt;}
.ya_c00129{bottom:836.934000pt;}
.y9_c00129{bottom:855.653733pt;}
.y8_c00129{bottom:874.373467pt;}
.y7_c00129{bottom:892.933333pt;}
.y6_c00129{bottom:911.653067pt;}
.y5_c00129{bottom:930.373467pt;}
.y4_c00129{bottom:948.933333pt;}
.y3_c00129{bottom:975.653333pt;}
.y2_c00129{bottom:994.373333pt;}
.y1_c00129{bottom:1044.160000pt;}
.h7_c00129{height:24.000000pt;}
.h6_c00129{height:40.000000pt;}
.h5_c00129{height:40.032267pt;}
.h4_c00129{height:42.866250pt;}
.h2_c00129{height:50.628750pt;}
.h3_c00129{height:59.200000pt;}
.h1_c00129{height:1122.666667pt;}
.h0_c00129{height:1122.720000pt;}
.w3_c00129{width:65.600000pt;}
.w7_c00129{width:65.919733pt;}
.wa_c00129{width:66.400000pt;}
.w5_c00129{width:103.231733pt;}
.w6_c00129{width:103.359867pt;}
.w4_c00129{width:122.271867pt;}
.w9_c00129{width:206.426667pt;}
.w2_c00129{width:206.746667pt;}
.w8_c00129{width:603.933333pt;}
.w1_c00129{width:794.000000pt;}
.w0_c00129{width:794.080000pt;}
.x0_c00129{left:0.000000pt;}
.xf_c00129{left:4.319733pt;}
.xe_c00129{left:14.720000pt;}
.x7_c00129{left:16.480000pt;}
.x6_c00129{left:20.480000pt;}
.x10_c00129{left:22.560000pt;}
.xa_c00129{left:26.426667pt;}
.xc_c00129{left:28.800000pt;}
.x17_c00129{left:31.200000pt;}
.x16_c00129{left:32.800000pt;}
.x12_c00129{left:37.280000pt;}
.x9_c00129{left:38.746667pt;}
.x4_c00129{left:40.474667pt;}
.x14_c00129{left:41.440000pt;}
.x15_c00129{left:42.426667pt;}
.x11_c00129{left:44.666667pt;}
.x18_c00129{left:46.586667pt;}
.x19_c00129{left:49.120000pt;}
.x13_c00129{left:50.906667pt;}
.x1_c00129{left:113.471867pt;}
.x2_c00129{left:132.352133pt;}
.x3_c00129{left:208.026533pt;}
.x5_c00129{left:321.666667pt;}
.x8_c00129{left:387.906667pt;}
.xb_c00129{left:510.813333pt;}
.xd_c00129{left:614.693333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e84924430da339f6f960bc67.woff2')format("woff");}.ff1_c00130{font-family:ff1_c00130;line-height:1.070312;font-style:normal;font-weight:normal;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_d28db4f2c3af16c56ccaf2ad.woff2')format("woff");}.ff2_c00130{font-family:ff2_c00130;line-height:0.938965;font-style:normal;font-weight:normal;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_49b98351ba6f82602d88addb.woff2')format("woff");}.ff3_c00130{font-family:ff3_c00130;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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);}
.v2_c00130{vertical-align:-5.758596px;}
.v0_c00130{vertical-align:0.000000px;}
.v1_c00130{vertical-align:23.758620px;}
.ls0_c00130{letter-spacing:0.000000px;}
.sc__c00130{text-shadow:none;}
.sc0_c00130{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00130{-webkit-text-stroke:0px transparent;}
.sc0_c00130{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00130{word-spacing:-18.414720px;}
.ws1_c00130{word-spacing:-11.609280px;}
.ws2_c00130{word-spacing:0.000000px;}
._7_c00130{margin-left:-4.768509px;}
._a_c00130{margin-left:-3.313040px;}
._b_c00130{margin-left:-2.309464px;}
._2_c00130{margin-left:-1.125893px;}
._4_c00130{width:1.655119px;}
._3_c00130{width:2.715841px;}
._5_c00130{width:4.087810px;}
._11_c00130{width:5.760144px;}
._1_c00130{width:8.079931px;}
._d_c00130{width:9.668412px;}
._8_c00130{width:13.447317px;}
._9_c00130{width:14.904186px;}
._c_c00130{width:16.095852px;}
._12_c00130{width:17.249287px;}
._f_c00130{width:24.110664px;}
._10_c00130{width:25.601738px;}
._13_c00130{width:26.825342px;}
._6_c00130{width:42.922593px;}
._e_c00130{width:80.517265px;}
._0_c00130{width:2261.432586px;}
.fc0_c00130{color:rgb(0,0,0);}
.fs1_c00130{font-size:41.760000px;}
.fs0_c00130{font-size:66.240000px;}
.y0_c00130{bottom:0.000000px;}
.y1c_c00130{bottom:8.100000px;}
.y19_c00130{bottom:16.770000px;}
.y1d_c00130{bottom:17.100000px;}
.y17_c00130{bottom:19.110000px;}
.y1b_c00130{bottom:26.100000px;}
.y15_c00130{bottom:28.110000px;}
.y16_c00130{bottom:37.110000px;}
.y18_c00130{bottom:39.270000px;}
.y1f_c00130{bottom:44.100000px;}
.y30_c00130{bottom:98.459400px;}
.y2f_c00130{bottom:119.519700px;}
.y2e_c00130{bottom:140.435250px;}
.y2d_c00130{bottom:161.489700px;}
.y2c_c00130{bottom:182.550000px;}
.y2b_c00130{bottom:203.429850px;}
.y2a_c00130{bottom:224.490150px;}
.y29_c00130{bottom:245.549850px;}
.y28_c00130{bottom:266.429700px;}
.y27_c00130{bottom:287.490000px;}
.y26_c00130{bottom:332.130000px;}
.y25_c00130{bottom:359.850000px;}
.y24_c00130{bottom:387.615000px;}
.y23_c00130{bottom:415.335000px;}
.y22_c00130{bottom:443.055000px;}
.y21_c00130{bottom:470.955000px;}
.y20_c00130{bottom:498.675000px;}
.y1e_c00130{bottom:526.395000px;}
.y1a_c00130{bottom:590.115000px;}
.y14_c00130{bottom:635.835000px;}
.y13_c00130{bottom:725.504700px;}
.y12_c00130{bottom:746.565000px;}
.y11_c00130{bottom:794.625300px;}
.y10_c00130{bottom:815.505150px;}
.yf_c00130{bottom:836.565450px;}
.ye_c00130{bottom:857.625150px;}
.yd_c00130{bottom:878.505000px;}
.yc_c00130{bottom:899.609850px;}
.yb_c00130{bottom:920.670150px;}
.ya_c00130{bottom:941.550000px;}
.y9_c00130{bottom:962.609700px;}
.y8_c00130{bottom:983.670000px;}
.y7_c00130{bottom:1013.550150px;}
.y6_c00130{bottom:1034.609850px;}
.y5_c00130{bottom:1055.670150px;}
.y4_c00130{bottom:1076.550000px;}
.y3_c00130{bottom:1097.609700px;}
.y2_c00130{bottom:1118.670000px;}
.y1_c00130{bottom:1174.680000px;}
.h7_c00130{height:27.000000px;}
.h5_c00130{height:45.000000px;}
.h4_c00130{height:48.224531px;}
.h8_c00130{height:48.256875px;}
.h2_c00130{height:56.957344px;}
.h6_c00130{height:63.000000px;}
.h3_c00130{height:66.815700px;}
.h1_c00130{height:1263.000000px;}
.h0_c00130{height:1263.060000px;}
.w3_c00130{width:73.800000px;}
.w9_c00130{width:74.700000px;}
.w5_c00130{width:116.135700px;}
.w6_c00130{width:116.280450px;}
.w4_c00130{width:126.755850px;}
.w8_c00130{width:232.230000px;}
.w2_c00130{width:232.590000px;}
.w7_c00130{width:668.805000px;}
.w1_c00130{width:893.250000px;}
.w0_c00130{width:893.340000px;}
.x0_c00130{left:0.000000px;}
.x11_c00130{left:4.859700px;}
.x7_c00130{left:15.660000px;}
.xf_c00130{left:16.740000px;}
.xd_c00130{left:19.080000px;}
.x6_c00130{left:23.040000px;}
.xa_c00130{left:24.330000px;}
.x12_c00130{left:25.380000px;}
.x10_c00130{left:29.700000px;}
.xc_c00130{left:32.400000px;}
.x18_c00130{left:34.560000px;}
.x17_c00130{left:35.850000px;}
.x16_c00130{left:37.080000px;}
.x9_c00130{left:38.190000px;}
.x14_c00130{left:41.940000px;}
.x4_c00130{left:45.534000px;}
.x13_c00130{left:47.370000px;}
.x15_c00130{left:51.690000px;}
.x19_c00130{left:55.260000px;}
.x1_c00130{left:127.655850px;}
.x2_c00130{left:148.896150px;}
.x3_c00130{left:234.029850px;}
.x5_c00130{left:361.875000px;}
.x8_c00130{left:436.395000px;}
.xb_c00130{left:564.045000px;}
.xe_c00130{left:680.910000px;}
@media print{
.v2_c00130{vertical-align:-5.118752pt;}
.v0_c00130{vertical-align:0.000000pt;}
.v1_c00130{vertical-align:21.118773pt;}
.ls0_c00130{letter-spacing:0.000000pt;}
.ws0_c00130{word-spacing:-16.368640pt;}
.ws1_c00130{word-spacing:-10.319360pt;}
.ws2_c00130{word-spacing:0.000000pt;}
._7_c00130{margin-left:-4.238675pt;}
._a_c00130{margin-left:-2.944924pt;}
._b_c00130{margin-left:-2.052857pt;}
._2_c00130{margin-left:-1.000794pt;}
._4_c00130{width:1.471217pt;}
._3_c00130{width:2.414081pt;}
._5_c00130{width:3.633609pt;}
._11_c00130{width:5.120128pt;}
._1_c00130{width:7.182161pt;}
._d_c00130{width:8.594144pt;}
._8_c00130{width:11.953171pt;}
._9_c00130{width:13.248165pt;}
._c_c00130{width:14.307424pt;}
._12_c00130{width:15.332700pt;}
._f_c00130{width:21.431702pt;}
._10_c00130{width:22.757101pt;}
._13_c00130{width:23.844748pt;}
._6_c00130{width:38.153416pt;}
._e_c00130{width:71.570902pt;}
._0_c00130{width:2010.162299pt;}
.fs1_c00130{font-size:37.120000pt;}
.fs0_c00130{font-size:58.880000pt;}
.y0_c00130{bottom:0.000000pt;}
.y1c_c00130{bottom:7.200000pt;}
.y19_c00130{bottom:14.906667pt;}
.y1d_c00130{bottom:15.200000pt;}
.y17_c00130{bottom:16.986667pt;}
.y1b_c00130{bottom:23.200000pt;}
.y15_c00130{bottom:24.986667pt;}
.y16_c00130{bottom:32.986667pt;}
.y18_c00130{bottom:34.906667pt;}
.y1f_c00130{bottom:39.200000pt;}
.y30_c00130{bottom:87.519467pt;}
.y2f_c00130{bottom:106.239733pt;}
.y2e_c00130{bottom:124.831333pt;}
.y2d_c00130{bottom:143.546400pt;}
.y2c_c00130{bottom:162.266667pt;}
.y2b_c00130{bottom:180.826533pt;}
.y2a_c00130{bottom:199.546800pt;}
.y29_c00130{bottom:218.266533pt;}
.y28_c00130{bottom:236.826400pt;}
.y27_c00130{bottom:255.546667pt;}
.y26_c00130{bottom:295.226667pt;}
.y25_c00130{bottom:319.866667pt;}
.y24_c00130{bottom:344.546667pt;}
.y23_c00130{bottom:369.186667pt;}
.y22_c00130{bottom:393.826667pt;}
.y21_c00130{bottom:418.626667pt;}
.y20_c00130{bottom:443.266667pt;}
.y1e_c00130{bottom:467.906667pt;}
.y1a_c00130{bottom:524.546667pt;}
.y14_c00130{bottom:565.186667pt;}
.y13_c00130{bottom:644.893067pt;}
.y12_c00130{bottom:663.613333pt;}
.y11_c00130{bottom:706.333600pt;}
.y10_c00130{bottom:724.893467pt;}
.yf_c00130{bottom:743.613733pt;}
.ye_c00130{bottom:762.333467pt;}
.yd_c00130{bottom:780.893333pt;}
.yc_c00130{bottom:799.653200pt;}
.yb_c00130{bottom:818.373467pt;}
.ya_c00130{bottom:836.933333pt;}
.y9_c00130{bottom:855.653067pt;}
.y8_c00130{bottom:874.373333pt;}
.y7_c00130{bottom:900.933467pt;}
.y6_c00130{bottom:919.653200pt;}
.y5_c00130{bottom:938.373467pt;}
.y4_c00130{bottom:956.933333pt;}
.y3_c00130{bottom:975.653067pt;}
.y2_c00130{bottom:994.373333pt;}
.y1_c00130{bottom:1044.160000pt;}
.h7_c00130{height:24.000000pt;}
.h5_c00130{height:40.000000pt;}
.h4_c00130{height:42.866250pt;}
.h8_c00130{height:42.895000pt;}
.h2_c00130{height:50.628750pt;}
.h6_c00130{height:56.000000pt;}
.h3_c00130{height:59.391733pt;}
.h1_c00130{height:1122.666667pt;}
.h0_c00130{height:1122.720000pt;}
.w3_c00130{width:65.600000pt;}
.w9_c00130{width:66.400000pt;}
.w5_c00130{width:103.231733pt;}
.w6_c00130{width:103.360400pt;}
.w4_c00130{width:112.671867pt;}
.w8_c00130{width:206.426667pt;}
.w2_c00130{width:206.746667pt;}
.w7_c00130{width:594.493333pt;}
.w1_c00130{width:794.000000pt;}
.w0_c00130{width:794.080000pt;}
.x0_c00130{left:0.000000pt;}
.x11_c00130{left:4.319733pt;}
.x7_c00130{left:13.920000pt;}
.xf_c00130{left:14.880000pt;}
.xd_c00130{left:16.960000pt;}
.x6_c00130{left:20.480000pt;}
.xa_c00130{left:21.626667pt;}
.x12_c00130{left:22.560000pt;}
.x10_c00130{left:26.400000pt;}
.xc_c00130{left:28.800000pt;}
.x18_c00130{left:30.720000pt;}
.x17_c00130{left:31.866667pt;}
.x16_c00130{left:32.960000pt;}
.x9_c00130{left:33.946667pt;}
.x14_c00130{left:37.280000pt;}
.x4_c00130{left:40.474667pt;}
.x13_c00130{left:42.106667pt;}
.x15_c00130{left:45.946667pt;}
.x19_c00130{left:49.120000pt;}
.x1_c00130{left:113.471867pt;}
.x2_c00130{left:132.352133pt;}
.x3_c00130{left:208.026533pt;}
.x5_c00130{left:321.666667pt;}
.x8_c00130{left:387.906667pt;}
.xb_c00130{left:501.373333pt;}
.xe_c00130{left:605.253333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e7bcf864aa136aeac8a74d8a.woff2')format("woff");}.ff1_c00131{font-family:ff1_c00131;line-height:1.070312;font-style:normal;font-weight:normal;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_04d1dfe6488ffd93664dd1b6.woff2')format("woff");}.ff2_c00131{font-family:ff2_c00131;line-height:0.938965;font-style:normal;font-weight:normal;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_49b98351ba6f82602d88addb.woff2')format("woff");}.ff3_c00131{font-family:ff3_c00131;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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);}
.v1_c00131{vertical-align:-5.758596px;}
.v0_c00131{vertical-align:0.000000px;}
.ls0_c00131{letter-spacing:0.000000px;}
.sc__c00131{text-shadow:none;}
.sc0_c00131{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00131{-webkit-text-stroke:0px transparent;}
.sc0_c00131{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00131{word-spacing:-18.414720px;}
.ws1_c00131{word-spacing:-11.609280px;}
.ws2_c00131{word-spacing:0.000000px;}
._4_c00131{margin-left:-3.576223px;}
._5_c00131{margin-left:-2.518857px;}
._1_c00131{margin-left:-1.257319px;}
._6_c00131{width:1.127774px;}
._8_c00131{width:4.294723px;}
._3_c00131{width:5.433577px;}
._2_c00131{width:6.623085px;}
._7_c00131{width:7.882065px;}
._a_c00131{width:21.991916px;}
._9_c00131{width:80.648690px;}
._0_c00131{width:2261.432586px;}
.fc0_c00131{color:rgb(0,0,0);}
.fs1_c00131{font-size:41.760000px;}
.fs0_c00131{font-size:66.240000px;}
.y0_c00131{bottom:0.000000px;}
.y10_c00131{bottom:8.100000px;}
.y17_c00131{bottom:8.130000px;}
.y2a_c00131{bottom:12.779850px;}
.y1a_c00131{bottom:12.780000px;}
.y28_c00131{bottom:12.816300px;}
.y1f_c00131{bottom:12.960000px;}
.ye_c00131{bottom:16.740000px;}
.yc_c00131{bottom:28.080000px;}
.yd_c00131{bottom:39.240000px;}
.y29_c00131{bottom:90.000000px;}
.y27_c00131{bottom:127.259700px;}
.y26_c00131{bottom:164.550000px;}
.y25_c00131{bottom:201.810000px;}
.y24_c00131{bottom:239.070000px;}
.y23_c00131{bottom:276.330000px;}
.y22_c00131{bottom:313.590000px;}
.y21_c00131{bottom:350.850000px;}
.y20_c00131{bottom:388.155000px;}
.y1e_c00131{bottom:425.415000px;}
.y1d_c00131{bottom:462.855000px;}
.y1c_c00131{bottom:500.115000px;}
.y1b_c00131{bottom:537.375000px;}
.y19_c00131{bottom:574.635000px;}
.y18_c00131{bottom:611.895000px;}
.y16_c00131{bottom:639.615000px;}
.y15_c00131{bottom:667.365000px;}
.y14_c00131{bottom:695.085000px;}
.y13_c00131{bottom:722.985000px;}
.y12_c00131{bottom:750.705000px;}
.y11_c00131{bottom:778.425000px;}
.yf_c00131{bottom:806.145000px;}
.yb_c00131{bottom:833.865000px;}
.ya_c00131{bottom:923.550300px;}
.y9_c00131{bottom:944.610000px;}
.y8_c00131{bottom:992.670300px;}
.y7_c00131{bottom:1013.550150px;}
.y6_c00131{bottom:1034.609850px;}
.y5_c00131{bottom:1055.670150px;}
.y4_c00131{bottom:1076.550000px;}
.y3_c00131{bottom:1097.609700px;}
.y2_c00131{bottom:1118.670000px;}
.y1_c00131{bottom:1174.680000px;}
.h6_c00131{height:27.000000px;}
.h7_c00131{height:27.035700px;}
.ha_c00131{height:36.360300px;}
.h9_c00131{height:36.539700px;}
.h8_c00131{height:36.540300px;}
.hb_c00131{height:36.576000px;}
.h5_c00131{height:48.224531px;}
.h3_c00131{height:48.256875px;}
.h2_c00131{height:56.957344px;}
.h4_c00131{height:66.815700px;}
.h1_c00131{height:1263.000000px;}
.h0_c00131{height:1263.060000px;}
.w3_c00131{width:78.876000px;}
.w7_c00131{width:79.416150px;}
.w4_c00131{width:105.479850px;}
.w5_c00131{width:106.415700px;}
.w6_c00131{width:136.619550px;}
.w2_c00131{width:248.790000px;}
.w1_c00131{width:893.250000px;}
.w0_c00131{width:893.340000px;}
.x0_c00131{left:0.000000px;}
.xc_c00131{left:4.859700px;}
.x5_c00131{left:7.380000px;}
.x8_c00131{left:13.680000px;}
.x7_c00131{left:27.540000px;}
.xb_c00131{left:29.340000px;}
.xf_c00131{left:34.200000px;}
.x10_c00131{left:37.080000px;}
.xd_c00131{left:41.220000px;}
.x11_c00131{left:52.200000px;}
.x3_c00131{left:53.634000px;}
.xe_c00131{left:56.880000px;}
.x1_c00131{left:127.655850px;}
.x2_c00131{left:234.029850px;}
.x4_c00131{left:378.075000px;}
.x6_c00131{left:457.665000px;}
.x9_c00131{left:564.045000px;}
.xa_c00131{left:671.190000px;}
@media print{
.v1_c00131{vertical-align:-5.118752pt;}
.v0_c00131{vertical-align:0.000000pt;}
.ls0_c00131{letter-spacing:0.000000pt;}
.ws0_c00131{word-spacing:-16.368640pt;}
.ws1_c00131{word-spacing:-10.319360pt;}
.ws2_c00131{word-spacing:0.000000pt;}
._4_c00131{margin-left:-3.178865pt;}
._5_c00131{margin-left:-2.238984pt;}
._1_c00131{margin-left:-1.117617pt;}
._6_c00131{width:1.002466pt;}
._8_c00131{width:3.817532pt;}
._3_c00131{width:4.829846pt;}
._2_c00131{width:5.887187pt;}
._7_c00131{width:7.006280pt;}
._a_c00131{width:19.548370pt;}
._9_c00131{width:71.687725pt;}
._0_c00131{width:2010.162299pt;}
.fs1_c00131{font-size:37.120000pt;}
.fs0_c00131{font-size:58.880000pt;}
.y0_c00131{bottom:0.000000pt;}
.y10_c00131{bottom:7.200000pt;}
.y17_c00131{bottom:7.226667pt;}
.y2a_c00131{bottom:11.359867pt;}
.y1a_c00131{bottom:11.360000pt;}
.y28_c00131{bottom:11.392267pt;}
.y1f_c00131{bottom:11.520000pt;}
.ye_c00131{bottom:14.880000pt;}
.yc_c00131{bottom:24.960000pt;}
.yd_c00131{bottom:34.880000pt;}
.y29_c00131{bottom:80.000000pt;}
.y27_c00131{bottom:113.119733pt;}
.y26_c00131{bottom:146.266667pt;}
.y25_c00131{bottom:179.386667pt;}
.y24_c00131{bottom:212.506667pt;}
.y23_c00131{bottom:245.626667pt;}
.y22_c00131{bottom:278.746667pt;}
.y21_c00131{bottom:311.866667pt;}
.y20_c00131{bottom:345.026667pt;}
.y1e_c00131{bottom:378.146667pt;}
.y1d_c00131{bottom:411.426667pt;}
.y1c_c00131{bottom:444.546667pt;}
.y1b_c00131{bottom:477.666667pt;}
.y19_c00131{bottom:510.786667pt;}
.y18_c00131{bottom:543.906667pt;}
.y16_c00131{bottom:568.546667pt;}
.y15_c00131{bottom:593.213333pt;}
.y14_c00131{bottom:617.853333pt;}
.y13_c00131{bottom:642.653333pt;}
.y12_c00131{bottom:667.293333pt;}
.y11_c00131{bottom:691.933333pt;}
.yf_c00131{bottom:716.573333pt;}
.yb_c00131{bottom:741.213333pt;}
.ya_c00131{bottom:820.933600pt;}
.y9_c00131{bottom:839.653333pt;}
.y8_c00131{bottom:882.373600pt;}
.y7_c00131{bottom:900.933467pt;}
.y6_c00131{bottom:919.653200pt;}
.y5_c00131{bottom:938.373467pt;}
.y4_c00131{bottom:956.933333pt;}
.y3_c00131{bottom:975.653067pt;}
.y2_c00131{bottom:994.373333pt;}
.y1_c00131{bottom:1044.160000pt;}
.h6_c00131{height:24.000000pt;}
.h7_c00131{height:24.031733pt;}
.ha_c00131{height:32.320267pt;}
.h9_c00131{height:32.479733pt;}
.h8_c00131{height:32.480267pt;}
.hb_c00131{height:32.512000pt;}
.h5_c00131{height:42.866250pt;}
.h3_c00131{height:42.895000pt;}
.h2_c00131{height:50.628750pt;}
.h4_c00131{height:59.391733pt;}
.h1_c00131{height:1122.666667pt;}
.h0_c00131{height:1122.720000pt;}
.w3_c00131{width:70.112000pt;}
.w7_c00131{width:70.592133pt;}
.w4_c00131{width:93.759867pt;}
.w5_c00131{width:94.591733pt;}
.w6_c00131{width:121.439600pt;}
.w2_c00131{width:221.146667pt;}
.w1_c00131{width:794.000000pt;}
.w0_c00131{width:794.080000pt;}
.x0_c00131{left:0.000000pt;}
.xc_c00131{left:4.319733pt;}
.x5_c00131{left:6.560000pt;}
.x8_c00131{left:12.160000pt;}
.x7_c00131{left:24.480000pt;}
.xb_c00131{left:26.080000pt;}
.xf_c00131{left:30.400000pt;}
.x10_c00131{left:32.960000pt;}
.xd_c00131{left:36.640000pt;}
.x11_c00131{left:46.400000pt;}
.x3_c00131{left:47.674667pt;}
.xe_c00131{left:50.560000pt;}
.x1_c00131{left:113.471867pt;}
.x2_c00131{left:208.026533pt;}
.x4_c00131{left:336.066667pt;}
.x6_c00131{left:406.813333pt;}
.x9_c00131{left:501.373333pt;}
.xa_c00131{left:596.613333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b9e205c8c4103c9548de7791.woff2')format("woff");}.ff1_c00132{font-family:ff1_c00132;line-height:1.070312;font-style:normal;font-weight:normal;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_49b98351ba6f82602d88addb.woff2')format("woff");}.ff2_c00132{font-family:ff2_c00132;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00132;src:url('chunks/assets/font_8d166d2b9a236e96fa44feb7.woff2')format("woff");}.ff3_c00132{font-family:ff3_c00132;line-height:0.938965;font-style: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);}
.v1_c00132{vertical-align:-5.760936px;}
.v0_c00132{vertical-align:0.000000px;}
.ls0_c00132{letter-spacing:0.000000px;}
.sc__c00132{text-shadow:none;}
.sc0_c00132{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00132{-webkit-text-stroke:0px transparent;}
.sc0_c00132{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00132{word-spacing:-18.414720px;}
.ws1_c00132{word-spacing:-11.609280px;}
.ws2_c00132{word-spacing:0.000000px;}
._5_c00132{margin-left:-2.605040px;}
._1_c00132{margin-left:-1.126186px;}
._8_c00132{width:4.702091px;}
._6_c00132{width:19.914475px;}
._3_c00132{width:20.931543px;}
._4_c00132{width:25.106786px;}
._7_c00132{width:80.517558px;}
._2_c00132{width:93.628041px;}
._0_c00132{width:2261.432586px;}
.fc0_c00132{color:rgb(0,0,0);}
.fs1_c00132{font-size:41.760000px;}
.fs0_c00132{font-size:66.240000px;}
.y0_c00132{bottom:0.000000px;}
.y29_c00132{bottom:8.093850px;}
.ye_c00132{bottom:8.100000px;}
.y9_c00132{bottom:12.780000px;}
.y1f_c00132{bottom:16.605000px;}
.y7_c00132{bottom:16.740000px;}
.y22_c00132{bottom:17.100000px;}
.y21_c00132{bottom:26.100000px;}
.y5_c00132{bottom:27.900000px;}
.y1d_c00132{bottom:27.945000px;}
.y1e_c00132{bottom:39.105000px;}
.y6_c00132{bottom:39.240000px;}
.y2b_c00132{bottom:91.440300px;}
.y2a_c00132{bottom:119.159700px;}
.y28_c00132{bottom:146.916150px;}
.y27_c00132{bottom:174.810000px;}
.y26_c00132{bottom:202.530000px;}
.y25_c00132{bottom:230.250000px;}
.y24_c00132{bottom:257.970000px;}
.y23_c00132{bottom:285.690000px;}
.y20_c00132{bottom:331.410000px;}
.y1c_c00132{bottom:377.310000px;}
.y1b_c00132{bottom:466.815300px;}
.y1a_c00132{bottom:487.875000px;}
.y19_c00132{bottom:535.934850px;}
.y18_c00132{bottom:556.995150px;}
.y17_c00132{bottom:577.875000px;}
.y16_c00132{bottom:598.934700px;}
.y15_c00132{bottom:619.995000px;}
.y14_c00132{bottom:664.485000px;}
.y13_c00132{bottom:692.385000px;}
.y12_c00132{bottom:720.105000px;}
.y11_c00132{bottom:747.825000px;}
.y10_c00132{bottom:775.545000px;}
.yf_c00132{bottom:803.265000px;}
.yd_c00132{bottom:830.985000px;}
.yc_c00132{bottom:858.885000px;}
.yb_c00132{bottom:896.190000px;}
.ya_c00132{bottom:933.450000px;}
.y8_c00132{bottom:970.710000px;}
.y4_c00132{bottom:1007.970000px;}
.y3_c00132{bottom:1097.609700px;}
.y2_c00132{bottom:1118.670000px;}
.y1_c00132{bottom:1174.680000px;}
.h8_c00132{height:27.000000px;}
.hb_c00132{height:27.036300px;}
.h7_c00132{height:36.395550px;}
.h5_c00132{height:36.539700px;}
.h6_c00132{height:36.540300px;}
.ha_c00132{height:45.000000px;}
.h4_c00132{height:48.224531px;}
.h2_c00132{height:56.957344px;}
.h9_c00132{height:66.636300px;}
.h3_c00132{height:66.779850px;}
.h1_c00132{height:1263.000000px;}
.h0_c00132{height:1263.060000px;}
.w3_c00132{width:84.276000px;}
.w8_c00132{width:84.635700px;}
.wd_c00132{width:95.040300px;}
.wf_c00132{width:95.400000px;}
.w4_c00132{width:105.479850px;}
.wa_c00132{width:105.515700px;}
.w5_c00132{width:106.415700px;}
.we_c00132{width:116.315700px;}
.w6_c00132{width:136.619550px;}
.wb_c00132{width:137.519550px;}
.wc_c00132{width:222.150000px;}
.w7_c00132{width:243.390000px;}
.w2_c00132{width:244.470000px;}
.w9_c00132{width:679.425000px;}
.w1_c00132{width:893.250000px;}
.w0_c00132{width:893.340000px;}
.x0_c00132{left:0.000000px;}
.xc_c00132{left:4.859700px;}
.x5_c00132{left:10.080000px;}
.x8_c00132{left:13.680000px;}
.x1a_c00132{left:15.300000px;}
.x1e_c00132{left:19.080000px;}
.x11_c00132{left:24.120000px;}
.x14_c00132{left:25.200000px;}
.x7_c00132{left:27.540000px;}
.xb_c00132{left:29.340000px;}
.xd_c00132{left:30.960000px;}
.x1d_c00132{left:32.400000px;}
.xe_c00132{left:34.200000px;}
.x1f_c00132{left:36.000000px;}
.xf_c00132{left:37.080000px;}
.x15_c00132{left:39.600000px;}
.x12_c00132{left:41.040000px;}
.x21_c00132{left:45.000000px;}
.x20_c00132{left:46.440000px;}
.x13_c00132{left:47.520000px;}
.x3_c00132{left:51.653850px;}
.x10_c00132{left:56.880000px;}
.x16_c00132{left:65.880000px;}
.x1_c00132{left:127.655850px;}
.x17_c00132{left:148.896150px;}
.x18_c00132{left:234.029850px;}
.x2_c00132{left:340.094850px;}
.x19_c00132{left:351.255000px;}
.x4_c00132{left:372.675000px;}
.x1b_c00132{left:447.045000px;}
.x6_c00132{left:457.665000px;}
.x1c_c00132{left:553.245000px;}
.x9_c00132{left:564.045000px;}
.xa_c00132{left:671.190000px;}
@media print{
.v1_c00132{vertical-align:-5.120832pt;}
.v0_c00132{vertical-align:0.000000pt;}
.ls0_c00132{letter-spacing:0.000000pt;}
.ws0_c00132{word-spacing:-16.368640pt;}
.ws1_c00132{word-spacing:-10.319360pt;}
.ws2_c00132{word-spacing:0.000000pt;}
._5_c00132{margin-left:-2.315591pt;}
._1_c00132{margin-left:-1.001054pt;}
._8_c00132{width:4.179636pt;}
._6_c00132{width:17.701756pt;}
._3_c00132{width:18.605816pt;}
._4_c00132{width:22.317143pt;}
._7_c00132{width:71.571162pt;}
._2_c00132{width:83.224925pt;}
._0_c00132{width:2010.162299pt;}
.fs1_c00132{font-size:37.120000pt;}
.fs0_c00132{font-size:58.880000pt;}
.y0_c00132{bottom:0.000000pt;}
.y29_c00132{bottom:7.194533pt;}
.ye_c00132{bottom:7.200000pt;}
.y9_c00132{bottom:11.360000pt;}
.y1f_c00132{bottom:14.760000pt;}
.y7_c00132{bottom:14.880000pt;}
.y22_c00132{bottom:15.200000pt;}
.y21_c00132{bottom:23.200000pt;}
.y5_c00132{bottom:24.800000pt;}
.y1d_c00132{bottom:24.840000pt;}
.y1e_c00132{bottom:34.760000pt;}
.y6_c00132{bottom:34.880000pt;}
.y2b_c00132{bottom:81.280267pt;}
.y2a_c00132{bottom:105.919733pt;}
.y28_c00132{bottom:130.592133pt;}
.y27_c00132{bottom:155.386667pt;}
.y26_c00132{bottom:180.026667pt;}
.y25_c00132{bottom:204.666667pt;}
.y24_c00132{bottom:229.306667pt;}
.y23_c00132{bottom:253.946667pt;}
.y20_c00132{bottom:294.586667pt;}
.y1c_c00132{bottom:335.386667pt;}
.y1b_c00132{bottom:414.946933pt;}
.y1a_c00132{bottom:433.666667pt;}
.y19_c00132{bottom:476.386533pt;}
.y18_c00132{bottom:495.106800pt;}
.y17_c00132{bottom:513.666667pt;}
.y16_c00132{bottom:532.386400pt;}
.y15_c00132{bottom:551.106667pt;}
.y14_c00132{bottom:590.653333pt;}
.y13_c00132{bottom:615.453333pt;}
.y12_c00132{bottom:640.093333pt;}
.y11_c00132{bottom:664.733333pt;}
.y10_c00132{bottom:689.373333pt;}
.yf_c00132{bottom:714.013333pt;}
.yd_c00132{bottom:738.653333pt;}
.yc_c00132{bottom:763.453333pt;}
.yb_c00132{bottom:796.613333pt;}
.ya_c00132{bottom:829.733333pt;}
.y8_c00132{bottom:862.853333pt;}
.y4_c00132{bottom:895.973333pt;}
.y3_c00132{bottom:975.653067pt;}
.y2_c00132{bottom:994.373333pt;}
.y1_c00132{bottom:1044.160000pt;}
.h8_c00132{height:24.000000pt;}
.hb_c00132{height:24.032267pt;}
.h7_c00132{height:32.351600pt;}
.h5_c00132{height:32.479733pt;}
.h6_c00132{height:32.480267pt;}
.ha_c00132{height:40.000000pt;}
.h4_c00132{height:42.866250pt;}
.h2_c00132{height:50.628750pt;}
.h9_c00132{height:59.232267pt;}
.h3_c00132{height:59.359867pt;}
.h1_c00132{height:1122.666667pt;}
.h0_c00132{height:1122.720000pt;}
.w3_c00132{width:74.912000pt;}
.w8_c00132{width:75.231733pt;}
.wd_c00132{width:84.480267pt;}
.wf_c00132{width:84.800000pt;}
.w4_c00132{width:93.759867pt;}
.wa_c00132{width:93.791733pt;}
.w5_c00132{width:94.591733pt;}
.we_c00132{width:103.391733pt;}
.w6_c00132{width:121.439600pt;}
.wb_c00132{width:122.239600pt;}
.wc_c00132{width:197.466667pt;}
.w7_c00132{width:216.346667pt;}
.w2_c00132{width:217.306667pt;}
.w9_c00132{width:603.933333pt;}
.w1_c00132{width:794.000000pt;}
.w0_c00132{width:794.080000pt;}
.x0_c00132{left:0.000000pt;}
.xc_c00132{left:4.319733pt;}
.x5_c00132{left:8.960000pt;}
.x8_c00132{left:12.160000pt;}
.x1a_c00132{left:13.600000pt;}
.x1e_c00132{left:16.960000pt;}
.x11_c00132{left:21.440000pt;}
.x14_c00132{left:22.400000pt;}
.x7_c00132{left:24.480000pt;}
.xb_c00132{left:26.080000pt;}
.xd_c00132{left:27.520000pt;}
.x1d_c00132{left:28.800000pt;}
.xe_c00132{left:30.400000pt;}
.x1f_c00132{left:32.000000pt;}
.xf_c00132{left:32.960000pt;}
.x15_c00132{left:35.200000pt;}
.x12_c00132{left:36.480000pt;}
.x21_c00132{left:40.000000pt;}
.x20_c00132{left:41.280000pt;}
.x13_c00132{left:42.240000pt;}
.x3_c00132{left:45.914533pt;}
.x10_c00132{left:50.560000pt;}
.x16_c00132{left:58.560000pt;}
.x1_c00132{left:113.471867pt;}
.x17_c00132{left:132.352133pt;}
.x18_c00132{left:208.026533pt;}
.x2_c00132{left:302.306533pt;}
.x19_c00132{left:312.226667pt;}
.x4_c00132{left:331.266667pt;}
.x1b_c00132{left:397.373333pt;}
.x6_c00132{left:406.813333pt;}
.x1c_c00132{left:491.773333pt;}
.x9_c00132{left:501.373333pt;}
.xa_c00132{left:596.613333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_782041353ce390b522640c99.woff2')format("woff");}.ff1_c00133{font-family:ff1_c00133;line-height:1.070312;font-style:normal;font-weight:normal;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_2ca372efaf2a5745d75baf5c.woff2')format("woff");}.ff2_c00133{font-family:ff2_c00133;line-height:0.938965;font-style:normal;font-weight:normal;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_49b98351ba6f82602d88addb.woff2')format("woff");}.ff3_c00133{font-family:ff3_c00133;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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);}
.m1_c00133{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00133{vertical-align:-5.760936px;}
.v0_c00133{vertical-align:0.000000px;}
.v1_c00133{vertical-align:23.760960px;}
.ls2_c00133{letter-spacing:0.000000px;}
.ls1_c00133{letter-spacing:0.011940px;}
.ls0_c00133{letter-spacing:3.910680px;}
.sc__c00133{text-shadow:none;}
.sc0_c00133{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00133{-webkit-text-stroke:0px transparent;}
.sc0_c00133{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00133{word-spacing:-18.414720px;}
.ws1_c00133{word-spacing:-11.609280px;}
.ws2_c00133{word-spacing:0.000000px;}
._b_c00133{margin-left:-4.703468px;}
._8_c00133{margin-left:-3.452305px;}
._7_c00133{margin-left:-2.450035px;}
._2_c00133{margin-left:-1.100493px;}
._4_c00133{width:1.897932px;}
._1_c00133{width:3.047897px;}
._3_c00133{width:4.155838px;}
._e_c00133{width:5.256917px;}
._f_c00133{width:6.358984px;}
._c_c00133{width:7.551324px;}
._6_c00133{width:9.672159px;}
._5_c00133{width:10.863076px;}
._a_c00133{width:12.635687px;}
._9_c00133{width:13.754026px;}
._10_c00133{width:16.758866px;}
._d_c00133{width:33.294085px;}
._11_c00133{width:80.491865px;}
._0_c00133{width:2261.432586px;}
.fc0_c00133{color:rgb(0,0,0);}
.fs1_c00133{font-size:41.760000px;}
.fs0_c00133{font-size:66.240000px;}
.y0_c00133{bottom:0.000000px;}
.y2a_c00133{bottom:8.100000px;}
.y27_c00133{bottom:16.740000px;}
.y2b_c00133{bottom:17.100000px;}
.y25_c00133{bottom:18.900000px;}
.y29_c00133{bottom:26.100000px;}
.y23_c00133{bottom:27.900000px;}
.y24_c00133{bottom:36.900000px;}
.y26_c00133{bottom:39.240000px;}
.y2f_c00133{bottom:132.120150px;}
.y2e_c00133{bottom:158.790000px;}
.y2d_c00133{bottom:204.510000px;}
.y2c_c00133{bottom:250.410000px;}
.y28_c00133{bottom:296.130000px;}
.y22_c00133{bottom:341.850000px;}
.y21_c00133{bottom:431.534700px;}
.y20_c00133{bottom:452.595000px;}
.y1f_c00133{bottom:500.475750px;}
.y1e_c00133{bottom:521.535450px;}
.y1d_c00133{bottom:542.595750px;}
.y1c_c00133{bottom:563.475600px;}
.y1b_c00133{bottom:584.535300px;}
.y1a_c00133{bottom:605.595600px;}
.y19_c00133{bottom:626.475450px;}
.y18_c00133{bottom:647.565750px;}
.y17_c00133{bottom:668.625450px;}
.y16_c00133{bottom:689.505300px;}
.y15_c00133{bottom:710.565600px;}
.y14_c00133{bottom:731.625300px;}
.y13_c00133{bottom:752.505150px;}
.y12_c00133{bottom:773.565450px;}
.y11_c00133{bottom:794.625150px;}
.y10_c00133{bottom:815.505000px;}
.yf_c00133{bottom:836.565300px;}
.ye_c00133{bottom:857.625150px;}
.yd_c00133{bottom:878.505000px;}
.yc_c00133{bottom:899.609850px;}
.yb_c00133{bottom:920.670150px;}
.ya_c00133{bottom:941.550000px;}
.y9_c00133{bottom:971.610000px;}
.y8_c00133{bottom:992.670300px;}
.y7_c00133{bottom:1013.550150px;}
.y6_c00133{bottom:1034.609850px;}
.y5_c00133{bottom:1055.670150px;}
.y4_c00133{bottom:1076.550300px;}
.y3_c00133{bottom:1097.609700px;}
.y2_c00133{bottom:1118.670000px;}
.y1_c00133{bottom:1174.680000px;}
.h7_c00133{height:45.000000px;}
.h6_c00133{height:48.224531px;}
.h4_c00133{height:48.256875px;}
.h2_c00133{height:56.957344px;}
.h3_c00133{height:56.958544px;}
.h5_c00133{height:66.816150px;}
.h1_c00133{height:1263.000000px;}
.h0_c00133{height:1263.060000px;}
.w3_c00133{width:73.800000px;}
.w5_c00133{width:116.279850px;}
.w4_c00133{width:126.755850px;}
.w2_c00133{width:232.770000px;}
.w1_c00133{width:893.250000px;}
.w0_c00133{width:893.340000px;}
.x0_c00133{left:0.000000px;}
.xe_c00133{left:4.859700px;}
.x7_c00133{left:15.660000px;}
.xd_c00133{left:19.080000px;}
.x6_c00133{left:23.220000px;}
.xa_c00133{left:24.330000px;}
.xf_c00133{left:25.560000px;}
.x9_c00133{left:38.190000px;}
.x12_c00133{left:41.940000px;}
.x4_c00133{left:45.714000px;}
.x11_c00133{left:47.340000px;}
.x10_c00133{left:51.870000px;}
.x1_c00133{left:127.655850px;}
.x2_c00133{left:148.896150px;}
.x3_c00133{left:234.029850px;}
.x5_c00133{left:361.875000px;}
.x8_c00133{left:436.395000px;}
.xb_c00133{left:564.045000px;}
.xc_c00133{left:691.530000px;}
@media print{
.v2_c00133{vertical-align:-5.120832pt;}
.v0_c00133{vertical-align:0.000000pt;}
.v1_c00133{vertical-align:21.120853pt;}
.ls2_c00133{letter-spacing:0.000000pt;}
.ls1_c00133{letter-spacing:0.010613pt;}
.ls0_c00133{letter-spacing:3.476160pt;}
.ws0_c00133{word-spacing:-16.368640pt;}
.ws1_c00133{word-spacing:-10.319360pt;}
.ws2_c00133{word-spacing:0.000000pt;}
._b_c00133{margin-left:-4.180860pt;}
._8_c00133{margin-left:-3.068716pt;}
._7_c00133{margin-left:-2.177809pt;}
._2_c00133{margin-left:-0.978216pt;}
._4_c00133{width:1.687051pt;}
._1_c00133{width:2.709242pt;}
._3_c00133{width:3.694078pt;}
._e_c00133{width:4.672815pt;}
._f_c00133{width:5.652431pt;}
._c_c00133{width:6.712288pt;}
._6_c00133{width:8.597474pt;}
._5_c00133{width:9.656067pt;}
._a_c00133{width:11.231722pt;}
._9_c00133{width:12.225801pt;}
._10_c00133{width:14.896770pt;}
._d_c00133{width:29.594742pt;}
._11_c00133{width:71.548325pt;}
._0_c00133{width:2010.162299pt;}
.fs1_c00133{font-size:37.120000pt;}
.fs0_c00133{font-size:58.880000pt;}
.y0_c00133{bottom:0.000000pt;}
.y2a_c00133{bottom:7.200000pt;}
.y27_c00133{bottom:14.880000pt;}
.y2b_c00133{bottom:15.200000pt;}
.y25_c00133{bottom:16.800000pt;}
.y29_c00133{bottom:23.200000pt;}
.y23_c00133{bottom:24.800000pt;}
.y24_c00133{bottom:32.800000pt;}
.y26_c00133{bottom:34.880000pt;}
.y2f_c00133{bottom:117.440133pt;}
.y2e_c00133{bottom:141.146667pt;}
.y2d_c00133{bottom:181.786667pt;}
.y2c_c00133{bottom:222.586667pt;}
.y28_c00133{bottom:263.226667pt;}
.y22_c00133{bottom:303.866667pt;}
.y21_c00133{bottom:383.586400pt;}
.y20_c00133{bottom:402.306667pt;}
.y1f_c00133{bottom:444.867333pt;}
.y1e_c00133{bottom:463.587067pt;}
.y1d_c00133{bottom:482.307333pt;}
.y1c_c00133{bottom:500.867200pt;}
.y1b_c00133{bottom:519.586933pt;}
.y1a_c00133{bottom:538.307200pt;}
.y19_c00133{bottom:556.867067pt;}
.y18_c00133{bottom:575.614000pt;}
.y17_c00133{bottom:594.333733pt;}
.y16_c00133{bottom:612.893600pt;}
.y15_c00133{bottom:631.613867pt;}
.y14_c00133{bottom:650.333600pt;}
.y13_c00133{bottom:668.893467pt;}
.y12_c00133{bottom:687.613733pt;}
.y11_c00133{bottom:706.333467pt;}
.y10_c00133{bottom:724.893333pt;}
.yf_c00133{bottom:743.613600pt;}
.ye_c00133{bottom:762.333467pt;}
.yd_c00133{bottom:780.893333pt;}
.yc_c00133{bottom:799.653200pt;}
.yb_c00133{bottom:818.373467pt;}
.ya_c00133{bottom:836.933333pt;}
.y9_c00133{bottom:863.653333pt;}
.y8_c00133{bottom:882.373600pt;}
.y7_c00133{bottom:900.933467pt;}
.y6_c00133{bottom:919.653200pt;}
.y5_c00133{bottom:938.373467pt;}
.y4_c00133{bottom:956.933600pt;}
.y3_c00133{bottom:975.653067pt;}
.y2_c00133{bottom:994.373333pt;}
.y1_c00133{bottom:1044.160000pt;}
.h7_c00133{height:40.000000pt;}
.h6_c00133{height:42.866250pt;}
.h4_c00133{height:42.895000pt;}
.h2_c00133{height:50.628750pt;}
.h3_c00133{height:50.629817pt;}
.h5_c00133{height:59.392133pt;}
.h1_c00133{height:1122.666667pt;}
.h0_c00133{height:1122.720000pt;}
.w3_c00133{width:65.600000pt;}
.w5_c00133{width:103.359867pt;}
.w4_c00133{width:112.671867pt;}
.w2_c00133{width:206.906667pt;}
.w1_c00133{width:794.000000pt;}
.w0_c00133{width:794.080000pt;}
.x0_c00133{left:0.000000pt;}
.xe_c00133{left:4.319733pt;}
.x7_c00133{left:13.920000pt;}
.xd_c00133{left:16.960000pt;}
.x6_c00133{left:20.640000pt;}
.xa_c00133{left:21.626667pt;}
.xf_c00133{left:22.720000pt;}
.x9_c00133{left:33.946667pt;}
.x12_c00133{left:37.280000pt;}
.x4_c00133{left:40.634667pt;}
.x11_c00133{left:42.080000pt;}
.x10_c00133{left:46.106667pt;}
.x1_c00133{left:113.471867pt;}
.x2_c00133{left:132.352133pt;}
.x3_c00133{left:208.026533pt;}
.x5_c00133{left:321.666667pt;}
.x8_c00133{left:387.906667pt;}
.xb_c00133{left:501.373333pt;}
.xc_c00133{left:614.693333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_37e519e8f3def34948bd7fd4.woff2')format("woff");}.ff1_c00134{font-family:ff1_c00134;line-height:1.070312;font-style:normal;font-weight:normal;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_49b98351ba6f82602d88addb.woff2')format("woff");}.ff2_c00134{font-family:ff2_c00134;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00134;src:url('chunks/assets/font_3dd48e95dd02db08ca2ab5bb.woff2')format("woff");}.ff3_c00134{font-family:ff3_c00134;line-height:0.938965;font-style: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);}
.v2_c00134{vertical-align:-5.760936px;}
.v0_c00134{vertical-align:0.000000px;}
.v1_c00134{vertical-align:23.758620px;}
.ls0_c00134{letter-spacing:0.000000px;}
.sc__c00134{text-shadow:none;}
.sc0_c00134{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00134{-webkit-text-stroke:0px transparent;}
.sc0_c00134{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00134{word-spacing:-18.414720px;}
.ws1_c00134{word-spacing:-11.609280px;}
.ws2_c00134{word-spacing:0.000000px;}
._d_c00134{margin-left:-2.717958px;}
._1_c00134{margin-left:-1.126186px;}
._6_c00134{width:1.033632px;}
._9_c00134{width:2.914862px;}
._4_c00134{width:4.503369px;}
._5_c00134{width:5.765721px;}
._f_c00134{width:11.259261px;}
._e_c00134{width:12.319852px;}
._12_c00134{width:13.641523px;}
._7_c00134{width:14.837429px;}
._8_c00134{width:15.858528px;}
._c_c00134{width:16.964149px;}
._13_c00134{width:21.527819px;}
._3_c00134{width:22.720937px;}
._b_c00134{width:26.890896px;}
._a_c00134{width:28.150940px;}
._10_c00134{width:53.454088px;}
._11_c00134{width:54.595501px;}
._2_c00134{width:93.628041px;}
._14_c00134{width:845.765568px;}
._0_c00134{width:2261.432586px;}
.fc0_c00134{color:rgb(0,0,0);}
.fs1_c00134{font-size:41.760000px;}
.fs0_c00134{font-size:66.240000px;}
.y0_c00134{bottom:0.000000px;}
.y11_c00134{bottom:8.099850px;}
.yc_c00134{bottom:8.100000px;}
.y9_c00134{bottom:16.740000px;}
.yd_c00134{bottom:17.100000px;}
.y7_c00134{bottom:18.900000px;}
.yb_c00134{bottom:26.100000px;}
.y10_c00134{bottom:26.145000px;}
.y5_c00134{bottom:27.900000px;}
.y6_c00134{bottom:36.900000px;}
.y8_c00134{bottom:39.240000px;}
.y30_c00134{bottom:132.840300px;}
.y2f_c00134{bottom:153.929550px;}
.y2e_c00134{bottom:174.989850px;}
.y2d_c00134{bottom:196.049550px;}
.y2c_c00134{bottom:216.929400px;}
.y2b_c00134{bottom:237.989700px;}
.y2a_c00134{bottom:259.050000px;}
.y29_c00134{bottom:279.929850px;}
.y28_c00134{bottom:300.990150px;}
.y27_c00134{bottom:322.050450px;}
.y26_c00134{bottom:342.930300px;}
.y25_c00134{bottom:363.990600px;}
.y24_c00134{bottom:385.050300px;}
.y23_c00134{bottom:405.975300px;}
.y22_c00134{bottom:427.035000px;}
.y21_c00134{bottom:448.095300px;}
.y20_c00134{bottom:468.975150px;}
.y1f_c00134{bottom:490.034850px;}
.y1e_c00134{bottom:511.095150px;}
.y1d_c00134{bottom:531.975000px;}
.y1c_c00134{bottom:553.034700px;}
.y1b_c00134{bottom:574.095000px;}
.y1a_c00134{bottom:603.975000px;}
.y19_c00134{bottom:630.615000px;}
.y18_c00134{bottom:658.365000px;}
.y17_c00134{bottom:686.085000px;}
.y16_c00134{bottom:713.985000px;}
.y15_c00134{bottom:741.705000px;}
.y14_c00134{bottom:769.425000px;}
.y13_c00134{bottom:797.145000px;}
.y12_c00134{bottom:824.865000px;}
.yf_c00134{bottom:870.585000px;}
.ye_c00134{bottom:916.530000px;}
.ya_c00134{bottom:962.250000px;}
.y4_c00134{bottom:1007.970000px;}
.y3_c00134{bottom:1097.609700px;}
.y2_c00134{bottom:1118.670000px;}
.y1_c00134{bottom:1174.680000px;}
.h7_c00134{height:27.000000px;}
.h8_c00134{height:27.035700px;}
.h5_c00134{height:45.000000px;}
.h6_c00134{height:45.035700px;}
.h4_c00134{height:48.224531px;}
.h2_c00134{height:56.957344px;}
.h3_c00134{height:66.779850px;}
.h1_c00134{height:1263.000000px;}
.h0_c00134{height:1263.060000px;}
.w3_c00134{width:73.800000px;}
.w7_c00134{width:74.159700px;}
.wa_c00134{width:84.779850px;}
.w5_c00134{width:116.279850px;}
.w4_c00134{width:126.755850px;}
.w9_c00134{width:222.150000px;}
.w6_c00134{width:232.770000px;}
.w2_c00134{width:233.850000px;}
.w8_c00134{width:679.425000px;}
.w1_c00134{width:893.250000px;}
.w0_c00134{width:893.340000px;}
.x0_c00134{left:0.000000px;}
.xd_c00134{left:4.859700px;}
.x13_c00134{left:10.260000px;}
.x6_c00134{left:15.660000px;}
.xc_c00134{left:19.080000px;}
.x5_c00134{left:23.220000px;}
.x9_c00134{left:24.330000px;}
.xe_c00134{left:25.920000px;}
.x17_c00134{left:30.420000px;}
.x15_c00134{left:35.850000px;}
.x14_c00134{left:36.900000px;}
.x8_c00134{left:38.190000px;}
.x16_c00134{left:40.320000px;}
.x11_c00134{left:41.940000px;}
.xf_c00134{left:44.850000px;}
.x3_c00134{left:46.253850px;}
.x10_c00134{left:51.840000px;}
.x18_c00134{left:55.260000px;}
.x1_c00134{left:127.655850px;}
.x19_c00134{left:148.896150px;}
.x1a_c00134{left:191.550000px;}
.x2_c00134{left:340.094850px;}
.x12_c00134{left:350.895000px;}
.x4_c00134{left:361.875000px;}
.x7_c00134{left:436.395000px;}
.xa_c00134{left:564.045000px;}
.xb_c00134{left:691.530000px;}
@media print{
.v2_c00134{vertical-align:-5.120832pt;}
.v0_c00134{vertical-align:0.000000pt;}
.v1_c00134{vertical-align:21.118773pt;}
.ls0_c00134{letter-spacing:0.000000pt;}
.ws0_c00134{word-spacing:-16.368640pt;}
.ws1_c00134{word-spacing:-10.319360pt;}
.ws2_c00134{word-spacing:0.000000pt;}
._d_c00134{margin-left:-2.415962pt;}
._1_c00134{margin-left:-1.001054pt;}
._6_c00134{width:0.918784pt;}
._9_c00134{width:2.590988pt;}
._4_c00134{width:4.002994pt;}
._5_c00134{width:5.125085pt;}
._f_c00134{width:10.008232pt;}
._e_c00134{width:10.950980pt;}
._12_c00134{width:12.125798pt;}
._7_c00134{width:13.188826pt;}
._8_c00134{width:14.096470pt;}
._c_c00134{width:15.079243pt;}
._13_c00134{width:19.135839pt;}
._3_c00134{width:20.196389pt;}
._b_c00134{width:23.903019pt;}
._a_c00134{width:25.023058pt;}
._10_c00134{width:47.514745pt;}
._11_c00134{width:48.529335pt;}
._2_c00134{width:83.224925pt;}
._14_c00134{width:751.791616pt;}
._0_c00134{width:2010.162299pt;}
.fs1_c00134{font-size:37.120000pt;}
.fs0_c00134{font-size:58.880000pt;}
.y0_c00134{bottom:0.000000pt;}
.y11_c00134{bottom:7.199867pt;}
.yc_c00134{bottom:7.200000pt;}
.y9_c00134{bottom:14.880000pt;}
.yd_c00134{bottom:15.200000pt;}
.y7_c00134{bottom:16.800000pt;}
.yb_c00134{bottom:23.200000pt;}
.y10_c00134{bottom:23.240000pt;}
.y5_c00134{bottom:24.800000pt;}
.y6_c00134{bottom:32.800000pt;}
.y8_c00134{bottom:34.880000pt;}
.y30_c00134{bottom:118.080267pt;}
.y2f_c00134{bottom:136.826267pt;}
.y2e_c00134{bottom:155.546533pt;}
.y2d_c00134{bottom:174.266267pt;}
.y2c_c00134{bottom:192.826133pt;}
.y2b_c00134{bottom:211.546400pt;}
.y2a_c00134{bottom:230.266667pt;}
.y29_c00134{bottom:248.826533pt;}
.y28_c00134{bottom:267.546800pt;}
.y27_c00134{bottom:286.267067pt;}
.y26_c00134{bottom:304.826933pt;}
.y25_c00134{bottom:323.547200pt;}
.y24_c00134{bottom:342.266933pt;}
.y23_c00134{bottom:360.866933pt;}
.y22_c00134{bottom:379.586667pt;}
.y21_c00134{bottom:398.306933pt;}
.y20_c00134{bottom:416.866800pt;}
.y1f_c00134{bottom:435.586533pt;}
.y1e_c00134{bottom:454.306800pt;}
.y1d_c00134{bottom:472.866667pt;}
.y1c_c00134{bottom:491.586400pt;}
.y1b_c00134{bottom:510.306667pt;}
.y1a_c00134{bottom:536.866667pt;}
.y19_c00134{bottom:560.546667pt;}
.y18_c00134{bottom:585.213333pt;}
.y17_c00134{bottom:609.853333pt;}
.y16_c00134{bottom:634.653333pt;}
.y15_c00134{bottom:659.293333pt;}
.y14_c00134{bottom:683.933333pt;}
.y13_c00134{bottom:708.573333pt;}
.y12_c00134{bottom:733.213333pt;}
.yf_c00134{bottom:773.853333pt;}
.ye_c00134{bottom:814.693333pt;}
.ya_c00134{bottom:855.333333pt;}
.y4_c00134{bottom:895.973333pt;}
.y3_c00134{bottom:975.653067pt;}
.y2_c00134{bottom:994.373333pt;}
.y1_c00134{bottom:1044.160000pt;}
.h7_c00134{height:24.000000pt;}
.h8_c00134{height:24.031733pt;}
.h5_c00134{height:40.000000pt;}
.h6_c00134{height:40.031733pt;}
.h4_c00134{height:42.866250pt;}
.h2_c00134{height:50.628750pt;}
.h3_c00134{height:59.359867pt;}
.h1_c00134{height:1122.666667pt;}
.h0_c00134{height:1122.720000pt;}
.w3_c00134{width:65.600000pt;}
.w7_c00134{width:65.919733pt;}
.wa_c00134{width:75.359867pt;}
.w5_c00134{width:103.359867pt;}
.w4_c00134{width:112.671867pt;}
.w9_c00134{width:197.466667pt;}
.w6_c00134{width:206.906667pt;}
.w2_c00134{width:207.866667pt;}
.w8_c00134{width:603.933333pt;}
.w1_c00134{width:794.000000pt;}
.w0_c00134{width:794.080000pt;}
.x0_c00134{left:0.000000pt;}
.xd_c00134{left:4.319733pt;}
.x13_c00134{left:9.120000pt;}
.x6_c00134{left:13.920000pt;}
.xc_c00134{left:16.960000pt;}
.x5_c00134{left:20.640000pt;}
.x9_c00134{left:21.626667pt;}
.xe_c00134{left:23.040000pt;}
.x17_c00134{left:27.040000pt;}
.x15_c00134{left:31.866667pt;}
.x14_c00134{left:32.800000pt;}
.x8_c00134{left:33.946667pt;}
.x16_c00134{left:35.840000pt;}
.x11_c00134{left:37.280000pt;}
.xf_c00134{left:39.866667pt;}
.x3_c00134{left:41.114533pt;}
.x10_c00134{left:46.080000pt;}
.x18_c00134{left:49.120000pt;}
.x1_c00134{left:113.471867pt;}
.x19_c00134{left:132.352133pt;}
.x1a_c00134{left:170.266667pt;}
.x2_c00134{left:302.306533pt;}
.x12_c00134{left:311.906667pt;}
.x4_c00134{left:321.666667pt;}
.x7_c00134{left:387.906667pt;}
.xa_c00134{left:501.373333pt;}
.xb_c00134{left:614.693333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_26450f23f21fb18543d437e8.woff2')format("woff");}.ff1_c00135{font-family:ff1_c00135;line-height:1.070312;font-style:normal;font-weight:normal;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_49b98351ba6f82602d88addb.woff2')format("woff");}.ff2_c00135{font-family:ff2_c00135;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00135;src:url('chunks/assets/font_b33651676deef2b719f9e788.woff2')format("woff");}.ff3_c00135{font-family:ff3_c00135;line-height:0.938965;font-style: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);}
.v2_c00135{vertical-align:-5.760936px;}
.v0_c00135{vertical-align:0.000000px;}
.v1_c00135{vertical-align:23.758620px;}
.ls0_c00135{letter-spacing:0.000000px;}
.sc__c00135{text-shadow:none;}
.sc0_c00135{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00135{-webkit-text-stroke:0px transparent;}
.sc0_c00135{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00135{word-spacing:-18.414720px;}
.ws1_c00135{word-spacing:-11.609280px;}
.ws2_c00135{word-spacing:0.000000px;}
._7_c00135{margin-left:-3.974718px;}
._1_c00135{margin-left:-1.126186px;}
._e_c00135{width:1.188472px;}
._d_c00135{width:2.983498px;}
._9_c00135{width:4.370473px;}
._6_c00135{width:6.355423px;}
._5_c00135{width:7.418989px;}
._8_c00135{width:8.543834px;}
._a_c00135{width:10.199116px;}
._f_c00135{width:14.505564px;}
._4_c00135{width:15.827896px;}
._3_c00135{width:16.957544px;}
._11_c00135{width:19.866723px;}
._10_c00135{width:20.866996px;}
._c_c00135{width:29.447917px;}
._b_c00135{width:30.448011px;}
._2_c00135{width:80.517558px;}
._12_c00135{width:845.765568px;}
._0_c00135{width:2261.432586px;}
.fc0_c00135{color:rgb(0,0,0);}
.fs1_c00135{font-size:41.760000px;}
.fs0_c00135{font-size:66.240000px;}
.y0_c00135{bottom:0.000000px;}
.yf_c00135{bottom:8.099850px;}
.ya_c00135{bottom:8.100000px;}
.y7_c00135{bottom:16.740000px;}
.yb_c00135{bottom:17.100000px;}
.y9_c00135{bottom:26.100000px;}
.ye_c00135{bottom:26.145000px;}
.y5_c00135{bottom:27.900000px;}
.y6_c00135{bottom:39.240000px;}
.y29_c00135{bottom:188.490000px;}
.y28_c00135{bottom:209.551200px;}
.y27_c00135{bottom:230.431050px;}
.y26_c00135{bottom:251.491350px;}
.y25_c00135{bottom:272.551050px;}
.y24_c00135{bottom:293.430900px;}
.y23_c00135{bottom:314.490600px;}
.y22_c00135{bottom:335.550300px;}
.y21_c00135{bottom:356.430150px;}
.y20_c00135{bottom:377.490450px;}
.y1f_c00135{bottom:398.595300px;}
.y1e_c00135{bottom:419.475150px;}
.y1d_c00135{bottom:440.534850px;}
.y1c_c00135{bottom:461.595150px;}
.y1b_c00135{bottom:482.475000px;}
.y1a_c00135{bottom:512.535000px;}
.y19_c00135{bottom:539.175000px;}
.y18_c00135{bottom:566.895000px;}
.y17_c00135{bottom:594.615000px;}
.y16_c00135{bottom:622.335000px;}
.y15_c00135{bottom:650.085000px;}
.y14_c00135{bottom:677.985000px;}
.y13_c00135{bottom:705.705000px;}
.y12_c00135{bottom:733.425000px;}
.y11_c00135{bottom:779.145000px;}
.y10_c00135{bottom:824.865000px;}
.yd_c00135{bottom:870.585000px;}
.yc_c00135{bottom:916.530000px;}
.y8_c00135{bottom:962.250000px;}
.y4_c00135{bottom:1007.970000px;}
.y3_c00135{bottom:1097.609700px;}
.y2_c00135{bottom:1118.670000px;}
.y1_c00135{bottom:1174.680000px;}
.h7_c00135{height:27.000000px;}
.h8_c00135{height:27.035700px;}
.h5_c00135{height:45.000000px;}
.h6_c00135{height:45.035700px;}
.h4_c00135{height:48.224531px;}
.h2_c00135{height:56.957344px;}
.h3_c00135{height:66.779850px;}
.h1_c00135{height:1263.000000px;}
.h0_c00135{height:1263.060000px;}
.w3_c00135{width:84.420150px;}
.w8_c00135{width:84.779850px;}
.w6_c00135{width:94.859700px;}
.w5_c00135{width:126.936300px;}
.w4_c00135{width:147.815700px;}
.w2_c00135{width:222.150000px;}
.w7_c00135{width:679.425000px;}
.w1_c00135{width:893.250000px;}
.w0_c00135{width:893.340000px;}
.x0_c00135{left:0.000000px;}
.xf_c00135{left:4.859700px;}
.xd_c00135{left:5.940000px;}
.x5_c00135{left:7.020000px;}
.xe_c00135{left:8.460000px;}
.x16_c00135{left:10.260000px;}
.x19_c00135{left:19.800000px;}
.xb_c00135{left:24.480000px;}
.x18_c00135{left:26.280000px;}
.x10_c00135{left:30.600000px;}
.x8_c00135{left:34.950000px;}
.x13_c00135{left:36.000000px;}
.xa_c00135{left:37.800000px;}
.x3_c00135{left:40.314000px;}
.x15_c00135{left:45.045000px;}
.x17_c00135{left:47.025000px;}
.x7_c00135{left:48.810000px;}
.x12_c00135{left:52.065000px;}
.x14_c00135{left:55.470000px;}
.x1a_c00135{left:57.630000px;}
.x11_c00135{left:62.490000px;}
.x1_c00135{left:127.655850px;}
.x1b_c00135{left:148.896150px;}
.x1c_c00135{left:191.550000px;}
.x2_c00135{left:234.029850px;}
.x4_c00135{left:351.255000px;}
.x6_c00135{left:436.395000px;}
.x9_c00135{left:585.105000px;}
.xc_c00135{left:712.950000px;}
@media print{
.v2_c00135{vertical-align:-5.120832pt;}
.v0_c00135{vertical-align:0.000000pt;}
.v1_c00135{vertical-align:21.118773pt;}
.ls0_c00135{letter-spacing:0.000000pt;}
.ws0_c00135{word-spacing:-16.368640pt;}
.ws1_c00135{word-spacing:-10.319360pt;}
.ws2_c00135{word-spacing:0.000000pt;}
._7_c00135{margin-left:-3.533083pt;}
._1_c00135{margin-left:-1.001054pt;}
._e_c00135{width:1.056420pt;}
._d_c00135{width:2.651998pt;}
._9_c00135{width:3.884865pt;}
._6_c00135{width:5.649265pt;}
._5_c00135{width:6.594657pt;}
._8_c00135{width:7.594519pt;}
._a_c00135{width:9.065881pt;}
._f_c00135{width:12.893834pt;}
._4_c00135{width:14.069241pt;}
._3_c00135{width:15.073372pt;}
._11_c00135{width:17.659310pt;}
._10_c00135{width:18.548441pt;}
._c_c00135{width:26.175927pt;}
._b_c00135{width:27.064899pt;}
._2_c00135{width:71.571162pt;}
._12_c00135{width:751.791616pt;}
._0_c00135{width:2010.162299pt;}
.fs1_c00135{font-size:37.120000pt;}
.fs0_c00135{font-size:58.880000pt;}
.y0_c00135{bottom:0.000000pt;}
.yf_c00135{bottom:7.199867pt;}
.ya_c00135{bottom:7.200000pt;}
.y7_c00135{bottom:14.880000pt;}
.yb_c00135{bottom:15.200000pt;}
.y9_c00135{bottom:23.200000pt;}
.ye_c00135{bottom:23.240000pt;}
.y5_c00135{bottom:24.800000pt;}
.y6_c00135{bottom:34.880000pt;}
.y29_c00135{bottom:167.546667pt;}
.y28_c00135{bottom:186.267733pt;}
.y27_c00135{bottom:204.827600pt;}
.y26_c00135{bottom:223.547867pt;}
.y25_c00135{bottom:242.267600pt;}
.y24_c00135{bottom:260.827467pt;}
.y23_c00135{bottom:279.547200pt;}
.y22_c00135{bottom:298.266933pt;}
.y21_c00135{bottom:316.826800pt;}
.y20_c00135{bottom:335.547067pt;}
.y1f_c00135{bottom:354.306933pt;}
.y1e_c00135{bottom:372.866800pt;}
.y1d_c00135{bottom:391.586533pt;}
.y1c_c00135{bottom:410.306800pt;}
.y1b_c00135{bottom:428.866667pt;}
.y1a_c00135{bottom:455.586667pt;}
.y19_c00135{bottom:479.266667pt;}
.y18_c00135{bottom:503.906667pt;}
.y17_c00135{bottom:528.546667pt;}
.y16_c00135{bottom:553.186667pt;}
.y15_c00135{bottom:577.853333pt;}
.y14_c00135{bottom:602.653333pt;}
.y13_c00135{bottom:627.293333pt;}
.y12_c00135{bottom:651.933333pt;}
.y11_c00135{bottom:692.573333pt;}
.y10_c00135{bottom:733.213333pt;}
.yd_c00135{bottom:773.853333pt;}
.yc_c00135{bottom:814.693333pt;}
.y8_c00135{bottom:855.333333pt;}
.y4_c00135{bottom:895.973333pt;}
.y3_c00135{bottom:975.653067pt;}
.y2_c00135{bottom:994.373333pt;}
.y1_c00135{bottom:1044.160000pt;}
.h7_c00135{height:24.000000pt;}
.h8_c00135{height:24.031733pt;}
.h5_c00135{height:40.000000pt;}
.h6_c00135{height:40.031733pt;}
.h4_c00135{height:42.866250pt;}
.h2_c00135{height:50.628750pt;}
.h3_c00135{height:59.359867pt;}
.h1_c00135{height:1122.666667pt;}
.h0_c00135{height:1122.720000pt;}
.w3_c00135{width:75.040133pt;}
.w8_c00135{width:75.359867pt;}
.w6_c00135{width:84.319733pt;}
.w5_c00135{width:112.832267pt;}
.w4_c00135{width:131.391733pt;}
.w2_c00135{width:197.466667pt;}
.w7_c00135{width:603.933333pt;}
.w1_c00135{width:794.000000pt;}
.w0_c00135{width:794.080000pt;}
.x0_c00135{left:0.000000pt;}
.xf_c00135{left:4.319733pt;}
.xd_c00135{left:5.280000pt;}
.x5_c00135{left:6.240000pt;}
.xe_c00135{left:7.520000pt;}
.x16_c00135{left:9.120000pt;}
.x19_c00135{left:17.600000pt;}
.xb_c00135{left:21.760000pt;}
.x18_c00135{left:23.360000pt;}
.x10_c00135{left:27.200000pt;}
.x8_c00135{left:31.066667pt;}
.x13_c00135{left:32.000000pt;}
.xa_c00135{left:33.600000pt;}
.x3_c00135{left:35.834667pt;}
.x15_c00135{left:40.040000pt;}
.x17_c00135{left:41.800000pt;}
.x7_c00135{left:43.386667pt;}
.x12_c00135{left:46.280000pt;}
.x14_c00135{left:49.306667pt;}
.x1a_c00135{left:51.226667pt;}
.x11_c00135{left:55.546667pt;}
.x1_c00135{left:113.471867pt;}
.x1b_c00135{left:132.352133pt;}
.x1c_c00135{left:170.266667pt;}
.x2_c00135{left:208.026533pt;}
.x4_c00135{left:312.226667pt;}
.x6_c00135{left:387.906667pt;}
.x9_c00135{left:520.093333pt;}
.xc_c00135{left:633.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_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_9f4e0b65c356fe2304e08f76.woff2')format("woff");}.ff1_c00136{font-family:ff1_c00136;line-height:1.070312;font-style:normal;font-weight:normal;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_49b98351ba6f82602d88addb.woff2')format("woff");}.ff2_c00136{font-family:ff2_c00136;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00136;src:url('chunks/assets/font_8d166d2b9a236e96fa44feb7.woff2')format("woff");}.ff3_c00136{font-family:ff3_c00136;line-height:0.938965;font-style: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);}
.m1_c00136{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00136{vertical-align:-5.760936px;}
.v0_c00136{vertical-align:0.000000px;}
.v1_c00136{vertical-align:23.758620px;}
.ls1_c00136{letter-spacing:0.000000px;}
.ls0_c00136{letter-spacing:0.070560px;}
.sc__c00136{text-shadow:none;}
.sc0_c00136{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00136{-webkit-text-stroke:0px transparent;}
.sc0_c00136{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00136{word-spacing:-18.414720px;}
.ws1_c00136{word-spacing:-11.609280px;}
.ws2_c00136{word-spacing:0.000000px;}
._1_c00136{margin-left:-1.126186px;}
._4_c00136{width:1.445962px;}
._6_c00136{width:4.559104px;}
._3_c00136{width:7.617704px;}
._a_c00136{width:8.968212px;}
._9_c00136{width:10.111843px;}
._7_c00136{width:11.459520px;}
._8_c00136{width:12.560768px;}
._2_c00136{width:80.517558px;}
._5_c00136{width:89.844227px;}
._0_c00136{width:2261.432586px;}
.fc0_c00136{color:rgb(0,0,0);}
.fs1_c00136{font-size:41.760000px;}
.fs0_c00136{font-size:66.240000px;}
.y0_c00136{bottom:0.000000px;}
.yf_c00136{bottom:8.099850px;}
.ya_c00136{bottom:8.100000px;}
.y7_c00136{bottom:16.740000px;}
.yb_c00136{bottom:17.100000px;}
.y9_c00136{bottom:26.100000px;}
.ye_c00136{bottom:26.145000px;}
.y5_c00136{bottom:27.900000px;}
.y6_c00136{bottom:39.240000px;}
.y25_c00136{bottom:106.020150px;}
.y24_c00136{bottom:126.900000px;}
.y23_c00136{bottom:147.996150px;}
.y22_c00136{bottom:169.050000px;}
.y21_c00136{bottom:198.930000px;}
.y20_c00136{bottom:237.990000px;}
.y1f_c00136{bottom:264.630000px;}
.y1e_c00136{bottom:292.350000px;}
.y1d_c00136{bottom:320.070000px;}
.y1c_c00136{bottom:347.790000px;}
.y1b_c00136{bottom:375.510000px;}
.y1a_c00136{bottom:403.455000px;}
.y19_c00136{bottom:431.175000px;}
.y18_c00136{bottom:458.895000px;}
.y17_c00136{bottom:504.615000px;}
.y16_c00136{bottom:550.335000px;}
.y15_c00136{bottom:596.055000px;}
.y14_c00136{bottom:641.985000px;}
.y13_c00136{bottom:687.705000px;}
.y12_c00136{bottom:733.425000px;}
.y11_c00136{bottom:779.145000px;}
.y10_c00136{bottom:824.865000px;}
.yd_c00136{bottom:870.585000px;}
.yc_c00136{bottom:916.530000px;}
.y8_c00136{bottom:962.250000px;}
.y4_c00136{bottom:1007.970000px;}
.y3_c00136{bottom:1097.609700px;}
.y2_c00136{bottom:1118.670000px;}
.y1_c00136{bottom:1174.680000px;}
.h8_c00136{height:27.000000px;}
.h9_c00136{height:27.036300px;}
.h5_c00136{height:45.000000px;}
.h6_c00136{height:45.035700px;}
.h7_c00136{height:45.036300px;}
.h4_c00136{height:48.224531px;}
.h2_c00136{height:56.957344px;}
.h3_c00136{height:66.779850px;}
.h1_c00136{height:1263.000000px;}
.h0_c00136{height:1263.060000px;}
.w3_c00136{width:84.419550px;}
.w7_c00136{width:84.779850px;}
.w9_c00136{width:95.220150px;}
.w5_c00136{width:116.315700px;}
.wa_c00136{width:126.755850px;}
.w4_c00136{width:137.376000px;}
.w6_c00136{width:137.519550px;}
.w2_c00136{width:200.910000px;}
.w8_c00136{width:679.425000px;}
.w1_c00136{width:893.250000px;}
.w0_c00136{width:893.340000px;}
.x0_c00136{left:0.000000px;}
.xd_c00136{left:4.859700px;}
.x5_c00136{left:7.020000px;}
.x15_c00136{left:15.660000px;}
.xa_c00136{left:19.080000px;}
.xc_c00136{left:27.180000px;}
.x3_c00136{left:29.694000px;}
.x12_c00136{left:30.960000px;}
.x9_c00136{left:32.400000px;}
.x18_c00136{left:35.850000px;}
.x19_c00136{left:37.650000px;}
.x11_c00136{left:39.600000px;}
.x17_c00136{left:41.580000px;}
.x7_c00136{left:43.410000px;}
.x16_c00136{left:45.030000px;}
.xf_c00136{left:46.620000px;}
.x10_c00136{left:50.070000px;}
.x13_c00136{left:52.560000px;}
.xe_c00136{left:57.270000px;}
.x1a_c00136{left:65.880000px;}
.x1_c00136{left:127.655850px;}
.x1b_c00136{left:148.896150px;}
.x2_c00136{left:234.029850px;}
.x4_c00136{left:330.015000px;}
.x6_c00136{left:415.155000px;}
.x14_c00136{left:425.775000px;}
.x8_c00136{left:553.245000px;}
.xb_c00136{left:670.290000px;}
@media print{
.v2_c00136{vertical-align:-5.120832pt;}
.v0_c00136{vertical-align:0.000000pt;}
.v1_c00136{vertical-align:21.118773pt;}
.ls1_c00136{letter-spacing:0.000000pt;}
.ls0_c00136{letter-spacing:0.062720pt;}
.ws0_c00136{word-spacing:-16.368640pt;}
.ws1_c00136{word-spacing:-10.319360pt;}
.ws2_c00136{word-spacing:0.000000pt;}
._1_c00136{margin-left:-1.001054pt;}
._4_c00136{width:1.285300pt;}
._6_c00136{width:4.052537pt;}
._3_c00136{width:6.771292pt;}
._a_c00136{width:7.971744pt;}
._9_c00136{width:8.988305pt;}
._7_c00136{width:10.186240pt;}
._8_c00136{width:11.165127pt;}
._2_c00136{width:71.571162pt;}
._5_c00136{width:79.861535pt;}
._0_c00136{width:2010.162299pt;}
.fs1_c00136{font-size:37.120000pt;}
.fs0_c00136{font-size:58.880000pt;}
.y0_c00136{bottom:0.000000pt;}
.yf_c00136{bottom:7.199867pt;}
.ya_c00136{bottom:7.200000pt;}
.y7_c00136{bottom:14.880000pt;}
.yb_c00136{bottom:15.200000pt;}
.y9_c00136{bottom:23.200000pt;}
.ye_c00136{bottom:23.240000pt;}
.y5_c00136{bottom:24.800000pt;}
.y6_c00136{bottom:34.880000pt;}
.y25_c00136{bottom:94.240133pt;}
.y24_c00136{bottom:112.800000pt;}
.y23_c00136{bottom:131.552133pt;}
.y22_c00136{bottom:150.266667pt;}
.y21_c00136{bottom:176.826667pt;}
.y20_c00136{bottom:211.546667pt;}
.y1f_c00136{bottom:235.226667pt;}
.y1e_c00136{bottom:259.866667pt;}
.y1d_c00136{bottom:284.506667pt;}
.y1c_c00136{bottom:309.146667pt;}
.y1b_c00136{bottom:333.786667pt;}
.y1a_c00136{bottom:358.626667pt;}
.y19_c00136{bottom:383.266667pt;}
.y18_c00136{bottom:407.906667pt;}
.y17_c00136{bottom:448.546667pt;}
.y16_c00136{bottom:489.186667pt;}
.y15_c00136{bottom:529.826667pt;}
.y14_c00136{bottom:570.653333pt;}
.y13_c00136{bottom:611.293333pt;}
.y12_c00136{bottom:651.933333pt;}
.y11_c00136{bottom:692.573333pt;}
.y10_c00136{bottom:733.213333pt;}
.yd_c00136{bottom:773.853333pt;}
.yc_c00136{bottom:814.693333pt;}
.y8_c00136{bottom:855.333333pt;}
.y4_c00136{bottom:895.973333pt;}
.y3_c00136{bottom:975.653067pt;}
.y2_c00136{bottom:994.373333pt;}
.y1_c00136{bottom:1044.160000pt;}
.h8_c00136{height:24.000000pt;}
.h9_c00136{height:24.032267pt;}
.h5_c00136{height:40.000000pt;}
.h6_c00136{height:40.031733pt;}
.h7_c00136{height:40.032267pt;}
.h4_c00136{height:42.866250pt;}
.h2_c00136{height:50.628750pt;}
.h3_c00136{height:59.359867pt;}
.h1_c00136{height:1122.666667pt;}
.h0_c00136{height:1122.720000pt;}
.w3_c00136{width:75.039600pt;}
.w7_c00136{width:75.359867pt;}
.w9_c00136{width:84.640133pt;}
.w5_c00136{width:103.391733pt;}
.wa_c00136{width:112.671867pt;}
.w4_c00136{width:122.112000pt;}
.w6_c00136{width:122.239600pt;}
.w2_c00136{width:178.586667pt;}
.w8_c00136{width:603.933333pt;}
.w1_c00136{width:794.000000pt;}
.w0_c00136{width:794.080000pt;}
.x0_c00136{left:0.000000pt;}
.xd_c00136{left:4.319733pt;}
.x5_c00136{left:6.240000pt;}
.x15_c00136{left:13.920000pt;}
.xa_c00136{left:16.960000pt;}
.xc_c00136{left:24.160000pt;}
.x3_c00136{left:26.394667pt;}
.x12_c00136{left:27.520000pt;}
.x9_c00136{left:28.800000pt;}
.x18_c00136{left:31.866667pt;}
.x19_c00136{left:33.466667pt;}
.x11_c00136{left:35.200000pt;}
.x17_c00136{left:36.960000pt;}
.x7_c00136{left:38.586667pt;}
.x16_c00136{left:40.026667pt;}
.xf_c00136{left:41.440000pt;}
.x10_c00136{left:44.506667pt;}
.x13_c00136{left:46.720000pt;}
.xe_c00136{left:50.906667pt;}
.x1a_c00136{left:58.560000pt;}
.x1_c00136{left:113.471867pt;}
.x1b_c00136{left:132.352133pt;}
.x2_c00136{left:208.026533pt;}
.x4_c00136{left:293.346667pt;}
.x6_c00136{left:369.026667pt;}
.x14_c00136{left:378.466667pt;}
.x8_c00136{left:491.773333pt;}
.xb_c00136{left:595.813333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8c1bb881c2ef3fb647ee088b.woff2')format("woff");}.ff1_c00137{font-family:ff1_c00137;line-height:1.070312;font-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_c00137{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0_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);}
.m2_c00137{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_c00137{vertical-align:0.000000px;}
.ls0_c00137{letter-spacing:0.000000px;}
.sc__c00137{text-shadow:none;}
.sc0_c00137{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00137{-webkit-text-stroke:0px transparent;}
.sc0_c00137{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00137{word-spacing:-18.454752px;}
.ws1_c00137{word-spacing:-18.414720px;}
.ws2_c00137{word-spacing:0.000000px;}
._3_c00137{margin-left:-4.069320px;}
._4_c00137{margin-left:-2.832274px;}
._1_c00137{margin-left:-1.226455px;}
._8_c00137{width:1.075606px;}
._f_c00137{width:3.284005px;}
._6_c00137{width:5.364741px;}
._7_c00137{width:6.505499px;}
._c_c00137{width:8.068321px;}
._b_c00137{width:9.307406px;}
._d_c00137{width:10.629820px;}
._5_c00137{width:15.339571px;}
._2_c00137{width:16.360564px;}
._9_c00137{width:22.257104px;}
._a_c00137{width:23.612082px;}
._e_c00137{width:25.700970px;}
._11_c00137{width:235.496215px;}
._12_c00137{width:455.833920px;}
._13_c00137{width:473.286720px;}
._10_c00137{width:845.765568px;}
._0_c00137{width:2261.432586px;}
.fc1_c00137{color:rgb(89,89,89);}
.fc0_c00137{color:rgb(0,0,0);}
.fs0_c00137{font-size:66.240000px;}
.fs1_c00137{font-size:66.384000px;}
.y0_c00137{bottom:0.000000px;}
.y26_c00137{bottom:3.660000px;}
.y1a_c00137{bottom:141.045000px;}
.y18_c00137{bottom:159.150000px;}
.y17_c00137{bottom:198.210000px;}
.y2a_c00137{bottom:263.415000px;}
.y29_c00137{bottom:290.415000px;}
.y28_c00137{bottom:317.415000px;}
.y27_c00137{bottom:344.415000px;}
.y19_c00137{bottom:349.560000px;}
.y1b_c00137{bottom:397.620000px;}
.y1c_c00137{bottom:422.249850px;}
.y1d_c00137{bottom:446.909550px;}
.y1e_c00137{bottom:471.524850px;}
.y1f_c00137{bottom:496.184550px;}
.y20_c00137{bottom:520.815000px;}
.y21_c00137{bottom:545.474700px;}
.y22_c00137{bottom:570.090000px;}
.y23_c00137{bottom:594.749700px;}
.y24_c00137{bottom:619.379550px;}
.y25_c00137{bottom:640.200000px;}
.y16_c00137{bottom:671.505000px;}
.y15_c00137{bottom:692.565450px;}
.y14_c00137{bottom:713.625150px;}
.y13_c00137{bottom:734.505000px;}
.y12_c00137{bottom:755.565300px;}
.y11_c00137{bottom:776.625000px;}
.y10_c00137{bottom:806.505150px;}
.yf_c00137{bottom:827.565450px;}
.ye_c00137{bottom:848.625150px;}
.yd_c00137{bottom:869.505000px;}
.yc_c00137{bottom:890.565300px;}
.yb_c00137{bottom:911.670150px;}
.ya_c00137{bottom:932.550000px;}
.y9_c00137{bottom:962.610000px;}
.y8_c00137{bottom:983.670300px;}
.y7_c00137{bottom:1004.550150px;}
.y6_c00137{bottom:1025.609850px;}
.y5_c00137{bottom:1046.670150px;}
.y4_c00137{bottom:1067.550000px;}
.y3_c00137{bottom:1097.609700px;}
.y2_c00137{bottom:1118.670000px;}
.y1_c00137{bottom:1174.680000px;}
.h5_c00137{height:19.500000px;}
.h2_c00137{height:56.957344px;}
.h4_c00137{height:57.081164px;}
.h3_c00137{height:329.940000px;}
.h1_c00137{height:1263.000000px;}
.h0_c00137{height:1263.060000px;}
.w2_c00137{width:19.440300px;}
.w1_c00137{width:893.250000px;}
.w0_c00137{width:893.340000px;}
.x0_c00137{left:0.000000px;}
.x5_c00137{left:15.765150px;}
.x1_c00137{left:127.655850px;}
.x4_c00137{left:135.179850px;}
.x2_c00137{left:148.896150px;}
.x8_c00137{left:164.444940px;}
.x7_c00137{left:178.379700px;}
.x3_c00137{left:191.550000px;}
.x6_c00137{left:196.740000px;}
.xa_c00137{left:247.860000px;}
.x9_c00137{left:381.390000px;}
@media print{
.v0_c00137{vertical-align:0.000000pt;}
.ls0_c00137{letter-spacing:0.000000pt;}
.ws0_c00137{word-spacing:-16.404224pt;}
.ws1_c00137{word-spacing:-16.368640pt;}
.ws2_c00137{word-spacing:0.000000pt;}
._3_c00137{margin-left:-3.617173pt;}
._4_c00137{margin-left:-2.517577pt;}
._1_c00137{margin-left:-1.090182pt;}
._8_c00137{width:0.956095pt;}
._f_c00137{width:2.919116pt;}
._6_c00137{width:4.768659pt;}
._7_c00137{width:5.782666pt;}
._c_c00137{width:7.171841pt;}
._b_c00137{width:8.273250pt;}
._d_c00137{width:9.448729pt;}
._5_c00137{width:13.635174pt;}
._2_c00137{width:14.542724pt;}
._9_c00137{width:19.784092pt;}
._a_c00137{width:20.988517pt;}
._e_c00137{width:22.845306pt;}
._11_c00137{width:209.329969pt;}
._12_c00137{width:405.185707pt;}
._13_c00137{width:420.699307pt;}
._10_c00137{width:751.791616pt;}
._0_c00137{width:2010.162299pt;}
.fs0_c00137{font-size:58.880000pt;}
.fs1_c00137{font-size:59.008000pt;}
.y0_c00137{bottom:0.000000pt;}
.y26_c00137{bottom:3.253333pt;}
.y1a_c00137{bottom:125.373333pt;}
.y18_c00137{bottom:141.466667pt;}
.y17_c00137{bottom:176.186667pt;}
.y2a_c00137{bottom:234.146667pt;}
.y29_c00137{bottom:258.146667pt;}
.y28_c00137{bottom:282.146667pt;}
.y27_c00137{bottom:306.146667pt;}
.y19_c00137{bottom:310.720000pt;}
.y1b_c00137{bottom:353.440000pt;}
.y1c_c00137{bottom:375.333200pt;}
.y1d_c00137{bottom:397.252933pt;}
.y1e_c00137{bottom:419.133200pt;}
.y1f_c00137{bottom:441.052933pt;}
.y20_c00137{bottom:462.946667pt;}
.y21_c00137{bottom:484.866400pt;}
.y22_c00137{bottom:506.746667pt;}
.y23_c00137{bottom:528.666400pt;}
.y24_c00137{bottom:550.559600pt;}
.y25_c00137{bottom:569.066667pt;}
.y16_c00137{bottom:596.893333pt;}
.y15_c00137{bottom:615.613733pt;}
.y14_c00137{bottom:634.333467pt;}
.y13_c00137{bottom:652.893333pt;}
.y12_c00137{bottom:671.613600pt;}
.y11_c00137{bottom:690.333333pt;}
.y10_c00137{bottom:716.893467pt;}
.yf_c00137{bottom:735.613733pt;}
.ye_c00137{bottom:754.333467pt;}
.yd_c00137{bottom:772.893333pt;}
.yc_c00137{bottom:791.613600pt;}
.yb_c00137{bottom:810.373467pt;}
.ya_c00137{bottom:828.933333pt;}
.y9_c00137{bottom:855.653333pt;}
.y8_c00137{bottom:874.373600pt;}
.y7_c00137{bottom:892.933467pt;}
.y6_c00137{bottom:911.653200pt;}
.y5_c00137{bottom:930.373467pt;}
.y4_c00137{bottom:948.933333pt;}
.y3_c00137{bottom:975.653067pt;}
.y2_c00137{bottom:994.373333pt;}
.y1_c00137{bottom:1044.160000pt;}
.h5_c00137{height:17.333333pt;}
.h2_c00137{height:50.628750pt;}
.h4_c00137{height:50.738813pt;}
.h3_c00137{height:293.280000pt;}
.h1_c00137{height:1122.666667pt;}
.h0_c00137{height:1122.720000pt;}
.w2_c00137{width:17.280267pt;}
.w1_c00137{width:794.000000pt;}
.w0_c00137{width:794.080000pt;}
.x0_c00137{left:0.000000pt;}
.x5_c00137{left:14.013467pt;}
.x1_c00137{left:113.471867pt;}
.x4_c00137{left:120.159867pt;}
.x2_c00137{left:132.352133pt;}
.x8_c00137{left:146.173280pt;}
.x7_c00137{left:158.559733pt;}
.x3_c00137{left:170.266667pt;}
.x6_c00137{left:174.880000pt;}
.xa_c00137{left:220.320000pt;}
.x9_c00137{left:339.013333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_82c480fcd5f0aae1f81aa9fb.woff2')format("woff");}.ff1_c00138{font-family:ff1_c00138;line-height:1.070312;font-style:normal;font-weight:normal;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_08382f1df9cd64249143afd1.woff2')format("woff");}.ff2_c00138{font-family:ff2_c00138;line-height:0.938965;font-style:normal;font-weight:normal;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_922fa8ccd706cc89ceda468d.woff2')format("woff");}.ff3_c00138{font-family:ff3_c00138;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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);}
.m1_c00138{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00138{vertical-align:-23.760960px;}
.v0_c00138{vertical-align:0.000000px;}
.v1_c00138{vertical-align:23.760960px;}
.ls1_c00138{letter-spacing:0.000000px;}
.ls0_c00138{letter-spacing:0.070560px;}
.sc__c00138{text-shadow:none;}
.sc0_c00138{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00138{-webkit-text-stroke:0px transparent;}
.sc0_c00138{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00138{word-spacing:-18.414720px;}
.ws1_c00138{word-spacing:-11.609280px;}
.ws2_c00138{word-spacing:0.000000px;}
._c_c00138{margin-left:-5.033089px;}
._b_c00138{margin-left:-3.492855px;}
._3_c00138{margin-left:-1.591452px;}
._4_c00138{width:1.063538px;}
._11_c00138{width:2.068804px;}
._9_c00138{width:3.083990px;}
._8_c00138{width:4.173726px;}
._f_c00138{width:5.822106px;}
._10_c00138{width:7.088686px;}
._13_c00138{width:8.746149px;}
._14_c00138{width:10.083700px;}
._18_c00138{width:11.598648px;}
._17_c00138{width:12.652039px;}
._6_c00138{width:13.711699px;}
._5_c00138{width:15.517499px;}
._a_c00138{width:16.775144px;}
._1_c00138{width:20.335457px;}
._2_c00138{width:21.926956px;}
._7_c00138{width:23.166816px;}
._15_c00138{width:26.164691px;}
._16_c00138{width:27.623729px;}
._1b_c00138{width:38.883709px;}
._19_c00138{width:40.076025px;}
._1a_c00138{width:41.319894px;}
._1c_c00138{width:42.725969px;}
._d_c00138{width:45.373726px;}
._e_c00138{width:46.964708px;}
._12_c00138{width:62.288245px;}
._1d_c00138{width:845.765568px;}
._0_c00138{width:2261.432586px;}
.fc0_c00138{color:rgb(0,0,0);}
.fs1_c00138{font-size:41.760000px;}
.fs0_c00138{font-size:66.240000px;}
.y0_c00138{bottom:0.000000px;}
.y2d_c00138{bottom:143.496150px;}
.y2c_c00138{bottom:164.550450px;}
.y2b_c00138{bottom:185.430300px;}
.y2a_c00138{bottom:206.490600px;}
.y29_c00138{bottom:227.550300px;}
.y28_c00138{bottom:248.430150px;}
.y27_c00138{bottom:269.490450px;}
.y26_c00138{bottom:290.550150px;}
.y25_c00138{bottom:311.430000px;}
.y24_c00138{bottom:332.490300px;}
.y23_c00138{bottom:353.550000px;}
.y22_c00138{bottom:374.429850px;}
.y21_c00138{bottom:395.534700px;}
.y20_c00138{bottom:416.595000px;}
.y1f_c00138{bottom:446.475000px;}
.y1e_c00138{bottom:476.535000px;}
.y1d_c00138{bottom:506.595450px;}
.y1c_c00138{bottom:527.475300px;}
.y1b_c00138{bottom:548.534700px;}
.y1a_c00138{bottom:569.595000px;}
.y19_c00138{bottom:599.475000px;}
.y18_c00138{bottom:656.565750px;}
.y17_c00138{bottom:677.625450px;}
.y16_c00138{bottom:698.505300px;}
.y15_c00138{bottom:719.565600px;}
.y14_c00138{bottom:740.625300px;}
.y13_c00138{bottom:761.505150px;}
.y12_c00138{bottom:782.565450px;}
.y11_c00138{bottom:803.625150px;}
.y10_c00138{bottom:824.505150px;}
.yf_c00138{bottom:845.565450px;}
.ye_c00138{bottom:866.625150px;}
.yd_c00138{bottom:887.505000px;}
.yc_c00138{bottom:908.609850px;}
.yb_c00138{bottom:929.670150px;}
.ya_c00138{bottom:950.550300px;}
.y9_c00138{bottom:971.610000px;}
.y8_c00138{bottom:992.670300px;}
.y7_c00138{bottom:1013.550150px;}
.y6_c00138{bottom:1034.609850px;}
.y5_c00138{bottom:1055.670150px;}
.y4_c00138{bottom:1076.550000px;}
.y3_c00138{bottom:1097.609700px;}
.y2_c00138{bottom:1118.670000px;}
.y1_c00138{bottom:1174.680000px;}
.h5_c00138{height:48.224531px;}
.h3_c00138{height:48.256875px;}
.h4_c00138{height:56.956144px;}
.h2_c00138{height:56.957344px;}
.h6_c00138{height:56.958544px;}
.h8_c00138{height:59.666511px;}
.h7_c00138{height:59.668851px;}
.h1_c00138{height:1263.000000px;}
.h0_c00138{height:1263.060000px;}
.w1_c00138{width:893.250000px;}
.w0_c00138{width:893.340000px;}
.x0_c00138{left:0.000000px;}
.x1_c00138{left:127.655850px;}
.x2_c00138{left:148.896150px;}
.x3_c00138{left:191.550000px;}
@media print{
.v2_c00138{vertical-align:-21.120853pt;}
.v0_c00138{vertical-align:0.000000pt;}
.v1_c00138{vertical-align:21.120853pt;}
.ls1_c00138{letter-spacing:0.000000pt;}
.ls0_c00138{letter-spacing:0.062720pt;}
.ws0_c00138{word-spacing:-16.368640pt;}
.ws1_c00138{word-spacing:-10.319360pt;}
.ws2_c00138{word-spacing:0.000000pt;}
._c_c00138{margin-left:-4.473857pt;}
._b_c00138{margin-left:-3.104760pt;}
._3_c00138{margin-left:-1.414624pt;}
._4_c00138{width:0.945367pt;}
._11_c00138{width:1.838937pt;}
._9_c00138{width:2.741324pt;}
._8_c00138{width:3.709979pt;}
._f_c00138{width:5.175205pt;}
._10_c00138{width:6.301054pt;}
._13_c00138{width:7.774354pt;}
._14_c00138{width:8.963289pt;}
._18_c00138{width:10.309909pt;}
._17_c00138{width:11.246257pt;}
._6_c00138{width:12.188177pt;}
._5_c00138{width:13.793332pt;}
._a_c00138{width:14.911239pt;}
._1_c00138{width:18.075962pt;}
._2_c00138{width:19.490627pt;}
._7_c00138{width:20.592725pt;}
._15_c00138{width:23.257503pt;}
._16_c00138{width:24.554426pt;}
._1b_c00138{width:34.563297pt;}
._19_c00138{width:35.623134pt;}
._1a_c00138{width:36.728794pt;}
._1c_c00138{width:37.978639pt;}
._d_c00138{width:40.332201pt;}
._e_c00138{width:41.746407pt;}
._12_c00138{width:55.367329pt;}
._1d_c00138{width:751.791616pt;}
._0_c00138{width:2010.162299pt;}
.fs1_c00138{font-size:37.120000pt;}
.fs0_c00138{font-size:58.880000pt;}
.y0_c00138{bottom:0.000000pt;}
.y2d_c00138{bottom:127.552133pt;}
.y2c_c00138{bottom:146.267067pt;}
.y2b_c00138{bottom:164.826933pt;}
.y2a_c00138{bottom:183.547200pt;}
.y29_c00138{bottom:202.266933pt;}
.y28_c00138{bottom:220.826800pt;}
.y27_c00138{bottom:239.547067pt;}
.y26_c00138{bottom:258.266800pt;}
.y25_c00138{bottom:276.826667pt;}
.y24_c00138{bottom:295.546933pt;}
.y23_c00138{bottom:314.266667pt;}
.y22_c00138{bottom:332.826533pt;}
.y21_c00138{bottom:351.586400pt;}
.y20_c00138{bottom:370.306667pt;}
.y1f_c00138{bottom:396.866667pt;}
.y1e_c00138{bottom:423.586667pt;}
.y1d_c00138{bottom:450.307067pt;}
.y1c_c00138{bottom:468.866933pt;}
.y1b_c00138{bottom:487.586400pt;}
.y1a_c00138{bottom:506.306667pt;}
.y19_c00138{bottom:532.866667pt;}
.y18_c00138{bottom:583.614000pt;}
.y17_c00138{bottom:602.333733pt;}
.y16_c00138{bottom:620.893600pt;}
.y15_c00138{bottom:639.613867pt;}
.y14_c00138{bottom:658.333600pt;}
.y13_c00138{bottom:676.893467pt;}
.y12_c00138{bottom:695.613733pt;}
.y11_c00138{bottom:714.333467pt;}
.y10_c00138{bottom:732.893467pt;}
.yf_c00138{bottom:751.613733pt;}
.ye_c00138{bottom:770.333467pt;}
.yd_c00138{bottom:788.893333pt;}
.yc_c00138{bottom:807.653200pt;}
.yb_c00138{bottom:826.373467pt;}
.ya_c00138{bottom:844.933600pt;}
.y9_c00138{bottom:863.653333pt;}
.y8_c00138{bottom:882.373600pt;}
.y7_c00138{bottom:900.933467pt;}
.y6_c00138{bottom:919.653200pt;}
.y5_c00138{bottom:938.373467pt;}
.y4_c00138{bottom:956.933333pt;}
.y3_c00138{bottom:975.653067pt;}
.y2_c00138{bottom:994.373333pt;}
.y1_c00138{bottom:1044.160000pt;}
.h5_c00138{height:42.866250pt;}
.h3_c00138{height:42.895000pt;}
.h4_c00138{height:50.627683pt;}
.h2_c00138{height:50.628750pt;}
.h6_c00138{height:50.629817pt;}
.h8_c00138{height:53.036898pt;}
.h7_c00138{height:53.038978pt;}
.h1_c00138{height:1122.666667pt;}
.h0_c00138{height:1122.720000pt;}
.w1_c00138{width:794.000000pt;}
.w0_c00138{width:794.080000pt;}
.x0_c00138{left:0.000000pt;}
.x1_c00138{left:113.471867pt;}
.x2_c00138{left:132.352133pt;}
.x3_c00138{left:170.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_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_2cb8536894c322bec3040cb3.woff2')format("woff");}.ff1_c00139{font-family:ff1_c00139;line-height:1.070312;font-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_c00139{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0_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);}
.m2_c00139{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00139{vertical-align:-23.760960px;}
.v0_c00139{vertical-align:0.000000px;}
.v3_c00139{vertical-align:19.426788px;}
.v1_c00139{vertical-align:23.760960px;}
.ls1_c00139{letter-spacing:0.000000px;}
.ls0_c00139{letter-spacing:0.304834px;}
.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;}
}
.ws3_c00139{word-spacing:-18.454752px;}
.ws1_c00139{word-spacing:-18.414720px;}
.ws2_c00139{word-spacing:-12.249792px;}
.ws0_c00139{word-spacing:-11.609280px;}
.ws4_c00139{word-spacing:0.000000px;}
._a_c00139{margin-left:-4.352508px;}
._7_c00139{margin-left:-3.346152px;}
._1_c00139{margin-left:-1.093374px;}
._4_c00139{width:1.005647px;}
._2_c00139{width:3.150924px;}
._c_c00139{width:4.371224px;}
._8_c00139{width:8.136692px;}
._3_c00139{width:9.274698px;}
._6_c00139{width:13.843209px;}
._9_c00139{width:16.029924px;}
._d_c00139{width:17.387247px;}
._b_c00139{width:20.601730px;}
._e_c00139{width:44.777713px;}
._5_c00139{width:70.677418px;}
._0_c00139{width:2261.432586px;}
.fc1_c00139{color:rgb(89,89,89);}
.fc0_c00139{color:rgb(0,0,0);}
.fs1_c00139{font-size:41.760000px;}
.fs3_c00139{font-size:44.064000px;}
.fs0_c00139{font-size:66.240000px;}
.fs2_c00139{font-size:66.384000px;}
.y0_c00139{bottom:0.000000px;}
.y28_c00139{bottom:3.720000px;}
.y26_c00139{bottom:3.735000px;}
.y1a_c00139{bottom:108.180300px;}
.y19_c00139{bottom:129.240600px;}
.y18_c00139{bottom:150.150300px;}
.y17_c00139{bottom:171.209850px;}
.y16_c00139{bottom:192.270150px;}
.y15_c00139{bottom:213.150000px;}
.y14_c00139{bottom:243.210000px;}
.y13_c00139{bottom:264.270300px;}
.y12_c00139{bottom:285.150150px;}
.y11_c00139{bottom:306.209850px;}
.y1c_c00139{bottom:307.500000px;}
.y10_c00139{bottom:327.270150px;}
.yf_c00139{bottom:348.150000px;}
.ye_c00139{bottom:369.210000px;}
.yd_c00139{bottom:399.315150px;}
.yc_c00139{bottom:420.195000px;}
.yb_c00139{bottom:441.254700px;}
.ya_c00139{bottom:462.315000px;}
.y9_c00139{bottom:492.195150px;}
.y8_c00139{bottom:513.254850px;}
.y7_c00139{bottom:534.315150px;}
.y6_c00139{bottom:555.195000px;}
.y5_c00139{bottom:576.254700px;}
.y4_c00139{bottom:597.315000px;}
.y1b_c00139{bottom:600.600000px;}
.y3_c00139{bottom:627.195000px;}
.y2_c00139{bottom:666.285000px;}
.y2a_c00139{bottom:727.650000px;}
.y29_c00139{bottom:754.650000px;}
.y27_c00139{bottom:781.650000px;}
.y1d_c00139{bottom:819.360000px;}
.y1e_c00139{bottom:857.670300px;}
.y1f_c00139{bottom:895.965450px;}
.y20_c00139{bottom:934.275150px;}
.y21_c00139{bottom:972.540450px;}
.y22_c00139{bottom:1010.850150px;}
.y23_c00139{bottom:1049.145300px;}
.y24_c00139{bottom:1087.455000px;}
.y25_c00139{bottom:1108.200000px;}
.y1_c00139{bottom:1174.680000px;}
.h9_c00139{height:19.500000px;}
.ha_c00139{height:19.650000px;}
.h2_c00139{height:56.957344px;}
.h5_c00139{height:56.957944px;}
.h8_c00139{height:57.315804px;}
.h4_c00139{height:59.666511px;}
.h3_c00139{height:59.668851px;}
.h6_c00139{height:59.811771px;}
.h7_c00139{height:662.400000px;}
.h1_c00139{height:1263.000000px;}
.h0_c00139{height:1263.060000px;}
.w2_c00139{width:19.500000px;}
.w5_c00139{width:731.340000px;}
.w3_c00139{width:761.640000px;}
.w6_c00139{width:784.800000px;}
.w4_c00139{width:799.500000px;}
.w1_c00139{width:893.250000px;}
.w0_c00139{width:893.340000px;}
.x0_c00139{left:0.000000px;}
.x4_c00139{left:15.795000px;}
.x1_c00139{left:127.655850px;}
.x8_c00139{left:131.700000px;}
.x3_c00139{left:135.150000px;}
.x2_c00139{left:148.896150px;}
.xa_c00139{left:162.000000px;}
.x5_c00139{left:164.265000px;}
.x7_c00139{left:278.490000px;}
.xb_c00139{left:330.150000px;}
.x9_c00139{left:360.630000px;}
.x6_c00139{left:381.090000px;}
@media print{
.v2_c00139{vertical-align:-21.120853pt;}
.v0_c00139{vertical-align:0.000000pt;}
.v3_c00139{vertical-align:17.268256pt;}
.v1_c00139{vertical-align:21.120853pt;}
.ls1_c00139{letter-spacing:0.000000pt;}
.ls0_c00139{letter-spacing:0.270963pt;}
.ws3_c00139{word-spacing:-16.404224pt;}
.ws1_c00139{word-spacing:-16.368640pt;}
.ws2_c00139{word-spacing:-10.888704pt;}
.ws0_c00139{word-spacing:-10.319360pt;}
.ws4_c00139{word-spacing:0.000000pt;}
._a_c00139{margin-left:-3.868896pt;}
._7_c00139{margin-left:-2.974357pt;}
._1_c00139{margin-left:-0.971888pt;}
._4_c00139{width:0.893909pt;}
._2_c00139{width:2.800822pt;}
._c_c00139{width:3.885532pt;}
._8_c00139{width:7.232615pt;}
._3_c00139{width:8.244176pt;}
._6_c00139{width:12.305074pt;}
._9_c00139{width:14.248821pt;}
._d_c00139{width:15.455331pt;}
._b_c00139{width:18.312649pt;}
._e_c00139{width:39.802411pt;}
._5_c00139{width:62.824371pt;}
._0_c00139{width:2010.162299pt;}
.fs1_c00139{font-size:37.120000pt;}
.fs3_c00139{font-size:39.168000pt;}
.fs0_c00139{font-size:58.880000pt;}
.fs2_c00139{font-size:59.008000pt;}
.y0_c00139{bottom:0.000000pt;}
.y28_c00139{bottom:3.306667pt;}
.y26_c00139{bottom:3.320000pt;}
.y1a_c00139{bottom:96.160267pt;}
.y19_c00139{bottom:114.880533pt;}
.y18_c00139{bottom:133.466933pt;}
.y17_c00139{bottom:152.186533pt;}
.y16_c00139{bottom:170.906800pt;}
.y15_c00139{bottom:189.466667pt;}
.y14_c00139{bottom:216.186667pt;}
.y13_c00139{bottom:234.906933pt;}
.y12_c00139{bottom:253.466800pt;}
.y11_c00139{bottom:272.186533pt;}
.y1c_c00139{bottom:273.333333pt;}
.y10_c00139{bottom:290.906800pt;}
.yf_c00139{bottom:309.466667pt;}
.ye_c00139{bottom:328.186667pt;}
.yd_c00139{bottom:354.946800pt;}
.yc_c00139{bottom:373.506667pt;}
.yb_c00139{bottom:392.226400pt;}
.ya_c00139{bottom:410.946667pt;}
.y9_c00139{bottom:437.506800pt;}
.y8_c00139{bottom:456.226533pt;}
.y7_c00139{bottom:474.946800pt;}
.y6_c00139{bottom:493.506667pt;}
.y5_c00139{bottom:512.226400pt;}
.y4_c00139{bottom:530.946667pt;}
.y1b_c00139{bottom:533.866667pt;}
.y3_c00139{bottom:557.506667pt;}
.y2_c00139{bottom:592.253333pt;}
.y2a_c00139{bottom:646.800000pt;}
.y29_c00139{bottom:670.800000pt;}
.y27_c00139{bottom:694.800000pt;}
.y1d_c00139{bottom:728.320000pt;}
.y1e_c00139{bottom:762.373600pt;}
.y1f_c00139{bottom:796.413733pt;}
.y20_c00139{bottom:830.466800pt;}
.y21_c00139{bottom:864.480400pt;}
.y22_c00139{bottom:898.533467pt;}
.y23_c00139{bottom:932.573600pt;}
.y24_c00139{bottom:966.626667pt;}
.y25_c00139{bottom:985.066667pt;}
.y1_c00139{bottom:1044.160000pt;}
.h9_c00139{height:17.333333pt;}
.ha_c00139{height:17.466667pt;}
.h2_c00139{height:50.628750pt;}
.h5_c00139{height:50.629283pt;}
.h8_c00139{height:50.947381pt;}
.h4_c00139{height:53.036898pt;}
.h3_c00139{height:53.038978pt;}
.h6_c00139{height:53.166018pt;}
.h7_c00139{height:588.800000pt;}
.h1_c00139{height:1122.666667pt;}
.h0_c00139{height:1122.720000pt;}
.w2_c00139{width:17.333333pt;}
.w5_c00139{width:650.080000pt;}
.w3_c00139{width:677.013333pt;}
.w6_c00139{width:697.600000pt;}
.w4_c00139{width:710.666667pt;}
.w1_c00139{width:794.000000pt;}
.w0_c00139{width:794.080000pt;}
.x0_c00139{left:0.000000pt;}
.x4_c00139{left:14.040000pt;}
.x1_c00139{left:113.471867pt;}
.x8_c00139{left:117.066667pt;}
.x3_c00139{left:120.133333pt;}
.x2_c00139{left:132.352133pt;}
.xa_c00139{left:144.000000pt;}
.x5_c00139{left:146.013333pt;}
.x7_c00139{left:247.546667pt;}
.xb_c00139{left:293.466667pt;}
.x9_c00139{left:320.560000pt;}
.x6_c00139{left:338.746667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_7b9716740c23043e7e8e6b11.woff2')format("woff");}.ff1_c00140{font-family:ff1_c00140;line-height:1.070312;font-style:normal;font-weight:normal;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_2c661173fbe578d4a1a8299a.woff2')format("woff");}.ff2_c00140{font-family:ff2_c00140;line-height:0.938965;font-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_c00140{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0_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);}
.m2_c00140{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00140{vertical-align:-23.758620px;}
.v0_c00140{vertical-align:0.000000px;}
.v3_c00140{vertical-align:19.607392px;}
.v1_c00140{vertical-align:23.758620px;}
.ls0_c00140{letter-spacing:0.000000px;}
.sc__c00140{text-shadow:none;}
.sc0_c00140{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00140{-webkit-text-stroke:0px transparent;}
.sc0_c00140{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00140{word-spacing:-36.829440px;}
.ws5_c00140{word-spacing:-18.454752px;}
.ws3_c00140{word-spacing:-18.414720px;}
.ws4_c00140{word-spacing:-12.249792px;}
.ws0_c00140{word-spacing:-11.609280px;}
.ws6_c00140{word-spacing:0.000000px;}
.ws2_c00140{word-spacing:5.730651px;}
._d_c00140{margin-left:-4.702792px;}
._e_c00140{margin-left:-3.526606px;}
._3_c00140{margin-left:-2.196006px;}
._2_c00140{margin-left:-1.163388px;}
._5_c00140{width:1.889254px;}
._6_c00140{width:3.774464px;}
._7_c00140{width:5.241538px;}
._1_c00140{width:6.491388px;}
._4_c00140{width:7.607038px;}
._8_c00140{width:8.638963px;}
._9_c00140{width:10.277961px;}
._11_c00140{width:11.464245px;}
._a_c00140{width:12.683139px;}
._c_c00140{width:13.688773px;}
._b_c00140{width:15.037076px;}
._10_c00140{width:17.355277px;}
._f_c00140{width:178.220090px;}
._0_c00140{width:2261.432586px;}
.fc1_c00140{color:rgb(89,89,89);}
.fc0_c00140{color:rgb(0,0,0);}
.fs1_c00140{font-size:41.760000px;}
.fs2_c00140{font-size:44.064000px;}
.fs0_c00140{font-size:66.240000px;}
.fs3_c00140{font-size:66.384000px;}
.y0_c00140{bottom:0.000000px;}
.y26_c00140{bottom:3.600000px;}
.y2b_c00140{bottom:3.690000px;}
.y28_c00140{bottom:3.720000px;}
.y19_c00140{bottom:118.259850px;}
.y18_c00140{bottom:139.356000px;}
.y17_c00140{bottom:160.409850px;}
.y16_c00140{bottom:181.290300px;}
.y15_c00140{bottom:202.350000px;}
.y14_c00140{bottom:232.410000px;}
.y1b_c00140{bottom:248.505000px;}
.y13_c00140{bottom:271.290000px;}
.y1a_c00140{bottom:274.320000px;}
.y2a_c00140{bottom:332.700000px;}
.y29_c00140{bottom:359.700000px;}
.y27_c00140{bottom:386.700000px;}
.y1c_c00140{bottom:424.410000px;}
.y1d_c00140{bottom:457.890450px;}
.y1e_c00140{bottom:491.400150px;}
.y1f_c00140{bottom:524.909850px;}
.y20_c00140{bottom:558.434850px;}
.y21_c00140{bottom:591.945150px;}
.y22_c00140{bottom:625.470150px;}
.y23_c00140{bottom:658.979850px;}
.y24_c00140{bottom:692.460300px;}
.y25_c00140{bottom:713.340000px;}
.y12_c00140{bottom:764.565600px;}
.y11_c00140{bottom:785.625300px;}
.y10_c00140{bottom:806.505150px;}
.yf_c00140{bottom:827.565450px;}
.ye_c00140{bottom:848.625150px;}
.yd_c00140{bottom:869.505000px;}
.yc_c00140{bottom:899.610000px;}
.yb_c00140{bottom:920.670300px;}
.ya_c00140{bottom:941.550150px;}
.y9_c00140{bottom:962.609850px;}
.y8_c00140{bottom:983.670150px;}
.y7_c00140{bottom:1004.550000px;}
.y6_c00140{bottom:1034.609700px;}
.y5_c00140{bottom:1055.670150px;}
.y4_c00140{bottom:1076.550000px;}
.y3_c00140{bottom:1097.609700px;}
.y2_c00140{bottom:1118.670000px;}
.y1_c00140{bottom:1174.680000px;}
.h9_c00140{height:19.439700px;}
.ha_c00140{height:19.650000px;}
.h2_c00140{height:56.957344px;}
.h8_c00140{height:57.081164px;}
.h7_c00140{height:57.496408px;}
.h5_c00140{height:59.665911px;}
.h3_c00140{height:59.666511px;}
.h4_c00140{height:59.668851px;}
.h6_c00140{height:580.320000px;}
.h1_c00140{height:1263.000000px;}
.h0_c00140{height:1263.060000px;}
.w2_c00140{width:19.440300px;}
.w3_c00140{width:674.460000px;}
.w6_c00140{width:731.190000px;}
.w4_c00140{width:761.490000px;}
.w7_c00140{width:785.100000px;}
.w5_c00140{width:799.650000px;}
.w1_c00140{width:893.250000px;}
.w0_c00140{width:893.340000px;}
.x0_c00140{left:0.000000px;}
.x4_c00140{left:15.810300px;}
.x1_c00140{left:127.655850px;}
.x8_c00140{left:130.320150px;}
.xb_c00140{left:131.850000px;}
.x3_c00140{left:135.359700px;}
.x2_c00140{left:148.896150px;}
.xd_c00140{left:162.150000px;}
.x7_c00140{left:164.625120px;}
.x6_c00140{left:173.909880px;}
.x5_c00140{left:183.030000px;}
.xa_c00140{left:278.670000px;}
.x9_c00140{left:289.049850px;}
.xe_c00140{left:330.180000px;}
.xc_c00140{left:360.660000px;}
@media print{
.v2_c00140{vertical-align:-21.118773pt;}
.v0_c00140{vertical-align:0.000000pt;}
.v3_c00140{vertical-align:17.428793pt;}
.v1_c00140{vertical-align:21.118773pt;}
.ls0_c00140{letter-spacing:0.000000pt;}
.ws1_c00140{word-spacing:-32.737280pt;}
.ws5_c00140{word-spacing:-16.404224pt;}
.ws3_c00140{word-spacing:-16.368640pt;}
.ws4_c00140{word-spacing:-10.888704pt;}
.ws0_c00140{word-spacing:-10.319360pt;}
.ws6_c00140{word-spacing:0.000000pt;}
.ws2_c00140{word-spacing:5.093912pt;}
._d_c00140{margin-left:-4.180259pt;}
._e_c00140{margin-left:-3.134761pt;}
._3_c00140{margin-left:-1.952005pt;}
._2_c00140{margin-left:-1.034122pt;}
._5_c00140{width:1.679337pt;}
._6_c00140{width:3.355079pt;}
._7_c00140{width:4.659145pt;}
._1_c00140{width:5.770122pt;}
._4_c00140{width:6.761811pt;}
._8_c00140{width:7.679078pt;}
._9_c00140{width:9.135965pt;}
._11_c00140{width:10.190440pt;}
._a_c00140{width:11.273901pt;}
._c_c00140{width:12.167798pt;}
._b_c00140{width:13.366290pt;}
._10_c00140{width:15.426913pt;}
._f_c00140{width:158.417858pt;}
._0_c00140{width:2010.162299pt;}
.fs1_c00140{font-size:37.120000pt;}
.fs2_c00140{font-size:39.168000pt;}
.fs0_c00140{font-size:58.880000pt;}
.fs3_c00140{font-size:59.008000pt;}
.y0_c00140{bottom:0.000000pt;}
.y26_c00140{bottom:3.200000pt;}
.y2b_c00140{bottom:3.280000pt;}
.y28_c00140{bottom:3.306667pt;}
.y19_c00140{bottom:105.119867pt;}
.y18_c00140{bottom:123.872000pt;}
.y17_c00140{bottom:142.586533pt;}
.y16_c00140{bottom:161.146933pt;}
.y15_c00140{bottom:179.866667pt;}
.y14_c00140{bottom:206.586667pt;}
.y1b_c00140{bottom:220.893333pt;}
.y13_c00140{bottom:241.146667pt;}
.y1a_c00140{bottom:243.840000pt;}
.y2a_c00140{bottom:295.733333pt;}
.y29_c00140{bottom:319.733333pt;}
.y27_c00140{bottom:343.733333pt;}
.y1c_c00140{bottom:377.253333pt;}
.y1d_c00140{bottom:407.013733pt;}
.y1e_c00140{bottom:436.800133pt;}
.y1f_c00140{bottom:466.586533pt;}
.y20_c00140{bottom:496.386533pt;}
.y21_c00140{bottom:526.173467pt;}
.y22_c00140{bottom:555.973467pt;}
.y23_c00140{bottom:585.759867pt;}
.y24_c00140{bottom:615.520267pt;}
.y25_c00140{bottom:634.080000pt;}
.y12_c00140{bottom:679.613867pt;}
.y11_c00140{bottom:698.333600pt;}
.y10_c00140{bottom:716.893467pt;}
.yf_c00140{bottom:735.613733pt;}
.ye_c00140{bottom:754.333467pt;}
.yd_c00140{bottom:772.893333pt;}
.yc_c00140{bottom:799.653333pt;}
.yb_c00140{bottom:818.373600pt;}
.ya_c00140{bottom:836.933467pt;}
.y9_c00140{bottom:855.653200pt;}
.y8_c00140{bottom:874.373467pt;}
.y7_c00140{bottom:892.933333pt;}
.y6_c00140{bottom:919.653067pt;}
.y5_c00140{bottom:938.373467pt;}
.y4_c00140{bottom:956.933333pt;}
.y3_c00140{bottom:975.653067pt;}
.y2_c00140{bottom:994.373333pt;}
.y1_c00140{bottom:1044.160000pt;}
.h9_c00140{height:17.279733pt;}
.ha_c00140{height:17.466667pt;}
.h2_c00140{height:50.628750pt;}
.h8_c00140{height:50.738813pt;}
.h7_c00140{height:51.107918pt;}
.h5_c00140{height:53.036365pt;}
.h3_c00140{height:53.036898pt;}
.h4_c00140{height:53.038978pt;}
.h6_c00140{height:515.840000pt;}
.h1_c00140{height:1122.666667pt;}
.h0_c00140{height:1122.720000pt;}
.w2_c00140{width:17.280267pt;}
.w3_c00140{width:599.520000pt;}
.w6_c00140{width:649.946667pt;}
.w4_c00140{width:676.880000pt;}
.w7_c00140{width:697.866667pt;}
.w5_c00140{width:710.800000pt;}
.w1_c00140{width:794.000000pt;}
.w0_c00140{width:794.080000pt;}
.x0_c00140{left:0.000000pt;}
.x4_c00140{left:14.053600pt;}
.x1_c00140{left:113.471867pt;}
.x8_c00140{left:115.840133pt;}
.xb_c00140{left:117.200000pt;}
.x3_c00140{left:120.319733pt;}
.x2_c00140{left:132.352133pt;}
.xd_c00140{left:144.133333pt;}
.x7_c00140{left:146.333440pt;}
.x6_c00140{left:154.586560pt;}
.x5_c00140{left:162.693333pt;}
.xa_c00140{left:247.706667pt;}
.x9_c00140{left:256.933200pt;}
.xe_c00140{left:293.493333pt;}
.xc_c00140{left:320.586667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_126e294fe16eab7d36abf834.woff2')format("woff");}.ff1_c00141{font-family:ff1_c00141;line-height:1.070312;font-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_c00141{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0_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);}
.m2_c00141{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00141{vertical-align:-23.758620px;}
.v0_c00141{vertical-align:0.000000px;}
.v3_c00141{vertical-align:19.441192px;}
.v1_c00141{vertical-align:23.760960px;}
.ls1_c00141{letter-spacing:0.000000px;}
.ls0_c00141{letter-spacing:0.305274px;}
.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;}
}
.ws2_c00141{word-spacing:-18.454752px;}
.ws4_c00141{word-spacing:-18.414720px;}
.ws3_c00141{word-spacing:-12.249792px;}
.ws0_c00141{word-spacing:-11.609280px;}
.ws5_c00141{word-spacing:0.000000px;}
.ws1_c00141{word-spacing:5.730651px;}
._6_c00141{margin-left:-15.163824px;}
._9_c00141{margin-left:-4.138457px;}
._3_c00141{margin-left:-2.847978px;}
._2_c00141{margin-left:-1.193334px;}
._4_c00141{width:1.198989px;}
._a_c00141{width:2.353751px;}
._1_c00141{width:4.240358px;}
._5_c00141{width:5.491239px;}
._d_c00141{width:6.618927px;}
._b_c00141{width:7.749617px;}
._c_c00141{width:8.815297px;}
._11_c00141{width:14.312060px;}
._10_c00141{width:15.432926px;}
._7_c00141{width:24.109946px;}
._8_c00141{width:27.887136px;}
._f_c00141{width:31.861946px;}
._e_c00141{width:32.986791px;}
._0_c00141{width:2261.432586px;}
.fc1_c00141{color:rgb(89,89,89);}
.fc0_c00141{color:rgb(0,0,0);}
.fs1_c00141{font-size:41.760000px;}
.fs3_c00141{font-size:44.064000px;}
.fs0_c00141{font-size:66.240000px;}
.fs2_c00141{font-size:66.384000px;}
.y0_c00141{bottom:0.000000px;}
.y25_c00141{bottom:3.630000px;}
.y2a_c00141{bottom:3.660000px;}
.y27_c00141{bottom:3.690000px;}
.y19_c00141{bottom:98.280150px;}
.y18_c00141{bottom:119.160000px;}
.y17_c00141{bottom:140.256150px;}
.y16_c00141{bottom:161.310000px;}
.y15_c00141{bottom:191.190900px;}
.y14_c00141{bottom:212.250600px;}
.y13_c00141{bottom:233.310300px;}
.y1b_c00141{bottom:248.550000px;}
.y12_c00141{bottom:254.190750px;}
.y11_c00141{bottom:275.250450px;}
.y10_c00141{bottom:296.310150px;}
.yf_c00141{bottom:317.190600px;}
.ye_c00141{bottom:338.250300px;}
.yd_c00141{bottom:359.310000px;}
.yc_c00141{bottom:389.235000px;}
.yb_c00141{bottom:410.295300px;}
.ya_c00141{bottom:431.355000px;}
.y9_c00141{bottom:470.235000px;}
.y8_c00141{bottom:518.295300px;}
.y7_c00141{bottom:539.355000px;}
.y1a_c00141{bottom:542.160000px;}
.y29_c00141{bottom:600.600000px;}
.y28_c00141{bottom:627.600000px;}
.y26_c00141{bottom:654.600000px;}
.y1c_c00141{bottom:692.280000px;}
.y1d_c00141{bottom:730.545300px;}
.y1e_c00141{bottom:768.855000px;}
.y1f_c00141{bottom:807.150150px;}
.y20_c00141{bottom:845.460450px;}
.y21_c00141{bottom:883.770150px;}
.y22_c00141{bottom:922.065300px;}
.y23_c00141{bottom:960.330000px;}
.y24_c00141{bottom:981.180000px;}
.y6_c00141{bottom:1034.609850px;}
.y5_c00141{bottom:1055.670150px;}
.y4_c00141{bottom:1076.550000px;}
.y3_c00141{bottom:1097.609700px;}
.y2_c00141{bottom:1118.670000px;}
.y1_c00141{bottom:1174.680000px;}
.h7_c00141{height:19.440300px;}
.h8_c00141{height:19.500000px;}
.h2_c00141{height:56.957344px;}
.h6_c00141{height:57.330208px;}
.h4_c00141{height:59.666511px;}
.h3_c00141{height:59.668851px;}
.h5_c00141{height:580.320000px;}
.h1_c00141{height:1263.000000px;}
.h0_c00141{height:1263.060000px;}
.w2_c00141{width:19.439700px;}
.w3_c00141{width:674.460000px;}
.w6_c00141{width:732.690000px;}
.w4_c00141{width:762.840000px;}
.w7_c00141{width:783.600000px;}
.w5_c00141{width:798.150000px;}
.w1_c00141{width:893.250000px;}
.w0_c00141{width:893.340000px;}
.x0_c00141{left:0.000000px;}
.x5_c00141{left:15.768150px;}
.x1_c00141{left:127.655850px;}
.x8_c00141{left:128.879850px;}
.xb_c00141{left:130.500000px;}
.x4_c00141{left:133.920150px;}
.x2_c00141{left:148.896150px;}
.xd_c00141{left:160.650000px;}
.x7_c00141{left:163.184535px;}
.x6_c00141{left:172.290000px;}
.x3_c00141{left:234.029250px;}
.xa_c00141{left:277.230000px;}
.x9_c00141{left:289.050150px;}
.xe_c00141{left:330.240000px;}
.xc_c00141{left:360.570000px;}
@media print{
.v2_c00141{vertical-align:-21.118773pt;}
.v0_c00141{vertical-align:0.000000pt;}
.v3_c00141{vertical-align:17.281060pt;}
.v1_c00141{vertical-align:21.120853pt;}
.ls1_c00141{letter-spacing:0.000000pt;}
.ls0_c00141{letter-spacing:0.271354pt;}
.ws2_c00141{word-spacing:-16.404224pt;}
.ws4_c00141{word-spacing:-16.368640pt;}
.ws3_c00141{word-spacing:-10.888704pt;}
.ws0_c00141{word-spacing:-10.319360pt;}
.ws5_c00141{word-spacing:0.000000pt;}
.ws1_c00141{word-spacing:5.093912pt;}
._6_c00141{margin-left:-13.478954pt;}
._9_c00141{margin-left:-3.678628pt;}
._3_c00141{margin-left:-2.531536pt;}
._2_c00141{margin-left:-1.060741pt;}
._4_c00141{width:1.065768pt;}
._a_c00141{width:2.092223pt;}
._1_c00141{width:3.769207pt;}
._5_c00141{width:4.881101pt;}
._d_c00141{width:5.883490pt;}
._b_c00141{width:6.888548pt;}
._c_c00141{width:7.835820pt;}
._11_c00141{width:12.721831pt;}
._10_c00141{width:13.718157pt;}
._7_c00141{width:21.431064pt;}
._8_c00141{width:24.788565pt;}
._f_c00141{width:28.321730pt;}
._e_c00141{width:29.321592pt;}
._0_c00141{width:2010.162299pt;}
.fs1_c00141{font-size:37.120000pt;}
.fs3_c00141{font-size:39.168000pt;}
.fs0_c00141{font-size:58.880000pt;}
.fs2_c00141{font-size:59.008000pt;}
.y0_c00141{bottom:0.000000pt;}
.y25_c00141{bottom:3.226667pt;}
.y2a_c00141{bottom:3.253333pt;}
.y27_c00141{bottom:3.280000pt;}
.y19_c00141{bottom:87.360133pt;}
.y18_c00141{bottom:105.920000pt;}
.y17_c00141{bottom:124.672133pt;}
.y16_c00141{bottom:143.386667pt;}
.y15_c00141{bottom:169.947467pt;}
.y14_c00141{bottom:188.667200pt;}
.y13_c00141{bottom:207.386933pt;}
.y1b_c00141{bottom:220.933333pt;}
.y12_c00141{bottom:225.947333pt;}
.y11_c00141{bottom:244.667067pt;}
.y10_c00141{bottom:263.386800pt;}
.yf_c00141{bottom:281.947200pt;}
.ye_c00141{bottom:300.666933pt;}
.yd_c00141{bottom:319.386667pt;}
.yc_c00141{bottom:345.986667pt;}
.yb_c00141{bottom:364.706933pt;}
.ya_c00141{bottom:383.426667pt;}
.y9_c00141{bottom:417.986667pt;}
.y8_c00141{bottom:460.706933pt;}
.y7_c00141{bottom:479.426667pt;}
.y1a_c00141{bottom:481.920000pt;}
.y29_c00141{bottom:533.866667pt;}
.y28_c00141{bottom:557.866667pt;}
.y26_c00141{bottom:581.866667pt;}
.y1c_c00141{bottom:615.360000pt;}
.y1d_c00141{bottom:649.373600pt;}
.y1e_c00141{bottom:683.426667pt;}
.y1f_c00141{bottom:717.466800pt;}
.y20_c00141{bottom:751.520400pt;}
.y21_c00141{bottom:785.573467pt;}
.y22_c00141{bottom:819.613600pt;}
.y23_c00141{bottom:853.626667pt;}
.y24_c00141{bottom:872.160000pt;}
.y6_c00141{bottom:919.653200pt;}
.y5_c00141{bottom:938.373467pt;}
.y4_c00141{bottom:956.933333pt;}
.y3_c00141{bottom:975.653067pt;}
.y2_c00141{bottom:994.373333pt;}
.y1_c00141{bottom:1044.160000pt;}
.h7_c00141{height:17.280267pt;}
.h8_c00141{height:17.333333pt;}
.h2_c00141{height:50.628750pt;}
.h6_c00141{height:50.960185pt;}
.h4_c00141{height:53.036898pt;}
.h3_c00141{height:53.038978pt;}
.h5_c00141{height:515.840000pt;}
.h1_c00141{height:1122.666667pt;}
.h0_c00141{height:1122.720000pt;}
.w2_c00141{width:17.279733pt;}
.w3_c00141{width:599.520000pt;}
.w6_c00141{width:651.280000pt;}
.w4_c00141{width:678.080000pt;}
.w7_c00141{width:696.533333pt;}
.w5_c00141{width:709.466667pt;}
.w1_c00141{width:794.000000pt;}
.w0_c00141{width:794.080000pt;}
.x0_c00141{left:0.000000pt;}
.x5_c00141{left:14.016133pt;}
.x1_c00141{left:113.471867pt;}
.x8_c00141{left:114.559867pt;}
.xb_c00141{left:116.000000pt;}
.x4_c00141{left:119.040133pt;}
.x2_c00141{left:132.352133pt;}
.xd_c00141{left:142.800000pt;}
.x7_c00141{left:145.052920pt;}
.x6_c00141{left:153.146667pt;}
.x3_c00141{left:208.026000pt;}
.xa_c00141{left:246.426667pt;}
.x9_c00141{left:256.933467pt;}
.xe_c00141{left:293.546667pt;}
.xc_c00141{left:320.506667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b4e14f64142573152e75c64a.woff2')format("woff");}.ff1_c00142{font-family:ff1_c00142;line-height:1.070312;font-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_c00142{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0_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);}
.m2_c00142{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00142{vertical-align:-23.758620px;}
.v3_c00142{vertical-align:-5.758596px;}
.v0_c00142{vertical-align:0.000000px;}
.v4_c00142{vertical-align:19.426792px;}
.v1_c00142{vertical-align:23.760960px;}
.ls0_c00142{letter-spacing:0.000000px;}
.sc__c00142{text-shadow:none;}
.sc0_c00142{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00142{-webkit-text-stroke:0px transparent;}
.sc0_c00142{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00142{word-spacing:-18.454752px;}
.ws0_c00142{word-spacing:-18.414720px;}
.ws4_c00142{word-spacing:-12.249792px;}
.ws1_c00142{word-spacing:-11.609280px;}
.ws5_c00142{word-spacing:0.000000px;}
.ws2_c00142{word-spacing:5.731120px;}
._f_c00142{margin-left:-2.449571px;}
._2_c00142{margin-left:-1.043281px;}
._1_c00142{width:1.126616px;}
._6_c00142{width:2.635068px;}
._3_c00142{width:4.088191px;}
._4_c00142{width:5.094524px;}
._9_c00142{width:8.725514px;}
._8_c00142{width:10.564944px;}
._7_c00142{width:11.625716px;}
._e_c00142{width:14.937657px;}
._d_c00142{width:16.029948px;}
._5_c00142{width:20.055831px;}
._b_c00142{width:23.516078px;}
._a_c00142{width:24.558113px;}
._c_c00142{width:26.827597px;}
._0_c00142{width:2261.432586px;}
.fc1_c00142{color:rgb(89,89,89);}
.fc0_c00142{color:rgb(0,0,0);}
.fs1_c00142{font-size:41.760000px;}
.fs3_c00142{font-size:44.064000px;}
.fs0_c00142{font-size:66.240000px;}
.fs2_c00142{font-size:66.384000px;}
.y0_c00142{bottom:0.000000px;}
.y27_c00142{bottom:3.630000px;}
.y29_c00142{bottom:3.750000px;}
.y1a_c00142{bottom:99.180000px;}
.y19_c00142{bottom:120.240300px;}
.y18_c00142{bottom:141.155850px;}
.y17_c00142{bottom:171.210000px;}
.y16_c00142{bottom:201.270000px;}
.y15_c00142{bottom:231.150150px;}
.y1c_c00142{bottom:248.550000px;}
.y14_c00142{bottom:252.209850px;}
.y13_c00142{bottom:273.270150px;}
.y12_c00142{bottom:294.150000px;}
.y11_c00142{bottom:315.209700px;}
.y10_c00142{bottom:336.270000px;}
.yf_c00142{bottom:366.150150px;}
.ye_c00142{bottom:387.209850px;}
.yd_c00142{bottom:408.315300px;}
.yc_c00142{bottom:429.195150px;}
.yb_c00142{bottom:450.254850px;}
.ya_c00142{bottom:471.315150px;}
.y9_c00142{bottom:492.195000px;}
.y8_c00142{bottom:522.255000px;}
.y7_c00142{bottom:561.135000px;}
.y1b_c00142{bottom:564.120000px;}
.y2b_c00142{bottom:622.500000px;}
.y2a_c00142{bottom:649.500000px;}
.y28_c00142{bottom:676.500000px;}
.y1d_c00142{bottom:714.240000px;}
.y1e_c00142{bottom:747.749700px;}
.y1f_c00142{bottom:781.229550px;}
.y20_c00142{bottom:814.754550px;}
.y21_c00142{bottom:848.264850px;}
.y22_c00142{bottom:881.789850px;}
.y23_c00142{bottom:915.299550px;}
.y24_c00142{bottom:948.809250px;}
.y25_c00142{bottom:982.334850px;}
.y26_c00142{bottom:1003.140000px;}
.y6_c00142{bottom:1034.610000px;}
.y5_c00142{bottom:1055.670450px;}
.y4_c00142{bottom:1076.550300px;}
.y3_c00142{bottom:1097.609700px;}
.y2_c00142{bottom:1118.670000px;}
.y1_c00142{bottom:1174.680000px;}
.ha_c00142{height:19.439700px;}
.hb_c00142{height:19.650000px;}
.h2_c00142{height:56.957344px;}
.h3_c00142{height:56.958544px;}
.h9_c00142{height:57.081164px;}
.h8_c00142{height:57.315808px;}
.h5_c00142{height:59.666511px;}
.h4_c00142{height:59.668851px;}
.h6_c00142{height:59.849271px;}
.h7_c00142{height:580.320000px;}
.h1_c00142{height:1263.000000px;}
.h0_c00142{height:1263.060000px;}
.w2_c00142{width:19.440300px;}
.w3_c00142{width:481.860000px;}
.w6_c00142{width:731.340000px;}
.w4_c00142{width:761.640000px;}
.w7_c00142{width:784.800000px;}
.w5_c00142{width:799.500000px;}
.w1_c00142{width:893.250000px;}
.w0_c00142{width:893.340000px;}
.x0_c00142{left:0.000000px;}
.x4_c00142{left:15.765150px;}
.x1_c00142{left:127.655850px;}
.x9_c00142{left:131.700000px;}
.x3_c00142{left:135.179850px;}
.x2_c00142{left:148.896150px;}
.xb_c00142{left:162.000000px;}
.x5_c00142{left:164.265000px;}
.x7_c00142{left:206.460000px;}
.x6_c00142{left:226.440000px;}
.x8_c00142{left:278.490000px;}
.xc_c00142{left:330.150000px;}
.xa_c00142{left:360.630000px;}
@media print{
.v2_c00142{vertical-align:-21.118773pt;}
.v3_c00142{vertical-align:-5.118752pt;}
.v0_c00142{vertical-align:0.000000pt;}
.v4_c00142{vertical-align:17.268260pt;}
.v1_c00142{vertical-align:21.120853pt;}
.ls0_c00142{letter-spacing:0.000000pt;}
.ws3_c00142{word-spacing:-16.404224pt;}
.ws0_c00142{word-spacing:-16.368640pt;}
.ws4_c00142{word-spacing:-10.888704pt;}
.ws1_c00142{word-spacing:-10.319360pt;}
.ws5_c00142{word-spacing:0.000000pt;}
.ws2_c00142{word-spacing:5.094329pt;}
._f_c00142{margin-left:-2.177397pt;}
._2_c00142{margin-left:-0.927361pt;}
._1_c00142{width:1.001436pt;}
._6_c00142{width:2.342283pt;}
._3_c00142{width:3.633948pt;}
._4_c00142{width:4.528466pt;}
._9_c00142{width:7.756013pt;}
._8_c00142{width:9.391061pt;}
._7_c00142{width:10.333970pt;}
._e_c00142{width:13.277918pt;}
._d_c00142{width:14.248842pt;}
._5_c00142{width:17.827405pt;}
._b_c00142{width:20.903180pt;}
._a_c00142{width:21.829434pt;}
._c_c00142{width:23.846753pt;}
._0_c00142{width:2010.162299pt;}
.fs1_c00142{font-size:37.120000pt;}
.fs3_c00142{font-size:39.168000pt;}
.fs0_c00142{font-size:58.880000pt;}
.fs2_c00142{font-size:59.008000pt;}
.y0_c00142{bottom:0.000000pt;}
.y27_c00142{bottom:3.226667pt;}
.y29_c00142{bottom:3.333333pt;}
.y1a_c00142{bottom:88.160000pt;}
.y19_c00142{bottom:106.880267pt;}
.y18_c00142{bottom:125.471867pt;}
.y17_c00142{bottom:152.186667pt;}
.y16_c00142{bottom:178.906667pt;}
.y15_c00142{bottom:205.466800pt;}
.y1c_c00142{bottom:220.933333pt;}
.y14_c00142{bottom:224.186533pt;}
.y13_c00142{bottom:242.906800pt;}
.y12_c00142{bottom:261.466667pt;}
.y11_c00142{bottom:280.186400pt;}
.y10_c00142{bottom:298.906667pt;}
.yf_c00142{bottom:325.466800pt;}
.ye_c00142{bottom:344.186533pt;}
.yd_c00142{bottom:362.946933pt;}
.yc_c00142{bottom:381.506800pt;}
.yb_c00142{bottom:400.226533pt;}
.ya_c00142{bottom:418.946800pt;}
.y9_c00142{bottom:437.506667pt;}
.y8_c00142{bottom:464.226667pt;}
.y7_c00142{bottom:498.786667pt;}
.y1b_c00142{bottom:501.440000pt;}
.y2b_c00142{bottom:553.333333pt;}
.y2a_c00142{bottom:577.333333pt;}
.y28_c00142{bottom:601.333333pt;}
.y1d_c00142{bottom:634.880000pt;}
.y1e_c00142{bottom:664.666400pt;}
.y1f_c00142{bottom:694.426267pt;}
.y20_c00142{bottom:724.226267pt;}
.y21_c00142{bottom:754.013200pt;}
.y22_c00142{bottom:783.813200pt;}
.y23_c00142{bottom:813.599600pt;}
.y24_c00142{bottom:843.386000pt;}
.y25_c00142{bottom:873.186533pt;}
.y26_c00142{bottom:891.680000pt;}
.y6_c00142{bottom:919.653333pt;}
.y5_c00142{bottom:938.373733pt;}
.y4_c00142{bottom:956.933600pt;}
.y3_c00142{bottom:975.653067pt;}
.y2_c00142{bottom:994.373333pt;}
.y1_c00142{bottom:1044.160000pt;}
.ha_c00142{height:17.279733pt;}
.hb_c00142{height:17.466667pt;}
.h2_c00142{height:50.628750pt;}
.h3_c00142{height:50.629817pt;}
.h9_c00142{height:50.738813pt;}
.h8_c00142{height:50.947385pt;}
.h5_c00142{height:53.036898pt;}
.h4_c00142{height:53.038978pt;}
.h6_c00142{height:53.199352pt;}
.h7_c00142{height:515.840000pt;}
.h1_c00142{height:1122.666667pt;}
.h0_c00142{height:1122.720000pt;}
.w2_c00142{width:17.280267pt;}
.w3_c00142{width:428.320000pt;}
.w6_c00142{width:650.080000pt;}
.w4_c00142{width:677.013333pt;}
.w7_c00142{width:697.600000pt;}
.w5_c00142{width:710.666667pt;}
.w1_c00142{width:794.000000pt;}
.w0_c00142{width:794.080000pt;}
.x0_c00142{left:0.000000pt;}
.x4_c00142{left:14.013467pt;}
.x1_c00142{left:113.471867pt;}
.x9_c00142{left:117.066667pt;}
.x3_c00142{left:120.159867pt;}
.x2_c00142{left:132.352133pt;}
.xb_c00142{left:144.000000pt;}
.x5_c00142{left:146.013333pt;}
.x7_c00142{left:183.520000pt;}
.x6_c00142{left:201.280000pt;}
.x8_c00142{left:247.546667pt;}
.xc_c00142{left:293.466667pt;}
.xa_c00142{left:320.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_559640cc264a59e12d7d844e.woff2')format("woff");}.ff1_c00143{font-family:ff1_c00143;line-height:1.070312;font-style:normal;font-weight:normal;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_2c661173fbe578d4a1a8299a.woff2')format("woff");}.ff2_c00143{font-family:ff2_c00143;line-height:0.938965;font-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_c00143{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0_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);}
.m2_c00143{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);}
.v3_c00143{vertical-align:-23.758620px;}
.v4_c00143{vertical-align:-15.839100px;}
.v1_c00143{vertical-align:-5.760936px;}
.v0_c00143{vertical-align:0.000000px;}
.v5_c00143{vertical-align:19.607388px;}
.v2_c00143{vertical-align:23.758620px;}
.ls3_c00143{letter-spacing:0.000000px;}
.ls0_c00143{letter-spacing:0.305420px;}
.ls2_c00143{letter-spacing:0.610681px;}
.ls1_c00143{letter-spacing:18.060960px;}
.sc__c00143{text-shadow:none;}
.sc0_c00143{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00143{-webkit-text-stroke:0px transparent;}
.sc0_c00143{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00143{word-spacing:-36.829440px;}
.ws5_c00143{word-spacing:-18.454752px;}
.ws3_c00143{word-spacing:-18.414720px;}
.ws4_c00143{word-spacing:-12.249792px;}
.ws0_c00143{word-spacing:-11.609280px;}
.ws6_c00143{word-spacing:0.000000px;}
.ws2_c00143{word-spacing:5.730651px;}
._10_c00143{margin-left:-4.178263px;}
._f_c00143{margin-left:-2.319139px;}
._2_c00143{margin-left:-1.125893px;}
._4_c00143{width:1.001861px;}
._1_c00143{width:2.649647px;}
._6_c00143{width:4.503444px;}
._3_c00143{width:8.079974px;}
._7_c00143{width:11.394929px;}
._8_c00143{width:12.481686px;}
._5_c00143{width:16.624982px;}
._a_c00143{width:22.575849px;}
._9_c00143{width:23.648674px;}
._d_c00143{width:35.504017px;}
._c_c00143{width:36.563757px;}
._e_c00143{width:37.634395px;}
._11_c00143{width:112.875653px;}
._12_c00143{width:333.433920px;}
._b_c00143{width:2210.758380px;}
._0_c00143{width:2261.432586px;}
.fc1_c00143{color:rgb(89,89,89);}
.fc0_c00143{color:rgb(0,0,0);}
.fs1_c00143{font-size:41.760000px;}
.fs2_c00143{font-size:43.920000px;}
.fs3_c00143{font-size:44.064000px;}
.fs0_c00143{font-size:66.240000px;}
.fs4_c00143{font-size:66.384000px;}
.y0_c00143{bottom:0.000000px;}
.y24_c00143{bottom:3.630000px;}
.y19_c00143{bottom:97.020150px;}
.y18_c00143{bottom:117.900000px;}
.y17_c00143{bottom:138.996150px;}
.y16_c00143{bottom:169.049250px;}
.y15_c00143{bottom:189.929100px;}
.y14_c00143{bottom:210.989400px;}
.y13_c00143{bottom:232.049700px;}
.y12_c00143{bottom:252.929550px;}
.y11_c00143{bottom:273.989850px;}
.y10_c00143{bottom:295.050150px;}
.yf_c00143{bottom:315.930000px;}
.y1b_c00143{bottom:316.440000px;}
.ye_c00143{bottom:336.990300px;}
.yd_c00143{bottom:358.050000px;}
.y1a_c00143{bottom:378.540000px;}
.yc_c00143{bottom:396.975000px;}
.yb_c00143{bottom:445.035000px;}
.y27_c00143{bottom:510.225000px;}
.y26_c00143{bottom:537.225000px;}
.y25_c00143{bottom:564.225000px;}
.y1c_c00143{bottom:617.430000px;}
.y1d_c00143{bottom:658.875150px;}
.y1e_c00143{bottom:700.350150px;}
.y1f_c00143{bottom:741.809850px;}
.y20_c00143{bottom:783.284850px;}
.y21_c00143{bottom:824.730000px;}
.y22_c00143{bottom:866.190300px;}
.y23_c00143{bottom:887.040000px;}
.ya_c00143{bottom:932.550000px;}
.y9_c00143{bottom:953.609700px;}
.y8_c00143{bottom:974.670000px;}
.y7_c00143{bottom:1004.550150px;}
.y6_c00143{bottom:1025.609850px;}
.y5_c00143{bottom:1046.670150px;}
.y4_c00143{bottom:1067.550000px;}
.y3_c00143{bottom:1097.609700px;}
.y2_c00143{bottom:1118.670000px;}
.y1_c00143{bottom:1174.680000px;}
.h8_c00143{height:19.439700px;}
.h2_c00143{height:56.957344px;}
.h7_c00143{height:57.081164px;}
.h6_c00143{height:57.496404px;}
.h3_c00143{height:59.666511px;}
.h4_c00143{height:59.668851px;}
.h5_c00143{height:738.540000px;}
.h1_c00143{height:1263.000000px;}
.h0_c00143{height:1263.060000px;}
.w2_c00143{width:19.440300px;}
.w3_c00143{width:770.580000px;}
.w1_c00143{width:893.250000px;}
.w0_c00143{width:893.340000px;}
.x0_c00143{left:0.000000px;}
.x4_c00143{left:15.810300px;}
.x6_c00143{left:82.259700px;}
.x1_c00143{left:127.655850px;}
.x3_c00143{left:135.359700px;}
.x2_c00143{left:148.896150px;}
.x5_c00143{left:164.625000px;}
.x8_c00143{left:278.670000px;}
.x7_c00143{left:330.150300px;}
@media print{
.v3_c00143{vertical-align:-21.118773pt;}
.v4_c00143{vertical-align:-14.079200pt;}
.v1_c00143{vertical-align:-5.120832pt;}
.v0_c00143{vertical-align:0.000000pt;}
.v5_c00143{vertical-align:17.428790pt;}
.v2_c00143{vertical-align:21.118773pt;}
.ls3_c00143{letter-spacing:0.000000pt;}
.ls0_c00143{letter-spacing:0.271484pt;}
.ls2_c00143{letter-spacing:0.542827pt;}
.ls1_c00143{letter-spacing:16.054187pt;}
.ws1_c00143{word-spacing:-32.737280pt;}
.ws5_c00143{word-spacing:-16.404224pt;}
.ws3_c00143{word-spacing:-16.368640pt;}
.ws4_c00143{word-spacing:-10.888704pt;}
.ws0_c00143{word-spacing:-10.319360pt;}
.ws6_c00143{word-spacing:0.000000pt;}
.ws2_c00143{word-spacing:5.093912pt;}
._10_c00143{margin-left:-3.714012pt;}
._f_c00143{margin-left:-2.061457pt;}
._2_c00143{margin-left:-1.000794pt;}
._4_c00143{width:0.890543pt;}
._1_c00143{width:2.355242pt;}
._6_c00143{width:4.003062pt;}
._3_c00143{width:7.182199pt;}
._7_c00143{width:10.128826pt;}
._8_c00143{width:11.094832pt;}
._5_c00143{width:14.777762pt;}
._a_c00143{width:20.067422pt;}
._9_c00143{width:21.021043pt;}
._d_c00143{width:31.559126pt;}
._c_c00143{width:32.501117pt;}
._e_c00143{width:33.452795pt;}
._11_c00143{width:100.333914pt;}
._12_c00143{width:296.385707pt;}
._b_c00143{width:1965.118560pt;}
._0_c00143{width:2010.162299pt;}
.fs1_c00143{font-size:37.120000pt;}
.fs2_c00143{font-size:39.040000pt;}
.fs3_c00143{font-size:39.168000pt;}
.fs0_c00143{font-size:58.880000pt;}
.fs4_c00143{font-size:59.008000pt;}
.y0_c00143{bottom:0.000000pt;}
.y24_c00143{bottom:3.226667pt;}
.y19_c00143{bottom:86.240133pt;}
.y18_c00143{bottom:104.800000pt;}
.y17_c00143{bottom:123.552133pt;}
.y16_c00143{bottom:150.266000pt;}
.y15_c00143{bottom:168.825867pt;}
.y14_c00143{bottom:187.546133pt;}
.y13_c00143{bottom:206.266400pt;}
.y12_c00143{bottom:224.826267pt;}
.y11_c00143{bottom:243.546533pt;}
.y10_c00143{bottom:262.266800pt;}
.yf_c00143{bottom:280.826667pt;}
.y1b_c00143{bottom:281.280000pt;}
.ye_c00143{bottom:299.546933pt;}
.yd_c00143{bottom:318.266667pt;}
.y1a_c00143{bottom:336.480000pt;}
.yc_c00143{bottom:352.866667pt;}
.yb_c00143{bottom:395.586667pt;}
.y27_c00143{bottom:453.533333pt;}
.y26_c00143{bottom:477.533333pt;}
.y25_c00143{bottom:501.533333pt;}
.y1c_c00143{bottom:548.826667pt;}
.y1d_c00143{bottom:585.666800pt;}
.y1e_c00143{bottom:622.533467pt;}
.y1f_c00143{bottom:659.386533pt;}
.y20_c00143{bottom:696.253200pt;}
.y21_c00143{bottom:733.093333pt;}
.y22_c00143{bottom:769.946933pt;}
.y23_c00143{bottom:788.480000pt;}
.ya_c00143{bottom:828.933333pt;}
.y9_c00143{bottom:847.653067pt;}
.y8_c00143{bottom:866.373333pt;}
.y7_c00143{bottom:892.933467pt;}
.y6_c00143{bottom:911.653200pt;}
.y5_c00143{bottom:930.373467pt;}
.y4_c00143{bottom:948.933333pt;}
.y3_c00143{bottom:975.653067pt;}
.y2_c00143{bottom:994.373333pt;}
.y1_c00143{bottom:1044.160000pt;}
.h8_c00143{height:17.279733pt;}
.h2_c00143{height:50.628750pt;}
.h7_c00143{height:50.738813pt;}
.h6_c00143{height:51.107915pt;}
.h3_c00143{height:53.036898pt;}
.h4_c00143{height:53.038978pt;}
.h5_c00143{height:656.480000pt;}
.h1_c00143{height:1122.666667pt;}
.h0_c00143{height:1122.720000pt;}
.w2_c00143{width:17.280267pt;}
.w3_c00143{width:684.960000pt;}
.w1_c00143{width:794.000000pt;}
.w0_c00143{width:794.080000pt;}
.x0_c00143{left:0.000000pt;}
.x4_c00143{left:14.053600pt;}
.x6_c00143{left:73.119733pt;}
.x1_c00143{left:113.471867pt;}
.x3_c00143{left:120.319733pt;}
.x2_c00143{left:132.352133pt;}
.x5_c00143{left:146.333333pt;}
.x8_c00143{left:247.706667pt;}
.x7_c00143{left:293.466933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_626b885636c5f454ccc2ec5f.woff2')format("woff");}.ff1_c00144{font-family:ff1_c00144;line-height:1.070312;font-style:normal;font-weight:normal;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_e4903382ac9c1b42b63bdc18.woff2')format("woff");}.ff2_c00144{font-family:ff2_c00144;line-height:0.938965;font-style:normal;font-weight:normal;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_ac77b3fdb3a32ed2b957906f.woff2')format("woff");}.ff3_c00144{font-family:ff3_c00144;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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);}
.m1_c00144{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1_c00144{vertical-align:-5.758596px;}
.v0_c00144{vertical-align:0.000000px;}
.v2_c00144{vertical-align:5.758596px;}
.v3_c00144{vertical-align:23.760960px;}
.ls0_c00144{letter-spacing:0.000000px;}
.sc__c00144{text-shadow:none;}
.sc0_c00144{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00144{-webkit-text-stroke:0px transparent;}
.sc0_c00144{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00144{word-spacing:-18.414720px;}
.ws0_c00144{word-spacing:-11.609280px;}
.ws2_c00144{word-spacing:0.000000px;}
._17_c00144{margin-left:-7.389448px;}
._16_c00144{margin-left:-5.958654px;}
._15_c00144{margin-left:-4.106357px;}
._14_c00144{margin-left:-2.781148px;}
._2_c00144{margin-left:-1.590012px;}
._b_c00144{width:1.239143px;}
._1_c00144{width:2.319029px;}
._3_c00144{width:3.440765px;}
._c_c00144{width:4.704346px;}
._d_c00144{width:5.784259px;}
._7_c00144{width:7.470104px;}
._6_c00144{width:8.743415px;}
._8_c00144{width:9.766363px;}
._10_c00144{width:10.792530px;}
._11_c00144{width:11.899251px;}
._e_c00144{width:13.909954px;}
._f_c00144{width:15.039457px;}
._12_c00144{width:20.418840px;}
._4_c00144{width:34.114418px;}
._5_c00144{width:35.137604px;}
._9_c00144{width:39.809620px;}
._a_c00144{width:41.006134px;}
._13_c00144{width:62.288245px;}
._0_c00144{width:2261.432586px;}
.fc0_c00144{color:rgb(0,0,0);}
.fs1_c00144{font-size:41.760000px;}
.fs0_c00144{font-size:66.240000px;}
.y0_c00144{bottom:0.000000px;}
.y2d_c00144{bottom:107.460150px;}
.y2c_c00144{bottom:128.520450px;}
.y2b_c00144{bottom:149.436000px;}
.y2a_c00144{bottom:170.490450px;}
.y29_c00144{bottom:191.550150px;}
.y28_c00144{bottom:212.430000px;}
.y27_c00144{bottom:233.490300px;}
.y26_c00144{bottom:254.550000px;}
.y25_c00144{bottom:284.430450px;}
.y24_c00144{bottom:305.490750px;}
.y23_c00144{bottom:326.550450px;}
.y22_c00144{bottom:347.430300px;}
.y21_c00144{bottom:368.490600px;}
.y20_c00144{bottom:389.595450px;}
.y1f_c00144{bottom:410.475300px;}
.y1e_c00144{bottom:431.535000px;}
.y1d_c00144{bottom:461.595300px;}
.y1c_c00144{bottom:482.475150px;}
.y1b_c00144{bottom:503.534850px;}
.y1a_c00144{bottom:524.595150px;}
.y19_c00144{bottom:545.475000px;}
.y18_c00144{bottom:575.535000px;}
.y17_c00144{bottom:605.595000px;}
.y16_c00144{bottom:635.475300px;}
.y15_c00144{bottom:656.565600px;}
.y14_c00144{bottom:677.625300px;}
.y13_c00144{bottom:698.505150px;}
.y12_c00144{bottom:719.565450px;}
.y11_c00144{bottom:740.625150px;}
.y10_c00144{bottom:761.505000px;}
.yf_c00144{bottom:791.565000px;}
.ye_c00144{bottom:848.625150px;}
.yd_c00144{bottom:869.505000px;}
.yc_c00144{bottom:890.565300px;}
.yb_c00144{bottom:911.670150px;}
.ya_c00144{bottom:932.550000px;}
.y9_c00144{bottom:962.610150px;}
.y8_c00144{bottom:983.670450px;}
.y7_c00144{bottom:1004.550300px;}
.y6_c00144{bottom:1025.610000px;}
.y5_c00144{bottom:1055.670150px;}
.y4_c00144{bottom:1076.550000px;}
.y3_c00144{bottom:1097.609700px;}
.y2_c00144{bottom:1118.670000px;}
.y1_c00144{bottom:1174.680000px;}
.h5_c00144{height:48.224531px;}
.h6_c00144{height:48.256875px;}
.h2_c00144{height:56.957344px;}
.h4_c00144{height:59.666511px;}
.h3_c00144{height:59.668851px;}
.h1_c00144{height:1263.000000px;}
.h0_c00144{height:1263.060000px;}
.w1_c00144{width:893.250000px;}
.w0_c00144{width:893.340000px;}
.x0_c00144{left:0.000000px;}
.x1_c00144{left:127.655850px;}
.x2_c00144{left:148.896150px;}
@media print{
.v1_c00144{vertical-align:-5.118752pt;}
.v0_c00144{vertical-align:0.000000pt;}
.v2_c00144{vertical-align:5.118752pt;}
.v3_c00144{vertical-align:21.120853pt;}
.ls0_c00144{letter-spacing:0.000000pt;}
.ws1_c00144{word-spacing:-16.368640pt;}
.ws0_c00144{word-spacing:-10.319360pt;}
.ws2_c00144{word-spacing:0.000000pt;}
._17_c00144{margin-left:-6.568399pt;}
._16_c00144{margin-left:-5.296581pt;}
._15_c00144{margin-left:-3.650095pt;}
._14_c00144{margin-left:-2.472132pt;}
._2_c00144{margin-left:-1.413344pt;}
._b_c00144{width:1.101461pt;}
._1_c00144{width:2.061359pt;}
._3_c00144{width:3.058457pt;}
._c_c00144{width:4.181641pt;}
._d_c00144{width:5.141564pt;}
._7_c00144{width:6.640093pt;}
._6_c00144{width:7.771924pt;}
._8_c00144{width:8.681211pt;}
._10_c00144{width:9.593360pt;}
._11_c00144{width:10.577112pt;}
._e_c00144{width:12.364403pt;}
._f_c00144{width:13.368406pt;}
._12_c00144{width:18.150080pt;}
._4_c00144{width:30.323927pt;}
._5_c00144{width:31.233426pt;}
._9_c00144{width:35.386329pt;}
._a_c00144{width:36.449897pt;}
._13_c00144{width:55.367329pt;}
._0_c00144{width:2010.162299pt;}
.fs1_c00144{font-size:37.120000pt;}
.fs0_c00144{font-size:58.880000pt;}
.y0_c00144{bottom:0.000000pt;}
.y2d_c00144{bottom:95.520133pt;}
.y2c_c00144{bottom:114.240400pt;}
.y2b_c00144{bottom:132.832000pt;}
.y2a_c00144{bottom:151.547067pt;}
.y29_c00144{bottom:170.266800pt;}
.y28_c00144{bottom:188.826667pt;}
.y27_c00144{bottom:207.546933pt;}
.y26_c00144{bottom:226.266667pt;}
.y25_c00144{bottom:252.827067pt;}
.y24_c00144{bottom:271.547333pt;}
.y23_c00144{bottom:290.267067pt;}
.y22_c00144{bottom:308.826933pt;}
.y21_c00144{bottom:327.547200pt;}
.y20_c00144{bottom:346.307067pt;}
.y1f_c00144{bottom:364.866933pt;}
.y1e_c00144{bottom:383.586667pt;}
.y1d_c00144{bottom:410.306933pt;}
.y1c_c00144{bottom:428.866800pt;}
.y1b_c00144{bottom:447.586533pt;}
.y1a_c00144{bottom:466.306800pt;}
.y19_c00144{bottom:484.866667pt;}
.y18_c00144{bottom:511.586667pt;}
.y17_c00144{bottom:538.306667pt;}
.y16_c00144{bottom:564.866933pt;}
.y15_c00144{bottom:583.613867pt;}
.y14_c00144{bottom:602.333600pt;}
.y13_c00144{bottom:620.893467pt;}
.y12_c00144{bottom:639.613733pt;}
.y11_c00144{bottom:658.333467pt;}
.y10_c00144{bottom:676.893333pt;}
.yf_c00144{bottom:703.613333pt;}
.ye_c00144{bottom:754.333467pt;}
.yd_c00144{bottom:772.893333pt;}
.yc_c00144{bottom:791.613600pt;}
.yb_c00144{bottom:810.373467pt;}
.ya_c00144{bottom:828.933333pt;}
.y9_c00144{bottom:855.653467pt;}
.y8_c00144{bottom:874.373733pt;}
.y7_c00144{bottom:892.933600pt;}
.y6_c00144{bottom:911.653333pt;}
.y5_c00144{bottom:938.373467pt;}
.y4_c00144{bottom:956.933333pt;}
.y3_c00144{bottom:975.653067pt;}
.y2_c00144{bottom:994.373333pt;}
.y1_c00144{bottom:1044.160000pt;}
.h5_c00144{height:42.866250pt;}
.h6_c00144{height:42.895000pt;}
.h2_c00144{height:50.628750pt;}
.h4_c00144{height:53.036898pt;}
.h3_c00144{height:53.038978pt;}
.h1_c00144{height:1122.666667pt;}
.h0_c00144{height:1122.720000pt;}
.w1_c00144{width:794.000000pt;}
.w0_c00144{width:794.080000pt;}
.x0_c00144{left:0.000000pt;}
.x1_c00144{left:113.471867pt;}
.x2_c00144{left:132.352133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b659a0319dccd12368a4e9fe.woff2')format("woff");}.ff1_c00145{font-family:ff1_c00145;line-height:1.070312;font-style:normal;font-weight:normal;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_4ad8b5a40a9231bbe27883a8.woff2')format("woff");}.ff2_c00145{font-family:ff2_c00145;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00145{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00145{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_c00145{vertical-align:0.000000px;}
.ls2_c00145{letter-spacing:0.000000px;}
.ls0_c00145{letter-spacing:16.668480px;}
.ls1_c00145{letter-spacing:17.890080px;}
.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;}
}
.ws3_c00145{word-spacing:-22.017600px;}
.ws0_c00145{word-spacing:-18.414720px;}
.ws1_c00145{word-spacing:-15.012000px;}
.ws5_c00145{word-spacing:0.000000px;}
.ws4_c00145{word-spacing:98.158521px;}
.ws2_c00145{word-spacing:123.399158px;}
._9_c00145{margin-left:-3.378661px;}
._b_c00145{margin-left:-2.219930px;}
._2_c00145{margin-left:-1.143526px;}
._8_c00145{width:1.128737px;}
._a_c00145{width:2.222217px;}
._7_c00145{width:3.747842px;}
._1_c00145{width:5.288888px;}
._3_c00145{width:6.703475px;}
._6_c00145{width:9.556928px;}
._5_c00145{width:12.203943px;}
._4_c00145{width:17.319374px;}
._e_c00145{width:23.170515px;}
._d_c00145{width:160.073264px;}
._c_c00145{width:178.483183px;}
._0_c00145{width:2261.432586px;}
.fc1_c00145{color:rgb(89,89,89);}
.fc0_c00145{color:rgb(0,0,0);}
.fs1_c00145{font-size:54.000000px;}
.fs0_c00145{font-size:66.240000px;}
.fs2_c00145{font-size:79.200000px;}
.y0_c00145{bottom:0.000000px;}
.y18_c00145{bottom:7.665000px;}
.y20_c00145{bottom:7.709400px;}
.y23_c00145{bottom:17.205000px;}
.y17_c00145{bottom:26.565000px;}
.y1f_c00145{bottom:26.610000px;}
.y14_c00145{bottom:49.320000px;}
.y15_c00145{bottom:92.054700px;}
.y19_c00145{bottom:184.215000px;}
.y12_c00145{bottom:211.350000px;}
.y1b_c00145{bottom:220.830300px;}
.y1a_c00145{bottom:239.790600px;}
.y11_c00145{bottom:241.409550px;}
.y10_c00145{bottom:262.290450px;}
.y1c_c00145{bottom:276.405300px;}
.yf_c00145{bottom:283.350150px;}
.ye_c00145{bottom:304.409850px;}
.y1d_c00145{bottom:322.485150px;}
.yd_c00145{bottom:325.290300px;}
.yc_c00145{bottom:346.350000px;}
.yb_c00145{bottom:376.230000px;}
.ya_c00145{bottom:415.334700px;}
.y22_c00145{bottom:419.729700px;}
.y9_c00145{bottom:436.395000px;}
.y21_c00145{bottom:442.590000px;}
.y13_c00145{bottom:480.420000px;}
.y16_c00145{bottom:601.200000px;}
.y1e_c00145{bottom:831.600000px;}
.y8_c00145{bottom:983.670300px;}
.y7_c00145{bottom:1004.550150px;}
.y6_c00145{bottom:1025.609850px;}
.y5_c00145{bottom:1046.670150px;}
.y4_c00145{bottom:1067.550000px;}
.y3_c00145{bottom:1097.609700px;}
.y2_c00145{bottom:1118.670000px;}
.y1_c00145{bottom:1174.680000px;}
.h4_c00145{height:46.259700px;}
.h2_c00145{height:56.957344px;}
.h5_c00145{height:68.101172px;}
.h3_c00145{height:472.500000px;}
.h1_c00145{height:1263.000000px;}
.h0_c00145{height:1263.060000px;}
.w2_c00145{width:680.220000px;}
.w1_c00145{width:893.250000px;}
.w0_c00145{width:893.340000px;}
.x0_c00145{left:0.000000px;}
.x9_c00145{left:9.899889px;}
.x5_c00145{left:13.571700px;}
.x6_c00145{left:51.089700px;}
.xa_c00145{left:74.489700px;}
.x7_c00145{left:81.501180px;}
.x8_c00145{left:110.849850px;}
.x1_c00145{left:127.655850px;}
.xc_c00145{left:143.609700px;}
.x2_c00145{left:148.896150px;}
.x3_c00145{left:234.030750px;}
.x4_c00145{left:265.349700px;}
.xb_c00145{left:269.489700px;}
@media print{
.v0_c00145{vertical-align:0.000000pt;}
.ls2_c00145{letter-spacing:0.000000pt;}
.ls0_c00145{letter-spacing:14.816427pt;}
.ls1_c00145{letter-spacing:15.902293pt;}
.ws3_c00145{word-spacing:-19.571200pt;}
.ws0_c00145{word-spacing:-16.368640pt;}
.ws1_c00145{word-spacing:-13.344000pt;}
.ws5_c00145{word-spacing:0.000000pt;}
.ws4_c00145{word-spacing:87.252019pt;}
.ws2_c00145{word-spacing:109.688141pt;}
._9_c00145{margin-left:-3.003254pt;}
._b_c00145{margin-left:-1.973272pt;}
._2_c00145{margin-left:-1.016467pt;}
._8_c00145{width:1.003322pt;}
._a_c00145{width:1.975304pt;}
._7_c00145{width:3.331415pt;}
._1_c00145{width:4.701234pt;}
._3_c00145{width:5.958645pt;}
._6_c00145{width:8.495047pt;}
._5_c00145{width:10.847949pt;}
._4_c00145{width:15.394999pt;}
._e_c00145{width:20.596013pt;}
._d_c00145{width:142.287346pt;}
._c_c00145{width:158.651718pt;}
._0_c00145{width:2010.162299pt;}
.fs1_c00145{font-size:48.000000pt;}
.fs0_c00145{font-size:58.880000pt;}
.fs2_c00145{font-size:70.400000pt;}
.y0_c00145{bottom:0.000000pt;}
.y18_c00145{bottom:6.813333pt;}
.y20_c00145{bottom:6.852800pt;}
.y23_c00145{bottom:15.293333pt;}
.y17_c00145{bottom:23.613333pt;}
.y1f_c00145{bottom:23.653333pt;}
.y14_c00145{bottom:43.840000pt;}
.y15_c00145{bottom:81.826400pt;}
.y19_c00145{bottom:163.746667pt;}
.y12_c00145{bottom:187.866667pt;}
.y1b_c00145{bottom:196.293600pt;}
.y1a_c00145{bottom:213.147200pt;}
.y11_c00145{bottom:214.586267pt;}
.y10_c00145{bottom:233.147067pt;}
.y1c_c00145{bottom:245.693600pt;}
.yf_c00145{bottom:251.866800pt;}
.ye_c00145{bottom:270.586533pt;}
.y1d_c00145{bottom:286.653467pt;}
.yd_c00145{bottom:289.146933pt;}
.yc_c00145{bottom:307.866667pt;}
.yb_c00145{bottom:334.426667pt;}
.ya_c00145{bottom:369.186400pt;}
.y22_c00145{bottom:373.093067pt;}
.y9_c00145{bottom:387.906667pt;}
.y21_c00145{bottom:393.413333pt;}
.y13_c00145{bottom:427.040000pt;}
.y16_c00145{bottom:534.400000pt;}
.y1e_c00145{bottom:739.200000pt;}
.y8_c00145{bottom:874.373600pt;}
.y7_c00145{bottom:892.933467pt;}
.y6_c00145{bottom:911.653200pt;}
.y5_c00145{bottom:930.373467pt;}
.y4_c00145{bottom:948.933333pt;}
.y3_c00145{bottom:975.653067pt;}
.y2_c00145{bottom:994.373333pt;}
.y1_c00145{bottom:1044.160000pt;}
.h4_c00145{height:41.119733pt;}
.h2_c00145{height:50.628750pt;}
.h5_c00145{height:60.534375pt;}
.h3_c00145{height:420.000000pt;}
.h1_c00145{height:1122.666667pt;}
.h0_c00145{height:1122.720000pt;}
.w2_c00145{width:604.640000pt;}
.w1_c00145{width:794.000000pt;}
.w0_c00145{width:794.080000pt;}
.x0_c00145{left:0.000000pt;}
.x9_c00145{left:8.799901pt;}
.x5_c00145{left:12.063733pt;}
.x6_c00145{left:45.413067pt;}
.xa_c00145{left:66.213067pt;}
.x7_c00145{left:72.445493pt;}
.x8_c00145{left:98.533200pt;}
.x1_c00145{left:113.471867pt;}
.xc_c00145{left:127.653067pt;}
.x2_c00145{left:132.352133pt;}
.x3_c00145{left:208.027333pt;}
.x4_c00145{left:235.866400pt;}
.xb_c00145{left:239.546400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_75de719287aa217e2aab0ac7.woff2')format("woff");}.ff1_c00146{font-family:ff1_c00146;line-height:1.070312;font-style:normal;font-weight:normal;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_0b6e8877d7aabfb588abd8cc.woff2')format("woff");}.ff2_c00146{font-family:ff2_c00146;line-height:0.938965;font-style: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);}
.m1_c00146{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_c00146{vertical-align:0.000000px;}
.ls0_c00146{letter-spacing:0.000000px;}
.sc__c00146{text-shadow:none;}
.sc0_c00146{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00146{-webkit-text-stroke:0px transparent;}
.sc0_c00146{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00146{word-spacing:0.000000px;}
.ws1_c00146{word-spacing:98.158521px;}
.ws0_c00146{word-spacing:103.537757px;}
._b_c00146{margin-left:-2.450383px;}
._1_c00146{margin-left:-1.093374px;}
._7_c00146{width:1.071340px;}
._2_c00146{width:2.431392px;}
._a_c00146{width:4.305427px;}
._5_c00146{width:5.893801px;}
._6_c00146{width:7.409929px;}
._8_c00146{width:8.740860px;}
._9_c00146{width:10.763937px;}
._3_c00146{width:11.801824px;}
._4_c00146{width:12.992740px;}
._c_c00146{width:15.633068px;}
._d_c00146{width:17.087994px;}
._10_c00146{width:102.719025px;}
._f_c00146{width:140.322319px;}
._e_c00146{width:845.765568px;}
._0_c00146{width:2261.432586px;}
.fc1_c00146{color:rgb(89,89,89);}
.fc0_c00146{color:rgb(0,0,0);}
.fs0_c00146{font-size:66.240000px;}
.fs1_c00146{font-size:79.200000px;}
.y0_c00146{bottom:0.000000px;}
.y20_c00146{bottom:17.205000px;}
.y1b_c00146{bottom:49.320000px;}
.y1c_c00146{bottom:93.449850px;}
.y1e_c00146{bottom:132.870000px;}
.y1d_c00146{bottom:151.845000px;}
.y1f_c00146{bottom:195.045000px;}
.y19_c00146{bottom:383.430000px;}
.y18_c00146{bottom:404.534850px;}
.y17_c00146{bottom:425.595150px;}
.y16_c00146{bottom:446.475000px;}
.y15_c00146{bottom:467.534700px;}
.y14_c00146{bottom:488.595450px;}
.y13_c00146{bottom:509.475300px;}
.y12_c00146{bottom:530.535000px;}
.y11_c00146{bottom:560.595450px;}
.y10_c00146{bottom:581.475300px;}
.yf_c00146{bottom:602.535000px;}
.ye_c00146{bottom:623.595300px;}
.yd_c00146{bottom:644.505000px;}
.yc_c00146{bottom:665.565300px;}
.yb_c00146{bottom:686.625000px;}
.ya_c00146{bottom:707.504850px;}
.y9_c00146{bottom:728.565150px;}
.y8_c00146{bottom:749.624850px;}
.y7_c00146{bottom:770.504700px;}
.y6_c00146{bottom:791.565450px;}
.y5_c00146{bottom:812.625150px;}
.y4_c00146{bottom:833.505000px;}
.y3_c00146{bottom:863.565000px;}
.y2_c00146{bottom:884.625000px;}
.y1a_c00146{bottom:910.620000px;}
.y1_c00146{bottom:1174.680000px;}
.h3_c00146{height:48.256875px;}
.h2_c00146{height:56.957344px;}
.h5_c00146{height:68.101172px;}
.h4_c00146{height:225.000000px;}
.h1_c00146{height:1263.000000px;}
.h0_c00146{height:1263.060000px;}
.w2_c00146{width:680.220000px;}
.w1_c00146{width:893.250000px;}
.w0_c00146{width:893.340000px;}
.x0_c00146{left:0.000000px;}
.x6_c00146{left:9.899700px;}
.x5_c00146{left:53.099700px;}
.x7_c00146{left:108.104550px;}
.x8_c00146{left:121.859430px;}
.x1_c00146{left:127.655850px;}
.x9_c00146{left:143.609700px;}
.x2_c00146{left:148.896150px;}
.x3_c00146{left:191.550000px;}
.x4_c00146{left:313.124700px;}
@media print{
.v0_c00146{vertical-align:0.000000pt;}
.ls0_c00146{letter-spacing:0.000000pt;}
.ws2_c00146{word-spacing:0.000000pt;}
.ws1_c00146{word-spacing:87.252019pt;}
.ws0_c00146{word-spacing:92.033562pt;}
._b_c00146{margin-left:-2.178118pt;}
._1_c00146{margin-left:-0.971888pt;}
._7_c00146{width:0.952302pt;}
._2_c00146{width:2.161238pt;}
._a_c00146{width:3.827046pt;}
._5_c00146{width:5.238935pt;}
._6_c00146{width:6.586604pt;}
._8_c00146{width:7.769653pt;}
._9_c00146{width:9.567944pt;}
._3_c00146{width:10.490511pt;}
._4_c00146{width:11.549102pt;}
._c_c00146{width:13.896060pt;}
._d_c00146{width:15.189328pt;}
._10_c00146{width:91.305800pt;}
._f_c00146{width:124.730950pt;}
._e_c00146{width:751.791616pt;}
._0_c00146{width:2010.162299pt;}
.fs0_c00146{font-size:58.880000pt;}
.fs1_c00146{font-size:70.400000pt;}
.y0_c00146{bottom:0.000000pt;}
.y20_c00146{bottom:15.293333pt;}
.y1b_c00146{bottom:43.840000pt;}
.y1c_c00146{bottom:83.066533pt;}
.y1e_c00146{bottom:118.106667pt;}
.y1d_c00146{bottom:134.973333pt;}
.y1f_c00146{bottom:173.373333pt;}
.y19_c00146{bottom:340.826667pt;}
.y18_c00146{bottom:359.586533pt;}
.y17_c00146{bottom:378.306800pt;}
.y16_c00146{bottom:396.866667pt;}
.y15_c00146{bottom:415.586400pt;}
.y14_c00146{bottom:434.307067pt;}
.y13_c00146{bottom:452.866933pt;}
.y12_c00146{bottom:471.586667pt;}
.y11_c00146{bottom:498.307067pt;}
.y10_c00146{bottom:516.866933pt;}
.yf_c00146{bottom:535.586667pt;}
.ye_c00146{bottom:554.306933pt;}
.yd_c00146{bottom:572.893333pt;}
.yc_c00146{bottom:591.613600pt;}
.yb_c00146{bottom:610.333333pt;}
.ya_c00146{bottom:628.893200pt;}
.y9_c00146{bottom:647.613467pt;}
.y8_c00146{bottom:666.333200pt;}
.y7_c00146{bottom:684.893067pt;}
.y6_c00146{bottom:703.613733pt;}
.y5_c00146{bottom:722.333467pt;}
.y4_c00146{bottom:740.893333pt;}
.y3_c00146{bottom:767.613333pt;}
.y2_c00146{bottom:786.333333pt;}
.y1a_c00146{bottom:809.440000pt;}
.y1_c00146{bottom:1044.160000pt;}
.h3_c00146{height:42.895000pt;}
.h2_c00146{height:50.628750pt;}
.h5_c00146{height:60.534375pt;}
.h4_c00146{height:200.000000pt;}
.h1_c00146{height:1122.666667pt;}
.h0_c00146{height:1122.720000pt;}
.w2_c00146{width:604.640000pt;}
.w1_c00146{width:794.000000pt;}
.w0_c00146{width:794.080000pt;}
.x0_c00146{left:0.000000pt;}
.x6_c00146{left:8.799733pt;}
.x5_c00146{left:47.199733pt;}
.x7_c00146{left:96.092933pt;}
.x8_c00146{left:108.319493pt;}
.x1_c00146{left:113.471867pt;}
.x9_c00146{left:127.653067pt;}
.x2_c00146{left:132.352133pt;}
.x3_c00146{left:170.266667pt;}
.x4_c00146{left:278.333067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_573bdc84ab843081e66021e2.woff2')format("woff");}.ff1_c00147{font-family:ff1_c00147;line-height:1.070312;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00147{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00147{vertical-align:0.000000px;}
.ls0_c00147{letter-spacing:0.000000px;}
.sc__c00147{text-shadow:none;}
.sc0_c00147{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00147{-webkit-text-stroke:0px transparent;}
.sc0_c00147{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00147{word-spacing:0.000000px;}
.ws1_c00147{word-spacing:96.176873px;}
.ws0_c00147{word-spacing:140.257238px;}
._6_c00147{margin-left:-7.366186px;}
._1_c00147{margin-left:-1.093374px;}
._2_c00147{width:3.150924px;}
._5_c00147{width:176.814762px;}
._4_c00147{width:195.402866px;}
._3_c00147{width:845.765568px;}
._0_c00147{width:2261.432586px;}
.fc1_c00147{color:rgb(89,89,89);}
.fc0_c00147{color:rgb(0,0,0);}
.fs0_c00147{font-size:66.240000px;}
.fs1_c00147{font-size:66.384000px;}
.fs2_c00147{font-size:79.200000px;}
.y0_c00147{bottom:0.000000px;}
.y21_c00147{bottom:17.130000px;}
.y5_c00147{bottom:49.245000px;}
.y6_c00147{bottom:83.954700px;}
.y7_c00147{bottom:114.090000px;}
.y3_c00147{bottom:141.155850px;}
.y8_c00147{bottom:144.210150px;}
.y9_c00147{bottom:174.344850px;}
.y2_c00147{bottom:180.210000px;}
.ya_c00147{bottom:204.479550px;}
.y4_c00147{bottom:225.180000px;}
.yb_c00147{bottom:234.614850px;}
.yc_c00147{bottom:264.749550px;}
.yd_c00147{bottom:294.869700px;}
.ye_c00147{bottom:325.004400px;}
.yf_c00147{bottom:355.139700px;}
.y10_c00147{bottom:385.274400px;}
.y11_c00147{bottom:415.409700px;}
.y12_c00147{bottom:445.529850px;}
.y13_c00147{bottom:475.664550px;}
.y14_c00147{bottom:505.769400px;}
.y15_c00147{bottom:535.889550px;}
.y16_c00147{bottom:566.024250px;}
.y17_c00147{bottom:596.159550px;}
.y18_c00147{bottom:626.294250px;}
.y19_c00147{bottom:656.428950px;}
.y1a_c00147{bottom:686.549100px;}
.y1b_c00147{bottom:716.684400px;}
.y1c_c00147{bottom:746.819100px;}
.y1d_c00147{bottom:776.954400px;}
.y1e_c00147{bottom:807.089100px;}
.y1f_c00147{bottom:837.209250px;}
.y20_c00147{bottom:880.484250px;}
.y1_c00147{bottom:1174.680000px;}
.h2_c00147{height:56.957344px;}
.h4_c00147{height:57.081164px;}
.h5_c00147{height:68.101172px;}
.h3_c00147{height:910.440000px;}
.h1_c00147{height:1263.000000px;}
.h0_c00147{height:1263.060000px;}
.w2_c00147{width:680.220000px;}
.w1_c00147{width:893.250000px;}
.w0_c00147{width:893.340000px;}
.x0_c00147{left:0.000000px;}
.x5_c00147{left:10.835850px;}
.x4_c00147{left:29.189700px;}
.x6_c00147{left:99.540000px;}
.x7_c00147{left:113.969700px;}
.x1_c00147{left:127.655850px;}
.x2_c00147{left:191.550000px;}
.x3_c00147{left:244.229700px;}
@media print{
.v0_c00147{vertical-align:0.000000pt;}
.ls0_c00147{letter-spacing:0.000000pt;}
.ws2_c00147{word-spacing:0.000000pt;}
.ws1_c00147{word-spacing:85.490554pt;}
.ws0_c00147{word-spacing:124.673101pt;}
._6_c00147{margin-left:-6.547721pt;}
._1_c00147{margin-left:-0.971888pt;}
._2_c00147{width:2.800822pt;}
._5_c00147{width:157.168677pt;}
._4_c00147{width:173.691436pt;}
._3_c00147{width:751.791616pt;}
._0_c00147{width:2010.162299pt;}
.fs0_c00147{font-size:58.880000pt;}
.fs1_c00147{font-size:59.008000pt;}
.fs2_c00147{font-size:70.400000pt;}
.y0_c00147{bottom:0.000000pt;}
.y21_c00147{bottom:15.226667pt;}
.y5_c00147{bottom:43.773333pt;}
.y6_c00147{bottom:74.626400pt;}
.y7_c00147{bottom:101.413333pt;}
.y3_c00147{bottom:125.471867pt;}
.y8_c00147{bottom:128.186800pt;}
.y9_c00147{bottom:154.973200pt;}
.y2_c00147{bottom:160.186667pt;}
.ya_c00147{bottom:181.759600pt;}
.y4_c00147{bottom:200.160000pt;}
.yb_c00147{bottom:208.546533pt;}
.yc_c00147{bottom:235.332933pt;}
.yd_c00147{bottom:262.106400pt;}
.ye_c00147{bottom:288.892800pt;}
.yf_c00147{bottom:315.679733pt;}
.y10_c00147{bottom:342.466133pt;}
.y11_c00147{bottom:369.253067pt;}
.y12_c00147{bottom:396.026533pt;}
.y13_c00147{bottom:422.812933pt;}
.y14_c00147{bottom:449.572800pt;}
.y15_c00147{bottom:476.346267pt;}
.y16_c00147{bottom:503.132667pt;}
.y17_c00147{bottom:529.919600pt;}
.y18_c00147{bottom:556.706000pt;}
.y19_c00147{bottom:583.492400pt;}
.y1a_c00147{bottom:610.265867pt;}
.y1b_c00147{bottom:637.052800pt;}
.y1c_c00147{bottom:663.839200pt;}
.y1d_c00147{bottom:690.626133pt;}
.y1e_c00147{bottom:717.412533pt;}
.y1f_c00147{bottom:744.186000pt;}
.y20_c00147{bottom:782.652667pt;}
.y1_c00147{bottom:1044.160000pt;}
.h2_c00147{height:50.628750pt;}
.h4_c00147{height:50.738813pt;}
.h5_c00147{height:60.534375pt;}
.h3_c00147{height:809.280000pt;}
.h1_c00147{height:1122.666667pt;}
.h0_c00147{height:1122.720000pt;}
.w2_c00147{width:604.640000pt;}
.w1_c00147{width:794.000000pt;}
.w0_c00147{width:794.080000pt;}
.x0_c00147{left:0.000000pt;}
.x5_c00147{left:9.631867pt;}
.x4_c00147{left:25.946400pt;}
.x6_c00147{left:88.480000pt;}
.x7_c00147{left:101.306400pt;}
.x1_c00147{left:113.471867pt;}
.x2_c00147{left:170.266667pt;}
.x3_c00147{left:217.093067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2865df7feea1a9c0481323c0.woff2')format("woff");}.ff1_c00148{font-family:ff1_c00148;line-height:1.070312;font-style:normal;font-weight:normal;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_138898ba41f8d91742f2bd45.woff2')format("woff");}.ff2_c00148{font-family:ff2_c00148;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00148{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00148{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00148{vertical-align:0.000000px;}
.ls1_c00148{letter-spacing:0.000000px;}
.ls0_c00148{letter-spacing:2.988000px;}
.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:-18.414720px;}
.ws1_c00148{word-spacing:-15.012000px;}
.ws4_c00148{word-spacing:0.000000px;}
.ws3_c00148{word-spacing:96.381338px;}
.ws2_c00148{word-spacing:103.537757px;}
._f_c00148{margin-left:-7.366257px;}
._5_c00148{margin-left:-3.380028px;}
._6_c00148{margin-left:-2.319094px;}
._1_c00148{margin-left:-1.093374px;}
._3_c00148{width:1.615240px;}
._2_c00148{width:3.150924px;}
._8_c00148{width:4.377147px;}
._a_c00148{width:5.520687px;}
._9_c00148{width:6.552487px;}
._7_c00148{width:10.134552px;}
._4_c00148{width:23.714914px;}
._b_c00148{width:24.872550px;}
._e_c00148{width:140.212525px;}
._d_c00148{width:158.563490px;}
._c_c00148{width:845.765568px;}
._0_c00148{width:2261.432586px;}
.fc1_c00148{color:rgb(89,89,89);}
.fc0_c00148{color:rgb(0,0,0);}
.fs1_c00148{font-size:54.000000px;}
.fs0_c00148{font-size:66.240000px;}
.fs2_c00148{font-size:79.200000px;}
.y0_c00148{bottom:0.000000px;}
.y19_c00148{bottom:17.310000px;}
.y15_c00148{bottom:49.425000px;}
.y16_c00148{bottom:93.779850px;}
.y17_c00148{bottom:143.204850px;}
.y18_c00148{bottom:196.125000px;}
.y13_c00148{bottom:489.315000px;}
.y12_c00148{bottom:510.195600px;}
.y11_c00148{bottom:531.255300px;}
.y10_c00148{bottom:552.315600px;}
.yf_c00148{bottom:573.195450px;}
.ye_c00148{bottom:594.255150px;}
.yd_c00148{bottom:615.315450px;}
.yc_c00148{bottom:636.195300px;}
.yb_c00148{bottom:657.285000px;}
.ya_c00148{bottom:678.345300px;}
.y9_c00148{bottom:699.225150px;}
.y8_c00148{bottom:720.284850px;}
.y7_c00148{bottom:741.345150px;}
.y6_c00148{bottom:762.225000px;}
.y5_c00148{bottom:783.284700px;}
.y4_c00148{bottom:804.345000px;}
.y3_c00148{bottom:834.225000px;}
.y2_c00148{bottom:873.285000px;}
.y14_c00148{bottom:909.540000px;}
.y1_c00148{bottom:1174.680000px;}
.h3_c00148{height:48.256875px;}
.h2_c00148{height:56.957344px;}
.h5_c00148{height:68.101172px;}
.h4_c00148{height:226.080000px;}
.h1_c00148{height:1263.000000px;}
.h0_c00148{height:1263.060000px;}
.w2_c00148{width:680.220000px;}
.w1_c00148{width:893.250000px;}
.w0_c00148{width:893.340000px;}
.x0_c00148{left:0.000000px;}
.x6_c00148{left:9.899850px;}
.x5_c00148{left:61.304700px;}
.x8_c00148{left:113.969700px;}
.x1_c00148{left:127.655850px;}
.x2_c00148{left:148.896150px;}
.x7_c00148{left:173.699850px;}
.x3_c00148{left:191.550000px;}
.x4_c00148{left:290.159700px;}
@media print{
.v0_c00148{vertical-align:0.000000pt;}
.ls1_c00148{letter-spacing:0.000000pt;}
.ls0_c00148{letter-spacing:2.656000pt;}
.ws0_c00148{word-spacing:-16.368640pt;}
.ws1_c00148{word-spacing:-13.344000pt;}
.ws4_c00148{word-spacing:0.000000pt;}
.ws3_c00148{word-spacing:85.672301pt;}
.ws2_c00148{word-spacing:92.033562pt;}
._f_c00148{margin-left:-6.547784pt;}
._5_c00148{margin-left:-3.004470pt;}
._6_c00148{margin-left:-2.061417pt;}
._1_c00148{margin-left:-0.971888pt;}
._3_c00148{width:1.435769pt;}
._2_c00148{width:2.800822pt;}
._8_c00148{width:3.890797pt;}
._a_c00148{width:4.907278pt;}
._9_c00148{width:5.824433pt;}
._7_c00148{width:9.008491pt;}
._4_c00148{width:21.079923pt;}
._b_c00148{width:22.108934pt;}
._e_c00148{width:124.633356pt;}
._d_c00148{width:140.945324pt;}
._c_c00148{width:751.791616pt;}
._0_c00148{width:2010.162299pt;}
.fs1_c00148{font-size:48.000000pt;}
.fs0_c00148{font-size:58.880000pt;}
.fs2_c00148{font-size:70.400000pt;}
.y0_c00148{bottom:0.000000pt;}
.y19_c00148{bottom:15.386667pt;}
.y15_c00148{bottom:43.933333pt;}
.y16_c00148{bottom:83.359867pt;}
.y17_c00148{bottom:127.293200pt;}
.y18_c00148{bottom:174.333333pt;}
.y13_c00148{bottom:434.946667pt;}
.y12_c00148{bottom:453.507200pt;}
.y11_c00148{bottom:472.226933pt;}
.y10_c00148{bottom:490.947200pt;}
.yf_c00148{bottom:509.507067pt;}
.ye_c00148{bottom:528.226800pt;}
.yd_c00148{bottom:546.947067pt;}
.yc_c00148{bottom:565.506933pt;}
.yb_c00148{bottom:584.253333pt;}
.ya_c00148{bottom:602.973600pt;}
.y9_c00148{bottom:621.533467pt;}
.y8_c00148{bottom:640.253200pt;}
.y7_c00148{bottom:658.973467pt;}
.y6_c00148{bottom:677.533333pt;}
.y5_c00148{bottom:696.253067pt;}
.y4_c00148{bottom:714.973333pt;}
.y3_c00148{bottom:741.533333pt;}
.y2_c00148{bottom:776.253333pt;}
.y14_c00148{bottom:808.480000pt;}
.y1_c00148{bottom:1044.160000pt;}
.h3_c00148{height:42.895000pt;}
.h2_c00148{height:50.628750pt;}
.h5_c00148{height:60.534375pt;}
.h4_c00148{height:200.960000pt;}
.h1_c00148{height:1122.666667pt;}
.h0_c00148{height:1122.720000pt;}
.w2_c00148{width:604.640000pt;}
.w1_c00148{width:794.000000pt;}
.w0_c00148{width:794.080000pt;}
.x0_c00148{left:0.000000pt;}
.x6_c00148{left:8.799867pt;}
.x5_c00148{left:54.493067pt;}
.x8_c00148{left:101.306400pt;}
.x1_c00148{left:113.471867pt;}
.x2_c00148{left:132.352133pt;}
.x7_c00148{left:154.399867pt;}
.x3_c00148{left:170.266667pt;}
.x4_c00148{left:257.919733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_469dca692cb161dfb603b296.woff2')format("woff");}.ff1_c00149{font-family:ff1_c00149;line-height:1.070312;font-style:normal;font-weight:normal;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_aa54b892d250133f513cfebe.woff2')format("woff");}.ff2_c00149{font-family:ff2_c00149;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00149{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00149{vertical-align:0.000000px;}
.ls2_c00149{letter-spacing:0.000000px;}
.ls0_c00149{letter-spacing:17.890080px;}
.ls1_c00149{letter-spacing:17.892420px;}
.sc__c00149{text-shadow:none;}
.sc0_c00149{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00149{-webkit-text-stroke:0px transparent;}
.sc0_c00149{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00149{word-spacing:-18.414720px;}
.ws3_c00149{word-spacing:0.000000px;}
.ws2_c00149{word-spacing:96.176873px;}
.ws1_c00149{word-spacing:102.815741px;}
._e_c00149{margin-left:-7.366257px;}
._9_c00149{margin-left:-6.025288px;}
._c_c00149{margin-left:-2.514312px;}
._1_c00149{margin-left:-1.093374px;}
._5_c00149{width:1.054363px;}
._2_c00149{width:3.150924px;}
._4_c00149{width:5.729502px;}
._3_c00149{width:6.888761px;}
._6_c00149{width:9.387006px;}
._7_c00149{width:10.653495px;}
._8_c00149{width:13.975268px;}
._d_c00149{width:17.313413px;}
._b_c00149{width:102.004296px;}
._a_c00149{width:139.602952px;}
._0_c00149{width:2261.432586px;}
.fc1_c00149{color:rgb(89,89,89);}
.fc0_c00149{color:rgb(0,0,0);}
.fs0_c00149{font-size:66.240000px;}
.fs1_c00149{font-size:66.384000px;}
.fs2_c00149{font-size:79.200000px;}
.y0_c00149{bottom:0.000000px;}
.y11_c00149{bottom:6.630000px;}
.ye_c00149{bottom:6.660000px;}
.y1c_c00149{bottom:6.660600px;}
.y1a_c00149{bottom:6.690000px;}
.y17_c00149{bottom:6.735000px;}
.y25_c00149{bottom:6.764400px;}
.y14_c00149{bottom:6.765000px;}
.y1f_c00149{bottom:6.810600px;}
.y27_c00149{bottom:17.175000px;}
.y10_c00149{bottom:25.530000px;}
.yd_c00149{bottom:25.560000px;}
.y19_c00149{bottom:25.590000px;}
.y16_c00149{bottom:25.635000px;}
.y13_c00149{bottom:25.665000px;}
.y1e_c00149{bottom:25.710000px;}
.yb_c00149{bottom:49.290000px;}
.y9_c00149{bottom:257.790600px;}
.y8_c00149{bottom:278.850300px;}
.y7_c00149{bottom:299.730150px;}
.y6_c00149{bottom:320.790450px;}
.y5_c00149{bottom:341.850150px;}
.y4_c00149{bottom:362.730000px;}
.y3_c00149{bottom:392.835000px;}
.y2_c00149{bottom:431.715000px;}
.ya_c00149{bottom:477.180000px;}
.y23_c00149{bottom:533.190000px;}
.yc_c00149{bottom:551.880000px;}
.yf_c00149{bottom:596.160000px;}
.y26_c00149{bottom:628.050000px;}
.y12_c00149{bottom:640.260000px;}
.y15_c00149{bottom:684.540000px;}
.y18_c00149{bottom:728.820000px;}
.y1b_c00149{bottom:773.100000px;}
.y1d_c00149{bottom:817.200000px;}
.y20_c00149{bottom:861.480000px;}
.y21_c00149{bottom:905.760000px;}
.y22_c00149{bottom:950.040000px;}
.y24_c00149{bottom:1038.420000px;}
.y1_c00149{bottom:1174.680000px;}
.h8_c00149{height:44.279850px;}
.h6_c00149{height:44.280450px;}
.h7_c00149{height:44.459700px;}
.h5_c00149{height:44.460300px;}
.h3_c00149{height:48.256875px;}
.h2_c00149{height:56.957344px;}
.h9_c00149{height:57.081164px;}
.ha_c00149{height:68.101172px;}
.h4_c00149{height:657.900000px;}
.h1_c00149{height:1263.000000px;}
.h0_c00149{height:1263.060000px;}
.w2_c00149{width:680.220000px;}
.w1_c00149{width:893.250000px;}
.w0_c00149{width:893.340000px;}
.x0_c00149{left:0.000000px;}
.xb_c00149{left:9.791550px;}
.x9_c00149{left:18.035700px;}
.x10_c00149{left:19.871400px;}
.x8_c00149{left:21.707700px;}
.x6_c00149{left:32.609700px;}
.xd_c00149{left:40.034700px;}
.x11_c00149{left:50.969700px;}
.x4_c00149{left:55.799700px;}
.xf_c00149{left:114.014580px;}
.xe_c00149{left:125.024730px;}
.x1_c00149{left:127.655850px;}
.xc_c00149{left:136.514430px;}
.xa_c00149{left:145.694880px;}
.x7_c00149{left:147.854730px;}
.x2_c00149{left:148.896150px;}
.x12_c00149{left:156.989430px;}
.x5_c00149{left:159.299880px;}
.x13_c00149{left:184.679700px;}
.x3_c00149{left:314.024700px;}
@media print{
.v0_c00149{vertical-align:0.000000pt;}
.ls2_c00149{letter-spacing:0.000000pt;}
.ls0_c00149{letter-spacing:15.902293pt;}
.ls1_c00149{letter-spacing:15.904373pt;}
.ws0_c00149{word-spacing:-16.368640pt;}
.ws3_c00149{word-spacing:0.000000pt;}
.ws2_c00149{word-spacing:85.490554pt;}
.ws1_c00149{word-spacing:91.391770pt;}
._e_c00149{margin-left:-6.547784pt;}
._9_c00149{margin-left:-5.355812pt;}
._c_c00149{margin-left:-2.234944pt;}
._1_c00149{margin-left:-0.971888pt;}
._5_c00149{width:0.937211pt;}
._2_c00149{width:2.800822pt;}
._4_c00149{width:5.092891pt;}
._3_c00149{width:6.123343pt;}
._6_c00149{width:8.344005pt;}
._7_c00149{width:9.469773pt;}
._8_c00149{width:12.422460pt;}
._d_c00149{width:15.389700pt;}
._b_c00149{width:90.670485pt;}
._a_c00149{width:124.091513pt;}
._0_c00149{width:2010.162299pt;}
.fs0_c00149{font-size:58.880000pt;}
.fs1_c00149{font-size:59.008000pt;}
.fs2_c00149{font-size:70.400000pt;}
.y0_c00149{bottom:0.000000pt;}
.y11_c00149{bottom:5.893333pt;}
.ye_c00149{bottom:5.920000pt;}
.y1c_c00149{bottom:5.920533pt;}
.y1a_c00149{bottom:5.946667pt;}
.y17_c00149{bottom:5.986667pt;}
.y25_c00149{bottom:6.012800pt;}
.y14_c00149{bottom:6.013333pt;}
.y1f_c00149{bottom:6.053867pt;}
.y27_c00149{bottom:15.266667pt;}
.y10_c00149{bottom:22.693333pt;}
.yd_c00149{bottom:22.720000pt;}
.y19_c00149{bottom:22.746667pt;}
.y16_c00149{bottom:22.786667pt;}
.y13_c00149{bottom:22.813333pt;}
.y1e_c00149{bottom:22.853333pt;}
.yb_c00149{bottom:43.813333pt;}
.y9_c00149{bottom:229.147200pt;}
.y8_c00149{bottom:247.866933pt;}
.y7_c00149{bottom:266.426800pt;}
.y6_c00149{bottom:285.147067pt;}
.y5_c00149{bottom:303.866800pt;}
.y4_c00149{bottom:322.426667pt;}
.y3_c00149{bottom:349.186667pt;}
.y2_c00149{bottom:383.746667pt;}
.ya_c00149{bottom:424.160000pt;}
.y23_c00149{bottom:473.946667pt;}
.yc_c00149{bottom:490.560000pt;}
.yf_c00149{bottom:529.920000pt;}
.y26_c00149{bottom:558.266667pt;}
.y12_c00149{bottom:569.120000pt;}
.y15_c00149{bottom:608.480000pt;}
.y18_c00149{bottom:647.840000pt;}
.y1b_c00149{bottom:687.200000pt;}
.y1d_c00149{bottom:726.400000pt;}
.y20_c00149{bottom:765.760000pt;}
.y21_c00149{bottom:805.120000pt;}
.y22_c00149{bottom:844.480000pt;}
.y24_c00149{bottom:923.040000pt;}
.y1_c00149{bottom:1044.160000pt;}
.h8_c00149{height:39.359867pt;}
.h6_c00149{height:39.360400pt;}
.h7_c00149{height:39.519733pt;}
.h5_c00149{height:39.520267pt;}
.h3_c00149{height:42.895000pt;}
.h2_c00149{height:50.628750pt;}
.h9_c00149{height:50.738813pt;}
.ha_c00149{height:60.534375pt;}
.h4_c00149{height:584.800000pt;}
.h1_c00149{height:1122.666667pt;}
.h0_c00149{height:1122.720000pt;}
.w2_c00149{width:604.640000pt;}
.w1_c00149{width:794.000000pt;}
.w0_c00149{width:794.080000pt;}
.x0_c00149{left:0.000000pt;}
.xb_c00149{left:8.703600pt;}
.x9_c00149{left:16.031733pt;}
.x10_c00149{left:17.663467pt;}
.x8_c00149{left:19.295733pt;}
.x6_c00149{left:28.986400pt;}
.xd_c00149{left:35.586400pt;}
.x11_c00149{left:45.306400pt;}
.x4_c00149{left:49.599733pt;}
.xf_c00149{left:101.346293pt;}
.xe_c00149{left:111.133093pt;}
.x1_c00149{left:113.471867pt;}
.xc_c00149{left:121.346160pt;}
.xa_c00149{left:129.506560pt;}
.x7_c00149{left:131.426427pt;}
.x2_c00149{left:132.352133pt;}
.x12_c00149{left:139.546160pt;}
.x5_c00149{left:141.599893pt;}
.x13_c00149{left:164.159733pt;}
.x3_c00149{left:279.133067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2f8fd1b2e677261dce7f8777.woff2')format("woff");}.ff1_c00150{font-family:ff1_c00150;line-height:1.070312;font-style:normal;font-weight:normal;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_f3b016e7a1cd2eefce8daff0.woff2')format("woff");}.ff2_c00150{font-family:ff2_c00150;line-height:0.938965;font-style: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);}
.m1_c00150{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_c00150{vertical-align:0.000000px;}
.ls5_c00150{letter-spacing:0.000000px;}
.ls0_c00150{letter-spacing:8.746620px;}
.ls4_c00150{letter-spacing:17.810016px;}
.ls3_c00150{letter-spacing:17.890080px;}
.ls2_c00150{letter-spacing:18.609600px;}
.ls1_c00150{letter-spacing:18.611940px;}
.sc__c00150{text-shadow:none;}
.sc0_c00150{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00150{-webkit-text-stroke:0px transparent;}
.sc0_c00150{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00150{word-spacing:-18.414720px;}
.ws1_c00150{word-spacing:-15.012000px;}
.ws4_c00150{word-spacing:0.000000px;}
.ws3_c00150{word-spacing:96.381338px;}
.ws2_c00150{word-spacing:111.637584px;}
._10_c00150{margin-left:-7.366257px;}
._9_c00150{margin-left:-4.437783px;}
._6_c00150{margin-left:-3.243509px;}
._5_c00150{margin-left:-2.120044px;}
._1_c00150{margin-left:-1.093374px;}
._3_c00150{width:1.127641px;}
._a_c00150{width:2.140128px;}
._2_c00150{width:3.150924px;}
._4_c00150{width:4.371224px;}
._8_c00150{width:5.508999px;}
._7_c00150{width:6.534960px;}
._c_c00150{width:9.025513px;}
._b_c00150{width:10.267164px;}
._f_c00150{width:110.819515px;}
._e_c00150{width:148.243960px;}
._d_c00150{width:845.765568px;}
._0_c00150{width:2261.432586px;}
.fc1_c00150{color:rgb(89,89,89);}
.fc0_c00150{color:rgb(0,0,0);}
.fs1_c00150{font-size:54.000000px;}
.fs0_c00150{font-size:66.240000px;}
.fs2_c00150{font-size:66.384000px;}
.fs3_c00150{font-size:79.200000px;}
.y0_c00150{bottom:0.000000px;}
.y19_c00150{bottom:8.099550px;}
.y1f_c00150{bottom:17.130000px;}
.y18_c00150{bottom:27.030000px;}
.y15_c00150{bottom:49.245000px;}
.y16_c00150{bottom:92.160300px;}
.y1a_c00150{bottom:186.270000px;}
.y1b_c00150{bottom:233.279700px;}
.y1c_c00150{bottom:280.335150px;}
.y13_c00150{bottom:297.930000px;}
.y12_c00150{bottom:318.990900px;}
.y1d_c00150{bottom:327.390000px;}
.y11_c00150{bottom:340.050600px;}
.y10_c00150{bottom:360.930450px;}
.y1e_c00150{bottom:379.365000px;}
.yf_c00150{bottom:381.990750px;}
.ye_c00150{bottom:403.095600px;}
.yd_c00150{bottom:423.975450px;}
.yc_c00150{bottom:445.035150px;}
.yb_c00150{bottom:466.095450px;}
.ya_c00150{bottom:486.975300px;}
.y9_c00150{bottom:508.035000px;}
.y8_c00150{bottom:529.095300px;}
.y7_c00150{bottom:549.975150px;}
.y6_c00150{bottom:571.034850px;}
.y5_c00150{bottom:592.095150px;}
.y4_c00150{bottom:612.975000px;}
.y3_c00150{bottom:643.065000px;}
.y2_c00150{bottom:681.945000px;}
.y14_c00150{bottom:726.300000px;}
.y17_c00150{bottom:847.980000px;}
.y1_c00150{bottom:1174.680000px;}
.h5_c00150{height:47.160300px;}
.h3_c00150{height:48.256875px;}
.h2_c00150{height:56.957344px;}
.h6_c00150{height:57.081164px;}
.h7_c00150{height:68.101172px;}
.h4_c00150{height:409.320000px;}
.h1_c00150{height:1263.000000px;}
.h0_c00150{height:1263.060000px;}
.w2_c00150{width:680.220000px;}
.w1_c00150{width:893.250000px;}
.w0_c00150{width:893.340000px;}
.x0_c00150{left:0.000000px;}
.x5_c00150{left:9.863700px;}
.x9_c00150{left:12.491610px;}
.x8_c00150{left:34.484700px;}
.x6_c00150{left:40.754700px;}
.xb_c00150{left:60.300000px;}
.xa_c00150{left:76.859820px;}
.xd_c00150{left:113.969700px;}
.x1_c00150{left:127.655850px;}
.x7_c00150{left:146.444160px;}
.x2_c00150{left:148.896150px;}
.x3_c00150{left:191.550000px;}
.xc_c00150{left:196.559730px;}
.x4_c00150{left:303.044700px;}
@media print{
.v0_c00150{vertical-align:0.000000pt;}
.ls5_c00150{letter-spacing:0.000000pt;}
.ls0_c00150{letter-spacing:7.774773pt;}
.ls4_c00150{letter-spacing:15.831125pt;}
.ls3_c00150{letter-spacing:15.902293pt;}
.ls2_c00150{letter-spacing:16.541867pt;}
.ls1_c00150{letter-spacing:16.543947pt;}
.ws0_c00150{word-spacing:-16.368640pt;}
.ws1_c00150{word-spacing:-13.344000pt;}
.ws4_c00150{word-spacing:0.000000pt;}
.ws3_c00150{word-spacing:85.672301pt;}
.ws2_c00150{word-spacing:99.233408pt;}
._10_c00150{margin-left:-6.547784pt;}
._9_c00150{margin-left:-3.944696pt;}
._6_c00150{margin-left:-2.883119pt;}
._5_c00150{margin-left:-1.884483pt;}
._1_c00150{margin-left:-0.971888pt;}
._3_c00150{width:1.002347pt;}
._a_c00150{width:1.902336pt;}
._2_c00150{width:2.800822pt;}
._4_c00150{width:3.885532pt;}
._8_c00150{width:4.896888pt;}
._7_c00150{width:5.808854pt;}
._c_c00150{width:8.022679pt;}
._b_c00150{width:9.126368pt;}
._f_c00150{width:98.506235pt;}
._e_c00150{width:131.772409pt;}
._d_c00150{width:751.791616pt;}
._0_c00150{width:2010.162299pt;}
.fs1_c00150{font-size:48.000000pt;}
.fs0_c00150{font-size:58.880000pt;}
.fs2_c00150{font-size:59.008000pt;}
.fs3_c00150{font-size:70.400000pt;}
.y0_c00150{bottom:0.000000pt;}
.y19_c00150{bottom:7.199600pt;}
.y1f_c00150{bottom:15.226667pt;}
.y18_c00150{bottom:24.026667pt;}
.y15_c00150{bottom:43.773333pt;}
.y16_c00150{bottom:81.920267pt;}
.y1a_c00150{bottom:165.573333pt;}
.y1b_c00150{bottom:207.359733pt;}
.y1c_c00150{bottom:249.186800pt;}
.y13_c00150{bottom:264.826667pt;}
.y12_c00150{bottom:283.547467pt;}
.y1d_c00150{bottom:291.013333pt;}
.y11_c00150{bottom:302.267200pt;}
.y10_c00150{bottom:320.827067pt;}
.y1e_c00150{bottom:337.213333pt;}
.yf_c00150{bottom:339.547333pt;}
.ye_c00150{bottom:358.307200pt;}
.yd_c00150{bottom:376.867067pt;}
.yc_c00150{bottom:395.586800pt;}
.yb_c00150{bottom:414.307067pt;}
.ya_c00150{bottom:432.866933pt;}
.y9_c00150{bottom:451.586667pt;}
.y8_c00150{bottom:470.306933pt;}
.y7_c00150{bottom:488.866800pt;}
.y6_c00150{bottom:507.586533pt;}
.y5_c00150{bottom:526.306800pt;}
.y4_c00150{bottom:544.866667pt;}
.y3_c00150{bottom:571.613333pt;}
.y2_c00150{bottom:606.173333pt;}
.y14_c00150{bottom:645.600000pt;}
.y17_c00150{bottom:753.760000pt;}
.y1_c00150{bottom:1044.160000pt;}
.h5_c00150{height:41.920267pt;}
.h3_c00150{height:42.895000pt;}
.h2_c00150{height:50.628750pt;}
.h6_c00150{height:50.738813pt;}
.h7_c00150{height:60.534375pt;}
.h4_c00150{height:363.840000pt;}
.h1_c00150{height:1122.666667pt;}
.h0_c00150{height:1122.720000pt;}
.w2_c00150{width:604.640000pt;}
.w1_c00150{width:794.000000pt;}
.w0_c00150{width:794.080000pt;}
.x0_c00150{left:0.000000pt;}
.x5_c00150{left:8.767733pt;}
.x9_c00150{left:11.103653pt;}
.x8_c00150{left:30.653067pt;}
.x6_c00150{left:36.226400pt;}
.xb_c00150{left:53.600000pt;}
.xa_c00150{left:68.319840pt;}
.xd_c00150{left:101.306400pt;}
.x1_c00150{left:113.471867pt;}
.x7_c00150{left:130.172587pt;}
.x2_c00150{left:132.352133pt;}
.x3_c00150{left:170.266667pt;}
.xc_c00150{left:174.719760pt;}
.x4_c00150{left:269.373067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_76d92396409296ccc604a77b.woff2')format("woff");}.ff1_c00151{font-family:ff1_c00151;line-height:1.070312;font-style:normal;font-weight:normal;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_a4ba44404c9aeec9989be430.woff2')format("woff");}.ff2_c00151{font-family:ff2_c00151;line-height:0.938965;font-style: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);}
.m1_c00151{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_c00151{vertical-align:0.000000px;}
.ls5_c00151{letter-spacing:0.000000px;}
.ls4_c00151{letter-spacing:17.810016px;}
.ls3_c00151{letter-spacing:17.812356px;}
.ls0_c00151{letter-spacing:17.890080px;}
.ls2_c00151{letter-spacing:18.609600px;}
.ls1_c00151{letter-spacing:18.611940px;}
.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;}
}
.ws2_c00151{word-spacing:0.000000px;}
.ws1_c00151{word-spacing:96.381338px;}
.ws0_c00151{word-spacing:102.157315px;}
._13_c00151{margin-left:-7.366257px;}
._8_c00151{margin-left:-3.543846px;}
._7_c00151{margin-left:-2.352073px;}
._1_c00151{margin-left:-1.093374px;}
._9_c00151{width:1.126897px;}
._2_c00151{width:3.150924px;}
._10_c00151{width:5.008171px;}
._b_c00151{width:6.091399px;}
._a_c00151{width:7.153986px;}
._c_c00151{width:8.214180px;}
._e_c00151{width:11.625658px;}
._f_c00151{width:12.640252px;}
._5_c00151{width:15.764128px;}
._6_c00151{width:17.350812px;}
._d_c00151{width:19.589830px;}
._3_c00151{width:24.730680px;}
._4_c00151{width:25.834665px;}
._12_c00151{width:101.159736px;}
._11_c00151{width:138.822606px;}
._0_c00151{width:2261.432586px;}
.fc1_c00151{color:rgb(89,89,89);}
.fc0_c00151{color:rgb(0,0,0);}
.fs0_c00151{font-size:66.240000px;}
.fs1_c00151{font-size:66.384000px;}
.fs2_c00151{font-size:79.200000px;}
.y0_c00151{bottom:0.000000px;}
.y1a_c00151{bottom:7.920000px;}
.y17_c00151{bottom:7.950000px;}
.y28_c00151{bottom:8.024850px;}
.y14_c00151{bottom:8.025000px;}
.y1d_c00151{bottom:8.070000px;}
.y26_c00151{bottom:8.100000px;}
.y2a_c00151{bottom:17.250000px;}
.y19_c00151{bottom:26.820000px;}
.y16_c00151{bottom:26.850000px;}
.y13_c00151{bottom:26.925000px;}
.y1c_c00151{bottom:26.970000px;}
.y25_c00151{bottom:27.000000px;}
.y11_c00151{bottom:49.350000px;}
.yf_c00151{bottom:102.420450px;}
.ye_c00151{bottom:123.480150px;}
.yd_c00151{bottom:144.576300px;}
.yc_c00151{bottom:165.450300px;}
.yb_c00151{bottom:186.510000px;}
.ya_c00151{bottom:207.570300px;}
.y9_c00151{bottom:228.450150px;}
.y8_c00151{bottom:249.509850px;}
.y7_c00151{bottom:270.570150px;}
.y1e_c00151{bottom:279.150000px;}
.y6_c00151{bottom:291.450000px;}
.y5_c00151{bottom:312.509700px;}
.y1f_c00151{bottom:325.904850px;}
.y4_c00151{bottom:333.570000px;}
.y3_c00151{bottom:363.450000px;}
.y2_c00151{bottom:402.555000px;}
.y10_c00151{bottom:446.940000px;}
.y22_c00151{bottom:466.170000px;}
.y23_c00151{bottom:512.925450px;}
.y12_c00151{bottom:521.640000px;}
.y15_c00151{bottom:568.440000px;}
.y18_c00151{bottom:615.240000px;}
.y29_c00151{bottom:658.290000px;}
.y1b_c00151{bottom:661.860000px;}
.y20_c00151{bottom:802.260000px;}
.y21_c00151{bottom:848.880000px;}
.y24_c00151{bottom:989.100000px;}
.y27_c00151{bottom:1035.900000px;}
.y1_c00151{bottom:1174.680000px;}
.h6_c00151{height:46.800000px;}
.h4_c00151{height:46.979850px;}
.h7_c00151{height:46.980450px;}
.h2_c00151{height:56.957344px;}
.h5_c00151{height:57.081164px;}
.h8_c00151{height:68.101172px;}
.h3_c00151{height:688.140000px;}
.h1_c00151{height:1263.000000px;}
.h0_c00151{height:1263.060000px;}
.w2_c00151{width:680.220000px;}
.w1_c00151{width:893.250000px;}
.w0_c00151{width:893.340000px;}
.x0_c00151{left:0.000000px;}
.x9_c00151{left:9.828045px;}
.x4_c00151{left:11.844150px;}
.x8_c00151{left:13.463700px;}
.xe_c00151{left:17.135700px;}
.x6_c00151{left:18.935700px;}
.xc_c00151{left:30.809850px;}
.xa_c00151{left:34.454850px;}
.x10_c00151{left:113.939850px;}
.x1_c00151{left:127.655850px;}
.x7_c00151{left:146.595180px;}
.x2_c00151{left:148.896150px;}
.xd_c00151{left:152.534910px;}
.xb_c00151{left:154.364610px;}
.x5_c00151{left:157.499970px;}
.xf_c00151{left:186.809850px;}
.x3_c00151{left:314.894850px;}
@media print{
.v0_c00151{vertical-align:0.000000pt;}
.ls5_c00151{letter-spacing:0.000000pt;}
.ls4_c00151{letter-spacing:15.831125pt;}
.ls3_c00151{letter-spacing:15.833205pt;}
.ls0_c00151{letter-spacing:15.902293pt;}
.ls2_c00151{letter-spacing:16.541867pt;}
.ls1_c00151{letter-spacing:16.543947pt;}
.ws2_c00151{word-spacing:0.000000pt;}
.ws1_c00151{word-spacing:85.672301pt;}
.ws0_c00151{word-spacing:90.806502pt;}
._13_c00151{margin-left:-6.547784pt;}
._8_c00151{margin-left:-3.150085pt;}
._7_c00151{margin-left:-2.090732pt;}
._1_c00151{margin-left:-0.971888pt;}
._9_c00151{width:1.001687pt;}
._2_c00151{width:2.800822pt;}
._10_c00151{width:4.451708pt;}
._b_c00151{width:5.414577pt;}
._a_c00151{width:6.359099pt;}
._c_c00151{width:7.301493pt;}
._e_c00151{width:10.333918pt;}
._f_c00151{width:11.235780pt;}
._5_c00151{width:14.012559pt;}
._6_c00151{width:15.422944pt;}
._d_c00151{width:17.413182pt;}
._3_c00151{width:21.982827pt;}
._4_c00151{width:22.964147pt;}
._12_c00151{width:89.919765pt;}
._11_c00151{width:123.397872pt;}
._0_c00151{width:2010.162299pt;}
.fs0_c00151{font-size:58.880000pt;}
.fs1_c00151{font-size:59.008000pt;}
.fs2_c00151{font-size:70.400000pt;}
.y0_c00151{bottom:0.000000pt;}
.y1a_c00151{bottom:7.040000pt;}
.y17_c00151{bottom:7.066667pt;}
.y28_c00151{bottom:7.133200pt;}
.y14_c00151{bottom:7.133333pt;}
.y1d_c00151{bottom:7.173333pt;}
.y26_c00151{bottom:7.200000pt;}
.y2a_c00151{bottom:15.333333pt;}
.y19_c00151{bottom:23.840000pt;}
.y16_c00151{bottom:23.866667pt;}
.y13_c00151{bottom:23.933333pt;}
.y1c_c00151{bottom:23.973333pt;}
.y25_c00151{bottom:24.000000pt;}
.y11_c00151{bottom:43.866667pt;}
.yf_c00151{bottom:91.040400pt;}
.ye_c00151{bottom:109.760133pt;}
.yd_c00151{bottom:128.512267pt;}
.yc_c00151{bottom:147.066933pt;}
.yb_c00151{bottom:165.786667pt;}
.ya_c00151{bottom:184.506933pt;}
.y9_c00151{bottom:203.066800pt;}
.y8_c00151{bottom:221.786533pt;}
.y7_c00151{bottom:240.506800pt;}
.y1e_c00151{bottom:248.133333pt;}
.y6_c00151{bottom:259.066667pt;}
.y5_c00151{bottom:277.786400pt;}
.y1f_c00151{bottom:289.693200pt;}
.y4_c00151{bottom:296.506667pt;}
.y3_c00151{bottom:323.066667pt;}
.y2_c00151{bottom:357.826667pt;}
.y10_c00151{bottom:397.280000pt;}
.y22_c00151{bottom:414.373333pt;}
.y23_c00151{bottom:455.933733pt;}
.y12_c00151{bottom:463.680000pt;}
.y15_c00151{bottom:505.280000pt;}
.y18_c00151{bottom:546.880000pt;}
.y29_c00151{bottom:585.146667pt;}
.y1b_c00151{bottom:588.320000pt;}
.y20_c00151{bottom:713.120000pt;}
.y21_c00151{bottom:754.560000pt;}
.y24_c00151{bottom:879.200000pt;}
.y27_c00151{bottom:920.800000pt;}
.y1_c00151{bottom:1044.160000pt;}
.h6_c00151{height:41.600000pt;}
.h4_c00151{height:41.759867pt;}
.h7_c00151{height:41.760400pt;}
.h2_c00151{height:50.628750pt;}
.h5_c00151{height:50.738813pt;}
.h8_c00151{height:60.534375pt;}
.h3_c00151{height:611.680000pt;}
.h1_c00151{height:1122.666667pt;}
.h0_c00151{height:1122.720000pt;}
.w2_c00151{width:604.640000pt;}
.w1_c00151{width:794.000000pt;}
.w0_c00151{width:794.080000pt;}
.x0_c00151{left:0.000000pt;}
.x9_c00151{left:8.736040pt;}
.x4_c00151{left:10.528133pt;}
.x8_c00151{left:11.967733pt;}
.xe_c00151{left:15.231733pt;}
.x6_c00151{left:16.831733pt;}
.xc_c00151{left:27.386533pt;}
.xa_c00151{left:30.626533pt;}
.x10_c00151{left:101.279867pt;}
.x1_c00151{left:113.471867pt;}
.x7_c00151{left:130.306827pt;}
.x2_c00151{left:132.352133pt;}
.xd_c00151{left:135.586587pt;}
.xb_c00151{left:137.212987pt;}
.x5_c00151{left:139.999973pt;}
.xf_c00151{left:166.053200pt;}
.x3_c00151{left:279.906533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ceb08a81337bd3532ab09550.woff2')format("woff");}.ff1_c00152{font-family:ff1_c00152;line-height:1.070312;font-style:normal;font-weight:normal;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_3bdfb63d62e4409fae9b870d.woff2')format("woff");}.ff2_c00152{font-family:ff2_c00152;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00152{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00152{transform:matrix(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_c00152{vertical-align:0.000000px;}
.ls1_c00152{letter-spacing:-16.560000px;}
.ls0_c00152{letter-spacing:0.000000px;}
.sc__c00152{text-shadow:none;}
.sc0_c00152{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00152{-webkit-text-stroke:0px transparent;}
.sc0_c00152{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00152{word-spacing:-15.012000px;}
.ws4_c00152{word-spacing:0.000000px;}
.ws1_c00152{word-spacing:12.850080px;}
.ws3_c00152{word-spacing:96.381338px;}
.ws2_c00152{word-spacing:153.398592px;}
._17_c00152{margin-left:-7.366186px;}
._18_c00152{margin-left:-4.405319px;}
._b_c00152{margin-left:-3.378661px;}
._7_c00152{margin-left:-2.244997px;}
._1_c00152{margin-left:-1.127013px;}
._8_c00152{width:1.013679px;}
._3_c00152{width:2.054009px;}
._2_c00152{width:3.112644px;}
._a_c00152{width:4.243419px;}
._9_c00152{width:5.429442px;}
._5_c00152{width:6.556965px;}
._6_c00152{width:7.688110px;}
._e_c00152{width:11.591116px;}
._10_c00152{width:12.651798px;}
._f_c00152{width:13.685745px;}
._11_c00152{width:17.242869px;}
._13_c00152{width:20.204249px;}
._14_c00152{width:22.072163px;}
._12_c00152{width:23.251011px;}
._c_c00152{width:24.344514px;}
._d_c00152{width:26.248770px;}
._4_c00152{width:43.386763px;}
._16_c00152{width:189.834234px;}
._15_c00152{width:208.541570px;}
._0_c00152{width:2261.432586px;}
.fc1_c00152{color:rgb(89,89,89);}
.fc0_c00152{color:rgb(0,0,0);}
.fs1_c00152{font-size:54.000000px;}
.fs0_c00152{font-size:66.240000px;}
.fs2_c00152{font-size:66.384000px;}
.fs3_c00152{font-size:79.200000px;}
.y0_c00152{bottom:0.000000px;}
.y26_c00152{bottom:17.205000px;}
.y1d_c00152{bottom:49.320000px;}
.y1e_c00152{bottom:89.490150px;}
.y1b_c00152{bottom:104.580000px;}
.y1a_c00152{bottom:125.640300px;}
.y1f_c00152{bottom:130.529850px;}
.y19_c00152{bottom:146.555850px;}
.y20_c00152{bottom:171.570150px;}
.y18_c00152{bottom:176.610150px;}
.y17_c00152{bottom:197.670450px;}
.y21_c00152{bottom:212.610450px;}
.y16_c00152{bottom:218.550300px;}
.y15_c00152{bottom:239.610000px;}
.y22_c00152{bottom:253.650150px;}
.y14_c00152{bottom:260.670300px;}
.y13_c00152{bottom:281.550150px;}
.y23_c00152{bottom:294.660450px;}
.y12_c00152{bottom:302.609850px;}
.y11_c00152{bottom:323.670150px;}
.y24_c00152{bottom:335.700150px;}
.y10_c00152{bottom:344.550000px;}
.yf_c00152{bottom:365.609700px;}
.y25_c00152{bottom:384.450150px;}
.ye_c00152{bottom:386.670000px;}
.yd_c00152{bottom:407.595000px;}
.yc_c00152{bottom:437.655000px;}
.yb_c00152{bottom:467.715000px;}
.ya_c00152{bottom:506.595000px;}
.y1c_c00152{bottom:552.600000px;}
.y9_c00152{bottom:971.610000px;}
.y8_c00152{bottom:992.670300px;}
.y7_c00152{bottom:1013.550150px;}
.y6_c00152{bottom:1034.609850px;}
.y5_c00152{bottom:1055.670150px;}
.y4_c00152{bottom:1076.550000px;}
.y3_c00152{bottom:1097.609700px;}
.y2_c00152{bottom:1118.670000px;}
.y1_c00152{bottom:1174.680000px;}
.h2_c00152{height:56.957344px;}
.h4_c00152{height:57.081164px;}
.h5_c00152{height:68.101172px;}
.h3_c00152{height:414.360000px;}
.h1_c00152{height:1263.000000px;}
.h0_c00152{height:1263.060000px;}
.w2_c00152{width:680.220000px;}
.w1_c00152{width:893.250000px;}
.w0_c00152{width:893.340000px;}
.x0_c00152{left:0.000000px;}
.x6_c00152{left:9.900030px;}
.x4_c00152{left:34.739700px;}
.x5_c00152{left:41.144580px;}
.x8_c00152{left:43.889685px;}
.xa_c00152{left:47.519685px;}
.x7_c00152{left:54.000030px;}
.x9_c00152{left:64.079985px;}
.xc_c00152{left:113.969700px;}
.x1_c00152{left:127.655850px;}
.xb_c00152{left:137.879985px;}
.x2_c00152{left:148.896150px;}
.x3_c00152{left:227.849700px;}
@media print{
.v0_c00152{vertical-align:0.000000pt;}
.ls1_c00152{letter-spacing:-14.720000pt;}
.ls0_c00152{letter-spacing:0.000000pt;}
.ws0_c00152{word-spacing:-13.344000pt;}
.ws4_c00152{word-spacing:0.000000pt;}
.ws1_c00152{word-spacing:11.422293pt;}
.ws3_c00152{word-spacing:85.672301pt;}
.ws2_c00152{word-spacing:136.354304pt;}
._17_c00152{margin-left:-6.547721pt;}
._18_c00152{margin-left:-3.915839pt;}
._b_c00152{margin-left:-3.003254pt;}
._7_c00152{margin-left:-1.995553pt;}
._1_c00152{margin-left:-1.001789pt;}
._8_c00152{width:0.901048pt;}
._3_c00152{width:1.825786pt;}
._2_c00152{width:2.766795pt;}
._a_c00152{width:3.771928pt;}
._9_c00152{width:4.826171pt;}
._5_c00152{width:5.828413pt;}
._6_c00152{width:6.833875pt;}
._e_c00152{width:10.303214pt;}
._10_c00152{width:11.246043pt;}
._f_c00152{width:12.165107pt;}
._11_c00152{width:15.326995pt;}
._13_c00152{width:17.959332pt;}
._14_c00152{width:19.619700pt;}
._12_c00152{width:20.667565pt;}
._c_c00152{width:21.639568pt;}
._d_c00152{width:23.332240pt;}
._4_c00152{width:38.566012pt;}
._16_c00152{width:168.741541pt;}
._15_c00152{width:185.370284pt;}
._0_c00152{width:2010.162299pt;}
.fs1_c00152{font-size:48.000000pt;}
.fs0_c00152{font-size:58.880000pt;}
.fs2_c00152{font-size:59.008000pt;}
.fs3_c00152{font-size:70.400000pt;}
.y0_c00152{bottom:0.000000pt;}
.y26_c00152{bottom:15.293333pt;}
.y1d_c00152{bottom:43.840000pt;}
.y1e_c00152{bottom:79.546800pt;}
.y1b_c00152{bottom:92.960000pt;}
.y1a_c00152{bottom:111.680267pt;}
.y1f_c00152{bottom:116.026533pt;}
.y19_c00152{bottom:130.271867pt;}
.y20_c00152{bottom:152.506800pt;}
.y18_c00152{bottom:156.986800pt;}
.y17_c00152{bottom:175.707067pt;}
.y21_c00152{bottom:188.987067pt;}
.y16_c00152{bottom:194.266933pt;}
.y15_c00152{bottom:212.986667pt;}
.y22_c00152{bottom:225.466800pt;}
.y14_c00152{bottom:231.706933pt;}
.y13_c00152{bottom:250.266800pt;}
.y23_c00152{bottom:261.920400pt;}
.y12_c00152{bottom:268.986533pt;}
.y11_c00152{bottom:287.706800pt;}
.y24_c00152{bottom:298.400133pt;}
.y10_c00152{bottom:306.266667pt;}
.yf_c00152{bottom:324.986400pt;}
.y25_c00152{bottom:341.733467pt;}
.ye_c00152{bottom:343.706667pt;}
.yd_c00152{bottom:362.306667pt;}
.yc_c00152{bottom:389.026667pt;}
.yb_c00152{bottom:415.746667pt;}
.ya_c00152{bottom:450.306667pt;}
.y1c_c00152{bottom:491.200000pt;}
.y9_c00152{bottom:863.653333pt;}
.y8_c00152{bottom:882.373600pt;}
.y7_c00152{bottom:900.933467pt;}
.y6_c00152{bottom:919.653200pt;}
.y5_c00152{bottom:938.373467pt;}
.y4_c00152{bottom:956.933333pt;}
.y3_c00152{bottom:975.653067pt;}
.y2_c00152{bottom:994.373333pt;}
.y1_c00152{bottom:1044.160000pt;}
.h2_c00152{height:50.628750pt;}
.h4_c00152{height:50.738813pt;}
.h5_c00152{height:60.534375pt;}
.h3_c00152{height:368.320000pt;}
.h1_c00152{height:1122.666667pt;}
.h0_c00152{height:1122.720000pt;}
.w2_c00152{width:604.640000pt;}
.w1_c00152{width:794.000000pt;}
.w0_c00152{width:794.080000pt;}
.x0_c00152{left:0.000000pt;}
.x6_c00152{left:8.800027pt;}
.x4_c00152{left:30.879733pt;}
.x5_c00152{left:36.572960pt;}
.x8_c00152{left:39.013053pt;}
.xa_c00152{left:42.239720pt;}
.x7_c00152{left:48.000027pt;}
.x9_c00152{left:56.959987pt;}
.xc_c00152{left:101.306400pt;}
.x1_c00152{left:113.471867pt;}
.xb_c00152{left:122.559987pt;}
.x2_c00152{left:132.352133pt;}
.x3_c00152{left:202.533067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2cafabb8a3983bbbad49c095.woff2')format("woff");}.ff1_c00153{font-family:ff1_c00153;line-height:1.070312;font-style:normal;font-weight:normal;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_98f26c56759da20024931c07.woff2')format("woff");}.ff2_c00153{font-family:ff2_c00153;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00153{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00153{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00153{vertical-align:0.000000px;}
.v1_c00153{vertical-align:17.280480px;}
.ls0_c00153{letter-spacing:0.000000px;}
.sc__c00153{text-shadow:none;}
.sc0_c00153{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00153{-webkit-text-stroke:0px transparent;}
.sc0_c00153{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00153{word-spacing:-15.012000px;}
.ws2_c00153{word-spacing:-12.236544px;}
.ws1_c00153{word-spacing:-12.204000px;}
.ws5_c00153{word-spacing:0.000000px;}
.ws4_c00153{word-spacing:78.930000px;}
.ws3_c00153{word-spacing:80.332858px;}
._5_c00153{margin-left:-4.702706px;}
._6_c00153{margin-left:-3.160239px;}
._b_c00153{margin-left:-2.157874px;}
._1_c00153{margin-left:-1.125797px;}
._7_c00153{width:1.125755px;}
._4_c00153{width:3.183347px;}
._a_c00153{width:6.888191px;}
._2_c00153{width:8.146990px;}
._3_c00153{width:9.519732px;}
._8_c00153{width:16.090680px;}
._9_c00153{width:17.228001px;}
._c_c00153{width:110.598000px;}
._0_c00153{width:2261.432586px;}
.fc2_c00153{color:rgb(89,89,89);}
.fc1_c00153{color:rgb(64,64,64);}
.fc0_c00153{color:rgb(0,0,0);}
.fs1_c00153{font-size:54.000000px;}
.fs2_c00153{font-size:54.144000px;}
.fs0_c00153{font-size:66.240000px;}
.fs3_c00153{font-size:84.240000px;}
.y0_c00153{bottom:0.000000px;}
.y26_c00153{bottom:17.535000px;}
.y18_c00153{bottom:17.640000px;}
.y12_c00153{bottom:91.439700px;}
.y1e_c00153{bottom:99.870570px;}
.y20_c00153{bottom:100.410270px;}
.yf_c00153{bottom:107.459700px;}
.y11_c00153{bottom:108.000000px;}
.y1d_c00153{bottom:116.430270px;}
.y1f_c00153{bottom:116.970570px;}
.ye_c00153{bottom:146.376150px;}
.yd_c00153{bottom:167.430000px;}
.y22_c00153{bottom:178.815720px;}
.y21_c00153{bottom:195.405420px;}
.y19_c00153{bottom:213.300000px;}
.y14_c00153{bottom:225.330000px;}
.y1c_c00153{bottom:225.510120px;}
.y16_c00153{bottom:232.050150px;}
.y24_c00153{bottom:232.125570px;}
.y1b_c00153{bottom:237.750300px;}
.y13_c00153{bottom:241.889700px;}
.y15_c00153{bottom:248.655000px;}
.y23_c00153{bottom:248.685270px;}
.y1a_c00153{bottom:254.310000px;}
.y25_c00153{bottom:266.070000px;}
.y17_c00153{bottom:266.190000px;}
.yc_c00153{bottom:532.695600px;}
.yb_c00153{bottom:553.755300px;}
.ya_c00153{bottom:574.635150px;}
.y9_c00153{bottom:595.695450px;}
.y8_c00153{bottom:616.755150px;}
.y7_c00153{bottom:637.635000px;}
.y6_c00153{bottom:667.725000px;}
.y5_c00153{bottom:706.604700px;}
.y4_c00153{bottom:727.665000px;}
.y10_c00153{bottom:773.460000px;}
.y3_c00153{bottom:1097.609700px;}
.y2_c00153{bottom:1118.670000px;}
.y1_c00153{bottom:1174.680000px;}
.h4_c00153{height:38.759766px;}
.h5_c00153{height:38.863125px;}
.h7_c00153{height:56.040246px;}
.h2_c00153{height:56.957344px;}
.h6_c00153{height:60.465234px;}
.h3_c00153{height:297.540000px;}
.h1_c00153{height:1263.000000px;}
.h0_c00153{height:1263.060000px;}
.w2_c00153{width:680.220000px;}
.w1_c00153{width:893.250000px;}
.w0_c00153{width:893.340000px;}
.x0_c00153{left:0.000000px;}
.x14_c00153{left:82.619700px;}
.x15_c00153{left:99.719700px;}
.x9_c00153{left:102.959700px;}
.x1_c00153{left:127.655850px;}
.x3_c00153{left:148.896150px;}
.x6_c00153{left:228.704940px;}
.x2_c00153{left:234.029100px;}
.x7_c00153{left:236.309820px;}
.x13_c00153{left:256.529835px;}
.xa_c00153{left:263.489700px;}
.xf_c00153{left:269.279760px;}
.x10_c00153{left:282.599880px;}
.x11_c00153{left:291.239535px;}
.x12_c00153{left:294.839535px;}
.x8_c00153{left:343.469520px;}
.x4_c00153{left:348.014700px;}
.x5_c00153{left:350.354940px;}
.xb_c00153{left:356.834700px;}
.xe_c00153{left:364.709700px;}
.xc_c00153{left:378.794400px;}
.xd_c00153{left:436.394400px;}
@media print{
.v0_c00153{vertical-align:0.000000pt;}
.v1_c00153{vertical-align:15.360427pt;}
.ls0_c00153{letter-spacing:0.000000pt;}
.ws0_c00153{word-spacing:-13.344000pt;}
.ws2_c00153{word-spacing:-10.876928pt;}
.ws1_c00153{word-spacing:-10.848000pt;}
.ws5_c00153{word-spacing:0.000000pt;}
.ws4_c00153{word-spacing:70.160000pt;}
.ws3_c00153{word-spacing:71.406985pt;}
._5_c00153{margin-left:-4.180183pt;}
._6_c00153{margin-left:-2.809102pt;}
._b_c00153{margin-left:-1.918110pt;}
._1_c00153{margin-left:-1.000709pt;}
._7_c00153{width:1.000671pt;}
._4_c00153{width:2.829642pt;}
._a_c00153{width:6.122836pt;}
._2_c00153{width:7.241769pt;}
._3_c00153{width:8.461984pt;}
._8_c00153{width:14.302827pt;}
._9_c00153{width:15.313779pt;}
._c_c00153{width:98.309333pt;}
._0_c00153{width:2010.162299pt;}
.fs1_c00153{font-size:48.000000pt;}
.fs2_c00153{font-size:48.128000pt;}
.fs0_c00153{font-size:58.880000pt;}
.fs3_c00153{font-size:74.880000pt;}
.y0_c00153{bottom:0.000000pt;}
.y26_c00153{bottom:15.586667pt;}
.y18_c00153{bottom:15.680000pt;}
.y12_c00153{bottom:81.279733pt;}
.y1e_c00153{bottom:88.773840pt;}
.y20_c00153{bottom:89.253573pt;}
.yf_c00153{bottom:95.519733pt;}
.y11_c00153{bottom:96.000000pt;}
.y1d_c00153{bottom:103.493573pt;}
.y1f_c00153{bottom:103.973840pt;}
.ye_c00153{bottom:130.112133pt;}
.yd_c00153{bottom:148.826667pt;}
.y22_c00153{bottom:158.947307pt;}
.y21_c00153{bottom:173.693707pt;}
.y19_c00153{bottom:189.600000pt;}
.y14_c00153{bottom:200.293333pt;}
.y1c_c00153{bottom:200.453440pt;}
.y16_c00153{bottom:206.266800pt;}
.y24_c00153{bottom:206.333840pt;}
.y1b_c00153{bottom:211.333600pt;}
.y13_c00153{bottom:215.013067pt;}
.y15_c00153{bottom:221.026667pt;}
.y23_c00153{bottom:221.053573pt;}
.y1a_c00153{bottom:226.053333pt;}
.y25_c00153{bottom:236.506667pt;}
.y17_c00153{bottom:236.613333pt;}
.yc_c00153{bottom:473.507200pt;}
.yb_c00153{bottom:492.226933pt;}
.ya_c00153{bottom:510.786800pt;}
.y9_c00153{bottom:529.507067pt;}
.y8_c00153{bottom:548.226800pt;}
.y7_c00153{bottom:566.786667pt;}
.y6_c00153{bottom:593.533333pt;}
.y5_c00153{bottom:628.093067pt;}
.y4_c00153{bottom:646.813333pt;}
.y10_c00153{bottom:687.520000pt;}
.y3_c00153{bottom:975.653067pt;}
.y2_c00153{bottom:994.373333pt;}
.y1_c00153{bottom:1044.160000pt;}
.h4_c00153{height:34.453125pt;}
.h5_c00153{height:34.545000pt;}
.h7_c00153{height:49.813552pt;}
.h2_c00153{height:50.628750pt;}
.h6_c00153{height:53.746875pt;}
.h3_c00153{height:264.480000pt;}
.h1_c00153{height:1122.666667pt;}
.h0_c00153{height:1122.720000pt;}
.w2_c00153{width:604.640000pt;}
.w1_c00153{width:794.000000pt;}
.w0_c00153{width:794.080000pt;}
.x0_c00153{left:0.000000pt;}
.x14_c00153{left:73.439733pt;}
.x15_c00153{left:88.639733pt;}
.x9_c00153{left:91.519733pt;}
.x1_c00153{left:113.471867pt;}
.x3_c00153{left:132.352133pt;}
.x6_c00153{left:203.293280pt;}
.x2_c00153{left:208.025867pt;}
.x7_c00153{left:210.053173pt;}
.x13_c00153{left:228.026520pt;}
.xa_c00153{left:234.213067pt;}
.xf_c00153{left:239.359787pt;}
.x10_c00153{left:251.199893pt;}
.x11_c00153{left:258.879587pt;}
.x12_c00153{left:262.079587pt;}
.x8_c00153{left:305.306240pt;}
.x4_c00153{left:309.346400pt;}
.x5_c00153{left:311.426613pt;}
.xb_c00153{left:317.186400pt;}
.xe_c00153{left:324.186400pt;}
.xc_c00153{left:336.706133pt;}
.xd_c00153{left:387.906133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_658d6fadb1b7d64767b0b4d9.woff2')format("woff");}.ff1_c00154{font-family:ff1_c00154;line-height:1.070312;font-style:normal;font-weight:normal;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_b128647e5e70edc63d1cf8aa.woff2')format("woff");}.ff2_c00154{font-family:ff2_c00154;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00154{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00154{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00154{vertical-align:0.000000px;}
.ls0_c00154{letter-spacing:0.000000px;}
.sc__c00154{text-shadow:none;}
.sc0_c00154{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00154{-webkit-text-stroke:0px transparent;}
.sc0_c00154{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00154{word-spacing:-15.012000px;}
.ws1_c00154{word-spacing:-12.204000px;}
.ws4_c00154{word-spacing:0.000000px;}
.ws2_c00154{word-spacing:80.332858px;}
.ws3_c00154{word-spacing:142.710600px;}
._9_c00154{margin-left:-4.702706px;}
._a_c00154{margin-left:-3.512980px;}
._e_c00154{margin-left:-2.251797px;}
._2_c00154{margin-left:-1.187292px;}
._7_c00154{width:1.059250px;}
._8_c00154{width:3.244843px;}
._4_c00154{width:4.837342px;}
._5_c00154{width:6.004084px;}
._6_c00154{width:8.164091px;}
._1_c00154{width:9.173037px;}
._3_c00154{width:10.225689px;}
._b_c00154{width:15.035553px;}
._c_c00154{width:30.924099px;}
._f_c00154{width:110.598000px;}
._d_c00154{width:845.260206px;}
._0_c00154{width:2261.432586px;}
.fc2_c00154{color:rgb(89,89,89);}
.fc1_c00154{color:rgb(64,64,64);}
.fc0_c00154{color:rgb(0,0,0);}
.fs1_c00154{font-size:54.000000px;}
.fs0_c00154{font-size:66.240000px;}
.fs2_c00154{font-size:84.240000px;}
.y0_c00154{bottom:0.000000px;}
.y18_c00154{bottom:17.640000px;}
.y1e_c00154{bottom:88.050567px;}
.y14_c00154{bottom:90.285300px;}
.y11_c00154{bottom:91.440300px;}
.y1d_c00154{bottom:104.610267px;}
.y13_c00154{bottom:106.845000px;}
.y10_c00154{bottom:112.500000px;}
.y20_c00154{bottom:140.190267px;}
.y1f_c00154{bottom:156.750567px;}
.y19_c00154{bottom:158.220000px;}
.y22_c00154{bottom:220.350717px;}
.y1c_c00154{bottom:225.690117px;}
.y16_c00154{bottom:234.330600px;}
.y24_c00154{bottom:236.370867px;}
.y21_c00154{bottom:236.910417px;}
.y1b_c00154{bottom:242.430300px;}
.y15_c00154{bottom:250.890300px;}
.y23_c00154{bottom:252.930567px;}
.y1a_c00154{bottom:258.990000px;}
.y17_c00154{bottom:266.190000px;}
.y25_c00154{bottom:275.190000px;}
.yf_c00154{bottom:475.096200px;}
.ye_c00154{bottom:496.155900px;}
.yd_c00154{bottom:517.035750px;}
.yc_c00154{bottom:538.095450px;}
.yb_c00154{bottom:559.155150px;}
.ya_c00154{bottom:580.035000px;}
.y9_c00154{bottom:610.095000px;}
.y8_c00154{bottom:649.004700px;}
.y7_c00154{bottom:670.065000px;}
.y12_c00154{bottom:715.860000px;}
.y6_c00154{bottom:1034.609850px;}
.y5_c00154{bottom:1055.670150px;}
.y4_c00154{bottom:1076.550000px;}
.y3_c00154{bottom:1097.609700px;}
.y2_c00154{bottom:1118.670000px;}
.y1_c00154{bottom:1174.680000px;}
.h5_c00154{height:38.759766px;}
.h2_c00154{height:56.957344px;}
.h3_c00154{height:56.957944px;}
.h6_c00154{height:60.465234px;}
.h4_c00154{height:297.540000px;}
.h7_c00154{height:297.720000px;}
.h1_c00154{height:1263.000000px;}
.h0_c00154{height:1263.060000px;}
.w2_c00154{width:680.220000px;}
.w1_c00154{width:893.250000px;}
.w0_c00154{width:893.340000px;}
.x0_c00154{left:0.000000px;}
.x15_c00154{left:75.749700px;}
.x16_c00154{left:99.719700px;}
.x8_c00154{left:122.399700px;}
.x1_c00154{left:127.655850px;}
.x2_c00154{left:148.888050px;}
.x11_c00154{left:186.554595px;}
.x12_c00154{left:193.574715px;}
.x3_c00154{left:234.029100px;}
.xf_c00154{left:235.874760px;}
.x13_c00154{left:246.629565px;}
.x10_c00154{left:249.194295px;}
.x9_c00154{left:263.489700px;}
.x14_c00154{left:268.769265px;}
.x6_c00154{left:298.469640px;}
.x7_c00154{left:309.450105px;}
.xd_c00154{left:339.479700px;}
.x4_c00154{left:342.389700px;}
.x5_c00154{left:344.729940px;}
.xa_c00154{left:352.049700px;}
.xe_c00154{left:354.239460px;}
.xb_c00154{left:374.039400px;}
.xc_c00154{left:447.584550px;}
@media print{
.v0_c00154{vertical-align:0.000000pt;}
.ls0_c00154{letter-spacing:0.000000pt;}
.ws0_c00154{word-spacing:-13.344000pt;}
.ws1_c00154{word-spacing:-10.848000pt;}
.ws4_c00154{word-spacing:0.000000pt;}
.ws2_c00154{word-spacing:71.406985pt;}
.ws3_c00154{word-spacing:126.853867pt;}
._9_c00154{margin-left:-4.180183pt;}
._a_c00154{margin-left:-3.122649pt;}
._e_c00154{margin-left:-2.001598pt;}
._2_c00154{margin-left:-1.055371pt;}
._7_c00154{width:0.941555pt;}
._8_c00154{width:2.884305pt;}
._4_c00154{width:4.299860pt;}
._5_c00154{width:5.336963pt;}
._6_c00154{width:7.256970pt;}
._1_c00154{width:8.153811pt;}
._3_c00154{width:9.089501pt;}
._b_c00154{width:13.364936pt;}
._c_c00154{width:27.488088pt;}
._f_c00154{width:98.309333pt;}
._d_c00154{width:751.342405pt;}
._0_c00154{width:2010.162299pt;}
.fs1_c00154{font-size:48.000000pt;}
.fs0_c00154{font-size:58.880000pt;}
.fs2_c00154{font-size:74.880000pt;}
.y0_c00154{bottom:0.000000pt;}
.y18_c00154{bottom:15.680000pt;}
.y1e_c00154{bottom:78.267171pt;}
.y14_c00154{bottom:80.253600pt;}
.y11_c00154{bottom:81.280267pt;}
.y1d_c00154{bottom:92.986904pt;}
.y13_c00154{bottom:94.973333pt;}
.y10_c00154{bottom:100.000000pt;}
.y20_c00154{bottom:124.613571pt;}
.y1f_c00154{bottom:139.333837pt;}
.y19_c00154{bottom:140.640000pt;}
.y22_c00154{bottom:195.867304pt;}
.y1c_c00154{bottom:200.613437pt;}
.y16_c00154{bottom:208.293867pt;}
.y24_c00154{bottom:210.107437pt;}
.y21_c00154{bottom:210.587037pt;}
.y1b_c00154{bottom:215.493600pt;}
.y15_c00154{bottom:223.013600pt;}
.y23_c00154{bottom:224.827171pt;}
.y1a_c00154{bottom:230.213333pt;}
.y17_c00154{bottom:236.613333pt;}
.y25_c00154{bottom:244.613333pt;}
.yf_c00154{bottom:422.307733pt;}
.ye_c00154{bottom:441.027467pt;}
.yd_c00154{bottom:459.587333pt;}
.yc_c00154{bottom:478.307067pt;}
.yb_c00154{bottom:497.026800pt;}
.ya_c00154{bottom:515.586667pt;}
.y9_c00154{bottom:542.306667pt;}
.y8_c00154{bottom:576.893067pt;}
.y7_c00154{bottom:595.613333pt;}
.y12_c00154{bottom:636.320000pt;}
.y6_c00154{bottom:919.653200pt;}
.y5_c00154{bottom:938.373467pt;}
.y4_c00154{bottom:956.933333pt;}
.y3_c00154{bottom:975.653067pt;}
.y2_c00154{bottom:994.373333pt;}
.y1_c00154{bottom:1044.160000pt;}
.h5_c00154{height:34.453125pt;}
.h2_c00154{height:50.628750pt;}
.h3_c00154{height:50.629283pt;}
.h6_c00154{height:53.746875pt;}
.h4_c00154{height:264.480000pt;}
.h7_c00154{height:264.640000pt;}
.h1_c00154{height:1122.666667pt;}
.h0_c00154{height:1122.720000pt;}
.w2_c00154{width:604.640000pt;}
.w1_c00154{width:794.000000pt;}
.w0_c00154{width:794.080000pt;}
.x0_c00154{left:0.000000pt;}
.x15_c00154{left:67.333067pt;}
.x16_c00154{left:88.639733pt;}
.x8_c00154{left:108.799733pt;}
.x1_c00154{left:113.471867pt;}
.x2_c00154{left:132.344933pt;}
.x11_c00154{left:165.826307pt;}
.x12_c00154{left:172.066413pt;}
.x3_c00154{left:208.025867pt;}
.xf_c00154{left:209.666453pt;}
.x13_c00154{left:219.226280pt;}
.x10_c00154{left:221.506040pt;}
.x9_c00154{left:234.213067pt;}
.x14_c00154{left:238.906013pt;}
.x6_c00154{left:265.306347pt;}
.x7_c00154{left:275.066760pt;}
.xd_c00154{left:301.759733pt;}
.x4_c00154{left:304.346400pt;}
.x5_c00154{left:306.426613pt;}
.xa_c00154{left:312.933067pt;}
.xe_c00154{left:314.879520pt;}
.xb_c00154{left:332.479467pt;}
.xc_c00154{left:397.852933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d722f3f22dca841e9f77d63e.woff2')format("woff");}.ff1_c00155{font-family:ff1_c00155;line-height:1.070312;font-style:normal;font-weight:normal;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_bac385b6579d92bb5738b06a.woff2')format("woff");}.ff2_c00155{font-family:ff2_c00155;line-height:0.895996;font-style: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);}
.m1_c00155{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_c00155{vertical-align:0.000000px;}
.ls0_c00155{letter-spacing:0.000000px;}
.sc__c00155{text-shadow:none;}
.sc0_c00155{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00155{-webkit-text-stroke:0px transparent;}
.sc0_c00155{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00155{word-spacing:-15.012000px;}
.ws1_c00155{word-spacing:-12.204000px;}
.ws3_c00155{word-spacing:0.000000px;}
.ws2_c00155{word-spacing:80.319182px;}
._6_c00155{margin-left:-2.448903px;}
._2_c00155{margin-left:-1.093374px;}
._4_c00155{width:1.029138px;}
._5_c00155{width:2.187404px;}
._7_c00155{width:4.077220px;}
._a_c00155{width:6.225704px;}
._8_c00155{width:8.677271px;}
._9_c00155{width:9.873531px;}
._e_c00155{width:11.026511px;}
._1_c00155{width:25.444680px;}
._3_c00155{width:26.568548px;}
._b_c00155{width:31.263538px;}
._d_c00155{width:33.250978px;}
._c_c00155{width:34.346963px;}
._10_c00155{width:110.598000px;}
._f_c00155{width:845.383847px;}
._0_c00155{width:2261.432586px;}
.fc2_c00155{color:rgb(89,89,89);}
.fc1_c00155{color:rgb(64,64,64);}
.fc0_c00155{color:rgb(0,0,0);}
.fs1_c00155{font-size:54.000000px;}
.fs3_c00155{font-size:54.144000px;}
.fs0_c00155{font-size:66.240000px;}
.fs2_c00155{font-size:84.240000px;}
.y0_c00155{bottom:0.000000px;}
.y27_c00155{bottom:17.535000px;}
.y18_c00155{bottom:17.640000px;}
.y1f_c00155{bottom:50.220150px;}
.y1e_c00155{bottom:66.779850px;}
.y12_c00155{bottom:73.409700px;}
.y11_c00155{bottom:89.970000px;}
.y21_c00155{bottom:126.209850px;}
.y1d_c00155{bottom:126.720150px;}
.yf_c00155{bottom:129.240300px;}
.y20_c00155{bottom:142.770150px;}
.y1c_c00155{bottom:143.279850px;}
.ye_c00155{bottom:150.330000px;}
.y19_c00155{bottom:196.200000px;}
.y23_c00155{bottom:210.675150px;}
.y25_c00155{bottom:224.640450px;}
.y22_c00155{bottom:227.234850px;}
.y1b_c00155{bottom:229.034700px;}
.y16_c00155{bottom:238.290150px;}
.y14_c00155{bottom:239.295000px;}
.y24_c00155{bottom:241.200150px;}
.y1a_c00155{bottom:245.625000px;}
.y15_c00155{bottom:254.849850px;}
.y13_c00155{bottom:255.854700px;}
.y26_c00155{bottom:266.070000px;}
.y17_c00155{bottom:270.690000px;}
.yd_c00155{bottom:517.934850px;}
.yc_c00155{bottom:538.995150px;}
.yb_c00155{bottom:559.875000px;}
.ya_c00155{bottom:580.934700px;}
.y9_c00155{bottom:601.995150px;}
.y8_c00155{bottom:622.875000px;}
.y7_c00155{bottom:652.965000px;}
.y6_c00155{bottom:691.845300px;}
.y5_c00155{bottom:712.905000px;}
.y10_c00155{bottom:758.700000px;}
.y4_c00155{bottom:1076.550000px;}
.y3_c00155{bottom:1097.609700px;}
.y2_c00155{bottom:1118.670000px;}
.y1_c00155{bottom:1174.680000px;}
.h4_c00155{height:38.759766px;}
.h6_c00155{height:38.863125px;}
.h2_c00155{height:56.957344px;}
.h5_c00155{height:60.465234px;}
.h3_c00155{height:297.540000px;}
.h1_c00155{height:1263.000000px;}
.h0_c00155{height:1263.060000px;}
.w2_c00155{width:680.220000px;}
.w1_c00155{width:893.250000px;}
.w0_c00155{width:893.340000px;}
.x0_c00155{left:0.000000px;}
.x16_c00155{left:88.019700px;}
.x17_c00155{left:99.719700px;}
.x1_c00155{left:127.655850px;}
.xa_c00155{left:135.464700px;}
.x2_c00155{left:148.896150px;}
.x12_c00155{left:205.844475px;}
.x13_c00155{left:212.864595px;}
.x3_c00155{left:234.030600px;}
.x14_c00155{left:237.524895px;}
.x6_c00155{left:252.689640px;}
.x15_c00155{left:259.664595px;}
.x7_c00155{left:263.669520px;}
.x11_c00155{left:266.789625px;}
.x4_c00155{left:292.889700px;}
.x5_c00155{left:295.229940px;}
.xf_c00155{left:304.379850px;}
.x10_c00155{left:319.169505px;}
.xd_c00155{left:349.950000px;}
.xe_c00155{left:358.050000px;}
.xb_c00155{left:368.489700px;}
.xc_c00155{left:390.494550px;}
.x8_c00155{left:395.609820px;}
.x9_c00155{left:399.569580px;}
@media print{
.v0_c00155{vertical-align:0.000000pt;}
.ls0_c00155{letter-spacing:0.000000pt;}
.ws0_c00155{word-spacing:-13.344000pt;}
.ws1_c00155{word-spacing:-10.848000pt;}
.ws3_c00155{word-spacing:0.000000pt;}
.ws2_c00155{word-spacing:71.394828pt;}
._6_c00155{margin-left:-2.176802pt;}
._2_c00155{margin-left:-0.971888pt;}
._4_c00155{width:0.914790pt;}
._5_c00155{width:1.944359pt;}
._7_c00155{width:3.624195pt;}
._a_c00155{width:5.533959pt;}
._8_c00155{width:7.713130pt;}
._9_c00155{width:8.776472pt;}
._e_c00155{width:9.801343pt;}
._1_c00155{width:22.617493pt;}
._3_c00155{width:23.616487pt;}
._b_c00155{width:27.789811pt;}
._d_c00155{width:29.556425pt;}
._c_c00155{width:30.530634pt;}
._10_c00155{width:98.309333pt;}
._f_c00155{width:751.452308pt;}
._0_c00155{width:2010.162299pt;}
.fs1_c00155{font-size:48.000000pt;}
.fs3_c00155{font-size:48.128000pt;}
.fs0_c00155{font-size:58.880000pt;}
.fs2_c00155{font-size:74.880000pt;}
.y0_c00155{bottom:0.000000pt;}
.y27_c00155{bottom:15.586667pt;}
.y18_c00155{bottom:15.680000pt;}
.y1f_c00155{bottom:44.640133pt;}
.y1e_c00155{bottom:59.359867pt;}
.y12_c00155{bottom:65.253067pt;}
.y11_c00155{bottom:79.973333pt;}
.y21_c00155{bottom:112.186533pt;}
.y1d_c00155{bottom:112.640133pt;}
.yf_c00155{bottom:114.880267pt;}
.y20_c00155{bottom:126.906800pt;}
.y1c_c00155{bottom:127.359867pt;}
.ye_c00155{bottom:133.626667pt;}
.y19_c00155{bottom:174.400000pt;}
.y23_c00155{bottom:187.266800pt;}
.y25_c00155{bottom:199.680400pt;}
.y22_c00155{bottom:201.986533pt;}
.y1b_c00155{bottom:203.586400pt;}
.y16_c00155{bottom:211.813467pt;}
.y14_c00155{bottom:212.706667pt;}
.y24_c00155{bottom:214.400133pt;}
.y1a_c00155{bottom:218.333333pt;}
.y15_c00155{bottom:226.533200pt;}
.y13_c00155{bottom:227.426400pt;}
.y26_c00155{bottom:236.506667pt;}
.y17_c00155{bottom:240.613333pt;}
.yd_c00155{bottom:460.386533pt;}
.yc_c00155{bottom:479.106800pt;}
.yb_c00155{bottom:497.666667pt;}
.ya_c00155{bottom:516.386400pt;}
.y9_c00155{bottom:535.106800pt;}
.y8_c00155{bottom:553.666667pt;}
.y7_c00155{bottom:580.413333pt;}
.y6_c00155{bottom:614.973600pt;}
.y5_c00155{bottom:633.693333pt;}
.y10_c00155{bottom:674.400000pt;}
.y4_c00155{bottom:956.933333pt;}
.y3_c00155{bottom:975.653067pt;}
.y2_c00155{bottom:994.373333pt;}
.y1_c00155{bottom:1044.160000pt;}
.h4_c00155{height:34.453125pt;}
.h6_c00155{height:34.545000pt;}
.h2_c00155{height:50.628750pt;}
.h5_c00155{height:53.746875pt;}
.h3_c00155{height:264.480000pt;}
.h1_c00155{height:1122.666667pt;}
.h0_c00155{height:1122.720000pt;}
.w2_c00155{width:604.640000pt;}
.w1_c00155{width:794.000000pt;}
.w0_c00155{width:794.080000pt;}
.x0_c00155{left:0.000000pt;}
.x16_c00155{left:78.239733pt;}
.x17_c00155{left:88.639733pt;}
.x1_c00155{left:113.471867pt;}
.xa_c00155{left:120.413067pt;}
.x2_c00155{left:132.352133pt;}
.x12_c00155{left:182.972867pt;}
.x13_c00155{left:189.212973pt;}
.x3_c00155{left:208.027200pt;}
.x14_c00155{left:211.133240pt;}
.x6_c00155{left:224.613013pt;}
.x15_c00155{left:230.812973pt;}
.x7_c00155{left:234.372907pt;}
.x11_c00155{left:237.146333pt;}
.x4_c00155{left:260.346400pt;}
.x5_c00155{left:262.426613pt;}
.xf_c00155{left:270.559867pt;}
.x10_c00155{left:283.706227pt;}
.xd_c00155{left:311.066667pt;}
.xe_c00155{left:318.266667pt;}
.xb_c00155{left:327.546400pt;}
.xc_c00155{left:347.106267pt;}
.x8_c00155{left:351.653173pt;}
.x9_c00155{left:355.172960pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6c43dd302dcc214e398d67c9.woff2')format("woff");}.ff1_c00156{font-family:ff1_c00156;line-height:1.070312;font-style:normal;font-weight:normal;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_437cd984644b771ff50db04f.woff2')format("woff");}.ff2_c00156{font-family:ff2_c00156;line-height:0.895996;font-style: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);}
.m1_c00156{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_c00156{vertical-align:0.000000px;}
.ls0_c00156{letter-spacing:0.000000px;}
.sc__c00156{text-shadow:none;}
.sc0_c00156{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00156{-webkit-text-stroke:0px transparent;}
.sc0_c00156{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00156{word-spacing:-15.012000px;}
.ws1_c00156{word-spacing:-12.204000px;}
.ws3_c00156{word-spacing:0.000000px;}
.ws2_c00156{word-spacing:80.332858px;}
._a_c00156{margin-left:-5.034451px;}
._b_c00156{margin-left:-3.709382px;}
._2_c00156{margin-left:-1.392042px;}
._8_c00156{width:1.003674px;}
._4_c00156{width:2.449814px;}
._5_c00156{width:4.214351px;}
._9_c00156{width:19.938191px;}
._6_c00156{width:21.329612px;}
._7_c00156{width:22.698689px;}
._1_c00156{width:24.640859px;}
._3_c00156{width:25.770265px;}
._d_c00156{width:110.598000px;}
._c_c00156{width:845.682514px;}
._0_c00156{width:2261.432586px;}
.fc2_c00156{color:rgb(89,89,89);}
.fc1_c00156{color:rgb(64,64,64);}
.fc0_c00156{color:rgb(0,0,0);}
.fs1_c00156{font-size:54.000000px;}
.fs3_c00156{font-size:54.144000px;}
.fs0_c00156{font-size:66.240000px;}
.fs2_c00156{font-size:84.240000px;}
.y0_c00156{bottom:0.000000px;}
.y28_c00156{bottom:17.610000px;}
.y19_c00156{bottom:17.640000px;}
.y13_c00156{bottom:65.549700px;}
.y20_c00156{bottom:76.680150px;}
.y12_c00156{bottom:82.110000px;}
.y1f_c00156{bottom:93.239850px;}
.y1e_c00156{bottom:96.839850px;}
.y10_c00156{bottom:104.759850px;}
.y1d_c00156{bottom:113.400150px;}
.yf_c00156{bottom:125.820150px;}
.y22_c00156{bottom:145.410150px;}
.y21_c00156{bottom:161.969850px;}
.y1a_c00156{bottom:171.540000px;}
.y24_c00156{bottom:216.465150px;}
.y17_c00156{bottom:227.730000px;}
.y1c_c00156{bottom:228.344700px;}
.y15_c00156{bottom:228.674400px;}
.y26_c00156{bottom:229.140150px;}
.y23_c00156{bottom:233.025450px;}
.y16_c00156{bottom:244.289700px;}
.y1b_c00156{bottom:244.905000px;}
.y14_c00156{bottom:245.234700px;}
.y25_c00156{bottom:245.700450px;}
.y27_c00156{bottom:266.145000px;}
.y18_c00156{bottom:266.190000px;}
.ye_c00156{bottom:493.095600px;}
.yd_c00156{bottom:514.155300px;}
.yc_c00156{bottom:535.035150px;}
.yb_c00156{bottom:556.095450px;}
.ya_c00156{bottom:577.155150px;}
.y9_c00156{bottom:598.035000px;}
.y8_c00156{bottom:628.095000px;}
.y7_c00156{bottom:667.004700px;}
.y6_c00156{bottom:688.065000px;}
.y11_c00156{bottom:733.860000px;}
.y5_c00156{bottom:1055.670000px;}
.y4_c00156{bottom:1076.550000px;}
.y3_c00156{bottom:1097.609700px;}
.y2_c00156{bottom:1118.670000px;}
.y1_c00156{bottom:1174.680000px;}
.h4_c00156{height:38.759766px;}
.h6_c00156{height:38.863125px;}
.h2_c00156{height:56.957344px;}
.h5_c00156{height:60.465234px;}
.h3_c00156{height:297.540000px;}
.h1_c00156{height:1263.000000px;}
.h0_c00156{height:1263.060000px;}
.w2_c00156{width:680.220000px;}
.w1_c00156{width:893.250000px;}
.w0_c00156{width:893.340000px;}
.x0_c00156{left:0.000000px;}
.x16_c00156{left:88.199700px;}
.x17_c00156{left:99.719700px;}
.x1_c00156{left:127.655850px;}
.xa_c00156{left:134.744850px;}
.x2_c00156{left:148.896150px;}
.x13_c00156{left:155.879865px;}
.x14_c00156{left:162.899985px;}
.x3_c00156{left:234.029100px;}
.x15_c00156{left:239.549985px;}
.x11_c00156{left:261.359745px;}
.xb_c00156{left:263.414850px;}
.x12_c00156{left:274.679865px;}
.x10_c00156{left:277.994550px;}
.x6_c00156{left:280.874967px;}
.x7_c00156{left:291.854847px;}
.x5_c00156{left:305.999967px;}
.x4_c00156{left:307.079850px;}
.xe_c00156{left:337.934850px;}
.xf_c00156{left:346.034850px;}
.xc_c00156{left:401.039700px;}
.x8_c00156{left:414.389547px;}
.x9_c00156{left:418.349892px;}
.xd_c00156{left:419.580000px;}
@media print{
.v0_c00156{vertical-align:0.000000pt;}
.ls0_c00156{letter-spacing:0.000000pt;}
.ws0_c00156{word-spacing:-13.344000pt;}
.ws1_c00156{word-spacing:-10.848000pt;}
.ws3_c00156{word-spacing:0.000000pt;}
.ws2_c00156{word-spacing:71.406985pt;}
._a_c00156{margin-left:-4.475068pt;}
._b_c00156{margin-left:-3.297229pt;}
._2_c00156{margin-left:-1.237370pt;}
._8_c00156{width:0.892154pt;}
._4_c00156{width:2.177612pt;}
._5_c00156{width:3.746090pt;}
._9_c00156{width:17.722836pt;}
._6_c00156{width:18.959655pt;}
._7_c00156{width:20.176613pt;}
._1_c00156{width:21.902986pt;}
._3_c00156{width:22.906902pt;}
._d_c00156{width:98.309333pt;}
._c_c00156{width:751.717790pt;}
._0_c00156{width:2010.162299pt;}
.fs1_c00156{font-size:48.000000pt;}
.fs3_c00156{font-size:48.128000pt;}
.fs0_c00156{font-size:58.880000pt;}
.fs2_c00156{font-size:74.880000pt;}
.y0_c00156{bottom:0.000000pt;}
.y28_c00156{bottom:15.653333pt;}
.y19_c00156{bottom:15.680000pt;}
.y13_c00156{bottom:58.266400pt;}
.y20_c00156{bottom:68.160133pt;}
.y12_c00156{bottom:72.986667pt;}
.y1f_c00156{bottom:82.879867pt;}
.y1e_c00156{bottom:86.079867pt;}
.y10_c00156{bottom:93.119867pt;}
.y1d_c00156{bottom:100.800133pt;}
.yf_c00156{bottom:111.840133pt;}
.y22_c00156{bottom:129.253467pt;}
.y21_c00156{bottom:143.973200pt;}
.y1a_c00156{bottom:152.480000pt;}
.y24_c00156{bottom:192.413467pt;}
.y17_c00156{bottom:202.426667pt;}
.y1c_c00156{bottom:202.973067pt;}
.y15_c00156{bottom:203.266133pt;}
.y26_c00156{bottom:203.680133pt;}
.y23_c00156{bottom:207.133733pt;}
.y16_c00156{bottom:217.146400pt;}
.y1b_c00156{bottom:217.693333pt;}
.y14_c00156{bottom:217.986400pt;}
.y25_c00156{bottom:218.400400pt;}
.y27_c00156{bottom:236.573333pt;}
.y18_c00156{bottom:236.613333pt;}
.ye_c00156{bottom:438.307200pt;}
.yd_c00156{bottom:457.026933pt;}
.yc_c00156{bottom:475.586800pt;}
.yb_c00156{bottom:494.307067pt;}
.ya_c00156{bottom:513.026800pt;}
.y9_c00156{bottom:531.586667pt;}
.y8_c00156{bottom:558.306667pt;}
.y7_c00156{bottom:592.893067pt;}
.y6_c00156{bottom:611.613333pt;}
.y11_c00156{bottom:652.320000pt;}
.y5_c00156{bottom:938.373333pt;}
.y4_c00156{bottom:956.933333pt;}
.y3_c00156{bottom:975.653067pt;}
.y2_c00156{bottom:994.373333pt;}
.y1_c00156{bottom:1044.160000pt;}
.h4_c00156{height:34.453125pt;}
.h6_c00156{height:34.545000pt;}
.h2_c00156{height:50.628750pt;}
.h5_c00156{height:53.746875pt;}
.h3_c00156{height:264.480000pt;}
.h1_c00156{height:1122.666667pt;}
.h0_c00156{height:1122.720000pt;}
.w2_c00156{width:604.640000pt;}
.w1_c00156{width:794.000000pt;}
.w0_c00156{width:794.080000pt;}
.x0_c00156{left:0.000000pt;}
.x16_c00156{left:78.399733pt;}
.x17_c00156{left:88.639733pt;}
.x1_c00156{left:113.471867pt;}
.xa_c00156{left:119.773200pt;}
.x2_c00156{left:132.352133pt;}
.x13_c00156{left:138.559880pt;}
.x14_c00156{left:144.799987pt;}
.x3_c00156{left:208.025867pt;}
.x15_c00156{left:212.933320pt;}
.x11_c00156{left:232.319773pt;}
.xb_c00156{left:234.146533pt;}
.x12_c00156{left:244.159880pt;}
.x10_c00156{left:247.106267pt;}
.x6_c00156{left:249.666637pt;}
.x7_c00156{left:259.426531pt;}
.x5_c00156{left:271.999971pt;}
.x4_c00156{left:272.959867pt;}
.xe_c00156{left:300.386533pt;}
.xf_c00156{left:307.586533pt;}
.xc_c00156{left:356.479733pt;}
.x8_c00156{left:368.346264pt;}
.x9_c00156{left:371.866571pt;}
.xd_c00156{left:372.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_2ba5371816eb2c6fc2a4b51b.woff2')format("woff");}.ff1_c00157{font-family:ff1_c00157;line-height:1.070312;font-style:normal;font-weight:normal;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_4dc32087a787dfa511073cef.woff2')format("woff");}.ff2_c00157{font-family:ff2_c00157;line-height:0.895996;font-style: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(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_c00157{vertical-align:0.000000px;}
.ls0_c00157{letter-spacing:0.000000px;}
.sc__c00157{text-shadow:none;}
.sc0_c00157{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00157{-webkit-text-stroke:0px transparent;}
.sc0_c00157{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00157{word-spacing:-18.414720px;}
.ws1_c00157{word-spacing:-15.012000px;}
.ws2_c00157{word-spacing:-12.204000px;}
.ws4_c00157{word-spacing:0.000000px;}
.ws3_c00157{word-spacing:80.332858px;}
._1_c00157{margin-left:-3.378661px;}
._2_c00157{margin-left:-1.391196px;}
._8_c00157{width:1.237312px;}
._6_c00157{width:3.448746px;}
._b_c00157{width:4.557846px;}
._a_c00157{width:6.497599px;}
._9_c00157{width:7.617666px;}
._7_c00157{width:8.876997px;}
._3_c00157{width:10.863076px;}
._4_c00157{width:15.567208px;}
._5_c00157{width:16.650699px;}
._d_c00157{width:110.598000px;}
._c_c00157{width:844.815621px;}
._0_c00157{width:2261.432586px;}
.fc2_c00157{color:rgb(89,89,89);}
.fc1_c00157{color:rgb(64,64,64);}
.fc0_c00157{color:rgb(0,0,0);}
.fs1_c00157{font-size:54.000000px;}
.fs0_c00157{font-size:66.240000px;}
.fs2_c00157{font-size:84.240000px;}
.y0_c00157{bottom:0.000000px;}
.y28_c00157{bottom:17.640000px;}
.y19_c00157{bottom:17.715000px;}
.y20_c00157{bottom:50.505450px;}
.y1f_c00157{bottom:67.065150px;}
.y13_c00157{bottom:67.889700px;}
.y12_c00157{bottom:84.450000px;}
.y10_c00157{bottom:106.380000px;}
.yf_c00157{bottom:127.440300px;}
.y22_c00157{bottom:141.120150px;}
.y1e_c00157{bottom:147.420000px;}
.y21_c00157{bottom:157.680450px;}
.y1d_c00157{bottom:163.980300px;}
.y1a_c00157{bottom:173.160000px;}
.y24_c00157{bottom:209.670150px;}
.y1c_c00157{bottom:219.630300px;}
.y23_c00157{bottom:226.230450px;}
.y15_c00157{bottom:226.470000px;}
.y17_c00157{bottom:228.854850px;}
.y26_c00157{bottom:229.290300px;}
.y1b_c00157{bottom:236.190000px;}
.y14_c00157{bottom:243.029700px;}
.y16_c00157{bottom:245.415150px;}
.y25_c00157{bottom:245.850000px;}
.y27_c00157{bottom:266.190000px;}
.y18_c00157{bottom:266.250000px;}
.ye_c00157{bottom:498.135000px;}
.yd_c00157{bottom:519.015450px;}
.yc_c00157{bottom:540.075150px;}
.yb_c00157{bottom:561.134850px;}
.ya_c00157{bottom:582.015300px;}
.y9_c00157{bottom:603.075000px;}
.y8_c00157{bottom:633.135000px;}
.y7_c00157{bottom:672.045300px;}
.y6_c00157{bottom:693.105000px;}
.y11_c00157{bottom:738.720000px;}
.y5_c00157{bottom:1055.670450px;}
.y4_c00157{bottom:1076.550300px;}
.y3_c00157{bottom:1097.609700px;}
.y2_c00157{bottom:1118.670000px;}
.y1_c00157{bottom:1174.680000px;}
.h5_c00157{height:38.759766px;}
.h2_c00157{height:56.957344px;}
.h3_c00157{height:56.958544px;}
.h6_c00157{height:60.465234px;}
.h7_c00157{height:297.540000px;}
.h4_c00157{height:297.720000px;}
.h1_c00157{height:1263.000000px;}
.h0_c00157{height:1263.060000px;}
.w2_c00157{width:680.220000px;}
.w1_c00157{width:893.250000px;}
.w0_c00157{width:893.340000px;}
.x0_c00157{left:0.000000px;}
.x18_c00157{left:93.779700px;}
.x19_c00157{left:99.719700px;}
.x1_c00157{left:127.655850px;}
.xa_c00157{left:140.399700px;}
.x2_c00157{left:148.896150px;}
.x14_c00157{left:158.504715px;}
.x15_c00157{left:165.569370px;}
.x6_c00157{left:206.069205px;}
.x7_c00157{left:217.079550px;}
.x3_c00157{left:234.030450px;}
.x16_c00157{left:237.704670px;}
.x12_c00157{left:243.104745px;}
.x13_c00157{left:256.424865px;}
.x17_c00157{left:259.844370px;}
.xb_c00157{left:263.489700px;}
.x10_c00157{left:300.344400px;}
.x11_c00157{left:315.104745px;}
.x4_c00157{left:340.124700px;}
.x5_c00157{left:342.464355px;}
.xe_c00157{left:346.784700px;}
.xf_c00157{left:354.884700px;}
.x8_c00157{left:376.349550px;}
.x9_c00157{left:380.309310px;}
.xc_c00157{left:415.514700px;}
.xd_c00157{left:437.475000px;}
@media print{
.v0_c00157{vertical-align:0.000000pt;}
.ls0_c00157{letter-spacing:0.000000pt;}
.ws0_c00157{word-spacing:-16.368640pt;}
.ws1_c00157{word-spacing:-13.344000pt;}
.ws2_c00157{word-spacing:-10.848000pt;}
.ws4_c00157{word-spacing:0.000000pt;}
.ws3_c00157{word-spacing:71.406985pt;}
._1_c00157{margin-left:-3.003254pt;}
._2_c00157{margin-left:-1.236618pt;}
._8_c00157{width:1.099833pt;}
._6_c00157{width:3.065552pt;}
._b_c00157{width:4.051419pt;}
._a_c00157{width:5.775644pt;}
._9_c00157{width:6.771259pt;}
._7_c00157{width:7.890664pt;}
._3_c00157{width:9.656067pt;}
._4_c00157{width:13.837518pt;}
._5_c00157{width:14.800621pt;}
._d_c00157{width:98.309333pt;}
._c_c00157{width:750.947219pt;}
._0_c00157{width:2010.162299pt;}
.fs1_c00157{font-size:48.000000pt;}
.fs0_c00157{font-size:58.880000pt;}
.fs2_c00157{font-size:74.880000pt;}
.y0_c00157{bottom:0.000000pt;}
.y28_c00157{bottom:15.680000pt;}
.y19_c00157{bottom:15.746667pt;}
.y20_c00157{bottom:44.893733pt;}
.y1f_c00157{bottom:59.613467pt;}
.y13_c00157{bottom:60.346400pt;}
.y12_c00157{bottom:75.066667pt;}
.y10_c00157{bottom:94.560000pt;}
.yf_c00157{bottom:113.280267pt;}
.y22_c00157{bottom:125.440133pt;}
.y1e_c00157{bottom:131.040000pt;}
.y21_c00157{bottom:140.160400pt;}
.y1d_c00157{bottom:145.760267pt;}
.y1a_c00157{bottom:153.920000pt;}
.y24_c00157{bottom:186.373467pt;}
.y1c_c00157{bottom:195.226933pt;}
.y23_c00157{bottom:201.093733pt;}
.y15_c00157{bottom:201.306667pt;}
.y17_c00157{bottom:203.426533pt;}
.y26_c00157{bottom:203.813600pt;}
.y1b_c00157{bottom:209.946667pt;}
.y14_c00157{bottom:216.026400pt;}
.y16_c00157{bottom:218.146800pt;}
.y25_c00157{bottom:218.533333pt;}
.y27_c00157{bottom:236.613333pt;}
.y18_c00157{bottom:236.666667pt;}
.ye_c00157{bottom:442.786667pt;}
.yd_c00157{bottom:461.347067pt;}
.yc_c00157{bottom:480.066800pt;}
.yb_c00157{bottom:498.786533pt;}
.ya_c00157{bottom:517.346933pt;}
.y9_c00157{bottom:536.066667pt;}
.y8_c00157{bottom:562.786667pt;}
.y7_c00157{bottom:597.373600pt;}
.y6_c00157{bottom:616.093333pt;}
.y11_c00157{bottom:656.640000pt;}
.y5_c00157{bottom:938.373733pt;}
.y4_c00157{bottom:956.933600pt;}
.y3_c00157{bottom:975.653067pt;}
.y2_c00157{bottom:994.373333pt;}
.y1_c00157{bottom:1044.160000pt;}
.h5_c00157{height:34.453125pt;}
.h2_c00157{height:50.628750pt;}
.h3_c00157{height:50.629817pt;}
.h6_c00157{height:53.746875pt;}
.h7_c00157{height:264.480000pt;}
.h4_c00157{height:264.640000pt;}
.h1_c00157{height:1122.666667pt;}
.h0_c00157{height:1122.720000pt;}
.w2_c00157{width:604.640000pt;}
.w1_c00157{width:794.000000pt;}
.w0_c00157{width:794.080000pt;}
.x0_c00157{left:0.000000pt;}
.x18_c00157{left:83.359733pt;}
.x19_c00157{left:88.639733pt;}
.x1_c00157{left:113.471867pt;}
.xa_c00157{left:124.799733pt;}
.x2_c00157{left:132.352133pt;}
.x14_c00157{left:140.893080pt;}
.x15_c00157{left:147.172773pt;}
.x6_c00157{left:183.172627pt;}
.x7_c00157{left:192.959600pt;}
.x3_c00157{left:208.027067pt;}
.x16_c00157{left:211.293040pt;}
.x12_c00157{left:216.093107pt;}
.x13_c00157{left:227.933213pt;}
.x17_c00157{left:230.972773pt;}
.xb_c00157{left:234.213067pt;}
.x10_c00157{left:266.972800pt;}
.x11_c00157{left:280.093107pt;}
.x4_c00157{left:302.333067pt;}
.x5_c00157{left:304.412760pt;}
.xe_c00157{left:308.253067pt;}
.xf_c00157{left:315.453067pt;}
.x8_c00157{left:334.532933pt;}
.x9_c00157{left:338.052720pt;}
.xc_c00157{left:369.346400pt;}
.xd_c00157{left:388.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_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_2993e20b8caa49caefce76cb.woff2')format("woff");}.ff1_c00158{font-family:ff1_c00158;line-height:1.070312;font-style:normal;font-weight:normal;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_0aef48638b655e0deef66130.woff2')format("woff");}.ff2_c00158{font-family:ff2_c00158;line-height:0.895996;font-style: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);}
.m1_c00158{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_c00158{vertical-align:0.000000px;}
.ls0_c00158{letter-spacing:0.000000px;}
.sc__c00158{text-shadow:none;}
.sc0_c00158{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00158{-webkit-text-stroke:0px transparent;}
.sc0_c00158{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00158{word-spacing:-15.012000px;}
.ws1_c00158{word-spacing:-12.204000px;}
.ws3_c00158{word-spacing:0.000000px;}
.ws2_c00158{word-spacing:80.332858px;}
._2_c00158{margin-left:-1.456761px;}
._4_c00158{width:1.191326px;}
._3_c00158{width:2.318472px;}
._1_c00158{width:3.642918px;}
._8_c00158{width:4.965968px;}
._5_c00158{width:6.027761px;}
._6_c00158{width:7.103291px;}
._7_c00158{width:11.658163px;}
._a_c00158{width:110.598000px;}
._9_c00158{width:844.815621px;}
._0_c00158{width:2261.432586px;}
.fc2_c00158{color:rgb(89,89,89);}
.fc1_c00158{color:rgb(64,64,64);}
.fc0_c00158{color:rgb(0,0,0);}
.fs1_c00158{font-size:54.000000px;}
.fs3_c00158{font-size:54.144000px;}
.fs0_c00158{font-size:66.240000px;}
.fs2_c00158{font-size:84.240000px;}
.y0_c00158{bottom:0.000000px;}
.y25_c00158{bottom:17.565000px;}
.y16_c00158{bottom:17.790000px;}
.y1d_c00158{bottom:66.960150px;}
.y10_c00158{bottom:67.935300px;}
.y1c_c00158{bottom:83.520450px;}
.yf_c00158{bottom:84.495000px;}
.y1f_c00158{bottom:126.540150px;}
.y1b_c00158{bottom:138.135150px;}
.y1e_c00158{bottom:143.100450px;}
.y1a_c00158{bottom:154.695450px;}
.yd_c00158{bottom:166.890300px;}
.yc_c00158{bottom:187.950000px;}
.y21_c00158{bottom:211.755450px;}
.y19_c00158{bottom:220.350300px;}
.y12_c00158{bottom:225.975000px;}
.y20_c00158{bottom:228.315150px;}
.y23_c00158{bottom:229.350600px;}
.y14_c00158{bottom:231.375600px;}
.y17_c00158{bottom:233.820000px;}
.y18_c00158{bottom:236.910000px;}
.y11_c00158{bottom:242.535300px;}
.y22_c00158{bottom:245.910300px;}
.y13_c00158{bottom:247.935300px;}
.y24_c00158{bottom:266.115000px;}
.y15_c00158{bottom:266.325000px;}
.yb_c00158{bottom:554.115450px;}
.ya_c00158{bottom:575.175150px;}
.y9_c00158{bottom:596.055000px;}
.y8_c00158{bottom:617.115300px;}
.y7_c00158{bottom:638.175000px;}
.y6_c00158{bottom:668.085000px;}
.y5_c00158{bottom:707.145000px;}
.ye_c00158{bottom:752.760000px;}
.y4_c00158{bottom:1076.550000px;}
.y3_c00158{bottom:1097.609700px;}
.y2_c00158{bottom:1118.670000px;}
.y1_c00158{bottom:1174.680000px;}
.h4_c00158{height:38.759766px;}
.h7_c00158{height:38.863125px;}
.h2_c00158{height:56.957344px;}
.h5_c00158{height:60.465234px;}
.h6_c00158{height:297.540000px;}
.h3_c00158{height:297.720000px;}
.h1_c00158{height:1263.000000px;}
.h0_c00158{height:1263.060000px;}
.w2_c00158{width:680.220000px;}
.w1_c00158{width:893.250000px;}
.w0_c00158{width:893.340000px;}
.x0_c00158{left:0.000000px;}
.x19_c00158{left:99.719700px;}
.x18_c00158{left:105.299700px;}
.x1_c00158{left:127.655850px;}
.x14_c00158{left:146.549745px;}
.x2_c00158{left:148.896150px;}
.xa_c00158{left:151.739700px;}
.x15_c00158{left:153.569280px;}
.x6_c00158{left:204.584505px;}
.x7_c00158{left:215.564385px;}
.x16_c00158{left:230.219280px;}
.x3_c00158{left:234.029100px;}
.x12_c00158{left:248.324760px;}
.x17_c00158{left:252.359580px;}
.x13_c00158{left:261.644295px;}
.xb_c00158{left:263.489700px;}
.x10_c00158{left:303.299700px;}
.x11_c00158{left:318.059460px;}
.x4_c00158{left:329.549700px;}
.x5_c00158{left:331.889355px;}
.xe_c00158{left:350.429550px;}
.xf_c00158{left:358.529550px;}
.x8_c00158{left:380.519385px;}
.x9_c00158{left:384.479730px;}
.xc_c00158{left:443.624700px;}
.xd_c00158{left:465.584400px;}
@media print{
.v0_c00158{vertical-align:0.000000pt;}
.ls0_c00158{letter-spacing:0.000000pt;}
.ws0_c00158{word-spacing:-13.344000pt;}
.ws1_c00158{word-spacing:-10.848000pt;}
.ws3_c00158{word-spacing:0.000000pt;}
.ws2_c00158{word-spacing:71.406985pt;}
._2_c00158{margin-left:-1.294898pt;}
._4_c00158{width:1.058957pt;}
._3_c00158{width:2.060864pt;}
._1_c00158{width:3.238150pt;}
._8_c00158{width:4.414194pt;}
._5_c00158{width:5.358009pt;}
._6_c00158{width:6.314037pt;}
._7_c00158{width:10.362812pt;}
._a_c00158{width:98.309333pt;}
._9_c00158{width:750.947219pt;}
._0_c00158{width:2010.162299pt;}
.fs1_c00158{font-size:48.000000pt;}
.fs3_c00158{font-size:48.128000pt;}
.fs0_c00158{font-size:58.880000pt;}
.fs2_c00158{font-size:74.880000pt;}
.y0_c00158{bottom:0.000000pt;}
.y25_c00158{bottom:15.613333pt;}
.y16_c00158{bottom:15.813333pt;}
.y1d_c00158{bottom:59.520133pt;}
.y10_c00158{bottom:60.386933pt;}
.y1c_c00158{bottom:74.240400pt;}
.yf_c00158{bottom:75.106667pt;}
.y1f_c00158{bottom:112.480133pt;}
.y1b_c00158{bottom:122.786800pt;}
.y1e_c00158{bottom:127.200400pt;}
.y1a_c00158{bottom:137.507067pt;}
.yd_c00158{bottom:148.346933pt;}
.yc_c00158{bottom:167.066667pt;}
.y21_c00158{bottom:188.227067pt;}
.y19_c00158{bottom:195.866933pt;}
.y12_c00158{bottom:200.866667pt;}
.y20_c00158{bottom:202.946800pt;}
.y23_c00158{bottom:203.867200pt;}
.y14_c00158{bottom:205.667200pt;}
.y17_c00158{bottom:207.840000pt;}
.y18_c00158{bottom:210.586667pt;}
.y11_c00158{bottom:215.586933pt;}
.y22_c00158{bottom:218.586933pt;}
.y13_c00158{bottom:220.386933pt;}
.y24_c00158{bottom:236.546667pt;}
.y15_c00158{bottom:236.733333pt;}
.yb_c00158{bottom:492.547067pt;}
.ya_c00158{bottom:511.266800pt;}
.y9_c00158{bottom:529.826667pt;}
.y8_c00158{bottom:548.546933pt;}
.y7_c00158{bottom:567.266667pt;}
.y6_c00158{bottom:593.853333pt;}
.y5_c00158{bottom:628.573333pt;}
.ye_c00158{bottom:669.120000pt;}
.y4_c00158{bottom:956.933333pt;}
.y3_c00158{bottom:975.653067pt;}
.y2_c00158{bottom:994.373333pt;}
.y1_c00158{bottom:1044.160000pt;}
.h4_c00158{height:34.453125pt;}
.h7_c00158{height:34.545000pt;}
.h2_c00158{height:50.628750pt;}
.h5_c00158{height:53.746875pt;}
.h6_c00158{height:264.480000pt;}
.h3_c00158{height:264.640000pt;}
.h1_c00158{height:1122.666667pt;}
.h0_c00158{height:1122.720000pt;}
.w2_c00158{width:604.640000pt;}
.w1_c00158{width:794.000000pt;}
.w0_c00158{width:794.080000pt;}
.x0_c00158{left:0.000000pt;}
.x19_c00158{left:88.639733pt;}
.x18_c00158{left:93.599733pt;}
.x1_c00158{left:113.471867pt;}
.x14_c00158{left:130.266440pt;}
.x2_c00158{left:132.352133pt;}
.xa_c00158{left:134.879733pt;}
.x15_c00158{left:136.506027pt;}
.x6_c00158{left:181.852893pt;}
.x7_c00158{left:191.612787pt;}
.x16_c00158{left:204.639360pt;}
.x3_c00158{left:208.025867pt;}
.x12_c00158{left:220.733120pt;}
.x17_c00158{left:224.319627pt;}
.x13_c00158{left:232.572707pt;}
.xb_c00158{left:234.213067pt;}
.x10_c00158{left:269.599733pt;}
.x11_c00158{left:282.719520pt;}
.x4_c00158{left:292.933067pt;}
.x5_c00158{left:295.012760pt;}
.xe_c00158{left:311.492933pt;}
.xf_c00158{left:318.692933pt;}
.x8_c00158{left:338.239453pt;}
.x9_c00158{left:341.759760pt;}
.xc_c00158{left:394.333067pt;}
.xd_c00158{left:413.852800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4d5e2dfc2f5600761d9dc4cb.woff2')format("woff");}.ff1_c00159{font-family:ff1_c00159;line-height:1.070312;font-style:normal;font-weight:normal;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_7b1e90d0fad5489101febfd9.woff2')format("woff");}.ff2_c00159{font-family:ff2_c00159;line-height:0.895996;font-style: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);}
.m1_c00159{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_c00159{vertical-align:0.000000px;}
.ls0_c00159{letter-spacing:0.000000px;}
.sc__c00159{text-shadow:none;}
.sc0_c00159{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00159{-webkit-text-stroke:0px transparent;}
.sc0_c00159{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00159{word-spacing:-15.012000px;}
.ws1_c00159{word-spacing:-12.204000px;}
.ws3_c00159{word-spacing:0.000000px;}
.ws2_c00159{word-spacing:80.332858px;}
._5_c00159{margin-left:-3.973801px;}
._2_c00159{margin-left:-1.389574px;}
._8_c00159{width:1.193072px;}
._4_c00159{width:3.447124px;}
._1_c00159{width:5.232274px;}
._3_c00159{width:6.998800px;}
._9_c00159{width:17.073494px;}
._7_c00159{width:25.274080px;}
._6_c00159{width:26.297346px;}
._b_c00159{width:110.598000px;}
._a_c00159{width:844.815621px;}
._0_c00159{width:2261.432586px;}
.fc2_c00159{color:rgb(89,89,89);}
.fc1_c00159{color:rgb(64,64,64);}
.fc0_c00159{color:rgb(0,0,0);}
.fs1_c00159{font-size:54.000000px;}
.fs3_c00159{font-size:54.144000px;}
.fs0_c00159{font-size:66.240000px;}
.fs4_c00159{font-size:84.240000px;}
.fs2_c00159{font-size:84.384000px;}
.y0_c00159{bottom:0.000000px;}
.y26_c00159{bottom:17.565000px;}
.y17_c00159{bottom:17.715000px;}
.y11_c00159{bottom:58.890300px;}
.y1e_c00159{bottom:71.130300px;}
.y10_c00159{bottom:75.450000px;}
.y1d_c00159{bottom:87.690000px;}
.y20_c00159{bottom:123.690150px;}
.y1c_c00159{bottom:139.785150px;}
.y1f_c00159{bottom:140.249850px;}
.y1b_c00159{bottom:156.344850px;}
.ye_c00159{bottom:156.629700px;}
.yd_c00159{bottom:177.690000px;}
.y22_c00159{bottom:215.130450px;}
.y18_c00159{bottom:223.560000px;}
.y1a_c00159{bottom:224.099700px;}
.y24_c00159{bottom:227.520150px;}
.y13_c00159{bottom:230.730600px;}
.y15_c00159{bottom:231.016050px;}
.y21_c00159{bottom:231.690150px;}
.y19_c00159{bottom:240.690000px;}
.y23_c00159{bottom:244.080450px;}
.y12_c00159{bottom:247.290300px;}
.y14_c00159{bottom:247.575750px;}
.y25_c00159{bottom:266.115000px;}
.y16_c00159{bottom:266.295000px;}
.yc_c00159{bottom:540.615150px;}
.yb_c00159{bottom:561.674850px;}
.ya_c00159{bottom:582.554700px;}
.y9_c00159{bottom:603.615000px;}
.y8_c00159{bottom:624.674700px;}
.y7_c00159{bottom:645.585000px;}
.y6_c00159{bottom:675.645000px;}
.y5_c00159{bottom:714.525000px;}
.yf_c00159{bottom:760.320000px;}
.y4_c00159{bottom:1076.550300px;}
.y3_c00159{bottom:1097.610000px;}
.y2_c00159{bottom:1118.670000px;}
.y1_c00159{bottom:1174.680000px;}
.h4_c00159{height:38.759766px;}
.h6_c00159{height:38.863125px;}
.h2_c00159{height:56.957344px;}
.h7_c00159{height:60.465234px;}
.h5_c00159{height:60.568594px;}
.h3_c00159{height:297.540000px;}
.h1_c00159{height:1263.000000px;}
.h0_c00159{height:1263.060000px;}
.w2_c00159{width:680.220000px;}
.w1_c00159{width:893.250000px;}
.w0_c00159{width:893.340000px;}
.x0_c00159{left:0.000000px;}
.x13_c00159{left:76.109484px;}
.x14_c00159{left:83.129604px;}
.x17_c00159{left:98.459700px;}
.x18_c00159{left:99.719700px;}
.x1_c00159{left:127.655850px;}
.xa_c00159{left:145.079700px;}
.x2_c00159{left:148.896150px;}
.x6_c00159{left:220.109505px;}
.x15_c00159{left:227.774754px;}
.x7_c00159{left:231.089385px;}
.x3_c00159{left:234.030450px;}
.x16_c00159{left:249.914454px;}
.xb_c00159{left:263.489700px;}
.x11_c00159{left:267.044364px;}
.x12_c00159{left:280.364484px;}
.x4_c00159{left:331.124700px;}
.x5_c00159{left:333.464355px;}
.xf_c00159{left:337.784604px;}
.x10_c00159{left:352.544364px;}
.xc_c00159{left:354.809700px;}
.xd_c00159{left:376.769400px;}
.x8_c00159{left:378.794235px;}
.x9_c00159{left:382.754580px;}
.xe_c00159{left:385.529754px;}
@media print{
.v0_c00159{vertical-align:0.000000pt;}
.ls0_c00159{letter-spacing:0.000000pt;}
.ws0_c00159{word-spacing:-13.344000pt;}
.ws1_c00159{word-spacing:-10.848000pt;}
.ws3_c00159{word-spacing:0.000000pt;}
.ws2_c00159{word-spacing:71.406985pt;}
._5_c00159{margin-left:-3.532268pt;}
._2_c00159{margin-left:-1.235177pt;}
._8_c00159{width:1.060508pt;}
._4_c00159{width:3.064110pt;}
._1_c00159{width:4.650910pt;}
._3_c00159{width:6.221155pt;}
._9_c00159{width:15.176439pt;}
._7_c00159{width:22.465849pt;}
._6_c00159{width:23.375419pt;}
._b_c00159{width:98.309333pt;}
._a_c00159{width:750.947219pt;}
._0_c00159{width:2010.162299pt;}
.fs1_c00159{font-size:48.000000pt;}
.fs3_c00159{font-size:48.128000pt;}
.fs0_c00159{font-size:58.880000pt;}
.fs4_c00159{font-size:74.880000pt;}
.fs2_c00159{font-size:75.008000pt;}
.y0_c00159{bottom:0.000000pt;}
.y26_c00159{bottom:15.613333pt;}
.y17_c00159{bottom:15.746667pt;}
.y11_c00159{bottom:52.346933pt;}
.y1e_c00159{bottom:63.226933pt;}
.y10_c00159{bottom:67.066667pt;}
.y1d_c00159{bottom:77.946667pt;}
.y20_c00159{bottom:109.946800pt;}
.y1c_c00159{bottom:124.253467pt;}
.y1f_c00159{bottom:124.666533pt;}
.y1b_c00159{bottom:138.973200pt;}
.ye_c00159{bottom:139.226400pt;}
.yd_c00159{bottom:157.946667pt;}
.y22_c00159{bottom:191.227067pt;}
.y18_c00159{bottom:198.720000pt;}
.y1a_c00159{bottom:199.199733pt;}
.y24_c00159{bottom:202.240133pt;}
.y13_c00159{bottom:205.093867pt;}
.y15_c00159{bottom:205.347600pt;}
.y21_c00159{bottom:205.946800pt;}
.y19_c00159{bottom:213.946667pt;}
.y23_c00159{bottom:216.960400pt;}
.y12_c00159{bottom:219.813600pt;}
.y14_c00159{bottom:220.067333pt;}
.y25_c00159{bottom:236.546667pt;}
.y16_c00159{bottom:236.706667pt;}
.yc_c00159{bottom:480.546800pt;}
.yb_c00159{bottom:499.266533pt;}
.ya_c00159{bottom:517.826400pt;}
.y9_c00159{bottom:536.546667pt;}
.y8_c00159{bottom:555.266400pt;}
.y7_c00159{bottom:573.853333pt;}
.y6_c00159{bottom:600.573333pt;}
.y5_c00159{bottom:635.133333pt;}
.yf_c00159{bottom:675.840000pt;}
.y4_c00159{bottom:956.933600pt;}
.y3_c00159{bottom:975.653333pt;}
.y2_c00159{bottom:994.373333pt;}
.y1_c00159{bottom:1044.160000pt;}
.h4_c00159{height:34.453125pt;}
.h6_c00159{height:34.545000pt;}
.h2_c00159{height:50.628750pt;}
.h7_c00159{height:53.746875pt;}
.h5_c00159{height:53.838750pt;}
.h3_c00159{height:264.480000pt;}
.h1_c00159{height:1122.666667pt;}
.h0_c00159{height:1122.720000pt;}
.w2_c00159{width:604.640000pt;}
.w1_c00159{width:794.000000pt;}
.w0_c00159{width:794.080000pt;}
.x0_c00159{left:0.000000pt;}
.x13_c00159{left:67.652875pt;}
.x14_c00159{left:73.892981pt;}
.x17_c00159{left:87.519733pt;}
.x18_c00159{left:88.639733pt;}
.x1_c00159{left:113.471867pt;}
.xa_c00159{left:128.959733pt;}
.x2_c00159{left:132.352133pt;}
.x6_c00159{left:195.652893pt;}
.x15_c00159{left:202.466448pt;}
.x7_c00159{left:205.412787pt;}
.x3_c00159{left:208.027067pt;}
.x16_c00159{left:222.146181pt;}
.xb_c00159{left:234.213067pt;}
.x11_c00159{left:237.372768pt;}
.x12_c00159{left:249.212875pt;}
.x4_c00159{left:294.333067pt;}
.x5_c00159{left:296.412760pt;}
.xf_c00159{left:300.252981pt;}
.x10_c00159{left:313.372768pt;}
.xc_c00159{left:315.386400pt;}
.xd_c00159{left:334.906133pt;}
.x8_c00159{left:336.705987pt;}
.x9_c00159{left:340.226293pt;}
.xe_c00159{left:342.693115pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1a5a19afa87ded2b770203b3.woff2')format("woff");}.ff1_c00160{font-family:ff1_c00160;line-height:1.070312;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00160{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00160{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00160{vertical-align:0.000000px;}
.ls0_c00160{letter-spacing:0.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;}
}
.ws0_c00160{word-spacing:-15.012000px;}
.ws3_c00160{word-spacing:0.000000px;}
.ws1_c00160{word-spacing:28.418417px;}
.ws2_c00160{word-spacing:90.120339px;}
._c_c00160{margin-left:-5.024941px;}
._7_c00160{margin-left:-3.662776px;}
._6_c00160{margin-left:-2.514174px;}
._2_c00160{margin-left:-1.093374px;}
._5_c00160{width:1.059488px;}
._10_c00160{width:3.113627px;}
._d_c00160{width:4.836362px;}
._e_c00160{width:5.848169px;}
._b_c00160{width:7.849256px;}
._4_c00160{width:11.926520px;}
._1_c00160{width:13.210680px;}
._3_c00160{width:14.315131px;}
._8_c00160{width:16.758829px;}
._9_c00160{width:25.304373px;}
._a_c00160{width:26.440543px;}
._12_c00160{width:27.774557px;}
._f_c00160{width:215.011794px;}
._11_c00160{width:845.765568px;}
._0_c00160{width:2261.432586px;}
.fc1_c00160{color:rgb(89,89,89);}
.fc0_c00160{color:rgb(0,0,0);}
.fs1_c00160{font-size:54.000000px;}
.fs0_c00160{font-size:66.240000px;}
.fs2_c00160{font-size:66.384000px;}
.fs3_c00160{font-size:79.200000px;}
.y0_c00160{bottom:0.000000px;}
.y1b_c00160{bottom:17.250000px;}
.y12_c00160{bottom:49.350000px;}
.y13_c00160{bottom:95.940300px;}
.y14_c00160{bottom:149.685450px;}
.y15_c00160{bottom:203.475150px;}
.y10_c00160{bottom:243.210000px;}
.y16_c00160{bottom:257.250150px;}
.yf_c00160{bottom:282.270300px;}
.ye_c00160{bottom:303.330000px;}
.y17_c00160{bottom:311.040450px;}
.y11_c00160{bottom:347.760000px;}
.y18_c00160{bottom:364.830750px;}
.y19_c00160{bottom:418.605750px;}
.y1a_c00160{bottom:473.685600px;}
.yd_c00160{bottom:878.505150px;}
.yc_c00160{bottom:899.610000px;}
.yb_c00160{bottom:920.670300px;}
.ya_c00160{bottom:941.550150px;}
.y9_c00160{bottom:962.609850px;}
.y8_c00160{bottom:983.670150px;}
.y7_c00160{bottom:1004.550000px;}
.y6_c00160{bottom:1034.609850px;}
.y5_c00160{bottom:1055.670150px;}
.y4_c00160{bottom:1076.550000px;}
.y3_c00160{bottom:1097.609700px;}
.y2_c00160{bottom:1118.670000px;}
.y1_c00160{bottom:1174.680000px;}
.h2_c00160{height:56.957344px;}
.h4_c00160{height:57.081164px;}
.h5_c00160{height:68.101172px;}
.h3_c00160{height:503.640000px;}
.h1_c00160{height:1263.000000px;}
.h0_c00160{height:1263.060000px;}
.w2_c00160{width:680.220000px;}
.w1_c00160{width:893.250000px;}
.w0_c00160{width:893.340000px;}
.x0_c00160{left:0.000000px;}
.x9_c00160{left:9.791985px;}
.x7_c00160{left:33.690000px;}
.x8_c00160{left:40.109535px;}
.xb_c00160{left:43.740075px;}
.xd_c00160{left:47.370075px;}
.xa_c00160{left:53.849835px;}
.xc_c00160{left:63.929775px;}
.x5_c00160{left:126.000000px;}
.x1_c00160{left:127.655850px;}
.xe_c00160{left:131.070075px;}
.x2_c00160{left:148.896150px;}
.x4_c00160{left:191.550000px;}
.x6_c00160{left:223.125000px;}
.xf_c00160{left:240.660000px;}
.x3_c00160{left:286.995600px;}
@media print{
.v0_c00160{vertical-align:0.000000pt;}
.ls0_c00160{letter-spacing:0.000000pt;}
.ws0_c00160{word-spacing:-13.344000pt;}
.ws3_c00160{word-spacing:0.000000pt;}
.ws1_c00160{word-spacing:25.260815pt;}
.ws2_c00160{word-spacing:80.106968pt;}
._c_c00160{margin-left:-4.466614pt;}
._7_c00160{margin-left:-3.255801pt;}
._6_c00160{margin-left:-2.234822pt;}
._2_c00160{margin-left:-0.971888pt;}
._5_c00160{width:0.941767pt;}
._10_c00160{width:2.767669pt;}
._d_c00160{width:4.298988pt;}
._e_c00160{width:5.198372pt;}
._b_c00160{width:6.977116pt;}
._4_c00160{width:10.601351pt;}
._1_c00160{width:11.742827pt;}
._3_c00160{width:12.724561pt;}
._8_c00160{width:14.896737pt;}
._9_c00160{width:22.492776pt;}
._a_c00160{width:23.502705pt;}
._12_c00160{width:24.688495pt;}
._f_c00160{width:191.121595pt;}
._11_c00160{width:751.791616pt;}
._0_c00160{width:2010.162299pt;}
.fs1_c00160{font-size:48.000000pt;}
.fs0_c00160{font-size:58.880000pt;}
.fs2_c00160{font-size:59.008000pt;}
.fs3_c00160{font-size:70.400000pt;}
.y0_c00160{bottom:0.000000pt;}
.y1b_c00160{bottom:15.333333pt;}
.y12_c00160{bottom:43.866667pt;}
.y13_c00160{bottom:85.280267pt;}
.y14_c00160{bottom:133.053733pt;}
.y15_c00160{bottom:180.866800pt;}
.y10_c00160{bottom:216.186667pt;}
.y16_c00160{bottom:228.666800pt;}
.yf_c00160{bottom:250.906933pt;}
.ye_c00160{bottom:269.626667pt;}
.y17_c00160{bottom:276.480400pt;}
.y11_c00160{bottom:309.120000pt;}
.y18_c00160{bottom:324.294000pt;}
.y19_c00160{bottom:372.094000pt;}
.y1a_c00160{bottom:421.053867pt;}
.yd_c00160{bottom:780.893467pt;}
.yc_c00160{bottom:799.653333pt;}
.yb_c00160{bottom:818.373600pt;}
.ya_c00160{bottom:836.933467pt;}
.y9_c00160{bottom:855.653200pt;}
.y8_c00160{bottom:874.373467pt;}
.y7_c00160{bottom:892.933333pt;}
.y6_c00160{bottom:919.653200pt;}
.y5_c00160{bottom:938.373467pt;}
.y4_c00160{bottom:956.933333pt;}
.y3_c00160{bottom:975.653067pt;}
.y2_c00160{bottom:994.373333pt;}
.y1_c00160{bottom:1044.160000pt;}
.h2_c00160{height:50.628750pt;}
.h4_c00160{height:50.738813pt;}
.h5_c00160{height:60.534375pt;}
.h3_c00160{height:447.680000pt;}
.h1_c00160{height:1122.666667pt;}
.h0_c00160{height:1122.720000pt;}
.w2_c00160{width:604.640000pt;}
.w1_c00160{width:794.000000pt;}
.w0_c00160{width:794.080000pt;}
.x0_c00160{left:0.000000pt;}
.x9_c00160{left:8.703987pt;}
.x7_c00160{left:29.946667pt;}
.x8_c00160{left:35.652920pt;}
.xb_c00160{left:38.880067pt;}
.xd_c00160{left:42.106733pt;}
.xa_c00160{left:47.866520pt;}
.xc_c00160{left:56.826467pt;}
.x5_c00160{left:112.000000pt;}
.x1_c00160{left:113.471867pt;}
.xe_c00160{left:116.506733pt;}
.x2_c00160{left:132.352133pt;}
.x4_c00160{left:170.266667pt;}
.x6_c00160{left:198.333333pt;}
.xf_c00160{left:213.920000pt;}
.x3_c00160{left:255.107200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1f6affd71fea26fdf9f84372.woff2')format("woff");}.ff1_c00161{font-family:ff1_c00161;line-height:1.070312;font-style:normal;font-weight:normal;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_af2705a2200c2d67854ad05f.woff2')format("woff");}.ff2_c00161{font-family:ff2_c00161;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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(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_c00161{vertical-align:0.000000px;}
.ls1_c00161{letter-spacing:0.000000px;}
.ls0_c00161{letter-spacing:6.588000px;}
.sc__c00161{text-shadow:none;}
.sc0_c00161{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00161{-webkit-text-stroke:0px transparent;}
.sc0_c00161{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00161{word-spacing:-18.414720px;}
.ws1_c00161{word-spacing:-15.012000px;}
.ws3_c00161{word-spacing:0.000000px;}
.ws2_c00161{word-spacing:171.815962px;}
._14_c00161{margin-left:-4.948001px;}
._3_c00161{margin-left:-2.216468px;}
._1_c00161{margin-left:-1.093374px;}
._5_c00161{width:1.055782px;}
._6_c00161{width:2.069893px;}
._2_c00161{width:3.150924px;}
._8_c00161{width:4.512317px;}
._7_c00161{width:5.697263px;}
._b_c00161{width:7.453964px;}
._c_c00161{width:8.488749px;}
._d_c00161{width:10.342540px;}
._e_c00161{width:17.288110px;}
._f_c00161{width:23.018980px;}
._10_c00161{width:24.803506px;}
._a_c00161{width:46.133497px;}
._9_c00161{width:47.684706px;}
._4_c00161{width:62.288245px;}
._15_c00161{width:88.635774px;}
._16_c00161{width:89.791574px;}
._13_c00161{width:170.762078px;}
._12_c00161{width:208.424987px;}
._11_c00161{width:845.765568px;}
._0_c00161{width:2261.432586px;}
.fc1_c00161{color:rgb(89,89,89);}
.fc0_c00161{color:rgb(0,0,0);}
.fs1_c00161{font-size:54.000000px;}
.fs0_c00161{font-size:66.240000px;}
.fs2_c00161{font-size:79.200000px;}
.y0_c00161{bottom:0.000000px;}
.y1e_c00161{bottom:17.175000px;}
.y15_c00161{bottom:49.290000px;}
.y16_c00161{bottom:99.615000px;}
.y13_c00161{bottom:104.759700px;}
.y12_c00161{bottom:125.820450px;}
.y11_c00161{bottom:146.916600px;}
.y17_c00161{bottom:160.919850px;}
.y10_c00161{bottom:167.970450px;}
.yf_c00161{bottom:188.850300px;}
.ye_c00161{bottom:209.910000px;}
.y18_c00161{bottom:222.224700px;}
.yd_c00161{bottom:230.970300px;}
.yc_c00161{bottom:251.850150px;}
.yb_c00161{bottom:272.909850px;}
.y19_c00161{bottom:283.529550px;}
.ya_c00161{bottom:293.970150px;}
.y9_c00161{bottom:314.850300px;}
.y8_c00161{bottom:335.909700px;}
.y1a_c00161{bottom:344.849700px;}
.y7_c00161{bottom:356.970000px;}
.y6_c00161{bottom:386.850000px;}
.y1b_c00161{bottom:406.154550px;}
.y5_c00161{bottom:416.955000px;}
.y1c_c00161{bottom:467.460000px;}
.y4_c00161{bottom:474.015000px;}
.y3_c00161{bottom:512.895300px;}
.y1d_c00161{bottom:526.349700px;}
.y2_c00161{bottom:533.955000px;}
.y14_c00161{bottom:578.880000px;}
.y1_c00161{bottom:1174.680000px;}
.h3_c00161{height:48.224531px;}
.h2_c00161{height:56.957344px;}
.h4_c00161{height:56.958544px;}
.h6_c00161{height:68.101172px;}
.h5_c00161{height:556.200000px;}
.h1_c00161{height:1263.000000px;}
.h0_c00161{height:1263.060000px;}
.w2_c00161{width:680.220000px;}
.w1_c00161{width:893.250000px;}
.w0_c00161{width:893.340000px;}
.x0_c00161{left:0.000000px;}
.x9_c00161{left:9.864030px;}
.x7_c00161{left:34.665000px;}
.x8_c00161{left:41.069880px;}
.xb_c00161{left:43.814970px;}
.xd_c00161{left:47.444820px;}
.xa_c00161{left:53.924730px;}
.xf_c00161{left:56.880000px;}
.xc_c00161{left:64.049670px;}
.xe_c00161{left:82.724670px;}
.x1_c00161{left:127.655850px;}
.x5_c00161{left:130.500000px;}
.x3_c00161{left:148.896150px;}
.x4_c00161{left:191.550000px;}
.x6_c00161{left:227.805000px;}
.x2_c00161{left:234.030750px;}
@media print{
.v0_c00161{vertical-align:0.000000pt;}
.ls1_c00161{letter-spacing:0.000000pt;}
.ls0_c00161{letter-spacing:5.856000pt;}
.ws0_c00161{word-spacing:-16.368640pt;}
.ws1_c00161{word-spacing:-13.344000pt;}
.ws3_c00161{word-spacing:0.000000pt;}
.ws2_c00161{word-spacing:152.725299pt;}
._14_c00161{margin-left:-4.398223pt;}
._3_c00161{margin-left:-1.970194pt;}
._1_c00161{margin-left:-0.971888pt;}
._5_c00161{width:0.938473pt;}
._6_c00161{width:1.839905pt;}
._2_c00161{width:2.800822pt;}
._8_c00161{width:4.010949pt;}
._7_c00161{width:5.064233pt;}
._b_c00161{width:6.625746pt;}
._c_c00161{width:7.545555pt;}
._d_c00161{width:9.193369pt;}
._e_c00161{width:15.367209pt;}
._f_c00161{width:20.461315pt;}
._10_c00161{width:22.047561pt;}
._a_c00161{width:41.007553pt;}
._9_c00161{width:42.386405pt;}
._4_c00161{width:55.367329pt;}
._15_c00161{width:78.787355pt;}
._16_c00161{width:79.814732pt;}
._13_c00161{width:151.788514pt;}
._12_c00161{width:185.266655pt;}
._11_c00161{width:751.791616pt;}
._0_c00161{width:2010.162299pt;}
.fs1_c00161{font-size:48.000000pt;}
.fs0_c00161{font-size:58.880000pt;}
.fs2_c00161{font-size:70.400000pt;}
.y0_c00161{bottom:0.000000pt;}
.y1e_c00161{bottom:15.266667pt;}
.y15_c00161{bottom:43.813333pt;}
.y16_c00161{bottom:88.546667pt;}
.y13_c00161{bottom:93.119733pt;}
.y12_c00161{bottom:111.840400pt;}
.y11_c00161{bottom:130.592533pt;}
.y17_c00161{bottom:143.039867pt;}
.y10_c00161{bottom:149.307067pt;}
.yf_c00161{bottom:167.866933pt;}
.ye_c00161{bottom:186.586667pt;}
.y18_c00161{bottom:197.533067pt;}
.yd_c00161{bottom:205.306933pt;}
.yc_c00161{bottom:223.866800pt;}
.yb_c00161{bottom:242.586533pt;}
.y19_c00161{bottom:252.026267pt;}
.ya_c00161{bottom:261.306800pt;}
.y9_c00161{bottom:279.866933pt;}
.y8_c00161{bottom:298.586400pt;}
.y1a_c00161{bottom:306.533067pt;}
.y7_c00161{bottom:317.306667pt;}
.y6_c00161{bottom:343.866667pt;}
.y1b_c00161{bottom:361.026267pt;}
.y5_c00161{bottom:370.626667pt;}
.y1c_c00161{bottom:415.520000pt;}
.y4_c00161{bottom:421.346667pt;}
.y3_c00161{bottom:455.906933pt;}
.y1d_c00161{bottom:467.866400pt;}
.y2_c00161{bottom:474.626667pt;}
.y14_c00161{bottom:514.560000pt;}
.y1_c00161{bottom:1044.160000pt;}
.h3_c00161{height:42.866250pt;}
.h2_c00161{height:50.628750pt;}
.h4_c00161{height:50.629817pt;}
.h6_c00161{height:60.534375pt;}
.h5_c00161{height:494.400000pt;}
.h1_c00161{height:1122.666667pt;}
.h0_c00161{height:1122.720000pt;}
.w2_c00161{width:604.640000pt;}
.w1_c00161{width:794.000000pt;}
.w0_c00161{width:794.080000pt;}
.x0_c00161{left:0.000000pt;}
.x9_c00161{left:8.768027pt;}
.x7_c00161{left:30.813333pt;}
.x8_c00161{left:36.506560pt;}
.xb_c00161{left:38.946640pt;}
.xd_c00161{left:42.173173pt;}
.xa_c00161{left:47.933093pt;}
.xf_c00161{left:50.560000pt;}
.xc_c00161{left:56.933040pt;}
.xe_c00161{left:73.533040pt;}
.x1_c00161{left:113.471867pt;}
.x5_c00161{left:116.000000pt;}
.x3_c00161{left:132.352133pt;}
.x4_c00161{left:170.266667pt;}
.x6_c00161{left:202.493333pt;}
.x2_c00161{left:208.027333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_488f25a08d262f49605a39ff.woff2')format("woff");}.ff1_c00162{font-family:ff1_c00162;line-height:1.070312;font-style:normal;font-weight:normal;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_7db6d0ced883f601fd896c83.woff2')format("woff");}.ff2_c00162{font-family:ff2_c00162;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00162{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00162{vertical-align:0.000000px;}
.ls1_c00162{letter-spacing:0.000000px;}
.ls0_c00162{letter-spacing:0.107520px;}
.sc__c00162{text-shadow:none;}
.sc0_c00162{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00162{-webkit-text-stroke:0px transparent;}
.sc0_c00162{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00162{word-spacing:-18.414720px;}
.ws1_c00162{word-spacing:-15.012000px;}
.ws2_c00162{word-spacing:0.000000px;}
._1_c00162{margin-left:-1.126186px;}
._4_c00162{width:1.010495px;}
._3_c00162{width:30.004478px;}
._2_c00162{width:80.517558px;}
._0_c00162{width:2261.432586px;}
.fc0_c00162{color:rgb(0,0,0);}
.fs1_c00162{font-size:54.000000px;}
.fs0_c00162{font-size:66.240000px;}
.y0_c00162{bottom:0.000000px;}
.y27_c00162{bottom:8.093850px;}
.y1f_c00162{bottom:8.099850px;}
.yf_c00162{bottom:8.100000px;}
.y28_c00162{bottom:17.093850px;}
.y12_c00162{bottom:17.100000px;}
.y20_c00162{bottom:17.145000px;}
.y26_c00162{bottom:26.093850px;}
.y11_c00162{bottom:26.100000px;}
.y1e_c00162{bottom:26.145000px;}
.y9_c00162{bottom:29.880000px;}
.yd_c00162{bottom:38.880000px;}
.y7_c00162{bottom:47.880000px;}
.yc_c00162{bottom:56.880000px;}
.y5_c00162{bottom:65.880000px;}
.yb_c00162{bottom:74.880000px;}
.y6_c00162{bottom:83.880000px;}
.ya_c00162{bottom:92.880000px;}
.y29_c00162{bottom:98.640300px;}
.y8_c00162{bottom:101.880000px;}
.y25_c00162{bottom:144.396150px;}
.y24_c00162{bottom:190.110000px;}
.y23_c00162{bottom:236.010000px;}
.y22_c00162{bottom:281.730000px;}
.y21_c00162{bottom:327.450000px;}
.y1d_c00162{bottom:373.170000px;}
.y1c_c00162{bottom:418.935000px;}
.y1b_c00162{bottom:464.655000px;}
.y1a_c00162{bottom:510.555000px;}
.y19_c00162{bottom:556.275000px;}
.y18_c00162{bottom:601.995000px;}
.y17_c00162{bottom:647.745000px;}
.y16_c00162{bottom:693.465000px;}
.y15_c00162{bottom:739.185000px;}
.y14_c00162{bottom:767.085000px;}
.y13_c00162{bottom:812.805000px;}
.y10_c00162{bottom:858.525000px;}
.ye_c00162{bottom:904.290000px;}
.y4_c00162{bottom:932.010000px;}
.y3_c00162{bottom:1097.609700px;}
.y2_c00162{bottom:1118.670000px;}
.y1_c00162{bottom:1174.680000px;}
.h5_c00162{height:27.000000px;}
.h7_c00162{height:45.000000px;}
.h6_c00162{height:45.035700px;}
.h4_c00162{height:48.224531px;}
.h2_c00162{height:56.957344px;}
.h3_c00162{height:142.739700px;}
.h1_c00162{height:1263.000000px;}
.h0_c00162{height:1263.060000px;}
.w3_c00162{width:94.860300px;}
.w4_c00162{width:137.555850px;}
.w6_c00162{width:137.700000px;}
.w5_c00162{width:147.096150px;}
.w2_c00162{width:158.430000px;}
.w7_c00162{width:678.705000px;}
.w1_c00162{width:893.250000px;}
.w0_c00162{width:893.340000px;}
.x0_c00162{left:0.000000px;}
.xc_c00162{left:3.240000px;}
.x9_c00162{left:5.760000px;}
.x6_c00162{left:12.060000px;}
.x10_c00162{left:13.320000px;}
.x8_c00162{left:16.380000px;}
.xf_c00162{left:17.460000px;}
.xd_c00162{left:20.700000px;}
.x18_c00162{left:23.940000px;}
.x5_c00162{left:27.360000px;}
.x17_c00162{left:28.980000px;}
.x12_c00162{left:31.500000px;}
.x16_c00162{left:32.580120px;}
.xa_c00162{left:33.840000px;}
.x15_c00162{left:36.360000px;}
.x11_c00162{left:43.740000px;}
.x13_c00162{left:52.740000px;}
.x3_c00162{left:55.794000px;}
.x14_c00162{left:64.260000px;}
.x1_c00162{left:127.655850px;}
.x2_c00162{left:234.029850px;}
.x4_c00162{left:287.535000px;}
.x7_c00162{left:383.115000px;}
.xb_c00162{left:521.385000px;}
.xe_c00162{left:669.390000px;}
@media print{
.v0_c00162{vertical-align:0.000000pt;}
.ls1_c00162{letter-spacing:0.000000pt;}
.ls0_c00162{letter-spacing:0.095573pt;}
.ws0_c00162{word-spacing:-16.368640pt;}
.ws1_c00162{word-spacing:-13.344000pt;}
.ws2_c00162{word-spacing:0.000000pt;}
._1_c00162{margin-left:-1.001054pt;}
._4_c00162{width:0.898217pt;}
._3_c00162{width:26.670648pt;}
._2_c00162{width:71.571162pt;}
._0_c00162{width:2010.162299pt;}
.fs1_c00162{font-size:48.000000pt;}
.fs0_c00162{font-size:58.880000pt;}
.y0_c00162{bottom:0.000000pt;}
.y27_c00162{bottom:7.194533pt;}
.y1f_c00162{bottom:7.199867pt;}
.yf_c00162{bottom:7.200000pt;}
.y28_c00162{bottom:15.194533pt;}
.y12_c00162{bottom:15.200000pt;}
.y20_c00162{bottom:15.240000pt;}
.y26_c00162{bottom:23.194533pt;}
.y11_c00162{bottom:23.200000pt;}
.y1e_c00162{bottom:23.240000pt;}
.y9_c00162{bottom:26.560000pt;}
.yd_c00162{bottom:34.560000pt;}
.y7_c00162{bottom:42.560000pt;}
.yc_c00162{bottom:50.560000pt;}
.y5_c00162{bottom:58.560000pt;}
.yb_c00162{bottom:66.560000pt;}
.y6_c00162{bottom:74.560000pt;}
.ya_c00162{bottom:82.560000pt;}
.y29_c00162{bottom:87.680267pt;}
.y8_c00162{bottom:90.560000pt;}
.y25_c00162{bottom:128.352133pt;}
.y24_c00162{bottom:168.986667pt;}
.y23_c00162{bottom:209.786667pt;}
.y22_c00162{bottom:250.426667pt;}
.y21_c00162{bottom:291.066667pt;}
.y1d_c00162{bottom:331.706667pt;}
.y1c_c00162{bottom:372.386667pt;}
.y1b_c00162{bottom:413.026667pt;}
.y1a_c00162{bottom:453.826667pt;}
.y19_c00162{bottom:494.466667pt;}
.y18_c00162{bottom:535.106667pt;}
.y17_c00162{bottom:575.773333pt;}
.y16_c00162{bottom:616.413333pt;}
.y15_c00162{bottom:657.053333pt;}
.y14_c00162{bottom:681.853333pt;}
.y13_c00162{bottom:722.493333pt;}
.y10_c00162{bottom:763.133333pt;}
.ye_c00162{bottom:803.813333pt;}
.y4_c00162{bottom:828.453333pt;}
.y3_c00162{bottom:975.653067pt;}
.y2_c00162{bottom:994.373333pt;}
.y1_c00162{bottom:1044.160000pt;}
.h5_c00162{height:24.000000pt;}
.h7_c00162{height:40.000000pt;}
.h6_c00162{height:40.031733pt;}
.h4_c00162{height:42.866250pt;}
.h2_c00162{height:50.628750pt;}
.h3_c00162{height:126.879733pt;}
.h1_c00162{height:1122.666667pt;}
.h0_c00162{height:1122.720000pt;}
.w3_c00162{width:84.320267pt;}
.w4_c00162{width:122.271867pt;}
.w6_c00162{width:122.400000pt;}
.w5_c00162{width:130.752133pt;}
.w2_c00162{width:140.826667pt;}
.w7_c00162{width:603.293333pt;}
.w1_c00162{width:794.000000pt;}
.w0_c00162{width:794.080000pt;}
.x0_c00162{left:0.000000pt;}
.xc_c00162{left:2.880000pt;}
.x9_c00162{left:5.120000pt;}
.x6_c00162{left:10.720000pt;}
.x10_c00162{left:11.840000pt;}
.x8_c00162{left:14.560000pt;}
.xf_c00162{left:15.520000pt;}
.xd_c00162{left:18.400000pt;}
.x18_c00162{left:21.280000pt;}
.x5_c00162{left:24.320000pt;}
.x17_c00162{left:25.760000pt;}
.x12_c00162{left:28.000000pt;}
.x16_c00162{left:28.960107pt;}
.xa_c00162{left:30.080000pt;}
.x15_c00162{left:32.320000pt;}
.x11_c00162{left:38.880000pt;}
.x13_c00162{left:46.880000pt;}
.x3_c00162{left:49.594667pt;}
.x14_c00162{left:57.120000pt;}
.x1_c00162{left:113.471867pt;}
.x2_c00162{left:208.026533pt;}
.x4_c00162{left:255.586667pt;}
.x7_c00162{left:340.546667pt;}
.xb_c00162{left:463.453333pt;}
.xe_c00162{left:595.013333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_81d4fa4f4ff07770c08040b8.woff2')format("woff");}.ff1_c00163{font-family:ff1_c00163;line-height:1.070312;font-style:normal;font-weight:normal;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_7db6d0ced883f601fd896c83.woff2')format("woff");}.ff2_c00163{font-family:ff2_c00163;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00163;src:url('chunks/assets/font_514433efa992a6c60e03505f.woff2')format("woff");}.ff3_c00163{font-family:ff3_c00163;line-height:0.938965;font-style: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(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1_c00163{vertical-align:-5.760936px;}
.v0_c00163{vertical-align:0.000000px;}
.v2_c00163{vertical-align:5.760936px;}
.v3_c00163{vertical-align:23.758620px;}
.ls6_c00163{letter-spacing:0.000000px;}
.ls2_c00163{letter-spacing:0.000480px;}
.ls0_c00163{letter-spacing:0.107520px;}
.ls3_c00163{letter-spacing:0.305274px;}
.ls4_c00163{letter-spacing:6.588000px;}
.ls1_c00163{letter-spacing:9.466140px;}
.ls5_c00163{letter-spacing:15.227040px;}
.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:-36.829440px;}
.ws0_c00163{word-spacing:-18.414720px;}
.ws1_c00163{word-spacing:-15.012000px;}
.ws2_c00163{word-spacing:-11.609280px;}
.ws4_c00163{word-spacing:0.000000px;}
._f_c00163{margin-left:-5.418117px;}
._e_c00163{margin-left:-4.206053px;}
._8_c00163{margin-left:-2.935723px;}
._1_c00163{margin-left:-1.126186px;}
._7_c00163{width:1.188409px;}
._3_c00163{width:3.045628px;}
._b_c00163{width:4.505481px;}
._d_c00163{width:5.940141px;}
._c_c00163{width:7.880741px;}
._9_c00163{width:10.465385px;}
._a_c00163{width:12.113819px;}
._6_c00163{width:13.911097px;}
._5_c00163{width:15.301127px;}
._4_c00163{width:16.428747px;}
._2_c00163{width:93.628012px;}
._10_c00163{width:845.765568px;}
._0_c00163{width:2261.432586px;}
.fc0_c00163{color:rgb(0,0,0);}
.fs2_c00163{font-size:41.760000px;}
.fs1_c00163{font-size:54.000000px;}
.fs0_c00163{font-size:66.240000px;}
.y0_c00163{bottom:0.000000px;}
.y10_c00163{bottom:8.100000px;}
.y13_c00163{bottom:17.100000px;}
.y12_c00163{bottom:26.100000px;}
.ya_c00163{bottom:29.880000px;}
.y17_c00163{bottom:35.100000px;}
.ye_c00163{bottom:38.880000px;}
.y16_c00163{bottom:44.100000px;}
.y8_c00163{bottom:47.880000px;}
.yd_c00163{bottom:56.880000px;}
.y6_c00163{bottom:65.880000px;}
.yc_c00163{bottom:74.880000px;}
.y7_c00163{bottom:83.880000px;}
.yb_c00163{bottom:92.880000px;}
.y9_c00163{bottom:101.880000px;}
.y2d_c00163{bottom:233.310000px;}
.y2c_c00163{bottom:254.370300px;}
.y2b_c00163{bottom:275.250150px;}
.y2a_c00163{bottom:296.309850px;}
.y29_c00163{bottom:317.370150px;}
.y28_c00163{bottom:338.250000px;}
.y27_c00163{bottom:368.310000px;}
.y26_c00163{bottom:389.415450px;}
.y25_c00163{bottom:410.295300px;}
.y24_c00163{bottom:431.354700px;}
.y23_c00163{bottom:452.415450px;}
.y22_c00163{bottom:473.295300px;}
.y21_c00163{bottom:494.355000px;}
.y20_c00163{bottom:524.415450px;}
.y1f_c00163{bottom:545.295300px;}
.y1e_c00163{bottom:566.355000px;}
.y1d_c00163{bottom:596.235000px;}
.y1c_c00163{bottom:617.295300px;}
.y1b_c00163{bottom:638.354700px;}
.y1a_c00163{bottom:659.445000px;}
.y19_c00163{bottom:689.325000px;}
.y18_c00163{bottom:719.385000px;}
.y15_c00163{bottom:746.025000px;}
.y14_c00163{bottom:809.745000px;}
.y11_c00163{bottom:837.465000px;}
.yf_c00163{bottom:883.185000px;}
.y5_c00163{bottom:911.130000px;}
.y4_c00163{bottom:1076.550000px;}
.y3_c00163{bottom:1097.609700px;}
.y2_c00163{bottom:1118.670000px;}
.y1_c00163{bottom:1174.680000px;}
.h7_c00163{height:27.000000px;}
.h5_c00163{height:27.036300px;}
.h6_c00163{height:45.000000px;}
.h4_c00163{height:48.224531px;}
.h2_c00163{height:56.957344px;}
.h9_c00163{height:56.958544px;}
.ha_c00163{height:59.666511px;}
.hb_c00163{height:59.668851px;}
.h8_c00163{height:63.000000px;}
.h3_c00163{height:142.560300px;}
.h1_c00163{height:1263.000000px;}
.h0_c00163{height:1263.060000px;}
.w3_c00163{width:94.859700px;}
.w6_c00163{width:137.340300px;}
.w4_c00163{width:137.555850px;}
.w5_c00163{width:147.276000px;}
.w2_c00163{width:158.610000px;}
.w9_c00163{width:159.690000px;}
.w7_c00163{width:678.705000px;}
.w8_c00163{width:679.785000px;}
.w1_c00163{width:893.250000px;}
.w0_c00163{width:893.340000px;}
.x0_c00163{left:0.000000px;}
.xc_c00163{left:3.420000px;}
.x9_c00163{left:5.760000px;}
.x6_c00163{left:11.880000px;}
.xf_c00163{left:13.140000px;}
.x8_c00163{left:16.380000px;}
.xd_c00163{left:20.880000px;}
.x5_c00163{left:27.180000px;}
.x11_c00163{left:31.320000px;}
.x15_c00163{left:32.400000px;}
.xa_c00163{left:33.840000px;}
.x14_c00163{left:36.000000px;}
.x10_c00163{left:43.380000px;}
.x12_c00163{left:52.740000px;}
.x3_c00163{left:55.794000px;}
.x13_c00163{left:64.440000px;}
.x1_c00163{left:127.655850px;}
.x16_c00163{left:148.896150px;}
.x17_c00163{left:191.550000px;}
.x4_c00163{left:287.715000px;}
.x2_c00163{left:340.096350px;}
.x7_c00163{left:383.295000px;}
.xb_c00163{left:521.565000px;}
.xe_c00163{left:669.750000px;}
@media print{
.v1_c00163{vertical-align:-5.120832pt;}
.v0_c00163{vertical-align:0.000000pt;}
.v2_c00163{vertical-align:5.120832pt;}
.v3_c00163{vertical-align:21.118773pt;}
.ls6_c00163{letter-spacing:0.000000pt;}
.ls2_c00163{letter-spacing:0.000427pt;}
.ls0_c00163{letter-spacing:0.095573pt;}
.ls3_c00163{letter-spacing:0.271354pt;}
.ls4_c00163{letter-spacing:5.856000pt;}
.ls1_c00163{letter-spacing:8.414347pt;}
.ls5_c00163{letter-spacing:13.535147pt;}
.ws3_c00163{word-spacing:-32.737280pt;}
.ws0_c00163{word-spacing:-16.368640pt;}
.ws1_c00163{word-spacing:-13.344000pt;}
.ws2_c00163{word-spacing:-10.319360pt;}
.ws4_c00163{word-spacing:0.000000pt;}
._f_c00163{margin-left:-4.816104pt;}
._e_c00163{margin-left:-3.738713pt;}
._8_c00163{margin-left:-2.609532pt;}
._1_c00163{margin-left:-1.001054pt;}
._7_c00163{width:1.056364pt;}
._3_c00163{width:2.707225pt;}
._b_c00163{width:4.004872pt;}
._d_c00163{width:5.280125pt;}
._c_c00163{width:7.005103pt;}
._9_c00163{width:9.302564pt;}
._a_c00163{width:10.767839pt;}
._6_c00163{width:12.365419pt;}
._5_c00163{width:13.601002pt;}
._4_c00163{width:14.603331pt;}
._2_c00163{width:83.224899pt;}
._10_c00163{width:751.791616pt;}
._0_c00163{width:2010.162299pt;}
.fs2_c00163{font-size:37.120000pt;}
.fs1_c00163{font-size:48.000000pt;}
.fs0_c00163{font-size:58.880000pt;}
.y0_c00163{bottom:0.000000pt;}
.y10_c00163{bottom:7.200000pt;}
.y13_c00163{bottom:15.200000pt;}
.y12_c00163{bottom:23.200000pt;}
.ya_c00163{bottom:26.560000pt;}
.y17_c00163{bottom:31.200000pt;}
.ye_c00163{bottom:34.560000pt;}
.y16_c00163{bottom:39.200000pt;}
.y8_c00163{bottom:42.560000pt;}
.yd_c00163{bottom:50.560000pt;}
.y6_c00163{bottom:58.560000pt;}
.yc_c00163{bottom:66.560000pt;}
.y7_c00163{bottom:74.560000pt;}
.yb_c00163{bottom:82.560000pt;}
.y9_c00163{bottom:90.560000pt;}
.y2d_c00163{bottom:207.386667pt;}
.y2c_c00163{bottom:226.106933pt;}
.y2b_c00163{bottom:244.666800pt;}
.y2a_c00163{bottom:263.386533pt;}
.y29_c00163{bottom:282.106800pt;}
.y28_c00163{bottom:300.666667pt;}
.y27_c00163{bottom:327.386667pt;}
.y26_c00163{bottom:346.147067pt;}
.y25_c00163{bottom:364.706933pt;}
.y24_c00163{bottom:383.426400pt;}
.y23_c00163{bottom:402.147067pt;}
.y22_c00163{bottom:420.706933pt;}
.y21_c00163{bottom:439.426667pt;}
.y20_c00163{bottom:466.147067pt;}
.y1f_c00163{bottom:484.706933pt;}
.y1e_c00163{bottom:503.426667pt;}
.y1d_c00163{bottom:529.986667pt;}
.y1c_c00163{bottom:548.706933pt;}
.y1b_c00163{bottom:567.426400pt;}
.y1a_c00163{bottom:586.173333pt;}
.y19_c00163{bottom:612.733333pt;}
.y18_c00163{bottom:639.453333pt;}
.y15_c00163{bottom:663.133333pt;}
.y14_c00163{bottom:719.773333pt;}
.y11_c00163{bottom:744.413333pt;}
.yf_c00163{bottom:785.053333pt;}
.y5_c00163{bottom:809.893333pt;}
.y4_c00163{bottom:956.933333pt;}
.y3_c00163{bottom:975.653067pt;}
.y2_c00163{bottom:994.373333pt;}
.y1_c00163{bottom:1044.160000pt;}
.h7_c00163{height:24.000000pt;}
.h5_c00163{height:24.032267pt;}
.h6_c00163{height:40.000000pt;}
.h4_c00163{height:42.866250pt;}
.h2_c00163{height:50.628750pt;}
.h9_c00163{height:50.629817pt;}
.ha_c00163{height:53.036898pt;}
.hb_c00163{height:53.038978pt;}
.h8_c00163{height:56.000000pt;}
.h3_c00163{height:126.720267pt;}
.h1_c00163{height:1122.666667pt;}
.h0_c00163{height:1122.720000pt;}
.w3_c00163{width:84.319733pt;}
.w6_c00163{width:122.080267pt;}
.w4_c00163{width:122.271867pt;}
.w5_c00163{width:130.912000pt;}
.w2_c00163{width:140.986667pt;}
.w9_c00163{width:141.946667pt;}
.w7_c00163{width:603.293333pt;}
.w8_c00163{width:604.253333pt;}
.w1_c00163{width:794.000000pt;}
.w0_c00163{width:794.080000pt;}
.x0_c00163{left:0.000000pt;}
.xc_c00163{left:3.040000pt;}
.x9_c00163{left:5.120000pt;}
.x6_c00163{left:10.560000pt;}
.xf_c00163{left:11.680000pt;}
.x8_c00163{left:14.560000pt;}
.xd_c00163{left:18.560000pt;}
.x5_c00163{left:24.160000pt;}
.x11_c00163{left:27.840000pt;}
.x15_c00163{left:28.800000pt;}
.xa_c00163{left:30.080000pt;}
.x14_c00163{left:32.000000pt;}
.x10_c00163{left:38.560000pt;}
.x12_c00163{left:46.880000pt;}
.x3_c00163{left:49.594667pt;}
.x13_c00163{left:57.280000pt;}
.x1_c00163{left:113.471867pt;}
.x16_c00163{left:132.352133pt;}
.x17_c00163{left:170.266667pt;}
.x4_c00163{left:255.746667pt;}
.x2_c00163{left:302.307867pt;}
.x7_c00163{left:340.706667pt;}
.xb_c00163{left:463.613333pt;}
.xe_c00163{left:595.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_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_0621b14f1c86ad30b1dd4c97.woff2')format("woff");}.ff1_c00164{font-family:ff1_c00164;line-height:1.070312;font-style:normal;font-weight:normal;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_e8a4eeb4543693754fc124e7.woff2')format("woff");}.ff2_c00164{font-family:ff2_c00164;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00164{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00164{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1_c00164{vertical-align:-5.760936px;}
.v0_c00164{vertical-align:0.000000px;}
.v3_c00164{vertical-align:5.760936px;}
.v2_c00164{vertical-align:23.758620px;}
.ls4_c00164{letter-spacing:0.000000px;}
.ls0_c00164{letter-spacing:0.107520px;}
.ls1_c00164{letter-spacing:3.885660px;}
.ls2_c00164{letter-spacing:5.868480px;}
.ls3_c00164{letter-spacing:17.388000px;}
.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:-18.414720px;}
.ws2_c00164{word-spacing:-15.012000px;}
.ws0_c00164{word-spacing:-11.609280px;}
.ws3_c00164{word-spacing:0.000000px;}
._8_c00164{margin-left:-3.907180px;}
._7_c00164{margin-left:-2.906328px;}
._1_c00164{margin-left:-1.126186px;}
._3_c00164{width:1.082425px;}
._4_c00164{width:4.206443px;}
._6_c00164{width:5.501169px;}
._5_c00164{width:6.969540px;}
._2_c00164{width:80.517558px;}
._0_c00164{width:2261.432586px;}
.fc0_c00164{color:rgb(0,0,0);}
.fs1_c00164{font-size:41.760000px;}
.fs2_c00164{font-size:54.000000px;}
.fs0_c00164{font-size:66.240000px;}
.y0_c00164{bottom:0.000000px;}
.y8_c00164{bottom:4.320000px;}
.yc_c00164{bottom:8.100000px;}
.y12_c00164{bottom:8.145000px;}
.y24_c00164{bottom:10.620000px;}
.ya_c00164{bottom:12.960000px;}
.yf_c00164{bottom:17.100000px;}
.y29_c00164{bottom:17.145000px;}
.y7_c00164{bottom:22.320000px;}
.y5_c00164{bottom:24.120000px;}
.ye_c00164{bottom:26.100000px;}
.y28_c00164{bottom:26.145000px;}
.y23_c00164{bottom:28.620000px;}
.y9_c00164{bottom:35.460000px;}
.y20_c00164{bottom:39.780000px;}
.y6_c00164{bottom:40.320000px;}
.y22_c00164{bottom:46.620000px;}
.y25_c00164{bottom:51.120000px;}
.y21_c00164{bottom:69.120000px;}
.y33_c00164{bottom:109.080000px;}
.y32_c00164{bottom:130.140300px;}
.y31_c00164{bottom:160.050000px;}
.y30_c00164{bottom:186.690000px;}
.y2f_c00164{bottom:214.410000px;}
.y2e_c00164{bottom:242.310000px;}
.y2d_c00164{bottom:270.030000px;}
.y2c_c00164{bottom:297.750000px;}
.y2b_c00164{bottom:325.470000px;}
.y2a_c00164{bottom:353.190000px;}
.y27_c00164{bottom:380.910000px;}
.y26_c00164{bottom:426.855000px;}
.y1f_c00164{bottom:454.575000px;}
.y1e_c00164{bottom:567.975300px;}
.y1d_c00164{bottom:589.035000px;}
.y1c_c00164{bottom:637.095000px;}
.y1b_c00164{bottom:658.005000px;}
.y1a_c00164{bottom:679.065300px;}
.y19_c00164{bottom:700.125000px;}
.y18_c00164{bottom:730.005000px;}
.y17_c00164{bottom:747.645000px;}
.y16_c00164{bottom:775.365000px;}
.y15_c00164{bottom:803.085000px;}
.y14_c00164{bottom:830.985000px;}
.y13_c00164{bottom:858.705000px;}
.y11_c00164{bottom:886.425000px;}
.y10_c00164{bottom:914.190000px;}
.yd_c00164{bottom:941.910000px;}
.yb_c00164{bottom:987.630000px;}
.y4_c00164{bottom:1015.530000px;}
.y3_c00164{bottom:1097.609700px;}
.y2_c00164{bottom:1118.670000px;}
.y1_c00164{bottom:1174.680000px;}
.h6_c00164{height:27.000000px;}
.h8_c00164{height:27.035700px;}
.h7_c00164{height:45.000000px;}
.ha_c00164{height:45.036300px;}
.h4_c00164{height:48.224531px;}
.h5_c00164{height:54.161042px;}
.h2_c00164{height:56.957344px;}
.h3_c00164{height:59.220150px;}
.h9_c00164{height:90.540300px;}
.h1_c00164{height:1263.000000px;}
.h0_c00164{height:1263.060000px;}
.w9_c00164{width:115.560300px;}
.w8_c00164{width:147.996150px;}
.w7_c00164{width:158.790000px;}
.w3_c00164{width:205.410000px;}
.w4_c00164{width:228.270000px;}
.w2_c00164{width:243.390000px;}
.w6_c00164{width:253.830000px;}
.w5_c00164{width:678.705000px;}
.w1_c00164{width:893.250000px;}
.w0_c00164{width:893.340000px;}
.x0_c00164{left:0.000000px;}
.x15_c00164{left:1.980000px;}
.x19_c00164{left:3.240000px;}
.xb_c00164{left:4.859700px;}
.x13_c00164{left:6.300000px;}
.x18_c00164{left:9.180000px;}
.x6_c00164{left:12.600000px;}
.x14_c00164{left:14.760000px;}
.x21_c00164{left:17.100000px;}
.x1f_c00164{left:24.300000px;}
.x5_c00164{left:26.100000px;}
.x1b_c00164{left:31.680000px;}
.x20_c00164{left:33.300000px;}
.x1e_c00164{left:40.500000px;}
.x1d_c00164{left:46.080000px;}
.x17_c00164{left:47.880000px;}
.x12_c00164{left:53.460000px;}
.x1c_c00164{left:62.280000px;}
.xa_c00164{left:70.065000px;}
.xf_c00164{left:73.665000px;}
.x7_c00164{left:74.730000px;}
.xe_c00164{left:80.865000px;}
.x9_c00164{left:88.245000px;}
.xc_c00164{left:93.630000px;}
.x3_c00164{left:98.274000px;}
.xd_c00164{left:102.645000px;}
.x1_c00164{left:127.655850px;}
.x10_c00164{left:148.888050px;}
.x2_c00164{left:234.029505px;}
.x4_c00164{left:372.675000px;}
.x11_c00164{left:383.115000px;}
.x16_c00164{left:542.805000px;}
.x8_c00164{left:578.805000px;}
.x1a_c00164{left:691.530000px;}
@media print{
.v1_c00164{vertical-align:-5.120832pt;}
.v0_c00164{vertical-align:0.000000pt;}
.v3_c00164{vertical-align:5.120832pt;}
.v2_c00164{vertical-align:21.118773pt;}
.ls4_c00164{letter-spacing:0.000000pt;}
.ls0_c00164{letter-spacing:0.095573pt;}
.ls1_c00164{letter-spacing:3.453920pt;}
.ls2_c00164{letter-spacing:5.216427pt;}
.ls3_c00164{letter-spacing:15.456000pt;}
.ws1_c00164{word-spacing:-16.368640pt;}
.ws2_c00164{word-spacing:-13.344000pt;}
.ws0_c00164{word-spacing:-10.319360pt;}
.ws3_c00164{word-spacing:0.000000pt;}
._8_c00164{margin-left:-3.473049pt;}
._7_c00164{margin-left:-2.583403pt;}
._1_c00164{margin-left:-1.001054pt;}
._3_c00164{width:0.962156pt;}
._4_c00164{width:3.739061pt;}
._6_c00164{width:4.889928pt;}
._5_c00164{width:6.195146pt;}
._2_c00164{width:71.571162pt;}
._0_c00164{width:2010.162299pt;}
.fs1_c00164{font-size:37.120000pt;}
.fs2_c00164{font-size:48.000000pt;}
.fs0_c00164{font-size:58.880000pt;}
.y0_c00164{bottom:0.000000pt;}
.y8_c00164{bottom:3.840000pt;}
.yc_c00164{bottom:7.200000pt;}
.y12_c00164{bottom:7.240000pt;}
.y24_c00164{bottom:9.440000pt;}
.ya_c00164{bottom:11.520000pt;}
.yf_c00164{bottom:15.200000pt;}
.y29_c00164{bottom:15.240000pt;}
.y7_c00164{bottom:19.840000pt;}
.y5_c00164{bottom:21.440000pt;}
.ye_c00164{bottom:23.200000pt;}
.y28_c00164{bottom:23.240000pt;}
.y23_c00164{bottom:25.440000pt;}
.y9_c00164{bottom:31.520000pt;}
.y20_c00164{bottom:35.360000pt;}
.y6_c00164{bottom:35.840000pt;}
.y22_c00164{bottom:41.440000pt;}
.y25_c00164{bottom:45.440000pt;}
.y21_c00164{bottom:61.440000pt;}
.y33_c00164{bottom:96.960000pt;}
.y32_c00164{bottom:115.680267pt;}
.y31_c00164{bottom:142.266667pt;}
.y30_c00164{bottom:165.946667pt;}
.y2f_c00164{bottom:190.586667pt;}
.y2e_c00164{bottom:215.386667pt;}
.y2d_c00164{bottom:240.026667pt;}
.y2c_c00164{bottom:264.666667pt;}
.y2b_c00164{bottom:289.306667pt;}
.y2a_c00164{bottom:313.946667pt;}
.y27_c00164{bottom:338.586667pt;}
.y26_c00164{bottom:379.426667pt;}
.y1f_c00164{bottom:404.066667pt;}
.y1e_c00164{bottom:504.866933pt;}
.y1d_c00164{bottom:523.586667pt;}
.y1c_c00164{bottom:566.306667pt;}
.y1b_c00164{bottom:584.893333pt;}
.y1a_c00164{bottom:603.613600pt;}
.y19_c00164{bottom:622.333333pt;}
.y18_c00164{bottom:648.893333pt;}
.y17_c00164{bottom:664.573333pt;}
.y16_c00164{bottom:689.213333pt;}
.y15_c00164{bottom:713.853333pt;}
.y14_c00164{bottom:738.653333pt;}
.y13_c00164{bottom:763.293333pt;}
.y11_c00164{bottom:787.933333pt;}
.y10_c00164{bottom:812.613333pt;}
.yd_c00164{bottom:837.253333pt;}
.yb_c00164{bottom:877.893333pt;}
.y4_c00164{bottom:902.693333pt;}
.y3_c00164{bottom:975.653067pt;}
.y2_c00164{bottom:994.373333pt;}
.y1_c00164{bottom:1044.160000pt;}
.h6_c00164{height:24.000000pt;}
.h8_c00164{height:24.031733pt;}
.h7_c00164{height:40.000000pt;}
.ha_c00164{height:40.032267pt;}
.h4_c00164{height:42.866250pt;}
.h5_c00164{height:48.143148pt;}
.h2_c00164{height:50.628750pt;}
.h3_c00164{height:52.640133pt;}
.h9_c00164{height:80.480267pt;}
.h1_c00164{height:1122.666667pt;}
.h0_c00164{height:1122.720000pt;}
.w9_c00164{width:102.720267pt;}
.w8_c00164{width:131.552133pt;}
.w7_c00164{width:141.146667pt;}
.w3_c00164{width:182.586667pt;}
.w4_c00164{width:202.906667pt;}
.w2_c00164{width:216.346667pt;}
.w6_c00164{width:225.626667pt;}
.w5_c00164{width:603.293333pt;}
.w1_c00164{width:794.000000pt;}
.w0_c00164{width:794.080000pt;}
.x0_c00164{left:0.000000pt;}
.x15_c00164{left:1.760000pt;}
.x19_c00164{left:2.880000pt;}
.xb_c00164{left:4.319733pt;}
.x13_c00164{left:5.600000pt;}
.x18_c00164{left:8.160000pt;}
.x6_c00164{left:11.200000pt;}
.x14_c00164{left:13.120000pt;}
.x21_c00164{left:15.200000pt;}
.x1f_c00164{left:21.600000pt;}
.x5_c00164{left:23.200000pt;}
.x1b_c00164{left:28.160000pt;}
.x20_c00164{left:29.600000pt;}
.x1e_c00164{left:36.000000pt;}
.x1d_c00164{left:40.960000pt;}
.x17_c00164{left:42.560000pt;}
.x12_c00164{left:47.520000pt;}
.x1c_c00164{left:55.360000pt;}
.xa_c00164{left:62.280000pt;}
.xf_c00164{left:65.480000pt;}
.x7_c00164{left:66.426667pt;}
.xe_c00164{left:71.880000pt;}
.x9_c00164{left:78.440000pt;}
.xc_c00164{left:83.226667pt;}
.x3_c00164{left:87.354667pt;}
.xd_c00164{left:91.240000pt;}
.x1_c00164{left:113.471867pt;}
.x10_c00164{left:132.344933pt;}
.x2_c00164{left:208.026227pt;}
.x4_c00164{left:331.266667pt;}
.x11_c00164{left:340.546667pt;}
.x16_c00164{left:482.493333pt;}
.x8_c00164{left:514.493333pt;}
.x1a_c00164{left:614.693333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_64d61b14ea2366d72ffac947.woff2')format("woff");}.ff1_c00165{font-family:ff1_c00165;line-height:1.070312;font-style:normal;font-weight:normal;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_ab109a43b5ea1cb31b59513b.woff2')format("woff");}.ff2_c00165{font-family:ff2_c00165;line-height:0.938965;font-style:normal;font-weight:normal;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_12dd7fae02be2c03a327b816.woff2')format("woff");}.ff3_c00165{font-family:ff3_c00165;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00165{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00165{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1_c00165{vertical-align:-5.760936px;}
.v0_c00165{vertical-align:0.000000px;}
.v3_c00165{vertical-align:5.758596px;}
.v2_c00165{vertical-align:23.758620px;}
.ls4_c00165{letter-spacing:0.000000px;}
.ls0_c00165{letter-spacing:0.000480px;}
.ls1_c00165{letter-spacing:0.109860px;}
.ls2_c00165{letter-spacing:0.829380px;}
.ls3_c00165{letter-spacing:3.707520px;}
.sc__c00165{text-shadow:none;}
.sc0_c00165{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00165{-webkit-text-stroke:0px transparent;}
.sc0_c00165{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00165{word-spacing:-18.414720px;}
.ws1_c00165{word-spacing:-15.012000px;}
.ws2_c00165{word-spacing:-11.609280px;}
.ws3_c00165{word-spacing:0.000000px;}
._3_c00165{margin-left:-3.362751px;}
._1_c00165{margin-left:-1.523950px;}
._2_c00165{width:1.147270px;}
._e_c00165{width:2.231235px;}
._5_c00165{width:3.437741px;}
._4_c00165{width:4.516772px;}
._d_c00165{width:6.293705px;}
._9_c00165{width:12.453361px;}
._a_c00165{width:13.686766px;}
._7_c00165{width:19.502984px;}
._8_c00165{width:20.550909px;}
._c_c00165{width:27.717846px;}
._b_c00165{width:28.949363px;}
._6_c00165{width:80.915322px;}
._f_c00165{width:845.765568px;}
._0_c00165{width:2261.432586px;}
.fc1_c00165{color:rgb(255,0,0);}
.fc0_c00165{color:rgb(0,0,0);}
.fs1_c00165{font-size:41.760000px;}
.fs2_c00165{font-size:54.000000px;}
.fs0_c00165{font-size:66.240000px;}
.y0_c00165{bottom:0.000000px;}
.y14_c00165{bottom:3.420000px;}
.y17_c00165{bottom:3.600000px;}
.y12_c00165{bottom:6.840000px;}
.y1a_c00165{bottom:8.100000px;}
.yf_c00165{bottom:23.760000px;}
.y11_c00165{bottom:24.840000px;}
.y10_c00165{bottom:42.840000px;}
.y2d_c00165{bottom:166.890000px;}
.y2c_c00165{bottom:187.950300px;}
.y2b_c00165{bottom:209.010000px;}
.y2a_c00165{bottom:230.070450px;}
.y29_c00165{bottom:250.950300px;}
.y28_c00165{bottom:272.010000px;}
.y27_c00165{bottom:302.070450px;}
.y26_c00165{bottom:322.950300px;}
.y25_c00165{bottom:344.010000px;}
.y24_c00165{bottom:365.070300px;}
.y23_c00165{bottom:385.950150px;}
.y22_c00165{bottom:407.055000px;}
.y21_c00165{bottom:437.115150px;}
.y20_c00165{bottom:457.995000px;}
.y1f_c00165{bottom:488.055000px;}
.y1e_c00165{bottom:514.695000px;}
.y1d_c00165{bottom:542.415000px;}
.y1c_c00165{bottom:570.135000px;}
.y1b_c00165{bottom:597.855000px;}
.y19_c00165{bottom:625.755000px;}
.y18_c00165{bottom:653.505000px;}
.y16_c00165{bottom:682.125000px;}
.y15_c00165{bottom:710.925000px;}
.y13_c00165{bottom:739.725000px;}
.ye_c00165{bottom:768.345000px;}
.yd_c00165{bottom:851.504850px;}
.yc_c00165{bottom:872.565150px;}
.yb_c00165{bottom:893.670000px;}
.ya_c00165{bottom:941.550000px;}
.y9_c00165{bottom:962.609700px;}
.y8_c00165{bottom:983.670150px;}
.y7_c00165{bottom:1004.550000px;}
.y6_c00165{bottom:1025.609700px;}
.y5_c00165{bottom:1046.670000px;}
.y4_c00165{bottom:1076.550000px;}
.y3_c00165{bottom:1097.609700px;}
.y2_c00165{bottom:1118.670000px;}
.y1_c00165{bottom:1174.680000px;}
.hb_c00165{height:27.000000px;}
.ha_c00165{height:27.036300px;}
.h8_c00165{height:27.900000px;}
.h9_c00165{height:28.079850px;}
.h6_c00165{height:48.224531px;}
.h7_c00165{height:54.163382px;}
.h2_c00165{height:56.957344px;}
.h3_c00165{height:59.666511px;}
.h4_c00165{height:59.668851px;}
.hc_c00165{height:59.846931px;}
.h5_c00165{height:60.300000px;}
.h1_c00165{height:1263.000000px;}
.h0_c00165{height:1263.060000px;}
.w4_c00165{width:190.650000px;}
.w3_c00165{width:200.910000px;}
.w2_c00165{width:286.410000px;}
.w5_c00165{width:679.425000px;}
.w1_c00165{width:893.250000px;}
.w0_c00165{width:893.340000px;}
.x0_c00165{left:0.000000px;}
.x6_c00165{left:3.240000px;}
.xd_c00165{left:4.859850px;}
.x7_c00165{left:18.720000px;}
.xb_c00165{left:43.965000px;}
.xc_c00165{left:50.985000px;}
.x13_c00165{left:54.765000px;}
.x8_c00165{left:56.190000px;}
.x12_c00165{left:59.790000px;}
.x11_c00165{left:61.785000px;}
.x10_c00165{left:66.990000px;}
.xa_c00165{left:70.965000px;}
.xf_c00165{left:83.565000px;}
.xe_c00165{left:88.770000px;}
.x4_c00165{left:119.693850px;}
.x1_c00165{left:127.655850px;}
.x2_c00165{left:148.896150px;}
.x14_c00165{left:191.550000px;}
.x3_c00165{left:234.029955px;}
.x5_c00165{left:415.155000px;}
.x9_c00165{left:616.785000px;}
@media print{
.v1_c00165{vertical-align:-5.120832pt;}
.v0_c00165{vertical-align:0.000000pt;}
.v3_c00165{vertical-align:5.118752pt;}
.v2_c00165{vertical-align:21.118773pt;}
.ls4_c00165{letter-spacing:0.000000pt;}
.ls0_c00165{letter-spacing:0.000427pt;}
.ls1_c00165{letter-spacing:0.097653pt;}
.ls2_c00165{letter-spacing:0.737227pt;}
.ls3_c00165{letter-spacing:3.295573pt;}
.ws0_c00165{word-spacing:-16.368640pt;}
.ws1_c00165{word-spacing:-13.344000pt;}
.ws2_c00165{word-spacing:-10.319360pt;}
.ws3_c00165{word-spacing:0.000000pt;}
._3_c00165{margin-left:-2.989112pt;}
._1_c00165{margin-left:-1.354622pt;}
._2_c00165{width:1.019796pt;}
._e_c00165{width:1.983320pt;}
._5_c00165{width:3.055770pt;}
._4_c00165{width:4.014908pt;}
._d_c00165{width:5.594404pt;}
._9_c00165{width:11.069654pt;}
._a_c00165{width:12.166014pt;}
._7_c00165{width:17.335985pt;}
._8_c00165{width:18.267475pt;}
._c_c00165{width:24.638086pt;}
._b_c00165{width:25.732767pt;}
._6_c00165{width:71.924730pt;}
._f_c00165{width:751.791616pt;}
._0_c00165{width:2010.162299pt;}
.fs1_c00165{font-size:37.120000pt;}
.fs2_c00165{font-size:48.000000pt;}
.fs0_c00165{font-size:58.880000pt;}
.y0_c00165{bottom:0.000000pt;}
.y14_c00165{bottom:3.040000pt;}
.y17_c00165{bottom:3.200000pt;}
.y12_c00165{bottom:6.080000pt;}
.y1a_c00165{bottom:7.200000pt;}
.yf_c00165{bottom:21.120000pt;}
.y11_c00165{bottom:22.080000pt;}
.y10_c00165{bottom:38.080000pt;}
.y2d_c00165{bottom:148.346667pt;}
.y2c_c00165{bottom:167.066933pt;}
.y2b_c00165{bottom:185.786667pt;}
.y2a_c00165{bottom:204.507067pt;}
.y29_c00165{bottom:223.066933pt;}
.y28_c00165{bottom:241.786667pt;}
.y27_c00165{bottom:268.507067pt;}
.y26_c00165{bottom:287.066933pt;}
.y25_c00165{bottom:305.786667pt;}
.y24_c00165{bottom:324.506933pt;}
.y23_c00165{bottom:343.066800pt;}
.y22_c00165{bottom:361.826667pt;}
.y21_c00165{bottom:388.546800pt;}
.y20_c00165{bottom:407.106667pt;}
.y1f_c00165{bottom:433.826667pt;}
.y1e_c00165{bottom:457.506667pt;}
.y1d_c00165{bottom:482.146667pt;}
.y1c_c00165{bottom:506.786667pt;}
.y1b_c00165{bottom:531.426667pt;}
.y19_c00165{bottom:556.226667pt;}
.y18_c00165{bottom:580.893333pt;}
.y16_c00165{bottom:606.333333pt;}
.y15_c00165{bottom:631.933333pt;}
.y13_c00165{bottom:657.533333pt;}
.ye_c00165{bottom:682.973333pt;}
.yd_c00165{bottom:756.893200pt;}
.yc_c00165{bottom:775.613467pt;}
.yb_c00165{bottom:794.373333pt;}
.ya_c00165{bottom:836.933333pt;}
.y9_c00165{bottom:855.653067pt;}
.y8_c00165{bottom:874.373467pt;}
.y7_c00165{bottom:892.933333pt;}
.y6_c00165{bottom:911.653067pt;}
.y5_c00165{bottom:930.373333pt;}
.y4_c00165{bottom:956.933333pt;}
.y3_c00165{bottom:975.653067pt;}
.y2_c00165{bottom:994.373333pt;}
.y1_c00165{bottom:1044.160000pt;}
.hb_c00165{height:24.000000pt;}
.ha_c00165{height:24.032267pt;}
.h8_c00165{height:24.800000pt;}
.h9_c00165{height:24.959867pt;}
.h6_c00165{height:42.866250pt;}
.h7_c00165{height:48.145228pt;}
.h2_c00165{height:50.628750pt;}
.h3_c00165{height:53.036898pt;}
.h4_c00165{height:53.038978pt;}
.hc_c00165{height:53.197272pt;}
.h5_c00165{height:53.600000pt;}
.h1_c00165{height:1122.666667pt;}
.h0_c00165{height:1122.720000pt;}
.w4_c00165{width:169.466667pt;}
.w3_c00165{width:178.586667pt;}
.w2_c00165{width:254.586667pt;}
.w5_c00165{width:603.933333pt;}
.w1_c00165{width:794.000000pt;}
.w0_c00165{width:794.080000pt;}
.x0_c00165{left:0.000000pt;}
.x6_c00165{left:2.880000pt;}
.xd_c00165{left:4.319867pt;}
.x7_c00165{left:16.640000pt;}
.xb_c00165{left:39.080000pt;}
.xc_c00165{left:45.320000pt;}
.x13_c00165{left:48.680000pt;}
.x8_c00165{left:49.946667pt;}
.x12_c00165{left:53.146667pt;}
.x11_c00165{left:54.920000pt;}
.x10_c00165{left:59.546667pt;}
.xa_c00165{left:63.080000pt;}
.xf_c00165{left:74.280000pt;}
.xe_c00165{left:78.906667pt;}
.x4_c00165{left:106.394533pt;}
.x1_c00165{left:113.471867pt;}
.x2_c00165{left:132.352133pt;}
.x14_c00165{left:170.266667pt;}
.x3_c00165{left:208.026627pt;}
.x5_c00165{left:369.026667pt;}
.x9_c00165{left:548.253333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_97fdda695f9fad7e44a770dc.woff2')format("woff");}.ff1_c00166{font-family:ff1_c00166;line-height:1.070312;font-style:normal;font-weight:normal;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_913f469190f7fdca84176720.woff2')format("woff");}.ff2_c00166{font-family:ff2_c00166;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00166;src:url('chunks/assets/font_037ca2eb3818e804f928e939.woff2')format("woff");}.ff3_c00166{font-family:ff3_c00166;line-height:0.938965;font-style: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);}
.m1_c00166{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);}
.v4_c00166{vertical-align:-23.760000px;}
.v5_c00166{vertical-align:-17.976540px;}
.v1_c00166{vertical-align:-5.760936px;}
.v0_c00166{vertical-align:0.000000px;}
.v2_c00166{vertical-align:5.760936px;}
.v3_c00166{vertical-align:23.760960px;}
.ls2_c00166{letter-spacing:0.000000px;}
.ls0_c00166{letter-spacing:0.090300px;}
.ls1_c00166{letter-spacing:0.092640px;}
.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;}
}
.ws3_c00166{word-spacing:-36.829440px;}
.ws1_c00166{word-spacing:-18.414720px;}
.ws2_c00166{word-spacing:-15.012000px;}
.ws0_c00166{word-spacing:-11.609280px;}
.ws4_c00166{word-spacing:-10.808640px;}
.ws5_c00166{word-spacing:0.000000px;}
._9_c00166{margin-left:-2.450129px;}
._1_c00166{margin-left:-1.126186px;}
._5_c00166{width:1.190733px;}
._6_c00166{width:2.272959px;}
._c_c00166{width:5.540786px;}
._a_c00166{width:7.385765px;}
._b_c00166{width:8.710719px;}
._4_c00166{width:11.066924px;}
._3_c00166{width:12.245058px;}
._8_c00166{width:20.718309px;}
._7_c00166{width:21.991879px;}
._2_c00166{width:80.485100px;}
._0_c00166{width:2261.432586px;}
.fc0_c00166{color:rgb(0,0,0);}
.fs3_c00166{font-size:38.880000px;}
.fs1_c00166{font-size:41.760000px;}
.fs2_c00166{font-size:54.000000px;}
.fs4_c00166{font-size:59.760000px;}
.fs0_c00166{font-size:66.240000px;}
.y0_c00166{bottom:0.000000px;}
.yc_c00166{bottom:3.420000px;}
.y22_c00166{bottom:3.420150px;}
.ya_c00166{bottom:3.600000px;}
.ye_c00166{bottom:8.100000px;}
.y1f_c00166{bottom:8.820000px;}
.y7_c00166{bottom:11.160000px;}
.y23_c00166{bottom:12.960000px;}
.y8_c00166{bottom:15.660000px;}
.y21_c00166{bottom:22.500000px;}
.y5_c00166{bottom:23.760000px;}
.y1e_c00166{bottom:29.700000px;}
.y6_c00166{bottom:33.660000px;}
.y2e_c00166{bottom:88.200000px;}
.y2d_c00166{bottom:109.979850px;}
.y2c_c00166{bottom:131.579715px;}
.y2b_c00166{bottom:153.390000px;}
.y2a_c00166{bottom:175.530000px;}
.y29_c00166{bottom:218.190000px;}
.y28_c00166{bottom:246.090000px;}
.y27_c00166{bottom:273.810000px;}
.y26_c00166{bottom:302.430000px;}
.y25_c00166{bottom:350.130000px;}
.y24_c00166{bottom:397.875000px;}
.y20_c00166{bottom:426.675000px;}
.y1d_c00166{bottom:474.375000px;}
.y1c_c00166{bottom:557.534700px;}
.y1b_c00166{bottom:578.595000px;}
.y1a_c00166{bottom:626.474850px;}
.y19_c00166{bottom:647.565150px;}
.y18_c00166{bottom:668.624850px;}
.y17_c00166{bottom:689.504700px;}
.y16_c00166{bottom:710.565000px;}
.y15_c00166{bottom:740.625150px;}
.y14_c00166{bottom:761.505000px;}
.y13_c00166{bottom:791.565000px;}
.y12_c00166{bottom:818.205000px;}
.y11_c00166{bottom:845.925000px;}
.y10_c00166{bottom:873.645000px;}
.yf_c00166{bottom:901.410000px;}
.yd_c00166{bottom:929.130000px;}
.yb_c00166{bottom:957.030000px;}
.y9_c00166{bottom:985.650000px;}
.y4_c00166{bottom:1014.450000px;}
.y3_c00166{bottom:1097.609700px;}
.y2_c00166{bottom:1118.670000px;}
.y1_c00166{bottom:1174.680000px;}
.h8_c00166{height:27.000000px;}
.h9_c00166{height:27.035700px;}
.h7_c00166{height:27.900000px;}
.h6_c00166{height:28.079850px;}
.hf_c00166{height:33.431484px;}
.hd_c00166{height:46.979850px;}
.he_c00166{height:47.016150px;}
.h4_c00166{height:48.224531px;}
.h10_c00166{height:51.385430px;}
.h5_c00166{height:54.163382px;}
.h2_c00166{height:56.957344px;}
.hc_c00166{height:59.666511px;}
.ha_c00166{height:59.667891px;}
.hb_c00166{height:59.668851px;}
.h3_c00166{height:60.300000px;}
.h1_c00166{height:1263.000000px;}
.h0_c00166{height:1263.060000px;}
.w9_c00166{width:117.215700px;}
.w8_c00166{width:119.160300px;}
.wa_c00166{width:119.700000px;}
.w7_c00166{width:148.716150px;}
.w6_c00166{width:168.870000px;}
.w4_c00166{width:190.650000px;}
.w3_c00166{width:200.910000px;}
.w2_c00166{width:285.330000px;}
.w5_c00166{width:286.410000px;}
.wb_c00166{width:676.545000px;}
.w1_c00166{width:893.250000px;}
.w0_c00166{width:893.340000px;}
.x0_c00166{left:0.000000px;}
.xa_c00166{left:4.859850px;}
.x19_c00166{left:15.480000px;}
.x1b_c00166{left:20.880000px;}
.x16_c00166{left:25.200000px;}
.x5_c00166{left:27.180000px;}
.x13_c00166{left:32.580000px;}
.x8_c00166{left:37.125000px;}
.x17_c00166{left:46.620000px;}
.x1d_c00166{left:49.320000px;}
.x9_c00166{left:50.985000px;}
.x1e_c00166{left:54.900000px;}
.x6_c00166{left:56.190000px;}
.xb_c00166{left:59.970000px;}
.x14_c00166{left:61.380000px;}
.x1c_c00166{left:65.160000px;}
.x1f_c00166{left:69.660000px;}
.xc_c00166{left:79.245000px;}
.xe_c00166{left:84.450000px;}
.x3_c00166{left:108.533850px;}
.x1_c00166{left:127.655850px;}
.x11_c00166{left:129.455850px;}
.x10_c00166{left:148.896150px;}
.x2_c00166{left:234.029850px;}
.x12_c00166{left:299.055000px;}
.x20_c00166{left:364.935000px;}
.x4_c00166{left:414.075000px;}
.xd_c00166{left:415.155000px;}
.x15_c00166{left:448.485000px;}
.x18_c00166{left:568.365000px;}
.x7_c00166{left:615.705000px;}
.xf_c00166{left:616.785000px;}
.x1a_c00166{left:686.310000px;}
@media print{
.v4_c00166{vertical-align:-21.120000pt;}
.v5_c00166{vertical-align:-15.979147pt;}
.v1_c00166{vertical-align:-5.120832pt;}
.v0_c00166{vertical-align:0.000000pt;}
.v2_c00166{vertical-align:5.120832pt;}
.v3_c00166{vertical-align:21.120853pt;}
.ls2_c00166{letter-spacing:0.000000pt;}
.ls0_c00166{letter-spacing:0.080267pt;}
.ls1_c00166{letter-spacing:0.082347pt;}
.ws3_c00166{word-spacing:-32.737280pt;}
.ws1_c00166{word-spacing:-16.368640pt;}
.ws2_c00166{word-spacing:-13.344000pt;}
.ws0_c00166{word-spacing:-10.319360pt;}
.ws4_c00166{word-spacing:-9.607680pt;}
.ws5_c00166{word-spacing:0.000000pt;}
._9_c00166{margin-left:-2.177892pt;}
._1_c00166{margin-left:-1.001054pt;}
._5_c00166{width:1.058429pt;}
._6_c00166{width:2.020408pt;}
._c_c00166{width:4.925143pt;}
._a_c00166{width:6.565124pt;}
._b_c00166{width:7.742861pt;}
._4_c00166{width:9.837266pt;}
._3_c00166{width:10.884496pt;}
._8_c00166{width:18.416274pt;}
._7_c00166{width:19.548337pt;}
._2_c00166{width:71.542311pt;}
._0_c00166{width:2010.162299pt;}
.fs3_c00166{font-size:34.560000pt;}
.fs1_c00166{font-size:37.120000pt;}
.fs2_c00166{font-size:48.000000pt;}
.fs4_c00166{font-size:53.120000pt;}
.fs0_c00166{font-size:58.880000pt;}
.y0_c00166{bottom:0.000000pt;}
.yc_c00166{bottom:3.040000pt;}
.y22_c00166{bottom:3.040133pt;}
.ya_c00166{bottom:3.200000pt;}
.ye_c00166{bottom:7.200000pt;}
.y1f_c00166{bottom:7.840000pt;}
.y7_c00166{bottom:9.920000pt;}
.y23_c00166{bottom:11.520000pt;}
.y8_c00166{bottom:13.920000pt;}
.y21_c00166{bottom:20.000000pt;}
.y5_c00166{bottom:21.120000pt;}
.y1e_c00166{bottom:26.400000pt;}
.y6_c00166{bottom:29.920000pt;}
.y2e_c00166{bottom:78.400000pt;}
.y2d_c00166{bottom:97.759867pt;}
.y2c_c00166{bottom:116.959747pt;}
.y2b_c00166{bottom:136.346667pt;}
.y2a_c00166{bottom:156.026667pt;}
.y29_c00166{bottom:193.946667pt;}
.y28_c00166{bottom:218.746667pt;}
.y27_c00166{bottom:243.386667pt;}
.y26_c00166{bottom:268.826667pt;}
.y25_c00166{bottom:311.226667pt;}
.y24_c00166{bottom:353.666667pt;}
.y20_c00166{bottom:379.266667pt;}
.y1d_c00166{bottom:421.666667pt;}
.y1c_c00166{bottom:495.586400pt;}
.y1b_c00166{bottom:514.306667pt;}
.y1a_c00166{bottom:556.866533pt;}
.y19_c00166{bottom:575.613467pt;}
.y18_c00166{bottom:594.333200pt;}
.y17_c00166{bottom:612.893067pt;}
.y16_c00166{bottom:631.613333pt;}
.y15_c00166{bottom:658.333467pt;}
.y14_c00166{bottom:676.893333pt;}
.y13_c00166{bottom:703.613333pt;}
.y12_c00166{bottom:727.293333pt;}
.y11_c00166{bottom:751.933333pt;}
.y10_c00166{bottom:776.573333pt;}
.yf_c00166{bottom:801.253333pt;}
.yd_c00166{bottom:825.893333pt;}
.yb_c00166{bottom:850.693333pt;}
.y9_c00166{bottom:876.133333pt;}
.y4_c00166{bottom:901.733333pt;}
.y3_c00166{bottom:975.653067pt;}
.y2_c00166{bottom:994.373333pt;}
.y1_c00166{bottom:1044.160000pt;}
.h8_c00166{height:24.000000pt;}
.h9_c00166{height:24.031733pt;}
.h7_c00166{height:24.800000pt;}
.h6_c00166{height:24.959867pt;}
.hf_c00166{height:29.716875pt;}
.hd_c00166{height:41.759867pt;}
.he_c00166{height:41.792133pt;}
.h4_c00166{height:42.866250pt;}
.h10_c00166{height:45.675938pt;}
.h5_c00166{height:48.145228pt;}
.h2_c00166{height:50.628750pt;}
.hc_c00166{height:53.036898pt;}
.ha_c00166{height:53.038125pt;}
.hb_c00166{height:53.038978pt;}
.h3_c00166{height:53.600000pt;}
.h1_c00166{height:1122.666667pt;}
.h0_c00166{height:1122.720000pt;}
.w9_c00166{width:104.191733pt;}
.w8_c00166{width:105.920267pt;}
.wa_c00166{width:106.400000pt;}
.w7_c00166{width:132.192133pt;}
.w6_c00166{width:150.106667pt;}
.w4_c00166{width:169.466667pt;}
.w3_c00166{width:178.586667pt;}
.w2_c00166{width:253.626667pt;}
.w5_c00166{width:254.586667pt;}
.wb_c00166{width:601.373333pt;}
.w1_c00166{width:794.000000pt;}
.w0_c00166{width:794.080000pt;}
.x0_c00166{left:0.000000pt;}
.xa_c00166{left:4.319867pt;}
.x19_c00166{left:13.760000pt;}
.x1b_c00166{left:18.560000pt;}
.x16_c00166{left:22.400000pt;}
.x5_c00166{left:24.160000pt;}
.x13_c00166{left:28.960000pt;}
.x8_c00166{left:33.000000pt;}
.x17_c00166{left:41.440000pt;}
.x1d_c00166{left:43.840000pt;}
.x9_c00166{left:45.320000pt;}
.x1e_c00166{left:48.800000pt;}
.x6_c00166{left:49.946667pt;}
.xb_c00166{left:53.306667pt;}
.x14_c00166{left:54.560000pt;}
.x1c_c00166{left:57.920000pt;}
.x1f_c00166{left:61.920000pt;}
.xc_c00166{left:70.440000pt;}
.xe_c00166{left:75.066667pt;}
.x3_c00166{left:96.474533pt;}
.x1_c00166{left:113.471867pt;}
.x11_c00166{left:115.071867pt;}
.x10_c00166{left:132.352133pt;}
.x2_c00166{left:208.026533pt;}
.x12_c00166{left:265.826667pt;}
.x20_c00166{left:324.386667pt;}
.x4_c00166{left:368.066667pt;}
.xd_c00166{left:369.026667pt;}
.x15_c00166{left:398.653333pt;}
.x18_c00166{left:505.213333pt;}
.x7_c00166{left:547.293333pt;}
.xf_c00166{left:548.253333pt;}
.x1a_c00166{left:610.053333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c36207df4907f7a81901d5e2.woff2')format("woff");}.ff1_c00167{font-family:ff1_c00167;line-height:1.070312;font-style:normal;font-weight:normal;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_8d472a11eab02c1e8c8ce600.woff2')format("woff");}.ff2_c00167{font-family:ff2_c00167;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00167;src:url('chunks/assets/font_8b0701136755e70ca98120f9.woff2')format("woff");}.ff3_c00167{font-family:ff3_c00167;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00167;src:url('chunks/assets/font_067529eeb3b4734f326960dd.woff2')format("woff");}.ff4_c00167{font-family:ff4_c00167;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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);}
.m1_c00167{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00167{vertical-align:-23.760960px;}
.v0_c00167{vertical-align:0.000000px;}
.v1_c00167{vertical-align:23.760960px;}
.ls4_c00167{letter-spacing:0.000000px;}
.ls1_c00167{letter-spacing:0.092640px;}
.ls2_c00167{letter-spacing:0.107520px;}
.ls3_c00167{letter-spacing:0.261600px;}
.ls0_c00167{letter-spacing:0.305420px;}
.sc__c00167{text-shadow:none;}
.sc0_c00167{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00167{-webkit-text-stroke:0px transparent;}
.sc0_c00167{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00167{word-spacing:-18.414720px;}
.ws3_c00167{word-spacing:-16.560000px;}
.ws2_c00167{word-spacing:-15.012000px;}
.ws1_c00167{word-spacing:-11.609280px;}
.ws4_c00167{word-spacing:0.000000px;}
._e_c00167{margin-left:-5.548002px;}
._5_c00167{margin-left:-4.082759px;}
._4_c00167{margin-left:-2.980104px;}
._1_c00167{margin-left:-1.126186px;}
._7_c00167{width:1.259014px;}
._8_c00167{width:2.366449px;}
._11_c00167{width:3.569309px;}
._12_c00167{width:5.894525px;}
._10_c00167{width:7.759835px;}
._f_c00167{width:8.811984px;}
._13_c00167{width:10.361393px;}
._14_c00167{width:11.388399px;}
._3_c00167{width:13.116773px;}
._6_c00167{width:15.036016px;}
._c_c00167{width:20.420113px;}
._d_c00167{width:21.718056px;}
._b_c00167{width:23.183157px;}
._a_c00167{width:62.288245px;}
._9_c00167{width:79.252176px;}
._2_c00167{width:93.628041px;}
._0_c00167{width:2261.432586px;}
.fc0_c00167{color:rgb(0,0,0);}
.fs1_c00167{font-size:41.760000px;}
.fs2_c00167{font-size:54.000000px;}
.fs0_c00167{font-size:66.240000px;}
.y0_c00167{bottom:0.000000px;}
.y9_c00167{bottom:3.600000px;}
.yb_c00167{bottom:8.100000px;}
.y7_c00167{bottom:8.820000px;}
.y5_c00167{bottom:23.760000px;}
.y6_c00167{bottom:29.700000px;}
.y2b_c00167{bottom:108.180000px;}
.y2a_c00167{bottom:129.240300px;}
.y29_c00167{bottom:150.150000px;}
.y28_c00167{bottom:171.209700px;}
.y27_c00167{bottom:192.270000px;}
.y26_c00167{bottom:222.150000px;}
.y25_c00167{bottom:252.210300px;}
.y24_c00167{bottom:273.270600px;}
.y23_c00167{bottom:294.150450px;}
.y22_c00167{bottom:315.210150px;}
.y21_c00167{bottom:336.270450px;}
.y20_c00167{bottom:357.150300px;}
.y1f_c00167{bottom:378.210000px;}
.y1e_c00167{bottom:408.315000px;}
.y1d_c00167{bottom:465.195000px;}
.y1c_c00167{bottom:495.255000px;}
.y1b_c00167{bottom:525.315000px;}
.y1a_c00167{bottom:555.195000px;}
.y19_c00167{bottom:585.255000px;}
.y18_c00167{bottom:615.315000px;}
.y17_c00167{bottom:645.225000px;}
.y16_c00167{bottom:675.284850px;}
.y15_c00167{bottom:696.345150px;}
.y14_c00167{bottom:717.225000px;}
.y13_c00167{bottom:738.284700px;}
.y12_c00167{bottom:759.345000px;}
.y11_c00167{bottom:789.225000px;}
.y10_c00167{bottom:819.285000px;}
.yf_c00167{bottom:845.925000px;}
.ye_c00167{bottom:873.645000px;}
.yd_c00167{bottom:901.410000px;}
.yc_c00167{bottom:930.210000px;}
.ya_c00167{bottom:957.930000px;}
.y8_c00167{bottom:985.650000px;}
.y4_c00167{bottom:1014.450000px;}
.y3_c00167{bottom:1097.609700px;}
.y2_c00167{bottom:1118.670000px;}
.y1_c00167{bottom:1174.680000px;}
.h8_c00167{height:27.000000px;}
.ha_c00167{height:27.035700px;}
.h7_c00167{height:28.079850px;}
.h9_c00167{height:28.080450px;}
.h5_c00167{height:48.224531px;}
.h6_c00167{height:54.163382px;}
.h2_c00167{height:56.957344px;}
.h3_c00167{height:59.668851px;}
.h4_c00167{height:60.300000px;}
.h1_c00167{height:1263.000000px;}
.h0_c00167{height:1263.060000px;}
.w5_c00167{width:117.216150px;}
.wa_c00167{width:117.395550px;}
.wf_c00167{width:118.835700px;}
.w10_c00167{width:118.979850px;}
.w9_c00167{width:119.160300px;}
.we_c00167{width:119.339700px;}
.w4_c00167{width:119.340300px;}
.w6_c00167{width:119.520150px;}
.wb_c00167{width:119.700000px;}
.w3_c00167{width:147.959700px;}
.wd_c00167{width:148.535700px;}
.w8_c00167{width:150.150000px;}
.w2_c00167{width:169.230000px;}
.wc_c00167{width:677.985000px;}
.w7_c00167{width:678.705000px;}
.w1_c00167{width:893.250000px;}
.w0_c00167{width:893.340000px;}
.x0_c00167{left:0.000000px;}
.xe_c00167{left:4.859700px;}
.xb_c00167{left:15.480000px;}
.xd_c00167{left:20.880000px;}
.x8_c00167{left:25.200000px;}
.x5_c00167{left:32.220000px;}
.x9_c00167{left:46.620000px;}
.x13_c00167{left:49.320000px;}
.x3_c00167{left:50.574000px;}
.x11_c00167{left:54.900000px;}
.x6_c00167{left:61.020000px;}
.xf_c00167{left:65.880000px;}
.x15_c00167{left:69.660000px;}
.x1_c00167{left:127.655850px;}
.x16_c00167{left:148.896150px;}
.x4_c00167{left:298.515000px;}
.x2_c00167{left:340.094850px;}
.x7_c00167{left:447.225000px;}
.x10_c00167{left:449.385000px;}
.xa_c00167{left:567.285000px;}
.x12_c00167{left:569.265000px;}
.xc_c00167{left:685.230000px;}
.x14_c00167{left:687.390000px;}
@media print{
.v2_c00167{vertical-align:-21.120853pt;}
.v0_c00167{vertical-align:0.000000pt;}
.v1_c00167{vertical-align:21.120853pt;}
.ls4_c00167{letter-spacing:0.000000pt;}
.ls1_c00167{letter-spacing:0.082347pt;}
.ls2_c00167{letter-spacing:0.095573pt;}
.ls3_c00167{letter-spacing:0.232533pt;}
.ls0_c00167{letter-spacing:0.271484pt;}
.ws0_c00167{word-spacing:-16.368640pt;}
.ws3_c00167{word-spacing:-14.720000pt;}
.ws2_c00167{word-spacing:-13.344000pt;}
.ws1_c00167{word-spacing:-10.319360pt;}
.ws4_c00167{word-spacing:0.000000pt;}
._e_c00167{margin-left:-4.931557pt;}
._5_c00167{margin-left:-3.629119pt;}
._4_c00167{margin-left:-2.648982pt;}
._1_c00167{margin-left:-1.001054pt;}
._7_c00167{width:1.119124pt;}
._8_c00167{width:2.103510pt;}
._11_c00167{width:3.172719pt;}
._12_c00167{width:5.239578pt;}
._10_c00167{width:6.897631pt;}
._f_c00167{width:7.832875pt;}
._13_c00167{width:9.210127pt;}
._14_c00167{width:10.123022pt;}
._3_c00167{width:11.659354pt;}
._6_c00167{width:13.365348pt;}
._c_c00167{width:18.151211pt;}
._d_c00167{width:19.304938pt;}
._b_c00167{width:20.607251pt;}
._a_c00167{width:55.367329pt;}
._9_c00167{width:70.446379pt;}
._2_c00167{width:83.224926pt;}
._0_c00167{width:2010.162299pt;}
.fs1_c00167{font-size:37.120000pt;}
.fs2_c00167{font-size:48.000000pt;}
.fs0_c00167{font-size:58.880000pt;}
.y0_c00167{bottom:0.000000pt;}
.y9_c00167{bottom:3.200000pt;}
.yb_c00167{bottom:7.200000pt;}
.y7_c00167{bottom:7.840000pt;}
.y5_c00167{bottom:21.120000pt;}
.y6_c00167{bottom:26.400000pt;}
.y2b_c00167{bottom:96.160000pt;}
.y2a_c00167{bottom:114.880267pt;}
.y29_c00167{bottom:133.466667pt;}
.y28_c00167{bottom:152.186400pt;}
.y27_c00167{bottom:170.906667pt;}
.y26_c00167{bottom:197.466667pt;}
.y25_c00167{bottom:224.186933pt;}
.y24_c00167{bottom:242.907200pt;}
.y23_c00167{bottom:261.467067pt;}
.y22_c00167{bottom:280.186800pt;}
.y21_c00167{bottom:298.907067pt;}
.y20_c00167{bottom:317.466933pt;}
.y1f_c00167{bottom:336.186667pt;}
.y1e_c00167{bottom:362.946667pt;}
.y1d_c00167{bottom:413.506667pt;}
.y1c_c00167{bottom:440.226667pt;}
.y1b_c00167{bottom:466.946667pt;}
.y1a_c00167{bottom:493.506667pt;}
.y19_c00167{bottom:520.226667pt;}
.y18_c00167{bottom:546.946667pt;}
.y17_c00167{bottom:573.533333pt;}
.y16_c00167{bottom:600.253200pt;}
.y15_c00167{bottom:618.973467pt;}
.y14_c00167{bottom:637.533333pt;}
.y13_c00167{bottom:656.253067pt;}
.y12_c00167{bottom:674.973333pt;}
.y11_c00167{bottom:701.533333pt;}
.y10_c00167{bottom:728.253333pt;}
.yf_c00167{bottom:751.933333pt;}
.ye_c00167{bottom:776.573333pt;}
.yd_c00167{bottom:801.253333pt;}
.yc_c00167{bottom:826.853333pt;}
.ya_c00167{bottom:851.493333pt;}
.y8_c00167{bottom:876.133333pt;}
.y4_c00167{bottom:901.733333pt;}
.y3_c00167{bottom:975.653067pt;}
.y2_c00167{bottom:994.373333pt;}
.y1_c00167{bottom:1044.160000pt;}
.h8_c00167{height:24.000000pt;}
.ha_c00167{height:24.031733pt;}
.h7_c00167{height:24.959867pt;}
.h9_c00167{height:24.960400pt;}
.h5_c00167{height:42.866250pt;}
.h6_c00167{height:48.145228pt;}
.h2_c00167{height:50.628750pt;}
.h3_c00167{height:53.038978pt;}
.h4_c00167{height:53.600000pt;}
.h1_c00167{height:1122.666667pt;}
.h0_c00167{height:1122.720000pt;}
.w5_c00167{width:104.192133pt;}
.wa_c00167{width:104.351600pt;}
.wf_c00167{width:105.631733pt;}
.w10_c00167{width:105.759867pt;}
.w9_c00167{width:105.920267pt;}
.we_c00167{width:106.079733pt;}
.w4_c00167{width:106.080267pt;}
.w6_c00167{width:106.240133pt;}
.wb_c00167{width:106.400000pt;}
.w3_c00167{width:131.519733pt;}
.wd_c00167{width:132.031733pt;}
.w8_c00167{width:133.466667pt;}
.w2_c00167{width:150.426667pt;}
.wc_c00167{width:602.653333pt;}
.w7_c00167{width:603.293333pt;}
.w1_c00167{width:794.000000pt;}
.w0_c00167{width:794.080000pt;}
.x0_c00167{left:0.000000pt;}
.xe_c00167{left:4.319733pt;}
.xb_c00167{left:13.760000pt;}
.xd_c00167{left:18.560000pt;}
.x8_c00167{left:22.400000pt;}
.x5_c00167{left:28.640000pt;}
.x9_c00167{left:41.440000pt;}
.x13_c00167{left:43.840000pt;}
.x3_c00167{left:44.954667pt;}
.x11_c00167{left:48.800000pt;}
.x6_c00167{left:54.240000pt;}
.xf_c00167{left:58.560000pt;}
.x15_c00167{left:61.920000pt;}
.x1_c00167{left:113.471867pt;}
.x16_c00167{left:132.352133pt;}
.x4_c00167{left:265.346667pt;}
.x2_c00167{left:302.306533pt;}
.x7_c00167{left:397.533333pt;}
.x10_c00167{left:399.453333pt;}
.xa_c00167{left:504.253333pt;}
.x12_c00167{left:506.013333pt;}
.xc_c00167{left:609.093333pt;}
.x14_c00167{left:611.013333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_15f41f87e41902af39bf9578.woff2')format("woff");}.ff1_c00168{font-family:ff1_c00168;line-height:1.070312;font-style:normal;font-weight:normal;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_067529eeb3b4734f326960dd.woff2')format("woff");}.ff2_c00168{font-family:ff2_c00168;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00168{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00168{vertical-align:0.000000px;}
.ls1_c00168{letter-spacing:0.000000px;}
.ls0_c00168{letter-spacing:0.261600px;}
.sc__c00168{text-shadow:none;}
.sc0_c00168{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00168{-webkit-text-stroke:0px transparent;}
.sc0_c00168{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00168{word-spacing:-18.414720px;}
.ws1_c00168{word-spacing:0.000000px;}
._7_c00168{margin-left:-4.604436px;}
._8_c00168{margin-left:-3.581691px;}
._b_c00168{margin-left:-2.471925px;}
._1_c00168{margin-left:-1.258074px;}
._3_c00168{width:1.108474px;}
._9_c00168{width:2.981732px;}
._a_c00168{width:4.123810px;}
._c_c00168{width:5.170822px;}
._6_c00168{width:6.293316px;}
._16_c00168{width:7.620148px;}
._10_c00168{width:9.216059px;}
._d_c00168{width:11.473544px;}
._e_c00168{width:12.474108px;}
._f_c00168{width:13.616578px;}
._2_c00168{width:23.979079px;}
._5_c00168{width:26.296111px;}
._4_c00168{width:27.686551px;}
._12_c00168{width:30.966597px;}
._13_c00168{width:32.159374px;}
._14_c00168{width:42.493152px;}
._15_c00168{width:43.573282px;}
._11_c00168{width:80.616988px;}
._0_c00168{width:2261.432586px;}
.fc0_c00168{color:rgb(0,0,0);}
.fs0_c00168{font-size:66.240000px;}
.y0_c00168{bottom:0.000000px;}
.y1c_c00168{bottom:96.480150px;}
.y1b_c00168{bottom:117.360000px;}
.y1a_c00168{bottom:138.456150px;}
.y19_c00168{bottom:159.510000px;}
.y18_c00168{bottom:189.390000px;}
.y17_c00168{bottom:219.450000px;}
.y16_c00168{bottom:436.754700px;}
.y15_c00168{bottom:457.815000px;}
.y14_c00168{bottom:505.695000px;}
.y13_c00168{bottom:707.504700px;}
.y12_c00168{bottom:728.565000px;}
.y11_c00168{bottom:776.625150px;}
.y10_c00168{bottom:797.505000px;}
.yf_c00168{bottom:818.565300px;}
.ye_c00168{bottom:839.625000px;}
.yd_c00168{bottom:860.504850px;}
.yc_c00168{bottom:881.565150px;}
.yb_c00168{bottom:902.670000px;}
.ya_c00168{bottom:932.550000px;}
.y9_c00168{bottom:962.610000px;}
.y8_c00168{bottom:992.670300px;}
.y7_c00168{bottom:1013.550150px;}
.y6_c00168{bottom:1034.609850px;}
.y5_c00168{bottom:1055.670150px;}
.y4_c00168{bottom:1076.550000px;}
.y3_c00168{bottom:1097.609700px;}
.y2_c00168{bottom:1118.670000px;}
.y1_c00168{bottom:1174.680000px;}
.h2_c00168{height:56.957344px;}
.h1_c00168{height:1263.000000px;}
.h0_c00168{height:1263.060000px;}
.w1_c00168{width:893.250000px;}
.w0_c00168{width:893.340000px;}
.x0_c00168{left:0.000000px;}
.x1_c00168{left:127.655850px;}
.x2_c00168{left:148.896150px;}
.x3_c00168{left:234.029850px;}
@media print{
.v0_c00168{vertical-align:0.000000pt;}
.ls1_c00168{letter-spacing:0.000000pt;}
.ls0_c00168{letter-spacing:0.232533pt;}
.ws0_c00168{word-spacing:-16.368640pt;}
.ws1_c00168{word-spacing:0.000000pt;}
._7_c00168{margin-left:-4.092832pt;}
._8_c00168{margin-left:-3.183725pt;}
._b_c00168{margin-left:-2.197266pt;}
._1_c00168{margin-left:-1.118288pt;}
._3_c00168{width:0.985310pt;}
._9_c00168{width:2.650428pt;}
._a_c00168{width:3.665609pt;}
._c_c00168{width:4.596287pt;}
._6_c00168{width:5.594059pt;}
._16_c00168{width:6.773465pt;}
._10_c00168{width:8.192053pt;}
._d_c00168{width:10.198706pt;}
._e_c00168{width:11.088096pt;}
._f_c00168{width:12.103625pt;}
._2_c00168{width:21.314737pt;}
._5_c00168{width:23.374321pt;}
._4_c00168{width:24.610267pt;}
._12_c00168{width:27.525864pt;}
._13_c00168{width:28.586110pt;}
._14_c00168{width:37.771691pt;}
._15_c00168{width:38.731806pt;}
._11_c00168{width:71.659545pt;}
._0_c00168{width:2010.162299pt;}
.fs0_c00168{font-size:58.880000pt;}
.y0_c00168{bottom:0.000000pt;}
.y1c_c00168{bottom:85.760133pt;}
.y1b_c00168{bottom:104.320000pt;}
.y1a_c00168{bottom:123.072133pt;}
.y19_c00168{bottom:141.786667pt;}
.y18_c00168{bottom:168.346667pt;}
.y17_c00168{bottom:195.066667pt;}
.y16_c00168{bottom:388.226400pt;}
.y15_c00168{bottom:406.946667pt;}
.y14_c00168{bottom:449.506667pt;}
.y13_c00168{bottom:628.893067pt;}
.y12_c00168{bottom:647.613333pt;}
.y11_c00168{bottom:690.333467pt;}
.y10_c00168{bottom:708.893333pt;}
.yf_c00168{bottom:727.613600pt;}
.ye_c00168{bottom:746.333333pt;}
.yd_c00168{bottom:764.893200pt;}
.yc_c00168{bottom:783.613467pt;}
.yb_c00168{bottom:802.373333pt;}
.ya_c00168{bottom:828.933333pt;}
.y9_c00168{bottom:855.653333pt;}
.y8_c00168{bottom:882.373600pt;}
.y7_c00168{bottom:900.933467pt;}
.y6_c00168{bottom:919.653200pt;}
.y5_c00168{bottom:938.373467pt;}
.y4_c00168{bottom:956.933333pt;}
.y3_c00168{bottom:975.653067pt;}
.y2_c00168{bottom:994.373333pt;}
.y1_c00168{bottom:1044.160000pt;}
.h2_c00168{height:50.628750pt;}
.h1_c00168{height:1122.666667pt;}
.h0_c00168{height:1122.720000pt;}
.w1_c00168{width:794.000000pt;}
.w0_c00168{width:794.080000pt;}
.x0_c00168{left:0.000000pt;}
.x1_c00168{left:113.471867pt;}
.x2_c00168{left:132.352133pt;}
.x3_c00168{left:208.026533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e09f021d7d3e53a2db491e6b.woff2')format("woff");}.ff1_c00169{font-family:ff1_c00169;line-height:1.070312;font-style:normal;font-weight:normal;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_067529eeb3b4734f326960dd.woff2')format("woff");}.ff2_c00169{font-family:ff2_c00169;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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);}
.m1_c00169{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_c00169{vertical-align:0.000000px;}
.ls1_c00169{letter-spacing:0.000000px;}
.ls0_c00169{letter-spacing:0.261600px;}
.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;}
}
.ws0_c00169{word-spacing:-18.414720px;}
.ws1_c00169{word-spacing:0.000000px;}
._e_c00169{margin-left:-2.846167px;}
._2_c00169{margin-left:-1.459033px;}
._4_c00169{width:1.919743px;}
._8_c00169{width:3.082695px;}
._7_c00169{width:4.107295px;}
._9_c00169{width:5.401398px;}
._11_c00169{width:6.413423px;}
._10_c00169{width:8.014059px;}
._d_c00169{width:9.337644px;}
._5_c00169{width:10.995660px;}
._6_c00169{width:12.802798px;}
._f_c00169{width:13.804434px;}
._c_c00169{width:15.298094px;}
._b_c00169{width:16.478966px;}
._a_c00169{width:20.233800px;}
._1_c00169{width:21.528199px;}
._3_c00169{width:23.064063px;}
._12_c00169{width:845.765568px;}
._0_c00169{width:2261.432586px;}
.fc0_c00169{color:rgb(0,0,0);}
.fs0_c00169{font-size:66.240000px;}
.y0_c00169{bottom:0.000000px;}
.y24_c00169{bottom:305.490000px;}
.y23_c00169{bottom:326.550150px;}
.y22_c00169{bottom:347.430000px;}
.y21_c00169{bottom:368.490300px;}
.y20_c00169{bottom:389.595150px;}
.y1f_c00169{bottom:410.475000px;}
.y1e_c00169{bottom:440.535000px;}
.y1d_c00169{bottom:470.595600px;}
.y1c_c00169{bottom:491.475450px;}
.y1b_c00169{bottom:512.535150px;}
.y1a_c00169{bottom:533.595450px;}
.y19_c00169{bottom:554.475300px;}
.y18_c00169{bottom:575.535000px;}
.y17_c00169{bottom:605.595000px;}
.y16_c00169{bottom:635.475000px;}
.y15_c00169{bottom:665.565600px;}
.y14_c00169{bottom:686.625300px;}
.y13_c00169{bottom:707.505150px;}
.y12_c00169{bottom:728.565450px;}
.y11_c00169{bottom:749.625150px;}
.y10_c00169{bottom:770.505000px;}
.yf_c00169{bottom:800.565000px;}
.ye_c00169{bottom:830.625000px;}
.yd_c00169{bottom:860.505000px;}
.yc_c00169{bottom:881.565300px;}
.yb_c00169{bottom:902.670150px;}
.ya_c00169{bottom:923.550000px;}
.y9_c00169{bottom:944.609700px;}
.y8_c00169{bottom:965.670000px;}
.y7_c00169{bottom:995.550000px;}
.y6_c00169{bottom:1025.610000px;}
.y5_c00169{bottom:1055.670150px;}
.y4_c00169{bottom:1076.550000px;}
.y3_c00169{bottom:1097.609700px;}
.y2_c00169{bottom:1118.670000px;}
.y1_c00169{bottom:1174.680000px;}
.h2_c00169{height:56.957344px;}
.h1_c00169{height:1263.000000px;}
.h0_c00169{height:1263.060000px;}
.w1_c00169{width:893.250000px;}
.w0_c00169{width:893.340000px;}
.x0_c00169{left:0.000000px;}
.x1_c00169{left:127.655850px;}
.x2_c00169{left:148.896150px;}
.x3_c00169{left:191.550000px;}
@media print{
.v0_c00169{vertical-align:0.000000pt;}
.ls1_c00169{letter-spacing:0.000000pt;}
.ls0_c00169{letter-spacing:0.232533pt;}
.ws0_c00169{word-spacing:-16.368640pt;}
.ws1_c00169{word-spacing:0.000000pt;}
._e_c00169{margin-left:-2.529926pt;}
._2_c00169{margin-left:-1.296918pt;}
._4_c00169{width:1.706438pt;}
._8_c00169{width:2.740174pt;}
._7_c00169{width:3.650929pt;}
._9_c00169{width:4.801243pt;}
._11_c00169{width:5.700821pt;}
._10_c00169{width:7.123608pt;}
._d_c00169{width:8.300128pt;}
._5_c00169{width:9.773920pt;}
._6_c00169{width:11.380265pt;}
._f_c00169{width:12.270608pt;}
._c_c00169{width:13.598306pt;}
._b_c00169{width:14.647970pt;}
._a_c00169{width:17.985600pt;}
._1_c00169{width:19.136177pt;}
._3_c00169{width:20.501389pt;}
._12_c00169{width:751.791616pt;}
._0_c00169{width:2010.162299pt;}
.fs0_c00169{font-size:58.880000pt;}
.y0_c00169{bottom:0.000000pt;}
.y24_c00169{bottom:271.546667pt;}
.y23_c00169{bottom:290.266800pt;}
.y22_c00169{bottom:308.826667pt;}
.y21_c00169{bottom:327.546933pt;}
.y20_c00169{bottom:346.306800pt;}
.y1f_c00169{bottom:364.866667pt;}
.y1e_c00169{bottom:391.586667pt;}
.y1d_c00169{bottom:418.307200pt;}
.y1c_c00169{bottom:436.867067pt;}
.y1b_c00169{bottom:455.586800pt;}
.y1a_c00169{bottom:474.307067pt;}
.y19_c00169{bottom:492.866933pt;}
.y18_c00169{bottom:511.586667pt;}
.y17_c00169{bottom:538.306667pt;}
.y16_c00169{bottom:564.866667pt;}
.y15_c00169{bottom:591.613867pt;}
.y14_c00169{bottom:610.333600pt;}
.y13_c00169{bottom:628.893467pt;}
.y12_c00169{bottom:647.613733pt;}
.y11_c00169{bottom:666.333467pt;}
.y10_c00169{bottom:684.893333pt;}
.yf_c00169{bottom:711.613333pt;}
.ye_c00169{bottom:738.333333pt;}
.yd_c00169{bottom:764.893333pt;}
.yc_c00169{bottom:783.613600pt;}
.yb_c00169{bottom:802.373467pt;}
.ya_c00169{bottom:820.933333pt;}
.y9_c00169{bottom:839.653067pt;}
.y8_c00169{bottom:858.373333pt;}
.y7_c00169{bottom:884.933333pt;}
.y6_c00169{bottom:911.653333pt;}
.y5_c00169{bottom:938.373467pt;}
.y4_c00169{bottom:956.933333pt;}
.y3_c00169{bottom:975.653067pt;}
.y2_c00169{bottom:994.373333pt;}
.y1_c00169{bottom:1044.160000pt;}
.h2_c00169{height:50.628750pt;}
.h1_c00169{height:1122.666667pt;}
.h0_c00169{height:1122.720000pt;}
.w1_c00169{width:794.000000pt;}
.w0_c00169{width:794.080000pt;}
.x0_c00169{left:0.000000pt;}
.x1_c00169{left:113.471867pt;}
.x2_c00169{left:132.352133pt;}
.x3_c00169{left:170.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_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_6ba109647c52b183b44fc211.woff2')format("woff");}.ff1_c00170{font-family:ff1_c00170;line-height:1.070312;font-style:normal;font-weight:normal;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_bd68d740e1f8d0d0b90e70c1.woff2')format("woff");}.ff2_c00170{font-family:ff2_c00170;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00170;src:url('chunks/assets/font_7f949f20c490d8977da65eb6.woff2')format("woff");}.ff3_c00170{font-family:ff3_c00170;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.m1_c00170{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_c00170{vertical-align:0.000000px;}
.ls0_c00170{letter-spacing:0.000000px;}
.sc__c00170{text-shadow:none;}
.sc0_c00170{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00170{-webkit-text-stroke:0px transparent;}
.sc0_c00170{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00170{word-spacing:-49.680000px;}
.ws1_c00170{word-spacing:-15.012000px;}
.ws2_c00170{word-spacing:0.000000px;}
._e_c00170{margin-left:-7.067662px;}
._4_c00170{margin-left:-3.445310px;}
._8_c00170{margin-left:-2.228060px;}
._1_c00170{margin-left:-1.126186px;}
._9_c00170{width:1.165982px;}
._15_c00170{width:2.185013px;}
._14_c00170{width:3.204199px;}
._16_c00170{width:4.305018px;}
._c_c00170{width:5.696176px;}
._d_c00170{width:7.006204px;}
._10_c00170{width:8.413354px;}
._11_c00170{width:9.710849px;}
._17_c00170{width:10.858551px;}
._a_c00170{width:11.997756px;}
._5_c00170{width:13.578616px;}
._6_c00170{width:14.839325px;}
._19_c00170{width:16.175726px;}
._f_c00170{width:17.296288px;}
._b_c00170{width:19.903473px;}
._7_c00170{width:24.573981px;}
._13_c00170{width:25.770632px;}
._18_c00170{width:26.821064px;}
._12_c00170{width:34.049023px;}
._3_c00170{width:62.255920px;}
._2_c00170{width:80.517558px;}
._1a_c00170{width:845.765568px;}
._0_c00170{width:2261.432586px;}
.fc0_c00170{color:rgb(0,0,0);}
.fs1_c00170{font-size:54.000000px;}
.fs0_c00170{font-size:66.240000px;}
.y0_c00170{bottom:0.000000px;}
.y7_c00170{bottom:8.100000px;}
.y5_c00170{bottom:19.440000px;}
.y4_c00170{bottom:23.940000px;}
.y26_c00170{bottom:263.190000px;}
.y25_c00170{bottom:284.249850px;}
.y24_c00170{bottom:305.129700px;}
.y23_c00170{bottom:326.190600px;}
.y22_c00170{bottom:347.250300px;}
.y21_c00170{bottom:368.130150px;}
.y20_c00170{bottom:389.235000px;}
.y1f_c00170{bottom:419.297100px;}
.y1e_c00170{bottom:440.176950px;}
.y1d_c00170{bottom:461.236650px;}
.y1c_c00170{bottom:482.296350px;}
.y1b_c00170{bottom:503.176200px;}
.y1a_c00170{bottom:524.235900px;}
.y19_c00170{bottom:545.296200px;}
.y18_c00170{bottom:566.176050px;}
.y17_c00170{bottom:587.235750px;}
.y16_c00170{bottom:608.296050px;}
.y15_c00170{bottom:629.175900px;}
.y14_c00170{bottom:650.266200px;}
.y13_c00170{bottom:671.325900px;}
.y12_c00170{bottom:692.205750px;}
.y11_c00170{bottom:713.265450px;}
.y10_c00170{bottom:734.325150px;}
.yf_c00170{bottom:755.205000px;}
.ye_c00170{bottom:785.265000px;}
.yd_c00170{bottom:842.325000px;}
.yc_c00170{bottom:868.785000px;}
.yb_c00170{bottom:896.730000px;}
.ya_c00170{bottom:924.450000px;}
.y9_c00170{bottom:952.170000px;}
.y8_c00170{bottom:979.890000px;}
.y6_c00170{bottom:1007.610000px;}
.y3_c00170{bottom:1035.330000px;}
.y2_c00170{bottom:1118.490000px;}
.y1_c00170{bottom:1174.680000px;}
.h5_c00170{height:27.000000px;}
.h6_c00170{height:27.036300px;}
.h4_c00170{height:48.224531px;}
.h2_c00170{height:56.957344px;}
.h3_c00170{height:60.300000px;}
.h1_c00170{height:1263.000000px;}
.h0_c00170{height:1263.060000px;}
.w2_c00170{width:318.450000px;}
.w3_c00170{width:370.905000px;}
.w1_c00170{width:893.250000px;}
.w0_c00170{width:893.340000px;}
.x0_c00170{left:0.000000px;}
.x6_c00170{left:4.859700px;}
.x8_c00170{left:39.990000px;}
.x9_c00170{left:51.330000px;}
.x5_c00170{left:71.130000px;}
.x3_c00170{left:89.993850px;}
.x2_c00170{left:122.796150px;}
.x1_c00170{left:127.655850px;}
.xa_c00170{left:148.896150px;}
.x7_c00170{left:182.550000px;}
.xb_c00170{left:191.550000px;}
.x4_c00170{left:441.975000px;}
@media print{
.v0_c00170{vertical-align:0.000000pt;}
.ls0_c00170{letter-spacing:0.000000pt;}
.ws0_c00170{word-spacing:-44.160000pt;}
.ws1_c00170{word-spacing:-13.344000pt;}
.ws2_c00170{word-spacing:0.000000pt;}
._e_c00170{margin-left:-6.282366pt;}
._4_c00170{margin-left:-3.062498pt;}
._8_c00170{margin-left:-1.980498pt;}
._1_c00170{margin-left:-1.001054pt;}
._9_c00170{width:1.036428pt;}
._15_c00170{width:1.942234pt;}
._14_c00170{width:2.848177pt;}
._16_c00170{width:3.826683pt;}
._c_c00170{width:5.063268pt;}
._d_c00170{width:6.227737pt;}
._10_c00170{width:7.478537pt;}
._11_c00170{width:8.631866pt;}
._17_c00170{width:9.652046pt;}
._a_c00170{width:10.664672pt;}
._5_c00170{width:12.069881pt;}
._6_c00170{width:13.190511pt;}
._19_c00170{width:14.378423pt;}
._f_c00170{width:15.374478pt;}
._b_c00170{width:17.691976pt;}
._7_c00170{width:21.843539pt;}
._13_c00170{width:22.907228pt;}
._18_c00170{width:23.840945pt;}
._12_c00170{width:30.265798pt;}
._3_c00170{width:55.338595pt;}
._2_c00170{width:71.571162pt;}
._1a_c00170{width:751.791616pt;}
._0_c00170{width:2010.162299pt;}
.fs1_c00170{font-size:48.000000pt;}
.fs0_c00170{font-size:58.880000pt;}
.y0_c00170{bottom:0.000000pt;}
.y7_c00170{bottom:7.200000pt;}
.y5_c00170{bottom:17.280000pt;}
.y4_c00170{bottom:21.280000pt;}
.y26_c00170{bottom:233.946667pt;}
.y25_c00170{bottom:252.666533pt;}
.y24_c00170{bottom:271.226400pt;}
.y23_c00170{bottom:289.947200pt;}
.y22_c00170{bottom:308.666933pt;}
.y21_c00170{bottom:327.226800pt;}
.y20_c00170{bottom:345.986667pt;}
.y1f_c00170{bottom:372.708533pt;}
.y1e_c00170{bottom:391.268400pt;}
.y1d_c00170{bottom:409.988133pt;}
.y1c_c00170{bottom:428.707867pt;}
.y1b_c00170{bottom:447.267733pt;}
.y1a_c00170{bottom:465.987467pt;}
.y19_c00170{bottom:484.707733pt;}
.y18_c00170{bottom:503.267600pt;}
.y17_c00170{bottom:521.987333pt;}
.y16_c00170{bottom:540.707600pt;}
.y15_c00170{bottom:559.267467pt;}
.y14_c00170{bottom:578.014400pt;}
.y13_c00170{bottom:596.734133pt;}
.y12_c00170{bottom:615.294000pt;}
.y11_c00170{bottom:634.013733pt;}
.y10_c00170{bottom:652.733467pt;}
.yf_c00170{bottom:671.293333pt;}
.ye_c00170{bottom:698.013333pt;}
.yd_c00170{bottom:748.733333pt;}
.yc_c00170{bottom:772.253333pt;}
.yb_c00170{bottom:797.093333pt;}
.ya_c00170{bottom:821.733333pt;}
.y9_c00170{bottom:846.373333pt;}
.y8_c00170{bottom:871.013333pt;}
.y6_c00170{bottom:895.653333pt;}
.y3_c00170{bottom:920.293333pt;}
.y2_c00170{bottom:994.213333pt;}
.y1_c00170{bottom:1044.160000pt;}
.h5_c00170{height:24.000000pt;}
.h6_c00170{height:24.032267pt;}
.h4_c00170{height:42.866250pt;}
.h2_c00170{height:50.628750pt;}
.h3_c00170{height:53.600000pt;}
.h1_c00170{height:1122.666667pt;}
.h0_c00170{height:1122.720000pt;}
.w2_c00170{width:283.066667pt;}
.w3_c00170{width:329.693333pt;}
.w1_c00170{width:794.000000pt;}
.w0_c00170{width:794.080000pt;}
.x0_c00170{left:0.000000pt;}
.x6_c00170{left:4.319733pt;}
.x8_c00170{left:35.546667pt;}
.x9_c00170{left:45.626667pt;}
.x5_c00170{left:63.226667pt;}
.x3_c00170{left:79.994533pt;}
.x2_c00170{left:109.152133pt;}
.x1_c00170{left:113.471867pt;}
.xa_c00170{left:132.352133pt;}
.x7_c00170{left:162.266667pt;}
.xb_c00170{left:170.266667pt;}
.x4_c00170{left:392.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_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_1965b9f0e134b1f4f2cb415e.woff2')format("woff");}.ff1_c00171{font-family:ff1_c00171;line-height:1.070312;font-style:normal;font-weight:normal;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_06e607c28e41f1406754f650.woff2')format("woff");}.ff2_c00171{font-family:ff2_c00171;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00171;src:url('chunks/assets/font_c78c514c09031a20fbe662b4.woff2')format("woff");}.ff3_c00171{font-family:ff3_c00171;line-height:0.800781;font-style: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:18.000000px;}
.ls0_c00171{letter-spacing:0.000000px;}
.sc__c00171{text-shadow:none;}
.sc0_c00171{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00171{-webkit-text-stroke:0px transparent;}
.sc0_c00171{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00171{word-spacing:-16.613280px;}
.ws0_c00171{word-spacing:-10.808640px;}
.ws2_c00171{word-spacing:0.000000px;}
._7_c00171{margin-left:-3.490634px;}
._6_c00171{margin-left:-2.484027px;}
._1_c00171{margin-left:-1.126186px;}
._5_c00171{width:1.474803px;}
._3_c00171{width:51.734379px;}
._4_c00171{width:53.001800px;}
._2_c00171{width:80.517558px;}
._0_c00171{width:2261.432586px;}
.fc0_c00171{color:rgb(0,0,0);}
.fs2_c00171{font-size:38.880000px;}
.fs1_c00171{font-size:59.760000px;}
.fs0_c00171{font-size:66.240000px;}
.y0_c00171{bottom:0.000000px;}
.y2c_c00171{bottom:3.239700px;}
.y9_c00171{bottom:3.240000px;}
.y2e_c00171{bottom:3.240300px;}
.y7_c00171{bottom:4.320000px;}
.y1d_c00171{bottom:4.680000px;}
.y1c_c00171{bottom:6.120000px;}
.y25_c00171{bottom:6.300000px;}
.y5_c00171{bottom:12.960000px;}
.y6_c00171{bottom:21.600000px;}
.y2f_c00171{bottom:87.479850px;}
.y2d_c00171{bottom:114.479850px;}
.y2b_c00171{bottom:141.516150px;}
.y2a_c00171{bottom:168.510000px;}
.y29_c00171{bottom:195.510000px;}
.y28_c00171{bottom:222.510000px;}
.y27_c00171{bottom:249.510000px;}
.y26_c00171{bottom:276.510000px;}
.y24_c00171{bottom:306.390000px;}
.y23_c00171{bottom:336.450000px;}
.y22_c00171{bottom:366.330000px;}
.y21_c00171{bottom:396.255000px;}
.y20_c00171{bottom:426.135000px;}
.y1f_c00171{bottom:456.015000px;}
.y1e_c00171{bottom:485.895000px;}
.y1b_c00171{bottom:512.895000px;}
.y1a_c00171{bottom:542.775000px;}
.y19_c00171{bottom:569.775000px;}
.y18_c00171{bottom:596.775000px;}
.y17_c00171{bottom:623.775000px;}
.y16_c00171{bottom:650.805000px;}
.y15_c00171{bottom:677.805000px;}
.y14_c00171{bottom:704.805000px;}
.y13_c00171{bottom:731.805000px;}
.y12_c00171{bottom:758.805000px;}
.y11_c00171{bottom:785.805000px;}
.y10_c00171{bottom:812.805000px;}
.yf_c00171{bottom:839.805000px;}
.ye_c00171{bottom:866.805000px;}
.yd_c00171{bottom:893.850000px;}
.yc_c00171{bottom:920.850000px;}
.yb_c00171{bottom:947.850000px;}
.ya_c00171{bottom:974.850000px;}
.y8_c00171{bottom:1001.850000px;}
.y4_c00171{bottom:1028.850000px;}
.y3_c00171{bottom:1097.609700px;}
.y2_c00171{bottom:1118.670000px;}
.y1_c00171{bottom:1174.680000px;}
.h5_c00171{height:26.279850px;}
.he_c00171{height:26.280450px;}
.h7_c00171{height:26.316150px;}
.hd_c00171{height:28.979850px;}
.hc_c00171{height:29.016150px;}
.h9_c00171{height:29.159700px;}
.hb_c00171{height:29.160300px;}
.h4_c00171{height:43.506914px;}
.ha_c00171{height:44.149219px;}
.h3_c00171{height:45.900000px;}
.h6_c00171{height:51.385430px;}
.h8_c00171{height:51.431484px;}
.h2_c00171{height:56.957344px;}
.h1_c00171{height:1263.000000px;}
.h0_c00171{height:1263.060000px;}
.w3_c00171{width:97.200000px;}
.w4_c00171{width:120.095550px;}
.w6_c00171{width:145.440300px;}
.w5_c00171{width:146.916150px;}
.w2_c00171{width:165.990000px;}
.w7_c00171{width:678.705000px;}
.w1_c00171{width:893.250000px;}
.w0_c00171{width:893.340000px;}
.x0_c00171{left:0.000000px;}
.xd_c00171{left:4.859700px;}
.xa_c00171{left:13.860000px;}
.xc_c00171{left:20.700000px;}
.x7_c00171{left:21.780000px;}
.x5_c00171{left:23.580000px;}
.x9_c00171{left:27.180000px;}
.xf_c00171{left:28.440000px;}
.x20_c00171{left:29.880000px;}
.x1f_c00171{left:34.194000px;}
.x16_c00171{left:35.280000px;}
.x19_c00171{left:37.080000px;}
.x1a_c00171{left:38.160000px;}
.x11_c00171{left:39.420000px;}
.x17_c00171{left:41.040000px;}
.x13_c00171{left:42.480000px;}
.x3_c00171{left:43.734000px;}
.x18_c00171{left:45.900000px;}
.x12_c00171{left:48.060000px;}
.x14_c00171{left:50.040000px;}
.x10_c00171{left:52.020000px;}
.x24_c00171{left:53.100000px;}
.x1b_c00171{left:56.190000px;}
.x1d_c00171{left:58.500000px;}
.x21_c00171{left:59.754000px;}
.x1e_c00171{left:60.840000px;}
.x23_c00171{left:62.640000px;}
.x22_c00171{left:64.254000px;}
.x1c_c00171{left:67.674000px;}
.xe_c00171{left:74.506500px;}
.x15_c00171{left:76.134000px;}
.x1_c00171{left:127.655850px;}
.x2_c00171{left:234.029850px;}
.x4_c00171{left:295.095000px;}
.x6_c00171{left:393.015000px;}
.x8_c00171{left:513.825000px;}
.xb_c00171{left:661.650000px;}
@media print{
.v0_c00171{vertical-align:0.000000pt;}
.v1_c00171{vertical-align:16.000000pt;}
.ls0_c00171{letter-spacing:0.000000pt;}
.ws1_c00171{word-spacing:-14.767360pt;}
.ws0_c00171{word-spacing:-9.607680pt;}
.ws2_c00171{word-spacing:0.000000pt;}
._7_c00171{margin-left:-3.102786pt;}
._6_c00171{margin-left:-2.208024pt;}
._1_c00171{margin-left:-1.001054pt;}
._5_c00171{width:1.310936pt;}
._3_c00171{width:45.986115pt;}
._4_c00171{width:47.112711pt;}
._2_c00171{width:71.571162pt;}
._0_c00171{width:2010.162299pt;}
.fs2_c00171{font-size:34.560000pt;}
.fs1_c00171{font-size:53.120000pt;}
.fs0_c00171{font-size:58.880000pt;}
.y0_c00171{bottom:0.000000pt;}
.y2c_c00171{bottom:2.879733pt;}
.y9_c00171{bottom:2.880000pt;}
.y2e_c00171{bottom:2.880267pt;}
.y7_c00171{bottom:3.840000pt;}
.y1d_c00171{bottom:4.160000pt;}
.y1c_c00171{bottom:5.440000pt;}
.y25_c00171{bottom:5.600000pt;}
.y5_c00171{bottom:11.520000pt;}
.y6_c00171{bottom:19.200000pt;}
.y2f_c00171{bottom:77.759867pt;}
.y2d_c00171{bottom:101.759867pt;}
.y2b_c00171{bottom:125.792133pt;}
.y2a_c00171{bottom:149.786667pt;}
.y29_c00171{bottom:173.786667pt;}
.y28_c00171{bottom:197.786667pt;}
.y27_c00171{bottom:221.786667pt;}
.y26_c00171{bottom:245.786667pt;}
.y24_c00171{bottom:272.346667pt;}
.y23_c00171{bottom:299.066667pt;}
.y22_c00171{bottom:325.626667pt;}
.y21_c00171{bottom:352.226667pt;}
.y20_c00171{bottom:378.786667pt;}
.y1f_c00171{bottom:405.346667pt;}
.y1e_c00171{bottom:431.906667pt;}
.y1b_c00171{bottom:455.906667pt;}
.y1a_c00171{bottom:482.466667pt;}
.y19_c00171{bottom:506.466667pt;}
.y18_c00171{bottom:530.466667pt;}
.y17_c00171{bottom:554.466667pt;}
.y16_c00171{bottom:578.493333pt;}
.y15_c00171{bottom:602.493333pt;}
.y14_c00171{bottom:626.493333pt;}
.y13_c00171{bottom:650.493333pt;}
.y12_c00171{bottom:674.493333pt;}
.y11_c00171{bottom:698.493333pt;}
.y10_c00171{bottom:722.493333pt;}
.yf_c00171{bottom:746.493333pt;}
.ye_c00171{bottom:770.493333pt;}
.yd_c00171{bottom:794.533333pt;}
.yc_c00171{bottom:818.533333pt;}
.yb_c00171{bottom:842.533333pt;}
.ya_c00171{bottom:866.533333pt;}
.y8_c00171{bottom:890.533333pt;}
.y4_c00171{bottom:914.533333pt;}
.y3_c00171{bottom:975.653067pt;}
.y2_c00171{bottom:994.373333pt;}
.y1_c00171{bottom:1044.160000pt;}
.h5_c00171{height:23.359867pt;}
.he_c00171{height:23.360400pt;}
.h7_c00171{height:23.392133pt;}
.hd_c00171{height:25.759867pt;}
.hc_c00171{height:25.792133pt;}
.h9_c00171{height:25.919733pt;}
.hb_c00171{height:25.920267pt;}
.h4_c00171{height:38.672813pt;}
.ha_c00171{height:39.243750pt;}
.h3_c00171{height:40.800000pt;}
.h6_c00171{height:45.675938pt;}
.h8_c00171{height:45.716875pt;}
.h2_c00171{height:50.628750pt;}
.h1_c00171{height:1122.666667pt;}
.h0_c00171{height:1122.720000pt;}
.w3_c00171{width:86.400000pt;}
.w4_c00171{width:106.751600pt;}
.w6_c00171{width:129.280267pt;}
.w5_c00171{width:130.592133pt;}
.w2_c00171{width:147.546667pt;}
.w7_c00171{width:603.293333pt;}
.w1_c00171{width:794.000000pt;}
.w0_c00171{width:794.080000pt;}
.x0_c00171{left:0.000000pt;}
.xd_c00171{left:4.319733pt;}
.xa_c00171{left:12.320000pt;}
.xc_c00171{left:18.400000pt;}
.x7_c00171{left:19.360000pt;}
.x5_c00171{left:20.960000pt;}
.x9_c00171{left:24.160000pt;}
.xf_c00171{left:25.280000pt;}
.x20_c00171{left:26.560000pt;}
.x1f_c00171{left:30.394667pt;}
.x16_c00171{left:31.360000pt;}
.x19_c00171{left:32.960000pt;}
.x1a_c00171{left:33.920000pt;}
.x11_c00171{left:35.040000pt;}
.x17_c00171{left:36.480000pt;}
.x13_c00171{left:37.760000pt;}
.x3_c00171{left:38.874667pt;}
.x18_c00171{left:40.800000pt;}
.x12_c00171{left:42.720000pt;}
.x14_c00171{left:44.480000pt;}
.x10_c00171{left:46.240000pt;}
.x24_c00171{left:47.200000pt;}
.x1b_c00171{left:49.946667pt;}
.x1d_c00171{left:52.000000pt;}
.x21_c00171{left:53.114667pt;}
.x1e_c00171{left:54.080000pt;}
.x23_c00171{left:55.680000pt;}
.x22_c00171{left:57.114667pt;}
.x1c_c00171{left:60.154667pt;}
.xe_c00171{left:66.228000pt;}
.x15_c00171{left:67.674667pt;}
.x1_c00171{left:113.471867pt;}
.x2_c00171{left:208.026533pt;}
.x4_c00171{left:262.306667pt;}
.x6_c00171{left:349.346667pt;}
.x8_c00171{left:456.733333pt;}
.xb_c00171{left:588.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_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_3d7e0ee29b398b9a801d2967.woff2')format("woff");}.ff1_c00172{font-family:ff1_c00172;line-height:1.070312;font-style:normal;font-weight:normal;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_121b63acfe14505cc6e86982.woff2')format("woff");}.ff2_c00172{font-family:ff2_c00172;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00172;src:url('chunks/assets/font_2c661173fbe578d4a1a8299a.woff2')format("woff");}.ff3_c00172{font-family:ff3_c00172;line-height:0.938965;font-style: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);}
.m1_c00172{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_c00172{vertical-align:0.000000px;}
.v1_c00172{vertical-align:18.000000px;}
.ls0_c00172{letter-spacing:0.000000px;}
.sc__c00172{text-shadow:none;}
.sc0_c00172{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00172{-webkit-text-stroke:0px transparent;}
.sc0_c00172{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00172{word-spacing:-36.829440px;}
.ws0_c00172{word-spacing:-15.012000px;}
.ws2_c00172{word-spacing:0.000000px;}
._11_c00172{margin-left:-4.572160px;}
._10_c00172{margin-left:-2.444234px;}
._2_c00172{margin-left:-1.124267px;}
._1_c00172{width:1.126260px;}
._7_c00172{width:2.247067px;}
._13_c00172{width:3.370622px;}
._5_c00172{width:4.517895px;}
._4_c00172{width:5.959796px;}
._12_c00172{width:7.621325px;}
._c_c00172{width:12.385917px;}
._a_c00172{width:16.888434px;}
._3_c00172{width:20.003346px;}
._b_c00172{width:21.561560px;}
._e_c00172{width:22.985888px;}
._f_c00172{width:24.109439px;}
._8_c00172{width:31.463632px;}
._9_c00172{width:32.579856px;}
._6_c00172{width:38.640281px;}
._d_c00172{width:80.515639px;}
._0_c00172{width:2261.432586px;}
.fc0_c00172{color:rgb(0,0,0);}
.fs3_c00172{font-size:38.880000px;}
.fs1_c00172{font-size:54.000000px;}
.fs2_c00172{font-size:59.760000px;}
.fs0_c00172{font-size:66.240000px;}
.y0_c00172{bottom:0.000000px;}
.y1f_c00172{bottom:3.240000px;}
.y1b_c00172{bottom:7.020000px;}
.y28_c00172{bottom:8.100000px;}
.y1d_c00172{bottom:18.180000px;}
.y18_c00172{bottom:26.820000px;}
.y1a_c00172{bottom:33.120000px;}
.y1c_c00172{bottom:35.460000px;}
.y19_c00172{bottom:50.400000px;}
.y30_c00172{bottom:126.540300px;}
.y2f_c00172{bottom:147.635850px;}
.y2e_c00172{bottom:168.690300px;}
.y2d_c00172{bottom:189.570150px;}
.y2c_c00172{bottom:210.629850px;}
.y2b_c00172{bottom:231.690150px;}
.y2a_c00172{bottom:252.570000px;}
.y29_c00172{bottom:282.630000px;}
.y27_c00172{bottom:309.270000px;}
.y26_c00172{bottom:341.130000px;}
.y25_c00172{bottom:368.130000px;}
.y24_c00172{bottom:395.175000px;}
.y23_c00172{bottom:422.175000px;}
.y22_c00172{bottom:449.175000px;}
.y21_c00172{bottom:476.175000px;}
.y20_c00172{bottom:503.175000px;}
.y1e_c00172{bottom:530.175000px;}
.y17_c00172{bottom:557.175000px;}
.y16_c00172{bottom:653.504700px;}
.y15_c00172{bottom:674.565000px;}
.y14_c00172{bottom:722.625150px;}
.y13_c00172{bottom:743.505000px;}
.y12_c00172{bottom:764.565300px;}
.y11_c00172{bottom:785.625000px;}
.y10_c00172{bottom:815.505150px;}
.yf_c00172{bottom:836.565450px;}
.ye_c00172{bottom:857.625150px;}
.yd_c00172{bottom:878.505000px;}
.yc_c00172{bottom:899.609850px;}
.yb_c00172{bottom:920.670150px;}
.ya_c00172{bottom:941.550000px;}
.y9_c00172{bottom:971.609400px;}
.y8_c00172{bottom:992.669700px;}
.y7_c00172{bottom:1013.549550px;}
.y6_c00172{bottom:1034.609850px;}
.y5_c00172{bottom:1055.670150px;}
.y4_c00172{bottom:1076.550000px;}
.y3_c00172{bottom:1097.609700px;}
.y2_c00172{bottom:1118.670000px;}
.y1_c00172{bottom:1174.680000px;}
.h5_c00172{height:26.279850px;}
.h8_c00172{height:26.316150px;}
.h9_c00172{height:31.139700px;}
.h4_c00172{height:43.506914px;}
.h6_c00172{height:51.385430px;}
.h7_c00172{height:51.431484px;}
.h2_c00172{height:56.957344px;}
.h3_c00172{height:73.440300px;}
.h1_c00172{height:1263.000000px;}
.h0_c00172{height:1263.060000px;}
.w3_c00172{width:98.640300px;}
.w4_c00172{width:121.896150px;}
.w6_c00172{width:147.815700px;}
.w5_c00172{width:149.256450px;}
.w2_c00172{width:168.330000px;}
.w1_c00172{width:893.250000px;}
.w0_c00172{width:893.340000px;}
.x0_c00172{left:0.000000px;}
.xd_c00172{left:14.940000px;}
.x8_c00172{left:22.140000px;}
.x6_c00172{left:24.300000px;}
.xc_c00172{left:28.440000px;}
.x1a_c00172{left:30.594000px;}
.x16_c00172{left:33.480000px;}
.xa_c00172{left:36.360000px;}
.x9_c00172{left:39.240000px;}
.x11_c00172{left:40.500000px;}
.x17_c00172{left:42.120000px;}
.x14_c00172{left:43.560000px;}
.x4_c00172{left:44.994000px;}
.x15_c00172{left:46.800000px;}
.x13_c00172{left:48.960000px;}
.x19_c00172{left:50.940000px;}
.x10_c00172{left:52.950000px;}
.x12_c00172{left:57.600000px;}
.xf_c00172{left:75.766500px;}
.x18_c00172{left:77.394000px;}
.x1_c00172{left:127.655850px;}
.x2_c00172{left:148.896150px;}
.x3_c00172{left:234.029850px;}
.x5_c00172{left:297.435000px;}
.x7_c00172{left:396.975000px;}
.xb_c00172{left:519.585000px;}
.xe_c00172{left:669.570000px;}
@media print{
.v0_c00172{vertical-align:0.000000pt;}
.v1_c00172{vertical-align:16.000000pt;}
.ls0_c00172{letter-spacing:0.000000pt;}
.ws1_c00172{word-spacing:-32.737280pt;}
.ws0_c00172{word-spacing:-13.344000pt;}
.ws2_c00172{word-spacing:0.000000pt;}
._11_c00172{margin-left:-4.064143pt;}
._10_c00172{margin-left:-2.172652pt;}
._2_c00172{margin-left:-0.999348pt;}
._1_c00172{width:1.001120pt;}
._7_c00172{width:1.997393pt;}
._13_c00172{width:2.996109pt;}
._5_c00172{width:4.015906pt;}
._4_c00172{width:5.297596pt;}
._12_c00172{width:6.774511pt;}
._c_c00172{width:11.009704pt;}
._a_c00172{width:15.011942pt;}
._3_c00172{width:17.780752pt;}
._b_c00172{width:19.165831pt;}
._e_c00172{width:20.431901pt;}
._f_c00172{width:21.430612pt;}
._8_c00172{width:27.967673pt;}
._9_c00172{width:28.959872pt;}
._6_c00172{width:34.346917pt;}
._d_c00172{width:71.569457pt;}
._0_c00172{width:2010.162299pt;}
.fs3_c00172{font-size:34.560000pt;}
.fs1_c00172{font-size:48.000000pt;}
.fs2_c00172{font-size:53.120000pt;}
.fs0_c00172{font-size:58.880000pt;}
.y0_c00172{bottom:0.000000pt;}
.y1f_c00172{bottom:2.880000pt;}
.y1b_c00172{bottom:6.240000pt;}
.y28_c00172{bottom:7.200000pt;}
.y1d_c00172{bottom:16.160000pt;}
.y18_c00172{bottom:23.840000pt;}
.y1a_c00172{bottom:29.440000pt;}
.y1c_c00172{bottom:31.520000pt;}
.y19_c00172{bottom:44.800000pt;}
.y30_c00172{bottom:112.480267pt;}
.y2f_c00172{bottom:131.231867pt;}
.y2e_c00172{bottom:149.946933pt;}
.y2d_c00172{bottom:168.506800pt;}
.y2c_c00172{bottom:187.226533pt;}
.y2b_c00172{bottom:205.946800pt;}
.y2a_c00172{bottom:224.506667pt;}
.y29_c00172{bottom:251.226667pt;}
.y27_c00172{bottom:274.906667pt;}
.y26_c00172{bottom:303.226667pt;}
.y25_c00172{bottom:327.226667pt;}
.y24_c00172{bottom:351.266667pt;}
.y23_c00172{bottom:375.266667pt;}
.y22_c00172{bottom:399.266667pt;}
.y21_c00172{bottom:423.266667pt;}
.y20_c00172{bottom:447.266667pt;}
.y1e_c00172{bottom:471.266667pt;}
.y17_c00172{bottom:495.266667pt;}
.y16_c00172{bottom:580.893067pt;}
.y15_c00172{bottom:599.613333pt;}
.y14_c00172{bottom:642.333467pt;}
.y13_c00172{bottom:660.893333pt;}
.y12_c00172{bottom:679.613600pt;}
.y11_c00172{bottom:698.333333pt;}
.y10_c00172{bottom:724.893467pt;}
.yf_c00172{bottom:743.613733pt;}
.ye_c00172{bottom:762.333467pt;}
.yd_c00172{bottom:780.893333pt;}
.yc_c00172{bottom:799.653200pt;}
.yb_c00172{bottom:818.373467pt;}
.ya_c00172{bottom:836.933333pt;}
.y9_c00172{bottom:863.652800pt;}
.y8_c00172{bottom:882.373067pt;}
.y7_c00172{bottom:900.932933pt;}
.y6_c00172{bottom:919.653200pt;}
.y5_c00172{bottom:938.373467pt;}
.y4_c00172{bottom:956.933333pt;}
.y3_c00172{bottom:975.653067pt;}
.y2_c00172{bottom:994.373333pt;}
.y1_c00172{bottom:1044.160000pt;}
.h5_c00172{height:23.359867pt;}
.h8_c00172{height:23.392133pt;}
.h9_c00172{height:27.679733pt;}
.h4_c00172{height:38.672813pt;}
.h6_c00172{height:45.675938pt;}
.h7_c00172{height:45.716875pt;}
.h2_c00172{height:50.628750pt;}
.h3_c00172{height:65.280267pt;}
.h1_c00172{height:1122.666667pt;}
.h0_c00172{height:1122.720000pt;}
.w3_c00172{width:87.680267pt;}
.w4_c00172{width:108.352133pt;}
.w6_c00172{width:131.391733pt;}
.w5_c00172{width:132.672400pt;}
.w2_c00172{width:149.626667pt;}
.w1_c00172{width:794.000000pt;}
.w0_c00172{width:794.080000pt;}
.x0_c00172{left:0.000000pt;}
.xd_c00172{left:13.280000pt;}
.x8_c00172{left:19.680000pt;}
.x6_c00172{left:21.600000pt;}
.xc_c00172{left:25.280000pt;}
.x1a_c00172{left:27.194667pt;}
.x16_c00172{left:29.760000pt;}
.xa_c00172{left:32.320000pt;}
.x9_c00172{left:34.880000pt;}
.x11_c00172{left:36.000000pt;}
.x17_c00172{left:37.440000pt;}
.x14_c00172{left:38.720000pt;}
.x4_c00172{left:39.994667pt;}
.x15_c00172{left:41.600000pt;}
.x13_c00172{left:43.520000pt;}
.x19_c00172{left:45.280000pt;}
.x10_c00172{left:47.066667pt;}
.x12_c00172{left:51.200000pt;}
.xf_c00172{left:67.348000pt;}
.x18_c00172{left:68.794667pt;}
.x1_c00172{left:113.471867pt;}
.x2_c00172{left:132.352133pt;}
.x3_c00172{left:208.026533pt;}
.x5_c00172{left:264.386667pt;}
.x7_c00172{left:352.866667pt;}
.xb_c00172{left:461.853333pt;}
.xe_c00172{left:595.173333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8b0443811053e16befea6e4f.woff2')format("woff");}.ff1_c00173{font-family:ff1_c00173;line-height:1.070312;font-style:normal;font-weight:normal;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_07fae315493cb190c89932ae.woff2')format("woff");}.ff2_c00173{font-family:ff2_c00173;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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);}
.m1_c00173{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1_c00173{vertical-align:-2.880468px;}
.v0_c00173{vertical-align:0.000000px;}
.v2_c00173{vertical-align:2.880468px;}
.v3_c00173{vertical-align:18.000000px;}
.ls1_c00173{letter-spacing:0.000000px;}
.ls0_c00173{letter-spacing:0.263460px;}
.sc__c00173{text-shadow:none;}
.sc0_c00173{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00173{-webkit-text-stroke:0px transparent;}
.sc0_c00173{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00173{word-spacing:-16.613280px;}
.ws2_c00173{word-spacing:-15.012000px;}
.ws0_c00173{word-spacing:-10.808640px;}
.ws3_c00173{word-spacing:0.000000px;}
._1_c00173{margin-left:-4.472244px;}
._3_c00173{margin-left:-2.774400px;}
._2_c00173{margin-left:-1.024495px;}
._8_c00173{width:1.472461px;}
._b_c00173{width:3.145403px;}
._5_c00173{width:4.240604px;}
._6_c00173{width:5.266614px;}
._7_c00173{width:6.315167px;}
._10_c00173{width:8.198606px;}
._c_c00173{width:9.605313px;}
._11_c00173{width:10.638502px;}
._f_c00173{width:11.732873px;}
._e_c00173{width:13.048382px;}
._13_c00173{width:14.399627px;}
._12_c00173{width:15.466055px;}
._a_c00173{width:33.119152px;}
._9_c00173{width:38.220245px;}
._d_c00173{width:62.255920px;}
._4_c00173{width:80.415867px;}
._14_c00173{width:846.159231px;}
._0_c00173{width:2261.432586px;}
.fc0_c00173{color:rgb(0,0,0);}
.fs2_c00173{font-size:38.880000px;}
.fs3_c00173{font-size:54.000000px;}
.fs1_c00173{font-size:59.760000px;}
.fs0_c00173{font-size:66.240000px;}
.y0_c00173{bottom:0.000000px;}
.ye_c00173{bottom:3.240000px;}
.yc_c00173{bottom:3.285000px;}
.ya_c00173{bottom:14.940000px;}
.y8_c00173{bottom:23.400000px;}
.y9_c00173{bottom:32.040000px;}
.y2f_c00173{bottom:90.179850px;}
.y2e_c00173{bottom:111.240300px;}
.y2d_c00173{bottom:132.120150px;}
.y2c_c00173{bottom:153.210000px;}
.y2b_c00173{bottom:174.270000px;}
.y2a_c00173{bottom:195.150000px;}
.y29_c00173{bottom:216.210000px;}
.y28_c00173{bottom:237.270000px;}
.y27_c00173{bottom:258.150000px;}
.y26_c00173{bottom:279.210000px;}
.y25_c00173{bottom:300.270000px;}
.y24_c00173{bottom:321.150000px;}
.y23_c00173{bottom:342.210000px;}
.y22_c00173{bottom:363.270000px;}
.y21_c00173{bottom:384.150000px;}
.y20_c00173{bottom:405.255000px;}
.y1f_c00173{bottom:426.315000px;}
.y1e_c00173{bottom:447.195000px;}
.y1d_c00173{bottom:468.255000px;}
.y1c_c00173{bottom:489.315000px;}
.y1b_c00173{bottom:510.195000px;}
.y1a_c00173{bottom:540.255000px;}
.y19_c00173{bottom:597.315300px;}
.y18_c00173{bottom:618.195150px;}
.y17_c00173{bottom:639.254850px;}
.y16_c00173{bottom:660.345150px;}
.y15_c00173{bottom:681.225000px;}
.y14_c00173{bottom:711.284850px;}
.y13_c00173{bottom:732.345150px;}
.y12_c00173{bottom:753.225000px;}
.y11_c00173{bottom:783.285000px;}
.y10_c00173{bottom:809.925000px;}
.yf_c00173{bottom:836.925000px;}
.yd_c00173{bottom:863.925000px;}
.yb_c00173{bottom:890.925000px;}
.y7_c00173{bottom:917.970000px;}
.y6_c00173{bottom:1007.609700px;}
.y5_c00173{bottom:1028.670000px;}
.y4_c00173{bottom:1076.550300px;}
.y3_c00173{bottom:1097.609700px;}
.y2_c00173{bottom:1118.670000px;}
.y1_c00173{bottom:1174.680000px;}
.h8_c00173{height:26.279850px;}
.h6_c00173{height:26.316150px;}
.h5_c00173{height:43.506914px;}
.ha_c00173{height:48.224531px;}
.h7_c00173{height:51.385430px;}
.h9_c00173{height:51.431484px;}
.h2_c00173{height:56.957344px;}
.h3_c00173{height:56.958544px;}
.h4_c00173{height:66.779850px;}
.h1_c00173{height:1263.000000px;}
.h0_c00173{height:1263.060000px;}
.w3_c00173{width:114.840300px;}
.w5_c00173{width:149.580450px;}
.w2_c00173{width:189.930000px;}
.w4_c00173{width:222.015000px;}
.w1_c00173{width:893.250000px;}
.w0_c00173{width:893.340000px;}
.x0_c00173{left:0.000000px;}
.x8_c00173{left:3.060000px;}
.xb_c00173{left:22.680000px;}
.xa_c00173{left:28.620000px;}
.x6_c00173{left:32.400000px;}
.xe_c00173{left:43.200000px;}
.x13_c00173{left:47.340000px;}
.x14_c00173{left:51.480000px;}
.x11_c00173{left:52.740000px;}
.x4_c00173{left:55.794000px;}
.xc_c00173{left:59.394000px;}
.xf_c00173{left:73.434000px;}
.xd_c00173{left:79.230000px;}
.x12_c00173{left:83.370000px;}
.x10_c00173{left:87.690000px;}
.x1_c00173{left:127.655850px;}
.x2_c00173{left:148.888050px;}
.x3_c00173{left:234.029850px;}
.x5_c00173{left:319.035000px;}
.x7_c00173{left:434.595000px;}
.x9_c00173{left:657.510000px;}
@media print{
.v1_c00173{vertical-align:-2.560416pt;}
.v0_c00173{vertical-align:0.000000pt;}
.v2_c00173{vertical-align:2.560416pt;}
.v3_c00173{vertical-align:16.000000pt;}
.ls1_c00173{letter-spacing:0.000000pt;}
.ls0_c00173{letter-spacing:0.234187pt;}
.ws1_c00173{word-spacing:-14.767360pt;}
.ws2_c00173{word-spacing:-13.344000pt;}
.ws0_c00173{word-spacing:-9.607680pt;}
.ws3_c00173{word-spacing:0.000000pt;}
._1_c00173{margin-left:-3.975328pt;}
._3_c00173{margin-left:-2.466133pt;}
._2_c00173{margin-left:-0.910662pt;}
._8_c00173{width:1.308854pt;}
._b_c00173{width:2.795914pt;}
._5_c00173{width:3.769426pt;}
._6_c00173{width:4.681435pt;}
._7_c00173{width:5.613482pt;}
._10_c00173{width:7.287650pt;}
._c_c00173{width:8.538056pt;}
._11_c00173{width:9.456446pt;}
._f_c00173{width:10.429220pt;}
._e_c00173{width:11.598562pt;}
._13_c00173{width:12.799668pt;}
._12_c00173{width:13.747604pt;}
._a_c00173{width:29.439246pt;}
._9_c00173{width:33.973551pt;}
._d_c00173{width:55.338595pt;}
._4_c00173{width:71.480770pt;}
._14_c00173{width:752.141539pt;}
._0_c00173{width:2010.162299pt;}
.fs2_c00173{font-size:34.560000pt;}
.fs3_c00173{font-size:48.000000pt;}
.fs1_c00173{font-size:53.120000pt;}
.fs0_c00173{font-size:58.880000pt;}
.y0_c00173{bottom:0.000000pt;}
.ye_c00173{bottom:2.880000pt;}
.yc_c00173{bottom:2.920000pt;}
.ya_c00173{bottom:13.280000pt;}
.y8_c00173{bottom:20.800000pt;}
.y9_c00173{bottom:28.480000pt;}
.y2f_c00173{bottom:80.159867pt;}
.y2e_c00173{bottom:98.880267pt;}
.y2d_c00173{bottom:117.440133pt;}
.y2c_c00173{bottom:136.186667pt;}
.y2b_c00173{bottom:154.906667pt;}
.y2a_c00173{bottom:173.466667pt;}
.y29_c00173{bottom:192.186667pt;}
.y28_c00173{bottom:210.906667pt;}
.y27_c00173{bottom:229.466667pt;}
.y26_c00173{bottom:248.186667pt;}
.y25_c00173{bottom:266.906667pt;}
.y24_c00173{bottom:285.466667pt;}
.y23_c00173{bottom:304.186667pt;}
.y22_c00173{bottom:322.906667pt;}
.y21_c00173{bottom:341.466667pt;}
.y20_c00173{bottom:360.226667pt;}
.y1f_c00173{bottom:378.946667pt;}
.y1e_c00173{bottom:397.506667pt;}
.y1d_c00173{bottom:416.226667pt;}
.y1c_c00173{bottom:434.946667pt;}
.y1b_c00173{bottom:453.506667pt;}
.y1a_c00173{bottom:480.226667pt;}
.y19_c00173{bottom:530.946933pt;}
.y18_c00173{bottom:549.506800pt;}
.y17_c00173{bottom:568.226533pt;}
.y16_c00173{bottom:586.973467pt;}
.y15_c00173{bottom:605.533333pt;}
.y14_c00173{bottom:632.253200pt;}
.y13_c00173{bottom:650.973467pt;}
.y12_c00173{bottom:669.533333pt;}
.y11_c00173{bottom:696.253333pt;}
.y10_c00173{bottom:719.933333pt;}
.yf_c00173{bottom:743.933333pt;}
.yd_c00173{bottom:767.933333pt;}
.yb_c00173{bottom:791.933333pt;}
.y7_c00173{bottom:815.973333pt;}
.y6_c00173{bottom:895.653067pt;}
.y5_c00173{bottom:914.373333pt;}
.y4_c00173{bottom:956.933600pt;}
.y3_c00173{bottom:975.653067pt;}
.y2_c00173{bottom:994.373333pt;}
.y1_c00173{bottom:1044.160000pt;}
.h8_c00173{height:23.359867pt;}
.h6_c00173{height:23.392133pt;}
.h5_c00173{height:38.672813pt;}
.ha_c00173{height:42.866250pt;}
.h7_c00173{height:45.675938pt;}
.h9_c00173{height:45.716875pt;}
.h2_c00173{height:50.628750pt;}
.h3_c00173{height:50.629817pt;}
.h4_c00173{height:59.359867pt;}
.h1_c00173{height:1122.666667pt;}
.h0_c00173{height:1122.720000pt;}
.w3_c00173{width:102.080267pt;}
.w5_c00173{width:132.960400pt;}
.w2_c00173{width:168.826667pt;}
.w4_c00173{width:197.346667pt;}
.w1_c00173{width:794.000000pt;}
.w0_c00173{width:794.080000pt;}
.x0_c00173{left:0.000000pt;}
.x8_c00173{left:2.720000pt;}
.xb_c00173{left:20.160000pt;}
.xa_c00173{left:25.440000pt;}
.x6_c00173{left:28.800000pt;}
.xe_c00173{left:38.400000pt;}
.x13_c00173{left:42.080000pt;}
.x14_c00173{left:45.760000pt;}
.x11_c00173{left:46.880000pt;}
.x4_c00173{left:49.594667pt;}
.xc_c00173{left:52.794667pt;}
.xf_c00173{left:65.274667pt;}
.xd_c00173{left:70.426667pt;}
.x12_c00173{left:74.106667pt;}
.x10_c00173{left:77.946667pt;}
.x1_c00173{left:113.471867pt;}
.x2_c00173{left:132.344933pt;}
.x3_c00173{left:208.026533pt;}
.x5_c00173{left:283.586667pt;}
.x7_c00173{left:386.306667pt;}
.x9_c00173{left:584.453333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3fb27def782f546ed0546efb.woff2')format("woff");}.ff1_c00174{font-family:ff1_c00174;line-height:1.070312;font-style:normal;font-weight:normal;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_db868aceaac44b7ca1b50e7d.woff2')format("woff");}.ff2_c00174{font-family:ff2_c00174;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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);}
.v1_c00174{vertical-align:-2.880468px;}
.v0_c00174{vertical-align:0.000000px;}
.v2_c00174{vertical-align:2.880468px;}
.ls0_c00174{letter-spacing:0.000000px;}
.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;}
}
.ws2_c00174{word-spacing:-16.613280px;}
.ws0_c00174{word-spacing:-15.012000px;}
.ws1_c00174{word-spacing:-10.808640px;}
.ws3_c00174{word-spacing:0.000000px;}
._4_c00174{margin-left:-7.178748px;}
._5_c00174{margin-left:-3.643698px;}
._6_c00174{margin-left:-2.510393px;}
._3_c00174{margin-left:-1.126186px;}
._7_c00174{width:1.020643px;}
._1_c00174{width:21.907025px;}
._2_c00174{width:193.985165px;}
._0_c00174{width:2371.553826px;}
.fc1_c00174{color:transparent;}
.fc0_c00174{color:rgb(0,0,0);}
.fs3_c00174{font-size:38.880000px;}
.fs1_c00174{font-size:54.000000px;}
.fs2_c00174{font-size:59.760000px;}
.fs0_c00174{font-size:66.240000px;}
.y0_c00174{bottom:0.000000px;}
.y21_c00174{bottom:3.239700px;}
.yf_c00174{bottom:3.240000px;}
.yd_c00174{bottom:3.645000px;}
.y9_c00174{bottom:12.645000px;}
.yc_c00174{bottom:21.645000px;}
.y8_c00174{bottom:30.645000px;}
.y5_c00174{bottom:39.645000px;}
.y7_c00174{bottom:48.645000px;}
.yb_c00174{bottom:57.645000px;}
.y6_c00174{bottom:66.645000px;}
.ya_c00174{bottom:75.645000px;}
.y22_c00174{bottom:110.916150px;}
.y20_c00174{bottom:137.916150px;}
.y1f_c00174{bottom:164.910000px;}
.y1e_c00174{bottom:191.910000px;}
.y1d_c00174{bottom:218.910000px;}
.y1c_c00174{bottom:245.910000px;}
.y1b_c00174{bottom:272.955000px;}
.y1a_c00174{bottom:299.955000px;}
.y19_c00174{bottom:326.955000px;}
.y18_c00174{bottom:353.955000px;}
.y17_c00174{bottom:380.955000px;}
.y16_c00174{bottom:407.955000px;}
.y15_c00174{bottom:434.955000px;}
.y14_c00174{bottom:461.985000px;}
.y13_c00174{bottom:488.985000px;}
.y12_c00174{bottom:515.985000px;}
.y11_c00174{bottom:542.985000px;}
.y10_c00174{bottom:569.985000px;}
.ye_c00174{bottom:596.985000px;}
.y4_c00174{bottom:623.985000px;}
.y3_c00174{bottom:718.890000px;}
.y2_c00174{bottom:739.950000px;}
.y1_c00174{bottom:804.930000px;}
.h8_c00174{height:26.279850px;}
.h5_c00174{height:26.280450px;}
.h7_c00174{height:26.316150px;}
.h4_c00174{height:43.506914px;}
.h6_c00174{height:51.385430px;}
.h2_c00174{height:56.957344px;}
.h3_c00174{height:90.036300px;}
.h1_c00174{height:893.250000px;}
.h0_c00174{height:893.340000px;}
.w3_c00174{width:84.600000px;}
.w8_c00174{width:94.895550px;}
.wb_c00174{width:94.896150px;}
.wa_c00174{width:95.039700px;}
.w9_c00174{width:105.659700px;}
.w4_c00174{width:116.135700px;}
.w5_c00174{width:126.720150px;}
.w6_c00174{width:126.755850px;}
.w7_c00174{width:126.900000px;}
.w2_c00174{width:137.555850px;}
.w1_c00174{width:1263.000000px;}
.w0_c00174{width:1263.060000px;}
.x0_c00174{left:0.000000px;}
.x10_c00174{left:1.260000px;}
.xa_c00174{left:5.940000px;}
.xb_c00174{left:7.200000px;}
.xf_c00174{left:11.340000px;}
.x15_c00174{left:12.780000px;}
.x1e_c00174{left:14.940000px;}
.x7_c00174{left:17.100000px;}
.x16_c00174{left:19.080000px;}
.x1b_c00174{left:21.240000px;}
.xd_c00174{left:22.500000px;}
.x18_c00174{left:24.300000px;}
.x1c_c00174{left:25.740000px;}
.x2a_c00174{left:27.540000px;}
.x5_c00174{left:29.520150px;}
.x29_c00174{left:31.140000px;}
.x19_c00174{left:33.120000px;}
.x9_c00174{left:35.100000px;}
.x21_c00174{left:36.900000px;}
.x2c_c00174{left:38.160000px;}
.x23_c00174{left:39.240000px;}
.xe_c00174{left:40.500000px;}
.x22_c00174{left:42.300000px;}
.x27_c00174{left:43.380000px;}
.x25_c00174{left:44.460000px;}
.x12_c00174{left:45.720000px;}
.x2b_c00174{left:47.196150px;}
.x1f_c00174{left:48.240000px;}
.x24_c00174{left:50.760000px;}
.x20_c00174{left:52.920000px;}
.x26_c00174{left:54.900000px;}
.x28_c00174{left:59.220000px;}
.x4_c00174{left:74.700000px;}
.x1_c00174{left:84.959700px;}
.x2_c00174{left:106.200000px;}
.x3_c00174{left:190.650000px;}
.x6_c00174{left:212.970000px;}
.x8_c00174{left:298.290000px;}
.xc_c00174{left:415.155000px;}
.x11_c00174{left:542.775000px;}
.x13_c00174{left:670.245000px;}
.x14_c00174{left:797.865000px;}
.x17_c00174{left:893.490000px;}
.x1a_c00174{left:999.870000px;}
.x1d_c00174{left:1095.630000px;}
@media print{
.v1_c00174{vertical-align:-2.560416pt;}
.v0_c00174{vertical-align:0.000000pt;}
.v2_c00174{vertical-align:2.560416pt;}
.ls0_c00174{letter-spacing:0.000000pt;}
.ws2_c00174{word-spacing:-14.767360pt;}
.ws0_c00174{word-spacing:-13.344000pt;}
.ws1_c00174{word-spacing:-9.607680pt;}
.ws3_c00174{word-spacing:0.000000pt;}
._4_c00174{margin-left:-6.381109pt;}
._5_c00174{margin-left:-3.238843pt;}
._6_c00174{margin-left:-2.231460pt;}
._3_c00174{margin-left:-1.001054pt;}
._7_c00174{width:0.907238pt;}
._1_c00174{width:19.472911pt;}
._2_c00174{width:172.431258pt;}
._0_c00174{width:2108.047846pt;}
.fs3_c00174{font-size:34.560000pt;}
.fs1_c00174{font-size:48.000000pt;}
.fs2_c00174{font-size:53.120000pt;}
.fs0_c00174{font-size:58.880000pt;}
.y0_c00174{bottom:0.000000pt;}
.y21_c00174{bottom:2.879733pt;}
.yf_c00174{bottom:2.880000pt;}
.yd_c00174{bottom:3.240000pt;}
.y9_c00174{bottom:11.240000pt;}
.yc_c00174{bottom:19.240000pt;}
.y8_c00174{bottom:27.240000pt;}
.y5_c00174{bottom:35.240000pt;}
.y7_c00174{bottom:43.240000pt;}
.yb_c00174{bottom:51.240000pt;}
.y6_c00174{bottom:59.240000pt;}
.ya_c00174{bottom:67.240000pt;}
.y22_c00174{bottom:98.592133pt;}
.y20_c00174{bottom:122.592133pt;}
.y1f_c00174{bottom:146.586667pt;}
.y1e_c00174{bottom:170.586667pt;}
.y1d_c00174{bottom:194.586667pt;}
.y1c_c00174{bottom:218.586667pt;}
.y1b_c00174{bottom:242.626667pt;}
.y1a_c00174{bottom:266.626667pt;}
.y19_c00174{bottom:290.626667pt;}
.y18_c00174{bottom:314.626667pt;}
.y17_c00174{bottom:338.626667pt;}
.y16_c00174{bottom:362.626667pt;}
.y15_c00174{bottom:386.626667pt;}
.y14_c00174{bottom:410.653333pt;}
.y13_c00174{bottom:434.653333pt;}
.y12_c00174{bottom:458.653333pt;}
.y11_c00174{bottom:482.653333pt;}
.y10_c00174{bottom:506.653333pt;}
.ye_c00174{bottom:530.653333pt;}
.y4_c00174{bottom:554.653333pt;}
.y3_c00174{bottom:639.013333pt;}
.y2_c00174{bottom:657.733333pt;}
.y1_c00174{bottom:715.493333pt;}
.h8_c00174{height:23.359867pt;}
.h5_c00174{height:23.360400pt;}
.h7_c00174{height:23.392133pt;}
.h4_c00174{height:38.672813pt;}
.h6_c00174{height:45.675938pt;}
.h2_c00174{height:50.628750pt;}
.h3_c00174{height:80.032267pt;}
.h1_c00174{height:794.000000pt;}
.h0_c00174{height:794.080000pt;}
.w3_c00174{width:75.200000pt;}
.w8_c00174{width:84.351600pt;}
.wb_c00174{width:84.352133pt;}
.wa_c00174{width:84.479733pt;}
.w9_c00174{width:93.919733pt;}
.w4_c00174{width:103.231733pt;}
.w5_c00174{width:112.640133pt;}
.w6_c00174{width:112.671867pt;}
.w7_c00174{width:112.800000pt;}
.w2_c00174{width:122.271867pt;}
.w1_c00174{width:1122.666667pt;}
.w0_c00174{width:1122.720000pt;}
.x0_c00174{left:0.000000pt;}
.x10_c00174{left:1.120000pt;}
.xa_c00174{left:5.280000pt;}
.xb_c00174{left:6.400000pt;}
.xf_c00174{left:10.080000pt;}
.x15_c00174{left:11.360000pt;}
.x1e_c00174{left:13.280000pt;}
.x7_c00174{left:15.200000pt;}
.x16_c00174{left:16.960000pt;}
.x1b_c00174{left:18.880000pt;}
.xd_c00174{left:20.000000pt;}
.x18_c00174{left:21.600000pt;}
.x1c_c00174{left:22.880000pt;}
.x2a_c00174{left:24.480000pt;}
.x5_c00174{left:26.240133pt;}
.x29_c00174{left:27.680000pt;}
.x19_c00174{left:29.440000pt;}
.x9_c00174{left:31.200000pt;}
.x21_c00174{left:32.800000pt;}
.x2c_c00174{left:33.920000pt;}
.x23_c00174{left:34.880000pt;}
.xe_c00174{left:36.000000pt;}
.x22_c00174{left:37.600000pt;}
.x27_c00174{left:38.560000pt;}
.x25_c00174{left:39.520000pt;}
.x12_c00174{left:40.640000pt;}
.x2b_c00174{left:41.952133pt;}
.x1f_c00174{left:42.880000pt;}
.x24_c00174{left:45.120000pt;}
.x20_c00174{left:47.040000pt;}
.x26_c00174{left:48.800000pt;}
.x28_c00174{left:52.640000pt;}
.x4_c00174{left:66.400000pt;}
.x1_c00174{left:75.519733pt;}
.x2_c00174{left:94.400000pt;}
.x3_c00174{left:169.466667pt;}
.x6_c00174{left:189.306667pt;}
.x8_c00174{left:265.146667pt;}
.xc_c00174{left:369.026667pt;}
.x11_c00174{left:482.466667pt;}
.x13_c00174{left:595.773333pt;}
.x14_c00174{left:709.213333pt;}
.x17_c00174{left:794.213333pt;}
.x1a_c00174{left:888.773333pt;}
.x1d_c00174{left:973.893333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d8036602239ddde6a08ce89f.woff2')format("woff");}.ff1_c00175{font-family:ff1_c00175;line-height:1.070312;font-style:normal;font-weight:normal;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_a131b2ebb250e5ba841a5d5d.woff2')format("woff");}.ff2_c00175{font-family:ff2_c00175;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00175{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00175{vertical-align:-2.880468px;}
.v0_c00175{vertical-align:0.000000px;}
.v2_c00175{vertical-align:2.880468px;}
.ls0_c00175{letter-spacing:0.000000px;}
.sc__c00175{text-shadow:none;}
.sc0_c00175{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00175{-webkit-text-stroke:0px transparent;}
.sc0_c00175{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00175{word-spacing:-16.613280px;}
.ws0_c00175{word-spacing:-15.012000px;}
.ws2_c00175{word-spacing:-10.808640px;}
.ws3_c00175{word-spacing:0.000000px;}
._9_c00175{margin-left:-3.080568px;}
._3_c00175{margin-left:-1.126186px;}
._7_c00175{width:1.156330px;}
._4_c00175{width:8.630592px;}
._5_c00175{width:12.851681px;}
._6_c00175{width:14.291960px;}
._1_c00175{width:21.907025px;}
._2_c00175{width:193.985165px;}
._8_c00175{width:845.560224px;}
._0_c00175{width:2371.553826px;}
.fc0_c00175{color:rgb(0,0,0);}
.fs3_c00175{font-size:38.880000px;}
.fs1_c00175{font-size:54.000000px;}
.fs2_c00175{font-size:59.760000px;}
.fs0_c00175{font-size:66.240000px;}
.y0_c00175{bottom:0.000000px;}
.y1f_c00175{bottom:3.234300px;}
.yc_c00175{bottom:3.240000px;}
.y21_c00175{bottom:3.240300px;}
.y13_c00175{bottom:3.270000px;}
.ya_c00175{bottom:3.600000px;}
.y9_c00175{bottom:21.600000px;}
.y6_c00175{bottom:30.600000px;}
.y8_c00175{bottom:39.600000px;}
.y7_c00175{bottom:57.600000px;}
.y4_c00175{bottom:102.996150px;}
.y20_c00175{bottom:120.635700px;}
.y1e_c00175{bottom:147.635700px;}
.y1d_c00175{bottom:174.630000px;}
.y1c_c00175{bottom:201.630000px;}
.y1b_c00175{bottom:228.630000px;}
.y1a_c00175{bottom:255.630000px;}
.y19_c00175{bottom:282.675000px;}
.y18_c00175{bottom:309.675000px;}
.y17_c00175{bottom:336.675000px;}
.y16_c00175{bottom:363.675000px;}
.y15_c00175{bottom:390.675000px;}
.y14_c00175{bottom:417.675000px;}
.y12_c00175{bottom:444.675000px;}
.y11_c00175{bottom:471.705000px;}
.y10_c00175{bottom:498.705000px;}
.yf_c00175{bottom:525.705000px;}
.ye_c00175{bottom:552.705000px;}
.yd_c00175{bottom:579.705000px;}
.yb_c00175{bottom:606.705000px;}
.y5_c00175{bottom:633.750000px;}
.y3_c00175{bottom:727.890000px;}
.y2_c00175{bottom:748.950000px;}
.y1_c00175{bottom:804.930000px;}
.h7_c00175{height:26.279850px;}
.h8_c00175{height:26.280450px;}
.h5_c00175{height:26.316150px;}
.h4_c00175{height:43.506914px;}
.h6_c00175{height:51.385430px;}
.h2_c00175{height:56.957344px;}
.h3_c00175{height:72.000000px;}
.h1_c00175{height:893.250000px;}
.h0_c00175{height:893.340000px;}
.w3_c00175{width:94.859700px;}
.wb_c00175{width:94.895550px;}
.wa_c00175{width:95.040300px;}
.w8_c00175{width:95.076000px;}
.w9_c00175{width:105.479850px;}
.w7_c00175{width:116.100000px;}
.w4_c00175{width:116.136300px;}
.w6_c00175{width:116.495550px;}
.w5_c00175{width:126.900000px;}
.w2_c00175{width:137.376000px;}
.w1_c00175{width:1263.000000px;}
.w0_c00175{width:1263.060000px;}
.x0_c00175{left:0.000000px;}
.xb_c00175{left:2.700000px;}
.xa_c00175{left:5.220000px;}
.x22_c00175{left:6.480600px;}
.xf_c00175{left:7.920000px;}
.x12_c00175{left:10.260000px;}
.x31_c00175{left:11.520000px;}
.x18_c00175{left:12.780000px;}
.x9_c00175{left:15.120000px;}
.x19_c00175{left:16.560000px;}
.x15_c00175{left:17.820000px;}
.x1c_c00175{left:19.080000px;}
.xe_c00175{left:20.520000px;}
.x7_c00175{left:22.320000px;}
.x16_c00175{left:23.580000px;}
.x1d_c00175{left:25.740000px;}
.x2f_c00175{left:27.540000px;}
.x1a_c00175{left:28.980000px;}
.x2c_c00175{left:30.420000px;}
.x5_c00175{left:31.860450px;}
.x25_c00175{left:33.660000px;}
.x28_c00175{left:34.920000px;}
.xc_c00175{left:36.000000px;}
.x30_c00175{left:37.080000px;}
.x2e_c00175{left:38.160000px;}
.x23_c00175{left:39.240000px;}
.x2b_c00175{left:41.040000px;}
.x21_c00175{left:42.300000px;}
.x27_c00175{left:43.380000px;}
.x24_c00175{left:44.460000px;}
.x10_c00175{left:45.720000px;}
.x20_c00175{left:47.520000px;}
.x29_c00175{left:48.600000px;}
.x2a_c00175{left:49.680000px;}
.x26_c00175{left:50.760000px;}
.x1f_c00175{left:53.280000px;}
.x2d_c00175{left:59.220000px;}
.x1_c00175{left:84.959700px;}
.x2_c00175{left:106.200000px;}
.x4_c00175{left:148.896150px;}
.x6_c00175{left:223.950000px;}
.x3_c00175{left:297.390000px;}
.x8_c00175{left:319.530000px;}
.xd_c00175{left:436.395000px;}
.x11_c00175{left:564.015000px;}
.x13_c00175{left:681.405000px;}
.x14_c00175{left:798.225000px;}
.x17_c00175{left:894.030000px;}
.x1b_c00175{left:1000.230000px;}
.x1e_c00175{left:1095.990000px;}
@media print{
.v1_c00175{vertical-align:-2.560416pt;}
.v0_c00175{vertical-align:0.000000pt;}
.v2_c00175{vertical-align:2.560416pt;}
.ls0_c00175{letter-spacing:0.000000pt;}
.ws1_c00175{word-spacing:-14.767360pt;}
.ws0_c00175{word-spacing:-13.344000pt;}
.ws2_c00175{word-spacing:-9.607680pt;}
.ws3_c00175{word-spacing:0.000000pt;}
._9_c00175{margin-left:-2.738282pt;}
._3_c00175{margin-left:-1.001054pt;}
._7_c00175{width:1.027849pt;}
._4_c00175{width:7.671638pt;}
._5_c00175{width:11.423717pt;}
._6_c00175{width:12.703964pt;}
._1_c00175{width:19.472911pt;}
._2_c00175{width:172.431258pt;}
._8_c00175{width:751.609088pt;}
._0_c00175{width:2108.047846pt;}
.fs3_c00175{font-size:34.560000pt;}
.fs1_c00175{font-size:48.000000pt;}
.fs2_c00175{font-size:53.120000pt;}
.fs0_c00175{font-size:58.880000pt;}
.y0_c00175{bottom:0.000000pt;}
.y1f_c00175{bottom:2.874933pt;}
.yc_c00175{bottom:2.880000pt;}
.y21_c00175{bottom:2.880267pt;}
.y13_c00175{bottom:2.906667pt;}
.ya_c00175{bottom:3.200000pt;}
.y9_c00175{bottom:19.200000pt;}
.y6_c00175{bottom:27.200000pt;}
.y8_c00175{bottom:35.200000pt;}
.y7_c00175{bottom:51.200000pt;}
.y4_c00175{bottom:91.552133pt;}
.y20_c00175{bottom:107.231733pt;}
.y1e_c00175{bottom:131.231733pt;}
.y1d_c00175{bottom:155.226667pt;}
.y1c_c00175{bottom:179.226667pt;}
.y1b_c00175{bottom:203.226667pt;}
.y1a_c00175{bottom:227.226667pt;}
.y19_c00175{bottom:251.266667pt;}
.y18_c00175{bottom:275.266667pt;}
.y17_c00175{bottom:299.266667pt;}
.y16_c00175{bottom:323.266667pt;}
.y15_c00175{bottom:347.266667pt;}
.y14_c00175{bottom:371.266667pt;}
.y12_c00175{bottom:395.266667pt;}
.y11_c00175{bottom:419.293333pt;}
.y10_c00175{bottom:443.293333pt;}
.yf_c00175{bottom:467.293333pt;}
.ye_c00175{bottom:491.293333pt;}
.yd_c00175{bottom:515.293333pt;}
.yb_c00175{bottom:539.293333pt;}
.y5_c00175{bottom:563.333333pt;}
.y3_c00175{bottom:647.013333pt;}
.y2_c00175{bottom:665.733333pt;}
.y1_c00175{bottom:715.493333pt;}
.h7_c00175{height:23.359867pt;}
.h8_c00175{height:23.360400pt;}
.h5_c00175{height:23.392133pt;}
.h4_c00175{height:38.672813pt;}
.h6_c00175{height:45.675938pt;}
.h2_c00175{height:50.628750pt;}
.h3_c00175{height:64.000000pt;}
.h1_c00175{height:794.000000pt;}
.h0_c00175{height:794.080000pt;}
.w3_c00175{width:84.319733pt;}
.wb_c00175{width:84.351600pt;}
.wa_c00175{width:84.480267pt;}
.w8_c00175{width:84.512000pt;}
.w9_c00175{width:93.759867pt;}
.w7_c00175{width:103.200000pt;}
.w4_c00175{width:103.232267pt;}
.w6_c00175{width:103.551600pt;}
.w5_c00175{width:112.800000pt;}
.w2_c00175{width:122.112000pt;}
.w1_c00175{width:1122.666667pt;}
.w0_c00175{width:1122.720000pt;}
.x0_c00175{left:0.000000pt;}
.xb_c00175{left:2.400000pt;}
.xa_c00175{left:4.640000pt;}
.x22_c00175{left:5.760533pt;}
.xf_c00175{left:7.040000pt;}
.x12_c00175{left:9.120000pt;}
.x31_c00175{left:10.240000pt;}
.x18_c00175{left:11.360000pt;}
.x9_c00175{left:13.440000pt;}
.x19_c00175{left:14.720000pt;}
.x15_c00175{left:15.840000pt;}
.x1c_c00175{left:16.960000pt;}
.xe_c00175{left:18.240000pt;}
.x7_c00175{left:19.840000pt;}
.x16_c00175{left:20.960000pt;}
.x1d_c00175{left:22.880000pt;}
.x2f_c00175{left:24.480000pt;}
.x1a_c00175{left:25.760000pt;}
.x2c_c00175{left:27.040000pt;}
.x5_c00175{left:28.320400pt;}
.x25_c00175{left:29.920000pt;}
.x28_c00175{left:31.040000pt;}
.xc_c00175{left:32.000000pt;}
.x30_c00175{left:32.960000pt;}
.x2e_c00175{left:33.920000pt;}
.x23_c00175{left:34.880000pt;}
.x2b_c00175{left:36.480000pt;}
.x21_c00175{left:37.600000pt;}
.x27_c00175{left:38.560000pt;}
.x24_c00175{left:39.520000pt;}
.x10_c00175{left:40.640000pt;}
.x20_c00175{left:42.240000pt;}
.x29_c00175{left:43.200000pt;}
.x2a_c00175{left:44.160000pt;}
.x26_c00175{left:45.120000pt;}
.x1f_c00175{left:47.360000pt;}
.x2d_c00175{left:52.640000pt;}
.x1_c00175{left:75.519733pt;}
.x2_c00175{left:94.400000pt;}
.x4_c00175{left:132.352133pt;}
.x6_c00175{left:199.066667pt;}
.x3_c00175{left:264.346667pt;}
.x8_c00175{left:284.026667pt;}
.xd_c00175{left:387.906667pt;}
.x11_c00175{left:501.346667pt;}
.x13_c00175{left:605.693333pt;}
.x14_c00175{left:709.533333pt;}
.x17_c00175{left:794.693333pt;}
.x1b_c00175{left:889.093333pt;}
.x1e_c00175{left:974.213333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b5a39c3b3aa4ba48e3e71ad2.woff2')format("woff");}.ff1_c00176{font-family:ff1_c00176;line-height:1.070312;font-style:normal;font-weight:normal;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_008078763c7282b966810cb5.woff2')format("woff");}.ff2_c00176{font-family:ff2_c00176;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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);}
.v1_c00176{vertical-align:-2.880468px;}
.v0_c00176{vertical-align:0.000000px;}
.v2_c00176{vertical-align:2.880468px;}
.ls0_c00176{letter-spacing:0.000000px;}
.sc__c00176{text-shadow:none;}
.sc0_c00176{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00176{-webkit-text-stroke:0px transparent;}
.sc0_c00176{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00176{word-spacing:-16.613280px;}
.ws0_c00176{word-spacing:-15.012000px;}
.ws2_c00176{word-spacing:-10.808640px;}
.ws3_c00176{word-spacing:0.000000px;}
._8_c00176{margin-left:-3.080568px;}
._3_c00176{margin-left:-1.126186px;}
._7_c00176{width:1.144671px;}
._5_c00176{width:6.425027px;}
._6_c00176{width:7.546616px;}
._1_c00176{width:21.907025px;}
._4_c00176{width:80.663539px;}
._2_c00176{width:193.985165px;}
._0_c00176{width:2371.553826px;}
.fc0_c00176{color:rgb(0,0,0);}
.fs3_c00176{font-size:38.880000px;}
.fs1_c00176{font-size:54.000000px;}
.fs2_c00176{font-size:59.760000px;}
.fs0_c00176{font-size:66.240000px;}
.y0_c00176{bottom:0.000000px;}
.y20_c00176{bottom:3.233850px;}
.y22_c00176{bottom:3.239700px;}
.yd_c00176{bottom:3.240000px;}
.y14_c00176{bottom:3.270000px;}
.yb_c00176{bottom:3.600000px;}
.y7_c00176{bottom:12.600000px;}
.y9_c00176{bottom:21.600000px;}
.y5_c00176{bottom:30.600000px;}
.y8_c00176{bottom:39.600000px;}
.y6_c00176{bottom:48.600000px;}
.ya_c00176{bottom:57.600000px;}
.y21_c00176{bottom:119.916150px;}
.y1f_c00176{bottom:146.916150px;}
.y1e_c00176{bottom:173.910000px;}
.y1d_c00176{bottom:200.910000px;}
.y1c_c00176{bottom:227.910000px;}
.y1b_c00176{bottom:254.910000px;}
.y1a_c00176{bottom:281.955000px;}
.y19_c00176{bottom:308.955000px;}
.y18_c00176{bottom:335.955000px;}
.y17_c00176{bottom:362.955000px;}
.y16_c00176{bottom:389.955000px;}
.y15_c00176{bottom:416.955000px;}
.y13_c00176{bottom:443.955000px;}
.y12_c00176{bottom:470.985000px;}
.y11_c00176{bottom:497.985000px;}
.y10_c00176{bottom:524.985000px;}
.yf_c00176{bottom:551.985000px;}
.ye_c00176{bottom:578.985000px;}
.yc_c00176{bottom:605.985000px;}
.y4_c00176{bottom:633.030000px;}
.y3_c00176{bottom:727.890300px;}
.y2_c00176{bottom:748.950000px;}
.y1_c00176{bottom:804.930000px;}
.h8_c00176{height:26.279850px;}
.h7_c00176{height:26.280450px;}
.h5_c00176{height:26.316150px;}
.h4_c00176{height:43.506914px;}
.h6_c00176{height:51.385430px;}
.h2_c00176{height:56.957344px;}
.h3_c00176{height:72.000000px;}
.h1_c00176{height:893.250000px;}
.h0_c00176{height:893.340000px;}
.wa_c00176{width:94.859700px;}
.wb_c00176{width:94.895550px;}
.w3_c00176{width:95.039700px;}
.w9_c00176{width:105.479850px;}
.w8_c00176{width:105.516150px;}
.w7_c00176{width:105.659700px;}
.w4_c00176{width:116.136300px;}
.w6_c00176{width:116.315700px;}
.w5_c00176{width:126.720150px;}
.w2_c00176{width:137.555850px;}
.w1_c00176{width:1263.000000px;}
.w0_c00176{width:1263.060000px;}
.x0_c00176{left:0.000000px;}
.xd_c00176{left:1.260000px;}
.x12_c00176{left:5.220000px;}
.xa_c00176{left:7.200000px;}
.x2c_c00176{left:11.520000px;}
.x2b_c00176{left:12.779850px;}
.x9_c00176{left:14.760000px;}
.x8_c00176{left:16.740000px;}
.x26_c00176{left:18.720000px;}
.xc_c00176{left:19.980000px;}
.x15_c00176{left:21.240000px;}
.x6_c00176{left:22.320000px;}
.x1c_c00176{left:24.480000px;}
.x16_c00176{left:25.740000px;}
.x29_c00176{left:27.000000px;}
.x10_c00176{left:28.980000px;}
.x2a_c00176{left:30.420000px;}
.x4_c00176{left:32.040300px;}
.x21_c00176{left:33.840000px;}
.x18_c00176{left:35.459700px;}
.x28_c00176{left:36.720150px;}
.x23_c00176{left:38.160000px;}
.x20_c00176{left:40.140000px;}
.x27_c00176{left:41.220000px;}
.x1b_c00176{left:42.300000px;}
.x1f_c00176{left:44.280000px;}
.x1d_c00176{left:45.540000px;}
.x1a_c00176{left:47.520000px;}
.x22_c00176{left:48.780000px;}
.x24_c00176{left:50.076000px;}
.x19_c00176{left:53.460000px;}
.x1e_c00176{left:54.900000px;}
.x25_c00176{left:59.220000px;}
.x3_c00176{left:74.700000px;}
.x1_c00176{left:84.959700px;}
.x2_c00176{left:191.370900px;}
.x5_c00176{left:212.970000px;}
.x7_c00176{left:308.730000px;}
.xb_c00176{left:425.775000px;}
.xe_c00176{left:553.215000px;}
.xf_c00176{left:670.245000px;}
.x11_c00176{left:776.625000px;}
.x13_c00176{left:883.050000px;}
.x14_c00176{left:989.250000px;}
.x17_c00176{left:1085.010000px;}
@media print{
.v1_c00176{vertical-align:-2.560416pt;}
.v0_c00176{vertical-align:0.000000pt;}
.v2_c00176{vertical-align:2.560416pt;}
.ls0_c00176{letter-spacing:0.000000pt;}
.ws1_c00176{word-spacing:-14.767360pt;}
.ws0_c00176{word-spacing:-13.344000pt;}
.ws2_c00176{word-spacing:-9.607680pt;}
.ws3_c00176{word-spacing:0.000000pt;}
._8_c00176{margin-left:-2.738282pt;}
._3_c00176{margin-left:-1.001054pt;}
._7_c00176{width:1.017485pt;}
._5_c00176{width:5.711135pt;}
._6_c00176{width:6.708103pt;}
._1_c00176{width:19.472911pt;}
._4_c00176{width:71.700923pt;}
._2_c00176{width:172.431258pt;}
._0_c00176{width:2108.047846pt;}
.fs3_c00176{font-size:34.560000pt;}
.fs1_c00176{font-size:48.000000pt;}
.fs2_c00176{font-size:53.120000pt;}
.fs0_c00176{font-size:58.880000pt;}
.y0_c00176{bottom:0.000000pt;}
.y20_c00176{bottom:2.874533pt;}
.y22_c00176{bottom:2.879733pt;}
.yd_c00176{bottom:2.880000pt;}
.y14_c00176{bottom:2.906667pt;}
.yb_c00176{bottom:3.200000pt;}
.y7_c00176{bottom:11.200000pt;}
.y9_c00176{bottom:19.200000pt;}
.y5_c00176{bottom:27.200000pt;}
.y8_c00176{bottom:35.200000pt;}
.y6_c00176{bottom:43.200000pt;}
.ya_c00176{bottom:51.200000pt;}
.y21_c00176{bottom:106.592133pt;}
.y1f_c00176{bottom:130.592133pt;}
.y1e_c00176{bottom:154.586667pt;}
.y1d_c00176{bottom:178.586667pt;}
.y1c_c00176{bottom:202.586667pt;}
.y1b_c00176{bottom:226.586667pt;}
.y1a_c00176{bottom:250.626667pt;}
.y19_c00176{bottom:274.626667pt;}
.y18_c00176{bottom:298.626667pt;}
.y17_c00176{bottom:322.626667pt;}
.y16_c00176{bottom:346.626667pt;}
.y15_c00176{bottom:370.626667pt;}
.y13_c00176{bottom:394.626667pt;}
.y12_c00176{bottom:418.653333pt;}
.y11_c00176{bottom:442.653333pt;}
.y10_c00176{bottom:466.653333pt;}
.yf_c00176{bottom:490.653333pt;}
.ye_c00176{bottom:514.653333pt;}
.yc_c00176{bottom:538.653333pt;}
.y4_c00176{bottom:562.693333pt;}
.y3_c00176{bottom:647.013600pt;}
.y2_c00176{bottom:665.733333pt;}
.y1_c00176{bottom:715.493333pt;}
.h8_c00176{height:23.359867pt;}
.h7_c00176{height:23.360400pt;}
.h5_c00176{height:23.392133pt;}
.h4_c00176{height:38.672813pt;}
.h6_c00176{height:45.675938pt;}
.h2_c00176{height:50.628750pt;}
.h3_c00176{height:64.000000pt;}
.h1_c00176{height:794.000000pt;}
.h0_c00176{height:794.080000pt;}
.wa_c00176{width:84.319733pt;}
.wb_c00176{width:84.351600pt;}
.w3_c00176{width:84.479733pt;}
.w9_c00176{width:93.759867pt;}
.w8_c00176{width:93.792133pt;}
.w7_c00176{width:93.919733pt;}
.w4_c00176{width:103.232267pt;}
.w6_c00176{width:103.391733pt;}
.w5_c00176{width:112.640133pt;}
.w2_c00176{width:122.271867pt;}
.w1_c00176{width:1122.666667pt;}
.w0_c00176{width:1122.720000pt;}
.x0_c00176{left:0.000000pt;}
.xd_c00176{left:1.120000pt;}
.x12_c00176{left:4.640000pt;}
.xa_c00176{left:6.400000pt;}
.x2c_c00176{left:10.240000pt;}
.x2b_c00176{left:11.359867pt;}
.x9_c00176{left:13.120000pt;}
.x8_c00176{left:14.880000pt;}
.x26_c00176{left:16.640000pt;}
.xc_c00176{left:17.760000pt;}
.x15_c00176{left:18.880000pt;}
.x6_c00176{left:19.840000pt;}
.x1c_c00176{left:21.760000pt;}
.x16_c00176{left:22.880000pt;}
.x29_c00176{left:24.000000pt;}
.x10_c00176{left:25.760000pt;}
.x2a_c00176{left:27.040000pt;}
.x4_c00176{left:28.480267pt;}
.x21_c00176{left:30.080000pt;}
.x18_c00176{left:31.519733pt;}
.x28_c00176{left:32.640133pt;}
.x23_c00176{left:33.920000pt;}
.x20_c00176{left:35.680000pt;}
.x27_c00176{left:36.640000pt;}
.x1b_c00176{left:37.600000pt;}
.x1f_c00176{left:39.360000pt;}
.x1d_c00176{left:40.480000pt;}
.x1a_c00176{left:42.240000pt;}
.x22_c00176{left:43.360000pt;}
.x24_c00176{left:44.512000pt;}
.x19_c00176{left:47.520000pt;}
.x1e_c00176{left:48.800000pt;}
.x25_c00176{left:52.640000pt;}
.x3_c00176{left:66.400000pt;}
.x1_c00176{left:75.519733pt;}
.x2_c00176{left:170.107467pt;}
.x5_c00176{left:189.306667pt;}
.x7_c00176{left:274.426667pt;}
.xb_c00176{left:378.466667pt;}
.xe_c00176{left:491.746667pt;}
.xf_c00176{left:595.773333pt;}
.x11_c00176{left:690.333333pt;}
.x13_c00176{left:784.933333pt;}
.x14_c00176{left:879.333333pt;}
.x17_c00176{left:964.453333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_232981d4517891fb73e597b8.woff2')format("woff");}.ff1_c00177{font-family:ff1_c00177;line-height:1.070312;font-style:normal;font-weight:normal;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_ab76484111de74f654c1778d.woff2')format("woff");}.ff2_c00177{font-family:ff2_c00177;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00177{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00177{vertical-align:-2.880468px;}
.v0_c00177{vertical-align:0.000000px;}
.v2_c00177{vertical-align:2.880468px;}
.ls0_c00177{letter-spacing:0.000000px;}
.sc__c00177{text-shadow:none;}
.sc0_c00177{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00177{-webkit-text-stroke:0px transparent;}
.sc0_c00177{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00177{word-spacing:-16.613280px;}
.ws1_c00177{word-spacing:-10.808640px;}
.ws2_c00177{word-spacing:0.000000px;}
._7_c00177{margin-left:-3.080568px;}
._3_c00177{margin-left:-1.126186px;}
._6_c00177{width:1.144671px;}
._5_c00177{width:3.511772px;}
._1_c00177{width:21.907025px;}
._4_c00177{width:80.663539px;}
._2_c00177{width:193.985165px;}
._0_c00177{width:2371.553826px;}
.fc0_c00177{color:rgb(0,0,0);}
.fs2_c00177{font-size:38.880000px;}
.fs1_c00177{font-size:59.760000px;}
.fs0_c00177{font-size:66.240000px;}
.y0_c00177{bottom:0.000000px;}
.y22_c00177{bottom:3.239700px;}
.yf_c00177{bottom:3.240000px;}
.y1c_c00177{bottom:3.285000px;}
.yd_c00177{bottom:3.600000px;}
.y9_c00177{bottom:12.645000px;}
.yb_c00177{bottom:21.645000px;}
.y8_c00177{bottom:30.645000px;}
.y5_c00177{bottom:39.645000px;}
.y7_c00177{bottom:48.645000px;}
.ya_c00177{bottom:57.645000px;}
.y6_c00177{bottom:66.645000px;}
.yc_c00177{bottom:75.645000px;}
.y23_c00177{bottom:101.916150px;}
.y21_c00177{bottom:128.916150px;}
.y20_c00177{bottom:155.910000px;}
.y1f_c00177{bottom:182.910000px;}
.y1e_c00177{bottom:209.910000px;}
.y1d_c00177{bottom:236.910000px;}
.y1b_c00177{bottom:263.910000px;}
.y1a_c00177{bottom:290.955000px;}
.y19_c00177{bottom:317.955000px;}
.y18_c00177{bottom:344.955000px;}
.y17_c00177{bottom:371.955000px;}
.y16_c00177{bottom:398.955000px;}
.y15_c00177{bottom:425.955000px;}
.y14_c00177{bottom:452.985000px;}
.y13_c00177{bottom:479.985000px;}
.y12_c00177{bottom:506.985000px;}
.y11_c00177{bottom:533.985000px;}
.y10_c00177{bottom:560.985000px;}
.ye_c00177{bottom:587.985000px;}
.y4_c00177{bottom:614.985000px;}
.y3_c00177{bottom:727.890300px;}
.y2_c00177{bottom:748.950000px;}
.y1_c00177{bottom:804.930000px;}
.h8_c00177{height:26.279850px;}
.h5_c00177{height:26.280450px;}
.h7_c00177{height:26.316150px;}
.h4_c00177{height:43.506914px;}
.h6_c00177{height:51.385430px;}
.h2_c00177{height:56.957344px;}
.h3_c00177{height:90.036300px;}
.h1_c00177{height:893.250000px;}
.h0_c00177{height:893.340000px;}
.wa_c00177{width:94.859700px;}
.wb_c00177{width:94.895550px;}
.w3_c00177{width:95.039700px;}
.w9_c00177{width:105.479850px;}
.w8_c00177{width:105.516150px;}
.w7_c00177{width:105.659700px;}
.w4_c00177{width:116.136300px;}
.w6_c00177{width:116.315700px;}
.w5_c00177{width:126.720150px;}
.w2_c00177{width:137.555850px;}
.w1_c00177{width:1263.000000px;}
.w0_c00177{width:1263.060000px;}
.x0_c00177{left:0.000000px;}
.xa_c00177{left:2.700000px;}
.x13_c00177{left:4.680000px;}
.x11_c00177{left:6.120000px;}
.x29_c00177{left:7.380000px;}
.xe_c00177{left:10.080000px;}
.x9_c00177{left:11.340000px;}
.x15_c00177{left:13.500000px;}
.x1d_c00177{left:14.940000px;}
.x12_c00177{left:16.560000px;}
.x19_c00177{left:19.080000px;}
.x1a_c00177{left:21.240000px;}
.x6_c00177{left:22.320000px;}
.x22_c00177{left:24.480000px;}
.x1b_c00177{left:25.740000px;}
.x28_c00177{left:27.540000px;}
.x10_c00177{left:28.980000px;}
.x2c_c00177{left:30.420000px;}
.x4_c00177{left:32.040300px;}
.x8_c00177{left:34.380000px;}
.x1e_c00177{left:35.459700px;}
.x2a_c00177{left:36.720150px;}
.x26_c00177{left:38.160000px;}
.x2b_c00177{left:39.240000px;}
.xb_c00177{left:40.500000px;}
.x21_c00177{left:42.300000px;}
.x24_c00177{left:44.280000px;}
.x23_c00177{left:45.540000px;}
.x20_c00177{left:47.520000px;}
.x25_c00177{left:48.780000px;}
.x16_c00177{left:50.220000px;}
.x1f_c00177{left:53.460000px;}
.x27_c00177{left:59.220000px;}
.x2d_c00177{left:63.540000px;}
.x3_c00177{left:74.700000px;}
.x1_c00177{left:84.959700px;}
.x2_c00177{left:191.369700px;}
.x5_c00177{left:212.970000px;}
.x7_c00177{left:308.730000px;}
.xc_c00177{left:425.775000px;}
.xd_c00177{left:553.215000px;}
.xf_c00177{left:670.245000px;}
.x14_c00177{left:776.625000px;}
.x17_c00177{left:883.050000px;}
.x18_c00177{left:989.250000px;}
.x1c_c00177{left:1085.010000px;}
@media print{
.v1_c00177{vertical-align:-2.560416pt;}
.v0_c00177{vertical-align:0.000000pt;}
.v2_c00177{vertical-align:2.560416pt;}
.ls0_c00177{letter-spacing:0.000000pt;}
.ws0_c00177{word-spacing:-14.767360pt;}
.ws1_c00177{word-spacing:-9.607680pt;}
.ws2_c00177{word-spacing:0.000000pt;}
._7_c00177{margin-left:-2.738282pt;}
._3_c00177{margin-left:-1.001054pt;}
._6_c00177{width:1.017485pt;}
._5_c00177{width:3.121575pt;}
._1_c00177{width:19.472911pt;}
._4_c00177{width:71.700923pt;}
._2_c00177{width:172.431258pt;}
._0_c00177{width:2108.047846pt;}
.fs2_c00177{font-size:34.560000pt;}
.fs1_c00177{font-size:53.120000pt;}
.fs0_c00177{font-size:58.880000pt;}
.y0_c00177{bottom:0.000000pt;}
.y22_c00177{bottom:2.879733pt;}
.yf_c00177{bottom:2.880000pt;}
.y1c_c00177{bottom:2.920000pt;}
.yd_c00177{bottom:3.200000pt;}
.y9_c00177{bottom:11.240000pt;}
.yb_c00177{bottom:19.240000pt;}
.y8_c00177{bottom:27.240000pt;}
.y5_c00177{bottom:35.240000pt;}
.y7_c00177{bottom:43.240000pt;}
.ya_c00177{bottom:51.240000pt;}
.y6_c00177{bottom:59.240000pt;}
.yc_c00177{bottom:67.240000pt;}
.y23_c00177{bottom:90.592133pt;}
.y21_c00177{bottom:114.592133pt;}
.y20_c00177{bottom:138.586667pt;}
.y1f_c00177{bottom:162.586667pt;}
.y1e_c00177{bottom:186.586667pt;}
.y1d_c00177{bottom:210.586667pt;}
.y1b_c00177{bottom:234.586667pt;}
.y1a_c00177{bottom:258.626667pt;}
.y19_c00177{bottom:282.626667pt;}
.y18_c00177{bottom:306.626667pt;}
.y17_c00177{bottom:330.626667pt;}
.y16_c00177{bottom:354.626667pt;}
.y15_c00177{bottom:378.626667pt;}
.y14_c00177{bottom:402.653333pt;}
.y13_c00177{bottom:426.653333pt;}
.y12_c00177{bottom:450.653333pt;}
.y11_c00177{bottom:474.653333pt;}
.y10_c00177{bottom:498.653333pt;}
.ye_c00177{bottom:522.653333pt;}
.y4_c00177{bottom:546.653333pt;}
.y3_c00177{bottom:647.013600pt;}
.y2_c00177{bottom:665.733333pt;}
.y1_c00177{bottom:715.493333pt;}
.h8_c00177{height:23.359867pt;}
.h5_c00177{height:23.360400pt;}
.h7_c00177{height:23.392133pt;}
.h4_c00177{height:38.672813pt;}
.h6_c00177{height:45.675938pt;}
.h2_c00177{height:50.628750pt;}
.h3_c00177{height:80.032267pt;}
.h1_c00177{height:794.000000pt;}
.h0_c00177{height:794.080000pt;}
.wa_c00177{width:84.319733pt;}
.wb_c00177{width:84.351600pt;}
.w3_c00177{width:84.479733pt;}
.w9_c00177{width:93.759867pt;}
.w8_c00177{width:93.792133pt;}
.w7_c00177{width:93.919733pt;}
.w4_c00177{width:103.232267pt;}
.w6_c00177{width:103.391733pt;}
.w5_c00177{width:112.640133pt;}
.w2_c00177{width:122.271867pt;}
.w1_c00177{width:1122.666667pt;}
.w0_c00177{width:1122.720000pt;}
.x0_c00177{left:0.000000pt;}
.xa_c00177{left:2.400000pt;}
.x13_c00177{left:4.160000pt;}
.x11_c00177{left:5.440000pt;}
.x29_c00177{left:6.560000pt;}
.xe_c00177{left:8.960000pt;}
.x9_c00177{left:10.080000pt;}
.x15_c00177{left:12.000000pt;}
.x1d_c00177{left:13.280000pt;}
.x12_c00177{left:14.720000pt;}
.x19_c00177{left:16.960000pt;}
.x1a_c00177{left:18.880000pt;}
.x6_c00177{left:19.840000pt;}
.x22_c00177{left:21.760000pt;}
.x1b_c00177{left:22.880000pt;}
.x28_c00177{left:24.480000pt;}
.x10_c00177{left:25.760000pt;}
.x2c_c00177{left:27.040000pt;}
.x4_c00177{left:28.480267pt;}
.x8_c00177{left:30.560000pt;}
.x1e_c00177{left:31.519733pt;}
.x2a_c00177{left:32.640133pt;}
.x26_c00177{left:33.920000pt;}
.x2b_c00177{left:34.880000pt;}
.xb_c00177{left:36.000000pt;}
.x21_c00177{left:37.600000pt;}
.x24_c00177{left:39.360000pt;}
.x23_c00177{left:40.480000pt;}
.x20_c00177{left:42.240000pt;}
.x25_c00177{left:43.360000pt;}
.x16_c00177{left:44.640000pt;}
.x1f_c00177{left:47.520000pt;}
.x27_c00177{left:52.640000pt;}
.x2d_c00177{left:56.480000pt;}
.x3_c00177{left:66.400000pt;}
.x1_c00177{left:75.519733pt;}
.x2_c00177{left:170.106400pt;}
.x5_c00177{left:189.306667pt;}
.x7_c00177{left:274.426667pt;}
.xc_c00177{left:378.466667pt;}
.xd_c00177{left:491.746667pt;}
.xf_c00177{left:595.773333pt;}
.x14_c00177{left:690.333333pt;}
.x17_c00177{left:784.933333pt;}
.x18_c00177{left:879.333333pt;}
.x1c_c00177{left:964.453333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a46d50a9eb81ecfd6b359995.woff2')format("woff");}.ff1_c00178{font-family:ff1_c00178;line-height:1.070312;font-style:normal;font-weight:normal;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_207a4fa383dcc585d55bfff3.woff2')format("woff");}.ff2_c00178{font-family:ff2_c00178;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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);}
.v1_c00178{vertical-align:-2.880468px;}
.v0_c00178{vertical-align:0.000000px;}
.v2_c00178{vertical-align:2.880468px;}
.ls0_c00178{letter-spacing:0.000000px;}
.sc__c00178{text-shadow:none;}
.sc0_c00178{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00178{-webkit-text-stroke:0px transparent;}
.sc0_c00178{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00178{word-spacing:-16.613280px;}
.ws1_c00178{word-spacing:-10.808640px;}
.ws2_c00178{word-spacing:0.000000px;}
._6_c00178{margin-left:-3.080568px;}
._3_c00178{margin-left:-1.126186px;}
._5_c00178{width:1.591956px;}
._1_c00178{width:21.907025px;}
._4_c00178{width:93.592499px;}
._2_c00178{width:193.985165px;}
._0_c00178{width:2371.553826px;}
.fc0_c00178{color:rgb(0,0,0);}
.fs2_c00178{font-size:38.880000px;}
.fs1_c00178{font-size:59.760000px;}
.fs0_c00178{font-size:66.240000px;}
.y0_c00178{bottom:0.000000px;}
.y20_c00178{bottom:3.233850px;}
.y22_c00178{bottom:3.239700px;}
.yd_c00178{bottom:3.240000px;}
.y14_c00178{bottom:3.270000px;}
.y9_c00178{bottom:3.600000px;}
.yb_c00178{bottom:12.600000px;}
.y8_c00178{bottom:21.600000px;}
.y5_c00178{bottom:30.600000px;}
.y7_c00178{bottom:39.600000px;}
.ya_c00178{bottom:48.600000px;}
.y6_c00178{bottom:57.600000px;}
.y21_c00178{bottom:119.916150px;}
.y1f_c00178{bottom:146.916150px;}
.y1e_c00178{bottom:173.910000px;}
.y1d_c00178{bottom:200.910000px;}
.y1c_c00178{bottom:227.910000px;}
.y1b_c00178{bottom:254.910000px;}
.y1a_c00178{bottom:281.955000px;}
.y19_c00178{bottom:308.955000px;}
.y18_c00178{bottom:335.955000px;}
.y17_c00178{bottom:362.955000px;}
.y16_c00178{bottom:389.955000px;}
.y15_c00178{bottom:416.955000px;}
.y13_c00178{bottom:443.955000px;}
.y12_c00178{bottom:470.985000px;}
.y11_c00178{bottom:497.985000px;}
.y10_c00178{bottom:524.985000px;}
.yf_c00178{bottom:551.985000px;}
.ye_c00178{bottom:578.985000px;}
.yc_c00178{bottom:605.985000px;}
.y4_c00178{bottom:633.030000px;}
.y3_c00178{bottom:727.890300px;}
.y2_c00178{bottom:748.950000px;}
.y1_c00178{bottom:804.930000px;}
.h8_c00178{height:26.279850px;}
.h7_c00178{height:26.280450px;}
.h5_c00178{height:26.316150px;}
.h4_c00178{height:43.506914px;}
.h6_c00178{height:51.385430px;}
.h2_c00178{height:56.957344px;}
.h3_c00178{height:72.000000px;}
.h1_c00178{height:893.250000px;}
.h0_c00178{height:893.340000px;}
.w8_c00178{width:73.619550px;}
.w3_c00178{width:84.420150px;}
.w9_c00178{width:94.895550px;}
.w6_c00178{width:116.135700px;}
.w7_c00178{width:116.279850px;}
.w4_c00178{width:116.316150px;}
.w5_c00178{width:126.720150px;}
.w2_c00178{width:137.555850px;}
.w1_c00178{width:1263.000000px;}
.w0_c00178{width:1263.060000px;}
.x0_c00178{left:0.000000px;}
.xd_c00178{left:1.260000px;}
.x10_c00178{left:2.700000px;}
.x2c_c00178{left:4.860000px;}
.x1d_c00178{left:6.659700px;}
.x16_c00178{left:8.460000px;}
.xa_c00178{left:10.080000px;}
.x7_c00178{left:11.160000px;}
.x17_c00178{left:12.600000px;}
.x18_c00178{left:15.120000px;}
.x6_c00178{left:17.100000px;}
.x8_c00178{left:18.900000px;}
.x24_c00178{left:20.520000px;}
.x9_c00178{left:21.960000px;}
.x1c_c00178{left:24.480000px;}
.xc_c00178{left:26.280000px;}
.x22_c00178{left:28.440000px;}
.x2b_c00178{left:30.420000px;}
.x4_c00178{left:32.040300px;}
.x26_c00178{left:34.380000px;}
.x11_c00178{left:36.000000px;}
.x29_c00178{left:37.080000px;}
.x28_c00178{left:38.160000px;}
.x20_c00178{left:39.240000px;}
.xe_c00178{left:41.220000px;}
.x2a_c00178{left:42.300000px;}
.x25_c00178{left:43.560000px;}
.x1e_c00178{left:45.540000px;}
.x1a_c00178{left:48.060000px;}
.x21_c00178{left:49.680000px;}
.x1f_c00178{left:50.760000px;}
.x1b_c00178{left:52.920000px;}
.x23_c00178{left:54.900000px;}
.x27_c00178{left:59.220000px;}
.x3_c00178{left:74.700000px;}
.x1_c00178{left:84.959700px;}
.x5_c00178{left:212.970000px;}
.x2_c00178{left:297.389700px;}
.xb_c00178{left:415.155000px;}
.xf_c00178{left:542.775000px;}
.x12_c00178{left:659.625000px;}
.x13_c00178{left:776.625000px;}
.x14_c00178{left:893.490000px;}
.x15_c00178{left:1010.490000px;}
.x19_c00178{left:1085.010000px;}
@media print{
.v1_c00178{vertical-align:-2.560416pt;}
.v0_c00178{vertical-align:0.000000pt;}
.v2_c00178{vertical-align:2.560416pt;}
.ls0_c00178{letter-spacing:0.000000pt;}
.ws0_c00178{word-spacing:-14.767360pt;}
.ws1_c00178{word-spacing:-9.607680pt;}
.ws2_c00178{word-spacing:0.000000pt;}
._6_c00178{margin-left:-2.738282pt;}
._3_c00178{margin-left:-1.001054pt;}
._5_c00178{width:1.415072pt;}
._1_c00178{width:19.472911pt;}
._4_c00178{width:83.193333pt;}
._2_c00178{width:172.431258pt;}
._0_c00178{width:2108.047846pt;}
.fs2_c00178{font-size:34.560000pt;}
.fs1_c00178{font-size:53.120000pt;}
.fs0_c00178{font-size:58.880000pt;}
.y0_c00178{bottom:0.000000pt;}
.y20_c00178{bottom:2.874533pt;}
.y22_c00178{bottom:2.879733pt;}
.yd_c00178{bottom:2.880000pt;}
.y14_c00178{bottom:2.906667pt;}
.y9_c00178{bottom:3.200000pt;}
.yb_c00178{bottom:11.200000pt;}
.y8_c00178{bottom:19.200000pt;}
.y5_c00178{bottom:27.200000pt;}
.y7_c00178{bottom:35.200000pt;}
.ya_c00178{bottom:43.200000pt;}
.y6_c00178{bottom:51.200000pt;}
.y21_c00178{bottom:106.592133pt;}
.y1f_c00178{bottom:130.592133pt;}
.y1e_c00178{bottom:154.586667pt;}
.y1d_c00178{bottom:178.586667pt;}
.y1c_c00178{bottom:202.586667pt;}
.y1b_c00178{bottom:226.586667pt;}
.y1a_c00178{bottom:250.626667pt;}
.y19_c00178{bottom:274.626667pt;}
.y18_c00178{bottom:298.626667pt;}
.y17_c00178{bottom:322.626667pt;}
.y16_c00178{bottom:346.626667pt;}
.y15_c00178{bottom:370.626667pt;}
.y13_c00178{bottom:394.626667pt;}
.y12_c00178{bottom:418.653333pt;}
.y11_c00178{bottom:442.653333pt;}
.y10_c00178{bottom:466.653333pt;}
.yf_c00178{bottom:490.653333pt;}
.ye_c00178{bottom:514.653333pt;}
.yc_c00178{bottom:538.653333pt;}
.y4_c00178{bottom:562.693333pt;}
.y3_c00178{bottom:647.013600pt;}
.y2_c00178{bottom:665.733333pt;}
.y1_c00178{bottom:715.493333pt;}
.h8_c00178{height:23.359867pt;}
.h7_c00178{height:23.360400pt;}
.h5_c00178{height:23.392133pt;}
.h4_c00178{height:38.672813pt;}
.h6_c00178{height:45.675938pt;}
.h2_c00178{height:50.628750pt;}
.h3_c00178{height:64.000000pt;}
.h1_c00178{height:794.000000pt;}
.h0_c00178{height:794.080000pt;}
.w8_c00178{width:65.439600pt;}
.w3_c00178{width:75.040133pt;}
.w9_c00178{width:84.351600pt;}
.w6_c00178{width:103.231733pt;}
.w7_c00178{width:103.359867pt;}
.w4_c00178{width:103.392133pt;}
.w5_c00178{width:112.640133pt;}
.w2_c00178{width:122.271867pt;}
.w1_c00178{width:1122.666667pt;}
.w0_c00178{width:1122.720000pt;}
.x0_c00178{left:0.000000pt;}
.xd_c00178{left:1.120000pt;}
.x10_c00178{left:2.400000pt;}
.x2c_c00178{left:4.320000pt;}
.x1d_c00178{left:5.919733pt;}
.x16_c00178{left:7.520000pt;}
.xa_c00178{left:8.960000pt;}
.x7_c00178{left:9.920000pt;}
.x17_c00178{left:11.200000pt;}
.x18_c00178{left:13.440000pt;}
.x6_c00178{left:15.200000pt;}
.x8_c00178{left:16.800000pt;}
.x24_c00178{left:18.240000pt;}
.x9_c00178{left:19.520000pt;}
.x1c_c00178{left:21.760000pt;}
.xc_c00178{left:23.360000pt;}
.x22_c00178{left:25.280000pt;}
.x2b_c00178{left:27.040000pt;}
.x4_c00178{left:28.480267pt;}
.x26_c00178{left:30.560000pt;}
.x11_c00178{left:32.000000pt;}
.x29_c00178{left:32.960000pt;}
.x28_c00178{left:33.920000pt;}
.x20_c00178{left:34.880000pt;}
.xe_c00178{left:36.640000pt;}
.x2a_c00178{left:37.600000pt;}
.x25_c00178{left:38.720000pt;}
.x1e_c00178{left:40.480000pt;}
.x1a_c00178{left:42.720000pt;}
.x21_c00178{left:44.160000pt;}
.x1f_c00178{left:45.120000pt;}
.x1b_c00178{left:47.040000pt;}
.x23_c00178{left:48.800000pt;}
.x27_c00178{left:52.640000pt;}
.x3_c00178{left:66.400000pt;}
.x1_c00178{left:75.519733pt;}
.x5_c00178{left:189.306667pt;}
.x2_c00178{left:264.346400pt;}
.xb_c00178{left:369.026667pt;}
.xf_c00178{left:482.466667pt;}
.x12_c00178{left:586.333333pt;}
.x13_c00178{left:690.333333pt;}
.x14_c00178{left:794.213333pt;}
.x15_c00178{left:898.213333pt;}
.x19_c00178{left:964.453333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e013ad32e2371e2a2f19a2b9.woff2')format("woff");}.ff1_c00179{font-family:ff1_c00179;line-height:1.070312;font-style:normal;font-weight:normal;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_55a227a2196f6b70bcb56d7c.woff2')format("woff");}.ff2_c00179{font-family:ff2_c00179;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00179;src:url('chunks/assets/font_30ff304e52ca480be014897b.woff2')format("woff");}.ff3_c00179{font-family:ff3_c00179;line-height:0.938965;font-style: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);}
.v1_c00179{vertical-align:-5.760936px;}
.v0_c00179{vertical-align:0.000000px;}
.ls0_c00179{letter-spacing:0.000000px;}
.sc__c00179{text-shadow:none;}
.sc0_c00179{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00179{-webkit-text-stroke:0px transparent;}
.sc0_c00179{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00179{word-spacing:-15.012000px;}
.ws0_c00179{word-spacing:-11.609280px;}
.ws2_c00179{word-spacing:0.000000px;}
._16_c00179{margin-left:-5.497927px;}
._15_c00179{margin-left:-4.184607px;}
._14_c00179{margin-left:-2.650194px;}
._3_c00179{margin-left:-1.390621px;}
._4_c00179{width:1.457969px;}
._6_c00179{width:2.641265px;}
._18_c00179{width:3.673442px;}
._c_c00179{width:5.113199px;}
._7_c00179{width:6.159925px;}
._f_c00179{width:8.281436px;}
._5_c00179{width:10.467612px;}
._11_c00179{width:11.508628px;}
._b_c00179{width:13.047031px;}
._a_c00179{width:14.305226px;}
._2_c00179{width:16.098439px;}
._1_c00179{width:17.221406px;}
._19_c00179{width:19.573024px;}
._9_c00179{width:21.858931px;}
._8_c00179{width:22.985611px;}
._e_c00179{width:24.441331px;}
._d_c00179{width:31.595685px;}
._17_c00179{width:39.809772px;}
._12_c00179{width:44.081691px;}
._13_c00179{width:45.376014px;}
._10_c00179{width:62.288245px;}
._0_c00179{width:2261.432586px;}
.fc0_c00179{color:rgb(0,0,0);}
.fs1_c00179{font-size:41.760000px;}
.fs2_c00179{font-size:54.000000px;}
.fs0_c00179{font-size:66.240000px;}
.y0_c00179{bottom:0.000000px;}
.y2d_c00179{bottom:107.460000px;}
.y2c_c00179{bottom:128.520300px;}
.y2b_c00179{bottom:149.435850px;}
.y2a_c00179{bottom:170.490300px;}
.y29_c00179{bottom:191.550000px;}
.y28_c00179{bottom:212.429850px;}
.y27_c00179{bottom:233.490150px;}
.y26_c00179{bottom:254.549850px;}
.y25_c00179{bottom:275.429700px;}
.y24_c00179{bottom:296.490000px;}
.y23_c00179{bottom:326.550000px;}
.y22_c00179{bottom:347.429850px;}
.y21_c00179{bottom:368.490150px;}
.y20_c00179{bottom:389.595000px;}
.y1f_c00179{bottom:419.475450px;}
.y1e_c00179{bottom:440.535150px;}
.y1d_c00179{bottom:461.595450px;}
.y1c_c00179{bottom:482.475300px;}
.y1b_c00179{bottom:503.535000px;}
.y1a_c00179{bottom:533.595000px;}
.y19_c00179{bottom:590.475000px;}
.y18_c00179{bottom:611.535000px;}
.y17_c00179{bottom:632.595000px;}
.y16_c00179{bottom:653.505000px;}
.y15_c00179{bottom:683.565000px;}
.y14_c00179{bottom:704.625000px;}
.y13_c00179{bottom:725.505000px;}
.y12_c00179{bottom:746.565000px;}
.y11_c00179{bottom:776.625000px;}
.y10_c00179{bottom:797.505000px;}
.yf_c00179{bottom:818.565000px;}
.ye_c00179{bottom:848.625000px;}
.yd_c00179{bottom:869.505000px;}
.yc_c00179{bottom:890.565000px;}
.yb_c00179{bottom:911.670000px;}
.ya_c00179{bottom:932.550000px;}
.y9_c00179{bottom:962.610000px;}
.y8_c00179{bottom:983.670000px;}
.y7_c00179{bottom:1004.550000px;}
.y6_c00179{bottom:1034.610450px;}
.y5_c00179{bottom:1055.670150px;}
.y4_c00179{bottom:1076.550000px;}
.y3_c00179{bottom:1097.609700px;}
.y2_c00179{bottom:1118.670000px;}
.y1_c00179{bottom:1174.680000px;}
.h3_c00179{height:48.224531px;}
.h2_c00179{height:56.957344px;}
.h1_c00179{height:1263.000000px;}
.h0_c00179{height:1263.060000px;}
.w1_c00179{width:893.250000px;}
.w0_c00179{width:893.340000px;}
.x0_c00179{left:0.000000px;}
.x1_c00179{left:127.655850px;}
.x2_c00179{left:148.896150px;}
@media print{
.v1_c00179{vertical-align:-5.120832pt;}
.v0_c00179{vertical-align:0.000000pt;}
.ls0_c00179{letter-spacing:0.000000pt;}
.ws1_c00179{word-spacing:-13.344000pt;}
.ws0_c00179{word-spacing:-10.319360pt;}
.ws2_c00179{word-spacing:0.000000pt;}
._16_c00179{margin-left:-4.887046pt;}
._15_c00179{margin-left:-3.719651pt;}
._14_c00179{margin-left:-2.355728pt;}
._3_c00179{margin-left:-1.236108pt;}
._4_c00179{width:1.295972pt;}
._6_c00179{width:2.347791pt;}
._18_c00179{width:3.265282pt;}
._c_c00179{width:4.545066pt;}
._7_c00179{width:5.475488pt;}
._f_c00179{width:7.361277pt;}
._5_c00179{width:9.304544pt;}
._11_c00179{width:10.229891pt;}
._b_c00179{width:11.597361pt;}
._a_c00179{width:12.715757pt;}
._2_c00179{width:14.309724pt;}
._1_c00179{width:15.307917pt;}
._19_c00179{width:17.398243pt;}
._9_c00179{width:19.430161pt;}
._8_c00179{width:20.431654pt;}
._e_c00179{width:21.725628pt;}
._d_c00179{width:28.085053pt;}
._17_c00179{width:35.386464pt;}
._12_c00179{width:39.183726pt;}
._13_c00179{width:40.334235pt;}
._10_c00179{width:55.367329pt;}
._0_c00179{width:2010.162299pt;}
.fs1_c00179{font-size:37.120000pt;}
.fs2_c00179{font-size:48.000000pt;}
.fs0_c00179{font-size:58.880000pt;}
.y0_c00179{bottom:0.000000pt;}
.y2d_c00179{bottom:95.520000pt;}
.y2c_c00179{bottom:114.240267pt;}
.y2b_c00179{bottom:132.831867pt;}
.y2a_c00179{bottom:151.546933pt;}
.y29_c00179{bottom:170.266667pt;}
.y28_c00179{bottom:188.826533pt;}
.y27_c00179{bottom:207.546800pt;}
.y26_c00179{bottom:226.266533pt;}
.y25_c00179{bottom:244.826400pt;}
.y24_c00179{bottom:263.546667pt;}
.y23_c00179{bottom:290.266667pt;}
.y22_c00179{bottom:308.826533pt;}
.y21_c00179{bottom:327.546800pt;}
.y20_c00179{bottom:346.306667pt;}
.y1f_c00179{bottom:372.867067pt;}
.y1e_c00179{bottom:391.586800pt;}
.y1d_c00179{bottom:410.307067pt;}
.y1c_c00179{bottom:428.866933pt;}
.y1b_c00179{bottom:447.586667pt;}
.y1a_c00179{bottom:474.306667pt;}
.y19_c00179{bottom:524.866667pt;}
.y18_c00179{bottom:543.586667pt;}
.y17_c00179{bottom:562.306667pt;}
.y16_c00179{bottom:580.893333pt;}
.y15_c00179{bottom:607.613333pt;}
.y14_c00179{bottom:626.333333pt;}
.y13_c00179{bottom:644.893333pt;}
.y12_c00179{bottom:663.613333pt;}
.y11_c00179{bottom:690.333333pt;}
.y10_c00179{bottom:708.893333pt;}
.yf_c00179{bottom:727.613333pt;}
.ye_c00179{bottom:754.333333pt;}
.yd_c00179{bottom:772.893333pt;}
.yc_c00179{bottom:791.613333pt;}
.yb_c00179{bottom:810.373333pt;}
.ya_c00179{bottom:828.933333pt;}
.y9_c00179{bottom:855.653333pt;}
.y8_c00179{bottom:874.373333pt;}
.y7_c00179{bottom:892.933333pt;}
.y6_c00179{bottom:919.653733pt;}
.y5_c00179{bottom:938.373467pt;}
.y4_c00179{bottom:956.933333pt;}
.y3_c00179{bottom:975.653067pt;}
.y2_c00179{bottom:994.373333pt;}
.y1_c00179{bottom:1044.160000pt;}
.h3_c00179{height:42.866250pt;}
.h2_c00179{height:50.628750pt;}
.h1_c00179{height:1122.666667pt;}
.h0_c00179{height:1122.720000pt;}
.w1_c00179{width:794.000000pt;}
.w0_c00179{width:794.080000pt;}
.x0_c00179{left:0.000000pt;}
.x1_c00179{left:113.471867pt;}
.x2_c00179{left:132.352133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_77f36c6264b135d3e229191a.woff2')format("woff");}.ff1_c00180{font-family:ff1_c00180;line-height:1.070312;font-style:normal;font-weight:normal;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_29f402c2d23a00b90d895c0f.woff2')format("woff");}.ff2_c00180{font-family:ff2_c00180;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00180;src:url('chunks/assets/font_912b948e0da8e4cf99e35067.woff2')format("woff");}.ff3_c00180{font-family:ff3_c00180;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00180;src:url('chunks/assets/font_8c788ebe4b87d501a84321a7.woff2')format("woff");}.ff4_c00180{font-family:ff4_c00180;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.m1_c00180{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_c00180{vertical-align:0.000000px;}
.ls0_c00180{letter-spacing:0.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;}
}
.ws2_c00180{word-spacing:-18.414720px;}
.ws1_c00180{word-spacing:-16.613280px;}
.ws0_c00180{word-spacing:-15.012000px;}
.ws3_c00180{word-spacing:0.000000px;}
._13_c00180{margin-left:-5.750128px;}
._a_c00180{margin-left:-4.571033px;}
._1_c00180{margin-left:-2.515457px;}
._2_c00180{margin-left:-1.193148px;}
._6_c00180{width:1.103740px;}
._11_c00180{width:2.481346px;}
._8_c00180{width:3.592617px;}
._7_c00180{width:4.624039px;}
._4_c00180{width:5.757394px;}
._3_c00180{width:6.822113px;}
._5_c00180{width:8.565077px;}
._c_c00180{width:10.465239px;}
._b_c00180{width:11.990656px;}
._9_c00180{width:13.114412px;}
._12_c00180{width:19.558541px;}
._d_c00180{width:26.165649px;}
._e_c00180{width:27.312456px;}
._10_c00180{width:31.947072px;}
._f_c00180{width:33.443233px;}
._14_c00180{width:80.584520px;}
._0_c00180{width:2261.432586px;}
.fc1_c00180{color:transparent;}
.fc0_c00180{color:rgb(0,0,0);}
.fs1_c00180{font-size:54.000000px;}
.fs2_c00180{font-size:59.760000px;}
.fs0_c00180{font-size:66.240000px;}
.fs3_c00180{font-size:72.000000px;}
.y0_c00180{bottom:0.000000px;}
.y22_c00180{bottom:3.240000px;}
.y2e_c00180{bottom:3.240300px;}
.y34_c00180{bottom:17.993850px;}
.y26_c00180{bottom:20.520000px;}
.y2d_c00180{bottom:20.520150px;}
.y21_c00180{bottom:20.565000px;}
.y27_c00180{bottom:22.140000px;}
.y31_c00180{bottom:29.520300px;}
.y33_c00180{bottom:36.893850px;}
.y2c_c00180{bottom:37.800000px;}
.y20_c00180{bottom:37.845000px;}
.y25_c00180{bottom:37.980000px;}
.y24_c00180{bottom:39.420000px;}
.y30_c00180{bottom:46.800150px;}
.y2b_c00180{bottom:64.079550px;}
.y2f_c00180{bottom:64.080000px;}
.y2a_c00180{bottom:81.360000px;}
.y29_c00180{bottom:104.220000px;}
.y32_c00180{bottom:137.196150px;}
.y28_c00180{bottom:186.330000px;}
.y23_c00180{bottom:302.970000px;}
.y1f_c00180{bottom:377.670000px;}
.y1e_c00180{bottom:467.534700px;}
.y1d_c00180{bottom:488.595000px;}
.y1c_c00180{bottom:536.475000px;}
.y1b_c00180{bottom:557.534700px;}
.y1a_c00180{bottom:578.595450px;}
.y19_c00180{bottom:599.475300px;}
.y18_c00180{bottom:620.535000px;}
.y17_c00180{bottom:650.624850px;}
.y16_c00180{bottom:671.504700px;}
.y15_c00180{bottom:692.565000px;}
.y14_c00180{bottom:722.625150px;}
.y13_c00180{bottom:743.505000px;}
.y12_c00180{bottom:773.565750px;}
.y11_c00180{bottom:794.625450px;}
.y10_c00180{bottom:815.505300px;}
.yf_c00180{bottom:836.565600px;}
.ye_c00180{bottom:857.625300px;}
.yd_c00180{bottom:878.505150px;}
.yc_c00180{bottom:899.610000px;}
.yb_c00180{bottom:920.670300px;}
.ya_c00180{bottom:941.550150px;}
.y9_c00180{bottom:962.609850px;}
.y8_c00180{bottom:983.670150px;}
.y7_c00180{bottom:1004.550000px;}
.y6_c00180{bottom:1034.609850px;}
.y5_c00180{bottom:1055.670150px;}
.y4_c00180{bottom:1076.550000px;}
.y3_c00180{bottom:1097.609700px;}
.y2_c00180{bottom:1118.670000px;}
.y1_c00180{bottom:1174.680000px;}
.ha_c00180{height:36.900000px;}
.h9_c00180{height:39.830273px;}
.h4_c00180{height:43.506914px;}
.h8_c00180{height:47.988281px;}
.h6_c00180{height:48.224531px;}
.h2_c00180{height:56.957344px;}
.h3_c00180{height:60.876000px;}
.h5_c00180{height:62.459700px;}
.h7_c00180{height:104.220150px;}
.h1_c00180{height:1263.000000px;}
.h0_c00180{height:1263.060000px;}
.wc_c00180{width:49.859700px;}
.w9_c00180{width:58.679850px;}
.w8_c00180{width:58.896150px;}
.wa_c00180{width:59.579850px;}
.wb_c00180{width:73.079850px;}
.w5_c00180{width:73.116150px;}
.w4_c00180{width:83.700000px;}
.w2_c00180{width:93.420150px;}
.w3_c00180{width:115.236300px;}
.w6_c00180{width:124.379850px;}
.w7_c00180{width:180.030000px;}
.w1_c00180{width:893.250000px;}
.w0_c00180{width:893.340000px;}
.x0_c00180{left:0.000000px;}
.xd_c00180{left:5.400000px;}
.x9_c00180{left:7.200000px;}
.x5_c00180{left:9.172500px;}
.xa_c00180{left:10.620000px;}
.x1a_c00180{left:12.060000px;}
.x13_c00180{left:13.320000px;}
.x1b_c00180{left:15.292590px;}
.x14_c00180{left:16.740000px;}
.x20_c00180{left:18.045000px;}
.xe_c00180{left:19.080000px;}
.x17_c00180{left:21.270000px;}
.x1f_c00180{left:22.710000px;}
.xb_c00180{left:24.300000px;}
.x16_c00180{left:26.460000px;}
.x7_c00180{left:27.900000px;}
.x15_c00180{left:33.300000px;}
.x10_c00180{left:44.280000px;}
.x1d_c00180{left:46.613850px;}
.x1e_c00180{left:48.285000px;}
.x12_c00180{left:64.665000px;}
.x1_c00180{left:127.655850px;}
.x4_c00180{left:129.096150px;}
.x2_c00180{left:148.896150px;}
.x6_c00180{left:224.130000px;}
.x3_c00180{left:234.029850px;}
.x8_c00180{left:340.815000px;}
.xc_c00180{left:425.955000px;}
.xf_c00180{left:500.505000px;}
.x1c_c00180{left:575.025000px;}
.x11_c00180{left:626.325000px;}
.x18_c00180{left:686.670000px;}
.x19_c00180{left:746.790000px;}
@media print{
.v0_c00180{vertical-align:0.000000pt;}
.ls0_c00180{letter-spacing:0.000000pt;}
.ws2_c00180{word-spacing:-16.368640pt;}
.ws1_c00180{word-spacing:-14.767360pt;}
.ws0_c00180{word-spacing:-13.344000pt;}
.ws3_c00180{word-spacing:0.000000pt;}
._13_c00180{margin-left:-5.111225pt;}
._a_c00180{margin-left:-4.063140pt;}
._1_c00180{margin-left:-2.235962pt;}
._2_c00180{margin-left:-1.060576pt;}
._6_c00180{width:0.981102pt;}
._11_c00180{width:2.205641pt;}
._8_c00180{width:3.193437pt;}
._7_c00180{width:4.110257pt;}
._4_c00180{width:5.117684pt;}
._3_c00180{width:6.064101pt;}
._5_c00180{width:7.613402pt;}
._c_c00180{width:9.302435pt;}
._b_c00180{width:10.658360pt;}
._9_c00180{width:11.657256pt;}
._12_c00180{width:17.385369pt;}
._d_c00180{width:23.258355pt;}
._e_c00180{width:24.277738pt;}
._10_c00180{width:28.397397pt;}
._f_c00180{width:29.727319pt;}
._14_c00180{width:71.630684pt;}
._0_c00180{width:2010.162299pt;}
.fs1_c00180{font-size:48.000000pt;}
.fs2_c00180{font-size:53.120000pt;}
.fs0_c00180{font-size:58.880000pt;}
.fs3_c00180{font-size:64.000000pt;}
.y0_c00180{bottom:0.000000pt;}
.y22_c00180{bottom:2.880000pt;}
.y2e_c00180{bottom:2.880267pt;}
.y34_c00180{bottom:15.994533pt;}
.y26_c00180{bottom:18.240000pt;}
.y2d_c00180{bottom:18.240133pt;}
.y21_c00180{bottom:18.280000pt;}
.y27_c00180{bottom:19.680000pt;}
.y31_c00180{bottom:26.240267pt;}
.y33_c00180{bottom:32.794533pt;}
.y2c_c00180{bottom:33.600000pt;}
.y20_c00180{bottom:33.640000pt;}
.y25_c00180{bottom:33.760000pt;}
.y24_c00180{bottom:35.040000pt;}
.y30_c00180{bottom:41.600133pt;}
.y2b_c00180{bottom:56.959600pt;}
.y2f_c00180{bottom:56.960000pt;}
.y2a_c00180{bottom:72.320000pt;}
.y29_c00180{bottom:92.640000pt;}
.y32_c00180{bottom:121.952133pt;}
.y28_c00180{bottom:165.626667pt;}
.y23_c00180{bottom:269.306667pt;}
.y1f_c00180{bottom:335.706667pt;}
.y1e_c00180{bottom:415.586400pt;}
.y1d_c00180{bottom:434.306667pt;}
.y1c_c00180{bottom:476.866667pt;}
.y1b_c00180{bottom:495.586400pt;}
.y1a_c00180{bottom:514.307067pt;}
.y19_c00180{bottom:532.866933pt;}
.y18_c00180{bottom:551.586667pt;}
.y17_c00180{bottom:578.333200pt;}
.y16_c00180{bottom:596.893067pt;}
.y15_c00180{bottom:615.613333pt;}
.y14_c00180{bottom:642.333467pt;}
.y13_c00180{bottom:660.893333pt;}
.y12_c00180{bottom:687.614000pt;}
.y11_c00180{bottom:706.333733pt;}
.y10_c00180{bottom:724.893600pt;}
.yf_c00180{bottom:743.613867pt;}
.ye_c00180{bottom:762.333600pt;}
.yd_c00180{bottom:780.893467pt;}
.yc_c00180{bottom:799.653333pt;}
.yb_c00180{bottom:818.373600pt;}
.ya_c00180{bottom:836.933467pt;}
.y9_c00180{bottom:855.653200pt;}
.y8_c00180{bottom:874.373467pt;}
.y7_c00180{bottom:892.933333pt;}
.y6_c00180{bottom:919.653200pt;}
.y5_c00180{bottom:938.373467pt;}
.y4_c00180{bottom:956.933333pt;}
.y3_c00180{bottom:975.653067pt;}
.y2_c00180{bottom:994.373333pt;}
.y1_c00180{bottom:1044.160000pt;}
.ha_c00180{height:32.800000pt;}
.h9_c00180{height:35.404688pt;}
.h4_c00180{height:38.672813pt;}
.h8_c00180{height:42.656250pt;}
.h6_c00180{height:42.866250pt;}
.h2_c00180{height:50.628750pt;}
.h3_c00180{height:54.112000pt;}
.h5_c00180{height:55.519733pt;}
.h7_c00180{height:92.640133pt;}
.h1_c00180{height:1122.666667pt;}
.h0_c00180{height:1122.720000pt;}
.wc_c00180{width:44.319733pt;}
.w9_c00180{width:52.159867pt;}
.w8_c00180{width:52.352133pt;}
.wa_c00180{width:52.959867pt;}
.wb_c00180{width:64.959867pt;}
.w5_c00180{width:64.992133pt;}
.w4_c00180{width:74.400000pt;}
.w2_c00180{width:83.040133pt;}
.w3_c00180{width:102.432267pt;}
.w6_c00180{width:110.559867pt;}
.w7_c00180{width:160.026667pt;}
.w1_c00180{width:794.000000pt;}
.w0_c00180{width:794.080000pt;}
.x0_c00180{left:0.000000pt;}
.xd_c00180{left:4.800000pt;}
.x9_c00180{left:6.400000pt;}
.x5_c00180{left:8.153333pt;}
.xa_c00180{left:9.440000pt;}
.x1a_c00180{left:10.720000pt;}
.x13_c00180{left:11.840000pt;}
.x1b_c00180{left:13.593413pt;}
.x14_c00180{left:14.880000pt;}
.x20_c00180{left:16.040000pt;}
.xe_c00180{left:16.960000pt;}
.x17_c00180{left:18.906667pt;}
.x1f_c00180{left:20.186667pt;}
.xb_c00180{left:21.600000pt;}
.x16_c00180{left:23.520000pt;}
.x7_c00180{left:24.800000pt;}
.x15_c00180{left:29.600000pt;}
.x10_c00180{left:39.360000pt;}
.x1d_c00180{left:41.434533pt;}
.x1e_c00180{left:42.920000pt;}
.x12_c00180{left:57.480000pt;}
.x1_c00180{left:113.471867pt;}
.x4_c00180{left:114.752133pt;}
.x2_c00180{left:132.352133pt;}
.x6_c00180{left:199.226667pt;}
.x3_c00180{left:208.026533pt;}
.x8_c00180{left:302.946667pt;}
.xc_c00180{left:378.626667pt;}
.xf_c00180{left:444.893333pt;}
.x1c_c00180{left:511.133333pt;}
.x11_c00180{left:556.733333pt;}
.x18_c00180{left:610.373333pt;}
.x19_c00180{left:663.813333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_278ef54af82edf0b4fd0579d.woff2')format("woff");}.ff1_c00181{font-family:ff1_c00181;line-height:1.070312;font-style:normal;font-weight:normal;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_637a09d38bf92265986f76e8.woff2')format("woff");}.ff2_c00181{font-family:ff2_c00181;line-height:0.938965;font-style:normal;font-weight:normal;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_5d0169055fdb629c426c8b7f.woff2')format("woff");}.ff3_c00181{font-family:ff3_c00181;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00181;src:url('chunks/assets/font_8b0701136755e70ca98120f9.woff2')format("woff");}.ff4_c00181{font-family:ff4_c00181;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls4_c00181{letter-spacing:0.000000px;}
.ls2_c00181{letter-spacing:0.261600px;}
.ls1_c00181{letter-spacing:0.304800px;}
.ls3_c00181{letter-spacing:0.307140px;}
.ls0_c00181{letter-spacing:2.465280px;}
.sc__c00181{text-shadow:none;}
.sc0_c00181{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00181{-webkit-text-stroke:0px transparent;}
.sc0_c00181{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00181{word-spacing:-18.414720px;}
.ws2_c00181{word-spacing:-16.560000px;}
.ws1_c00181{word-spacing:-15.012000px;}
.ws3_c00181{word-spacing:0.000000px;}
._d_c00181{margin-left:-3.643020px;}
._3_c00181{margin-left:-2.351525px;}
._2_c00181{margin-left:-1.322469px;}
._6_c00181{width:1.392114px;}
._7_c00181{width:2.643894px;}
._5_c00181{width:4.350665px;}
._4_c00181{width:5.360883px;}
._b_c00181{width:6.565286px;}
._1_c00181{width:7.881566px;}
._10_c00181{width:9.085154px;}
._f_c00181{width:14.639677px;}
._c_c00181{width:22.971427px;}
._9_c00181{width:30.319999px;}
._8_c00181{width:31.398357px;}
._a_c00181{width:32.865602px;}
._e_c00181{width:79.252176px;}
._0_c00181{width:2261.432586px;}
.fc1_c00181{color:rgb(255,0,0);}
.fc0_c00181{color:rgb(0,0,0);}
.fs1_c00181{font-size:54.000000px;}
.fs0_c00181{font-size:66.240000px;}
.y0_c00181{bottom:0.000000px;}
.y2c_c00181{bottom:119.519850px;}
.y2b_c00181{bottom:140.435550px;}
.y2a_c00181{bottom:161.490000px;}
.y29_c00181{bottom:191.550000px;}
.y28_c00181{bottom:221.430000px;}
.y27_c00181{bottom:251.490000px;}
.y26_c00181{bottom:281.550150px;}
.y25_c00181{bottom:302.430000px;}
.y24_c00181{bottom:332.490450px;}
.y23_c00181{bottom:353.550150px;}
.y22_c00181{bottom:374.430000px;}
.y21_c00181{bottom:404.535000px;}
.y20_c00181{bottom:434.595000px;}
.y1f_c00181{bottom:464.475000px;}
.y1e_c00181{bottom:494.535000px;}
.y1d_c00181{bottom:524.595450px;}
.y1c_c00181{bottom:545.475300px;}
.y1b_c00181{bottom:566.535000px;}
.y1a_c00181{bottom:596.595450px;}
.y19_c00181{bottom:617.475300px;}
.y18_c00181{bottom:638.535000px;}
.y17_c00181{bottom:659.625300px;}
.y16_c00181{bottom:680.505150px;}
.y15_c00181{bottom:701.565450px;}
.y14_c00181{bottom:722.625150px;}
.y13_c00181{bottom:743.505000px;}
.y12_c00181{bottom:764.565300px;}
.y11_c00181{bottom:785.625000px;}
.y10_c00181{bottom:815.505150px;}
.yf_c00181{bottom:836.565450px;}
.ye_c00181{bottom:857.625150px;}
.yd_c00181{bottom:878.505000px;}
.yc_c00181{bottom:899.609850px;}
.yb_c00181{bottom:920.670150px;}
.ya_c00181{bottom:941.550000px;}
.y9_c00181{bottom:971.609850px;}
.y8_c00181{bottom:992.670150px;}
.y7_c00181{bottom:1013.550000px;}
.y6_c00181{bottom:1034.609700px;}
.y5_c00181{bottom:1055.670150px;}
.y4_c00181{bottom:1076.550000px;}
.y3_c00181{bottom:1097.609700px;}
.y2_c00181{bottom:1118.670000px;}
.y1_c00181{bottom:1174.680000px;}
.h4_c00181{height:48.224531px;}
.h3_c00181{height:48.256875px;}
.h2_c00181{height:56.957344px;}
.h1_c00181{height:1263.000000px;}
.h0_c00181{height:1263.060000px;}
.w1_c00181{width:893.250000px;}
.w0_c00181{width:893.340000px;}
.x0_c00181{left:0.000000px;}
.x1_c00181{left:127.655850px;}
.x2_c00181{left:148.896150px;}
@media print{
.v0_c00181{vertical-align:0.000000pt;}
.ls4_c00181{letter-spacing:0.000000pt;}
.ls2_c00181{letter-spacing:0.232533pt;}
.ls1_c00181{letter-spacing:0.270933pt;}
.ls3_c00181{letter-spacing:0.273013pt;}
.ls0_c00181{letter-spacing:2.191360pt;}
.ws0_c00181{word-spacing:-16.368640pt;}
.ws2_c00181{word-spacing:-14.720000pt;}
.ws1_c00181{word-spacing:-13.344000pt;}
.ws3_c00181{word-spacing:0.000000pt;}
._d_c00181{margin-left:-3.238240pt;}
._3_c00181{margin-left:-2.090244pt;}
._2_c00181{margin-left:-1.175528pt;}
._6_c00181{width:1.237435pt;}
._7_c00181{width:2.350128pt;}
._5_c00181{width:3.867258pt;}
._4_c00181{width:4.765229pt;}
._b_c00181{width:5.835809pt;}
._1_c00181{width:7.005837pt;}
._10_c00181{width:8.075692pt;}
._f_c00181{width:13.013046pt;}
._c_c00181{width:20.419046pt;}
._9_c00181{width:26.951110pt;}
._8_c00181{width:27.909651pt;}
._a_c00181{width:29.213869pt;}
._e_c00181{width:70.446379pt;}
._0_c00181{width:2010.162299pt;}
.fs1_c00181{font-size:48.000000pt;}
.fs0_c00181{font-size:58.880000pt;}
.y0_c00181{bottom:0.000000pt;}
.y2c_c00181{bottom:106.239867pt;}
.y2b_c00181{bottom:124.831600pt;}
.y2a_c00181{bottom:143.546667pt;}
.y29_c00181{bottom:170.266667pt;}
.y28_c00181{bottom:196.826667pt;}
.y27_c00181{bottom:223.546667pt;}
.y26_c00181{bottom:250.266800pt;}
.y25_c00181{bottom:268.826667pt;}
.y24_c00181{bottom:295.547067pt;}
.y23_c00181{bottom:314.266800pt;}
.y22_c00181{bottom:332.826667pt;}
.y21_c00181{bottom:359.586667pt;}
.y20_c00181{bottom:386.306667pt;}
.y1f_c00181{bottom:412.866667pt;}
.y1e_c00181{bottom:439.586667pt;}
.y1d_c00181{bottom:466.307067pt;}
.y1c_c00181{bottom:484.866933pt;}
.y1b_c00181{bottom:503.586667pt;}
.y1a_c00181{bottom:530.307067pt;}
.y19_c00181{bottom:548.866933pt;}
.y18_c00181{bottom:567.586667pt;}
.y17_c00181{bottom:586.333600pt;}
.y16_c00181{bottom:604.893467pt;}
.y15_c00181{bottom:623.613733pt;}
.y14_c00181{bottom:642.333467pt;}
.y13_c00181{bottom:660.893333pt;}
.y12_c00181{bottom:679.613600pt;}
.y11_c00181{bottom:698.333333pt;}
.y10_c00181{bottom:724.893467pt;}
.yf_c00181{bottom:743.613733pt;}
.ye_c00181{bottom:762.333467pt;}
.yd_c00181{bottom:780.893333pt;}
.yc_c00181{bottom:799.653200pt;}
.yb_c00181{bottom:818.373467pt;}
.ya_c00181{bottom:836.933333pt;}
.y9_c00181{bottom:863.653200pt;}
.y8_c00181{bottom:882.373467pt;}
.y7_c00181{bottom:900.933333pt;}
.y6_c00181{bottom:919.653067pt;}
.y5_c00181{bottom:938.373467pt;}
.y4_c00181{bottom:956.933333pt;}
.y3_c00181{bottom:975.653067pt;}
.y2_c00181{bottom:994.373333pt;}
.y1_c00181{bottom:1044.160000pt;}
.h4_c00181{height:42.866250pt;}
.h3_c00181{height:42.895000pt;}
.h2_c00181{height:50.628750pt;}
.h1_c00181{height:1122.666667pt;}
.h0_c00181{height:1122.720000pt;}
.w1_c00181{width:794.000000pt;}
.w0_c00181{width:794.080000pt;}
.x0_c00181{left:0.000000pt;}
.x1_c00181{left:113.471867pt;}
.x2_c00181{left:132.352133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5838252144c4436b0bb66022.woff2')format("woff");}.ff1_c00182{font-family:ff1_c00182;line-height:1.070312;font-style:normal;font-weight:normal;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_7d3b244b2a302bf55e61631b.woff2')format("woff");}.ff2_c00182{font-family:ff2_c00182;line-height:0.938965;font-style: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);}
.m1_c00182{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_c00182{vertical-align:0.000000px;}
.ls0_c00182{letter-spacing:0.000000px;}
.sc__c00182{text-shadow:none;}
.sc0_c00182{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00182{-webkit-text-stroke:0px transparent;}
.sc0_c00182{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00182{word-spacing:0.000000px;}
._a_c00182{margin-left:-4.768509px;}
._9_c00182{margin-left:-3.747388px;}
._2_c00182{margin-left:-1.136733px;}
._3_c00182{width:1.031840px;}
._7_c00182{width:2.705527px;}
._b_c00182{width:5.696228px;}
._c_c00182{width:6.775410px;}
._8_c00182{width:8.355455px;}
._5_c00182{width:12.681294px;}
._4_c00182{width:13.777324px;}
._1_c00182{width:15.268627px;}
._10_c00182{width:23.176125px;}
._f_c00182{width:24.654084px;}
._d_c00182{width:39.016820px;}
._e_c00182{width:40.019518px;}
._6_c00182{width:44.777046px;}
._0_c00182{width:2261.432586px;}
.fc0_c00182{color:rgb(0,0,0);}
.fs0_c00182{font-size:66.240000px;}
.y0_c00182{bottom:0.000000px;}
.y12_c00182{bottom:746.565000px;}
.y11_c00182{bottom:776.625000px;}
.y10_c00182{bottom:806.505000px;}
.yf_c00182{bottom:836.565150px;}
.ye_c00182{bottom:857.624850px;}
.yd_c00182{bottom:878.504700px;}
.yc_c00182{bottom:899.609550px;}
.yb_c00182{bottom:920.669850px;}
.ya_c00182{bottom:941.549700px;}
.y9_c00182{bottom:962.609400px;}
.y8_c00182{bottom:983.669700px;}
.y7_c00182{bottom:1004.549550px;}
.y6_c00182{bottom:1025.609850px;}
.y5_c00182{bottom:1046.670150px;}
.y4_c00182{bottom:1067.550000px;}
.y3_c00182{bottom:1097.609700px;}
.y2_c00182{bottom:1118.670000px;}
.y1_c00182{bottom:1174.680000px;}
.h4_c00182{height:48.256875px;}
.h2_c00182{height:56.957344px;}
.h3_c00182{height:56.958544px;}
.h1_c00182{height:1263.000000px;}
.h0_c00182{height:1263.060000px;}
.w1_c00182{width:893.250000px;}
.w0_c00182{width:893.340000px;}
.x0_c00182{left:0.000000px;}
.x1_c00182{left:127.655850px;}
.x2_c00182{left:148.896150px;}
@media print{
.v0_c00182{vertical-align:0.000000pt;}
.ls0_c00182{letter-spacing:0.000000pt;}
.ws0_c00182{word-spacing:0.000000pt;}
._a_c00182{margin-left:-4.238675pt;}
._9_c00182{margin-left:-3.331011pt;}
._2_c00182{margin-left:-1.010430pt;}
._3_c00182{width:0.917191pt;}
._7_c00182{width:2.404913pt;}
._b_c00182{width:5.063314pt;}
._c_c00182{width:6.022587pt;}
._8_c00182{width:7.427071pt;}
._5_c00182{width:11.272262pt;}
._4_c00182{width:12.246510pt;}
._1_c00182{width:13.572113pt;}
._10_c00182{width:20.601000pt;}
._f_c00182{width:21.914741pt;}
._d_c00182{width:34.681618pt;}
._e_c00182{width:35.572905pt;}
._6_c00182{width:39.801819pt;}
._0_c00182{width:2010.162299pt;}
.fs0_c00182{font-size:58.880000pt;}
.y0_c00182{bottom:0.000000pt;}
.y12_c00182{bottom:663.613333pt;}
.y11_c00182{bottom:690.333333pt;}
.y10_c00182{bottom:716.893333pt;}
.yf_c00182{bottom:743.613467pt;}
.ye_c00182{bottom:762.333200pt;}
.yd_c00182{bottom:780.893067pt;}
.yc_c00182{bottom:799.652933pt;}
.yb_c00182{bottom:818.373200pt;}
.ya_c00182{bottom:836.933067pt;}
.y9_c00182{bottom:855.652800pt;}
.y8_c00182{bottom:874.373067pt;}
.y7_c00182{bottom:892.932933pt;}
.y6_c00182{bottom:911.653200pt;}
.y5_c00182{bottom:930.373467pt;}
.y4_c00182{bottom:948.933333pt;}
.y3_c00182{bottom:975.653067pt;}
.y2_c00182{bottom:994.373333pt;}
.y1_c00182{bottom:1044.160000pt;}
.h4_c00182{height:42.895000pt;}
.h2_c00182{height:50.628750pt;}
.h3_c00182{height:50.629817pt;}
.h1_c00182{height:1122.666667pt;}
.h0_c00182{height:1122.720000pt;}
.w1_c00182{width:794.000000pt;}
.w0_c00182{width:794.080000pt;}
.x0_c00182{left:0.000000pt;}
.x1_c00182{left:113.471867pt;}
.x2_c00182{left:132.352133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f92c159605eebd93bf45a1b7.woff2')format("woff");}.ff1_c00183{font-family:ff1_c00183;line-height:1.070312;font-style:normal;font-weight:normal;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_2d8685e46f55b8896bca2428.woff2')format("woff");}.ff2_c00183{font-family:ff2_c00183;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00183;src:url('chunks/assets/font_2c661173fbe578d4a1a8299a.woff2')format("woff");}.ff3_c00183{font-family:ff3_c00183;line-height:0.938965;font-style: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;}
.ls0_c00183{letter-spacing:0.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;}
}
.ws1_c00183{word-spacing:-33.226560px;}
.ws0_c00183{word-spacing:-16.613280px;}
.ws2_c00183{word-spacing:0.000000px;}
._6_c00183{margin-left:-7.299494px;}
._5_c00183{margin-left:-5.825388px;}
._3_c00183{margin-left:-1.126186px;}
._7_c00183{width:1.287012px;}
._1_c00183{width:21.907025px;}
._4_c00183{width:80.663466px;}
._2_c00183{width:193.982515px;}
._0_c00183{width:2371.553826px;}
.fc0_c00183{color:rgb(0,0,0);}
.fs1_c00183{font-size:59.760000px;}
.fs0_c00183{font-size:66.240000px;}
.y0_c00183{bottom:0.000000px;}
.y24_c00183{bottom:6.479850px;}
.y1a_c00183{bottom:8.100000px;}
.yb_c00183{bottom:8.460000px;}
.y23_c00183{bottom:9.893850px;}
.y11_c00183{bottom:17.100000px;}
.y17_c00183{bottom:21.600000px;}
.y19_c00183{bottom:26.100000px;}
.ya_c00183{bottom:34.740000px;}
.y10_c00183{bottom:43.380000px;}
.y16_c00183{bottom:47.880000px;}
.y9_c00183{bottom:52.020000px;}
.yf_c00183{bottom:60.660000px;}
.y15_c00183{bottom:65.160000px;}
.y4_c00183{bottom:73.800000px;}
.ye_c00183{bottom:77.940000px;}
.y8_c00183{bottom:78.300000px;}
.y14_c00183{bottom:91.485000px;}
.yd_c00183{bottom:104.085000px;}
.y7_c00183{bottom:104.445000px;}
.y13_c00183{bottom:108.585000px;}
.y25_c00183{bottom:115.955850px;}
.y6_c00183{bottom:121.725000px;}
.y12_c00183{bottom:125.865000px;}
.yc_c00183{bottom:130.365000px;}
.y5_c00183{bottom:139.005000px;}
.y22_c00183{bottom:142.596150px;}
.y21_c00183{bottom:176.250000px;}
.y20_c00183{bottom:221.970000px;}
.y1f_c00183{bottom:267.735000px;}
.y1e_c00183{bottom:313.455000px;}
.y1d_c00183{bottom:359.175000px;}
.y1c_c00183{bottom:404.895000px;}
.y1b_c00183{bottom:450.825000px;}
.y18_c00183{bottom:496.545000px;}
.y3_c00183{bottom:542.265000px;}
.y2_c00183{bottom:732.390000px;}
.y1_c00183{bottom:804.930000px;}
.h8_c00183{height:32.759700px;}
.h4_c00183{height:43.506914px;}
.h6_c00183{height:45.000000px;}
.h7_c00183{height:45.035700px;}
.h5_c00183{height:51.385430px;}
.h2_c00183{height:56.957344px;}
.h3_c00183{height:167.250000px;}
.h1_c00183{height:893.250000px;}
.h0_c00183{height:893.340000px;}
.wb_c00183{width:62.459700px;}
.wa_c00183{width:91.656450px;}
.wc_c00183{width:108.720150px;}
.w4_c00183{width:114.156450px;}
.w5_c00183{width:116.279850px;}
.w3_c00183{width:126.540300px;}
.w7_c00183{width:127.800000px;}
.w6_c00183{width:131.255850px;}
.w2_c00183{width:148.535700px;}
.w8_c00183{width:264.450000px;}
.w9_c00183{width:768.165000px;}
.w1_c00183{width:1263.000000px;}
.w0_c00183{width:1263.060000px;}
.x0_c00183{left:0.000000px;}
.x1c_c00183{left:3.240000px;}
.x1b_c00183{left:4.859700px;}
.x6_c00183{left:7.920000px;}
.x1e_c00183{left:9.892500px;}
.xe_c00183{left:11.925000px;}
.x16_c00183{left:14.400000px;}
.xb_c00183{left:16.245000px;}
.x26_c00183{left:18.360000px;}
.x13_c00183{left:19.800000px;}
.x4_c00183{left:22.140000px;}
.x10_c00183{left:23.625000px;}
.x7_c00183{left:25.020000px;}
.xf_c00183{left:27.585000px;}
.x22_c00183{left:31.185000px;}
.xc_c00183{left:32.805000px;}
.x18_c00183{left:34.380000px;}
.x11_c00183{left:36.405000px;}
.x5_c00183{left:39.060000px;}
.x14_c00183{left:40.680000px;}
.x9_c00183{left:42.660000px;}
.x23_c00183{left:43.740000px;}
.x8_c00183{left:45.720000px;}
.x25_c00183{left:47.340000px;}
.x21_c00183{left:49.680000px;}
.x24_c00183{left:50.790000px;}
.x20_c00183{left:52.785000px;}
.xd_c00183{left:54.585000px;}
.x2_c00183{left:71.670000px;}
.x1_c00183{left:90.179850px;}
.x1a_c00183{left:106.785000px;}
.x27_c00183{left:111.420150px;}
.x3_c00183{left:240.150000px;}
.xa_c00183{left:367.410000px;}
.x12_c00183{left:482.295000px;}
.x15_c00183{left:599.295000px;}
.x17_c00183{left:731.265000px;}
.x19_c00183{left:859.785000px;}
.x1d_c00183{left:952.350000px;}
.x1f_c00183{left:1015.530000px;}
@media print{
.v0_c00183{vertical-align:0.000000pt;}
.ls0_c00183{letter-spacing:0.000000pt;}
.ws1_c00183{word-spacing:-29.534720pt;}
.ws0_c00183{word-spacing:-14.767360pt;}
.ws2_c00183{word-spacing:0.000000pt;}
._6_c00183{margin-left:-6.488439pt;}
._5_c00183{margin-left:-5.178123pt;}
._3_c00183{margin-left:-1.001054pt;}
._7_c00183{width:1.144010pt;}
._1_c00183{width:19.472911pt;}
._4_c00183{width:71.700859pt;}
._2_c00183{width:172.428902pt;}
._0_c00183{width:2108.047846pt;}
.fs1_c00183{font-size:53.120000pt;}
.fs0_c00183{font-size:58.880000pt;}
.y0_c00183{bottom:0.000000pt;}
.y24_c00183{bottom:5.759867pt;}
.y1a_c00183{bottom:7.200000pt;}
.yb_c00183{bottom:7.520000pt;}
.y23_c00183{bottom:8.794533pt;}
.y11_c00183{bottom:15.200000pt;}
.y17_c00183{bottom:19.200000pt;}
.y19_c00183{bottom:23.200000pt;}
.ya_c00183{bottom:30.880000pt;}
.y10_c00183{bottom:38.560000pt;}
.y16_c00183{bottom:42.560000pt;}
.y9_c00183{bottom:46.240000pt;}
.yf_c00183{bottom:53.920000pt;}
.y15_c00183{bottom:57.920000pt;}
.y4_c00183{bottom:65.600000pt;}
.ye_c00183{bottom:69.280000pt;}
.y8_c00183{bottom:69.600000pt;}
.y14_c00183{bottom:81.320000pt;}
.yd_c00183{bottom:92.520000pt;}
.y7_c00183{bottom:92.840000pt;}
.y13_c00183{bottom:96.520000pt;}
.y25_c00183{bottom:103.071867pt;}
.y6_c00183{bottom:108.200000pt;}
.y12_c00183{bottom:111.880000pt;}
.yc_c00183{bottom:115.880000pt;}
.y5_c00183{bottom:123.560000pt;}
.y22_c00183{bottom:126.752133pt;}
.y21_c00183{bottom:156.666667pt;}
.y20_c00183{bottom:197.306667pt;}
.y1f_c00183{bottom:237.986667pt;}
.y1e_c00183{bottom:278.626667pt;}
.y1d_c00183{bottom:319.266667pt;}
.y1c_c00183{bottom:359.906667pt;}
.y1b_c00183{bottom:400.733333pt;}
.y18_c00183{bottom:441.373333pt;}
.y3_c00183{bottom:482.013333pt;}
.y2_c00183{bottom:651.013333pt;}
.y1_c00183{bottom:715.493333pt;}
.h8_c00183{height:29.119733pt;}
.h4_c00183{height:38.672813pt;}
.h6_c00183{height:40.000000pt;}
.h7_c00183{height:40.031733pt;}
.h5_c00183{height:45.675938pt;}
.h2_c00183{height:50.628750pt;}
.h3_c00183{height:148.666667pt;}
.h1_c00183{height:794.000000pt;}
.h0_c00183{height:794.080000pt;}
.wb_c00183{width:55.519733pt;}
.wa_c00183{width:81.472400pt;}
.wc_c00183{width:96.640133pt;}
.w4_c00183{width:101.472400pt;}
.w5_c00183{width:103.359867pt;}
.w3_c00183{width:112.480267pt;}
.w7_c00183{width:113.600000pt;}
.w6_c00183{width:116.671867pt;}
.w2_c00183{width:132.031733pt;}
.w8_c00183{width:235.066667pt;}
.w9_c00183{width:682.813333pt;}
.w1_c00183{width:1122.666667pt;}
.w0_c00183{width:1122.720000pt;}
.x0_c00183{left:0.000000pt;}
.x1c_c00183{left:2.880000pt;}
.x1b_c00183{left:4.319733pt;}
.x6_c00183{left:7.040000pt;}
.x1e_c00183{left:8.793333pt;}
.xe_c00183{left:10.600000pt;}
.x16_c00183{left:12.800000pt;}
.xb_c00183{left:14.440000pt;}
.x26_c00183{left:16.320000pt;}
.x13_c00183{left:17.600000pt;}
.x4_c00183{left:19.680000pt;}
.x10_c00183{left:21.000000pt;}
.x7_c00183{left:22.240000pt;}
.xf_c00183{left:24.520000pt;}
.x22_c00183{left:27.720000pt;}
.xc_c00183{left:29.160000pt;}
.x18_c00183{left:30.560000pt;}
.x11_c00183{left:32.360000pt;}
.x5_c00183{left:34.720000pt;}
.x14_c00183{left:36.160000pt;}
.x9_c00183{left:37.920000pt;}
.x23_c00183{left:38.880000pt;}
.x8_c00183{left:40.640000pt;}
.x25_c00183{left:42.080000pt;}
.x21_c00183{left:44.160000pt;}
.x24_c00183{left:45.146667pt;}
.x20_c00183{left:46.920000pt;}
.xd_c00183{left:48.520000pt;}
.x2_c00183{left:63.706667pt;}
.x1_c00183{left:80.159867pt;}
.x1a_c00183{left:94.920000pt;}
.x27_c00183{left:99.040133pt;}
.x3_c00183{left:213.466667pt;}
.xa_c00183{left:326.586667pt;}
.x12_c00183{left:428.706667pt;}
.x15_c00183{left:532.706667pt;}
.x17_c00183{left:650.013333pt;}
.x19_c00183{left:764.253333pt;}
.x1d_c00183{left:846.533333pt;}
.x1f_c00183{left:902.693333pt;}
}





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

.ir_c00184:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00184{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00184;src:url('chunks/assets/font_52e00fbaa4283bf5de25a4d6.woff2')format("woff");}.ff1_c00184{font-family:ff1_c00184;line-height:1.070312;font-style:normal;font-weight:normal;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_7b20124ccc75f896f51f2ac4.woff2')format("woff");}.ff2_c00184{font-family:ff2_c00184;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00184;src:url('chunks/assets/font_2c661173fbe578d4a1a8299a.woff2')format("woff");}.ff3_c00184{font-family:ff3_c00184;line-height:0.938965;font-style: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);}
.m1_c00184{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1_c00184{vertical-align:-5.760936px;}
.v0_c00184{vertical-align:0.000000px;}
.ls0_c00184{letter-spacing:0.000000px;}
.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:-33.226560px;}
.ws0_c00184{word-spacing:-16.613280px;}
.ws2_c00184{word-spacing:-11.609280px;}
.ws3_c00184{word-spacing:0.000000px;}
._a_c00184{margin-left:-4.909847px;}
._9_c00184{margin-left:-3.510806px;}
._c_c00184{margin-left:-2.316410px;}
._2_c00184{margin-left:-1.126186px;}
._6_c00184{width:1.013819px;}
._d_c00184{width:2.649647px;}
._8_c00184{width:4.107420px;}
._b_c00184{width:5.967555px;}
._e_c00184{width:10.108351px;}
._4_c00184{width:11.195057px;}
._5_c00184{width:12.448205px;}
._7_c00184{width:62.288245px;}
._3_c00184{width:80.517558px;}
._1_c00184{width:322.265549px;}
._f_c00184{width:845.884800px;}
._0_c00184{width:1919.428842px;}
.fc1_c00184{color:rgb(255,255,255);}
.fc0_c00184{color:rgb(0,0,0);}
.fs2_c00184{font-size:41.760000px;}
.fs1_c00184{font-size:59.760000px;}
.fs0_c00184{font-size:66.240000px;}
.y0_c00184{bottom:0.000000px;}
.y12_c00184{bottom:8.100000px;}
.ya_c00184{bottom:10.620000px;}
.yd_c00184{bottom:15.120000px;}
.y10_c00184{bottom:19.305000px;}
.yf_c00184{bottom:36.585000px;}
.y9_c00184{bottom:36.900000px;}
.yc_c00184{bottom:41.400000px;}
.ye_c00184{bottom:53.865000px;}
.yb_c00184{bottom:58.680000px;}
.y8_c00184{bottom:63.180000px;}
.y6_c00184{bottom:83.745000px;}
.y24_c00184{bottom:363.315000px;}
.y23_c00184{bottom:384.375150px;}
.y22_c00184{bottom:405.434850px;}
.y21_c00184{bottom:426.495150px;}
.y20_c00184{bottom:447.375000px;}
.y1f_c00184{bottom:468.434700px;}
.y1e_c00184{bottom:489.495000px;}
.y1d_c00184{bottom:510.375300px;}
.y1c_c00184{bottom:531.434700px;}
.y1b_c00184{bottom:552.495000px;}
.y1a_c00184{bottom:582.375000px;}
.y19_c00184{bottom:639.465000px;}
.y18_c00184{bottom:666.105000px;}
.y17_c00184{bottom:693.825000px;}
.y16_c00184{bottom:721.545000px;}
.y15_c00184{bottom:749.265000px;}
.y14_c00184{bottom:777.165000px;}
.y13_c00184{bottom:804.885000px;}
.y11_c00184{bottom:832.605000px;}
.y5_c00184{bottom:860.325000px;}
.y7_c00184{bottom:953.970000px;}
.y4_c00184{bottom:1070.429700px;}
.y3_c00184{bottom:1091.490000px;}
.y2_c00184{bottom:1155.060000px;}
.y1_c00184{bottom:1185.300000px;}
.h8_c00184{height:27.000000px;}
.h4_c00184{height:43.506914px;}
.h9_c00184{height:48.224531px;}
.h6_c00184{height:51.385430px;}
.h2_c00184{height:56.957344px;}
.ha_c00184{height:56.958544px;}
.h7_c00184{height:92.916150px;}
.h5_c00184{height:93.600000px;}
.h3_c00184{height:187.230000px;}
.h0_c00184{height:1262.880000px;}
.h1_c00184{height:1263.000000px;}
.w8_c00184{width:98.136300px;}
.wa_c00184{width:98.496150px;}
.w6_c00184{width:107.496150px;}
.w9_c00184{width:107.856450px;}
.w5_c00184{width:108.215700px;}
.w7_c00184{width:118.620150px;}
.w3_c00184{width:216.435000px;}
.w4_c00184{width:217.470000px;}
.w2_c00184{width:243.210000px;}
.w0_c00184{width:892.980000px;}
.w1_c00184{width:893.250000px;}
.x0_c00184{left:0.000000px;}
.xd_c00184{left:4.860000px;}
.x13_c00184{left:7.740000px;}
.x11_c00184{left:9.720000px;}
.x10_c00184{left:12.060000px;}
.x1b_c00184{left:23.970000px;}
.x16_c00184{left:27.210000px;}
.x8_c00184{left:28.470000px;}
.xc_c00184{left:30.270000px;}
.x18_c00184{left:31.500000px;}
.x12_c00184{left:33.120000px;}
.xe_c00184{left:36.030000px;}
.x14_c00184{left:38.700000px;}
.xb_c00184{left:41.580000px;}
.x17_c00184{left:45.750000px;}
.x1a_c00184{left:48.780000px;}
.x19_c00184{left:50.940000px;}
.xa_c00184{left:59.940000px;}
.x6_c00184{left:66.450000px;}
.x7_c00184{left:69.870000px;}
.x4_c00184{left:97.914000px;}
.x1_c00184{left:127.655850px;}
.x2_c00184{left:148.896150px;}
.x1c_c00184{left:191.550000px;}
.x3_c00184{left:234.029850px;}
.x5_c00184{left:372.315000px;}
.xf_c00184{left:481.245000px;}
.x9_c00184{left:589.470000px;}
.x15_c00184{left:708.810000px;}
@media print{
.v1_c00184{vertical-align:-5.120832pt;}
.v0_c00184{vertical-align:0.000000pt;}
.ls0_c00184{letter-spacing:0.000000pt;}
.ws1_c00184{word-spacing:-29.534720pt;}
.ws0_c00184{word-spacing:-14.767360pt;}
.ws2_c00184{word-spacing:-10.319360pt;}
.ws3_c00184{word-spacing:0.000000pt;}
._a_c00184{margin-left:-4.364309pt;}
._9_c00184{margin-left:-3.120717pt;}
._c_c00184{margin-left:-2.059031pt;}
._2_c00184{margin-left:-1.001054pt;}
._6_c00184{width:0.901172pt;}
._d_c00184{width:2.355242pt;}
._8_c00184{width:3.651040pt;}
._b_c00184{width:5.304493pt;}
._e_c00184{width:8.985201pt;}
._4_c00184{width:9.951162pt;}
._5_c00184{width:11.065071pt;}
._7_c00184{width:55.367329pt;}
._3_c00184{width:71.571162pt;}
._1_c00184{width:286.458266pt;}
._f_c00184{width:751.897600pt;}
._0_c00184{width:1706.158971pt;}
.fs2_c00184{font-size:37.120000pt;}
.fs1_c00184{font-size:53.120000pt;}
.fs0_c00184{font-size:58.880000pt;}
.y0_c00184{bottom:0.000000pt;}
.y12_c00184{bottom:7.200000pt;}
.ya_c00184{bottom:9.440000pt;}
.yd_c00184{bottom:13.440000pt;}
.y10_c00184{bottom:17.160000pt;}
.yf_c00184{bottom:32.520000pt;}
.y9_c00184{bottom:32.800000pt;}
.yc_c00184{bottom:36.800000pt;}
.ye_c00184{bottom:47.880000pt;}
.yb_c00184{bottom:52.160000pt;}
.y8_c00184{bottom:56.160000pt;}
.y6_c00184{bottom:74.440000pt;}
.y24_c00184{bottom:322.946667pt;}
.y23_c00184{bottom:341.666800pt;}
.y22_c00184{bottom:360.386533pt;}
.y21_c00184{bottom:379.106800pt;}
.y20_c00184{bottom:397.666667pt;}
.y1f_c00184{bottom:416.386400pt;}
.y1e_c00184{bottom:435.106667pt;}
.y1d_c00184{bottom:453.666933pt;}
.y1c_c00184{bottom:472.386400pt;}
.y1b_c00184{bottom:491.106667pt;}
.y1a_c00184{bottom:517.666667pt;}
.y19_c00184{bottom:568.413333pt;}
.y18_c00184{bottom:592.093333pt;}
.y17_c00184{bottom:616.733333pt;}
.y16_c00184{bottom:641.373333pt;}
.y15_c00184{bottom:666.013333pt;}
.y14_c00184{bottom:690.813333pt;}
.y13_c00184{bottom:715.453333pt;}
.y11_c00184{bottom:740.093333pt;}
.y5_c00184{bottom:764.733333pt;}
.y7_c00184{bottom:847.973333pt;}
.y4_c00184{bottom:951.493067pt;}
.y3_c00184{bottom:970.213333pt;}
.y2_c00184{bottom:1026.720000pt;}
.y1_c00184{bottom:1053.600000pt;}
.h8_c00184{height:24.000000pt;}
.h4_c00184{height:38.672813pt;}
.h9_c00184{height:42.866250pt;}
.h6_c00184{height:45.675938pt;}
.h2_c00184{height:50.628750pt;}
.ha_c00184{height:50.629817pt;}
.h7_c00184{height:82.592133pt;}
.h5_c00184{height:83.200000pt;}
.h3_c00184{height:166.426667pt;}
.h0_c00184{height:1122.560000pt;}
.h1_c00184{height:1122.666667pt;}
.w8_c00184{width:87.232267pt;}
.wa_c00184{width:87.552133pt;}
.w6_c00184{width:95.552133pt;}
.w9_c00184{width:95.872400pt;}
.w5_c00184{width:96.191733pt;}
.w7_c00184{width:105.440133pt;}
.w3_c00184{width:192.386667pt;}
.w4_c00184{width:193.306667pt;}
.w2_c00184{width:216.186667pt;}
.w0_c00184{width:793.760000pt;}
.w1_c00184{width:794.000000pt;}
.x0_c00184{left:0.000000pt;}
.xd_c00184{left:4.320000pt;}
.x13_c00184{left:6.880000pt;}
.x11_c00184{left:8.640000pt;}
.x10_c00184{left:10.720000pt;}
.x1b_c00184{left:21.306667pt;}
.x16_c00184{left:24.186667pt;}
.x8_c00184{left:25.306667pt;}
.xc_c00184{left:26.906667pt;}
.x18_c00184{left:28.000000pt;}
.x12_c00184{left:29.440000pt;}
.xe_c00184{left:32.026667pt;}
.x14_c00184{left:34.400000pt;}
.xb_c00184{left:36.960000pt;}
.x17_c00184{left:40.666667pt;}
.x1a_c00184{left:43.360000pt;}
.x19_c00184{left:45.280000pt;}
.xa_c00184{left:53.280000pt;}
.x6_c00184{left:59.066667pt;}
.x7_c00184{left:62.106667pt;}
.x4_c00184{left:87.034667pt;}
.x1_c00184{left:113.471867pt;}
.x2_c00184{left:132.352133pt;}
.x1c_c00184{left:170.266667pt;}
.x3_c00184{left:208.026533pt;}
.x5_c00184{left:330.946667pt;}
.xf_c00184{left:427.773333pt;}
.x9_c00184{left:523.973333pt;}
.x15_c00184{left:630.053333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_82777c67b65fb46fd5c0b3fe.woff2')format("woff");}.ff1_c00185{font-family:ff1_c00185;line-height:1.070312;font-style:normal;font-weight:normal;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_8e4a5ab54032d578d762f9b2.woff2')format("woff");}.ff2_c00185{font-family:ff2_c00185;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00185;src:url('chunks/assets/font_8b0701136755e70ca98120f9.woff2')format("woff");}.ff3_c00185{font-family:ff3_c00185;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00185;src:url('chunks/assets/font_0f1ba9dbefce4231cd885e11.woff2')format("woff");}.ff4_c00185{font-family:ff4_c00185;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00185;src:url('chunks/assets/font_3fb06a12b5b37bce050e0e0d.woff2')format("woff");}.ff5_c00185{font-family:ff5_c00185;line-height:0.811035;font-style: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);}
.m1_c00185{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);}
.v3_c00185{vertical-align:-23.760000px;}
.v4_c00185{vertical-align:-18.000000px;}
.v1_c00185{vertical-align:-5.760936px;}
.v0_c00185{vertical-align:0.000000px;}
.v2_c00185{vertical-align:23.760000px;}
.ls4_c00185{letter-spacing:0.000000px;}
.ls2_c00185{letter-spacing:0.053280px;}
.ls1_c00185{letter-spacing:0.172800px;}
.ls3_c00185{letter-spacing:0.206160px;}
.ls0_c00185{letter-spacing:69.426480px;}
.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:-39.744000px;}
.ws3_c00185{word-spacing:-26.959680px;}
.ws6_c00185{word-spacing:-16.613280px;}
.ws1_c00185{word-spacing:-16.560000px;}
.ws5_c00185{word-spacing:-13.410720px;}
.ws0_c00185{word-spacing:-11.609280px;}
.ws4_c00185{word-spacing:-10.808640px;}
.ws7_c00185{word-spacing:0.000000px;}
._5_c00185{margin-left:-3.378661px;}
._7_c00185{margin-left:-2.257616px;}
._1_c00185{margin-left:-1.126186px;}
._6_c00185{width:1.193908px;}
._8_c00185{width:2.779837px;}
._f_c00185{width:3.975480px;}
._10_c00185{width:5.258114px;}
._d_c00185{width:7.351069px;}
._13_c00185{width:12.061395px;}
._12_c00185{width:13.610868px;}
._4_c00185{width:14.970602px;}
._3_c00185{width:16.657944px;}
._11_c00185{width:19.509710px;}
._a_c00185{width:22.920266px;}
._9_c00185{width:24.508734px;}
._c_c00185{width:25.573658px;}
._b_c00185{width:27.025849px;}
._e_c00185{width:79.252176px;}
._2_c00185{width:80.485100px;}
._0_c00185{width:2260.107786px;}
.fc0_c00185{color:rgb(0,0,0);}
.fs3_c00185{font-size:38.880000px;}
.fs2_c00185{font-size:41.760000px;}
.fs4_c00185{font-size:48.240000px;}
.fs1_c00185{font-size:59.760000px;}
.fs0_c00185{font-size:66.240000px;}
.y0_c00185{bottom:0.000000px;}
.yb_c00185{bottom:12.600000px;}
.yf_c00185{bottom:14.040000px;}
.y13_c00185{bottom:14.220000px;}
.y6_c00185{bottom:14.580000px;}
.y10_c00185{bottom:18.540000px;}
.y8_c00185{bottom:18.720000px;}
.yc_c00185{bottom:21.960000px;}
.ya_c00185{bottom:31.500000px;}
.y2a_c00185{bottom:92.735700px;}
.y29_c00185{bottom:114.335700px;}
.y28_c00185{bottom:136.116150px;}
.y27_c00185{bottom:162.390000px;}
.y26_c00185{bottom:184.350000px;}
.y25_c00185{bottom:252.390450px;}
.y24_c00185{bottom:273.270300px;}
.y23_c00185{bottom:294.330000px;}
.y22_c00185{bottom:324.390000px;}
.y21_c00185{bottom:354.315000px;}
.y20_c00185{bottom:384.375000px;}
.y1f_c00185{bottom:414.435000px;}
.y1e_c00185{bottom:444.315000px;}
.y1d_c00185{bottom:474.375000px;}
.y1c_c00185{bottom:504.435000px;}
.y1b_c00185{bottom:534.315300px;}
.y1a_c00185{bottom:555.375000px;}
.y19_c00185{bottom:585.434850px;}
.y18_c00185{bottom:606.345150px;}
.y17_c00185{bottom:627.404850px;}
.y16_c00185{bottom:648.465150px;}
.y15_c00185{bottom:669.345000px;}
.y14_c00185{bottom:699.405000px;}
.y12_c00185{bottom:726.045000px;}
.y11_c00185{bottom:776.085000px;}
.ye_c00185{bottom:826.305000px;}
.yd_c00185{bottom:876.390000px;}
.y9_c00185{bottom:926.430000px;}
.y7_c00185{bottom:983.130000px;}
.y5_c00185{bottom:1033.350000px;}
.y4_c00185{bottom:1097.429700px;}
.y3_c00185{bottom:1118.490000px;}
.y2_c00185{bottom:1155.060000px;}
.y1_c00185{bottom:1185.300000px;}
.ha_c00185{height:33.431484px;}
.h3_c00185{height:41.220150px;}
.h4_c00185{height:48.224531px;}
.h7_c00185{height:49.319550px;}
.h5_c00185{height:49.320150px;}
.h8_c00185{height:49.355850px;}
.hb_c00185{height:51.385430px;}
.h6_c00185{height:55.979850px;}
.h2_c00185{height:56.957344px;}
.h9_c00185{height:59.667891px;}
.h0_c00185{height:1262.880000px;}
.h1_c00185{height:1263.000000px;}
.w4_c00185{width:189.750000px;}
.w3_c00185{width:190.650000px;}
.w2_c00185{width:296.535000px;}
.w0_c00185{width:892.980000px;}
.w1_c00185{width:893.250000px;}
.x0_c00185{left:0.000000px;}
.xf_c00185{left:9.720150px;}
.x8_c00185{left:26.274000px;}
.xa_c00185{left:33.654000px;}
.xd_c00185{left:39.054000px;}
.x9_c00185{left:63.000000px;}
.xe_c00185{left:69.840000px;}
.x6_c00185{left:76.680000px;}
.xc_c00185{left:81.360000px;}
.x10_c00185{left:85.860000px;}
.xb_c00185{left:123.158850px;}
.x1_c00185{left:127.655850px;}
.x2_c00185{left:148.896150px;}
.x4_c00185{left:158.979000px;}
.x3_c00185{left:234.029850px;}
.x11_c00185{left:364.935000px;}
.x5_c00185{left:425.805000px;}
.x7_c00185{left:617.190000px;}
@media print{
.v3_c00185{vertical-align:-21.120000pt;}
.v4_c00185{vertical-align:-16.000000pt;}
.v1_c00185{vertical-align:-5.120832pt;}
.v0_c00185{vertical-align:0.000000pt;}
.v2_c00185{vertical-align:21.120000pt;}
.ls4_c00185{letter-spacing:0.000000pt;}
.ls2_c00185{letter-spacing:0.047360pt;}
.ls1_c00185{letter-spacing:0.153600pt;}
.ls3_c00185{letter-spacing:0.183253pt;}
.ls0_c00185{letter-spacing:61.712427pt;}
.ws2_c00185{word-spacing:-35.328000pt;}
.ws3_c00185{word-spacing:-23.964160pt;}
.ws6_c00185{word-spacing:-14.767360pt;}
.ws1_c00185{word-spacing:-14.720000pt;}
.ws5_c00185{word-spacing:-11.920640pt;}
.ws0_c00185{word-spacing:-10.319360pt;}
.ws4_c00185{word-spacing:-9.607680pt;}
.ws7_c00185{word-spacing:0.000000pt;}
._5_c00185{margin-left:-3.003254pt;}
._7_c00185{margin-left:-2.006770pt;}
._1_c00185{margin-left:-1.001054pt;}
._6_c00185{width:1.061252pt;}
._8_c00185{width:2.470966pt;}
._f_c00185{width:3.533760pt;}
._10_c00185{width:4.673879pt;}
._d_c00185{width:6.534283pt;}
._13_c00185{width:10.721240pt;}
._12_c00185{width:12.098550pt;}
._4_c00185{width:13.307202pt;}
._3_c00185{width:14.807062pt;}
._11_c00185{width:17.341964pt;}
._a_c00185{width:20.373570pt;}
._9_c00185{width:21.785541pt;}
._c_c00185{width:22.732141pt;}
._b_c00185{width:24.022977pt;}
._e_c00185{width:70.446379pt;}
._2_c00185{width:71.542311pt;}
._0_c00185{width:2008.984699pt;}
.fs3_c00185{font-size:34.560000pt;}
.fs2_c00185{font-size:37.120000pt;}
.fs4_c00185{font-size:42.880000pt;}
.fs1_c00185{font-size:53.120000pt;}
.fs0_c00185{font-size:58.880000pt;}
.y0_c00185{bottom:0.000000pt;}
.yb_c00185{bottom:11.200000pt;}
.yf_c00185{bottom:12.480000pt;}
.y13_c00185{bottom:12.640000pt;}
.y6_c00185{bottom:12.960000pt;}
.y10_c00185{bottom:16.480000pt;}
.y8_c00185{bottom:16.640000pt;}
.yc_c00185{bottom:19.520000pt;}
.ya_c00185{bottom:28.000000pt;}
.y2a_c00185{bottom:82.431733pt;}
.y29_c00185{bottom:101.631733pt;}
.y28_c00185{bottom:120.992133pt;}
.y27_c00185{bottom:144.346667pt;}
.y26_c00185{bottom:163.866667pt;}
.y25_c00185{bottom:224.347067pt;}
.y24_c00185{bottom:242.906933pt;}
.y23_c00185{bottom:261.626667pt;}
.y22_c00185{bottom:288.346667pt;}
.y21_c00185{bottom:314.946667pt;}
.y20_c00185{bottom:341.666667pt;}
.y1f_c00185{bottom:368.386667pt;}
.y1e_c00185{bottom:394.946667pt;}
.y1d_c00185{bottom:421.666667pt;}
.y1c_c00185{bottom:448.386667pt;}
.y1b_c00185{bottom:474.946933pt;}
.y1a_c00185{bottom:493.666667pt;}
.y19_c00185{bottom:520.386533pt;}
.y18_c00185{bottom:538.973467pt;}
.y17_c00185{bottom:557.693200pt;}
.y16_c00185{bottom:576.413467pt;}
.y15_c00185{bottom:594.973333pt;}
.y14_c00185{bottom:621.693333pt;}
.y12_c00185{bottom:645.373333pt;}
.y11_c00185{bottom:689.853333pt;}
.ye_c00185{bottom:734.493333pt;}
.yd_c00185{bottom:779.013333pt;}
.y9_c00185{bottom:823.493333pt;}
.y7_c00185{bottom:873.893333pt;}
.y5_c00185{bottom:918.533333pt;}
.y4_c00185{bottom:975.493067pt;}
.y3_c00185{bottom:994.213333pt;}
.y2_c00185{bottom:1026.720000pt;}
.y1_c00185{bottom:1053.600000pt;}
.ha_c00185{height:29.716875pt;}
.h3_c00185{height:36.640133pt;}
.h4_c00185{height:42.866250pt;}
.h7_c00185{height:43.839600pt;}
.h5_c00185{height:43.840133pt;}
.h8_c00185{height:43.871867pt;}
.hb_c00185{height:45.675938pt;}
.h6_c00185{height:49.759867pt;}
.h2_c00185{height:50.628750pt;}
.h9_c00185{height:53.038125pt;}
.h0_c00185{height:1122.560000pt;}
.h1_c00185{height:1122.666667pt;}
.w4_c00185{width:168.666667pt;}
.w3_c00185{width:169.466667pt;}
.w2_c00185{width:263.586667pt;}
.w0_c00185{width:793.760000pt;}
.w1_c00185{width:794.000000pt;}
.x0_c00185{left:0.000000pt;}
.xf_c00185{left:8.640133pt;}
.x8_c00185{left:23.354667pt;}
.xa_c00185{left:29.914667pt;}
.xd_c00185{left:34.714667pt;}
.x9_c00185{left:56.000000pt;}
.xe_c00185{left:62.080000pt;}
.x6_c00185{left:68.160000pt;}
.xc_c00185{left:72.320000pt;}
.x10_c00185{left:76.320000pt;}
.xb_c00185{left:109.474533pt;}
.x1_c00185{left:113.471867pt;}
.x2_c00185{left:132.352133pt;}
.x4_c00185{left:141.314667pt;}
.x3_c00185{left:208.026533pt;}
.x11_c00185{left:324.386667pt;}
.x5_c00185{left:378.493333pt;}
.x7_c00185{left:548.613333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1d671de9c99c52e7b1e022c3.woff2')format("woff");}.ff1_c00186{font-family:ff1_c00186;line-height:1.070312;font-style:normal;font-weight:normal;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_8e4a5ab54032d578d762f9b2.woff2')format("woff");}.ff2_c00186{font-family:ff2_c00186;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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);}
.v1_c00186{vertical-align:-5.760936px;}
.v2_c00186{vertical-align:-2.880468px;}
.v0_c00186{vertical-align:0.000000px;}
.ls0_c00186{letter-spacing:0.000000px;}
.sc__c00186{text-shadow:none;}
.sc0_c00186{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00186{-webkit-text-stroke:0px transparent;}
.sc0_c00186{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00186{word-spacing:-16.613280px;}
.ws3_c00186{word-spacing:-15.012000px;}
.ws0_c00186{word-spacing:-11.609280px;}
.ws2_c00186{word-spacing:-10.808640px;}
.ws4_c00186{word-spacing:0.000000px;}
._f_c00186{margin-left:-6.853441px;}
._e_c00186{margin-left:-5.508457px;}
._d_c00186{margin-left:-3.862854px;}
._a_c00186{margin-left:-2.783080px;}
._1_c00186{margin-left:-1.126186px;}
._6_c00186{width:1.808148px;}
._9_c00186{width:3.712768px;}
._b_c00186{width:4.963301px;}
._3_c00186{width:6.160779px;}
._12_c00186{width:7.753413px;}
._11_c00186{width:10.467260px;}
._10_c00186{width:12.214559px;}
._c_c00186{width:13.312946px;}
._8_c00186{width:15.830800px;}
._7_c00186{width:19.542587px;}
._4_c00186{width:37.625224px;}
._5_c00186{width:38.816772px;}
._2_c00186{width:80.517558px;}
._0_c00186{width:2260.107786px;}
.fc0_c00186{color:rgb(0,0,0);}
.fs3_c00186{font-size:38.880000px;}
.fs1_c00186{font-size:41.760000px;}
.fs4_c00186{font-size:54.000000px;}
.fs2_c00186{font-size:59.760000px;}
.fs0_c00186{font-size:66.240000px;}
.y0_c00186{bottom:0.000000px;}
.yf_c00186{bottom:4.680000px;}
.y14_c00186{bottom:4.680150px;}
.y9_c00186{bottom:12.420000px;}
.y18_c00186{bottom:14.040000px;}
.y16_c00186{bottom:14.220000px;}
.y6_c00186{bottom:14.580000px;}
.y11_c00186{bottom:18.540000px;}
.yc_c00186{bottom:18.720000px;}
.ya_c00186{bottom:21.960000px;}
.ye_c00186{bottom:23.580000px;}
.y13_c00186{bottom:23.760000px;}
.y8_c00186{bottom:31.320000px;}
.y2d_c00186{bottom:202.170150px;}
.y2c_c00186{bottom:223.229850px;}
.y2b_c00186{bottom:244.290150px;}
.y2a_c00186{bottom:265.170000px;}
.y29_c00186{bottom:286.229700px;}
.y28_c00186{bottom:307.290000px;}
.y27_c00186{bottom:337.215150px;}
.y26_c00186{bottom:358.274850px;}
.y25_c00186{bottom:379.334550px;}
.y24_c00186{bottom:400.215000px;}
.y23_c00186{bottom:430.275450px;}
.y22_c00186{bottom:451.335150px;}
.y21_c00186{bottom:472.215600px;}
.y20_c00186{bottom:493.275300px;}
.y1f_c00186{bottom:514.335000px;}
.y1e_c00186{bottom:535.215450px;}
.y1d_c00186{bottom:556.275150px;}
.y1c_c00186{bottom:577.334850px;}
.y1b_c00186{bottom:598.215300px;}
.y1a_c00186{bottom:619.305000px;}
.y19_c00186{bottom:649.365000px;}
.y17_c00186{bottom:676.005000px;}
.y15_c00186{bottom:726.045000px;}
.y12_c00186{bottom:776.085000px;}
.y10_c00186{bottom:826.305000px;}
.yd_c00186{bottom:876.390000px;}
.yb_c00186{bottom:926.430000px;}
.y7_c00186{bottom:976.650000px;}
.y5_c00186{bottom:1033.350000px;}
.y4_c00186{bottom:1097.429700px;}
.y3_c00186{bottom:1118.490000px;}
.y2_c00186{bottom:1155.060000px;}
.y1_c00186{bottom:1185.300000px;}
.h3_c00186{height:41.220150px;}
.h4_c00186{height:48.224531px;}
.h7_c00186{height:49.319550px;}
.h6_c00186{height:49.320150px;}
.h8_c00186{height:49.355850px;}
.h5_c00186{height:55.800000px;}
.h2_c00186{height:56.957344px;}
.h0_c00186{height:1262.880000px;}
.h1_c00186{height:1263.000000px;}
.w3_c00186{width:137.736300px;}
.w4_c00186{width:247.170000px;}
.w2_c00186{width:292.035000px;}
.w0_c00186{width:892.980000px;}
.w1_c00186{width:893.250000px;}
.x0_c00186{left:0.000000px;}
.xf_c00186{left:16.200000px;}
.x9_c00186{left:30.954000px;}
.x14_c00186{left:34.914000px;}
.x11_c00186{left:36.540000px;}
.xd_c00186{left:41.754000px;}
.x6_c00186{left:50.220000px;}
.xb_c00186{left:59.400000px;}
.x13_c00186{left:60.654000px;}
.x10_c00186{left:73.074000px;}
.xe_c00186{left:86.760000px;}
.x12_c00186{left:91.440000px;}
.x8_c00186{left:105.120000px;}
.xa_c00186{left:109.299150px;}
.xc_c00186{left:114.300000px;}
.x1_c00186{left:127.655850px;}
.x2_c00186{left:148.896150px;}
.x4_c00186{left:156.639000px;}
.x3_c00186{left:234.029460px;}
.x5_c00186{left:421.305000px;}
.x7_c00186{left:559.770000px;}
@media print{
.v1_c00186{vertical-align:-5.120832pt;}
.v2_c00186{vertical-align:-2.560416pt;}
.v0_c00186{vertical-align:0.000000pt;}
.ls0_c00186{letter-spacing:0.000000pt;}
.ws1_c00186{word-spacing:-14.767360pt;}
.ws3_c00186{word-spacing:-13.344000pt;}
.ws0_c00186{word-spacing:-10.319360pt;}
.ws2_c00186{word-spacing:-9.607680pt;}
.ws4_c00186{word-spacing:0.000000pt;}
._f_c00186{margin-left:-6.091947pt;}
._e_c00186{margin-left:-4.896406pt;}
._d_c00186{margin-left:-3.433648pt;}
._a_c00186{margin-left:-2.473849pt;}
._1_c00186{margin-left:-1.001054pt;}
._6_c00186{width:1.607243pt;}
._9_c00186{width:3.300238pt;}
._b_c00186{width:4.411823pt;}
._3_c00186{width:5.476248pt;}
._12_c00186{width:6.891922pt;}
._11_c00186{width:9.304231pt;}
._10_c00186{width:10.857385pt;}
._c_c00186{width:11.833729pt;}
._8_c00186{width:14.071822pt;}
._7_c00186{width:17.371189pt;}
._4_c00186{width:33.444643pt;}
._5_c00186{width:34.503798pt;}
._2_c00186{width:71.571162pt;}
._0_c00186{width:2008.984699pt;}
.fs3_c00186{font-size:34.560000pt;}
.fs1_c00186{font-size:37.120000pt;}
.fs4_c00186{font-size:48.000000pt;}
.fs2_c00186{font-size:53.120000pt;}
.fs0_c00186{font-size:58.880000pt;}
.y0_c00186{bottom:0.000000pt;}
.yf_c00186{bottom:4.160000pt;}
.y14_c00186{bottom:4.160133pt;}
.y9_c00186{bottom:11.040000pt;}
.y18_c00186{bottom:12.480000pt;}
.y16_c00186{bottom:12.640000pt;}
.y6_c00186{bottom:12.960000pt;}
.y11_c00186{bottom:16.480000pt;}
.yc_c00186{bottom:16.640000pt;}
.ya_c00186{bottom:19.520000pt;}
.ye_c00186{bottom:20.960000pt;}
.y13_c00186{bottom:21.120000pt;}
.y8_c00186{bottom:27.840000pt;}
.y2d_c00186{bottom:179.706800pt;}
.y2c_c00186{bottom:198.426533pt;}
.y2b_c00186{bottom:217.146800pt;}
.y2a_c00186{bottom:235.706667pt;}
.y29_c00186{bottom:254.426400pt;}
.y28_c00186{bottom:273.146667pt;}
.y27_c00186{bottom:299.746800pt;}
.y26_c00186{bottom:318.466533pt;}
.y25_c00186{bottom:337.186267pt;}
.y24_c00186{bottom:355.746667pt;}
.y23_c00186{bottom:382.467067pt;}
.y22_c00186{bottom:401.186800pt;}
.y21_c00186{bottom:419.747200pt;}
.y20_c00186{bottom:438.466933pt;}
.y1f_c00186{bottom:457.186667pt;}
.y1e_c00186{bottom:475.747067pt;}
.y1d_c00186{bottom:494.466800pt;}
.y1c_c00186{bottom:513.186533pt;}
.y1b_c00186{bottom:531.746933pt;}
.y1a_c00186{bottom:550.493333pt;}
.y19_c00186{bottom:577.213333pt;}
.y17_c00186{bottom:600.893333pt;}
.y15_c00186{bottom:645.373333pt;}
.y12_c00186{bottom:689.853333pt;}
.y10_c00186{bottom:734.493333pt;}
.yd_c00186{bottom:779.013333pt;}
.yb_c00186{bottom:823.493333pt;}
.y7_c00186{bottom:868.133333pt;}
.y5_c00186{bottom:918.533333pt;}
.y4_c00186{bottom:975.493067pt;}
.y3_c00186{bottom:994.213333pt;}
.y2_c00186{bottom:1026.720000pt;}
.y1_c00186{bottom:1053.600000pt;}
.h3_c00186{height:36.640133pt;}
.h4_c00186{height:42.866250pt;}
.h7_c00186{height:43.839600pt;}
.h6_c00186{height:43.840133pt;}
.h8_c00186{height:43.871867pt;}
.h5_c00186{height:49.600000pt;}
.h2_c00186{height:50.628750pt;}
.h0_c00186{height:1122.560000pt;}
.h1_c00186{height:1122.666667pt;}
.w3_c00186{width:122.432267pt;}
.w4_c00186{width:219.706667pt;}
.w2_c00186{width:259.586667pt;}
.w0_c00186{width:793.760000pt;}
.w1_c00186{width:794.000000pt;}
.x0_c00186{left:0.000000pt;}
.xf_c00186{left:14.400000pt;}
.x9_c00186{left:27.514667pt;}
.x14_c00186{left:31.034667pt;}
.x11_c00186{left:32.480000pt;}
.xd_c00186{left:37.114667pt;}
.x6_c00186{left:44.640000pt;}
.xb_c00186{left:52.800000pt;}
.x13_c00186{left:53.914667pt;}
.x10_c00186{left:64.954667pt;}
.xe_c00186{left:77.120000pt;}
.x12_c00186{left:81.280000pt;}
.x8_c00186{left:93.440000pt;}
.xa_c00186{left:97.154800pt;}
.xc_c00186{left:101.600000pt;}
.x1_c00186{left:113.471867pt;}
.x2_c00186{left:132.352133pt;}
.x4_c00186{left:139.234667pt;}
.x3_c00186{left:208.026187pt;}
.x5_c00186{left:374.493333pt;}
.x7_c00186{left:497.573333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_741f9ef107d9f706e0c6580d.woff2')format("woff");}.ff1_c00187{font-family:ff1_c00187;line-height:1.070312;font-style:normal;font-weight:normal;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_6b0ad40549f919863c4ec34e.woff2')format("woff");}.ff2_c00187{font-family:ff2_c00187;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00187;src:url('chunks/assets/font_1489b7ed97139f6ed52c92df.woff2')format("woff");}.ff3_c00187{font-family:ff3_c00187;line-height:0.938965;font-style: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);}
.m1_c00187{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_c00187{vertical-align:0.000000px;}
.ls1_c00187{letter-spacing:0.000000px;}
.ls0_c00187{letter-spacing:0.304320px;}
.sc__c00187{text-shadow:none;}
.sc0_c00187{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00187{-webkit-text-stroke:0px transparent;}
.sc0_c00187{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00187{word-spacing:-36.829440px;}
.ws0_c00187{word-spacing:-18.414720px;}
.ws1_c00187{word-spacing:-15.012000px;}
.ws3_c00187{word-spacing:0.000000px;}
._f_c00187{margin-left:-3.576843px;}
._e_c00187{margin-left:-2.451079px;}
._0_c00187{margin-left:-1.060877px;}
._11_c00187{width:1.062646px;}
._4_c00187{width:2.104348px;}
._3_c00187{width:3.262974px;}
._a_c00187{width:5.232274px;}
._10_c00187{width:6.435052px;}
._12_c00187{width:7.492746px;}
._8_c00187{width:8.499403px;}
._7_c00187{width:9.550856px;}
._13_c00187{width:10.587604px;}
._d_c00187{width:11.925649px;}
._c_c00187{width:13.048723px;}
._b_c00187{width:19.673231px;}
._6_c00187{width:30.540579px;}
._5_c00187{width:31.820977px;}
._14_c00187{width:32.892666px;}
._16_c00187{width:34.755138px;}
._15_c00187{width:35.837407px;}
._9_c00187{width:62.288245px;}
._2_c00187{width:187.479128px;}
._1_c00187{width:2272.296567px;}
.fc1_c00187{color:rgb(255,255,255);}
.fc0_c00187{color:rgb(0,0,0);}
.fs2_c00187{font-size:54.000000px;}
.fs0_c00187{font-size:66.240000px;}
.fs1_c00187{font-size:84.240000px;}
.y0_c00187{bottom:0.000000px;}
.y2f_c00187{bottom:95.256300px;}
.y2e_c00187{bottom:116.316600px;}
.y2d_c00187{bottom:137.376300px;}
.y2c_c00187{bottom:158.250300px;}
.y2b_c00187{bottom:179.310000px;}
.y2a_c00187{bottom:200.370300px;}
.y29_c00187{bottom:221.250150px;}
.y28_c00187{bottom:242.309850px;}
.y27_c00187{bottom:263.370150px;}
.y26_c00187{bottom:284.250000px;}
.y25_c00187{bottom:305.309700px;}
.y24_c00187{bottom:326.370000px;}
.y23_c00187{bottom:347.295000px;}
.y22_c00187{bottom:377.356200px;}
.y21_c00187{bottom:398.416500px;}
.y20_c00187{bottom:419.296350px;}
.y1f_c00187{bottom:440.356050px;}
.y1e_c00187{bottom:461.416350px;}
.y1d_c00187{bottom:482.296200px;}
.y1c_c00187{bottom:503.355900px;}
.y1b_c00187{bottom:524.415600px;}
.y1a_c00187{bottom:545.295450px;}
.y19_c00187{bottom:566.355150px;}
.y18_c00187{bottom:587.415450px;}
.y17_c00187{bottom:608.325150px;}
.y16_c00187{bottom:629.384850px;}
.y15_c00187{bottom:650.445150px;}
.y14_c00187{bottom:671.325000px;}
.y13_c00187{bottom:692.384700px;}
.y12_c00187{bottom:713.445000px;}
.y11_c00187{bottom:743.325000px;}
.y10_c00187{bottom:764.384700px;}
.yf_c00187{bottom:785.445000px;}
.ye_c00187{bottom:815.325000px;}
.yd_c00187{bottom:845.385300px;}
.yc_c00187{bottom:866.445000px;}
.yb_c00187{bottom:887.370000px;}
.ya_c00187{bottom:908.429700px;}
.y9_c00187{bottom:929.490000px;}
.y8_c00187{bottom:959.370000px;}
.y7_c00187{bottom:1016.430150px;}
.y6_c00187{bottom:1037.490450px;}
.y5_c00187{bottom:1058.370300px;}
.y4_c00187{bottom:1079.430000px;}
.y3_c00187{bottom:1109.490000px;}
.y2_c00187{bottom:1155.060000px;}
.y1_c00187{bottom:1185.300000px;}
.h4_c00187{height:48.224531px;}
.h2_c00187{height:56.957344px;}
.h3_c00187{height:61.329023px;}
.h0_c00187{height:1262.880000px;}
.h1_c00187{height:1263.000000px;}
.w0_c00187{width:892.980000px;}
.w1_c00187{width:893.250000px;}
.x0_c00187{left:0.000000px;}
.x1_c00187{left:127.655850px;}
.x2_c00187{left:148.896150px;}
@media print{
.v0_c00187{vertical-align:0.000000pt;}
.ls1_c00187{letter-spacing:0.000000pt;}
.ls0_c00187{letter-spacing:0.270507pt;}
.ws2_c00187{word-spacing:-32.737280pt;}
.ws0_c00187{word-spacing:-16.368640pt;}
.ws1_c00187{word-spacing:-13.344000pt;}
.ws3_c00187{word-spacing:0.000000pt;}
._f_c00187{margin-left:-3.179416pt;}
._e_c00187{margin-left:-2.178737pt;}
._0_c00187{margin-left:-0.943001pt;}
._11_c00187{width:0.944574pt;}
._4_c00187{width:1.870532pt;}
._3_c00187{width:2.900422pt;}
._a_c00187{width:4.650910pt;}
._10_c00187{width:5.720047pt;}
._12_c00187{width:6.660219pt;}
._8_c00187{width:7.555025pt;}
._7_c00187{width:8.489650pt;}
._13_c00187{width:9.411203pt;}
._d_c00187{width:10.600577pt;}
._c_c00187{width:11.598865pt;}
._b_c00187{width:17.487316pt;}
._6_c00187{width:27.147181pt;}
._5_c00187{width:28.285313pt;}
._14_c00187{width:29.237926pt;}
._16_c00187{width:30.893456pt;}
._15_c00187{width:31.855473pt;}
._9_c00187{width:55.367329pt;}
._2_c00187{width:166.648114pt;}
._1_c00187{width:2019.819170pt;}
.fs2_c00187{font-size:48.000000pt;}
.fs0_c00187{font-size:58.880000pt;}
.fs1_c00187{font-size:74.880000pt;}
.y0_c00187{bottom:0.000000pt;}
.y2f_c00187{bottom:84.672267pt;}
.y2e_c00187{bottom:103.392533pt;}
.y2d_c00187{bottom:122.112267pt;}
.y2c_c00187{bottom:140.666933pt;}
.y2b_c00187{bottom:159.386667pt;}
.y2a_c00187{bottom:178.106933pt;}
.y29_c00187{bottom:196.666800pt;}
.y28_c00187{bottom:215.386533pt;}
.y27_c00187{bottom:234.106800pt;}
.y26_c00187{bottom:252.666667pt;}
.y25_c00187{bottom:271.386400pt;}
.y24_c00187{bottom:290.106667pt;}
.y23_c00187{bottom:308.706667pt;}
.y22_c00187{bottom:335.427733pt;}
.y21_c00187{bottom:354.148000pt;}
.y20_c00187{bottom:372.707867pt;}
.y1f_c00187{bottom:391.427600pt;}
.y1e_c00187{bottom:410.147867pt;}
.y1d_c00187{bottom:428.707733pt;}
.y1c_c00187{bottom:447.427467pt;}
.y1b_c00187{bottom:466.147200pt;}
.y1a_c00187{bottom:484.707067pt;}
.y19_c00187{bottom:503.426800pt;}
.y18_c00187{bottom:522.147067pt;}
.y17_c00187{bottom:540.733467pt;}
.y16_c00187{bottom:559.453200pt;}
.y15_c00187{bottom:578.173467pt;}
.y14_c00187{bottom:596.733333pt;}
.y13_c00187{bottom:615.453067pt;}
.y12_c00187{bottom:634.173333pt;}
.y11_c00187{bottom:660.733333pt;}
.y10_c00187{bottom:679.453067pt;}
.yf_c00187{bottom:698.173333pt;}
.ye_c00187{bottom:724.733333pt;}
.yd_c00187{bottom:751.453600pt;}
.yc_c00187{bottom:770.173333pt;}
.yb_c00187{bottom:788.773333pt;}
.ya_c00187{bottom:807.493067pt;}
.y9_c00187{bottom:826.213333pt;}
.y8_c00187{bottom:852.773333pt;}
.y7_c00187{bottom:903.493467pt;}
.y6_c00187{bottom:922.213733pt;}
.y5_c00187{bottom:940.773600pt;}
.y4_c00187{bottom:959.493333pt;}
.y3_c00187{bottom:986.213333pt;}
.y2_c00187{bottom:1026.720000pt;}
.y1_c00187{bottom:1053.600000pt;}
.h4_c00187{height:42.866250pt;}
.h2_c00187{height:50.628750pt;}
.h3_c00187{height:54.514688pt;}
.h0_c00187{height:1122.560000pt;}
.h1_c00187{height:1122.666667pt;}
.w0_c00187{width:793.760000pt;}
.w1_c00187{width:794.000000pt;}
.x0_c00187{left:0.000000pt;}
.x1_c00187{left:113.471867pt;}
.x2_c00187{left:132.352133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b3bb4d7b0c4049da4fc95445.woff2')format("woff");}.ff1_c00188{font-family:ff1_c00188;line-height:1.070312;font-style:normal;font-weight:normal;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_a5fdd555a18dcd47c9cdb28a.woff2')format("woff");}.ff2_c00188{font-family:ff2_c00188;line-height:0.938965;font-style: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);}
.m1_c00188{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_c00188{vertical-align:0.000000px;}
.ls1_c00188{letter-spacing:0.000000px;}
.ls0_c00188{letter-spacing:0.107520px;}
.sc__c00188{text-shadow:none;}
.sc0_c00188{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00188{-webkit-text-stroke:0px transparent;}
.sc0_c00188{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00188{word-spacing:-18.414720px;}
.ws1_c00188{word-spacing:-15.012000px;}
.ws2_c00188{word-spacing:0.000000px;}
._1a_c00188{margin-left:-5.606911px;}
._8_c00188{margin-left:-4.219906px;}
._6_c00188{margin-left:-2.669517px;}
._0_c00188{margin-left:-1.060877px;}
._4_c00188{width:1.175054px;}
._19_c00188{width:3.110483px;}
._18_c00188{width:4.241821px;}
._3_c00188{width:5.266409px;}
._a_c00188{width:6.426075px;}
._b_c00188{width:7.787353px;}
._7_c00188{width:9.604744px;}
._c_c00188{width:10.797744px;}
._d_c00188{width:11.894552px;}
._14_c00188{width:13.106357px;}
._9_c00188{width:14.308075px;}
._16_c00188{width:15.371311px;}
._5_c00188{width:16.558751px;}
._2_c00188{width:19.498057px;}
._11_c00188{width:20.528509px;}
._15_c00188{width:21.529608px;}
._10_c00188{width:25.303844px;}
._1b_c00188{width:26.428721px;}
._12_c00188{width:27.555176px;}
._13_c00188{width:29.144489px;}
._e_c00188{width:36.165545px;}
._f_c00188{width:38.012799px;}
._17_c00188{width:39.702414px;}
._1_c00188{width:2272.296567px;}
.fc0_c00188{color:rgb(0,0,0);}
.fs1_c00188{font-size:54.000000px;}
.fs0_c00188{font-size:66.240000px;}
.y0_c00188{bottom:0.000000px;}
.y30_c00188{bottom:89.316300px;}
.y2f_c00188{bottom:110.376000px;}
.y2e_c00188{bottom:140.256300px;}
.y2d_c00188{bottom:161.310150px;}
.y2c_c00188{bottom:182.370450px;}
.y2b_c00188{bottom:203.250300px;}
.y2a_c00188{bottom:224.310000px;}
.y29_c00188{bottom:245.370300px;}
.y28_c00188{bottom:266.250150px;}
.y27_c00188{bottom:287.309850px;}
.y26_c00188{bottom:308.370150px;}
.y25_c00188{bottom:329.250000px;}
.y24_c00188{bottom:359.355000px;}
.y23_c00188{bottom:380.415300px;}
.y22_c00188{bottom:401.295150px;}
.y21_c00188{bottom:422.354850px;}
.y20_c00188{bottom:443.415150px;}
.y1f_c00188{bottom:464.295000px;}
.y1e_c00188{bottom:494.354850px;}
.y1d_c00188{bottom:515.415150px;}
.y1c_c00188{bottom:536.295000px;}
.y1b_c00188{bottom:566.355150px;}
.y1a_c00188{bottom:587.415450px;}
.y19_c00188{bottom:608.325150px;}
.y18_c00188{bottom:629.384850px;}
.y17_c00188{bottom:650.445150px;}
.y16_c00188{bottom:671.325000px;}
.y15_c00188{bottom:692.384700px;}
.y14_c00188{bottom:713.445300px;}
.y13_c00188{bottom:734.325150px;}
.y12_c00188{bottom:755.384850px;}
.y11_c00188{bottom:776.445150px;}
.y10_c00188{bottom:797.325000px;}
.yf_c00188{bottom:827.385750px;}
.ye_c00188{bottom:848.445450px;}
.yd_c00188{bottom:869.325300px;}
.yc_c00188{bottom:890.430150px;}
.yb_c00188{bottom:911.490450px;}
.ya_c00188{bottom:932.370300px;}
.y9_c00188{bottom:953.430000px;}
.y8_c00188{bottom:983.490300px;}
.y7_c00188{bottom:1004.370150px;}
.y6_c00188{bottom:1025.429850px;}
.y5_c00188{bottom:1046.490150px;}
.y4_c00188{bottom:1067.370000px;}
.y3_c00188{bottom:1097.429700px;}
.y2_c00188{bottom:1118.490000px;}
.y1_c00188{bottom:1185.300000px;}
.h2_c00188{height:56.957344px;}
.h0_c00188{height:1262.880000px;}
.h1_c00188{height:1263.000000px;}
.w0_c00188{width:892.980000px;}
.w1_c00188{width:893.250000px;}
.x0_c00188{left:0.000000px;}
.x1_c00188{left:127.655850px;}
.x2_c00188{left:148.888050px;}
@media print{
.v0_c00188{vertical-align:0.000000pt;}
.ls1_c00188{letter-spacing:0.000000pt;}
.ls0_c00188{letter-spacing:0.095573pt;}
.ws0_c00188{word-spacing:-16.368640pt;}
.ws1_c00188{word-spacing:-13.344000pt;}
.ws2_c00188{word-spacing:0.000000pt;}
._1a_c00188{margin-left:-4.983921pt;}
._8_c00188{margin-left:-3.751028pt;}
._6_c00188{margin-left:-2.372904pt;}
._0_c00188{margin-left:-0.943001pt;}
._4_c00188{width:1.044492pt;}
._19_c00188{width:2.764874pt;}
._18_c00188{width:3.770507pt;}
._3_c00188{width:4.681253pt;}
._a_c00188{width:5.712067pt;}
._b_c00188{width:6.922092pt;}
._7_c00188{width:8.537551pt;}
._c_c00188{width:9.597995pt;}
._d_c00188{width:10.572935pt;}
._14_c00188{width:11.650095pt;}
._9_c00188{width:12.718289pt;}
._16_c00188{width:13.663388pt;}
._5_c00188{width:14.718890pt;}
._2_c00188{width:17.331607pt;}
._11_c00188{width:18.247564pt;}
._15_c00188{width:19.137430pt;}
._10_c00188{width:22.492305pt;}
._1b_c00188{width:23.492197pt;}
._12_c00188{width:24.493490pt;}
._13_c00188{width:25.906213pt;}
._e_c00188{width:32.147151pt;}
._f_c00188{width:33.789155pt;}
._17_c00188{width:35.291035pt;}
._1_c00188{width:2019.819170pt;}
.fs1_c00188{font-size:48.000000pt;}
.fs0_c00188{font-size:58.880000pt;}
.y0_c00188{bottom:0.000000pt;}
.y30_c00188{bottom:79.392267pt;}
.y2f_c00188{bottom:98.112000pt;}
.y2e_c00188{bottom:124.672267pt;}
.y2d_c00188{bottom:143.386800pt;}
.y2c_c00188{bottom:162.107067pt;}
.y2b_c00188{bottom:180.666933pt;}
.y2a_c00188{bottom:199.386667pt;}
.y29_c00188{bottom:218.106933pt;}
.y28_c00188{bottom:236.666800pt;}
.y27_c00188{bottom:255.386533pt;}
.y26_c00188{bottom:274.106800pt;}
.y25_c00188{bottom:292.666667pt;}
.y24_c00188{bottom:319.426667pt;}
.y23_c00188{bottom:338.146933pt;}
.y22_c00188{bottom:356.706800pt;}
.y21_c00188{bottom:375.426533pt;}
.y20_c00188{bottom:394.146800pt;}
.y1f_c00188{bottom:412.706667pt;}
.y1e_c00188{bottom:439.426533pt;}
.y1d_c00188{bottom:458.146800pt;}
.y1c_c00188{bottom:476.706667pt;}
.y1b_c00188{bottom:503.426800pt;}
.y1a_c00188{bottom:522.147067pt;}
.y19_c00188{bottom:540.733467pt;}
.y18_c00188{bottom:559.453200pt;}
.y17_c00188{bottom:578.173467pt;}
.y16_c00188{bottom:596.733333pt;}
.y15_c00188{bottom:615.453067pt;}
.y14_c00188{bottom:634.173600pt;}
.y13_c00188{bottom:652.733467pt;}
.y12_c00188{bottom:671.453200pt;}
.y11_c00188{bottom:690.173467pt;}
.y10_c00188{bottom:708.733333pt;}
.yf_c00188{bottom:735.454000pt;}
.ye_c00188{bottom:754.173733pt;}
.yd_c00188{bottom:772.733600pt;}
.yc_c00188{bottom:791.493467pt;}
.yb_c00188{bottom:810.213733pt;}
.ya_c00188{bottom:828.773600pt;}
.y9_c00188{bottom:847.493333pt;}
.y8_c00188{bottom:874.213600pt;}
.y7_c00188{bottom:892.773467pt;}
.y6_c00188{bottom:911.493200pt;}
.y5_c00188{bottom:930.213467pt;}
.y4_c00188{bottom:948.773333pt;}
.y3_c00188{bottom:975.493067pt;}
.y2_c00188{bottom:994.213333pt;}
.y1_c00188{bottom:1053.600000pt;}
.h2_c00188{height:50.628750pt;}
.h0_c00188{height:1122.560000pt;}
.h1_c00188{height:1122.666667pt;}
.w0_c00188{width:793.760000pt;}
.w1_c00188{width:794.000000pt;}
.x0_c00188{left:0.000000pt;}
.x1_c00188{left:113.471867pt;}
.x2_c00188{left:132.344933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2f611afbda7243d664b60c12.woff2')format("woff");}.ff1_c00189{font-family:ff1_c00189;line-height:1.070312;font-style:normal;font-weight:normal;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_ebe0fbcf5c3267c399ee0b55.woff2')format("woff");}.ff2_c00189{font-family:ff2_c00189;line-height:0.938965;font-style: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);}
.m1_c00189{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1_c00189{vertical-align:-5.760936px;}
.v0_c00189{vertical-align:0.000000px;}
.ls2_c00189{letter-spacing:0.000000px;}
.ls1_c00189{letter-spacing:3.707520px;}
.ls0_c00189{letter-spacing:4.427040px;}
.sc__c00189{text-shadow:none;}
.sc0_c00189{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00189{-webkit-text-stroke:0px transparent;}
.sc0_c00189{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00189{word-spacing:-18.414720px;}
.ws1_c00189{word-spacing:-15.012000px;}
.ws2_c00189{word-spacing:-11.609280px;}
.ws3_c00189{word-spacing:0.000000px;}
._f_c00189{margin-left:-4.602078px;}
._3_c00189{margin-left:-3.014427px;}
._0_c00189{margin-left:-1.060877px;}
._4_c00189{width:1.159520px;}
._7_c00189{width:3.152506px;}
._e_c00189{width:4.422942px;}
._10_c00189{width:5.665293px;}
._11_c00189{width:6.778421px;}
._b_c00189{width:8.079931px;}
._c_c00189{width:9.459261px;}
._8_c00189{width:11.326142px;}
._9_c00189{width:12.583459px;}
._a_c00189{width:13.587735px;}
._13_c00189{width:14.764565px;}
._12_c00189{width:15.975939px;}
._2_c00189{width:20.799360px;}
._6_c00189{width:21.991879px;}
._d_c00189{width:23.073390px;}
._5_c00189{width:26.827574px;}
._1_c00189{width:2272.296567px;}
.fc0_c00189{color:rgb(0,0,0);}
.fs2_c00189{font-size:41.760000px;}
.fs1_c00189{font-size:54.000000px;}
.fs0_c00189{font-size:66.240000px;}
.y0_c00189{bottom:0.000000px;}
.y2f_c00189{bottom:101.376000px;}
.y2e_c00189{bottom:122.255850px;}
.y2d_c00189{bottom:143.316150px;}
.y2c_c00189{bottom:164.370000px;}
.y2b_c00189{bottom:194.250150px;}
.y2a_c00189{bottom:215.309850px;}
.y29_c00189{bottom:236.370150px;}
.y28_c00189{bottom:257.250000px;}
.y27_c00189{bottom:278.309700px;}
.y26_c00189{bottom:299.370000px;}
.y25_c00189{bottom:320.249850px;}
.y24_c00189{bottom:341.354700px;}
.y23_c00189{bottom:362.415000px;}
.y22_c00189{bottom:392.295450px;}
.y21_c00189{bottom:413.355150px;}
.y20_c00189{bottom:434.415450px;}
.y1f_c00189{bottom:455.295300px;}
.y1e_c00189{bottom:476.355000px;}
.y1d_c00189{bottom:506.415900px;}
.y1c_c00189{bottom:527.295750px;}
.y1b_c00189{bottom:548.355450px;}
.y1a_c00189{bottom:569.415750px;}
.y19_c00189{bottom:590.295600px;}
.y18_c00189{bottom:611.385300px;}
.y17_c00189{bottom:632.445600px;}
.y16_c00189{bottom:653.325450px;}
.y15_c00189{bottom:674.385150px;}
.y14_c00189{bottom:695.445450px;}
.y13_c00189{bottom:716.325300px;}
.y12_c00189{bottom:737.385000px;}
.y11_c00189{bottom:767.444850px;}
.y10_c00189{bottom:788.324700px;}
.yf_c00189{bottom:809.385000px;}
.ye_c00189{bottom:839.445000px;}
.yd_c00189{bottom:860.324850px;}
.yc_c00189{bottom:881.429700px;}
.yb_c00189{bottom:902.490000px;}
.ya_c00189{bottom:932.370300px;}
.y9_c00189{bottom:953.430000px;}
.y8_c00189{bottom:983.490300px;}
.y7_c00189{bottom:1004.370150px;}
.y6_c00189{bottom:1025.429850px;}
.y5_c00189{bottom:1046.490150px;}
.y4_c00189{bottom:1067.370000px;}
.y3_c00189{bottom:1097.429700px;}
.y2_c00189{bottom:1118.490000px;}
.y1_c00189{bottom:1185.300000px;}
.h2_c00189{height:56.957344px;}
.h0_c00189{height:1262.880000px;}
.h1_c00189{height:1263.000000px;}
.w0_c00189{width:892.980000px;}
.w1_c00189{width:893.250000px;}
.x0_c00189{left:0.000000px;}
.x1_c00189{left:127.655850px;}
.x2_c00189{left:148.888050px;}
@media print{
.v1_c00189{vertical-align:-5.120832pt;}
.v0_c00189{vertical-align:0.000000pt;}
.ls2_c00189{letter-spacing:0.000000pt;}
.ls1_c00189{letter-spacing:3.295573pt;}
.ls0_c00189{letter-spacing:3.935147pt;}
.ws0_c00189{word-spacing:-16.368640pt;}
.ws1_c00189{word-spacing:-13.344000pt;}
.ws2_c00189{word-spacing:-10.319360pt;}
.ws3_c00189{word-spacing:0.000000pt;}
._f_c00189{margin-left:-4.090736pt;}
._3_c00189{margin-left:-2.679491pt;}
._0_c00189{margin-left:-0.943001pt;}
._4_c00189{width:1.030684pt;}
._7_c00189{width:2.802227pt;}
._e_c00189{width:3.931504pt;}
._10_c00189{width:5.035816pt;}
._11_c00189{width:6.025263pt;}
._b_c00189{width:7.182161pt;}
._c_c00189{width:8.408232pt;}
._8_c00189{width:10.067682pt;}
._9_c00189{width:11.185297pt;}
._a_c00189{width:12.077987pt;}
._13_c00189{width:13.124058pt;}
._12_c00189{width:14.200835pt;}
._2_c00189{width:18.488320pt;}
._6_c00189{width:19.548337pt;}
._d_c00189{width:20.509680pt;}
._5_c00189{width:23.846732pt;}
._1_c00189{width:2019.819170pt;}
.fs2_c00189{font-size:37.120000pt;}
.fs1_c00189{font-size:48.000000pt;}
.fs0_c00189{font-size:58.880000pt;}
.y0_c00189{bottom:0.000000pt;}
.y2f_c00189{bottom:90.112000pt;}
.y2e_c00189{bottom:108.671867pt;}
.y2d_c00189{bottom:127.392133pt;}
.y2c_c00189{bottom:146.106667pt;}
.y2b_c00189{bottom:172.666800pt;}
.y2a_c00189{bottom:191.386533pt;}
.y29_c00189{bottom:210.106800pt;}
.y28_c00189{bottom:228.666667pt;}
.y27_c00189{bottom:247.386400pt;}
.y26_c00189{bottom:266.106667pt;}
.y25_c00189{bottom:284.666533pt;}
.y24_c00189{bottom:303.426400pt;}
.y23_c00189{bottom:322.146667pt;}
.y22_c00189{bottom:348.707067pt;}
.y21_c00189{bottom:367.426800pt;}
.y20_c00189{bottom:386.147067pt;}
.y1f_c00189{bottom:404.706933pt;}
.y1e_c00189{bottom:423.426667pt;}
.y1d_c00189{bottom:450.147467pt;}
.y1c_c00189{bottom:468.707333pt;}
.y1b_c00189{bottom:487.427067pt;}
.y1a_c00189{bottom:506.147333pt;}
.y19_c00189{bottom:524.707200pt;}
.y18_c00189{bottom:543.453600pt;}
.y17_c00189{bottom:562.173867pt;}
.y16_c00189{bottom:580.733733pt;}
.y15_c00189{bottom:599.453467pt;}
.y14_c00189{bottom:618.173733pt;}
.y13_c00189{bottom:636.733600pt;}
.y12_c00189{bottom:655.453333pt;}
.y11_c00189{bottom:682.173200pt;}
.y10_c00189{bottom:700.733067pt;}
.yf_c00189{bottom:719.453333pt;}
.ye_c00189{bottom:746.173333pt;}
.yd_c00189{bottom:764.733200pt;}
.yc_c00189{bottom:783.493067pt;}
.yb_c00189{bottom:802.213333pt;}
.ya_c00189{bottom:828.773600pt;}
.y9_c00189{bottom:847.493333pt;}
.y8_c00189{bottom:874.213600pt;}
.y7_c00189{bottom:892.773467pt;}
.y6_c00189{bottom:911.493200pt;}
.y5_c00189{bottom:930.213467pt;}
.y4_c00189{bottom:948.773333pt;}
.y3_c00189{bottom:975.493067pt;}
.y2_c00189{bottom:994.213333pt;}
.y1_c00189{bottom:1053.600000pt;}
.h2_c00189{height:50.628750pt;}
.h0_c00189{height:1122.560000pt;}
.h1_c00189{height:1122.666667pt;}
.w0_c00189{width:793.760000pt;}
.w1_c00189{width:794.000000pt;}
.x0_c00189{left:0.000000pt;}
.x1_c00189{left:113.471867pt;}
.x2_c00189{left:132.344933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a44600c3b7acc576f77951fc.woff2')format("woff");}.ff1_c00190{font-family:ff1_c00190;line-height:1.070312;font-style:normal;font-weight:normal;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_fff2b01a34c397a1adcf3255.woff2')format("woff");}.ff2_c00190{font-family:ff2_c00190;line-height:0.938965;font-style: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);}
.v2_c00190{vertical-align:-23.758620px;}
.v3_c00190{vertical-align:-5.758596px;}
.v0_c00190{vertical-align:0.000000px;}
.v1_c00190{vertical-align:23.758620px;}
.ls2_c00190{letter-spacing:0.000000px;}
.ls1_c00190{letter-spacing:0.306660px;}
.ls0_c00190{letter-spacing:12.346620px;}
.sc__c00190{text-shadow:none;}
.sc0_c00190{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00190{-webkit-text-stroke:0px transparent;}
.sc0_c00190{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00190{word-spacing:-18.414720px;}
.ws1_c00190{word-spacing:-15.012000px;}
.ws2_c00190{word-spacing:-11.609280px;}
.ws3_c00190{word-spacing:0.000000px;}
._16_c00190{margin-left:-8.335178px;}
._15_c00190{margin-left:-6.960830px;}
._14_c00190{margin-left:-5.875651px;}
._d_c00190{margin-left:-4.473228px;}
._c_c00190{margin-left:-3.252836px;}
._a_c00190{margin-left:-2.183391px;}
._0_c00190{margin-left:-1.060877px;}
._7_c00190{width:1.595019px;}
._9_c00190{width:3.510392px;}
._2_c00190{width:4.769568px;}
._3_c00190{width:5.823649px;}
._b_c00190{width:6.970013px;}
._f_c00190{width:8.417326px;}
._e_c00190{width:10.000568px;}
._12_c00190{width:11.056494px;}
._4_c00190{width:12.122696px;}
._8_c00190{width:13.646463px;}
._13_c00190{width:17.023442px;}
._5_c00190{width:26.694046px;}
._6_c00190{width:28.482618px;}
._10_c00190{width:30.528455px;}
._11_c00190{width:32.590937px;}
._1_c00190{width:2272.296567px;}
.fc0_c00190{color:rgb(0,0,0);}
.fs2_c00190{font-size:41.760000px;}
.fs1_c00190{font-size:54.000000px;}
.fs0_c00190{font-size:66.240000px;}
.y0_c00190{bottom:0.000000px;}
.y2e_c00190{bottom:122.256000px;}
.y2d_c00190{bottom:143.316300px;}
.y2c_c00190{bottom:164.370150px;}
.y2b_c00190{bottom:185.250000px;}
.y2a_c00190{bottom:206.309700px;}
.y29_c00190{bottom:227.370000px;}
.y28_c00190{bottom:257.250000px;}
.y27_c00190{bottom:278.309700px;}
.y26_c00190{bottom:299.370000px;}
.y25_c00190{bottom:329.250000px;}
.y24_c00190{bottom:350.354850px;}
.y23_c00190{bottom:371.415150px;}
.y22_c00190{bottom:392.295000px;}
.y21_c00190{bottom:422.354850px;}
.y20_c00190{bottom:443.415150px;}
.y1f_c00190{bottom:464.295000px;}
.y1e_c00190{bottom:485.354700px;}
.y1d_c00190{bottom:506.415000px;}
.y1c_c00190{bottom:536.295000px;}
.y1b_c00190{bottom:566.355000px;}
.y1a_c00190{bottom:596.415150px;}
.y19_c00190{bottom:617.324850px;}
.y18_c00190{bottom:638.384550px;}
.y17_c00190{bottom:659.444850px;}
.y16_c00190{bottom:680.324700px;}
.y15_c00190{bottom:701.385000px;}
.y14_c00190{bottom:722.445300px;}
.y13_c00190{bottom:743.325150px;}
.y12_c00190{bottom:764.384850px;}
.y11_c00190{bottom:785.445150px;}
.y10_c00190{bottom:806.325000px;}
.yf_c00190{bottom:827.385300px;}
.ye_c00190{bottom:848.445000px;}
.yd_c00190{bottom:878.370300px;}
.yc_c00190{bottom:899.430000px;}
.yb_c00190{bottom:920.490300px;}
.ya_c00190{bottom:941.370150px;}
.y9_c00190{bottom:962.429850px;}
.y8_c00190{bottom:983.490150px;}
.y7_c00190{bottom:1004.370000px;}
.y6_c00190{bottom:1025.429700px;}
.y5_c00190{bottom:1046.490000px;}
.y4_c00190{bottom:1076.370000px;}
.y3_c00190{bottom:1097.429700px;}
.y2_c00190{bottom:1118.490000px;}
.y1_c00190{bottom:1185.300000px;}
.h3_c00190{height:48.256875px;}
.h2_c00190{height:56.957344px;}
.h4_c00190{height:59.666511px;}
.h5_c00190{height:59.668851px;}
.h0_c00190{height:1262.880000px;}
.h1_c00190{height:1263.000000px;}
.w0_c00190{width:892.980000px;}
.w1_c00190{width:893.250000px;}
.x0_c00190{left:0.000000px;}
.x1_c00190{left:127.655850px;}
.x2_c00190{left:148.896150px;}
@media print{
.v2_c00190{vertical-align:-21.118773pt;}
.v3_c00190{vertical-align:-5.118752pt;}
.v0_c00190{vertical-align:0.000000pt;}
.v1_c00190{vertical-align:21.118773pt;}
.ls2_c00190{letter-spacing:0.000000pt;}
.ls1_c00190{letter-spacing:0.272587pt;}
.ls0_c00190{letter-spacing:10.974773pt;}
.ws0_c00190{word-spacing:-16.368640pt;}
.ws1_c00190{word-spacing:-13.344000pt;}
.ws2_c00190{word-spacing:-10.319360pt;}
.ws3_c00190{word-spacing:0.000000pt;}
._16_c00190{margin-left:-7.409047pt;}
._15_c00190{margin-left:-6.187405pt;}
._14_c00190{margin-left:-5.222801pt;}
._d_c00190{margin-left:-3.976202pt;}
._c_c00190{margin-left:-2.891409pt;}
._a_c00190{margin-left:-1.940792pt;}
._0_c00190{margin-left:-0.943001pt;}
._7_c00190{width:1.417795pt;}
._9_c00190{width:3.120349pt;}
._2_c00190{width:4.239616pt;}
._3_c00190{width:5.176577pt;}
._b_c00190{width:6.195568pt;}
._f_c00190{width:7.482068pt;}
._e_c00190{width:8.889394pt;}
._12_c00190{width:9.827994pt;}
._4_c00190{width:10.775729pt;}
._8_c00190{width:12.130190pt;}
._13_c00190{width:15.131949pt;}
._5_c00190{width:23.728041pt;}
._6_c00190{width:25.317882pt;}
._10_c00190{width:27.136404pt;}
._11_c00190{width:28.969722pt;}
._1_c00190{width:2019.819170pt;}
.fs2_c00190{font-size:37.120000pt;}
.fs1_c00190{font-size:48.000000pt;}
.fs0_c00190{font-size:58.880000pt;}
.y0_c00190{bottom:0.000000pt;}
.y2e_c00190{bottom:108.672000pt;}
.y2d_c00190{bottom:127.392267pt;}
.y2c_c00190{bottom:146.106800pt;}
.y2b_c00190{bottom:164.666667pt;}
.y2a_c00190{bottom:183.386400pt;}
.y29_c00190{bottom:202.106667pt;}
.y28_c00190{bottom:228.666667pt;}
.y27_c00190{bottom:247.386400pt;}
.y26_c00190{bottom:266.106667pt;}
.y25_c00190{bottom:292.666667pt;}
.y24_c00190{bottom:311.426533pt;}
.y23_c00190{bottom:330.146800pt;}
.y22_c00190{bottom:348.706667pt;}
.y21_c00190{bottom:375.426533pt;}
.y20_c00190{bottom:394.146800pt;}
.y1f_c00190{bottom:412.706667pt;}
.y1e_c00190{bottom:431.426400pt;}
.y1d_c00190{bottom:450.146667pt;}
.y1c_c00190{bottom:476.706667pt;}
.y1b_c00190{bottom:503.426667pt;}
.y1a_c00190{bottom:530.146800pt;}
.y19_c00190{bottom:548.733200pt;}
.y18_c00190{bottom:567.452933pt;}
.y17_c00190{bottom:586.173200pt;}
.y16_c00190{bottom:604.733067pt;}
.y15_c00190{bottom:623.453333pt;}
.y14_c00190{bottom:642.173600pt;}
.y13_c00190{bottom:660.733467pt;}
.y12_c00190{bottom:679.453200pt;}
.y11_c00190{bottom:698.173467pt;}
.y10_c00190{bottom:716.733333pt;}
.yf_c00190{bottom:735.453600pt;}
.ye_c00190{bottom:754.173333pt;}
.yd_c00190{bottom:780.773600pt;}
.yc_c00190{bottom:799.493333pt;}
.yb_c00190{bottom:818.213600pt;}
.ya_c00190{bottom:836.773467pt;}
.y9_c00190{bottom:855.493200pt;}
.y8_c00190{bottom:874.213467pt;}
.y7_c00190{bottom:892.773333pt;}
.y6_c00190{bottom:911.493067pt;}
.y5_c00190{bottom:930.213333pt;}
.y4_c00190{bottom:956.773333pt;}
.y3_c00190{bottom:975.493067pt;}
.y2_c00190{bottom:994.213333pt;}
.y1_c00190{bottom:1053.600000pt;}
.h3_c00190{height:42.895000pt;}
.h2_c00190{height:50.628750pt;}
.h4_c00190{height:53.036898pt;}
.h5_c00190{height:53.038978pt;}
.h0_c00190{height:1122.560000pt;}
.h1_c00190{height:1122.666667pt;}
.w0_c00190{width:793.760000pt;}
.w1_c00190{width:794.000000pt;}
.x0_c00190{left:0.000000pt;}
.x1_c00190{left:113.471867pt;}
.x2_c00190{left:132.352133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4216c6c69b4b4d69b9597f5d.woff2')format("woff");}.ff1_c00191{font-family:ff1_c00191;line-height:1.070312;font-style:normal;font-weight:normal;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_105c050d2f28ef00bce2d783.woff2')format("woff");}.ff2_c00191{font-family:ff2_c00191;line-height:0.938965;font-style: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);}
.v3_c00191{vertical-align:-23.758620px;}
.v1_c00191{vertical-align:-5.760936px;}
.v0_c00191{vertical-align:0.000000px;}
.v2_c00191{vertical-align:23.758620px;}
.ls6_c00191{letter-spacing:0.000000px;}
.ls0_c00191{letter-spacing:0.000480px;}
.ls5_c00191{letter-spacing:0.066840px;}
.ls1_c00191{letter-spacing:0.092640px;}
.ls4_c00191{letter-spacing:0.162480px;}
.ls3_c00191{letter-spacing:0.304320px;}
.ls2_c00191{letter-spacing:10.909860px;}
.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;}
}
.ws2_c00191{word-spacing:-18.414720px;}
.ws1_c00191{word-spacing:-15.012000px;}
.ws0_c00191{word-spacing:-11.609280px;}
.ws3_c00191{word-spacing:0.000000px;}
._f_c00191{margin-left:-4.436941px;}
._7_c00191{margin-left:-3.313739px;}
._2_c00191{margin-left:-2.085756px;}
._0_c00191{margin-left:-1.060877px;}
._3_c00191{width:1.157422px;}
._e_c00191{width:2.914783px;}
._d_c00191{width:4.129620px;}
._10_c00191{width:5.533830px;}
._8_c00191{width:8.114093px;}
._9_c00191{width:9.126335px;}
._5_c00191{width:10.165552px;}
._4_c00191{width:11.194229px;}
._6_c00191{width:12.489108px;}
._a_c00191{width:13.777654px;}
._b_c00191{width:14.870281px;}
._c_c00191{width:16.391693px;}
._11_c00191{width:20.201125px;}
._12_c00191{width:28.285384px;}
._13_c00191{width:845.884800px;}
._1_c00191{width:2272.296567px;}
.fc0_c00191{color:rgb(0,0,0);}
.fs1_c00191{font-size:41.760000px;}
.fs2_c00191{font-size:54.000000px;}
.fs0_c00191{font-size:66.240000px;}
.y0_c00191{bottom:0.000000px;}
.y2b_c00191{bottom:149.255850px;}
.y2a_c00191{bottom:170.309850px;}
.y29_c00191{bottom:191.370150px;}
.y28_c00191{bottom:212.250000px;}
.y27_c00191{bottom:242.310150px;}
.y26_c00191{bottom:263.370450px;}
.y25_c00191{bottom:284.250300px;}
.y24_c00191{bottom:305.310000px;}
.y23_c00191{bottom:335.370300px;}
.y22_c00191{bottom:356.295300px;}
.y21_c00191{bottom:377.355000px;}
.y20_c00191{bottom:398.415300px;}
.y1f_c00191{bottom:419.295150px;}
.y1e_c00191{bottom:440.354850px;}
.y1d_c00191{bottom:461.415150px;}
.y1c_c00191{bottom:482.295000px;}
.y1b_c00191{bottom:503.354700px;}
.y1a_c00191{bottom:524.415000px;}
.y19_c00191{bottom:554.295300px;}
.y18_c00191{bottom:575.355000px;}
.y17_c00191{bottom:605.445300px;}
.y16_c00191{bottom:626.325150px;}
.y15_c00191{bottom:647.384850px;}
.y14_c00191{bottom:668.445150px;}
.y13_c00191{bottom:689.325000px;}
.y12_c00191{bottom:719.384850px;}
.y11_c00191{bottom:740.445150px;}
.y10_c00191{bottom:761.325000px;}
.yf_c00191{bottom:782.385300px;}
.ye_c00191{bottom:803.445000px;}
.yd_c00191{bottom:833.325000px;}
.yc_c00191{bottom:863.385000px;}
.yb_c00191{bottom:893.490150px;}
.ya_c00191{bottom:914.370000px;}
.y9_c00191{bottom:944.430150px;}
.y8_c00191{bottom:965.490450px;}
.y7_c00191{bottom:986.370300px;}
.y6_c00191{bottom:1007.430000px;}
.y5_c00191{bottom:1037.490000px;}
.y4_c00191{bottom:1067.370000px;}
.y3_c00191{bottom:1097.429700px;}
.y2_c00191{bottom:1118.490000px;}
.y1_c00191{bottom:1185.300000px;}
.h2_c00191{height:56.957344px;}
.h3_c00191{height:59.666511px;}
.h4_c00191{height:59.668851px;}
.h0_c00191{height:1262.880000px;}
.h1_c00191{height:1263.000000px;}
.w0_c00191{width:892.980000px;}
.w1_c00191{width:893.250000px;}
.x0_c00191{left:0.000000px;}
.x1_c00191{left:127.655850px;}
.x2_c00191{left:148.896150px;}
.x3_c00191{left:191.550000px;}
@media print{
.v3_c00191{vertical-align:-21.118773pt;}
.v1_c00191{vertical-align:-5.120832pt;}
.v0_c00191{vertical-align:0.000000pt;}
.v2_c00191{vertical-align:21.118773pt;}
.ls6_c00191{letter-spacing:0.000000pt;}
.ls0_c00191{letter-spacing:0.000427pt;}
.ls5_c00191{letter-spacing:0.059413pt;}
.ls1_c00191{letter-spacing:0.082347pt;}
.ls4_c00191{letter-spacing:0.144427pt;}
.ls3_c00191{letter-spacing:0.270507pt;}
.ls2_c00191{letter-spacing:9.697653pt;}
.ws2_c00191{word-spacing:-16.368640pt;}
.ws1_c00191{word-spacing:-13.344000pt;}
.ws0_c00191{word-spacing:-10.319360pt;}
.ws3_c00191{word-spacing:0.000000pt;}
._f_c00191{margin-left:-3.943948pt;}
._7_c00191{margin-left:-2.945546pt;}
._2_c00191{margin-left:-1.854005pt;}
._0_c00191{margin-left:-0.943001pt;}
._3_c00191{width:1.028819pt;}
._e_c00191{width:2.590918pt;}
._d_c00191{width:3.670773pt;}
._10_c00191{width:4.918960pt;}
._8_c00191{width:7.212527pt;}
._9_c00191{width:8.112297pt;}
._5_c00191{width:9.036046pt;}
._4_c00191{width:9.950426pt;}
._6_c00191{width:11.101429pt;}
._a_c00191{width:12.246803pt;}
._b_c00191{width:13.218028pt;}
._c_c00191{width:14.570393pt;}
._11_c00191{width:17.956555pt;}
._12_c00191{width:25.142563pt;}
._13_c00191{width:751.897600pt;}
._1_c00191{width:2019.819170pt;}
.fs1_c00191{font-size:37.120000pt;}
.fs2_c00191{font-size:48.000000pt;}
.fs0_c00191{font-size:58.880000pt;}
.y0_c00191{bottom:0.000000pt;}
.y2b_c00191{bottom:132.671867pt;}
.y2a_c00191{bottom:151.386533pt;}
.y29_c00191{bottom:170.106800pt;}
.y28_c00191{bottom:188.666667pt;}
.y27_c00191{bottom:215.386800pt;}
.y26_c00191{bottom:234.107067pt;}
.y25_c00191{bottom:252.666933pt;}
.y24_c00191{bottom:271.386667pt;}
.y23_c00191{bottom:298.106933pt;}
.y22_c00191{bottom:316.706933pt;}
.y21_c00191{bottom:335.426667pt;}
.y20_c00191{bottom:354.146933pt;}
.y1f_c00191{bottom:372.706800pt;}
.y1e_c00191{bottom:391.426533pt;}
.y1d_c00191{bottom:410.146800pt;}
.y1c_c00191{bottom:428.706667pt;}
.y1b_c00191{bottom:447.426400pt;}
.y1a_c00191{bottom:466.146667pt;}
.y19_c00191{bottom:492.706933pt;}
.y18_c00191{bottom:511.426667pt;}
.y17_c00191{bottom:538.173600pt;}
.y16_c00191{bottom:556.733467pt;}
.y15_c00191{bottom:575.453200pt;}
.y14_c00191{bottom:594.173467pt;}
.y13_c00191{bottom:612.733333pt;}
.y12_c00191{bottom:639.453200pt;}
.y11_c00191{bottom:658.173467pt;}
.y10_c00191{bottom:676.733333pt;}
.yf_c00191{bottom:695.453600pt;}
.ye_c00191{bottom:714.173333pt;}
.yd_c00191{bottom:740.733333pt;}
.yc_c00191{bottom:767.453333pt;}
.yb_c00191{bottom:794.213467pt;}
.ya_c00191{bottom:812.773333pt;}
.y9_c00191{bottom:839.493467pt;}
.y8_c00191{bottom:858.213733pt;}
.y7_c00191{bottom:876.773600pt;}
.y6_c00191{bottom:895.493333pt;}
.y5_c00191{bottom:922.213333pt;}
.y4_c00191{bottom:948.773333pt;}
.y3_c00191{bottom:975.493067pt;}
.y2_c00191{bottom:994.213333pt;}
.y1_c00191{bottom:1053.600000pt;}
.h2_c00191{height:50.628750pt;}
.h3_c00191{height:53.036898pt;}
.h4_c00191{height:53.038978pt;}
.h0_c00191{height:1122.560000pt;}
.h1_c00191{height:1122.666667pt;}
.w0_c00191{width:793.760000pt;}
.w1_c00191{width:794.000000pt;}
.x0_c00191{left:0.000000pt;}
.x1_c00191{left:113.471867pt;}
.x2_c00191{left:132.352133pt;}
.x3_c00191{left:170.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_76f3de7c3605a59be0fda67b.woff2')format("woff");}.ff1_c00192{font-family:ff1_c00192;line-height:1.070312;font-style:normal;font-weight:normal;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_b19a85667a90ff22c1320303.woff2')format("woff");}.ff2_c00192{font-family:ff2_c00192;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00192;src:url('chunks/assets/font_2c661173fbe578d4a1a8299a.woff2')format("woff");}.ff3_c00192{font-family:ff3_c00192;line-height:0.938965;font-style: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);}
.m1_c00192{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_c00192{vertical-align:0.000000px;}
.ls1_c00192{letter-spacing:0.000000px;}
.ls0_c00192{letter-spacing:7.307520px;}
.sc__c00192{text-shadow:none;}
.sc0_c00192{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00192{-webkit-text-stroke:0px transparent;}
.sc0_c00192{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00192{word-spacing:-36.829440px;}
.ws1_c00192{word-spacing:-18.414720px;}
.ws2_c00192{word-spacing:-15.012000px;}
.ws3_c00192{word-spacing:0.000000px;}
._d_c00192{margin-left:-4.244166px;}
._c_c00192{margin-left:-2.912767px;}
._0_c00192{margin-left:-1.060877px;}
._5_c00192{width:1.933824px;}
._9_c00192{width:3.274887px;}
._6_c00192{width:4.371078px;}
._4_c00192{width:5.896549px;}
._3_c00192{width:7.151967px;}
._e_c00192{width:8.711352px;}
._11_c00192{width:9.778716px;}
._10_c00192{width:12.982179px;}
._b_c00192{width:17.159626px;}
._8_c00192{width:22.920071px;}
._f_c00192{width:27.350780px;}
._a_c00192{width:28.947621px;}
._7_c00192{width:34.317480px;}
._2_c00192{width:62.288245px;}
._1_c00192{width:2272.296567px;}
.fc0_c00192{color:rgb(0,0,0);}
.fs2_c00192{font-size:54.000000px;}
.fs0_c00192{font-size:66.240000px;}
.fs1_c00192{font-size:72.000000px;}
.y0_c00192{bottom:0.000000px;}
.y2a_c00192{bottom:89.316300px;}
.y29_c00192{bottom:110.376000px;}
.y28_c00192{bottom:131.255850px;}
.y27_c00192{bottom:152.309700px;}
.y26_c00192{bottom:173.370000px;}
.y25_c00192{bottom:203.250000px;}
.y24_c00192{bottom:224.309700px;}
.y23_c00192{bottom:245.370000px;}
.y22_c00192{bottom:275.249700px;}
.y21_c00192{bottom:296.310000px;}
.y20_c00192{bottom:317.370300px;}
.y1f_c00192{bottom:338.295300px;}
.y1e_c00192{bottom:359.355000px;}
.y1d_c00192{bottom:389.415150px;}
.y1c_c00192{bottom:410.295000px;}
.y1b_c00192{bottom:440.355000px;}
.y1a_c00192{bottom:488.235600px;}
.y19_c00192{bottom:509.295300px;}
.y18_c00192{bottom:530.355000px;}
.y17_c00192{bottom:578.415000px;}
.y16_c00192{bottom:608.325000px;}
.y15_c00192{bottom:638.384700px;}
.y14_c00192{bottom:659.445000px;}
.y13_c00192{bottom:689.325300px;}
.y12_c00192{bottom:710.385000px;}
.y11_c00192{bottom:740.445150px;}
.y10_c00192{bottom:761.325000px;}
.yf_c00192{bottom:791.385300px;}
.ye_c00192{bottom:812.445000px;}
.yd_c00192{bottom:842.324850px;}
.yc_c00192{bottom:863.385150px;}
.yb_c00192{bottom:884.490000px;}
.ya_c00192{bottom:914.370300px;}
.y9_c00192{bottom:935.430000px;}
.y8_c00192{bottom:965.490150px;}
.y7_c00192{bottom:986.370000px;}
.y6_c00192{bottom:1016.430000px;}
.y5_c00192{bottom:1046.490450px;}
.y4_c00192{bottom:1067.370300px;}
.y3_c00192{bottom:1088.430000px;}
.y2_c00192{bottom:1118.490000px;}
.y1_c00192{bottom:1185.300000px;}
.h3_c00192{height:48.224531px;}
.h4_c00192{height:52.417969px;}
.h2_c00192{height:56.957344px;}
.h0_c00192{height:1262.880000px;}
.h1_c00192{height:1263.000000px;}
.w0_c00192{width:892.980000px;}
.w1_c00192{width:893.250000px;}
.x0_c00192{left:0.000000px;}
.x1_c00192{left:127.655850px;}
.x2_c00192{left:148.896150px;}
.x3_c00192{left:154.649955px;}
@media print{
.v0_c00192{vertical-align:0.000000pt;}
.ls1_c00192{letter-spacing:0.000000pt;}
.ls0_c00192{letter-spacing:6.495573pt;}
.ws0_c00192{word-spacing:-32.737280pt;}
.ws1_c00192{word-spacing:-16.368640pt;}
.ws2_c00192{word-spacing:-13.344000pt;}
.ws3_c00192{word-spacing:0.000000pt;}
._d_c00192{margin-left:-3.772592pt;}
._c_c00192{margin-left:-2.589126pt;}
._0_c00192{margin-left:-0.943001pt;}
._5_c00192{width:1.718954pt;}
._9_c00192{width:2.911011pt;}
._6_c00192{width:3.885402pt;}
._4_c00192{width:5.241377pt;}
._3_c00192{width:6.357304pt;}
._e_c00192{width:7.743424pt;}
._11_c00192{width:8.692192pt;}
._10_c00192{width:11.539715pt;}
._b_c00192{width:15.253001pt;}
._8_c00192{width:20.373397pt;}
._f_c00192{width:24.311804pt;}
._a_c00192{width:25.731219pt;}
._7_c00192{width:30.504427pt;}
._2_c00192{width:55.367329pt;}
._1_c00192{width:2019.819170pt;}
.fs2_c00192{font-size:48.000000pt;}
.fs0_c00192{font-size:58.880000pt;}
.fs1_c00192{font-size:64.000000pt;}
.y0_c00192{bottom:0.000000pt;}
.y2a_c00192{bottom:79.392267pt;}
.y29_c00192{bottom:98.112000pt;}
.y28_c00192{bottom:116.671867pt;}
.y27_c00192{bottom:135.386400pt;}
.y26_c00192{bottom:154.106667pt;}
.y25_c00192{bottom:180.666667pt;}
.y24_c00192{bottom:199.386400pt;}
.y23_c00192{bottom:218.106667pt;}
.y22_c00192{bottom:244.666400pt;}
.y21_c00192{bottom:263.386667pt;}
.y20_c00192{bottom:282.106933pt;}
.y1f_c00192{bottom:300.706933pt;}
.y1e_c00192{bottom:319.426667pt;}
.y1d_c00192{bottom:346.146800pt;}
.y1c_c00192{bottom:364.706667pt;}
.y1b_c00192{bottom:391.426667pt;}
.y1a_c00192{bottom:433.987200pt;}
.y19_c00192{bottom:452.706933pt;}
.y18_c00192{bottom:471.426667pt;}
.y17_c00192{bottom:514.146667pt;}
.y16_c00192{bottom:540.733333pt;}
.y15_c00192{bottom:567.453067pt;}
.y14_c00192{bottom:586.173333pt;}
.y13_c00192{bottom:612.733600pt;}
.y12_c00192{bottom:631.453333pt;}
.y11_c00192{bottom:658.173467pt;}
.y10_c00192{bottom:676.733333pt;}
.yf_c00192{bottom:703.453600pt;}
.ye_c00192{bottom:722.173333pt;}
.yd_c00192{bottom:748.733200pt;}
.yc_c00192{bottom:767.453467pt;}
.yb_c00192{bottom:786.213333pt;}
.ya_c00192{bottom:812.773600pt;}
.y9_c00192{bottom:831.493333pt;}
.y8_c00192{bottom:858.213467pt;}
.y7_c00192{bottom:876.773333pt;}
.y6_c00192{bottom:903.493333pt;}
.y5_c00192{bottom:930.213733pt;}
.y4_c00192{bottom:948.773600pt;}
.y3_c00192{bottom:967.493333pt;}
.y2_c00192{bottom:994.213333pt;}
.y1_c00192{bottom:1053.600000pt;}
.h3_c00192{height:42.866250pt;}
.h4_c00192{height:46.593750pt;}
.h2_c00192{height:50.628750pt;}
.h0_c00192{height:1122.560000pt;}
.h1_c00192{height:1122.666667pt;}
.w0_c00192{width:793.760000pt;}
.w1_c00192{width:794.000000pt;}
.x0_c00192{left:0.000000pt;}
.x1_c00192{left:113.471867pt;}
.x2_c00192{left:132.352133pt;}
.x3_c00192{left:137.466627pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8663e2dc2e654377e9f8b036.woff2')format("woff");}.ff1_c00193{font-family:ff1_c00193;line-height:1.070312;font-style:normal;font-weight:normal;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_71f9ccf449933924c555c1ee.woff2')format("woff");}.ff2_c00193{font-family:ff2_c00193;line-height:0.938965;font-style:normal;font-weight:normal;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_ccfae26782d71e301882c850.woff2')format("woff");}.ff3_c00193{font-family:ff3_c00193;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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);}
.m1_c00193{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_c00193{vertical-align:0.000000px;}
.ls1_c00193{letter-spacing:0.000000px;}
.ls0_c00193{letter-spacing:0.263460px;}
.sc__c00193{text-shadow:none;}
.sc0_c00193{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00193{-webkit-text-stroke:0px transparent;}
.sc0_c00193{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00193{word-spacing:-15.012000px;}
.ws1_c00193{word-spacing:0.000000px;}
._10_c00193{margin-left:-7.343235px;}
._c_c00193{margin-left:-5.646966px;}
._b_c00193{margin-left:-4.040861px;}
._7_c00193{margin-left:-2.095319px;}
._0_c00193{margin-left:-1.060877px;}
._6_c00193{width:1.145853px;}
._5_c00193{width:2.231758px;}
._4_c00193{width:3.841175px;}
._8_c00193{width:5.101215px;}
._a_c00193{width:6.172905px;}
._f_c00193{width:7.542598px;}
._18_c00193{width:9.048031px;}
._9_c00193{width:10.126165px;}
._3_c00193{width:11.467950px;}
._2_c00193{width:12.508467px;}
._19_c00193{width:14.128195px;}
._d_c00193{width:15.764458px;}
._e_c00193{width:16.802158px;}
._11_c00193{width:19.672769px;}
._16_c00193{width:21.372073px;}
._1c_c00193{width:22.499181px;}
._14_c00193{width:23.648976px;}
._15_c00193{width:24.789548px;}
._1b_c00193{width:31.066201px;}
._1a_c00193{width:32.170031px;}
._17_c00193{width:34.317480px;}
._12_c00193{width:39.876542px;}
._13_c00193{width:40.911276px;}
._1_c00193{width:2272.296567px;}
.fc0_c00193{color:rgb(0,0,0);}
.fs1_c00193{font-size:54.000000px;}
.fs0_c00193{font-size:66.240000px;}
.y0_c00193{bottom:0.000000px;}
.y30_c00193{bottom:89.316150px;}
.y2f_c00193{bottom:110.376000px;}
.y2e_c00193{bottom:131.255850px;}
.y2d_c00193{bottom:161.310000px;}
.y2c_c00193{bottom:182.370000px;}
.y2b_c00193{bottom:203.250000px;}
.y2a_c00193{bottom:224.310000px;}
.y29_c00193{bottom:245.370000px;}
.y28_c00193{bottom:266.250000px;}
.y27_c00193{bottom:287.310000px;}
.y26_c00193{bottom:308.370000px;}
.y25_c00193{bottom:329.250000px;}
.y24_c00193{bottom:350.355000px;}
.y23_c00193{bottom:380.415150px;}
.y22_c00193{bottom:401.295000px;}
.y21_c00193{bottom:431.355000px;}
.y20_c00193{bottom:461.415300px;}
.y1f_c00193{bottom:482.295150px;}
.y1e_c00193{bottom:503.354850px;}
.y1d_c00193{bottom:524.415150px;}
.y1c_c00193{bottom:545.295000px;}
.y1b_c00193{bottom:575.355300px;}
.y1a_c00193{bottom:596.415600px;}
.y19_c00193{bottom:617.325300px;}
.y18_c00193{bottom:638.385000px;}
.y17_c00193{bottom:668.445150px;}
.y16_c00193{bottom:689.325000px;}
.y15_c00193{bottom:710.385300px;}
.y14_c00193{bottom:731.445600px;}
.y13_c00193{bottom:752.325450px;}
.y12_c00193{bottom:773.385750px;}
.y11_c00193{bottom:794.445450px;}
.y10_c00193{bottom:815.325300px;}
.yf_c00193{bottom:836.385600px;}
.ye_c00193{bottom:857.445300px;}
.yd_c00193{bottom:878.370300px;}
.yc_c00193{bottom:899.430000px;}
.yb_c00193{bottom:920.490300px;}
.ya_c00193{bottom:941.370150px;}
.y9_c00193{bottom:962.429850px;}
.y8_c00193{bottom:983.490150px;}
.y7_c00193{bottom:1004.370000px;}
.y6_c00193{bottom:1034.429850px;}
.y5_c00193{bottom:1055.490150px;}
.y4_c00193{bottom:1076.370000px;}
.y3_c00193{bottom:1097.429700px;}
.y2_c00193{bottom:1118.490000px;}
.y1_c00193{bottom:1185.300000px;}
.h3_c00193{height:48.256875px;}
.h2_c00193{height:56.957344px;}
.h0_c00193{height:1262.880000px;}
.h1_c00193{height:1263.000000px;}
.w0_c00193{width:892.980000px;}
.w1_c00193{width:893.250000px;}
.x0_c00193{left:0.000000px;}
.x1_c00193{left:127.655850px;}
.x2_c00193{left:148.896150px;}
.x3_c00193{left:154.649955px;}
@media print{
.v0_c00193{vertical-align:0.000000pt;}
.ls1_c00193{letter-spacing:0.000000pt;}
.ls0_c00193{letter-spacing:0.234187pt;}
.ws0_c00193{word-spacing:-13.344000pt;}
.ws1_c00193{word-spacing:0.000000pt;}
._10_c00193{margin-left:-6.527320pt;}
._c_c00193{margin-left:-5.019525pt;}
._b_c00193{margin-left:-3.591877pt;}
._7_c00193{margin-left:-1.862505pt;}
._0_c00193{margin-left:-0.943001pt;}
._6_c00193{width:1.018536pt;}
._5_c00193{width:1.983785pt;}
._4_c00193{width:3.414378pt;}
._8_c00193{width:4.534414pt;}
._a_c00193{width:5.487027pt;}
._f_c00193{width:6.704532pt;}
._18_c00193{width:8.042694pt;}
._9_c00193{width:9.001036pt;}
._3_c00193{width:10.193733pt;}
._2_c00193{width:11.118638pt;}
._19_c00193{width:12.558396pt;}
._d_c00193{width:14.012851pt;}
._e_c00193{width:14.935252pt;}
._11_c00193{width:17.486906pt;}
._16_c00193{width:18.997398pt;}
._1c_c00193{width:19.999272pt;}
._14_c00193{width:21.021312pt;}
._15_c00193{width:22.035154pt;}
._1b_c00193{width:27.614401pt;}
._1a_c00193{width:28.595583pt;}
._17_c00193{width:30.504427pt;}
._12_c00193{width:35.445815pt;}
._13_c00193{width:36.365579pt;}
._1_c00193{width:2019.819170pt;}
.fs1_c00193{font-size:48.000000pt;}
.fs0_c00193{font-size:58.880000pt;}
.y0_c00193{bottom:0.000000pt;}
.y30_c00193{bottom:79.392133pt;}
.y2f_c00193{bottom:98.112000pt;}
.y2e_c00193{bottom:116.671867pt;}
.y2d_c00193{bottom:143.386667pt;}
.y2c_c00193{bottom:162.106667pt;}
.y2b_c00193{bottom:180.666667pt;}
.y2a_c00193{bottom:199.386667pt;}
.y29_c00193{bottom:218.106667pt;}
.y28_c00193{bottom:236.666667pt;}
.y27_c00193{bottom:255.386667pt;}
.y26_c00193{bottom:274.106667pt;}
.y25_c00193{bottom:292.666667pt;}
.y24_c00193{bottom:311.426667pt;}
.y23_c00193{bottom:338.146800pt;}
.y22_c00193{bottom:356.706667pt;}
.y21_c00193{bottom:383.426667pt;}
.y20_c00193{bottom:410.146933pt;}
.y1f_c00193{bottom:428.706800pt;}
.y1e_c00193{bottom:447.426533pt;}
.y1d_c00193{bottom:466.146800pt;}
.y1c_c00193{bottom:484.706667pt;}
.y1b_c00193{bottom:511.426933pt;}
.y1a_c00193{bottom:530.147200pt;}
.y19_c00193{bottom:548.733600pt;}
.y18_c00193{bottom:567.453333pt;}
.y17_c00193{bottom:594.173467pt;}
.y16_c00193{bottom:612.733333pt;}
.y15_c00193{bottom:631.453600pt;}
.y14_c00193{bottom:650.173867pt;}
.y13_c00193{bottom:668.733733pt;}
.y12_c00193{bottom:687.454000pt;}
.y11_c00193{bottom:706.173733pt;}
.y10_c00193{bottom:724.733600pt;}
.yf_c00193{bottom:743.453867pt;}
.ye_c00193{bottom:762.173600pt;}
.yd_c00193{bottom:780.773600pt;}
.yc_c00193{bottom:799.493333pt;}
.yb_c00193{bottom:818.213600pt;}
.ya_c00193{bottom:836.773467pt;}
.y9_c00193{bottom:855.493200pt;}
.y8_c00193{bottom:874.213467pt;}
.y7_c00193{bottom:892.773333pt;}
.y6_c00193{bottom:919.493200pt;}
.y5_c00193{bottom:938.213467pt;}
.y4_c00193{bottom:956.773333pt;}
.y3_c00193{bottom:975.493067pt;}
.y2_c00193{bottom:994.213333pt;}
.y1_c00193{bottom:1053.600000pt;}
.h3_c00193{height:42.895000pt;}
.h2_c00193{height:50.628750pt;}
.h0_c00193{height:1122.560000pt;}
.h1_c00193{height:1122.666667pt;}
.w0_c00193{width:793.760000pt;}
.w1_c00193{width:794.000000pt;}
.x0_c00193{left:0.000000pt;}
.x1_c00193{left:113.471867pt;}
.x2_c00193{left:132.352133pt;}
.x3_c00193{left:137.466627pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e0b4bb60628829df606bbd80.woff2')format("woff");}.ff1_c00194{font-family:ff1_c00194;line-height:1.070312;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00194{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00194{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00194{vertical-align:0.000000px;}
.ls0_c00194{letter-spacing:0.000000px;}
.sc__c00194{text-shadow:none;}
.sc0_c00194{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00194{-webkit-text-stroke:0px transparent;}
.sc0_c00194{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00194{word-spacing:-15.012000px;}
.ws1_c00194{word-spacing:0.000000px;}
._e_c00194{margin-left:-6.264018px;}
._15_c00194{margin-left:-4.376487px;}
._9_c00194{margin-left:-2.581498px;}
._0_c00194{margin-left:-1.060877px;}
._5_c00194{width:1.164030px;}
._3_c00194{width:2.383255px;}
._4_c00194{width:3.510052px;}
._a_c00194{width:5.498473px;}
._11_c00194{width:7.292253px;}
._10_c00194{width:8.551284px;}
._f_c00194{width:10.310247px;}
._d_c00194{width:11.459896px;}
._1a_c00194{width:13.843131px;}
._16_c00194{width:15.831735px;}
._18_c00194{width:17.210995px;}
._17_c00194{width:19.860878px;}
._19_c00194{width:20.877222px;}
._13_c00194{width:22.588275px;}
._8_c00194{width:24.508671px;}
._12_c00194{width:26.297662px;}
._14_c00194{width:28.947621px;}
._7_c00194{width:31.266994px;}
._6_c00194{width:32.521851px;}
._2_c00194{width:34.317480px;}
._b_c00194{width:46.118971px;}
._c_c00194{width:47.145174px;}
._1_c00194{width:2272.296567px;}
.fc0_c00194{color:rgb(0,0,0);}
.fs1_c00194{font-size:54.000000px;}
.fs0_c00194{font-size:66.240000px;}
.y0_c00194{bottom:0.000000px;}
.y2e_c00194{bottom:122.255850px;}
.y2d_c00194{bottom:152.310000px;}
.y2c_c00194{bottom:173.370300px;}
.y2b_c00194{bottom:194.250150px;}
.y2a_c00194{bottom:215.309850px;}
.y29_c00194{bottom:236.370150px;}
.y28_c00194{bottom:257.250000px;}
.y27_c00194{bottom:287.309850px;}
.y26_c00194{bottom:308.370150px;}
.y25_c00194{bottom:329.250000px;}
.y24_c00194{bottom:359.355150px;}
.y23_c00194{bottom:380.415450px;}
.y22_c00194{bottom:401.295300px;}
.y21_c00194{bottom:422.354850px;}
.y20_c00194{bottom:443.415150px;}
.y1f_c00194{bottom:464.295000px;}
.y1e_c00194{bottom:494.354850px;}
.y1d_c00194{bottom:515.415150px;}
.y1c_c00194{bottom:536.295000px;}
.y1b_c00194{bottom:566.354700px;}
.y1a_c00194{bottom:587.415000px;}
.y19_c00194{bottom:617.325000px;}
.y18_c00194{bottom:638.384850px;}
.y17_c00194{bottom:659.445150px;}
.y16_c00194{bottom:680.325000px;}
.y15_c00194{bottom:701.384700px;}
.y14_c00194{bottom:722.445000px;}
.y13_c00194{bottom:752.325300px;}
.y12_c00194{bottom:773.385600px;}
.y11_c00194{bottom:794.445300px;}
.y10_c00194{bottom:815.325150px;}
.yf_c00194{bottom:836.385450px;}
.ye_c00194{bottom:857.445150px;}
.yd_c00194{bottom:878.370150px;}
.yc_c00194{bottom:899.429850px;}
.yb_c00194{bottom:920.490150px;}
.ya_c00194{bottom:941.370750px;}
.y9_c00194{bottom:962.430450px;}
.y8_c00194{bottom:983.490150px;}
.y7_c00194{bottom:1004.370000px;}
.y6_c00194{bottom:1025.429700px;}
.y5_c00194{bottom:1046.490000px;}
.y4_c00194{bottom:1076.370000px;}
.y3_c00194{bottom:1097.429700px;}
.y2_c00194{bottom:1118.490000px;}
.y1_c00194{bottom:1185.300000px;}
.h2_c00194{height:56.957344px;}
.h3_c00194{height:56.957944px;}
.h0_c00194{height:1262.880000px;}
.h1_c00194{height:1263.000000px;}
.w0_c00194{width:892.980000px;}
.w1_c00194{width:893.250000px;}
.x0_c00194{left:0.000000px;}
.x1_c00194{left:127.655850px;}
.x3_c00194{left:148.896150px;}
.x2_c00194{left:154.649700px;}
@media print{
.v0_c00194{vertical-align:0.000000pt;}
.ls0_c00194{letter-spacing:0.000000pt;}
.ws0_c00194{word-spacing:-13.344000pt;}
.ws1_c00194{word-spacing:0.000000pt;}
._e_c00194{margin-left:-5.568016pt;}
._15_c00194{margin-left:-3.890210pt;}
._9_c00194{margin-left:-2.294665pt;}
._0_c00194{margin-left:-0.943001pt;}
._5_c00194{width:1.034693pt;}
._3_c00194{width:2.118449pt;}
._4_c00194{width:3.120046pt;}
._a_c00194{width:4.887532pt;}
._11_c00194{width:6.482003pt;}
._10_c00194{width:7.601141pt;}
._f_c00194{width:9.164664pt;}
._d_c00194{width:10.186574pt;}
._1a_c00194{width:12.305005pt;}
._16_c00194{width:14.072653pt;}
._18_c00194{width:15.298662pt;}
._17_c00194{width:17.654114pt;}
._19_c00194{width:18.557531pt;}
._13_c00194{width:20.078466pt;}
._8_c00194{width:21.785486pt;}
._12_c00194{width:23.375699pt;}
._14_c00194{width:25.731219pt;}
._7_c00194{width:27.792884pt;}
._6_c00194{width:28.908312pt;}
._2_c00194{width:30.504427pt;}
._b_c00194{width:40.994641pt;}
._c_c00194{width:41.906821pt;}
._1_c00194{width:2019.819170pt;}
.fs1_c00194{font-size:48.000000pt;}
.fs0_c00194{font-size:58.880000pt;}
.y0_c00194{bottom:0.000000pt;}
.y2e_c00194{bottom:108.671867pt;}
.y2d_c00194{bottom:135.386667pt;}
.y2c_c00194{bottom:154.106933pt;}
.y2b_c00194{bottom:172.666800pt;}
.y2a_c00194{bottom:191.386533pt;}
.y29_c00194{bottom:210.106800pt;}
.y28_c00194{bottom:228.666667pt;}
.y27_c00194{bottom:255.386533pt;}
.y26_c00194{bottom:274.106800pt;}
.y25_c00194{bottom:292.666667pt;}
.y24_c00194{bottom:319.426800pt;}
.y23_c00194{bottom:338.147067pt;}
.y22_c00194{bottom:356.706933pt;}
.y21_c00194{bottom:375.426533pt;}
.y20_c00194{bottom:394.146800pt;}
.y1f_c00194{bottom:412.706667pt;}
.y1e_c00194{bottom:439.426533pt;}
.y1d_c00194{bottom:458.146800pt;}
.y1c_c00194{bottom:476.706667pt;}
.y1b_c00194{bottom:503.426400pt;}
.y1a_c00194{bottom:522.146667pt;}
.y19_c00194{bottom:548.733333pt;}
.y18_c00194{bottom:567.453200pt;}
.y17_c00194{bottom:586.173467pt;}
.y16_c00194{bottom:604.733333pt;}
.y15_c00194{bottom:623.453067pt;}
.y14_c00194{bottom:642.173333pt;}
.y13_c00194{bottom:668.733600pt;}
.y12_c00194{bottom:687.453867pt;}
.y11_c00194{bottom:706.173600pt;}
.y10_c00194{bottom:724.733467pt;}
.yf_c00194{bottom:743.453733pt;}
.ye_c00194{bottom:762.173467pt;}
.yd_c00194{bottom:780.773467pt;}
.yc_c00194{bottom:799.493200pt;}
.yb_c00194{bottom:818.213467pt;}
.ya_c00194{bottom:836.774000pt;}
.y9_c00194{bottom:855.493733pt;}
.y8_c00194{bottom:874.213467pt;}
.y7_c00194{bottom:892.773333pt;}
.y6_c00194{bottom:911.493067pt;}
.y5_c00194{bottom:930.213333pt;}
.y4_c00194{bottom:956.773333pt;}
.y3_c00194{bottom:975.493067pt;}
.y2_c00194{bottom:994.213333pt;}
.y1_c00194{bottom:1053.600000pt;}
.h2_c00194{height:50.628750pt;}
.h3_c00194{height:50.629283pt;}
.h0_c00194{height:1122.560000pt;}
.h1_c00194{height:1122.666667pt;}
.w0_c00194{width:793.760000pt;}
.w1_c00194{width:794.000000pt;}
.x0_c00194{left:0.000000pt;}
.x1_c00194{left:113.471867pt;}
.x3_c00194{left:132.352133pt;}
.x2_c00194{left:137.466400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_749bd1275d43d704ac6a7d9c.woff2')format("woff");}.ff1_c00195{font-family:ff1_c00195;line-height:1.070312;font-style:normal;font-weight:normal;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_ccfae26782d71e301882c850.woff2')format("woff");}.ff2_c00195{font-family:ff2_c00195;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00195;src:url('chunks/assets/font_2c661173fbe578d4a1a8299a.woff2')format("woff");}.ff3_c00195{font-family:ff3_c00195;line-height:0.938965;font-style:normal;font-weight:normal;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_8b0701136755e70ca98120f9.woff2')format("woff");}.ff4_c00195{font-family:ff4_c00195;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.m1_c00195{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_c00195{vertical-align:0.000000px;}
.ls1_c00195{letter-spacing:0.000000px;}
.ls0_c00195{letter-spacing:5.345280px;}
.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;}
}
.ws2_c00195{word-spacing:-36.829440px;}
.ws0_c00195{word-spacing:-18.414720px;}
.ws3_c00195{word-spacing:-16.560000px;}
.ws1_c00195{word-spacing:-15.012000px;}
.ws4_c00195{word-spacing:0.000000px;}
._14_c00195{margin-left:-4.538381px;}
._10_c00195{margin-left:-3.378294px;}
._5_c00195{margin-left:-2.078787px;}
._0_c00195{margin-left:-1.060877px;}
._4_c00195{width:1.332400px;}
._e_c00195{width:2.642779px;}
._12_c00195{width:4.182483px;}
._11_c00195{width:5.674583px;}
._8_c00195{width:7.947504px;}
._6_c00195{width:9.074248px;}
._7_c00195{width:10.262780px;}
._c_c00195{width:11.542478px;}
._d_c00195{width:13.327668px;}
._9_c00195{width:15.036518px;}
._3_c00195{width:17.159626px;}
._f_c00195{width:20.231167px;}
._a_c00195{width:29.410705px;}
._b_c00195{width:31.226851px;}
._2_c00195{width:34.317480px;}
._13_c00195{width:36.257726px;}
._16_c00195{width:43.946836px;}
._15_c00195{width:45.188160px;}
._17_c00195{width:79.252176px;}
._1_c00195{width:2272.296567px;}
.fc1_c00195{color:rgb(255,0,0);}
.fc0_c00195{color:rgb(0,0,0);}
.fs1_c00195{font-size:54.000000px;}
.fs0_c00195{font-size:66.240000px;}
.y0_c00195{bottom:0.000000px;}
.y2e_c00195{bottom:113.255850px;}
.y2d_c00195{bottom:143.316150px;}
.y2c_c00195{bottom:173.370450px;}
.y2b_c00195{bottom:194.250300px;}
.y2a_c00195{bottom:215.310000px;}
.y29_c00195{bottom:245.370300px;}
.y28_c00195{bottom:266.250150px;}
.y27_c00195{bottom:287.309850px;}
.y26_c00195{bottom:308.370150px;}
.y25_c00195{bottom:329.250000px;}
.y24_c00195{bottom:359.354700px;}
.y23_c00195{bottom:380.415000px;}
.y22_c00195{bottom:410.295000px;}
.y21_c00195{bottom:431.354850px;}
.y20_c00195{bottom:452.415150px;}
.y1f_c00195{bottom:473.295000px;}
.y1e_c00195{bottom:494.354700px;}
.y1d_c00195{bottom:515.415000px;}
.y1c_c00195{bottom:545.295450px;}
.y1b_c00195{bottom:566.355150px;}
.y1a_c00195{bottom:587.415450px;}
.y19_c00195{bottom:608.325150px;}
.y18_c00195{bottom:629.384850px;}
.y17_c00195{bottom:650.445150px;}
.y16_c00195{bottom:671.325450px;}
.y15_c00195{bottom:692.385150px;}
.y14_c00195{bottom:713.445450px;}
.y13_c00195{bottom:734.325300px;}
.y12_c00195{bottom:755.385000px;}
.y11_c00195{bottom:785.445150px;}
.y10_c00195{bottom:806.325000px;}
.yf_c00195{bottom:827.385300px;}
.ye_c00195{bottom:848.445000px;}
.yd_c00195{bottom:869.324850px;}
.yc_c00195{bottom:890.429700px;}
.yb_c00195{bottom:911.490300px;}
.ya_c00195{bottom:932.370150px;}
.y9_c00195{bottom:953.429850px;}
.y8_c00195{bottom:974.490150px;}
.y7_c00195{bottom:995.370000px;}
.y6_c00195{bottom:1025.429850px;}
.y5_c00195{bottom:1046.490150px;}
.y4_c00195{bottom:1067.370000px;}
.y3_c00195{bottom:1097.429700px;}
.y2_c00195{bottom:1118.490000px;}
.y1_c00195{bottom:1185.300000px;}
.h3_c00195{height:48.224531px;}
.h2_c00195{height:56.957344px;}
.h0_c00195{height:1262.880000px;}
.h1_c00195{height:1263.000000px;}
.w0_c00195{width:892.980000px;}
.w1_c00195{width:893.250000px;}
.x0_c00195{left:0.000000px;}
.x1_c00195{left:127.655850px;}
.x3_c00195{left:148.896150px;}
.x2_c00195{left:154.649955px;}
@media print{
.v0_c00195{vertical-align:0.000000pt;}
.ls1_c00195{letter-spacing:0.000000pt;}
.ls0_c00195{letter-spacing:4.751360pt;}
.ws2_c00195{word-spacing:-32.737280pt;}
.ws0_c00195{word-spacing:-16.368640pt;}
.ws3_c00195{word-spacing:-14.720000pt;}
.ws1_c00195{word-spacing:-13.344000pt;}
.ws4_c00195{word-spacing:0.000000pt;}
._14_c00195{margin-left:-4.034117pt;}
._10_c00195{margin-left:-3.002928pt;}
._5_c00195{margin-left:-1.847810pt;}
._0_c00195{margin-left:-0.943001pt;}
._4_c00195{width:1.184356pt;}
._e_c00195{width:2.349137pt;}
._12_c00195{width:3.717763pt;}
._11_c00195{width:5.044074pt;}
._8_c00195{width:7.064448pt;}
._6_c00195{width:8.065998pt;}
._7_c00195{width:9.122472pt;}
._c_c00195{width:10.259980pt;}
._d_c00195{width:11.846816pt;}
._9_c00195{width:13.365794pt;}
._3_c00195{width:15.253001pt;}
._f_c00195{width:17.983259pt;}
._a_c00195{width:26.142849pt;}
._b_c00195{width:27.757201pt;}
._2_c00195{width:30.504427pt;}
._13_c00195{width:32.229090pt;}
._16_c00195{width:39.063854pt;}
._15_c00195{width:40.167253pt;}
._17_c00195{width:70.446379pt;}
._1_c00195{width:2019.819170pt;}
.fs1_c00195{font-size:48.000000pt;}
.fs0_c00195{font-size:58.880000pt;}
.y0_c00195{bottom:0.000000pt;}
.y2e_c00195{bottom:100.671867pt;}
.y2d_c00195{bottom:127.392133pt;}
.y2c_c00195{bottom:154.107067pt;}
.y2b_c00195{bottom:172.666933pt;}
.y2a_c00195{bottom:191.386667pt;}
.y29_c00195{bottom:218.106933pt;}
.y28_c00195{bottom:236.666800pt;}
.y27_c00195{bottom:255.386533pt;}
.y26_c00195{bottom:274.106800pt;}
.y25_c00195{bottom:292.666667pt;}
.y24_c00195{bottom:319.426400pt;}
.y23_c00195{bottom:338.146667pt;}
.y22_c00195{bottom:364.706667pt;}
.y21_c00195{bottom:383.426533pt;}
.y20_c00195{bottom:402.146800pt;}
.y1f_c00195{bottom:420.706667pt;}
.y1e_c00195{bottom:439.426400pt;}
.y1d_c00195{bottom:458.146667pt;}
.y1c_c00195{bottom:484.707067pt;}
.y1b_c00195{bottom:503.426800pt;}
.y1a_c00195{bottom:522.147067pt;}
.y19_c00195{bottom:540.733467pt;}
.y18_c00195{bottom:559.453200pt;}
.y17_c00195{bottom:578.173467pt;}
.y16_c00195{bottom:596.733733pt;}
.y15_c00195{bottom:615.453467pt;}
.y14_c00195{bottom:634.173733pt;}
.y13_c00195{bottom:652.733600pt;}
.y12_c00195{bottom:671.453333pt;}
.y11_c00195{bottom:698.173467pt;}
.y10_c00195{bottom:716.733333pt;}
.yf_c00195{bottom:735.453600pt;}
.ye_c00195{bottom:754.173333pt;}
.yd_c00195{bottom:772.733200pt;}
.yc_c00195{bottom:791.493067pt;}
.yb_c00195{bottom:810.213600pt;}
.ya_c00195{bottom:828.773467pt;}
.y9_c00195{bottom:847.493200pt;}
.y8_c00195{bottom:866.213467pt;}
.y7_c00195{bottom:884.773333pt;}
.y6_c00195{bottom:911.493200pt;}
.y5_c00195{bottom:930.213467pt;}
.y4_c00195{bottom:948.773333pt;}
.y3_c00195{bottom:975.493067pt;}
.y2_c00195{bottom:994.213333pt;}
.y1_c00195{bottom:1053.600000pt;}
.h3_c00195{height:42.866250pt;}
.h2_c00195{height:50.628750pt;}
.h0_c00195{height:1122.560000pt;}
.h1_c00195{height:1122.666667pt;}
.w0_c00195{width:793.760000pt;}
.w1_c00195{width:794.000000pt;}
.x0_c00195{left:0.000000pt;}
.x1_c00195{left:113.471867pt;}
.x3_c00195{left:132.352133pt;}
.x2_c00195{left:137.466627pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fdd53b9a4a06ebd84e56bbec.woff2')format("woff");}.ff1_c00196{font-family:ff1_c00196;line-height:1.070312;font-style:normal;font-weight:normal;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_8b0701136755e70ca98120f9.woff2')format("woff");}.ff2_c00196{font-family:ff2_c00196;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00196;src:url('chunks/assets/font_0f1ba9dbefce4231cd885e11.woff2')format("woff");}.ff3_c00196{font-family:ff3_c00196;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00196;src:url('chunks/assets/font_ccfae26782d71e301882c850.woff2')format("woff");}.ff4_c00196{font-family:ff4_c00196;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00196{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00196{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00196{vertical-align:0.000000px;}
.ls2_c00196{letter-spacing:0.000000px;}
.ls1_c00196{letter-spacing:2.988000px;}
.ls0_c00196{letter-spacing:69.426480px;}
.sc__c00196{text-shadow:none;}
.sc0_c00196{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00196{-webkit-text-stroke:0px transparent;}
.sc0_c00196{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00196{word-spacing:-39.744000px;}
.ws2_c00196{word-spacing:-18.414720px;}
.ws0_c00196{word-spacing:-16.560000px;}
.ws3_c00196{word-spacing:0.000000px;}
._9_c00196{margin-left:-4.437891px;}
._13_c00196{margin-left:-3.310098px;}
._a_c00196{margin-left:-2.119846px;}
._0_c00196{margin-left:-1.060877px;}
._3_c00196{width:1.129848px;}
._d_c00196{width:2.383372px;}
._c_c00196{width:3.511499px;}
._6_c00196{width:5.166505px;}
._7_c00196{width:6.292526px;}
._8_c00196{width:8.212152px;}
._e_c00196{width:9.806459px;}
._12_c00196{width:10.863360px;}
._5_c00196{width:12.055846px;}
._b_c00196{width:14.572222px;}
._14_c00196{width:16.038247px;}
._4_c00196{width:17.222546px;}
._15_c00196{width:19.466322px;}
._11_c00196{width:20.469026px;}
._10_c00196{width:22.058731px;}
._f_c00196{width:30.005926px;}
._2_c00196{width:79.252176px;}
._1_c00196{width:2272.296567px;}
.fc0_c00196{color:rgb(0,0,0);}
.fs1_c00196{font-size:54.000000px;}
.fs0_c00196{font-size:66.240000px;}
.y0_c00196{bottom:0.000000px;}
.y2f_c00196{bottom:92.376150px;}
.y2e_c00196{bottom:113.256000px;}
.y2d_c00196{bottom:134.316300px;}
.y2c_c00196{bottom:155.370150px;}
.y2b_c00196{bottom:176.250000px;}
.y2a_c00196{bottom:197.309700px;}
.y29_c00196{bottom:218.370000px;}
.y28_c00196{bottom:239.249850px;}
.y27_c00196{bottom:260.310150px;}
.y26_c00196{bottom:281.370450px;}
.y25_c00196{bottom:302.250300px;}
.y24_c00196{bottom:323.310600px;}
.y23_c00196{bottom:344.416050px;}
.y22_c00196{bottom:365.295900px;}
.y21_c00196{bottom:386.355600px;}
.y20_c00196{bottom:407.415900px;}
.y1f_c00196{bottom:428.295750px;}
.y1e_c00196{bottom:449.355450px;}
.y1d_c00196{bottom:470.415750px;}
.y1c_c00196{bottom:491.295600px;}
.y1b_c00196{bottom:512.355300px;}
.y1a_c00196{bottom:533.415600px;}
.y19_c00196{bottom:554.295450px;}
.y18_c00196{bottom:575.355150px;}
.y17_c00196{bottom:596.415450px;}
.y16_c00196{bottom:617.325150px;}
.y15_c00196{bottom:638.384850px;}
.y14_c00196{bottom:659.445150px;}
.y13_c00196{bottom:680.325000px;}
.y12_c00196{bottom:710.384850px;}
.y11_c00196{bottom:731.445150px;}
.y10_c00196{bottom:752.325000px;}
.yf_c00196{bottom:782.385000px;}
.ye_c00196{bottom:812.445000px;}
.yd_c00196{bottom:842.325000px;}
.yc_c00196{bottom:863.385300px;}
.yb_c00196{bottom:884.490150px;}
.ya_c00196{bottom:905.370000px;}
.y9_c00196{bottom:926.429700px;}
.y8_c00196{bottom:947.490000px;}
.y7_c00196{bottom:977.370300px;}
.y6_c00196{bottom:998.430000px;}
.y5_c00196{bottom:1028.490000px;}
.y4_c00196{bottom:1058.370000px;}
.y3_c00196{bottom:1088.430000px;}
.y2_c00196{bottom:1118.490000px;}
.y1_c00196{bottom:1185.300000px;}
.h2_c00196{height:56.957344px;}
.h0_c00196{height:1262.880000px;}
.h1_c00196{height:1263.000000px;}
.w0_c00196{width:892.980000px;}
.w1_c00196{width:893.250000px;}
.x0_c00196{left:0.000000px;}
.x1_c00196{left:127.655850px;}
.x3_c00196{left:148.896150px;}
.x2_c00196{left:159.510000px;}
@media print{
.v0_c00196{vertical-align:0.000000pt;}
.ls2_c00196{letter-spacing:0.000000pt;}
.ls1_c00196{letter-spacing:2.656000pt;}
.ls0_c00196{letter-spacing:61.712427pt;}
.ws1_c00196{word-spacing:-35.328000pt;}
.ws2_c00196{word-spacing:-16.368640pt;}
.ws0_c00196{word-spacing:-14.720000pt;}
.ws3_c00196{word-spacing:0.000000pt;}
._9_c00196{margin-left:-3.944792pt;}
._13_c00196{margin-left:-2.942309pt;}
._a_c00196{margin-left:-1.884307pt;}
._0_c00196{margin-left:-0.943001pt;}
._3_c00196{width:1.004310pt;}
._d_c00196{width:2.118553pt;}
._c_c00196{width:3.121332pt;}
._6_c00196{width:4.592449pt;}
._7_c00196{width:5.593357pt;}
._8_c00196{width:7.299690pt;}
._e_c00196{width:8.716853pt;}
._12_c00196{width:9.656320pt;}
._5_c00196{width:10.716307pt;}
._b_c00196{width:12.953087pt;}
._14_c00196{width:14.256219pt;}
._4_c00196{width:15.308930pt;}
._15_c00196{width:17.303398pt;}
._11_c00196{width:18.194690pt;}
._10_c00196{width:19.607761pt;}
._f_c00196{width:26.671934pt;}
._2_c00196{width:70.446379pt;}
._1_c00196{width:2019.819170pt;}
.fs1_c00196{font-size:48.000000pt;}
.fs0_c00196{font-size:58.880000pt;}
.y0_c00196{bottom:0.000000pt;}
.y2f_c00196{bottom:82.112133pt;}
.y2e_c00196{bottom:100.672000pt;}
.y2d_c00196{bottom:119.392267pt;}
.y2c_c00196{bottom:138.106800pt;}
.y2b_c00196{bottom:156.666667pt;}
.y2a_c00196{bottom:175.386400pt;}
.y29_c00196{bottom:194.106667pt;}
.y28_c00196{bottom:212.666533pt;}
.y27_c00196{bottom:231.386800pt;}
.y26_c00196{bottom:250.107067pt;}
.y25_c00196{bottom:268.666933pt;}
.y24_c00196{bottom:287.387200pt;}
.y23_c00196{bottom:306.147600pt;}
.y22_c00196{bottom:324.707467pt;}
.y21_c00196{bottom:343.427200pt;}
.y20_c00196{bottom:362.147467pt;}
.y1f_c00196{bottom:380.707333pt;}
.y1e_c00196{bottom:399.427067pt;}
.y1d_c00196{bottom:418.147333pt;}
.y1c_c00196{bottom:436.707200pt;}
.y1b_c00196{bottom:455.426933pt;}
.y1a_c00196{bottom:474.147200pt;}
.y19_c00196{bottom:492.707067pt;}
.y18_c00196{bottom:511.426800pt;}
.y17_c00196{bottom:530.147067pt;}
.y16_c00196{bottom:548.733467pt;}
.y15_c00196{bottom:567.453200pt;}
.y14_c00196{bottom:586.173467pt;}
.y13_c00196{bottom:604.733333pt;}
.y12_c00196{bottom:631.453200pt;}
.y11_c00196{bottom:650.173467pt;}
.y10_c00196{bottom:668.733333pt;}
.yf_c00196{bottom:695.453333pt;}
.ye_c00196{bottom:722.173333pt;}
.yd_c00196{bottom:748.733333pt;}
.yc_c00196{bottom:767.453600pt;}
.yb_c00196{bottom:786.213467pt;}
.ya_c00196{bottom:804.773333pt;}
.y9_c00196{bottom:823.493067pt;}
.y8_c00196{bottom:842.213333pt;}
.y7_c00196{bottom:868.773600pt;}
.y6_c00196{bottom:887.493333pt;}
.y5_c00196{bottom:914.213333pt;}
.y4_c00196{bottom:940.773333pt;}
.y3_c00196{bottom:967.493333pt;}
.y2_c00196{bottom:994.213333pt;}
.y1_c00196{bottom:1053.600000pt;}
.h2_c00196{height:50.628750pt;}
.h0_c00196{height:1122.560000pt;}
.h1_c00196{height:1122.666667pt;}
.w0_c00196{width:793.760000pt;}
.w1_c00196{width:794.000000pt;}
.x0_c00196{left:0.000000pt;}
.x1_c00196{left:113.471867pt;}
.x3_c00196{left:132.352133pt;}
.x2_c00196{left:141.786667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2b5742451288fa4768859810.woff2')format("woff");}.ff1_c00197{font-family:ff1_c00197;line-height:1.070312;font-style:normal;font-weight:normal;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_0a0ac1505722a1a4c7a99115.woff2')format("woff");}.ff2_c00197{font-family:ff2_c00197;line-height:0.938965;font-style: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);}
.m1_c00197{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_c00197{vertical-align:0.000000px;}
.ls1_c00197{letter-spacing:0.000000px;}
.ls0_c00197{letter-spacing:0.237120px;}
.sc__c00197{text-shadow:none;}
.sc0_c00197{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00197{-webkit-text-stroke:0px transparent;}
.sc0_c00197{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00197{word-spacing:-18.414720px;}
.ws1_c00197{word-spacing:-15.012000px;}
.ws2_c00197{word-spacing:0.000000px;}
._9_c00197{margin-left:-6.373366px;}
._5_c00197{margin-left:-3.906714px;}
._4_c00197{margin-left:-2.781883px;}
._0_c00197{margin-left:-1.060877px;}
._3_c00197{width:1.810183px;}
._f_c00197{width:3.726370px;}
._c_c00197{width:5.099362px;}
._15_c00197{width:6.208084px;}
._b_c00197{width:7.252824px;}
._12_c00197{width:8.254537px;}
._11_c00197{width:9.870382px;}
._e_c00197{width:10.993083px;}
._13_c00197{width:12.029898px;}
._7_c00197{width:13.338062px;}
._8_c00197{width:14.772383px;}
._d_c00197{width:16.027885px;}
._10_c00197{width:20.269259px;}
._2_c00197{width:21.660612px;}
._16_c00197{width:24.309806px;}
._a_c00197{width:26.746173px;}
._14_c00197{width:28.749048px;}
._6_c00197{width:31.662720px;}
._1_c00197{width:2272.296567px;}
.fc0_c00197{color:rgb(0,0,0);}
.fs1_c00197{font-size:54.000000px;}
.fs0_c00197{font-size:66.240000px;}
.y0_c00197{bottom:0.000000px;}
.y30_c00197{bottom:107.316750px;}
.y2f_c00197{bottom:128.376450px;}
.y2e_c00197{bottom:149.256300px;}
.y2d_c00197{bottom:170.310150px;}
.y2c_c00197{bottom:191.370450px;}
.y2b_c00197{bottom:212.250300px;}
.y2a_c00197{bottom:233.310000px;}
.y29_c00197{bottom:254.370300px;}
.y28_c00197{bottom:275.250150px;}
.y27_c00197{bottom:296.309850px;}
.y26_c00197{bottom:317.370150px;}
.y25_c00197{bottom:338.295150px;}
.y24_c00197{bottom:359.354850px;}
.y23_c00197{bottom:380.415150px;}
.y22_c00197{bottom:401.295000px;}
.y21_c00197{bottom:422.354700px;}
.y20_c00197{bottom:443.415000px;}
.y1f_c00197{bottom:473.295150px;}
.y1e_c00197{bottom:494.354850px;}
.y1d_c00197{bottom:515.415150px;}
.y1c_c00197{bottom:536.295000px;}
.y1b_c00197{bottom:557.354700px;}
.y1a_c00197{bottom:578.415000px;}
.y19_c00197{bottom:608.325000px;}
.y18_c00197{bottom:638.385000px;}
.y17_c00197{bottom:668.446350px;}
.y16_c00197{bottom:689.326200px;}
.y15_c00197{bottom:710.385900px;}
.y14_c00197{bottom:731.445600px;}
.y13_c00197{bottom:752.325450px;}
.y12_c00197{bottom:773.385750px;}
.y11_c00197{bottom:794.445450px;}
.y10_c00197{bottom:815.325300px;}
.yf_c00197{bottom:836.385600px;}
.ye_c00197{bottom:857.445300px;}
.yd_c00197{bottom:878.370300px;}
.yc_c00197{bottom:899.429700px;}
.yb_c00197{bottom:920.490000px;}
.ya_c00197{bottom:950.370300px;}
.y9_c00197{bottom:971.430000px;}
.y8_c00197{bottom:992.490300px;}
.y7_c00197{bottom:1013.370150px;}
.y6_c00197{bottom:1034.429850px;}
.y5_c00197{bottom:1055.490150px;}
.y4_c00197{bottom:1076.370000px;}
.y3_c00197{bottom:1097.429700px;}
.y2_c00197{bottom:1118.490000px;}
.y1_c00197{bottom:1185.300000px;}
.h2_c00197{height:56.957344px;}
.h3_c00197{height:56.958544px;}
.h0_c00197{height:1262.880000px;}
.h1_c00197{height:1263.000000px;}
.w0_c00197{width:892.980000px;}
.w1_c00197{width:893.250000px;}
.x0_c00197{left:0.000000px;}
.x1_c00197{left:127.655850px;}
.x2_c00197{left:148.896150px;}
@media print{
.v0_c00197{vertical-align:0.000000pt;}
.ls1_c00197{letter-spacing:0.000000pt;}
.ls0_c00197{letter-spacing:0.210773pt;}
.ws0_c00197{word-spacing:-16.368640pt;}
.ws1_c00197{word-spacing:-13.344000pt;}
.ws2_c00197{word-spacing:0.000000pt;}
._9_c00197{margin-left:-5.665214pt;}
._5_c00197{margin-left:-3.472635pt;}
._4_c00197{margin-left:-2.472785pt;}
._0_c00197{margin-left:-0.943001pt;}
._3_c00197{width:1.609051pt;}
._f_c00197{width:3.312329pt;}
._c_c00197{width:4.532766pt;}
._15_c00197{width:5.518297pt;}
._b_c00197{width:6.446954pt;}
._12_c00197{width:7.337366pt;}
._11_c00197{width:8.773673pt;}
._e_c00197{width:9.771629pt;}
._13_c00197{width:10.693243pt;}
._7_c00197{width:11.856055pt;}
._8_c00197{width:13.131007pt;}
._d_c00197{width:14.247009pt;}
._10_c00197{width:18.017119pt;}
._2_c00197{width:19.253877pt;}
._16_c00197{width:21.608716pt;}
._a_c00197{width:23.774376pt;}
._14_c00197{width:25.554709pt;}
._6_c00197{width:28.144640pt;}
._1_c00197{width:2019.819170pt;}
.fs1_c00197{font-size:48.000000pt;}
.fs0_c00197{font-size:58.880000pt;}
.y0_c00197{bottom:0.000000pt;}
.y30_c00197{bottom:95.392667pt;}
.y2f_c00197{bottom:114.112400pt;}
.y2e_c00197{bottom:132.672267pt;}
.y2d_c00197{bottom:151.386800pt;}
.y2c_c00197{bottom:170.107067pt;}
.y2b_c00197{bottom:188.666933pt;}
.y2a_c00197{bottom:207.386667pt;}
.y29_c00197{bottom:226.106933pt;}
.y28_c00197{bottom:244.666800pt;}
.y27_c00197{bottom:263.386533pt;}
.y26_c00197{bottom:282.106800pt;}
.y25_c00197{bottom:300.706800pt;}
.y24_c00197{bottom:319.426533pt;}
.y23_c00197{bottom:338.146800pt;}
.y22_c00197{bottom:356.706667pt;}
.y21_c00197{bottom:375.426400pt;}
.y20_c00197{bottom:394.146667pt;}
.y1f_c00197{bottom:420.706800pt;}
.y1e_c00197{bottom:439.426533pt;}
.y1d_c00197{bottom:458.146800pt;}
.y1c_c00197{bottom:476.706667pt;}
.y1b_c00197{bottom:495.426400pt;}
.y1a_c00197{bottom:514.146667pt;}
.y19_c00197{bottom:540.733333pt;}
.y18_c00197{bottom:567.453333pt;}
.y17_c00197{bottom:594.174533pt;}
.y16_c00197{bottom:612.734400pt;}
.y15_c00197{bottom:631.454133pt;}
.y14_c00197{bottom:650.173867pt;}
.y13_c00197{bottom:668.733733pt;}
.y12_c00197{bottom:687.454000pt;}
.y11_c00197{bottom:706.173733pt;}
.y10_c00197{bottom:724.733600pt;}
.yf_c00197{bottom:743.453867pt;}
.ye_c00197{bottom:762.173600pt;}
.yd_c00197{bottom:780.773600pt;}
.yc_c00197{bottom:799.493067pt;}
.yb_c00197{bottom:818.213333pt;}
.ya_c00197{bottom:844.773600pt;}
.y9_c00197{bottom:863.493333pt;}
.y8_c00197{bottom:882.213600pt;}
.y7_c00197{bottom:900.773467pt;}
.y6_c00197{bottom:919.493200pt;}
.y5_c00197{bottom:938.213467pt;}
.y4_c00197{bottom:956.773333pt;}
.y3_c00197{bottom:975.493067pt;}
.y2_c00197{bottom:994.213333pt;}
.y1_c00197{bottom:1053.600000pt;}
.h2_c00197{height:50.628750pt;}
.h3_c00197{height:50.629817pt;}
.h0_c00197{height:1122.560000pt;}
.h1_c00197{height:1122.666667pt;}
.w0_c00197{width:793.760000pt;}
.w1_c00197{width:794.000000pt;}
.x0_c00197{left:0.000000pt;}
.x1_c00197{left:113.471867pt;}
.x2_c00197{left:132.352133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e51855e0452a990a5b3ffd4e.woff2')format("woff");}.ff1_c00198{font-family:ff1_c00198;line-height:1.070312;font-style:normal;font-weight:normal;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_8b0701136755e70ca98120f9.woff2')format("woff");}.ff2_c00198{font-family:ff2_c00198;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00198{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00198{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00198{vertical-align:0.000000px;}
.ls3_c00198{letter-spacing:0.000000px;}
.ls2_c00198{letter-spacing:0.304320px;}
.ls0_c00198{letter-spacing:0.304800px;}
.ls1_c00198{letter-spacing:34.668480px;}
.sc__c00198{text-shadow:none;}
.sc0_c00198{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00198{-webkit-text-stroke:0px transparent;}
.sc0_c00198{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00198{word-spacing:-18.414720px;}
.ws0_c00198{word-spacing:-16.560000px;}
.ws2_c00198{word-spacing:-15.012000px;}
.ws3_c00198{word-spacing:0.000000px;}
._c_c00198{margin-left:-5.036066px;}
._17_c00198{margin-left:-3.905391px;}
._e_c00198{margin-left:-2.513992px;}
._0_c00198{margin-left:-1.060877px;}
._3_c00198{width:1.144185px;}
._8_c00198{width:2.451842px;}
._7_c00198{width:3.644217px;}
._4_c00198{width:5.102036px;}
._5_c00198{width:6.554316px;}
._6_c00198{width:7.802828px;}
._11_c00198{width:10.398129px;}
._d_c00198{width:12.122355px;}
._15_c00198{width:13.741257px;}
._13_c00198{width:14.771683px;}
._14_c00198{width:15.799322px;}
._16_c00198{width:20.136737px;}
._a_c00198{width:21.595109px;}
._b_c00198{width:23.184331px;}
._12_c00198{width:31.199786px;}
._10_c00198{width:34.080536px;}
._f_c00198{width:35.965905px;}
._9_c00198{width:37.226487px;}
._2_c00198{width:79.252176px;}
._1_c00198{width:2272.296567px;}
.fc0_c00198{color:rgb(0,0,0);}
.fs1_c00198{font-size:54.000000px;}
.fs0_c00198{font-size:66.240000px;}
.y0_c00198{bottom:0.000000px;}
.y2e_c00198{bottom:113.255400px;}
.y2d_c00198{bottom:134.315700px;}
.y2c_c00198{bottom:155.369550px;}
.y2b_c00198{bottom:176.249400px;}
.y2a_c00198{bottom:197.309700px;}
.y29_c00198{bottom:218.370000px;}
.y28_c00198{bottom:248.251200px;}
.y27_c00198{bottom:269.310900px;}
.y26_c00198{bottom:290.371200px;}
.y25_c00198{bottom:311.251050px;}
.y24_c00198{bottom:332.310750px;}
.y23_c00198{bottom:353.416200px;}
.y22_c00198{bottom:374.296050px;}
.y21_c00198{bottom:395.355750px;}
.y20_c00198{bottom:416.416050px;}
.y1f_c00198{bottom:437.295900px;}
.y1e_c00198{bottom:458.355600px;}
.y1d_c00198{bottom:479.415300px;}
.y1c_c00198{bottom:500.295150px;}
.y1b_c00198{bottom:521.354850px;}
.y1a_c00198{bottom:542.415150px;}
.y19_c00198{bottom:563.295150px;}
.y18_c00198{bottom:584.354850px;}
.y17_c00198{bottom:605.445150px;}
.y16_c00198{bottom:626.325000px;}
.y15_c00198{bottom:656.385000px;}
.y14_c00198{bottom:686.265000px;}
.y13_c00198{bottom:707.325150px;}
.y12_c00198{bottom:728.384850px;}
.y11_c00198{bottom:749.445150px;}
.y10_c00198{bottom:770.325000px;}
.yf_c00198{bottom:800.385150px;}
.ye_c00198{bottom:821.444850px;}
.yd_c00198{bottom:842.324700px;}
.yc_c00198{bottom:863.385000px;}
.yb_c00198{bottom:893.490150px;}
.ya_c00198{bottom:914.370000px;}
.y9_c00198{bottom:935.429700px;}
.y8_c00198{bottom:956.490000px;}
.y7_c00198{bottom:986.370000px;}
.y6_c00198{bottom:1016.429700px;}
.y5_c00198{bottom:1037.490000px;}
.y4_c00198{bottom:1067.370300px;}
.y3_c00198{bottom:1088.430000px;}
.y2_c00198{bottom:1118.490000px;}
.y1_c00198{bottom:1185.300000px;}
.h2_c00198{height:56.957344px;}
.h0_c00198{height:1262.880000px;}
.h1_c00198{height:1263.000000px;}
.w0_c00198{width:892.980000px;}
.w1_c00198{width:893.250000px;}
.x0_c00198{left:0.000000px;}
.x1_c00198{left:127.655850px;}
.x2_c00198{left:148.896150px;}
.x3_c00198{left:159.690150px;}
@media print{
.v0_c00198{vertical-align:0.000000pt;}
.ls3_c00198{letter-spacing:0.000000pt;}
.ls2_c00198{letter-spacing:0.270507pt;}
.ls0_c00198{letter-spacing:0.270933pt;}
.ls1_c00198{letter-spacing:30.816427pt;}
.ws1_c00198{word-spacing:-16.368640pt;}
.ws0_c00198{word-spacing:-14.720000pt;}
.ws2_c00198{word-spacing:-13.344000pt;}
.ws3_c00198{word-spacing:0.000000pt;}
._c_c00198{margin-left:-4.476503pt;}
._17_c00198{margin-left:-3.471459pt;}
._e_c00198{margin-left:-2.234660pt;}
._0_c00198{margin-left:-0.943001pt;}
._3_c00198{width:1.017054pt;}
._8_c00198{width:2.179415pt;}
._7_c00198{width:3.239304pt;}
._4_c00198{width:4.535143pt;}
._5_c00198{width:5.826059pt;}
._6_c00198{width:6.935847pt;}
._11_c00198{width:9.242781pt;}
._d_c00198{width:10.775427pt;}
._15_c00198{width:12.214451pt;}
._13_c00198{width:13.130385pt;}
._14_c00198{width:14.043842pt;}
._16_c00198{width:17.899322pt;}
._a_c00198{width:19.195653pt;}
._b_c00198{width:20.608294pt;}
._12_c00198{width:27.733143pt;}
._10_c00198{width:30.293809pt;}
._f_c00198{width:31.969693pt;}
._9_c00198{width:33.090211pt;}
._2_c00198{width:70.446379pt;}
._1_c00198{width:2019.819170pt;}
.fs1_c00198{font-size:48.000000pt;}
.fs0_c00198{font-size:58.880000pt;}
.y0_c00198{bottom:0.000000pt;}
.y2e_c00198{bottom:100.671467pt;}
.y2d_c00198{bottom:119.391733pt;}
.y2c_c00198{bottom:138.106267pt;}
.y2b_c00198{bottom:156.666133pt;}
.y2a_c00198{bottom:175.386400pt;}
.y29_c00198{bottom:194.106667pt;}
.y28_c00198{bottom:220.667733pt;}
.y27_c00198{bottom:239.387467pt;}
.y26_c00198{bottom:258.107733pt;}
.y25_c00198{bottom:276.667600pt;}
.y24_c00198{bottom:295.387333pt;}
.y23_c00198{bottom:314.147733pt;}
.y22_c00198{bottom:332.707600pt;}
.y21_c00198{bottom:351.427333pt;}
.y20_c00198{bottom:370.147600pt;}
.y1f_c00198{bottom:388.707467pt;}
.y1e_c00198{bottom:407.427200pt;}
.y1d_c00198{bottom:426.146933pt;}
.y1c_c00198{bottom:444.706800pt;}
.y1b_c00198{bottom:463.426533pt;}
.y1a_c00198{bottom:482.146800pt;}
.y19_c00198{bottom:500.706800pt;}
.y18_c00198{bottom:519.426533pt;}
.y17_c00198{bottom:538.173467pt;}
.y16_c00198{bottom:556.733333pt;}
.y15_c00198{bottom:583.453333pt;}
.y14_c00198{bottom:610.013333pt;}
.y13_c00198{bottom:628.733467pt;}
.y12_c00198{bottom:647.453200pt;}
.y11_c00198{bottom:666.173467pt;}
.y10_c00198{bottom:684.733333pt;}
.yf_c00198{bottom:711.453467pt;}
.ye_c00198{bottom:730.173200pt;}
.yd_c00198{bottom:748.733067pt;}
.yc_c00198{bottom:767.453333pt;}
.yb_c00198{bottom:794.213467pt;}
.ya_c00198{bottom:812.773333pt;}
.y9_c00198{bottom:831.493067pt;}
.y8_c00198{bottom:850.213333pt;}
.y7_c00198{bottom:876.773333pt;}
.y6_c00198{bottom:903.493067pt;}
.y5_c00198{bottom:922.213333pt;}
.y4_c00198{bottom:948.773600pt;}
.y3_c00198{bottom:967.493333pt;}
.y2_c00198{bottom:994.213333pt;}
.y1_c00198{bottom:1053.600000pt;}
.h2_c00198{height:50.628750pt;}
.h0_c00198{height:1122.560000pt;}
.h1_c00198{height:1122.666667pt;}
.w0_c00198{width:793.760000pt;}
.w1_c00198{width:794.000000pt;}
.x0_c00198{left:0.000000pt;}
.x1_c00198{left:113.471867pt;}
.x2_c00198{left:132.352133pt;}
.x3_c00198{left:141.946800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6832a3340065429836229448.woff2')format("woff");}.ff1_c00199{font-family:ff1_c00199;line-height:1.070312;font-style:normal;font-weight:normal;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_2d53dd2cf76d02d5676222a8.woff2')format("woff");}.ff2_c00199{font-family:ff2_c00199;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1_c00199{vertical-align:-5.758596px;}
.v0_c00199{vertical-align:0.000000px;}
.v2_c00199{vertical-align:5.758596px;}
.ls0_c00199{letter-spacing:0.000000px;}
.sc__c00199{text-shadow:none;}
.sc0_c00199{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00199{-webkit-text-stroke:0px transparent;}
.sc0_c00199{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00199{word-spacing:-18.414720px;}
.ws0_c00199{word-spacing:-15.012000px;}
.ws1_c00199{word-spacing:-11.609280px;}
.ws3_c00199{word-spacing:0.000000px;}
._11_c00199{margin-left:-9.173863px;}
._10_c00199{margin-left:-8.121476px;}
._7_c00199{margin-left:-6.837665px;}
._f_c00199{margin-left:-5.805545px;}
._d_c00199{margin-left:-3.709771px;}
._12_c00199{margin-left:-2.251746px;}
._0_c00199{margin-left:-1.060877px;}
._4_c00199{width:1.731384px;}
._14_c00199{width:3.360178px;}
._b_c00199{width:5.100202px;}
._a_c00199{width:6.425773px;}
._e_c00199{width:8.412907px;}
._3_c00199{width:9.869392px;}
._5_c00199{width:11.028325px;}
._8_c00199{width:12.385441px;}
._9_c00199{width:13.838642px;}
._17_c00199{width:15.010563px;}
._18_c00199{width:16.278476px;}
._c_c00199{width:22.389900px;}
._2_c00199{width:25.504374px;}
._19_c00199{width:26.893668px;}
._1a_c00199{width:28.335977px;}
._16_c00199{width:29.496326px;}
._15_c00199{width:30.697929px;}
._13_c00199{width:33.024724px;}
._6_c00199{width:34.317480px;}
._1_c00199{width:2272.296567px;}
.fc0_c00199{color:rgb(0,0,0);}
.fs2_c00199{font-size:41.760000px;}
.fs1_c00199{font-size:54.000000px;}
.fs0_c00199{font-size:66.240000px;}
.y0_c00199{bottom:0.000000px;}
.y2e_c00199{bottom:95.256600px;}
.y2d_c00199{bottom:116.316300px;}
.y2c_c00199{bottom:137.376000px;}
.y2b_c00199{bottom:158.250000px;}
.y2a_c00199{bottom:188.309700px;}
.y29_c00199{bottom:209.370000px;}
.y28_c00199{bottom:239.249850px;}
.y27_c00199{bottom:260.310150px;}
.y26_c00199{bottom:281.370450px;}
.y25_c00199{bottom:302.250300px;}
.y24_c00199{bottom:323.310000px;}
.y23_c00199{bottom:353.415450px;}
.y22_c00199{bottom:374.295300px;}
.y21_c00199{bottom:395.355000px;}
.y20_c00199{bottom:425.415600px;}
.y1f_c00199{bottom:446.295450px;}
.y1e_c00199{bottom:467.355150px;}
.y1d_c00199{bottom:488.415450px;}
.y1c_c00199{bottom:509.295300px;}
.y1b_c00199{bottom:530.355000px;}
.y1a_c00199{bottom:560.415000px;}
.y19_c00199{bottom:590.295000px;}
.y18_c00199{bottom:611.384700px;}
.y17_c00199{bottom:632.445000px;}
.y16_c00199{bottom:662.325900px;}
.y15_c00199{bottom:683.385600px;}
.y14_c00199{bottom:704.445300px;}
.y13_c00199{bottom:725.325150px;}
.y12_c00199{bottom:746.384850px;}
.y11_c00199{bottom:767.445150px;}
.y10_c00199{bottom:788.325000px;}
.yf_c00199{bottom:809.385300px;}
.ye_c00199{bottom:830.445000px;}
.yd_c00199{bottom:860.325300px;}
.yc_c00199{bottom:881.430150px;}
.yb_c00199{bottom:902.490450px;}
.ya_c00199{bottom:923.370300px;}
.y9_c00199{bottom:944.430000px;}
.y8_c00199{bottom:974.490150px;}
.y7_c00199{bottom:995.370000px;}
.y6_c00199{bottom:1025.430000px;}
.y5_c00199{bottom:1055.490150px;}
.y4_c00199{bottom:1076.370000px;}
.y3_c00199{bottom:1097.429700px;}
.y2_c00199{bottom:1118.490000px;}
.y1_c00199{bottom:1185.300000px;}
.h3_c00199{height:48.224531px;}
.h2_c00199{height:56.957344px;}
.h0_c00199{height:1262.880000px;}
.h1_c00199{height:1263.000000px;}
.w0_c00199{width:892.980000px;}
.w1_c00199{width:893.250000px;}
.x0_c00199{left:0.000000px;}
.x1_c00199{left:127.655850px;}
.x2_c00199{left:148.896150px;}
.x3_c00199{left:154.649955px;}
@media print{
.v1_c00199{vertical-align:-5.118752pt;}
.v0_c00199{vertical-align:0.000000pt;}
.v2_c00199{vertical-align:5.118752pt;}
.ls0_c00199{letter-spacing:0.000000pt;}
.ws2_c00199{word-spacing:-16.368640pt;}
.ws0_c00199{word-spacing:-13.344000pt;}
.ws1_c00199{word-spacing:-10.319360pt;}
.ws3_c00199{word-spacing:0.000000pt;}
._11_c00199{margin-left:-8.154545pt;}
._10_c00199{margin-left:-7.219090pt;}
._7_c00199{margin-left:-6.077924pt;}
._f_c00199{margin-left:-5.160484pt;}
._d_c00199{margin-left:-3.297574pt;}
._12_c00199{margin-left:-2.001552pt;}
._0_c00199{margin-left:-0.943001pt;}
._4_c00199{width:1.539008pt;}
._14_c00199{width:2.986825pt;}
._b_c00199{width:4.533513pt;}
._a_c00199{width:5.711798pt;}
._e_c00199{width:7.478140pt;}
._3_c00199{width:8.772793pt;}
._5_c00199{width:9.802955pt;}
._8_c00199{width:11.009281pt;}
._9_c00199{width:12.301015pt;}
._17_c00199{width:13.342723pt;}
._18_c00199{width:14.469757pt;}
._c_c00199{width:19.902134pt;}
._2_c00199{width:22.670555pt;}
._19_c00199{width:23.905483pt;}
._1a_c00199{width:25.187535pt;}
._16_c00199{width:26.218957pt;}
._15_c00199{width:27.287048pt;}
._13_c00199{width:29.355311pt;}
._6_c00199{width:30.504427pt;}
._1_c00199{width:2019.819170pt;}
.fs2_c00199{font-size:37.120000pt;}
.fs1_c00199{font-size:48.000000pt;}
.fs0_c00199{font-size:58.880000pt;}
.y0_c00199{bottom:0.000000pt;}
.y2e_c00199{bottom:84.672533pt;}
.y2d_c00199{bottom:103.392267pt;}
.y2c_c00199{bottom:122.112000pt;}
.y2b_c00199{bottom:140.666667pt;}
.y2a_c00199{bottom:167.386400pt;}
.y29_c00199{bottom:186.106667pt;}
.y28_c00199{bottom:212.666533pt;}
.y27_c00199{bottom:231.386800pt;}
.y26_c00199{bottom:250.107067pt;}
.y25_c00199{bottom:268.666933pt;}
.y24_c00199{bottom:287.386667pt;}
.y23_c00199{bottom:314.147067pt;}
.y22_c00199{bottom:332.706933pt;}
.y21_c00199{bottom:351.426667pt;}
.y20_c00199{bottom:378.147200pt;}
.y1f_c00199{bottom:396.707067pt;}
.y1e_c00199{bottom:415.426800pt;}
.y1d_c00199{bottom:434.147067pt;}
.y1c_c00199{bottom:452.706933pt;}
.y1b_c00199{bottom:471.426667pt;}
.y1a_c00199{bottom:498.146667pt;}
.y19_c00199{bottom:524.706667pt;}
.y18_c00199{bottom:543.453067pt;}
.y17_c00199{bottom:562.173333pt;}
.y16_c00199{bottom:588.734133pt;}
.y15_c00199{bottom:607.453867pt;}
.y14_c00199{bottom:626.173600pt;}
.y13_c00199{bottom:644.733467pt;}
.y12_c00199{bottom:663.453200pt;}
.y11_c00199{bottom:682.173467pt;}
.y10_c00199{bottom:700.733333pt;}
.yf_c00199{bottom:719.453600pt;}
.ye_c00199{bottom:738.173333pt;}
.yd_c00199{bottom:764.733600pt;}
.yc_c00199{bottom:783.493467pt;}
.yb_c00199{bottom:802.213733pt;}
.ya_c00199{bottom:820.773600pt;}
.y9_c00199{bottom:839.493333pt;}
.y8_c00199{bottom:866.213467pt;}
.y7_c00199{bottom:884.773333pt;}
.y6_c00199{bottom:911.493333pt;}
.y5_c00199{bottom:938.213467pt;}
.y4_c00199{bottom:956.773333pt;}
.y3_c00199{bottom:975.493067pt;}
.y2_c00199{bottom:994.213333pt;}
.y1_c00199{bottom:1053.600000pt;}
.h3_c00199{height:42.866250pt;}
.h2_c00199{height:50.628750pt;}
.h0_c00199{height:1122.560000pt;}
.h1_c00199{height:1122.666667pt;}
.w0_c00199{width:793.760000pt;}
.w1_c00199{width:794.000000pt;}
.x0_c00199{left:0.000000pt;}
.x1_c00199{left:113.471867pt;}
.x2_c00199{left:132.352133pt;}
.x3_c00199{left:137.466627pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4b03d9df125821bf85f483a0.woff2')format("woff");}.ff1_c00200{font-family:ff1_c00200;line-height:1.070312;font-style:normal;font-weight:normal;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_8b0701136755e70ca98120f9.woff2')format("woff");}.ff2_c00200{font-family:ff2_c00200;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00200{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00200{vertical-align:-5.758596px;}
.v0_c00200{vertical-align:0.000000px;}
.v2_c00200{vertical-align:5.758596px;}
.ls0_c00200{letter-spacing:0.000000px;}
.sc__c00200{text-shadow:none;}
.sc0_c00200{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00200{-webkit-text-stroke:0px transparent;}
.sc0_c00200{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00200{word-spacing:-16.560000px;}
.ws1_c00200{word-spacing:-11.609280px;}
.ws2_c00200{word-spacing:0.000000px;}
._a_c00200{margin-left:-4.499412px;}
._9_c00200{margin-left:-3.378021px;}
._0_c00200{margin-left:-1.060877px;}
._5_c00200{width:1.325033px;}
._6_c00200{width:2.385292px;}
._3_c00200{width:3.446052px;}
._2_c00200{width:4.967852px;}
._7_c00200{width:6.424039px;}
._8_c00200{width:8.019537px;}
._10_c00200{width:10.532853px;}
._11_c00200{width:11.611308px;}
._b_c00200{width:13.381012px;}
._c_c00200{width:15.897830px;}
._d_c00200{width:20.481766px;}
._f_c00200{width:22.187800px;}
._e_c00200{width:23.981228px;}
._4_c00200{width:34.317480px;}
._12_c00200{width:79.252176px;}
._1_c00200{width:2272.296567px;}
.fc0_c00200{color:rgb(0,0,0);}
.fs1_c00200{font-size:41.760000px;}
.fs0_c00200{font-size:66.240000px;}
.y0_c00200{bottom:0.000000px;}
.y2d_c00200{bottom:116.316600px;}
.y2c_c00200{bottom:137.376300px;}
.y2b_c00200{bottom:158.250300px;}
.y2a_c00200{bottom:179.310000px;}
.y29_c00200{bottom:209.370150px;}
.y28_c00200{bottom:230.250000px;}
.y27_c00200{bottom:260.310150px;}
.y26_c00200{bottom:281.370450px;}
.y25_c00200{bottom:302.250300px;}
.y24_c00200{bottom:323.310000px;}
.y23_c00200{bottom:353.415450px;}
.y22_c00200{bottom:374.295300px;}
.y21_c00200{bottom:395.355000px;}
.y20_c00200{bottom:425.415450px;}
.y1f_c00200{bottom:446.295300px;}
.y1e_c00200{bottom:467.355000px;}
.y1d_c00200{bottom:497.415000px;}
.y1c_c00200{bottom:518.294850px;}
.y1b_c00200{bottom:539.355150px;}
.y1a_c00200{bottom:560.415450px;}
.y19_c00200{bottom:581.295300px;}
.y18_c00200{bottom:602.355000px;}
.y17_c00200{bottom:632.444700px;}
.y16_c00200{bottom:653.324550px;}
.y15_c00200{bottom:674.384850px;}
.y14_c00200{bottom:695.445150px;}
.y13_c00200{bottom:716.325000px;}
.y12_c00200{bottom:746.385000px;}
.y11_c00200{bottom:776.445351px;}
.y10_c00200{bottom:797.325201px;}
.yf_c00200{bottom:818.385501px;}
.ye_c00200{bottom:839.445201px;}
.yd_c00200{bottom:860.325150px;}
.yc_c00200{bottom:881.430000px;}
.yb_c00200{bottom:911.490450px;}
.ya_c00200{bottom:932.370300px;}
.y9_c00200{bottom:953.430000px;}
.y8_c00200{bottom:983.489700px;}
.y7_c00200{bottom:1004.369550px;}
.y6_c00200{bottom:1025.429850px;}
.y5_c00200{bottom:1046.490150px;}
.y4_c00200{bottom:1067.370000px;}
.y3_c00200{bottom:1097.429700px;}
.y2_c00200{bottom:1118.490000px;}
.y1_c00200{bottom:1185.300000px;}
.h2_c00200{height:56.957344px;}
.h0_c00200{height:1262.880000px;}
.h1_c00200{height:1263.000000px;}
.w0_c00200{width:892.980000px;}
.w1_c00200{width:893.250000px;}
.x0_c00200{left:0.000000px;}
.x1_c00200{left:127.655850px;}
.x3_c00200{left:148.896150px;}
.x2_c00200{left:154.650000px;}
.x4_c00200{left:159.690150px;}
@media print{
.v1_c00200{vertical-align:-5.118752pt;}
.v0_c00200{vertical-align:0.000000pt;}
.v2_c00200{vertical-align:5.118752pt;}
.ls0_c00200{letter-spacing:0.000000pt;}
.ws0_c00200{word-spacing:-14.720000pt;}
.ws1_c00200{word-spacing:-10.319360pt;}
.ws2_c00200{word-spacing:0.000000pt;}
._a_c00200{margin-left:-3.999477pt;}
._9_c00200{margin-left:-3.002685pt;}
._0_c00200{margin-left:-0.943001pt;}
._5_c00200{width:1.177807pt;}
._6_c00200{width:2.120259pt;}
._3_c00200{width:3.063157pt;}
._2_c00200{width:4.415869pt;}
._7_c00200{width:5.710257pt;}
._8_c00200{width:7.128477pt;}
._10_c00200{width:9.362536pt;}
._11_c00200{width:10.321162pt;}
._b_c00200{width:11.894233pt;}
._c_c00200{width:14.131404pt;}
._d_c00200{width:18.206014pt;}
._f_c00200{width:19.722489pt;}
._e_c00200{width:21.316647pt;}
._4_c00200{width:30.504427pt;}
._12_c00200{width:70.446379pt;}
._1_c00200{width:2019.819170pt;}
.fs1_c00200{font-size:37.120000pt;}
.fs0_c00200{font-size:58.880000pt;}
.y0_c00200{bottom:0.000000pt;}
.y2d_c00200{bottom:103.392533pt;}
.y2c_c00200{bottom:122.112267pt;}
.y2b_c00200{bottom:140.666933pt;}
.y2a_c00200{bottom:159.386667pt;}
.y29_c00200{bottom:186.106800pt;}
.y28_c00200{bottom:204.666667pt;}
.y27_c00200{bottom:231.386800pt;}
.y26_c00200{bottom:250.107067pt;}
.y25_c00200{bottom:268.666933pt;}
.y24_c00200{bottom:287.386667pt;}
.y23_c00200{bottom:314.147067pt;}
.y22_c00200{bottom:332.706933pt;}
.y21_c00200{bottom:351.426667pt;}
.y20_c00200{bottom:378.147067pt;}
.y1f_c00200{bottom:396.706933pt;}
.y1e_c00200{bottom:415.426667pt;}
.y1d_c00200{bottom:442.146667pt;}
.y1c_c00200{bottom:460.706533pt;}
.y1b_c00200{bottom:479.426800pt;}
.y1a_c00200{bottom:498.147067pt;}
.y19_c00200{bottom:516.706933pt;}
.y18_c00200{bottom:535.426667pt;}
.y17_c00200{bottom:562.173067pt;}
.y16_c00200{bottom:580.732933pt;}
.y15_c00200{bottom:599.453200pt;}
.y14_c00200{bottom:618.173467pt;}
.y13_c00200{bottom:636.733333pt;}
.y12_c00200{bottom:663.453333pt;}
.y11_c00200{bottom:690.173645pt;}
.y10_c00200{bottom:708.733512pt;}
.yf_c00200{bottom:727.453779pt;}
.ye_c00200{bottom:746.173512pt;}
.yd_c00200{bottom:764.733467pt;}
.yc_c00200{bottom:783.493333pt;}
.yb_c00200{bottom:810.213733pt;}
.ya_c00200{bottom:828.773600pt;}
.y9_c00200{bottom:847.493333pt;}
.y8_c00200{bottom:874.213067pt;}
.y7_c00200{bottom:892.772933pt;}
.y6_c00200{bottom:911.493200pt;}
.y5_c00200{bottom:930.213467pt;}
.y4_c00200{bottom:948.773333pt;}
.y3_c00200{bottom:975.493067pt;}
.y2_c00200{bottom:994.213333pt;}
.y1_c00200{bottom:1053.600000pt;}
.h2_c00200{height:50.628750pt;}
.h0_c00200{height:1122.560000pt;}
.h1_c00200{height:1122.666667pt;}
.w0_c00200{width:793.760000pt;}
.w1_c00200{width:794.000000pt;}
.x0_c00200{left:0.000000pt;}
.x1_c00200{left:113.471867pt;}
.x3_c00200{left:132.352133pt;}
.x2_c00200{left:137.466667pt;}
.x4_c00200{left:141.946800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ea4e9fa47d7f7cc7b93f44c4.woff2')format("woff");}.ff1_c00201{font-family:ff1_c00201;line-height:1.070312;font-style:normal;font-weight:normal;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_162cfeb1d1e2c36747cafb72.woff2')format("woff");}.ff2_c00201{font-family:ff2_c00201;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls4_c00201{letter-spacing:0.000000px;}
.ls3_c00201{letter-spacing:0.107520px;}
.ls0_c00201{letter-spacing:0.304800px;}
.ls2_c00201{letter-spacing:0.443940px;}
.ls1_c00201{letter-spacing:36.107520px;}
.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;}
}
.ws1_c00201{word-spacing:-18.414720px;}
.ws0_c00201{word-spacing:-15.012000px;}
.ws2_c00201{word-spacing:0.000000px;}
._b_c00201{margin-left:-8.269021px;}
._9_c00201{margin-left:-6.619998px;}
._a_c00201{margin-left:-5.316381px;}
._7_c00201{margin-left:-3.842121px;}
._e_c00201{margin-left:-2.423250px;}
._0_c00201{margin-left:-1.060877px;}
._4_c00201{width:1.739885px;}
._8_c00201{width:2.961520px;}
._6_c00201{width:4.769078px;}
._5_c00201{width:5.884900px;}
._2_c00201{width:7.678704px;}
._3_c00201{width:8.964121px;}
._c_c00201{width:11.127989px;}
._d_c00201{width:12.618160px;}
._14_c00201{width:13.635072px;}
._15_c00201{width:14.687353px;}
._10_c00201{width:16.565846px;}
._f_c00201{width:19.673231px;}
._13_c00201{width:20.713960px;}
._11_c00201{width:22.329459px;}
._12_c00201{width:23.520996px;}
._19_c00201{width:29.773805px;}
._1a_c00201{width:30.969675px;}
._16_c00201{width:37.425155px;}
._17_c00201{width:38.441918px;}
._18_c00201{width:62.288245px;}
._1_c00201{width:2272.296567px;}
.fc0_c00201{color:rgb(0,0,0);}
.fs1_c00201{font-size:54.000000px;}
.fs0_c00201{font-size:66.240000px;}
.y0_c00201{bottom:0.000000px;}
.y2e_c00201{bottom:113.256450px;}
.y2d_c00201{bottom:134.316750px;}
.y2c_c00201{bottom:155.370600px;}
.y2b_c00201{bottom:176.250450px;}
.y2a_c00201{bottom:197.310150px;}
.y29_c00201{bottom:218.370450px;}
.y28_c00201{bottom:239.250300px;}
.y27_c00201{bottom:260.310000px;}
.y26_c00201{bottom:290.370000px;}
.y25_c00201{bottom:311.249850px;}
.y24_c00201{bottom:332.309550px;}
.y23_c00201{bottom:353.415000px;}
.y22_c00201{bottom:383.295000px;}
.y21_c00201{bottom:440.355300px;}
.y20_c00201{bottom:461.415600px;}
.y1f_c00201{bottom:482.295450px;}
.y1e_c00201{bottom:503.355150px;}
.y1d_c00201{bottom:524.415450px;}
.y1c_c00201{bottom:545.295300px;}
.y1b_c00201{bottom:566.355000px;}
.y1a_c00201{bottom:587.415300px;}
.y19_c00201{bottom:608.325000px;}
.y18_c00201{bottom:629.384700px;}
.y17_c00201{bottom:650.445000px;}
.y16_c00201{bottom:671.324850px;}
.y15_c00201{bottom:692.385150px;}
.y14_c00201{bottom:713.445450px;}
.y13_c00201{bottom:734.325300px;}
.y12_c00201{bottom:755.385000px;}
.y11_c00201{bottom:776.445300px;}
.y10_c00201{bottom:797.325150px;}
.yf_c00201{bottom:818.385450px;}
.ye_c00201{bottom:839.445150px;}
.yd_c00201{bottom:860.325000px;}
.yc_c00201{bottom:881.429850px;}
.yb_c00201{bottom:902.490150px;}
.ya_c00201{bottom:923.370000px;}
.y9_c00201{bottom:953.430000px;}
.y8_c00201{bottom:983.490150px;}
.y7_c00201{bottom:1004.370000px;}
.y6_c00201{bottom:1025.429700px;}
.y5_c00201{bottom:1046.490000px;}
.y4_c00201{bottom:1076.370000px;}
.y3_c00201{bottom:1097.429700px;}
.y2_c00201{bottom:1118.490000px;}
.y1_c00201{bottom:1185.300000px;}
.h3_c00201{height:48.224531px;}
.h2_c00201{height:56.957344px;}
.h0_c00201{height:1262.880000px;}
.h1_c00201{height:1263.000000px;}
.w0_c00201{width:892.980000px;}
.w1_c00201{width:893.250000px;}
.x0_c00201{left:0.000000px;}
.x1_c00201{left:127.655850px;}
.x2_c00201{left:148.896150px;}
@media print{
.v0_c00201{vertical-align:0.000000pt;}
.ls4_c00201{letter-spacing:0.000000pt;}
.ls3_c00201{letter-spacing:0.095573pt;}
.ls0_c00201{letter-spacing:0.270933pt;}
.ls2_c00201{letter-spacing:0.394613pt;}
.ls1_c00201{letter-spacing:32.095573pt;}
.ws1_c00201{word-spacing:-16.368640pt;}
.ws0_c00201{word-spacing:-13.344000pt;}
.ws2_c00201{word-spacing:0.000000pt;}
._b_c00201{margin-left:-7.350241pt;}
._9_c00201{margin-left:-5.884442pt;}
._a_c00201{margin-left:-4.725672pt;}
._7_c00201{margin-left:-3.415218pt;}
._e_c00201{margin-left:-2.154000pt;}
._0_c00201{margin-left:-0.943001pt;}
._4_c00201{width:1.546564pt;}
._8_c00201{width:2.632462pt;}
._6_c00201{width:4.239180pt;}
._5_c00201{width:5.231022pt;}
._2_c00201{width:6.825515pt;}
._3_c00201{width:7.968107pt;}
._c_c00201{width:9.891546pt;}
._d_c00201{width:11.216142pt;}
._14_c00201{width:12.120064pt;}
._15_c00201{width:13.055425pt;}
._10_c00201{width:14.725196pt;}
._f_c00201{width:17.487316pt;}
._13_c00201{width:18.412409pt;}
._11_c00201{width:19.848408pt;}
._12_c00201{width:20.907552pt;}
._19_c00201{width:26.465604pt;}
._1a_c00201{width:27.528600pt;}
._16_c00201{width:33.266804pt;}
._17_c00201{width:34.170594pt;}
._18_c00201{width:55.367329pt;}
._1_c00201{width:2019.819170pt;}
.fs1_c00201{font-size:48.000000pt;}
.fs0_c00201{font-size:58.880000pt;}
.y0_c00201{bottom:0.000000pt;}
.y2e_c00201{bottom:100.672400pt;}
.y2d_c00201{bottom:119.392667pt;}
.y2c_c00201{bottom:138.107200pt;}
.y2b_c00201{bottom:156.667067pt;}
.y2a_c00201{bottom:175.386800pt;}
.y29_c00201{bottom:194.107067pt;}
.y28_c00201{bottom:212.666933pt;}
.y27_c00201{bottom:231.386667pt;}
.y26_c00201{bottom:258.106667pt;}
.y25_c00201{bottom:276.666533pt;}
.y24_c00201{bottom:295.386267pt;}
.y23_c00201{bottom:314.146667pt;}
.y22_c00201{bottom:340.706667pt;}
.y21_c00201{bottom:391.426933pt;}
.y20_c00201{bottom:410.147200pt;}
.y1f_c00201{bottom:428.707067pt;}
.y1e_c00201{bottom:447.426800pt;}
.y1d_c00201{bottom:466.147067pt;}
.y1c_c00201{bottom:484.706933pt;}
.y1b_c00201{bottom:503.426667pt;}
.y1a_c00201{bottom:522.146933pt;}
.y19_c00201{bottom:540.733333pt;}
.y18_c00201{bottom:559.453067pt;}
.y17_c00201{bottom:578.173333pt;}
.y16_c00201{bottom:596.733200pt;}
.y15_c00201{bottom:615.453467pt;}
.y14_c00201{bottom:634.173733pt;}
.y13_c00201{bottom:652.733600pt;}
.y12_c00201{bottom:671.453333pt;}
.y11_c00201{bottom:690.173600pt;}
.y10_c00201{bottom:708.733467pt;}
.yf_c00201{bottom:727.453733pt;}
.ye_c00201{bottom:746.173467pt;}
.yd_c00201{bottom:764.733333pt;}
.yc_c00201{bottom:783.493200pt;}
.yb_c00201{bottom:802.213467pt;}
.ya_c00201{bottom:820.773333pt;}
.y9_c00201{bottom:847.493333pt;}
.y8_c00201{bottom:874.213467pt;}
.y7_c00201{bottom:892.773333pt;}
.y6_c00201{bottom:911.493067pt;}
.y5_c00201{bottom:930.213333pt;}
.y4_c00201{bottom:956.773333pt;}
.y3_c00201{bottom:975.493067pt;}
.y2_c00201{bottom:994.213333pt;}
.y1_c00201{bottom:1053.600000pt;}
.h3_c00201{height:42.866250pt;}
.h2_c00201{height:50.628750pt;}
.h0_c00201{height:1122.560000pt;}
.h1_c00201{height:1122.666667pt;}
.w0_c00201{width:793.760000pt;}
.w1_c00201{width:794.000000pt;}
.x0_c00201{left:0.000000pt;}
.x1_c00201{left:113.471867pt;}
.x2_c00201{left:132.352133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9b582f18bf62829eed693e78.woff2')format("woff");}.ff1_c00202{font-family:ff1_c00202;line-height:1.070312;font-style:normal;font-weight:normal;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_b101ec851975acfbcd1ff63d.woff2')format("woff");}.ff2_c00202{font-family:ff2_c00202;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls0_c00202{letter-spacing:0.000000px;}
.sc__c00202{text-shadow:none;}
.sc0_c00202{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00202{-webkit-text-stroke:0px transparent;}
.sc0_c00202{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00202{word-spacing:0.000000px;}
._10_c00202{margin-left:-4.280533px;}
._4_c00202{margin-left:-2.914707px;}
._0_c00202{margin-left:-1.060877px;}
._6_c00202{width:1.515496px;}
._7_c00202{width:2.782852px;}
._8_c00202{width:3.839138px;}
._3_c00202{width:5.433801px;}
._2_c00202{width:6.886663px;}
._d_c00202{width:8.214798px;}
._14_c00202{width:9.338531px;}
._5_c00202{width:10.862566px;}
._f_c00202{width:12.326406px;}
._11_c00202{width:13.400267px;}
._e_c00202{width:14.439525px;}
._a_c00202{width:15.898028px;}
._b_c00202{width:16.957686px;}
._13_c00202{width:21.653512px;}
._12_c00202{width:22.689154px;}
._9_c00202{width:23.916129px;}
._c_c00202{width:62.288245px;}
._15_c00202{width:845.631840px;}
._1_c00202{width:2272.296567px;}
.fc0_c00202{color:rgb(0,0,0);}
.fs0_c00202{font-size:66.240000px;}
.fs1_c00202{font-size:84.240000px;}
.y0_c00202{bottom:0.000000px;}
.y26_c00202{bottom:272.370000px;}
.y25_c00202{bottom:302.250000px;}
.y24_c00202{bottom:323.309700px;}
.y23_c00202{bottom:344.415150px;}
.y22_c00202{bottom:365.295000px;}
.y21_c00202{bottom:386.354700px;}
.y20_c00202{bottom:407.415000px;}
.y1f_c00202{bottom:437.295750px;}
.y1e_c00202{bottom:458.355450px;}
.y1d_c00202{bottom:479.415150px;}
.y1c_c00202{bottom:500.295000px;}
.y1b_c00202{bottom:521.354700px;}
.y1a_c00202{bottom:542.415000px;}
.y19_c00202{bottom:572.294250px;}
.y18_c00202{bottom:593.353950px;}
.y17_c00202{bottom:614.444250px;}
.y16_c00202{bottom:635.324100px;}
.y15_c00202{bottom:656.384400px;}
.y14_c00202{bottom:677.444700px;}
.y13_c00202{bottom:698.324550px;}
.y12_c00202{bottom:719.384850px;}
.y11_c00202{bottom:740.445150px;}
.y10_c00202{bottom:761.325000px;}
.yf_c00202{bottom:791.385000px;}
.ye_c00202{bottom:848.445450px;}
.yd_c00202{bottom:869.325300px;}
.yc_c00202{bottom:890.430150px;}
.yb_c00202{bottom:911.490450px;}
.ya_c00202{bottom:932.370300px;}
.y9_c00202{bottom:953.430000px;}
.y8_c00202{bottom:983.490300px;}
.y7_c00202{bottom:1004.370150px;}
.y6_c00202{bottom:1025.429850px;}
.y5_c00202{bottom:1046.490150px;}
.y4_c00202{bottom:1067.370000px;}
.y3_c00202{bottom:1097.429700px;}
.y2_c00202{bottom:1118.490000px;}
.y1_c00202{bottom:1185.300000px;}
.h3_c00202{height:48.224531px;}
.h2_c00202{height:56.957344px;}
.h4_c00202{height:61.329023px;}
.h0_c00202{height:1262.880000px;}
.h1_c00202{height:1263.000000px;}
.w0_c00202{width:892.980000px;}
.w1_c00202{width:893.250000px;}
.x0_c00202{left:0.000000px;}
.x1_c00202{left:127.655850px;}
.x2_c00202{left:148.896150px;}
@media print{
.v0_c00202{vertical-align:0.000000pt;}
.ls0_c00202{letter-spacing:0.000000pt;}
.ws0_c00202{word-spacing:0.000000pt;}
._10_c00202{margin-left:-3.804918pt;}
._4_c00202{margin-left:-2.590851pt;}
._0_c00202{margin-left:-0.943001pt;}
._6_c00202{width:1.347108pt;}
._7_c00202{width:2.473647pt;}
._8_c00202{width:3.412567pt;}
._3_c00202{width:4.830045pt;}
._2_c00202{width:6.121479pt;}
._d_c00202{width:7.302043pt;}
._14_c00202{width:8.300917pt;}
._5_c00202{width:9.655614pt;}
._f_c00202{width:10.956806pt;}
._11_c00202{width:11.911348pt;}
._e_c00202{width:12.835133pt;}
._a_c00202{width:14.131580pt;}
._b_c00202{width:15.073498pt;}
._13_c00202{width:19.247566pt;}
._12_c00202{width:20.168137pt;}
._9_c00202{width:21.258781pt;}
._c_c00202{width:55.367329pt;}
._15_c00202{width:751.672747pt;}
._1_c00202{width:2019.819170pt;}
.fs0_c00202{font-size:58.880000pt;}
.fs1_c00202{font-size:74.880000pt;}
.y0_c00202{bottom:0.000000pt;}
.y26_c00202{bottom:242.106667pt;}
.y25_c00202{bottom:268.666667pt;}
.y24_c00202{bottom:287.386400pt;}
.y23_c00202{bottom:306.146800pt;}
.y22_c00202{bottom:324.706667pt;}
.y21_c00202{bottom:343.426400pt;}
.y20_c00202{bottom:362.146667pt;}
.y1f_c00202{bottom:388.707333pt;}
.y1e_c00202{bottom:407.427067pt;}
.y1d_c00202{bottom:426.146800pt;}
.y1c_c00202{bottom:444.706667pt;}
.y1b_c00202{bottom:463.426400pt;}
.y1a_c00202{bottom:482.146667pt;}
.y19_c00202{bottom:508.706000pt;}
.y18_c00202{bottom:527.425733pt;}
.y17_c00202{bottom:546.172667pt;}
.y16_c00202{bottom:564.732533pt;}
.y15_c00202{bottom:583.452800pt;}
.y14_c00202{bottom:602.173067pt;}
.y13_c00202{bottom:620.732933pt;}
.y12_c00202{bottom:639.453200pt;}
.y11_c00202{bottom:658.173467pt;}
.y10_c00202{bottom:676.733333pt;}
.yf_c00202{bottom:703.453333pt;}
.ye_c00202{bottom:754.173733pt;}
.yd_c00202{bottom:772.733600pt;}
.yc_c00202{bottom:791.493467pt;}
.yb_c00202{bottom:810.213733pt;}
.ya_c00202{bottom:828.773600pt;}
.y9_c00202{bottom:847.493333pt;}
.y8_c00202{bottom:874.213600pt;}
.y7_c00202{bottom:892.773467pt;}
.y6_c00202{bottom:911.493200pt;}
.y5_c00202{bottom:930.213467pt;}
.y4_c00202{bottom:948.773333pt;}
.y3_c00202{bottom:975.493067pt;}
.y2_c00202{bottom:994.213333pt;}
.y1_c00202{bottom:1053.600000pt;}
.h3_c00202{height:42.866250pt;}
.h2_c00202{height:50.628750pt;}
.h4_c00202{height:54.514688pt;}
.h0_c00202{height:1122.560000pt;}
.h1_c00202{height:1122.666667pt;}
.w0_c00202{width:793.760000pt;}
.w1_c00202{width:794.000000pt;}
.x0_c00202{left:0.000000pt;}
.x1_c00202{left:113.471867pt;}
.x2_c00202{left:132.352133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e3d161fec2b792a605fed4f5.woff2')format("woff");}.ff1_c00203{font-family:ff1_c00203;line-height:1.070312;font-style:normal;font-weight:normal;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_ec8f95ff15b1e342261e4c43.woff2')format("woff");}.ff2_c00203{font-family:ff2_c00203;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00203{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00203{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1_c00203{vertical-align:-5.760936px;}
.v0_c00203{vertical-align:0.000000px;}
.ls0_c00203{letter-spacing:0.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;}
}
.ws0_c00203{word-spacing:-11.609280px;}
.ws1_c00203{word-spacing:0.000000px;}
._12_c00203{margin-left:-2.318136px;}
._0_c00203{margin-left:-1.058254px;}
._5_c00203{width:1.389830px;}
._3_c00203{width:3.160475px;}
._6_c00203{width:5.184419px;}
._d_c00203{width:7.216521px;}
._10_c00203{width:8.946504px;}
._a_c00203{width:10.131361px;}
._9_c00203{width:11.195156px;}
._c_c00203{width:12.482871px;}
._7_c00203{width:13.780208px;}
._f_c00203{width:15.708180px;}
._e_c00203{width:17.275789px;}
._4_c00203{width:19.939057px;}
._8_c00203{width:21.727347px;}
._11_c00203{width:24.933745px;}
._b_c00203{width:30.005889px;}
._2_c00203{width:187.479128px;}
._13_c00203{width:845.739072px;}
._1_c00203{width:2010.777953px;}
.fc0_c00203{color:rgb(0,0,0);}
.fs2_c00203{font-size:41.760000px;}
.fs0_c00203{font-size:66.240000px;}
.fs1_c00203{font-size:84.240000px;}
.y0_c00203{bottom:0.000000px;}
.y31_c00203{bottom:104.255850px;}
.y30_c00203{bottom:125.316450px;}
.y2f_c00203{bottom:146.376150px;}
.y2e_c00203{bottom:167.250150px;}
.y2d_c00203{bottom:188.309850px;}
.y2c_c00203{bottom:209.370150px;}
.y2b_c00203{bottom:230.250150px;}
.y2a_c00203{bottom:251.309850px;}
.y29_c00203{bottom:272.370150px;}
.y28_c00203{bottom:293.250000px;}
.y27_c00203{bottom:314.309700px;}
.y26_c00203{bottom:335.370000px;}
.y25_c00203{bottom:356.295000px;}
.y24_c00203{bottom:377.354700px;}
.y23_c00203{bottom:398.415000px;}
.y22_c00203{bottom:428.295150px;}
.y21_c00203{bottom:449.354850px;}
.y20_c00203{bottom:470.415150px;}
.y1f_c00203{bottom:491.295300px;}
.y1e_c00203{bottom:512.355600px;}
.y1d_c00203{bottom:533.415900px;}
.y1c_c00203{bottom:554.295750px;}
.y1b_c00203{bottom:575.355450px;}
.y1a_c00203{bottom:596.415750px;}
.y19_c00203{bottom:617.325450px;}
.y18_c00203{bottom:638.385150px;}
.y17_c00203{bottom:659.445450px;}
.y16_c00203{bottom:680.325300px;}
.y15_c00203{bottom:701.385000px;}
.y14_c00203{bottom:722.445300px;}
.y13_c00203{bottom:743.325150px;}
.y12_c00203{bottom:764.384850px;}
.y11_c00203{bottom:785.445150px;}
.y10_c00203{bottom:806.325000px;}
.yf_c00203{bottom:836.385450px;}
.ye_c00203{bottom:857.445750px;}
.yd_c00203{bottom:878.370750px;}
.yc_c00203{bottom:899.430450px;}
.yb_c00203{bottom:920.490750px;}
.ya_c00203{bottom:941.370600px;}
.y9_c00203{bottom:962.430300px;}
.y8_c00203{bottom:983.490600px;}
.y7_c00203{bottom:1004.370450px;}
.y6_c00203{bottom:1025.430150px;}
.y5_c00203{bottom:1046.490450px;}
.y4_c00203{bottom:1067.370300px;}
.y3_c00203{bottom:1088.430000px;}
.y2_c00203{bottom:1118.490000px;}
.y1_c00203{bottom:1185.300000px;}
.h2_c00203{height:56.957344px;}
.h3_c00203{height:61.329023px;}
.h0_c00203{height:1262.880000px;}
.h1_c00203{height:1263.000000px;}
.w0_c00203{width:892.980000px;}
.w1_c00203{width:893.250000px;}
.x0_c00203{left:0.000000px;}
.x1_c00203{left:127.655850px;}
.x2_c00203{left:148.896150px;}
@media print{
.v1_c00203{vertical-align:-5.120832pt;}
.v0_c00203{vertical-align:0.000000pt;}
.ls0_c00203{letter-spacing:0.000000pt;}
.ws0_c00203{word-spacing:-10.319360pt;}
.ws1_c00203{word-spacing:0.000000pt;}
._12_c00203{margin-left:-2.060566pt;}
._0_c00203{margin-left:-0.940670pt;}
._5_c00203{width:1.235404pt;}
._3_c00203{width:2.809311pt;}
._6_c00203{width:4.608372pt;}
._d_c00203{width:6.414686pt;}
._10_c00203{width:7.952448pt;}
._a_c00203{width:9.005654pt;}
._9_c00203{width:9.951250pt;}
._c_c00203{width:11.095886pt;}
._7_c00203{width:12.249074pt;}
._f_c00203{width:13.962827pt;}
._e_c00203{width:15.356257pt;}
._4_c00203{width:17.723607pt;}
._8_c00203{width:19.313198pt;}
._11_c00203{width:22.163329pt;}
._b_c00203{width:26.671901pt;}
._2_c00203{width:166.648114pt;}
._13_c00203{width:751.768064pt;}
._1_c00203{width:1787.358181pt;}
.fs2_c00203{font-size:37.120000pt;}
.fs0_c00203{font-size:58.880000pt;}
.fs1_c00203{font-size:74.880000pt;}
.y0_c00203{bottom:0.000000pt;}
.y31_c00203{bottom:92.671867pt;}
.y30_c00203{bottom:111.392400pt;}
.y2f_c00203{bottom:130.112133pt;}
.y2e_c00203{bottom:148.666800pt;}
.y2d_c00203{bottom:167.386533pt;}
.y2c_c00203{bottom:186.106800pt;}
.y2b_c00203{bottom:204.666800pt;}
.y2a_c00203{bottom:223.386533pt;}
.y29_c00203{bottom:242.106800pt;}
.y28_c00203{bottom:260.666667pt;}
.y27_c00203{bottom:279.386400pt;}
.y26_c00203{bottom:298.106667pt;}
.y25_c00203{bottom:316.706667pt;}
.y24_c00203{bottom:335.426400pt;}
.y23_c00203{bottom:354.146667pt;}
.y22_c00203{bottom:380.706800pt;}
.y21_c00203{bottom:399.426533pt;}
.y20_c00203{bottom:418.146800pt;}
.y1f_c00203{bottom:436.706933pt;}
.y1e_c00203{bottom:455.427200pt;}
.y1d_c00203{bottom:474.147467pt;}
.y1c_c00203{bottom:492.707333pt;}
.y1b_c00203{bottom:511.427067pt;}
.y1a_c00203{bottom:530.147333pt;}
.y19_c00203{bottom:548.733733pt;}
.y18_c00203{bottom:567.453467pt;}
.y17_c00203{bottom:586.173733pt;}
.y16_c00203{bottom:604.733600pt;}
.y15_c00203{bottom:623.453333pt;}
.y14_c00203{bottom:642.173600pt;}
.y13_c00203{bottom:660.733467pt;}
.y12_c00203{bottom:679.453200pt;}
.y11_c00203{bottom:698.173467pt;}
.y10_c00203{bottom:716.733333pt;}
.yf_c00203{bottom:743.453733pt;}
.ye_c00203{bottom:762.174000pt;}
.yd_c00203{bottom:780.774000pt;}
.yc_c00203{bottom:799.493733pt;}
.yb_c00203{bottom:818.214000pt;}
.ya_c00203{bottom:836.773867pt;}
.y9_c00203{bottom:855.493600pt;}
.y8_c00203{bottom:874.213867pt;}
.y7_c00203{bottom:892.773733pt;}
.y6_c00203{bottom:911.493467pt;}
.y5_c00203{bottom:930.213733pt;}
.y4_c00203{bottom:948.773600pt;}
.y3_c00203{bottom:967.493333pt;}
.y2_c00203{bottom:994.213333pt;}
.y1_c00203{bottom:1053.600000pt;}
.h2_c00203{height:50.628750pt;}
.h3_c00203{height:54.514688pt;}
.h0_c00203{height:1122.560000pt;}
.h1_c00203{height:1122.666667pt;}
.w0_c00203{width:793.760000pt;}
.w1_c00203{width:794.000000pt;}
.x0_c00203{left:0.000000pt;}
.x1_c00203{left:113.471867pt;}
.x2_c00203{left:132.352133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_55dae62c00e0d26eb44ced3c.woff2')format("woff");}.ff1_c00204{font-family:ff1_c00204;line-height:1.070312;font-style:normal;font-weight:normal;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_9cbc3cdb63f0f52d447fa62f.woff2')format("woff");}.ff2_c00204{font-family:ff2_c00204;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00204;src:url('chunks/assets/font_8b0701136755e70ca98120f9.woff2')format("woff");}.ff3_c00204{font-family:ff3_c00204;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00204;src:url('chunks/assets/font_2c661173fbe578d4a1a8299a.woff2')format("woff");}.ff4_c00204{font-family:ff4_c00204;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00204{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00204{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00204{vertical-align:0.000000px;}
.ls0_c00204{letter-spacing:0.000000px;}
.sc__c00204{text-shadow:none;}
.sc0_c00204{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00204{-webkit-text-stroke:0px transparent;}
.sc0_c00204{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00204{word-spacing:-36.829440px;}
.ws2_c00204{word-spacing:-18.414720px;}
.ws0_c00204{word-spacing:-16.560000px;}
.ws3_c00204{word-spacing:0.000000px;}
._0_c00204{margin-left:-1.127263px;}
._3_c00204{width:1.073025px;}
._2_c00204{width:79.219718px;}
._1_c00204{width:2021.935779px;}
.fc0_c00204{color:rgb(0,0,0);}
.fs0_c00204{font-size:66.240000px;}
.fs1_c00204{font-size:84.240000px;}
.y0_c00204{bottom:0.000000px;}
.y2d_c00204{bottom:92.376000px;}
.y2c_c00204{bottom:113.255850px;}
.y2b_c00204{bottom:134.316150px;}
.y2a_c00204{bottom:155.370000px;}
.y29_c00204{bottom:185.250000px;}
.y28_c00204{bottom:206.309700px;}
.y27_c00204{bottom:227.370000px;}
.y26_c00204{bottom:257.250000px;}
.y25_c00204{bottom:278.309700px;}
.y24_c00204{bottom:299.370000px;}
.y23_c00204{bottom:329.250150px;}
.y22_c00204{bottom:350.355000px;}
.y21_c00204{bottom:371.415000px;}
.y20_c00204{bottom:401.295300px;}
.y1f_c00204{bottom:422.355000px;}
.y1e_c00204{bottom:452.415000px;}
.y1d_c00204{bottom:473.295300px;}
.y1c_c00204{bottom:494.355000px;}
.y1b_c00204{bottom:524.415000px;}
.y1a_c00204{bottom:545.295000px;}
.y19_c00204{bottom:575.355000px;}
.y18_c00204{bottom:596.415000px;}
.y17_c00204{bottom:626.325000px;}
.y16_c00204{bottom:647.385000px;}
.y15_c00204{bottom:668.445000px;}
.y14_c00204{bottom:689.325300px;}
.y13_c00204{bottom:710.385000px;}
.y12_c00204{bottom:740.445000px;}
.y11_c00204{bottom:761.325000px;}
.y10_c00204{bottom:782.385300px;}
.yf_c00204{bottom:803.445000px;}
.ye_c00204{bottom:833.325000px;}
.yd_c00204{bottom:854.385300px;}
.yc_c00204{bottom:875.490150px;}
.yb_c00204{bottom:896.370000px;}
.ya_c00204{bottom:926.429700px;}
.y9_c00204{bottom:947.490000px;}
.y8_c00204{bottom:977.370300px;}
.y7_c00204{bottom:998.430000px;}
.y6_c00204{bottom:1028.490150px;}
.y5_c00204{bottom:1049.370000px;}
.y4_c00204{bottom:1079.430000px;}
.y3_c00204{bottom:1118.310000px;}
.y2_c00204{bottom:1155.060000px;}
.y1_c00204{bottom:1185.300000px;}
.h2_c00204{height:56.957344px;}
.h3_c00204{height:61.329023px;}
.h0_c00204{height:1262.880000px;}
.h1_c00204{height:1263.000000px;}
.w0_c00204{width:892.980000px;}
.w1_c00204{width:893.250000px;}
.x0_c00204{left:0.000000px;}
.x1_c00204{left:127.655850px;}
.x2_c00204{left:148.896150px;}
.x3_c00204{left:159.690150px;}
@media print{
.v0_c00204{vertical-align:0.000000pt;}
.ls0_c00204{letter-spacing:0.000000pt;}
.ws1_c00204{word-spacing:-32.737280pt;}
.ws2_c00204{word-spacing:-16.368640pt;}
.ws0_c00204{word-spacing:-14.720000pt;}
.ws3_c00204{word-spacing:0.000000pt;}
._0_c00204{margin-left:-1.002012pt;}
._3_c00204{width:0.953800pt;}
._2_c00204{width:70.417527pt;}
._1_c00204{width:1797.276248pt;}
.fs0_c00204{font-size:58.880000pt;}
.fs1_c00204{font-size:74.880000pt;}
.y0_c00204{bottom:0.000000pt;}
.y2d_c00204{bottom:82.112000pt;}
.y2c_c00204{bottom:100.671867pt;}
.y2b_c00204{bottom:119.392133pt;}
.y2a_c00204{bottom:138.106667pt;}
.y29_c00204{bottom:164.666667pt;}
.y28_c00204{bottom:183.386400pt;}
.y27_c00204{bottom:202.106667pt;}
.y26_c00204{bottom:228.666667pt;}
.y25_c00204{bottom:247.386400pt;}
.y24_c00204{bottom:266.106667pt;}
.y23_c00204{bottom:292.666800pt;}
.y22_c00204{bottom:311.426667pt;}
.y21_c00204{bottom:330.146667pt;}
.y20_c00204{bottom:356.706933pt;}
.y1f_c00204{bottom:375.426667pt;}
.y1e_c00204{bottom:402.146667pt;}
.y1d_c00204{bottom:420.706933pt;}
.y1c_c00204{bottom:439.426667pt;}
.y1b_c00204{bottom:466.146667pt;}
.y1a_c00204{bottom:484.706667pt;}
.y19_c00204{bottom:511.426667pt;}
.y18_c00204{bottom:530.146667pt;}
.y17_c00204{bottom:556.733333pt;}
.y16_c00204{bottom:575.453333pt;}
.y15_c00204{bottom:594.173333pt;}
.y14_c00204{bottom:612.733600pt;}
.y13_c00204{bottom:631.453333pt;}
.y12_c00204{bottom:658.173333pt;}
.y11_c00204{bottom:676.733333pt;}
.y10_c00204{bottom:695.453600pt;}
.yf_c00204{bottom:714.173333pt;}
.ye_c00204{bottom:740.733333pt;}
.yd_c00204{bottom:759.453600pt;}
.yc_c00204{bottom:778.213467pt;}
.yb_c00204{bottom:796.773333pt;}
.ya_c00204{bottom:823.493067pt;}
.y9_c00204{bottom:842.213333pt;}
.y8_c00204{bottom:868.773600pt;}
.y7_c00204{bottom:887.493333pt;}
.y6_c00204{bottom:914.213467pt;}
.y5_c00204{bottom:932.773333pt;}
.y4_c00204{bottom:959.493333pt;}
.y3_c00204{bottom:994.053333pt;}
.y2_c00204{bottom:1026.720000pt;}
.y1_c00204{bottom:1053.600000pt;}
.h2_c00204{height:50.628750pt;}
.h3_c00204{height:54.514688pt;}
.h0_c00204{height:1122.560000pt;}
.h1_c00204{height:1122.666667pt;}
.w0_c00204{width:793.760000pt;}
.w1_c00204{width:794.000000pt;}
.x0_c00204{left:0.000000pt;}
.x1_c00204{left:113.471867pt;}
.x2_c00204{left:132.352133pt;}
.x3_c00204{left:141.946800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e26cba2e837835176b728e41.woff2')format("woff");}.ff1_c00205{font-family:ff1_c00205;line-height:1.070312;font-style:normal;font-weight:normal;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_8b0701136755e70ca98120f9.woff2')format("woff");}.ff2_c00205{font-family:ff2_c00205;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00205;src:url('chunks/assets/font_2c661173fbe578d4a1a8299a.woff2')format("woff");}.ff3_c00205{font-family:ff3_c00205;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00205{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00205{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00205{vertical-align:0.000000px;}
.ls0_c00205{letter-spacing:0.000000px;}
.sc__c00205{text-shadow:none;}
.sc0_c00205{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00205{-webkit-text-stroke:0px transparent;}
.sc0_c00205{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00205{word-spacing:-36.829440px;}
.ws2_c00205{word-spacing:-18.414720px;}
.ws0_c00205{word-spacing:-16.560000px;}
.ws3_c00205{word-spacing:0.000000px;}
._0_c00205{margin-left:-1.127263px;}
._3_c00205{width:1.158729px;}
._2_c00205{width:79.252176px;}
._1_c00205{width:2040.655203px;}
.fc0_c00205{color:rgb(0,0,0);}
.fs0_c00205{font-size:66.240000px;}
.y0_c00205{bottom:0.000000px;}
.y2e_c00205{bottom:89.316300px;}
.y2d_c00205{bottom:110.376000px;}
.y2c_c00205{bottom:140.255850px;}
.y2b_c00205{bottom:161.310000px;}
.y2a_c00205{bottom:182.370150px;}
.y29_c00205{bottom:203.250000px;}
.y28_c00205{bottom:233.310000px;}
.y27_c00205{bottom:254.370000px;}
.y26_c00205{bottom:275.250000px;}
.y25_c00205{bottom:305.309700px;}
.y24_c00205{bottom:326.370000px;}
.y23_c00205{bottom:347.295000px;}
.y22_c00205{bottom:377.355000px;}
.y21_c00205{bottom:407.415450px;}
.y20_c00205{bottom:428.295300px;}
.y1f_c00205{bottom:449.355000px;}
.y1e_c00205{bottom:479.415000px;}
.y1d_c00205{bottom:500.295000px;}
.y1c_c00205{bottom:521.355000px;}
.y1b_c00205{bottom:542.415450px;}
.y1a_c00205{bottom:563.295300px;}
.y19_c00205{bottom:584.355000px;}
.y18_c00205{bottom:614.445000px;}
.y17_c00205{bottom:635.325000px;}
.y16_c00205{bottom:656.384700px;}
.y15_c00205{bottom:677.445000px;}
.y14_c00205{bottom:707.325000px;}
.y13_c00205{bottom:728.384700px;}
.y12_c00205{bottom:749.445000px;}
.y11_c00205{bottom:779.325000px;}
.y10_c00205{bottom:800.385300px;}
.yf_c00205{bottom:821.445000px;}
.ye_c00205{bottom:851.324850px;}
.yd_c00205{bottom:872.429700px;}
.yc_c00205{bottom:893.490000px;}
.yb_c00205{bottom:923.370300px;}
.ya_c00205{bottom:944.430000px;}
.y9_c00205{bottom:974.490150px;}
.y8_c00205{bottom:995.370000px;}
.y7_c00205{bottom:1016.429700px;}
.y6_c00205{bottom:1037.490000px;}
.y5_c00205{bottom:1067.370000px;}
.y4_c00205{bottom:1088.430000px;}
.y3_c00205{bottom:1118.490000px;}
.y2_c00205{bottom:1155.060000px;}
.y1_c00205{bottom:1185.300000px;}
.h2_c00205{height:56.957344px;}
.h0_c00205{height:1262.880000px;}
.h1_c00205{height:1263.000000px;}
.w0_c00205{width:892.980000px;}
.w1_c00205{width:893.250000px;}
.x0_c00205{left:0.000000px;}
.x1_c00205{left:127.655850px;}
.x2_c00205{left:148.896150px;}
.x3_c00205{left:159.690000px;}
@media print{
.v0_c00205{vertical-align:0.000000pt;}
.ls0_c00205{letter-spacing:0.000000pt;}
.ws1_c00205{word-spacing:-32.737280pt;}
.ws2_c00205{word-spacing:-16.368640pt;}
.ws0_c00205{word-spacing:-14.720000pt;}
.ws3_c00205{word-spacing:0.000000pt;}
._0_c00205{margin-left:-1.002012pt;}
._3_c00205{width:1.029981pt;}
._2_c00205{width:70.446379pt;}
._1_c00205{width:1813.915736pt;}
.fs0_c00205{font-size:58.880000pt;}
.y0_c00205{bottom:0.000000pt;}
.y2e_c00205{bottom:79.392267pt;}
.y2d_c00205{bottom:98.112000pt;}
.y2c_c00205{bottom:124.671867pt;}
.y2b_c00205{bottom:143.386667pt;}
.y2a_c00205{bottom:162.106800pt;}
.y29_c00205{bottom:180.666667pt;}
.y28_c00205{bottom:207.386667pt;}
.y27_c00205{bottom:226.106667pt;}
.y26_c00205{bottom:244.666667pt;}
.y25_c00205{bottom:271.386400pt;}
.y24_c00205{bottom:290.106667pt;}
.y23_c00205{bottom:308.706667pt;}
.y22_c00205{bottom:335.426667pt;}
.y21_c00205{bottom:362.147067pt;}
.y20_c00205{bottom:380.706933pt;}
.y1f_c00205{bottom:399.426667pt;}
.y1e_c00205{bottom:426.146667pt;}
.y1d_c00205{bottom:444.706667pt;}
.y1c_c00205{bottom:463.426667pt;}
.y1b_c00205{bottom:482.147067pt;}
.y1a_c00205{bottom:500.706933pt;}
.y19_c00205{bottom:519.426667pt;}
.y18_c00205{bottom:546.173333pt;}
.y17_c00205{bottom:564.733333pt;}
.y16_c00205{bottom:583.453067pt;}
.y15_c00205{bottom:602.173333pt;}
.y14_c00205{bottom:628.733333pt;}
.y13_c00205{bottom:647.453067pt;}
.y12_c00205{bottom:666.173333pt;}
.y11_c00205{bottom:692.733333pt;}
.y10_c00205{bottom:711.453600pt;}
.yf_c00205{bottom:730.173333pt;}
.ye_c00205{bottom:756.733200pt;}
.yd_c00205{bottom:775.493067pt;}
.yc_c00205{bottom:794.213333pt;}
.yb_c00205{bottom:820.773600pt;}
.ya_c00205{bottom:839.493333pt;}
.y9_c00205{bottom:866.213467pt;}
.y8_c00205{bottom:884.773333pt;}
.y7_c00205{bottom:903.493067pt;}
.y6_c00205{bottom:922.213333pt;}
.y5_c00205{bottom:948.773333pt;}
.y4_c00205{bottom:967.493333pt;}
.y3_c00205{bottom:994.213333pt;}
.y2_c00205{bottom:1026.720000pt;}
.y1_c00205{bottom:1053.600000pt;}
.h2_c00205{height:50.628750pt;}
.h0_c00205{height:1122.560000pt;}
.h1_c00205{height:1122.666667pt;}
.w0_c00205{width:793.760000pt;}
.w1_c00205{width:794.000000pt;}
.x0_c00205{left:0.000000pt;}
.x1_c00205{left:113.471867pt;}
.x2_c00205{left:132.352133pt;}
.x3_c00205{left:141.946667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_8a24aa9485e3399d90f2d8dd.woff2')format("woff");}.ff1_c00206{font-family:ff1_c00206;line-height:1.070312;font-style:normal;font-weight:normal;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_8b0701136755e70ca98120f9.woff2')format("woff");}.ff2_c00206{font-family:ff2_c00206;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00206;src:url('chunks/assets/font_2c661173fbe578d4a1a8299a.woff2')format("woff");}.ff3_c00206{font-family:ff3_c00206;line-height:0.938965;font-style:normal;font-weight:normal;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_aff152261ccc4032afa98e81.woff2')format("woff");}.ff4_c00206{font-family:ff4_c00206;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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);}
.m1_c00206{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_c00206{vertical-align:0.000000px;}
.ls0_c00206{letter-spacing:0.000000px;}
.sc__c00206{text-shadow:none;}
.sc0_c00206{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00206{-webkit-text-stroke:0px transparent;}
.sc0_c00206{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00206{word-spacing:-36.829440px;}
.ws0_c00206{word-spacing:-18.414720px;}
.ws1_c00206{word-spacing:-16.560000px;}
.ws3_c00206{word-spacing:0.000000px;}
._4_c00206{margin-left:-6.849174px;}
._5_c00206{margin-left:-5.453442px;}
._0_c00206{margin-left:-1.127263px;}
._3_c00206{width:1.066935px;}
._2_c00206{width:79.252176px;}
._1_c00206{width:2021.935779px;}
.fc0_c00206{color:rgb(0,0,0);}
.fs0_c00206{font-size:66.240000px;}
.y0_c00206{bottom:0.000000px;}
.y2d_c00206{bottom:101.376000px;}
.y2c_c00206{bottom:122.255850px;}
.y2b_c00206{bottom:152.309700px;}
.y2a_c00206{bottom:173.370000px;}
.y29_c00206{bottom:203.250300px;}
.y28_c00206{bottom:224.310000px;}
.y27_c00206{bottom:254.370000px;}
.y26_c00206{bottom:275.250000px;}
.y25_c00206{bottom:296.310000px;}
.y24_c00206{bottom:326.370000px;}
.y23_c00206{bottom:347.295000px;}
.y22_c00206{bottom:377.355000px;}
.y21_c00206{bottom:398.415150px;}
.y20_c00206{bottom:419.295000px;}
.y1f_c00206{bottom:449.354850px;}
.y1e_c00206{bottom:470.415150px;}
.y1d_c00206{bottom:491.295000px;}
.y1c_c00206{bottom:521.355000px;}
.y1b_c00206{bottom:542.415450px;}
.y1a_c00206{bottom:563.295300px;}
.y19_c00206{bottom:584.355000px;}
.y18_c00206{bottom:614.445150px;}
.y17_c00206{bottom:635.325000px;}
.y16_c00206{bottom:656.385000px;}
.y15_c00206{bottom:677.445000px;}
.y14_c00206{bottom:707.325300px;}
.y13_c00206{bottom:728.385000px;}
.y12_c00206{bottom:758.444850px;}
.y11_c00206{bottom:779.324700px;}
.y10_c00206{bottom:800.385000px;}
.yf_c00206{bottom:830.445150px;}
.ye_c00206{bottom:851.325000px;}
.yd_c00206{bottom:881.429850px;}
.yc_c00206{bottom:902.490150px;}
.yb_c00206{bottom:923.370000px;}
.ya_c00206{bottom:953.430000px;}
.y9_c00206{bottom:974.490150px;}
.y8_c00206{bottom:995.370000px;}
.y7_c00206{bottom:1025.430000px;}
.y6_c00206{bottom:1046.490150px;}
.y5_c00206{bottom:1067.370000px;}
.y4_c00206{bottom:1097.430000px;}
.y3_c00206{bottom:1118.490000px;}
.y2_c00206{bottom:1155.060000px;}
.y1_c00206{bottom:1185.300000px;}
.h2_c00206{height:56.957344px;}
.h0_c00206{height:1262.880000px;}
.h1_c00206{height:1263.000000px;}
.w0_c00206{width:892.980000px;}
.w1_c00206{width:893.250000px;}
.x0_c00206{left:0.000000px;}
.x1_c00206{left:127.655850px;}
.x2_c00206{left:148.896150px;}
.x3_c00206{left:159.690000px;}
@media print{
.v0_c00206{vertical-align:0.000000pt;}
.ls0_c00206{letter-spacing:0.000000pt;}
.ws2_c00206{word-spacing:-32.737280pt;}
.ws0_c00206{word-spacing:-16.368640pt;}
.ws1_c00206{word-spacing:-14.720000pt;}
.ws3_c00206{word-spacing:0.000000pt;}
._4_c00206{margin-left:-6.088154pt;}
._5_c00206{margin-left:-4.847504pt;}
._0_c00206{margin-left:-1.002012pt;}
._3_c00206{width:0.948387pt;}
._2_c00206{width:70.446379pt;}
._1_c00206{width:1797.276248pt;}
.fs0_c00206{font-size:58.880000pt;}
.y0_c00206{bottom:0.000000pt;}
.y2d_c00206{bottom:90.112000pt;}
.y2c_c00206{bottom:108.671867pt;}
.y2b_c00206{bottom:135.386400pt;}
.y2a_c00206{bottom:154.106667pt;}
.y29_c00206{bottom:180.666933pt;}
.y28_c00206{bottom:199.386667pt;}
.y27_c00206{bottom:226.106667pt;}
.y26_c00206{bottom:244.666667pt;}
.y25_c00206{bottom:263.386667pt;}
.y24_c00206{bottom:290.106667pt;}
.y23_c00206{bottom:308.706667pt;}
.y22_c00206{bottom:335.426667pt;}
.y21_c00206{bottom:354.146800pt;}
.y20_c00206{bottom:372.706667pt;}
.y1f_c00206{bottom:399.426533pt;}
.y1e_c00206{bottom:418.146800pt;}
.y1d_c00206{bottom:436.706667pt;}
.y1c_c00206{bottom:463.426667pt;}
.y1b_c00206{bottom:482.147067pt;}
.y1a_c00206{bottom:500.706933pt;}
.y19_c00206{bottom:519.426667pt;}
.y18_c00206{bottom:546.173467pt;}
.y17_c00206{bottom:564.733333pt;}
.y16_c00206{bottom:583.453333pt;}
.y15_c00206{bottom:602.173333pt;}
.y14_c00206{bottom:628.733600pt;}
.y13_c00206{bottom:647.453333pt;}
.y12_c00206{bottom:674.173200pt;}
.y11_c00206{bottom:692.733067pt;}
.y10_c00206{bottom:711.453333pt;}
.yf_c00206{bottom:738.173467pt;}
.ye_c00206{bottom:756.733333pt;}
.yd_c00206{bottom:783.493200pt;}
.yc_c00206{bottom:802.213467pt;}
.yb_c00206{bottom:820.773333pt;}
.ya_c00206{bottom:847.493333pt;}
.y9_c00206{bottom:866.213467pt;}
.y8_c00206{bottom:884.773333pt;}
.y7_c00206{bottom:911.493333pt;}
.y6_c00206{bottom:930.213467pt;}
.y5_c00206{bottom:948.773333pt;}
.y4_c00206{bottom:975.493333pt;}
.y3_c00206{bottom:994.213333pt;}
.y2_c00206{bottom:1026.720000pt;}
.y1_c00206{bottom:1053.600000pt;}
.h2_c00206{height:50.628750pt;}
.h0_c00206{height:1122.560000pt;}
.h1_c00206{height:1122.666667pt;}
.w0_c00206{width:793.760000pt;}
.w1_c00206{width:794.000000pt;}
.x0_c00206{left:0.000000pt;}
.x1_c00206{left:113.471867pt;}
.x2_c00206{left:132.352133pt;}
.x3_c00206{left:141.946667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4753bbc49418453e6e8041bf.woff2')format("woff");}.ff1_c00207{font-family:ff1_c00207;line-height:1.070312;font-style:normal;font-weight:normal;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_8b0701136755e70ca98120f9.woff2')format("woff");}.ff2_c00207{font-family:ff2_c00207;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00207;src:url('chunks/assets/font_2c661173fbe578d4a1a8299a.woff2')format("woff");}.ff3_c00207{font-family:ff3_c00207;line-height:0.938965;font-style: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);}
.m1_c00207{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_c00207{vertical-align:0.000000px;}
.ls0_c00207{letter-spacing:0.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;}
}
.ws2_c00207{word-spacing:-36.829440px;}
.ws1_c00207{word-spacing:-18.414720px;}
.ws0_c00207{word-spacing:-16.560000px;}
.ws3_c00207{word-spacing:0.000000px;}
._0_c00207{margin-left:-1.127263px;}
._2_c00207{width:79.252176px;}
._1_c00207{width:2003.931747px;}
.fc0_c00207{color:rgb(0,0,0);}
.fs0_c00207{font-size:66.240000px;}
.y0_c00207{bottom:0.000000px;}
.y2c_c00207{bottom:113.255850px;}
.y2b_c00207{bottom:134.316150px;}
.y2a_c00207{bottom:164.370150px;}
.y29_c00207{bottom:185.250000px;}
.y28_c00207{bottom:215.309700px;}
.y27_c00207{bottom:236.370000px;}
.y26_c00207{bottom:266.250300px;}
.y25_c00207{bottom:287.310000px;}
.y24_c00207{bottom:317.370300px;}
.y23_c00207{bottom:338.295300px;}
.y22_c00207{bottom:359.355000px;}
.y21_c00207{bottom:389.415150px;}
.y20_c00207{bottom:410.295000px;}
.y1f_c00207{bottom:440.355150px;}
.y1e_c00207{bottom:461.415450px;}
.y1d_c00207{bottom:482.295300px;}
.y1c_c00207{bottom:503.355000px;}
.y1b_c00207{bottom:533.415150px;}
.y1a_c00207{bottom:554.295000px;}
.y19_c00207{bottom:575.354700px;}
.y18_c00207{bottom:596.415000px;}
.y17_c00207{bottom:626.325000px;}
.y16_c00207{bottom:647.384700px;}
.y15_c00207{bottom:668.445000px;}
.y14_c00207{bottom:698.325300px;}
.y13_c00207{bottom:719.385000px;}
.y12_c00207{bottom:749.445000px;}
.y11_c00207{bottom:779.325000px;}
.y10_c00207{bottom:800.385000px;}
.yf_c00207{bottom:821.445000px;}
.ye_c00207{bottom:851.324850px;}
.yd_c00207{bottom:872.429700px;}
.yc_c00207{bottom:893.490000px;}
.yb_c00207{bottom:923.370000px;}
.ya_c00207{bottom:944.429700px;}
.y9_c00207{bottom:965.490000px;}
.y8_c00207{bottom:995.370300px;}
.y7_c00207{bottom:1016.430000px;}
.y6_c00207{bottom:1046.490150px;}
.y5_c00207{bottom:1067.370000px;}
.y4_c00207{bottom:1097.429700px;}
.y3_c00207{bottom:1118.490000px;}
.y2_c00207{bottom:1155.060000px;}
.y1_c00207{bottom:1185.300000px;}
.h2_c00207{height:56.957344px;}
.h0_c00207{height:1262.880000px;}
.h1_c00207{height:1263.000000px;}
.w0_c00207{width:892.980000px;}
.w1_c00207{width:893.250000px;}
.x0_c00207{left:0.000000px;}
.x1_c00207{left:127.655850px;}
.x2_c00207{left:148.896150px;}
.x3_c00207{left:159.690150px;}
@media print{
.v0_c00207{vertical-align:0.000000pt;}
.ls0_c00207{letter-spacing:0.000000pt;}
.ws2_c00207{word-spacing:-32.737280pt;}
.ws1_c00207{word-spacing:-16.368640pt;}
.ws0_c00207{word-spacing:-14.720000pt;}
.ws3_c00207{word-spacing:0.000000pt;}
._0_c00207{margin-left:-1.002012pt;}
._2_c00207{width:70.446379pt;}
._1_c00207{width:1781.272664pt;}
.fs0_c00207{font-size:58.880000pt;}
.y0_c00207{bottom:0.000000pt;}
.y2c_c00207{bottom:100.671867pt;}
.y2b_c00207{bottom:119.392133pt;}
.y2a_c00207{bottom:146.106800pt;}
.y29_c00207{bottom:164.666667pt;}
.y28_c00207{bottom:191.386400pt;}
.y27_c00207{bottom:210.106667pt;}
.y26_c00207{bottom:236.666933pt;}
.y25_c00207{bottom:255.386667pt;}
.y24_c00207{bottom:282.106933pt;}
.y23_c00207{bottom:300.706933pt;}
.y22_c00207{bottom:319.426667pt;}
.y21_c00207{bottom:346.146800pt;}
.y20_c00207{bottom:364.706667pt;}
.y1f_c00207{bottom:391.426800pt;}
.y1e_c00207{bottom:410.147067pt;}
.y1d_c00207{bottom:428.706933pt;}
.y1c_c00207{bottom:447.426667pt;}
.y1b_c00207{bottom:474.146800pt;}
.y1a_c00207{bottom:492.706667pt;}
.y19_c00207{bottom:511.426400pt;}
.y18_c00207{bottom:530.146667pt;}
.y17_c00207{bottom:556.733333pt;}
.y16_c00207{bottom:575.453067pt;}
.y15_c00207{bottom:594.173333pt;}
.y14_c00207{bottom:620.733600pt;}
.y13_c00207{bottom:639.453333pt;}
.y12_c00207{bottom:666.173333pt;}
.y11_c00207{bottom:692.733333pt;}
.y10_c00207{bottom:711.453333pt;}
.yf_c00207{bottom:730.173333pt;}
.ye_c00207{bottom:756.733200pt;}
.yd_c00207{bottom:775.493067pt;}
.yc_c00207{bottom:794.213333pt;}
.yb_c00207{bottom:820.773333pt;}
.ya_c00207{bottom:839.493067pt;}
.y9_c00207{bottom:858.213333pt;}
.y8_c00207{bottom:884.773600pt;}
.y7_c00207{bottom:903.493333pt;}
.y6_c00207{bottom:930.213467pt;}
.y5_c00207{bottom:948.773333pt;}
.y4_c00207{bottom:975.493067pt;}
.y3_c00207{bottom:994.213333pt;}
.y2_c00207{bottom:1026.720000pt;}
.y1_c00207{bottom:1053.600000pt;}
.h2_c00207{height:50.628750pt;}
.h0_c00207{height:1122.560000pt;}
.h1_c00207{height:1122.666667pt;}
.w0_c00207{width:793.760000pt;}
.w1_c00207{width:794.000000pt;}
.x0_c00207{left:0.000000pt;}
.x1_c00207{left:113.471867pt;}
.x2_c00207{left:132.352133pt;}
.x3_c00207{left:141.946800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_000c5bc72d1c69a02b9bd6ad.woff2')format("woff");}.ff1_c00208{font-family:ff1_c00208;line-height:1.070312;font-style:normal;font-weight:normal;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_8b0701136755e70ca98120f9.woff2')format("woff");}.ff2_c00208{font-family:ff2_c00208;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00208;src:url('chunks/assets/font_d033d047084be325b8d362c2.woff2')format("woff");}.ff3_c00208{font-family:ff3_c00208;line-height:0.938965;font-style: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);}
.m1_c00208{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1_c00208{vertical-align:-5.760936px;}
.v0_c00208{vertical-align:0.000000px;}
.ls1_c00208{letter-spacing:0.000000px;}
.ls0_c00208{letter-spacing:0.070560px;}
.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;}
}
.ws2_c00208{word-spacing:-18.414720px;}
.ws0_c00208{word-spacing:-16.560000px;}
.ws1_c00208{word-spacing:-11.609280px;}
.ws3_c00208{word-spacing:0.000000px;}
._0_c00208{margin-left:-1.127263px;}
._3_c00208{width:1.732269px;}
._2_c00208{width:79.252176px;}
._1_c00208{width:1985.212323px;}
.fc0_c00208{color:rgb(0,0,0);}
.fs1_c00208{font-size:41.760000px;}
.fs0_c00208{font-size:66.240000px;}
.y0_c00208{bottom:0.000000px;}
.y2e_c00208{bottom:98.316300px;}
.y2d_c00208{bottom:119.376000px;}
.y2c_c00208{bottom:149.255850px;}
.y2b_c00208{bottom:170.310150px;}
.y2a_c00208{bottom:191.370450px;}
.y29_c00208{bottom:212.250300px;}
.y28_c00208{bottom:233.310000px;}
.y27_c00208{bottom:263.370150px;}
.y26_c00208{bottom:284.250000px;}
.y25_c00208{bottom:314.309700px;}
.y24_c00208{bottom:335.370000px;}
.y23_c00208{bottom:356.295000px;}
.y22_c00208{bottom:386.355150px;}
.y21_c00208{bottom:407.415450px;}
.y20_c00208{bottom:428.295300px;}
.y1f_c00208{bottom:449.355000px;}
.y1e_c00208{bottom:479.415450px;}
.y1d_c00208{bottom:500.295300px;}
.y1c_c00208{bottom:521.355000px;}
.y1b_c00208{bottom:551.415450px;}
.y1a_c00208{bottom:572.295300px;}
.y19_c00208{bottom:593.355000px;}
.y18_c00208{bottom:623.445150px;}
.y17_c00208{bottom:644.325000px;}
.y16_c00208{bottom:665.384700px;}
.y15_c00208{bottom:686.445000px;}
.y14_c00208{bottom:716.325000px;}
.y13_c00208{bottom:737.384850px;}
.y12_c00208{bottom:758.445150px;}
.y11_c00208{bottom:779.325000px;}
.y10_c00208{bottom:809.385000px;}
.yf_c00208{bottom:830.445000px;}
.ye_c00208{bottom:851.325000px;}
.yd_c00208{bottom:872.430000px;}
.yc_c00208{bottom:893.490000px;}
.yb_c00208{bottom:923.370300px;}
.ya_c00208{bottom:944.430000px;}
.y9_c00208{bottom:974.490150px;}
.y8_c00208{bottom:995.370000px;}
.y7_c00208{bottom:1025.429850px;}
.y6_c00208{bottom:1046.490150px;}
.y5_c00208{bottom:1067.370000px;}
.y4_c00208{bottom:1097.429700px;}
.y3_c00208{bottom:1118.490000px;}
.y2_c00208{bottom:1155.060000px;}
.y1_c00208{bottom:1185.300000px;}
.h3_c00208{height:48.256875px;}
.h2_c00208{height:56.957344px;}
.h0_c00208{height:1262.880000px;}
.h1_c00208{height:1263.000000px;}
.w0_c00208{width:892.980000px;}
.w1_c00208{width:893.250000px;}
.x0_c00208{left:0.000000px;}
.x1_c00208{left:127.655850px;}
.x2_c00208{left:148.896150px;}
.x3_c00208{left:159.690150px;}
@media print{
.v1_c00208{vertical-align:-5.120832pt;}
.v0_c00208{vertical-align:0.000000pt;}
.ls1_c00208{letter-spacing:0.000000pt;}
.ls0_c00208{letter-spacing:0.062720pt;}
.ws2_c00208{word-spacing:-16.368640pt;}
.ws0_c00208{word-spacing:-14.720000pt;}
.ws1_c00208{word-spacing:-10.319360pt;}
.ws3_c00208{word-spacing:0.000000pt;}
._0_c00208{margin-left:-1.002012pt;}
._3_c00208{width:1.539794pt;}
._2_c00208{width:70.446379pt;}
._1_c00208{width:1764.633176pt;}
.fs1_c00208{font-size:37.120000pt;}
.fs0_c00208{font-size:58.880000pt;}
.y0_c00208{bottom:0.000000pt;}
.y2e_c00208{bottom:87.392267pt;}
.y2d_c00208{bottom:106.112000pt;}
.y2c_c00208{bottom:132.671867pt;}
.y2b_c00208{bottom:151.386800pt;}
.y2a_c00208{bottom:170.107067pt;}
.y29_c00208{bottom:188.666933pt;}
.y28_c00208{bottom:207.386667pt;}
.y27_c00208{bottom:234.106800pt;}
.y26_c00208{bottom:252.666667pt;}
.y25_c00208{bottom:279.386400pt;}
.y24_c00208{bottom:298.106667pt;}
.y23_c00208{bottom:316.706667pt;}
.y22_c00208{bottom:343.426800pt;}
.y21_c00208{bottom:362.147067pt;}
.y20_c00208{bottom:380.706933pt;}
.y1f_c00208{bottom:399.426667pt;}
.y1e_c00208{bottom:426.147067pt;}
.y1d_c00208{bottom:444.706933pt;}
.y1c_c00208{bottom:463.426667pt;}
.y1b_c00208{bottom:490.147067pt;}
.y1a_c00208{bottom:508.706933pt;}
.y19_c00208{bottom:527.426667pt;}
.y18_c00208{bottom:554.173467pt;}
.y17_c00208{bottom:572.733333pt;}
.y16_c00208{bottom:591.453067pt;}
.y15_c00208{bottom:610.173333pt;}
.y14_c00208{bottom:636.733333pt;}
.y13_c00208{bottom:655.453200pt;}
.y12_c00208{bottom:674.173467pt;}
.y11_c00208{bottom:692.733333pt;}
.y10_c00208{bottom:719.453333pt;}
.yf_c00208{bottom:738.173333pt;}
.ye_c00208{bottom:756.733333pt;}
.yd_c00208{bottom:775.493333pt;}
.yc_c00208{bottom:794.213333pt;}
.yb_c00208{bottom:820.773600pt;}
.ya_c00208{bottom:839.493333pt;}
.y9_c00208{bottom:866.213467pt;}
.y8_c00208{bottom:884.773333pt;}
.y7_c00208{bottom:911.493200pt;}
.y6_c00208{bottom:930.213467pt;}
.y5_c00208{bottom:948.773333pt;}
.y4_c00208{bottom:975.493067pt;}
.y3_c00208{bottom:994.213333pt;}
.y2_c00208{bottom:1026.720000pt;}
.y1_c00208{bottom:1053.600000pt;}
.h3_c00208{height:42.895000pt;}
.h2_c00208{height:50.628750pt;}
.h0_c00208{height:1122.560000pt;}
.h1_c00208{height:1122.666667pt;}
.w0_c00208{width:793.760000pt;}
.w1_c00208{width:794.000000pt;}
.x0_c00208{left:0.000000pt;}
.x1_c00208{left:113.471867pt;}
.x2_c00208{left:132.352133pt;}
.x3_c00208{left:141.946800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_83111d03809cb10bee073c45.woff2')format("woff");}.ff1_c00209{font-family:ff1_c00209;line-height:1.070312;font-style:normal;font-weight:normal;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_8b0701136755e70ca98120f9.woff2')format("woff");}.ff2_c00209{font-family:ff2_c00209;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00209;src:url('chunks/assets/font_e63f46d5175a8327ad2275e4.woff2')format("woff");}.ff3_c00209{font-family:ff3_c00209;line-height:0.938965;font-style: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);}
.m1_c00209{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1_c00209{vertical-align:-5.758596px;}
.v0_c00209{vertical-align:0.000000px;}
.ls0_c00209{letter-spacing:0.000000px;}
.sc__c00209{text-shadow:none;}
.sc0_c00209{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00209{-webkit-text-stroke:0px transparent;}
.sc0_c00209{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00209{word-spacing:-18.414720px;}
.ws0_c00209{word-spacing:-16.560000px;}
.ws1_c00209{word-spacing:-11.609280px;}
.ws3_c00209{word-spacing:0.000000px;}
._0_c00209{margin-left:-1.127263px;}
._3_c00209{width:1.007356px;}
._2_c00209{width:79.252176px;}
._1_c00209{width:2021.935779px;}
.fc0_c00209{color:rgb(0,0,0);}
.fs1_c00209{font-size:41.760000px;}
.fs0_c00209{font-size:66.240000px;}
.y0_c00209{bottom:0.000000px;}
.y2d_c00209{bottom:119.376000px;}
.y2c_c00209{bottom:140.255850px;}
.y2b_c00209{bottom:170.310000px;}
.y2a_c00209{bottom:191.370150px;}
.y29_c00209{bottom:212.250000px;}
.y28_c00209{bottom:242.309700px;}
.y27_c00209{bottom:263.370000px;}
.y26_c00209{bottom:293.250300px;}
.y25_c00209{bottom:314.310000px;}
.y24_c00209{bottom:344.415150px;}
.y23_c00209{bottom:365.295000px;}
.y22_c00209{bottom:395.354850px;}
.y21_c00209{bottom:416.415150px;}
.y20_c00209{bottom:437.295000px;}
.y1f_c00209{bottom:467.355000px;}
.y1e_c00209{bottom:488.415000px;}
.y1d_c00209{bottom:509.295000px;}
.y1c_c00209{bottom:530.354850px;}
.y1b_c00209{bottom:551.415150px;}
.y1a_c00209{bottom:572.295000px;}
.y19_c00209{bottom:593.354700px;}
.y18_c00209{bottom:614.445000px;}
.y17_c00209{bottom:644.325000px;}
.y16_c00209{bottom:665.385000px;}
.y15_c00209{bottom:686.445000px;}
.y14_c00209{bottom:716.325000px;}
.y13_c00209{bottom:737.384850px;}
.y12_c00209{bottom:758.445150px;}
.y11_c00209{bottom:779.325000px;}
.y10_c00209{bottom:809.385600px;}
.yf_c00209{bottom:830.445300px;}
.ye_c00209{bottom:851.325150px;}
.yd_c00209{bottom:872.430000px;}
.yc_c00209{bottom:902.490150px;}
.yb_c00209{bottom:923.370000px;}
.ya_c00209{bottom:953.430000px;}
.y9_c00209{bottom:974.490000px;}
.y8_c00209{bottom:1004.370300px;}
.y7_c00209{bottom:1025.430000px;}
.y6_c00209{bottom:1055.490000px;}
.y5_c00209{bottom:1076.370000px;}
.y4_c00209{bottom:1097.429700px;}
.y3_c00209{bottom:1118.490000px;}
.y2_c00209{bottom:1155.060000px;}
.y1_c00209{bottom:1185.300000px;}
.h4_c00209{height:48.256875px;}
.h2_c00209{height:56.957344px;}
.h3_c00209{height:56.957944px;}
.h0_c00209{height:1262.880000px;}
.h1_c00209{height:1263.000000px;}
.w0_c00209{width:892.980000px;}
.w1_c00209{width:893.250000px;}
.x0_c00209{left:0.000000px;}
.x1_c00209{left:127.655850px;}
.x2_c00209{left:148.896150px;}
.x3_c00209{left:159.690150px;}
@media print{
.v1_c00209{vertical-align:-5.118752pt;}
.v0_c00209{vertical-align:0.000000pt;}
.ls0_c00209{letter-spacing:0.000000pt;}
.ws2_c00209{word-spacing:-16.368640pt;}
.ws0_c00209{word-spacing:-14.720000pt;}
.ws1_c00209{word-spacing:-10.319360pt;}
.ws3_c00209{word-spacing:0.000000pt;}
._0_c00209{margin-left:-1.002012pt;}
._3_c00209{width:0.895428pt;}
._2_c00209{width:70.446379pt;}
._1_c00209{width:1797.276248pt;}
.fs1_c00209{font-size:37.120000pt;}
.fs0_c00209{font-size:58.880000pt;}
.y0_c00209{bottom:0.000000pt;}
.y2d_c00209{bottom:106.112000pt;}
.y2c_c00209{bottom:124.671867pt;}
.y2b_c00209{bottom:151.386667pt;}
.y2a_c00209{bottom:170.106800pt;}
.y29_c00209{bottom:188.666667pt;}
.y28_c00209{bottom:215.386400pt;}
.y27_c00209{bottom:234.106667pt;}
.y26_c00209{bottom:260.666933pt;}
.y25_c00209{bottom:279.386667pt;}
.y24_c00209{bottom:306.146800pt;}
.y23_c00209{bottom:324.706667pt;}
.y22_c00209{bottom:351.426533pt;}
.y21_c00209{bottom:370.146800pt;}
.y20_c00209{bottom:388.706667pt;}
.y1f_c00209{bottom:415.426667pt;}
.y1e_c00209{bottom:434.146667pt;}
.y1d_c00209{bottom:452.706667pt;}
.y1c_c00209{bottom:471.426533pt;}
.y1b_c00209{bottom:490.146800pt;}
.y1a_c00209{bottom:508.706667pt;}
.y19_c00209{bottom:527.426400pt;}
.y18_c00209{bottom:546.173333pt;}
.y17_c00209{bottom:572.733333pt;}
.y16_c00209{bottom:591.453333pt;}
.y15_c00209{bottom:610.173333pt;}
.y14_c00209{bottom:636.733333pt;}
.y13_c00209{bottom:655.453200pt;}
.y12_c00209{bottom:674.173467pt;}
.y11_c00209{bottom:692.733333pt;}
.y10_c00209{bottom:719.453867pt;}
.yf_c00209{bottom:738.173600pt;}
.ye_c00209{bottom:756.733467pt;}
.yd_c00209{bottom:775.493333pt;}
.yc_c00209{bottom:802.213467pt;}
.yb_c00209{bottom:820.773333pt;}
.ya_c00209{bottom:847.493333pt;}
.y9_c00209{bottom:866.213333pt;}
.y8_c00209{bottom:892.773600pt;}
.y7_c00209{bottom:911.493333pt;}
.y6_c00209{bottom:938.213333pt;}
.y5_c00209{bottom:956.773333pt;}
.y4_c00209{bottom:975.493067pt;}
.y3_c00209{bottom:994.213333pt;}
.y2_c00209{bottom:1026.720000pt;}
.y1_c00209{bottom:1053.600000pt;}
.h4_c00209{height:42.895000pt;}
.h2_c00209{height:50.628750pt;}
.h3_c00209{height:50.629283pt;}
.h0_c00209{height:1122.560000pt;}
.h1_c00209{height:1122.666667pt;}
.w0_c00209{width:793.760000pt;}
.w1_c00209{width:794.000000pt;}
.x0_c00209{left:0.000000pt;}
.x1_c00209{left:113.471867pt;}
.x2_c00209{left:132.352133pt;}
.x3_c00209{left:141.946800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_72f074e98641e19f8440dce9.woff2')format("woff");}.ff1_c00210{font-family:ff1_c00210;line-height:1.070312;font-style:normal;font-weight:normal;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_8b0701136755e70ca98120f9.woff2')format("woff");}.ff2_c00210{font-family:ff2_c00210;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00210;src:url('chunks/assets/font_2c661173fbe578d4a1a8299a.woff2')format("woff");}.ff3_c00210{font-family:ff3_c00210;line-height:0.938965;font-style: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);}
.m1_c00210{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_c00210{vertical-align:0.000000px;}
.ls0_c00210{letter-spacing:0.000000px;}
.sc__c00210{text-shadow:none;}
.sc0_c00210{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00210{-webkit-text-stroke:0px transparent;}
.sc0_c00210{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00210{word-spacing:-36.829440px;}
.ws2_c00210{word-spacing:-18.414720px;}
.ws0_c00210{word-spacing:-16.560000px;}
.ws3_c00210{word-spacing:0.000000px;}
._0_c00210{margin-left:-1.127263px;}
._3_c00210{width:1.113512px;}
._2_c00210{width:79.252176px;}
._1_c00210{width:2040.655203px;}
.fc0_c00210{color:rgb(0,0,0);}
.fs0_c00210{font-size:66.240000px;}
.y0_c00210{bottom:0.000000px;}
.y2d_c00210{bottom:128.376000px;}
.y2c_c00210{bottom:149.255850px;}
.y2b_c00210{bottom:170.310000px;}
.y2a_c00210{bottom:191.370150px;}
.y29_c00210{bottom:212.250000px;}
.y28_c00210{bottom:242.309850px;}
.y27_c00210{bottom:263.370150px;}
.y26_c00210{bottom:284.250000px;}
.y25_c00210{bottom:314.309700px;}
.y24_c00210{bottom:335.370000px;}
.y23_c00210{bottom:356.295000px;}
.y22_c00210{bottom:386.354700px;}
.y21_c00210{bottom:407.415000px;}
.y20_c00210{bottom:437.295150px;}
.y1f_c00210{bottom:458.354850px;}
.y1e_c00210{bottom:479.415150px;}
.y1d_c00210{bottom:500.295000px;}
.y1c_c00210{bottom:530.354850px;}
.y1b_c00210{bottom:551.415150px;}
.y1a_c00210{bottom:572.295000px;}
.y19_c00210{bottom:602.355000px;}
.y18_c00210{bottom:623.445000px;}
.y17_c00210{bottom:644.325300px;}
.y16_c00210{bottom:665.385000px;}
.y15_c00210{bottom:695.445000px;}
.y14_c00210{bottom:716.325000px;}
.y13_c00210{bottom:737.384700px;}
.y12_c00210{bottom:758.445000px;}
.y11_c00210{bottom:788.325000px;}
.y10_c00210{bottom:818.385450px;}
.yf_c00210{bottom:839.445150px;}
.ye_c00210{bottom:860.325000px;}
.yd_c00210{bottom:890.430150px;}
.yc_c00210{bottom:911.490450px;}
.yb_c00210{bottom:932.370300px;}
.ya_c00210{bottom:953.430000px;}
.y9_c00210{bottom:983.490000px;}
.y8_c00210{bottom:1004.370000px;}
.y7_c00210{bottom:1025.429700px;}
.y6_c00210{bottom:1046.490000px;}
.y5_c00210{bottom:1076.370000px;}
.y4_c00210{bottom:1097.429700px;}
.y3_c00210{bottom:1118.490000px;}
.y2_c00210{bottom:1155.060000px;}
.y1_c00210{bottom:1185.300000px;}
.h2_c00210{height:56.957344px;}
.h3_c00210{height:56.958544px;}
.h0_c00210{height:1262.880000px;}
.h1_c00210{height:1263.000000px;}
.w0_c00210{width:892.980000px;}
.w1_c00210{width:893.250000px;}
.x0_c00210{left:0.000000px;}
.x1_c00210{left:127.655850px;}
.x2_c00210{left:148.896150px;}
.x3_c00210{left:159.690150px;}
@media print{
.v0_c00210{vertical-align:0.000000pt;}
.ls0_c00210{letter-spacing:0.000000pt;}
.ws1_c00210{word-spacing:-32.737280pt;}
.ws2_c00210{word-spacing:-16.368640pt;}
.ws0_c00210{word-spacing:-14.720000pt;}
.ws3_c00210{word-spacing:0.000000pt;}
._0_c00210{margin-left:-1.002012pt;}
._3_c00210{width:0.989788pt;}
._2_c00210{width:70.446379pt;}
._1_c00210{width:1813.915736pt;}
.fs0_c00210{font-size:58.880000pt;}
.y0_c00210{bottom:0.000000pt;}
.y2d_c00210{bottom:114.112000pt;}
.y2c_c00210{bottom:132.671867pt;}
.y2b_c00210{bottom:151.386667pt;}
.y2a_c00210{bottom:170.106800pt;}
.y29_c00210{bottom:188.666667pt;}
.y28_c00210{bottom:215.386533pt;}
.y27_c00210{bottom:234.106800pt;}
.y26_c00210{bottom:252.666667pt;}
.y25_c00210{bottom:279.386400pt;}
.y24_c00210{bottom:298.106667pt;}
.y23_c00210{bottom:316.706667pt;}
.y22_c00210{bottom:343.426400pt;}
.y21_c00210{bottom:362.146667pt;}
.y20_c00210{bottom:388.706800pt;}
.y1f_c00210{bottom:407.426533pt;}
.y1e_c00210{bottom:426.146800pt;}
.y1d_c00210{bottom:444.706667pt;}
.y1c_c00210{bottom:471.426533pt;}
.y1b_c00210{bottom:490.146800pt;}
.y1a_c00210{bottom:508.706667pt;}
.y19_c00210{bottom:535.426667pt;}
.y18_c00210{bottom:554.173333pt;}
.y17_c00210{bottom:572.733600pt;}
.y16_c00210{bottom:591.453333pt;}
.y15_c00210{bottom:618.173333pt;}
.y14_c00210{bottom:636.733333pt;}
.y13_c00210{bottom:655.453067pt;}
.y12_c00210{bottom:674.173333pt;}
.y11_c00210{bottom:700.733333pt;}
.y10_c00210{bottom:727.453733pt;}
.yf_c00210{bottom:746.173467pt;}
.ye_c00210{bottom:764.733333pt;}
.yd_c00210{bottom:791.493467pt;}
.yc_c00210{bottom:810.213733pt;}
.yb_c00210{bottom:828.773600pt;}
.ya_c00210{bottom:847.493333pt;}
.y9_c00210{bottom:874.213333pt;}
.y8_c00210{bottom:892.773333pt;}
.y7_c00210{bottom:911.493067pt;}
.y6_c00210{bottom:930.213333pt;}
.y5_c00210{bottom:956.773333pt;}
.y4_c00210{bottom:975.493067pt;}
.y3_c00210{bottom:994.213333pt;}
.y2_c00210{bottom:1026.720000pt;}
.y1_c00210{bottom:1053.600000pt;}
.h2_c00210{height:50.628750pt;}
.h3_c00210{height:50.629817pt;}
.h0_c00210{height:1122.560000pt;}
.h1_c00210{height:1122.666667pt;}
.w0_c00210{width:793.760000pt;}
.w1_c00210{width:794.000000pt;}
.x0_c00210{left:0.000000pt;}
.x1_c00210{left:113.471867pt;}
.x2_c00210{left:132.352133pt;}
.x3_c00210{left:141.946800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a42f7b06af69a6d6657a33f8.woff2')format("woff");}.ff1_c00211{font-family:ff1_c00211;line-height:1.070312;font-style:normal;font-weight:normal;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_8b0701136755e70ca98120f9.woff2')format("woff");}.ff2_c00211{font-family:ff2_c00211;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00211;src:url('chunks/assets/font_17c622f2473f9aece931387f.woff2')format("woff");}.ff3_c00211{font-family:ff3_c00211;line-height:0.938965;font-style: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);}
.m1_c00211{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_c00211{vertical-align:0.000000px;}
.ls0_c00211{letter-spacing:0.000000px;}
.sc__c00211{text-shadow:none;}
.sc0_c00211{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00211{-webkit-text-stroke:0px transparent;}
.sc0_c00211{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00211{word-spacing:-18.414720px;}
.ws0_c00211{word-spacing:-16.560000px;}
.ws2_c00211{word-spacing:0.000000px;}
._0_c00211{margin-left:-1.127263px;}
._3_c00211{width:1.389352px;}
._2_c00211{width:79.252176px;}
._1_c00211{width:2021.935779px;}
.fc0_c00211{color:rgb(0,0,0);}
.fs0_c00211{font-size:66.240000px;}
.y0_c00211{bottom:0.000000px;}
.y2d_c00211{bottom:146.376300px;}
.y2c_c00211{bottom:167.250300px;}
.y2b_c00211{bottom:188.310000px;}
.y2a_c00211{bottom:218.370300px;}
.y29_c00211{bottom:239.250150px;}
.y28_c00211{bottom:260.309850px;}
.y27_c00211{bottom:281.370150px;}
.y26_c00211{bottom:302.250000px;}
.y25_c00211{bottom:332.309700px;}
.y24_c00211{bottom:353.415150px;}
.y23_c00211{bottom:374.295000px;}
.y22_c00211{bottom:395.354700px;}
.y21_c00211{bottom:416.415000px;}
.y20_c00211{bottom:446.295450px;}
.y1f_c00211{bottom:467.355150px;}
.y1e_c00211{bottom:488.415450px;}
.y1d_c00211{bottom:509.295300px;}
.y1c_c00211{bottom:530.355000px;}
.y1b_c00211{bottom:560.415000px;}
.y1a_c00211{bottom:581.295300px;}
.y19_c00211{bottom:602.355000px;}
.y18_c00211{bottom:632.445000px;}
.y17_c00211{bottom:653.325300px;}
.y16_c00211{bottom:674.385000px;}
.y15_c00211{bottom:704.445000px;}
.y14_c00211{bottom:725.325000px;}
.y13_c00211{bottom:746.385000px;}
.y12_c00211{bottom:776.445150px;}
.y11_c00211{bottom:797.325000px;}
.y10_c00211{bottom:827.385000px;}
.yf_c00211{bottom:848.445150px;}
.ye_c00211{bottom:869.325000px;}
.yd_c00211{bottom:890.429850px;}
.yc_c00211{bottom:911.490150px;}
.yb_c00211{bottom:932.370000px;}
.ya_c00211{bottom:962.430000px;}
.y9_c00211{bottom:983.490000px;}
.y8_c00211{bottom:1004.370000px;}
.y7_c00211{bottom:1034.430000px;}
.y6_c00211{bottom:1055.490000px;}
.y5_c00211{bottom:1076.370000px;}
.y4_c00211{bottom:1097.429700px;}
.y3_c00211{bottom:1118.490000px;}
.y2_c00211{bottom:1155.060000px;}
.y1_c00211{bottom:1185.300000px;}
.h4_c00211{height:48.256875px;}
.h2_c00211{height:56.957344px;}
.h3_c00211{height:56.958544px;}
.h0_c00211{height:1262.880000px;}
.h1_c00211{height:1263.000000px;}
.w0_c00211{width:892.980000px;}
.w1_c00211{width:893.250000px;}
.x0_c00211{left:0.000000px;}
.x1_c00211{left:127.655850px;}
.x2_c00211{left:148.896150px;}
.x3_c00211{left:159.690150px;}
@media print{
.v0_c00211{vertical-align:0.000000pt;}
.ls0_c00211{letter-spacing:0.000000pt;}
.ws1_c00211{word-spacing:-16.368640pt;}
.ws0_c00211{word-spacing:-14.720000pt;}
.ws2_c00211{word-spacing:0.000000pt;}
._0_c00211{margin-left:-1.002012pt;}
._3_c00211{width:1.234980pt;}
._2_c00211{width:70.446379pt;}
._1_c00211{width:1797.276248pt;}
.fs0_c00211{font-size:58.880000pt;}
.y0_c00211{bottom:0.000000pt;}
.y2d_c00211{bottom:130.112267pt;}
.y2c_c00211{bottom:148.666933pt;}
.y2b_c00211{bottom:167.386667pt;}
.y2a_c00211{bottom:194.106933pt;}
.y29_c00211{bottom:212.666800pt;}
.y28_c00211{bottom:231.386533pt;}
.y27_c00211{bottom:250.106800pt;}
.y26_c00211{bottom:268.666667pt;}
.y25_c00211{bottom:295.386400pt;}
.y24_c00211{bottom:314.146800pt;}
.y23_c00211{bottom:332.706667pt;}
.y22_c00211{bottom:351.426400pt;}
.y21_c00211{bottom:370.146667pt;}
.y20_c00211{bottom:396.707067pt;}
.y1f_c00211{bottom:415.426800pt;}
.y1e_c00211{bottom:434.147067pt;}
.y1d_c00211{bottom:452.706933pt;}
.y1c_c00211{bottom:471.426667pt;}
.y1b_c00211{bottom:498.146667pt;}
.y1a_c00211{bottom:516.706933pt;}
.y19_c00211{bottom:535.426667pt;}
.y18_c00211{bottom:562.173333pt;}
.y17_c00211{bottom:580.733600pt;}
.y16_c00211{bottom:599.453333pt;}
.y15_c00211{bottom:626.173333pt;}
.y14_c00211{bottom:644.733333pt;}
.y13_c00211{bottom:663.453333pt;}
.y12_c00211{bottom:690.173467pt;}
.y11_c00211{bottom:708.733333pt;}
.y10_c00211{bottom:735.453333pt;}
.yf_c00211{bottom:754.173467pt;}
.ye_c00211{bottom:772.733333pt;}
.yd_c00211{bottom:791.493200pt;}
.yc_c00211{bottom:810.213467pt;}
.yb_c00211{bottom:828.773333pt;}
.ya_c00211{bottom:855.493333pt;}
.y9_c00211{bottom:874.213333pt;}
.y8_c00211{bottom:892.773333pt;}
.y7_c00211{bottom:919.493333pt;}
.y6_c00211{bottom:938.213333pt;}
.y5_c00211{bottom:956.773333pt;}
.y4_c00211{bottom:975.493067pt;}
.y3_c00211{bottom:994.213333pt;}
.y2_c00211{bottom:1026.720000pt;}
.y1_c00211{bottom:1053.600000pt;}
.h4_c00211{height:42.895000pt;}
.h2_c00211{height:50.628750pt;}
.h3_c00211{height:50.629817pt;}
.h0_c00211{height:1122.560000pt;}
.h1_c00211{height:1122.666667pt;}
.w0_c00211{width:793.760000pt;}
.w1_c00211{width:794.000000pt;}
.x0_c00211{left:0.000000pt;}
.x1_c00211{left:113.471867pt;}
.x2_c00211{left:132.352133pt;}
.x3_c00211{left:141.946800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_360d007ed940fdeef6422ac6.woff2')format("woff");}.ff1_c00212{font-family:ff1_c00212;line-height:1.070312;font-style:normal;font-weight:normal;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_8b0701136755e70ca98120f9.woff2')format("woff");}.ff2_c00212{font-family:ff2_c00212;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00212;src:url('chunks/assets/font_2c661173fbe578d4a1a8299a.woff2')format("woff");}.ff3_c00212{font-family:ff3_c00212;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00212{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00212{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00212{vertical-align:0.000000px;}
.ls0_c00212{letter-spacing:0.000000px;}
.sc__c00212{text-shadow:none;}
.sc0_c00212{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00212{-webkit-text-stroke:0px transparent;}
.sc0_c00212{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00212{word-spacing:-36.829440px;}
.ws2_c00212{word-spacing:-18.414720px;}
.ws0_c00212{word-spacing:-16.560000px;}
.ws3_c00212{word-spacing:0.000000px;}
._0_c00212{margin-left:-1.127263px;}
._3_c00212{width:1.031883px;}
._5_c00212{width:2.189665px;}
._2_c00212{width:79.252176px;}
._4_c00212{width:173.180215px;}
._1_c00212{width:2003.931747px;}
.fc0_c00212{color:rgb(0,0,0);}
.fs0_c00212{font-size:66.240000px;}
.y0_c00212{bottom:0.000000px;}
.y2e_c00212{bottom:125.316150px;}
.y2d_c00212{bottom:146.376300px;}
.y2c_c00212{bottom:167.250300px;}
.y2b_c00212{bottom:188.310000px;}
.y2a_c00212{bottom:218.370000px;}
.y29_c00212{bottom:239.250000px;}
.y28_c00212{bottom:269.310000px;}
.y27_c00212{bottom:290.370000px;}
.y26_c00212{bottom:320.249850px;}
.y25_c00212{bottom:341.354700px;}
.y24_c00212{bottom:362.415000px;}
.y23_c00212{bottom:392.295000px;}
.y22_c00212{bottom:413.354700px;}
.y21_c00212{bottom:434.415000px;}
.y20_c00212{bottom:464.295000px;}
.y1f_c00212{bottom:485.355000px;}
.y1e_c00212{bottom:515.415000px;}
.y1d_c00212{bottom:536.295000px;}
.y1c_c00212{bottom:557.355000px;}
.y1b_c00212{bottom:578.415150px;}
.y1a_c00212{bottom:599.295000px;}
.y19_c00212{bottom:620.384700px;}
.y18_c00212{bottom:641.445000px;}
.y17_c00212{bottom:671.325000px;}
.y16_c00212{bottom:692.385000px;}
.y15_c00212{bottom:713.445000px;}
.y14_c00212{bottom:734.325150px;}
.y13_c00212{bottom:755.384850px;}
.y12_c00212{bottom:776.445150px;}
.y11_c00212{bottom:797.325000px;}
.y10_c00212{bottom:827.385000px;}
.yf_c00212{bottom:848.445000px;}
.ye_c00212{bottom:869.324850px;}
.yd_c00212{bottom:890.429700px;}
.yc_c00212{bottom:911.490000px;}
.yb_c00212{bottom:941.370000px;}
.ya_c00212{bottom:962.430000px;}
.y9_c00212{bottom:983.490000px;}
.y8_c00212{bottom:1004.370000px;}
.y7_c00212{bottom:1025.429700px;}
.y6_c00212{bottom:1046.490000px;}
.y5_c00212{bottom:1076.370000px;}
.y4_c00212{bottom:1097.429700px;}
.y3_c00212{bottom:1118.490000px;}
.y2_c00212{bottom:1155.060000px;}
.y1_c00212{bottom:1185.300000px;}
.h2_c00212{height:56.957344px;}
.h0_c00212{height:1262.880000px;}
.h1_c00212{height:1263.000000px;}
.w0_c00212{width:892.980000px;}
.w1_c00212{width:893.250000px;}
.x0_c00212{left:0.000000px;}
.x1_c00212{left:127.655850px;}
.x2_c00212{left:148.896150px;}
.x3_c00212{left:159.690150px;}
@media print{
.v0_c00212{vertical-align:0.000000pt;}
.ls0_c00212{letter-spacing:0.000000pt;}
.ws1_c00212{word-spacing:-32.737280pt;}
.ws2_c00212{word-spacing:-16.368640pt;}
.ws0_c00212{word-spacing:-14.720000pt;}
.ws3_c00212{word-spacing:0.000000pt;}
._0_c00212{margin-left:-1.002012pt;}
._3_c00212{width:0.917229pt;}
._5_c00212{width:1.946369pt;}
._2_c00212{width:70.446379pt;}
._4_c00212{width:153.937969pt;}
._1_c00212{width:1781.272664pt;}
.fs0_c00212{font-size:58.880000pt;}
.y0_c00212{bottom:0.000000pt;}
.y2e_c00212{bottom:111.392133pt;}
.y2d_c00212{bottom:130.112267pt;}
.y2c_c00212{bottom:148.666933pt;}
.y2b_c00212{bottom:167.386667pt;}
.y2a_c00212{bottom:194.106667pt;}
.y29_c00212{bottom:212.666667pt;}
.y28_c00212{bottom:239.386667pt;}
.y27_c00212{bottom:258.106667pt;}
.y26_c00212{bottom:284.666533pt;}
.y25_c00212{bottom:303.426400pt;}
.y24_c00212{bottom:322.146667pt;}
.y23_c00212{bottom:348.706667pt;}
.y22_c00212{bottom:367.426400pt;}
.y21_c00212{bottom:386.146667pt;}
.y20_c00212{bottom:412.706667pt;}
.y1f_c00212{bottom:431.426667pt;}
.y1e_c00212{bottom:458.146667pt;}
.y1d_c00212{bottom:476.706667pt;}
.y1c_c00212{bottom:495.426667pt;}
.y1b_c00212{bottom:514.146800pt;}
.y1a_c00212{bottom:532.706667pt;}
.y19_c00212{bottom:551.453067pt;}
.y18_c00212{bottom:570.173333pt;}
.y17_c00212{bottom:596.733333pt;}
.y16_c00212{bottom:615.453333pt;}
.y15_c00212{bottom:634.173333pt;}
.y14_c00212{bottom:652.733467pt;}
.y13_c00212{bottom:671.453200pt;}
.y12_c00212{bottom:690.173467pt;}
.y11_c00212{bottom:708.733333pt;}
.y10_c00212{bottom:735.453333pt;}
.yf_c00212{bottom:754.173333pt;}
.ye_c00212{bottom:772.733200pt;}
.yd_c00212{bottom:791.493067pt;}
.yc_c00212{bottom:810.213333pt;}
.yb_c00212{bottom:836.773333pt;}
.ya_c00212{bottom:855.493333pt;}
.y9_c00212{bottom:874.213333pt;}
.y8_c00212{bottom:892.773333pt;}
.y7_c00212{bottom:911.493067pt;}
.y6_c00212{bottom:930.213333pt;}
.y5_c00212{bottom:956.773333pt;}
.y4_c00212{bottom:975.493067pt;}
.y3_c00212{bottom:994.213333pt;}
.y2_c00212{bottom:1026.720000pt;}
.y1_c00212{bottom:1053.600000pt;}
.h2_c00212{height:50.628750pt;}
.h0_c00212{height:1122.560000pt;}
.h1_c00212{height:1122.666667pt;}
.w0_c00212{width:793.760000pt;}
.w1_c00212{width:794.000000pt;}
.x0_c00212{left:0.000000pt;}
.x1_c00212{left:113.471867pt;}
.x2_c00212{left:132.352133pt;}
.x3_c00212{left:141.946800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_80580d819958e02ccaebdc90.woff2')format("woff");}.ff1_c00213{font-family:ff1_c00213;line-height:1.070312;font-style:normal;font-weight:normal;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_8b0701136755e70ca98120f9.woff2')format("woff");}.ff2_c00213{font-family:ff2_c00213;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00213;src:url('chunks/assets/font_2c661173fbe578d4a1a8299a.woff2')format("woff");}.ff3_c00213{font-family:ff3_c00213;line-height:0.938965;font-style: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);}
.m1_c00213{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_c00213{vertical-align:0.000000px;}
.ls0_c00213{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00213{word-spacing:-36.829440px;}
.ws2_c00213{word-spacing:-18.414720px;}
.ws0_c00213{word-spacing:-16.560000px;}
.ws3_c00213{word-spacing:0.000000px;}
._0_c00213{margin-left:-1.127263px;}
._3_c00213{width:1.115278px;}
._2_c00213{width:79.252176px;}
._1_c00213{width:1985.212323px;}
.fc0_c00213{color:rgb(0,0,0);}
.fs0_c00213{font-size:66.240000px;}
.y0_c00213{bottom:0.000000px;}
.y2d_c00213{bottom:128.376000px;}
.y2c_c00213{bottom:149.255850px;}
.y2b_c00213{bottom:179.309700px;}
.y2a_c00213{bottom:200.370000px;}
.y29_c00213{bottom:230.250000px;}
.y28_c00213{bottom:251.310000px;}
.y27_c00213{bottom:272.370450px;}
.y26_c00213{bottom:293.250300px;}
.y25_c00213{bottom:314.310000px;}
.y24_c00213{bottom:344.415000px;}
.y23_c00213{bottom:365.295000px;}
.y22_c00213{bottom:386.354700px;}
.y21_c00213{bottom:407.415000px;}
.y20_c00213{bottom:437.295000px;}
.y1f_c00213{bottom:458.355000px;}
.y1e_c00213{bottom:479.415000px;}
.y1d_c00213{bottom:500.295300px;}
.y1c_c00213{bottom:521.355000px;}
.y1b_c00213{bottom:551.415000px;}
.y1a_c00213{bottom:572.295000px;}
.y19_c00213{bottom:593.354700px;}
.y18_c00213{bottom:614.445000px;}
.y17_c00213{bottom:644.325000px;}
.y16_c00213{bottom:665.385000px;}
.y15_c00213{bottom:686.445000px;}
.y14_c00213{bottom:707.325300px;}
.y13_c00213{bottom:728.385000px;}
.y12_c00213{bottom:758.445000px;}
.y11_c00213{bottom:779.325000px;}
.y10_c00213{bottom:800.385300px;}
.yf_c00213{bottom:821.445000px;}
.ye_c00213{bottom:851.325150px;}
.yd_c00213{bottom:872.430000px;}
.yc_c00213{bottom:902.490150px;}
.yb_c00213{bottom:923.370000px;}
.ya_c00213{bottom:944.429700px;}
.y9_c00213{bottom:965.490000px;}
.y8_c00213{bottom:995.370000px;}
.y7_c00213{bottom:1016.430000px;}
.y6_c00213{bottom:1037.490000px;}
.y5_c00213{bottom:1067.370000px;}
.y4_c00213{bottom:1097.429700px;}
.y3_c00213{bottom:1118.490000px;}
.y2_c00213{bottom:1155.060000px;}
.y1_c00213{bottom:1185.300000px;}
.h2_c00213{height:56.957344px;}
.h3_c00213{height:56.958544px;}
.h0_c00213{height:1262.880000px;}
.h1_c00213{height:1263.000000px;}
.w0_c00213{width:892.980000px;}
.w1_c00213{width:893.250000px;}
.x0_c00213{left:0.000000px;}
.x1_c00213{left:127.655850px;}
.x2_c00213{left:148.896150px;}
.x3_c00213{left:159.690150px;}
@media print{
.v0_c00213{vertical-align:0.000000pt;}
.ls0_c00213{letter-spacing:0.000000pt;}
.ws1_c00213{word-spacing:-32.737280pt;}
.ws2_c00213{word-spacing:-16.368640pt;}
.ws0_c00213{word-spacing:-14.720000pt;}
.ws3_c00213{word-spacing:0.000000pt;}
._0_c00213{margin-left:-1.002012pt;}
._3_c00213{width:0.991358pt;}
._2_c00213{width:70.446379pt;}
._1_c00213{width:1764.633176pt;}
.fs0_c00213{font-size:58.880000pt;}
.y0_c00213{bottom:0.000000pt;}
.y2d_c00213{bottom:114.112000pt;}
.y2c_c00213{bottom:132.671867pt;}
.y2b_c00213{bottom:159.386400pt;}
.y2a_c00213{bottom:178.106667pt;}
.y29_c00213{bottom:204.666667pt;}
.y28_c00213{bottom:223.386667pt;}
.y27_c00213{bottom:242.107067pt;}
.y26_c00213{bottom:260.666933pt;}
.y25_c00213{bottom:279.386667pt;}
.y24_c00213{bottom:306.146667pt;}
.y23_c00213{bottom:324.706667pt;}
.y22_c00213{bottom:343.426400pt;}
.y21_c00213{bottom:362.146667pt;}
.y20_c00213{bottom:388.706667pt;}
.y1f_c00213{bottom:407.426667pt;}
.y1e_c00213{bottom:426.146667pt;}
.y1d_c00213{bottom:444.706933pt;}
.y1c_c00213{bottom:463.426667pt;}
.y1b_c00213{bottom:490.146667pt;}
.y1a_c00213{bottom:508.706667pt;}
.y19_c00213{bottom:527.426400pt;}
.y18_c00213{bottom:546.173333pt;}
.y17_c00213{bottom:572.733333pt;}
.y16_c00213{bottom:591.453333pt;}
.y15_c00213{bottom:610.173333pt;}
.y14_c00213{bottom:628.733600pt;}
.y13_c00213{bottom:647.453333pt;}
.y12_c00213{bottom:674.173333pt;}
.y11_c00213{bottom:692.733333pt;}
.y10_c00213{bottom:711.453600pt;}
.yf_c00213{bottom:730.173333pt;}
.ye_c00213{bottom:756.733467pt;}
.yd_c00213{bottom:775.493333pt;}
.yc_c00213{bottom:802.213467pt;}
.yb_c00213{bottom:820.773333pt;}
.ya_c00213{bottom:839.493067pt;}
.y9_c00213{bottom:858.213333pt;}
.y8_c00213{bottom:884.773333pt;}
.y7_c00213{bottom:903.493333pt;}
.y6_c00213{bottom:922.213333pt;}
.y5_c00213{bottom:948.773333pt;}
.y4_c00213{bottom:975.493067pt;}
.y3_c00213{bottom:994.213333pt;}
.y2_c00213{bottom:1026.720000pt;}
.y1_c00213{bottom:1053.600000pt;}
.h2_c00213{height:50.628750pt;}
.h3_c00213{height:50.629817pt;}
.h0_c00213{height:1122.560000pt;}
.h1_c00213{height:1122.666667pt;}
.w0_c00213{width:793.760000pt;}
.w1_c00213{width:794.000000pt;}
.x0_c00213{left:0.000000pt;}
.x1_c00213{left:113.471867pt;}
.x2_c00213{left:132.352133pt;}
.x3_c00213{left:141.946800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4caaab4546a25fc15744f4fc.woff2')format("woff");}.ff1_c00214{font-family:ff1_c00214;line-height:1.070312;font-style:normal;font-weight:normal;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_8b0701136755e70ca98120f9.woff2')format("woff");}.ff2_c00214{font-family:ff2_c00214;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00214;src:url('chunks/assets/font_2c661173fbe578d4a1a8299a.woff2')format("woff");}.ff3_c00214{font-family:ff3_c00214;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00214{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00214{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00214{vertical-align:0.000000px;}
.ls0_c00214{letter-spacing:0.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;}
}
.ws1_c00214{word-spacing:-36.829440px;}
.ws2_c00214{word-spacing:-18.414720px;}
.ws0_c00214{word-spacing:-16.560000px;}
.ws3_c00214{word-spacing:0.000000px;}
._0_c00214{margin-left:-1.127263px;}
._3_c00214{width:1.046055px;}
._2_c00214{width:79.252176px;}
._1_c00214{width:1978.018659px;}
.fc0_c00214{color:rgb(0,0,0);}
.fs0_c00214{font-size:66.240000px;}
.y0_c00214{bottom:0.000000px;}
.y2e_c00214{bottom:98.316300px;}
.y2d_c00214{bottom:119.376000px;}
.y2c_c00214{bottom:140.255850px;}
.y2b_c00214{bottom:170.309850px;}
.y2a_c00214{bottom:191.370150px;}
.y29_c00214{bottom:212.250000px;}
.y28_c00214{bottom:242.309850px;}
.y27_c00214{bottom:263.370150px;}
.y26_c00214{bottom:284.250000px;}
.y25_c00214{bottom:314.310000px;}
.y24_c00214{bottom:335.370000px;}
.y23_c00214{bottom:356.295300px;}
.y22_c00214{bottom:377.355000px;}
.y21_c00214{bottom:407.415150px;}
.y20_c00214{bottom:428.295000px;}
.y1f_c00214{bottom:458.355000px;}
.y1e_c00214{bottom:479.415000px;}
.y1d_c00214{bottom:509.295000px;}
.y1c_c00214{bottom:530.354700px;}
.y1b_c00214{bottom:551.415000px;}
.y1a_c00214{bottom:581.295000px;}
.y19_c00214{bottom:602.354700px;}
.y18_c00214{bottom:623.445000px;}
.y17_c00214{bottom:653.325000px;}
.y16_c00214{bottom:674.385000px;}
.y15_c00214{bottom:695.445000px;}
.y14_c00214{bottom:716.325150px;}
.y13_c00214{bottom:737.384850px;}
.y12_c00214{bottom:758.445150px;}
.y11_c00214{bottom:779.325000px;}
.y10_c00214{bottom:809.385600px;}
.yf_c00214{bottom:830.445300px;}
.ye_c00214{bottom:851.325150px;}
.yd_c00214{bottom:872.430000px;}
.yc_c00214{bottom:902.490450px;}
.yb_c00214{bottom:923.370300px;}
.ya_c00214{bottom:944.430000px;}
.y9_c00214{bottom:974.490150px;}
.y8_c00214{bottom:995.370000px;}
.y7_c00214{bottom:1025.429850px;}
.y6_c00214{bottom:1046.490150px;}
.y5_c00214{bottom:1067.370000px;}
.y4_c00214{bottom:1097.429700px;}
.y3_c00214{bottom:1118.490000px;}
.y2_c00214{bottom:1155.060000px;}
.y1_c00214{bottom:1185.300000px;}
.h2_c00214{height:56.957344px;}
.h3_c00214{height:56.958544px;}
.h0_c00214{height:1262.880000px;}
.h1_c00214{height:1263.000000px;}
.w0_c00214{width:892.980000px;}
.w1_c00214{width:893.250000px;}
.x0_c00214{left:0.000000px;}
.x1_c00214{left:127.655850px;}
.x2_c00214{left:148.896150px;}
.x3_c00214{left:159.681150px;}
@media print{
.v0_c00214{vertical-align:0.000000pt;}
.ls0_c00214{letter-spacing:0.000000pt;}
.ws1_c00214{word-spacing:-32.737280pt;}
.ws2_c00214{word-spacing:-16.368640pt;}
.ws0_c00214{word-spacing:-14.720000pt;}
.ws3_c00214{word-spacing:0.000000pt;}
._0_c00214{margin-left:-1.002012pt;}
._3_c00214{width:0.929826pt;}
._2_c00214{width:70.446379pt;}
._1_c00214{width:1758.238808pt;}
.fs0_c00214{font-size:58.880000pt;}
.y0_c00214{bottom:0.000000pt;}
.y2e_c00214{bottom:87.392267pt;}
.y2d_c00214{bottom:106.112000pt;}
.y2c_c00214{bottom:124.671867pt;}
.y2b_c00214{bottom:151.386533pt;}
.y2a_c00214{bottom:170.106800pt;}
.y29_c00214{bottom:188.666667pt;}
.y28_c00214{bottom:215.386533pt;}
.y27_c00214{bottom:234.106800pt;}
.y26_c00214{bottom:252.666667pt;}
.y25_c00214{bottom:279.386667pt;}
.y24_c00214{bottom:298.106667pt;}
.y23_c00214{bottom:316.706933pt;}
.y22_c00214{bottom:335.426667pt;}
.y21_c00214{bottom:362.146800pt;}
.y20_c00214{bottom:380.706667pt;}
.y1f_c00214{bottom:407.426667pt;}
.y1e_c00214{bottom:426.146667pt;}
.y1d_c00214{bottom:452.706667pt;}
.y1c_c00214{bottom:471.426400pt;}
.y1b_c00214{bottom:490.146667pt;}
.y1a_c00214{bottom:516.706667pt;}
.y19_c00214{bottom:535.426400pt;}
.y18_c00214{bottom:554.173333pt;}
.y17_c00214{bottom:580.733333pt;}
.y16_c00214{bottom:599.453333pt;}
.y15_c00214{bottom:618.173333pt;}
.y14_c00214{bottom:636.733467pt;}
.y13_c00214{bottom:655.453200pt;}
.y12_c00214{bottom:674.173467pt;}
.y11_c00214{bottom:692.733333pt;}
.y10_c00214{bottom:719.453867pt;}
.yf_c00214{bottom:738.173600pt;}
.ye_c00214{bottom:756.733467pt;}
.yd_c00214{bottom:775.493333pt;}
.yc_c00214{bottom:802.213733pt;}
.yb_c00214{bottom:820.773600pt;}
.ya_c00214{bottom:839.493333pt;}
.y9_c00214{bottom:866.213467pt;}
.y8_c00214{bottom:884.773333pt;}
.y7_c00214{bottom:911.493200pt;}
.y6_c00214{bottom:930.213467pt;}
.y5_c00214{bottom:948.773333pt;}
.y4_c00214{bottom:975.493067pt;}
.y3_c00214{bottom:994.213333pt;}
.y2_c00214{bottom:1026.720000pt;}
.y1_c00214{bottom:1053.600000pt;}
.h2_c00214{height:50.628750pt;}
.h3_c00214{height:50.629817pt;}
.h0_c00214{height:1122.560000pt;}
.h1_c00214{height:1122.666667pt;}
.w0_c00214{width:793.760000pt;}
.w1_c00214{width:794.000000pt;}
.x0_c00214{left:0.000000pt;}
.x1_c00214{left:113.471867pt;}
.x2_c00214{left:132.352133pt;}
.x3_c00214{left:141.938800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d8eb576a5a425d05e321cf7b.woff2')format("woff");}.ff1_c00215{font-family:ff1_c00215;line-height:1.070312;font-style:normal;font-weight:normal;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_8b0701136755e70ca98120f9.woff2')format("woff");}.ff2_c00215{font-family:ff2_c00215;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00215;src:url('chunks/assets/font_2c661173fbe578d4a1a8299a.woff2')format("woff");}.ff3_c00215{font-family:ff3_c00215;line-height:0.938965;font-style: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);}
.m1_c00215{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_c00215{vertical-align:0.000000px;}
.ls0_c00215{letter-spacing:0.000000px;}
.sc__c00215{text-shadow:none;}
.sc0_c00215{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00215{-webkit-text-stroke:0px transparent;}
.sc0_c00215{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00215{word-spacing:-36.829440px;}
.ws1_c00215{word-spacing:-18.414720px;}
.ws0_c00215{word-spacing:-16.560000px;}
.ws3_c00215{word-spacing:0.000000px;}
._0_c00215{margin-left:-1.127263px;}
._2_c00215{width:79.251480px;}
._3_c00215{width:845.884800px;}
._1_c00215{width:1996.738083px;}
.fc0_c00215{color:rgb(0,0,0);}
.fs0_c00215{font-size:66.240000px;}
.y0_c00215{bottom:0.000000px;}
.y25_c00215{bottom:287.310000px;}
.y24_c00215{bottom:308.370000px;}
.y23_c00215{bottom:338.295000px;}
.y22_c00215{bottom:368.355000px;}
.y21_c00215{bottom:398.415450px;}
.y20_c00215{bottom:419.295300px;}
.y1f_c00215{bottom:440.355000px;}
.y1e_c00215{bottom:470.415000px;}
.y1d_c00215{bottom:500.295300px;}
.y1c_c00215{bottom:521.355000px;}
.y1b_c00215{bottom:551.415450px;}
.y1a_c00215{bottom:572.295300px;}
.y19_c00215{bottom:593.355000px;}
.y18_c00215{bottom:623.445000px;}
.y17_c00215{bottom:644.325000px;}
.y16_c00215{bottom:665.385000px;}
.y15_c00215{bottom:695.445000px;}
.y14_c00215{bottom:716.325000px;}
.y13_c00215{bottom:737.384700px;}
.y12_c00215{bottom:758.445000px;}
.y11_c00215{bottom:788.324700px;}
.y10_c00215{bottom:809.385000px;}
.yf_c00215{bottom:839.445000px;}
.ye_c00215{bottom:860.325000px;}
.yd_c00215{bottom:881.429850px;}
.yc_c00215{bottom:902.490150px;}
.yb_c00215{bottom:923.370000px;}
.ya_c00215{bottom:953.429850px;}
.y9_c00215{bottom:974.490150px;}
.y8_c00215{bottom:995.370000px;}
.y7_c00215{bottom:1025.429850px;}
.y6_c00215{bottom:1046.490150px;}
.y5_c00215{bottom:1067.370000px;}
.y4_c00215{bottom:1097.430000px;}
.y3_c00215{bottom:1118.490000px;}
.y2_c00215{bottom:1155.060000px;}
.y1_c00215{bottom:1185.300000px;}
.h2_c00215{height:56.957344px;}
.h0_c00215{height:1262.880000px;}
.h1_c00215{height:1263.000000px;}
.w0_c00215{width:892.980000px;}
.w1_c00215{width:893.250000px;}
.x0_c00215{left:0.000000px;}
.x1_c00215{left:127.655850px;}
.x2_c00215{left:148.896150px;}
.x3_c00215{left:159.690000px;}
.x4_c00215{left:191.550000px;}
@media print{
.v0_c00215{vertical-align:0.000000pt;}
.ls0_c00215{letter-spacing:0.000000pt;}
.ws2_c00215{word-spacing:-32.737280pt;}
.ws1_c00215{word-spacing:-16.368640pt;}
.ws0_c00215{word-spacing:-14.720000pt;}
.ws3_c00215{word-spacing:0.000000pt;}
._0_c00215{margin-left:-1.002012pt;}
._2_c00215{width:70.445760pt;}
._3_c00215{width:751.897600pt;}
._1_c00215{width:1774.878296pt;}
.fs0_c00215{font-size:58.880000pt;}
.y0_c00215{bottom:0.000000pt;}
.y25_c00215{bottom:255.386667pt;}
.y24_c00215{bottom:274.106667pt;}
.y23_c00215{bottom:300.706667pt;}
.y22_c00215{bottom:327.426667pt;}
.y21_c00215{bottom:354.147067pt;}
.y20_c00215{bottom:372.706933pt;}
.y1f_c00215{bottom:391.426667pt;}
.y1e_c00215{bottom:418.146667pt;}
.y1d_c00215{bottom:444.706933pt;}
.y1c_c00215{bottom:463.426667pt;}
.y1b_c00215{bottom:490.147067pt;}
.y1a_c00215{bottom:508.706933pt;}
.y19_c00215{bottom:527.426667pt;}
.y18_c00215{bottom:554.173333pt;}
.y17_c00215{bottom:572.733333pt;}
.y16_c00215{bottom:591.453333pt;}
.y15_c00215{bottom:618.173333pt;}
.y14_c00215{bottom:636.733333pt;}
.y13_c00215{bottom:655.453067pt;}
.y12_c00215{bottom:674.173333pt;}
.y11_c00215{bottom:700.733067pt;}
.y10_c00215{bottom:719.453333pt;}
.yf_c00215{bottom:746.173333pt;}
.ye_c00215{bottom:764.733333pt;}
.yd_c00215{bottom:783.493200pt;}
.yc_c00215{bottom:802.213467pt;}
.yb_c00215{bottom:820.773333pt;}
.ya_c00215{bottom:847.493200pt;}
.y9_c00215{bottom:866.213467pt;}
.y8_c00215{bottom:884.773333pt;}
.y7_c00215{bottom:911.493200pt;}
.y6_c00215{bottom:930.213467pt;}
.y5_c00215{bottom:948.773333pt;}
.y4_c00215{bottom:975.493333pt;}
.y3_c00215{bottom:994.213333pt;}
.y2_c00215{bottom:1026.720000pt;}
.y1_c00215{bottom:1053.600000pt;}
.h2_c00215{height:50.628750pt;}
.h0_c00215{height:1122.560000pt;}
.h1_c00215{height:1122.666667pt;}
.w0_c00215{width:793.760000pt;}
.w1_c00215{width:794.000000pt;}
.x0_c00215{left:0.000000pt;}
.x1_c00215{left:113.471867pt;}
.x2_c00215{left:132.352133pt;}
.x3_c00215{left:141.946667pt;}
.x4_c00215{left:170.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_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_d6bda02d437bbe4f39c43b52.woff2')format("woff");}.ff1_c00216{font-family:ff1_c00216;line-height:1.070312;font-style:normal;font-weight:normal;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_a1e3cb3db93649ba89517cec.woff2')format("woff");}.ff2_c00216{font-family:ff2_c00216;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00216;src:url('chunks/assets/font_2c661173fbe578d4a1a8299a.woff2')format("woff");}.ff3_c00216{font-family:ff3_c00216;line-height:0.938965;font-style: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;}
.ls1_c00216{letter-spacing:0.000000px;}
.ls0_c00216{letter-spacing:845.885280px;}
.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:-36.829440px;}
.ws1_c00216{word-spacing:-18.414720px;}
.ws0_c00216{word-spacing:-15.012000px;}
.ws3_c00216{word-spacing:0.000000px;}
._11_c00216{margin-left:-3.578849px;}
._2_c00216{margin-left:-2.117435px;}
._0_c00216{margin-left:-1.094815px;}
._7_c00216{width:1.263423px;}
._e_c00216{width:2.782895px;}
._9_c00216{width:4.636467px;}
._a_c00216{width:6.095572px;}
._d_c00216{width:7.317089px;}
._b_c00216{width:8.576876px;}
._c_c00216{width:9.726852px;}
._f_c00216{width:11.590178px;}
._10_c00216{width:12.601185px;}
._12_c00216{width:19.938945px;}
._13_c00216{width:21.195000px;}
._3_c00216{width:24.642833px;}
._4_c00216{width:25.765116px;}
._8_c00216{width:28.151475px;}
._5_c00216{width:29.243257px;}
._6_c00216{width:30.267110px;}
._1_c00216{width:2180.349216px;}
.fc0_c00216{color:rgb(0,0,0);}
.fs2_c00216{font-size:54.000000px;}
.fs0_c00216{font-size:66.240000px;}
.fs1_c00216{font-size:84.240000px;}
.y0_c00216{bottom:0.000000px;}
.y23_c00216{bottom:374.295000px;}
.y22_c00216{bottom:395.355000px;}
.y21_c00216{bottom:425.415150px;}
.y20_c00216{bottom:446.295000px;}
.y1f_c00216{bottom:467.354700px;}
.y1e_c00216{bottom:488.415000px;}
.y1d_c00216{bottom:518.295150px;}
.y1c_c00216{bottom:539.354850px;}
.y1b_c00216{bottom:560.415150px;}
.y1a_c00216{bottom:581.295000px;}
.y19_c00216{bottom:611.384850px;}
.y18_c00216{bottom:632.445150px;}
.y17_c00216{bottom:653.325000px;}
.y16_c00216{bottom:674.384700px;}
.y15_c00216{bottom:695.445000px;}
.y14_c00216{bottom:725.325150px;}
.y13_c00216{bottom:746.384850px;}
.y12_c00216{bottom:767.445150px;}
.y11_c00216{bottom:788.325000px;}
.y10_c00216{bottom:809.385300px;}
.yf_c00216{bottom:830.445000px;}
.ye_c00216{bottom:860.325300px;}
.yd_c00216{bottom:881.430150px;}
.yc_c00216{bottom:902.490450px;}
.yb_c00216{bottom:923.370300px;}
.ya_c00216{bottom:944.430000px;}
.y9_c00216{bottom:974.490600px;}
.y8_c00216{bottom:995.370450px;}
.y7_c00216{bottom:1016.430150px;}
.y6_c00216{bottom:1037.490450px;}
.y5_c00216{bottom:1058.370300px;}
.y4_c00216{bottom:1079.430000px;}
.y3_c00216{bottom:1118.310000px;}
.y2_c00216{bottom:1155.060000px;}
.y1_c00216{bottom:1185.300000px;}
.h2_c00216{height:56.957344px;}
.h3_c00216{height:61.329023px;}
.h0_c00216{height:1262.880000px;}
.h1_c00216{height:1263.000000px;}
.w0_c00216{width:892.980000px;}
.w1_c00216{width:893.250000px;}
.x0_c00216{left:0.000000px;}
.x1_c00216{left:127.655850px;}
.x2_c00216{left:148.896150px;}
.x3_c00216{left:191.550000px;}
@media print{
.v0_c00216{vertical-align:0.000000pt;}
.ls1_c00216{letter-spacing:0.000000pt;}
.ls0_c00216{letter-spacing:751.898027pt;}
.ws2_c00216{word-spacing:-32.737280pt;}
.ws1_c00216{word-spacing:-16.368640pt;}
.ws0_c00216{word-spacing:-13.344000pt;}
.ws3_c00216{word-spacing:0.000000pt;}
._11_c00216{margin-left:-3.181199pt;}
._2_c00216{margin-left:-1.882165pt;}
._0_c00216{margin-left:-0.973169pt;}
._7_c00216{width:1.123042pt;}
._e_c00216{width:2.473684pt;}
._9_c00216{width:4.121304pt;}
._a_c00216{width:5.418287pt;}
._d_c00216{width:6.504079pt;}
._b_c00216{width:7.623890pt;}
._c_c00216{width:8.646091pt;}
._f_c00216{width:10.302381pt;}
._10_c00216{width:11.201053pt;}
._12_c00216{width:17.723506pt;}
._13_c00216{width:18.840000pt;}
._3_c00216{width:21.904741pt;}
._4_c00216{width:22.902325pt;}
._8_c00216{width:25.023533pt;}
._5_c00216{width:25.994006pt;}
._6_c00216{width:26.904098pt;}
._1_c00216{width:1938.088192pt;}
.fs2_c00216{font-size:48.000000pt;}
.fs0_c00216{font-size:58.880000pt;}
.fs1_c00216{font-size:74.880000pt;}
.y0_c00216{bottom:0.000000pt;}
.y23_c00216{bottom:332.706667pt;}
.y22_c00216{bottom:351.426667pt;}
.y21_c00216{bottom:378.146800pt;}
.y20_c00216{bottom:396.706667pt;}
.y1f_c00216{bottom:415.426400pt;}
.y1e_c00216{bottom:434.146667pt;}
.y1d_c00216{bottom:460.706800pt;}
.y1c_c00216{bottom:479.426533pt;}
.y1b_c00216{bottom:498.146800pt;}
.y1a_c00216{bottom:516.706667pt;}
.y19_c00216{bottom:543.453200pt;}
.y18_c00216{bottom:562.173467pt;}
.y17_c00216{bottom:580.733333pt;}
.y16_c00216{bottom:599.453067pt;}
.y15_c00216{bottom:618.173333pt;}
.y14_c00216{bottom:644.733467pt;}
.y13_c00216{bottom:663.453200pt;}
.y12_c00216{bottom:682.173467pt;}
.y11_c00216{bottom:700.733333pt;}
.y10_c00216{bottom:719.453600pt;}
.yf_c00216{bottom:738.173333pt;}
.ye_c00216{bottom:764.733600pt;}
.yd_c00216{bottom:783.493467pt;}
.yc_c00216{bottom:802.213733pt;}
.yb_c00216{bottom:820.773600pt;}
.ya_c00216{bottom:839.493333pt;}
.y9_c00216{bottom:866.213867pt;}
.y8_c00216{bottom:884.773733pt;}
.y7_c00216{bottom:903.493467pt;}
.y6_c00216{bottom:922.213733pt;}
.y5_c00216{bottom:940.773600pt;}
.y4_c00216{bottom:959.493333pt;}
.y3_c00216{bottom:994.053333pt;}
.y2_c00216{bottom:1026.720000pt;}
.y1_c00216{bottom:1053.600000pt;}
.h2_c00216{height:50.628750pt;}
.h3_c00216{height:54.514688pt;}
.h0_c00216{height:1122.560000pt;}
.h1_c00216{height:1122.666667pt;}
.w0_c00216{width:793.760000pt;}
.w1_c00216{width:794.000000pt;}
.x0_c00216{left:0.000000pt;}
.x1_c00216{left:113.471867pt;}
.x2_c00216{left:132.352133pt;}
.x3_c00216{left:170.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_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_8db4fca09541acfa0a06663a.woff2')format("woff");}.ff1_c00217{font-family:ff1_c00217;line-height:1.070312;font-style:normal;font-weight:normal;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_d832b209143f4e636f9f753f.woff2')format("woff");}.ff2_c00217{font-family:ff2_c00217;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00217;src:url('chunks/assets/font_2c661173fbe578d4a1a8299a.woff2')format("woff");}.ff3_c00217{font-family:ff3_c00217;line-height:0.938965;font-style:normal;font-weight:normal;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_b32789ab9ba5a1bf7e3322c1.woff2')format("woff");}.ff4_c00217{font-family:ff4_c00217;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00217{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00217{vertical-align:0.000000px;}
.ls3_c00217{letter-spacing:0.000000px;}
.ls1_c00217{letter-spacing:0.017285px;}
.ls0_c00217{letter-spacing:27.665760px;}
.ls2_c00217{letter-spacing:845.885280px;}
.sc__c00217{text-shadow:none;}
.sc0_c00217{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00217{-webkit-text-stroke:0px transparent;}
.sc0_c00217{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00217{word-spacing:-36.829440px;}
.ws1_c00217{word-spacing:-18.414720px;}
.ws2_c00217{word-spacing:0.000000px;}
._16_c00217{margin-left:-2.669329px;}
._1_c00217{margin-left:-1.150160px;}
._2_c00217{width:1.089441px;}
._d_c00217{width:3.114137px;}
._e_c00217{width:4.882928px;}
._9_c00217{width:15.171770px;}
._8_c00217{width:16.187302px;}
._15_c00217{width:17.207819px;}
._19_c00217{width:19.633205px;}
._1a_c00217{width:20.826123px;}
._c_c00217{width:27.357247px;}
._10_c00217{width:31.288035px;}
._17_c00217{width:32.324524px;}
._f_c00217{width:38.232402px;}
._14_c00217{width:39.825452px;}
._7_c00217{width:45.717572px;}
._12_c00217{width:51.027654px;}
._11_c00217{width:52.088341px;}
._a_c00217{width:57.098235px;}
._5_c00217{width:75.029650px;}
._13_c00217{width:93.543248px;}
._18_c00217{width:158.699066px;}
._3_c00217{width:181.981313px;}
._4_c00217{width:193.985165px;}
._6_c00217{width:323.613436px;}
._b_c00217{width:831.345120px;}
._0_c00217{width:2293.862379px;}
.fc0_c00217{color:rgb(0,0,0);}
.fs0_c00217{font-size:66.240000px;}
.fs2_c00217{font-size:77.760000px;}
.fs1_c00217{font-size:84.240000px;}
.y0_c00217{bottom:0.000000px;}
.y23_c00217{bottom:130.716150px;}
.y22_c00217{bottom:160.590000px;}
.y21_c00217{bottom:189.029700px;}
.y20_c00217{bottom:217.470000px;}
.y1f_c00217{bottom:254.909400px;}
.y1e_c00217{bottom:283.349700px;}
.y1d_c00217{bottom:311.790000px;}
.y1c_c00217{bottom:349.275150px;}
.y1b_c00217{bottom:377.895300px;}
.y1a_c00217{bottom:406.335000px;}
.y19_c00217{bottom:434.775000px;}
.y18_c00217{bottom:464.835000px;}
.y17_c00217{bottom:494.715000px;}
.y16_c00217{bottom:523.154700px;}
.y15_c00217{bottom:551.595000px;}
.y14_c00217{bottom:589.035000px;}
.y13_c00217{bottom:617.685000px;}
.y12_c00217{bottom:655.125300px;}
.y11_c00217{bottom:683.565000px;}
.y10_c00217{bottom:712.004700px;}
.yf_c00217{bottom:740.445000px;}
.ye_c00217{bottom:777.885000px;}
.yd_c00217{bottom:806.324700px;}
.yc_c00217{bottom:834.765000px;}
.yb_c00217{bottom:872.249850px;}
.ya_c00217{bottom:900.870000px;}
.y9_c00217{bottom:929.310000px;}
.y8_c00217{bottom:959.370000px;}
.y7_c00217{bottom:989.430000px;}
.y6_c00217{bottom:1019.310000px;}
.y5_c00217{bottom:1049.370000px;}
.y4_c00217{bottom:1079.430000px;}
.y3_c00217{bottom:1118.310000px;}
.y2_c00217{bottom:1155.060000px;}
.y1_c00217{bottom:1185.300000px;}
.h5_c00217{height:48.224531px;}
.h4_c00217{height:56.611406px;}
.h2_c00217{height:56.957344px;}
.h3_c00217{height:61.329023px;}
.h0_c00217{height:1262.880000px;}
.h1_c00217{height:1263.000000px;}
.w0_c00217{width:892.980000px;}
.w1_c00217{width:893.250000px;}
.x0_c00217{left:0.000000px;}
.x1_c00217{left:127.655850px;}
.x2_c00217{left:148.896150px;}
.x4_c00217{left:191.550000px;}
.x3_c00217{left:339.914850px;}
@media print{
.v0_c00217{vertical-align:0.000000pt;}
.ls3_c00217{letter-spacing:0.000000pt;}
.ls1_c00217{letter-spacing:0.015365pt;}
.ls0_c00217{letter-spacing:24.591787pt;}
.ls2_c00217{letter-spacing:751.898027pt;}
.ws0_c00217{word-spacing:-32.737280pt;}
.ws1_c00217{word-spacing:-16.368640pt;}
.ws2_c00217{word-spacing:0.000000pt;}
._16_c00217{margin-left:-2.372737pt;}
._1_c00217{margin-left:-1.022364pt;}
._2_c00217{width:0.968392pt;}
._d_c00217{width:2.768122pt;}
._e_c00217{width:4.340380pt;}
._9_c00217{width:13.486018pt;}
._8_c00217{width:14.388713pt;}
._15_c00217{width:15.295839pt;}
._19_c00217{width:17.451738pt;}
._1a_c00217{width:18.512110pt;}
._c_c00217{width:24.317552pt;}
._10_c00217{width:27.811587pt;}
._17_c00217{width:28.732910pt;}
._f_c00217{width:33.984357pt;}
._14_c00217{width:35.400402pt;}
._7_c00217{width:40.637841pt;}
._12_c00217{width:45.357914pt;}
._11_c00217{width:46.300748pt;}
._a_c00217{width:50.753987pt;}
._5_c00217{width:66.693022pt;}
._13_c00217{width:83.149554pt;}
._18_c00217{width:141.065836pt;}
._3_c00217{width:161.761167pt;}
._4_c00217{width:172.431258pt;}
._6_c00217{width:287.656387pt;}
._b_c00217{width:738.973440pt;}
._0_c00217{width:2038.988781pt;}
.fs0_c00217{font-size:58.880000pt;}
.fs2_c00217{font-size:69.120000pt;}
.fs1_c00217{font-size:74.880000pt;}
.y0_c00217{bottom:0.000000pt;}
.y23_c00217{bottom:116.192133pt;}
.y22_c00217{bottom:142.746667pt;}
.y21_c00217{bottom:168.026400pt;}
.y20_c00217{bottom:193.306667pt;}
.y1f_c00217{bottom:226.586133pt;}
.y1e_c00217{bottom:251.866400pt;}
.y1d_c00217{bottom:277.146667pt;}
.y1c_c00217{bottom:310.466800pt;}
.y1b_c00217{bottom:335.906933pt;}
.y1a_c00217{bottom:361.186667pt;}
.y19_c00217{bottom:386.466667pt;}
.y18_c00217{bottom:413.186667pt;}
.y17_c00217{bottom:439.746667pt;}
.y16_c00217{bottom:465.026400pt;}
.y15_c00217{bottom:490.306667pt;}
.y14_c00217{bottom:523.586667pt;}
.y13_c00217{bottom:549.053333pt;}
.y12_c00217{bottom:582.333600pt;}
.y11_c00217{bottom:607.613333pt;}
.y10_c00217{bottom:632.893067pt;}
.yf_c00217{bottom:658.173333pt;}
.ye_c00217{bottom:691.453333pt;}
.yd_c00217{bottom:716.733067pt;}
.yc_c00217{bottom:742.013333pt;}
.yb_c00217{bottom:775.333200pt;}
.ya_c00217{bottom:800.773333pt;}
.y9_c00217{bottom:826.053333pt;}
.y8_c00217{bottom:852.773333pt;}
.y7_c00217{bottom:879.493333pt;}
.y6_c00217{bottom:906.053333pt;}
.y5_c00217{bottom:932.773333pt;}
.y4_c00217{bottom:959.493333pt;}
.y3_c00217{bottom:994.053333pt;}
.y2_c00217{bottom:1026.720000pt;}
.y1_c00217{bottom:1053.600000pt;}
.h5_c00217{height:42.866250pt;}
.h4_c00217{height:50.321250pt;}
.h2_c00217{height:50.628750pt;}
.h3_c00217{height:54.514688pt;}
.h0_c00217{height:1122.560000pt;}
.h1_c00217{height:1122.666667pt;}
.w0_c00217{width:793.760000pt;}
.w1_c00217{width:794.000000pt;}
.x0_c00217{left:0.000000pt;}
.x1_c00217{left:113.471867pt;}
.x2_c00217{left:132.352133pt;}
.x4_c00217{left:170.266667pt;}
.x3_c00217{left:302.146533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0a8c0e98ba2ec4617c20b7b9.woff2')format("woff");}.ff1_c00218{font-family:ff1_c00218;line-height:1.070312;font-style:normal;font-weight:normal;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_cea2f13b093665bcc4d6b72f.woff2')format("woff");}.ff2_c00218{font-family:ff2_c00218;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls1_c00218{letter-spacing:0.000000px;}
.ls0_c00218{letter-spacing:845.741280px;}
.sc__c00218{text-shadow:none;}
.sc0_c00218{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00218{-webkit-text-stroke:0px transparent;}
.sc0_c00218{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00218{word-spacing:0.000000px;}
._0_c00218{margin-left:-1.125623px;}
._1_c00218{width:1776.748762px;}
.fc0_c00218{color:rgb(0,0,0);}
.fs0_c00218{font-size:66.240000px;}
.fs1_c00218{font-size:84.240000px;}
.fs2_c00218{font-size:95.760000px;}
.y0_c00218{bottom:0.000000px;}
.y9_c00218{bottom:9.540000px;}
.y7_c00218{bottom:258.870000px;}
.y6_c00218{bottom:279.930000px;}
.y5_c00218{bottom:309.810000px;}
.y4_c00218{bottom:339.915000px;}
.y8_c00218{bottom:401.295000px;}
.y3_c00218{bottom:1118.310000px;}
.y2_c00218{bottom:1155.060000px;}
.y1_c00218{bottom:1185.300000px;}
.h5_c00218{height:35.459700px;}
.h2_c00218{height:56.957344px;}
.h3_c00218{height:61.329023px;}
.h4_c00218{height:69.715898px;}
.h0_c00218{height:1262.880000px;}
.h1_c00218{height:1263.000000px;}
.w2_c00218{width:270.615000px;}
.w0_c00218{width:892.980000px;}
.w1_c00218{width:893.250000px;}
.x0_c00218{left:0.000000px;}
.x3_c00218{left:10.800000px;}
.x1_c00218{left:127.655850px;}
.x2_c00218{left:148.896150px;}
@media print{
.v0_c00218{vertical-align:0.000000pt;}
.ls1_c00218{letter-spacing:0.000000pt;}
.ls0_c00218{letter-spacing:751.770027pt;}
.ws0_c00218{word-spacing:0.000000pt;}
._0_c00218{margin-left:-1.000554pt;}
._1_c00218{width:1579.332233pt;}
.fs0_c00218{font-size:58.880000pt;}
.fs1_c00218{font-size:74.880000pt;}
.fs2_c00218{font-size:85.120000pt;}
.y0_c00218{bottom:0.000000pt;}
.y9_c00218{bottom:8.480000pt;}
.y7_c00218{bottom:230.106667pt;}
.y6_c00218{bottom:248.826667pt;}
.y5_c00218{bottom:275.386667pt;}
.y4_c00218{bottom:302.146667pt;}
.y8_c00218{bottom:356.706667pt;}
.y3_c00218{bottom:994.053333pt;}
.y2_c00218{bottom:1026.720000pt;}
.y1_c00218{bottom:1053.600000pt;}
.h5_c00218{height:31.519733pt;}
.h2_c00218{height:50.628750pt;}
.h3_c00218{height:54.514688pt;}
.h4_c00218{height:61.969688pt;}
.h0_c00218{height:1122.560000pt;}
.h1_c00218{height:1122.666667pt;}
.w2_c00218{width:240.546667pt;}
.w0_c00218{width:793.760000pt;}
.w1_c00218{width:794.000000pt;}
.x0_c00218{left:0.000000pt;}
.x3_c00218{left:9.600000pt;}
.x1_c00218{left:113.471867pt;}
.x2_c00218{left:132.352133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_017bb67f250e91bf2d3ed951.woff2')format("woff");}.ff1_c00219{font-family:ff1_c00219;line-height:1.070312;font-style:normal;font-weight:normal;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_a8d154e94e09b01a9af96ca5.woff2')format("woff");}.ff2_c00219{font-family:ff2_c00219;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls0_c00219{letter-spacing:0.000000px;}
.sc__c00219{text-shadow:none;}
.sc0_c00219{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00219{-webkit-text-stroke:0px transparent;}
.sc0_c00219{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00219{word-spacing:0.000000px;}
._9_c00219{margin-left:-8.807718px;}
._1_c00219{margin-left:-1.084277px;}
._13_c00219{width:1.103453px;}
._3_c00219{width:3.224003px;}
._2_c00219{width:4.339975px;}
._4_c00219{width:5.396256px;}
._6_c00219{width:9.606970px;}
._11_c00219{width:10.640443px;}
._12_c00219{width:35.986290px;}
._10_c00219{width:48.109347px;}
._5_c00219{width:54.188172px;}
._e_c00219{width:58.720292px;}
._a_c00219{width:72.602901px;}
._d_c00219{width:84.587346px;}
._7_c00219{width:109.000570px;}
._c_c00219{width:114.036588px;}
._b_c00219{width:121.383507px;}
._f_c00219{width:174.029684px;}
._8_c00219{width:193.985165px;}
._0_c00219{width:2322.825478px;}
.fc1_c00219{color:transparent;}
.fc0_c00219{color:rgb(0,0,0);}
.fs0_c00219{font-size:66.240000px;}
.fs1_c00219{font-size:84.240000px;}
.y0_c00219{bottom:0.000000px;}
.y25_c00219{bottom:116.316150px;}
.y24_c00219{bottom:146.376000px;}
.y23_c00219{bottom:176.250300px;}
.y22_c00219{bottom:197.310000px;}
.y21_c00219{bottom:227.370150px;}
.y20_c00219{bottom:248.250000px;}
.y1f_c00219{bottom:278.310000px;}
.y1e_c00219{bottom:308.370000px;}
.y1d_c00219{bottom:338.295000px;}
.y1c_c00219{bottom:368.355000px;}
.y1b_c00219{bottom:398.415000px;}
.y1a_c00219{bottom:428.295000px;}
.y19_c00219{bottom:458.355000px;}
.y18_c00219{bottom:488.415000px;}
.y17_c00219{bottom:518.295000px;}
.y16_c00219{bottom:548.355000px;}
.y15_c00219{bottom:578.415000px;}
.y14_c00219{bottom:608.325000px;}
.y13_c00219{bottom:638.385000px;}
.y12_c00219{bottom:668.445000px;}
.y11_c00219{bottom:698.325000px;}
.y10_c00219{bottom:728.385000px;}
.yf_c00219{bottom:758.445000px;}
.ye_c00219{bottom:788.325000px;}
.yd_c00219{bottom:818.385000px;}
.yc_c00219{bottom:848.445000px;}
.yb_c00219{bottom:878.370000px;}
.ya_c00219{bottom:908.430000px;}
.y9_c00219{bottom:938.490000px;}
.y8_c00219{bottom:968.370000px;}
.y7_c00219{bottom:998.430000px;}
.y6_c00219{bottom:1028.490000px;}
.y5_c00219{bottom:1058.370300px;}
.y4_c00219{bottom:1079.430000px;}
.y3_c00219{bottom:1118.310000px;}
.y2_c00219{bottom:1155.060000px;}
.y1_c00219{bottom:1185.300000px;}
.h4_c00219{height:48.224531px;}
.h2_c00219{height:56.957344px;}
.h3_c00219{height:61.329023px;}
.h0_c00219{height:1262.880000px;}
.h1_c00219{height:1263.000000px;}
.w0_c00219{width:892.980000px;}
.w1_c00219{width:893.250000px;}
.x0_c00219{left:0.000000px;}
.x1_c00219{left:127.647750px;}
.x2_c00219{left:148.896150px;}
.x3_c00219{left:180.390150px;}
@media print{
.v0_c00219{vertical-align:0.000000pt;}
.ls0_c00219{letter-spacing:0.000000pt;}
.ws0_c00219{word-spacing:0.000000pt;}
._9_c00219{margin-left:-7.829083pt;}
._1_c00219{margin-left:-0.963802pt;}
._13_c00219{width:0.980847pt;}
._3_c00219{width:2.865780pt;}
._2_c00219{width:3.857756pt;}
._4_c00219{width:4.796672pt;}
._6_c00219{width:8.539529pt;}
._11_c00219{width:9.458171pt;}
._12_c00219{width:31.987813pt;}
._10_c00219{width:42.763864pt;}
._5_c00219{width:48.167264pt;}
._e_c00219{width:52.195815pt;}
._a_c00219{width:64.535912pt;}
._d_c00219{width:75.188752pt;}
._7_c00219{width:96.889395pt;}
._c_c00219{width:101.365856pt;}
._b_c00219{width:107.896451pt;}
._f_c00219{width:154.693053pt;}
._8_c00219{width:172.431258pt;}
._0_c00219{width:2064.733758pt;}
.fs0_c00219{font-size:58.880000pt;}
.fs1_c00219{font-size:74.880000pt;}
.y0_c00219{bottom:0.000000pt;}
.y25_c00219{bottom:103.392133pt;}
.y24_c00219{bottom:130.112000pt;}
.y23_c00219{bottom:156.666933pt;}
.y22_c00219{bottom:175.386667pt;}
.y21_c00219{bottom:202.106800pt;}
.y20_c00219{bottom:220.666667pt;}
.y1f_c00219{bottom:247.386667pt;}
.y1e_c00219{bottom:274.106667pt;}
.y1d_c00219{bottom:300.706667pt;}
.y1c_c00219{bottom:327.426667pt;}
.y1b_c00219{bottom:354.146667pt;}
.y1a_c00219{bottom:380.706667pt;}
.y19_c00219{bottom:407.426667pt;}
.y18_c00219{bottom:434.146667pt;}
.y17_c00219{bottom:460.706667pt;}
.y16_c00219{bottom:487.426667pt;}
.y15_c00219{bottom:514.146667pt;}
.y14_c00219{bottom:540.733333pt;}
.y13_c00219{bottom:567.453333pt;}
.y12_c00219{bottom:594.173333pt;}
.y11_c00219{bottom:620.733333pt;}
.y10_c00219{bottom:647.453333pt;}
.yf_c00219{bottom:674.173333pt;}
.ye_c00219{bottom:700.733333pt;}
.yd_c00219{bottom:727.453333pt;}
.yc_c00219{bottom:754.173333pt;}
.yb_c00219{bottom:780.773333pt;}
.ya_c00219{bottom:807.493333pt;}
.y9_c00219{bottom:834.213333pt;}
.y8_c00219{bottom:860.773333pt;}
.y7_c00219{bottom:887.493333pt;}
.y6_c00219{bottom:914.213333pt;}
.y5_c00219{bottom:940.773600pt;}
.y4_c00219{bottom:959.493333pt;}
.y3_c00219{bottom:994.053333pt;}
.y2_c00219{bottom:1026.720000pt;}
.y1_c00219{bottom:1053.600000pt;}
.h4_c00219{height:42.866250pt;}
.h2_c00219{height:50.628750pt;}
.h3_c00219{height:54.514688pt;}
.h0_c00219{height:1122.560000pt;}
.h1_c00219{height:1122.666667pt;}
.w0_c00219{width:793.760000pt;}
.w1_c00219{width:794.000000pt;}
.x0_c00219{left:0.000000pt;}
.x1_c00219{left:113.464667pt;}
.x2_c00219{left:132.352133pt;}
.x3_c00219{left:160.346800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ee7e23612f2e1bef1be287bb.woff2')format("woff");}.ff1_c00220{font-family:ff1_c00220;line-height:1.070312;font-style:normal;font-weight:normal;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_97a131a6bb28aa87fb006584.woff2')format("woff");}.ff2_c00220{font-family:ff2_c00220;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00220{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00220{vertical-align:0.000000px;}
.ls0_c00220{letter-spacing:0.000000px;}
.sc__c00220{text-shadow:none;}
.sc0_c00220{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00220{-webkit-text-stroke:0px transparent;}
.sc0_c00220{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00220{word-spacing:0.000000px;}
._e_c00220{margin-left:-16.192683px;}
._8_c00220{margin-left:-5.130613px;}
._1_c00220{margin-left:-1.126428px;}
._9_c00220{width:1.086903px;}
._c_c00220{width:2.222021px;}
._4_c00220{width:8.135490px;}
._3_c00220{width:9.574554px;}
._5_c00220{width:16.130877px;}
._b_c00220{width:68.935412px;}
._2_c00220{width:76.288410px;}
._6_c00220{width:79.997980px;}
._a_c00220{width:109.000570px;}
._d_c00220{width:159.378019px;}
._7_c00220{width:177.501971px;}
._0_c00220{width:2341.544902px;}
.fc1_c00220{color:transparent;}
.fc0_c00220{color:rgb(0,0,0);}
.fs0_c00220{font-size:66.240000px;}
.y0_c00220{bottom:0.000000px;}
.y25_c00220{bottom:107.316150px;}
.y24_c00220{bottom:137.376000px;}
.y23_c00220{bottom:167.250000px;}
.y22_c00220{bottom:197.310000px;}
.y21_c00220{bottom:227.370000px;}
.y20_c00220{bottom:257.250000px;}
.y1f_c00220{bottom:287.310000px;}
.y1e_c00220{bottom:317.370000px;}
.y1d_c00220{bottom:347.295000px;}
.y1c_c00220{bottom:377.355000px;}
.y1b_c00220{bottom:407.415000px;}
.y1a_c00220{bottom:437.295000px;}
.y19_c00220{bottom:467.355000px;}
.y18_c00220{bottom:497.415000px;}
.y17_c00220{bottom:527.295000px;}
.y16_c00220{bottom:557.355000px;}
.y15_c00220{bottom:587.415000px;}
.y14_c00220{bottom:617.325000px;}
.y13_c00220{bottom:647.385000px;}
.y12_c00220{bottom:677.445000px;}
.y11_c00220{bottom:707.325000px;}
.y10_c00220{bottom:737.385000px;}
.yf_c00220{bottom:767.445000px;}
.ye_c00220{bottom:797.325000px;}
.yd_c00220{bottom:827.385000px;}
.yc_c00220{bottom:857.445000px;}
.yb_c00220{bottom:887.370000px;}
.ya_c00220{bottom:917.430000px;}
.y9_c00220{bottom:947.490000px;}
.y8_c00220{bottom:977.370000px;}
.y7_c00220{bottom:1007.430000px;}
.y6_c00220{bottom:1037.490150px;}
.y5_c00220{bottom:1058.370000px;}
.y4_c00220{bottom:1088.430000px;}
.y3_c00220{bottom:1118.490000px;}
.y2_c00220{bottom:1155.060000px;}
.y1_c00220{bottom:1185.300000px;}
.h3_c00220{height:48.224531px;}
.h2_c00220{height:56.957344px;}
.h0_c00220{height:1262.880000px;}
.h1_c00220{height:1263.000000px;}
.w0_c00220{width:892.980000px;}
.w1_c00220{width:893.250000px;}
.x0_c00220{left:0.000000px;}
.x1_c00220{left:127.647750px;}
.x2_c00220{left:148.896150px;}
.x3_c00220{left:180.390150px;}
@media print{
.v0_c00220{vertical-align:0.000000pt;}
.ls0_c00220{letter-spacing:0.000000pt;}
.ws0_c00220{word-spacing:0.000000pt;}
._e_c00220{margin-left:-14.393496pt;}
._8_c00220{margin-left:-4.560545pt;}
._1_c00220{margin-left:-1.001269pt;}
._9_c00220{width:0.966136pt;}
._c_c00220{width:1.975130pt;}
._4_c00220{width:7.231547pt;}
._3_c00220{width:8.510715pt;}
._5_c00220{width:14.338558pt;}
._b_c00220{width:61.275921pt;}
._2_c00220{width:67.811920pt;}
._6_c00220{width:71.109316pt;}
._a_c00220{width:96.889395pt;}
._d_c00220{width:141.669350pt;}
._7_c00220{width:157.779530pt;}
._0_c00220{width:2081.373246pt;}
.fs0_c00220{font-size:58.880000pt;}
.y0_c00220{bottom:0.000000pt;}
.y25_c00220{bottom:95.392133pt;}
.y24_c00220{bottom:122.112000pt;}
.y23_c00220{bottom:148.666667pt;}
.y22_c00220{bottom:175.386667pt;}
.y21_c00220{bottom:202.106667pt;}
.y20_c00220{bottom:228.666667pt;}
.y1f_c00220{bottom:255.386667pt;}
.y1e_c00220{bottom:282.106667pt;}
.y1d_c00220{bottom:308.706667pt;}
.y1c_c00220{bottom:335.426667pt;}
.y1b_c00220{bottom:362.146667pt;}
.y1a_c00220{bottom:388.706667pt;}
.y19_c00220{bottom:415.426667pt;}
.y18_c00220{bottom:442.146667pt;}
.y17_c00220{bottom:468.706667pt;}
.y16_c00220{bottom:495.426667pt;}
.y15_c00220{bottom:522.146667pt;}
.y14_c00220{bottom:548.733333pt;}
.y13_c00220{bottom:575.453333pt;}
.y12_c00220{bottom:602.173333pt;}
.y11_c00220{bottom:628.733333pt;}
.y10_c00220{bottom:655.453333pt;}
.yf_c00220{bottom:682.173333pt;}
.ye_c00220{bottom:708.733333pt;}
.yd_c00220{bottom:735.453333pt;}
.yc_c00220{bottom:762.173333pt;}
.yb_c00220{bottom:788.773333pt;}
.ya_c00220{bottom:815.493333pt;}
.y9_c00220{bottom:842.213333pt;}
.y8_c00220{bottom:868.773333pt;}
.y7_c00220{bottom:895.493333pt;}
.y6_c00220{bottom:922.213467pt;}
.y5_c00220{bottom:940.773333pt;}
.y4_c00220{bottom:967.493333pt;}
.y3_c00220{bottom:994.213333pt;}
.y2_c00220{bottom:1026.720000pt;}
.y1_c00220{bottom:1053.600000pt;}
.h3_c00220{height:42.866250pt;}
.h2_c00220{height:50.628750pt;}
.h0_c00220{height:1122.560000pt;}
.h1_c00220{height:1122.666667pt;}
.w0_c00220{width:793.760000pt;}
.w1_c00220{width:794.000000pt;}
.x0_c00220{left:0.000000pt;}
.x1_c00220{left:113.464667pt;}
.x2_c00220{left:132.352133pt;}
.x3_c00220{left:160.346800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2ce90abc58f984bbbe7e9da2.woff2')format("woff");}.ff1_c00221{font-family:ff1_c00221;line-height:1.070312;font-style:normal;font-weight:normal;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_5d1f671262a94324e6cabd54.woff2')format("woff");}.ff2_c00221{font-family:ff2_c00221;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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:-5.758596px;}
.v0_c00221{vertical-align:0.000000px;}
.ls0_c00221{letter-spacing:0.000000px;}
.sc__c00221{text-shadow:none;}
.sc0_c00221{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00221{-webkit-text-stroke:0px transparent;}
.sc0_c00221{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00221{word-spacing:-11.609280px;}
.ws1_c00221{word-spacing:0.000000px;}
._3_c00221{margin-left:-16.192683px;}
._2_c00221{margin-left:-1.657529px;}
._5_c00221{width:1.061546px;}
._4_c00221{width:2.222021px;}
._8_c00221{width:5.931412px;}
._7_c00221{width:73.176153px;}
._6_c00221{width:109.000570px;}
._1_c00221{width:159.378019px;}
._0_c00221{width:2322.825478px;}
.fc0_c00221{color:rgb(0,0,0);}
.fs1_c00221{font-size:41.760000px;}
.fs0_c00221{font-size:66.240000px;}
.y0_c00221{bottom:0.000000px;}
.y16_c00221{bottom:557.355000px;}
.y15_c00221{bottom:578.415000px;}
.y14_c00221{bottom:608.325000px;}
.y13_c00221{bottom:638.385000px;}
.y12_c00221{bottom:668.445000px;}
.y11_c00221{bottom:698.325000px;}
.y10_c00221{bottom:728.385000px;}
.yf_c00221{bottom:758.445000px;}
.ye_c00221{bottom:788.325000px;}
.yd_c00221{bottom:818.385000px;}
.yc_c00221{bottom:848.445000px;}
.yb_c00221{bottom:878.370000px;}
.ya_c00221{bottom:908.430000px;}
.y9_c00221{bottom:938.490000px;}
.y8_c00221{bottom:968.370000px;}
.y7_c00221{bottom:998.430000px;}
.y6_c00221{bottom:1028.490000px;}
.y5_c00221{bottom:1058.370000px;}
.y4_c00221{bottom:1088.430000px;}
.y3_c00221{bottom:1118.490000px;}
.y2_c00221{bottom:1155.060000px;}
.y1_c00221{bottom:1185.300000px;}
.h3_c00221{height:48.224531px;}
.h2_c00221{height:56.957344px;}
.h0_c00221{height:1262.880000px;}
.h1_c00221{height:1263.000000px;}
.w0_c00221{width:892.980000px;}
.w1_c00221{width:893.250000px;}
.x0_c00221{left:0.000000px;}
.x1_c00221{left:127.647750px;}
.x2_c00221{left:148.896150px;}
@media print{
.v1_c00221{vertical-align:-5.118752pt;}
.v0_c00221{vertical-align:0.000000pt;}
.ls0_c00221{letter-spacing:0.000000pt;}
.ws0_c00221{word-spacing:-10.319360pt;}
.ws1_c00221{word-spacing:0.000000pt;}
._3_c00221{margin-left:-14.393496pt;}
._2_c00221{margin-left:-1.473359pt;}
._5_c00221{width:0.943597pt;}
._4_c00221{width:1.975130pt;}
._8_c00221{width:5.272367pt;}
._7_c00221{width:65.045469pt;}
._6_c00221{width:96.889395pt;}
._1_c00221{width:141.669350pt;}
._0_c00221{width:2064.733758pt;}
.fs1_c00221{font-size:37.120000pt;}
.fs0_c00221{font-size:58.880000pt;}
.y0_c00221{bottom:0.000000pt;}
.y16_c00221{bottom:495.426667pt;}
.y15_c00221{bottom:514.146667pt;}
.y14_c00221{bottom:540.733333pt;}
.y13_c00221{bottom:567.453333pt;}
.y12_c00221{bottom:594.173333pt;}
.y11_c00221{bottom:620.733333pt;}
.y10_c00221{bottom:647.453333pt;}
.yf_c00221{bottom:674.173333pt;}
.ye_c00221{bottom:700.733333pt;}
.yd_c00221{bottom:727.453333pt;}
.yc_c00221{bottom:754.173333pt;}
.yb_c00221{bottom:780.773333pt;}
.ya_c00221{bottom:807.493333pt;}
.y9_c00221{bottom:834.213333pt;}
.y8_c00221{bottom:860.773333pt;}
.y7_c00221{bottom:887.493333pt;}
.y6_c00221{bottom:914.213333pt;}
.y5_c00221{bottom:940.773333pt;}
.y4_c00221{bottom:967.493333pt;}
.y3_c00221{bottom:994.213333pt;}
.y2_c00221{bottom:1026.720000pt;}
.y1_c00221{bottom:1053.600000pt;}
.h3_c00221{height:42.866250pt;}
.h2_c00221{height:50.628750pt;}
.h0_c00221{height:1122.560000pt;}
.h1_c00221{height:1122.666667pt;}
.w0_c00221{width:793.760000pt;}
.w1_c00221{width:794.000000pt;}
.x0_c00221{left:0.000000pt;}
.x1_c00221{left:113.464667pt;}
.x2_c00221{left:132.352133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_30f1be3e1590310244b70a2d.woff2')format("woff");}.ff1_c00222{font-family:ff1_c00222;line-height:0.929199;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00222;src:url('chunks/assets/font_54ca1da23f565e4b8dd25c28.woff2')format("woff");}.ff2_c00222{font-family:ff2_c00222;line-height:1.070312;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00222{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00222{vertical-align:0.000000px;}
.ls0_c00222{letter-spacing:0.000000px;}
.sc__c00222{text-shadow:none;}
.sc0_c00222{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00222{-webkit-text-stroke:0px transparent;}
.sc0_c00222{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00222{word-spacing:0.000000px;}
._0_c00222{width:1.213623px;}
._1_c00222{width:125.298130px;}
._2_c00222{width:845.739072px;}
.fc0_c00222{color:rgb(0,0,0);}
.fs1_c00222{font-size:66.240000px;}
.fs0_c00222{font-size:95.760000px;}
.y0_c00222{bottom:0.000000px;}
.y2_c00222{bottom:780.585150px;}
.y1_c00222{bottom:814.965000px;}
.h3_c00222{height:56.957344px;}
.h2_c00222{height:68.827500px;}
.h0_c00222{height:1262.880000px;}
.h1_c00222{height:1263.000000px;}
.w0_c00222{width:892.980000px;}
.w1_c00222{width:893.250000px;}
.x0_c00222{left:0.000000px;}
.x2_c00222{left:106.416000px;}
.x1_c00222{left:328.935000px;}
@media print{
.v0_c00222{vertical-align:0.000000pt;}
.ls0_c00222{letter-spacing:0.000000pt;}
.ws0_c00222{word-spacing:0.000000pt;}
._0_c00222{width:1.078776pt;}
._1_c00222{width:111.376115pt;}
._2_c00222{width:751.768064pt;}
.fs1_c00222{font-size:58.880000pt;}
.fs0_c00222{font-size:85.120000pt;}
.y0_c00222{bottom:0.000000pt;}
.y2_c00222{bottom:693.853467pt;}
.y1_c00222{bottom:724.413333pt;}
.h3_c00222{height:50.628750pt;}
.h2_c00222{height:61.180000pt;}
.h0_c00222{height:1122.560000pt;}
.h1_c00222{height:1122.666667pt;}
.w0_c00222{width:793.760000pt;}
.w1_c00222{width:794.000000pt;}
.x0_c00222{left:0.000000pt;}
.x2_c00222{left:94.592000pt;}
.x1_c00222{left:292.386667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_1248ecd449c0b0de13b558bd.woff2')format("woff");}.ff1_c00223{font-family:ff1_c00223;line-height:0.929199;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00223;src:url('chunks/assets/font_9dc88a8bd462a15777f371e1.woff2')format("woff");}.ff2_c00223{font-family:ff2_c00223;line-height:1.070312;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00223{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00223{vertical-align:0.000000px;}
.ls0_c00223{letter-spacing:0.000000px;}
.sc__c00223{text-shadow:none;}
.sc0_c00223{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00223{-webkit-text-stroke:0px transparent;}
.sc0_c00223{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00223{word-spacing:-18.414720px;}
.ws1_c00223{word-spacing:0.000000px;}
._0_c00223{margin-left:-1.180800px;}
._1_c00223{width:845.705952px;}
.fc1_c00223{color:rgb(64,64,64);}
.fc0_c00223{color:rgb(0,0,0);}
.fs1_c00223{font-size:66.240000px;}
.fs0_c00223{font-size:95.760000px;}
.y0_c00223{bottom:0.000000px;}
.y6_c00223{bottom:648.823650px;}
.y5_c00223{bottom:686.264400px;}
.y4_c00223{bottom:714.704100px;}
.y3_c00223{bottom:743.144850px;}
.y2_c00223{bottom:771.765000px;}
.y1_c00223{bottom:814.965000px;}
.h3_c00223{height:56.957344px;}
.h2_c00223{height:68.827500px;}
.h0_c00223{height:1262.880000px;}
.h1_c00223{height:1263.000000px;}
.w0_c00223{width:892.980000px;}
.w1_c00223{width:893.250000px;}
.x0_c00223{left:0.000000px;}
.x2_c00223{left:323.175000px;}
.x3_c00223{left:333.615000px;}
.x5_c00223{left:335.594880px;}
.x4_c00223{left:343.874760px;}
.x1_c00223{left:427.755000px;}
.x6_c00223{left:446.474730px;}
@media print{
.v0_c00223{vertical-align:0.000000pt;}
.ls0_c00223{letter-spacing:0.000000pt;}
.ws0_c00223{word-spacing:-16.368640pt;}
.ws1_c00223{word-spacing:0.000000pt;}
._0_c00223{margin-left:-1.049600pt;}
._1_c00223{width:751.738624pt;}
.fs1_c00223{font-size:58.880000pt;}
.fs0_c00223{font-size:85.120000pt;}
.y0_c00223{bottom:0.000000pt;}
.y6_c00223{bottom:576.732133pt;}
.y5_c00223{bottom:610.012800pt;}
.y4_c00223{bottom:635.292533pt;}
.y3_c00223{bottom:660.573200pt;}
.y2_c00223{bottom:686.013333pt;}
.y1_c00223{bottom:724.413333pt;}
.h3_c00223{height:50.628750pt;}
.h2_c00223{height:61.180000pt;}
.h0_c00223{height:1122.560000pt;}
.h1_c00223{height:1122.666667pt;}
.w0_c00223{width:793.760000pt;}
.w1_c00223{width:794.000000pt;}
.x0_c00223{left:0.000000pt;}
.x2_c00223{left:287.266667pt;}
.x3_c00223{left:296.546667pt;}
.x5_c00223{left:298.306560pt;}
.x4_c00223{left:305.666453pt;}
.x1_c00223{left:380.226667pt;}
.x6_c00223{left:396.866427pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
.sc__c00224{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00224{-webkit-text-stroke:0px transparent;}
}
.y0_c00224{bottom:0.000000px;}
.h0_c00224{height:631.500000px;}
.w0_c00224{width:1263.000000px;}
.x0_c00224{left:0.000000px;}
@media print{
.y0_c00224{bottom:0.000000pt;}
.h0_c00224{height:561.333333pt;}
.w0_c00224{width:1122.666667pt;}
.x0_c00224{left:0.000000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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;}
.sc__c00225{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00225{-webkit-text-stroke:0px transparent;}
}
.y0_c00225{bottom:0.000000px;}
.h0_c00225{height:631.500000px;}
.w0_c00225{width:1263.000000px;}
.x0_c00225{left:0.000000px;}
@media print{
.y0_c00225{bottom:0.000000pt;}
.h0_c00225{height:561.333333pt;}
.w0_c00225{width:1122.666667pt;}
.x0_c00225{left:0.000000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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;}
.sc__c00226{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00226{-webkit-text-stroke:0px transparent;}
}
.y0_c00226{bottom:0.000000px;}
.h0_c00226{height:631.500000px;}
.w0_c00226{width:1263.000000px;}
.x0_c00226{left:0.000000px;}
@media print{
.y0_c00226{bottom:0.000000pt;}
.h0_c00226{height:561.333333pt;}
.w0_c00226{width:1122.666667pt;}
.x0_c00226{left:0.000000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_bc68bd25d37e2f85f3fc82cb.woff2')format("woff");}.ff1_c00227{font-family:ff1_c00227;line-height:0.929199;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00227;src:url('chunks/assets/font_435141d488d54bcf55837398.woff2')format("woff");}.ff2_c00227{font-family:ff2_c00227;line-height:1.070312;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00227{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00227{vertical-align:0.000000px;}
.ls0_c00227{letter-spacing:0.000000px;}
.sc__c00227{text-shadow:none;}
.sc0_c00227{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00227{-webkit-text-stroke:0px transparent;}
.sc0_c00227{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00227{word-spacing:0.000000px;}
._0_c00227{margin-left:-1.325038px;}
._1_c00227{width:837.497808px;}
.fc0_c00227{color:rgb(0,0,0);}
.fs1_c00227{font-size:66.240000px;}
.fs0_c00227{font-size:95.760000px;}
.y0_c00227{bottom:0.000000px;}
.y6_c00227{bottom:641.804100px;}
.y5_c00227{bottom:686.264400px;}
.y4_c00227{bottom:714.704100px;}
.y3_c00227{bottom:743.144850px;}
.y2_c00227{bottom:771.765000px;}
.y1_c00227{bottom:814.965000px;}
.h3_c00227{height:56.957344px;}
.h2_c00227{height:68.827500px;}
.h0_c00227{height:1262.880000px;}
.h1_c00227{height:1263.000000px;}
.w0_c00227{width:892.980000px;}
.w1_c00227{width:893.250000px;}
.x0_c00227{left:0.000000px;}
.x2_c00227{left:331.455000px;}
.x3_c00227{left:333.615345px;}
.x5_c00227{left:335.595225px;}
.x4_c00227{left:343.875105px;}
.x1_c00227{left:427.755000px;}
.x6_c00227{left:446.475075px;}
@media print{
.v0_c00227{vertical-align:0.000000pt;}
.ls0_c00227{letter-spacing:0.000000pt;}
.ws0_c00227{word-spacing:0.000000pt;}
._0_c00227{margin-left:-1.177812pt;}
._1_c00227{width:744.442496pt;}
.fs1_c00227{font-size:58.880000pt;}
.fs0_c00227{font-size:85.120000pt;}
.y0_c00227{bottom:0.000000pt;}
.y6_c00227{bottom:570.492533pt;}
.y5_c00227{bottom:610.012800pt;}
.y4_c00227{bottom:635.292533pt;}
.y3_c00227{bottom:660.573200pt;}
.y2_c00227{bottom:686.013333pt;}
.y1_c00227{bottom:724.413333pt;}
.h3_c00227{height:50.628750pt;}
.h2_c00227{height:61.180000pt;}
.h0_c00227{height:1122.560000pt;}
.h1_c00227{height:1122.666667pt;}
.w0_c00227{width:793.760000pt;}
.w1_c00227{width:794.000000pt;}
.x0_c00227{left:0.000000pt;}
.x2_c00227{left:294.626667pt;}
.x3_c00227{left:296.546973pt;}
.x5_c00227{left:298.306867pt;}
.x4_c00227{left:305.666760pt;}
.x1_c00227{left:380.226667pt;}
.x6_c00227{left:396.866733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
.sc__c00228{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00228{-webkit-text-stroke:0px transparent;}
}
.y0_c00228{bottom:0.000000px;}
.h0_c00228{height:631.500000px;}
.w0_c00228{width:1263.000000px;}
.x0_c00228{left:0.000000px;}
@media print{
.y0_c00228{bottom:0.000000pt;}
.h0_c00228{height:561.333333pt;}
.w0_c00228{width:1122.666667pt;}
.x0_c00228{left:0.000000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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;}
.sc__c00229{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00229{-webkit-text-stroke:0px transparent;}
}
.y0_c00229{bottom:0.000000px;}
.h0_c00229{height:631.500000px;}
.w0_c00229{width:1263.000000px;}
.x0_c00229{left:0.000000px;}
@media print{
.y0_c00229{bottom:0.000000pt;}
.h0_c00229{height:561.333333pt;}
.w0_c00229{width:1122.666667pt;}
.x0_c00229{left:0.000000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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;}
.sc__c00230{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00230{-webkit-text-stroke:0px transparent;}
}
.y0_c00230{bottom:0.000000px;}
.h0_c00230{height:631.500000px;}
.w0_c00230{width:1263.000000px;}
.x0_c00230{left:0.000000px;}
@media print{
.y0_c00230{bottom:0.000000pt;}
.h0_c00230{height:561.333333pt;}
.w0_c00230{width:1122.666667pt;}
.x0_c00230{left:0.000000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f1c92137f38242c39a9094c2.woff2')format("woff");}.ff1_c00231{font-family:ff1_c00231;line-height:0.929199;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00231;src:url('chunks/assets/font_162d40ae2dd0ee928a28b503.woff2')format("woff");}.ff2_c00231{font-family:ff2_c00231;line-height:1.070312;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00231{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00231{vertical-align:0.000000px;}
.ls0_c00231{letter-spacing:0.000000px;}
.sc__c00231{text-shadow:none;}
.sc0_c00231{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00231{-webkit-text-stroke:0px transparent;}
.sc0_c00231{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00231{word-spacing:0.000000px;}
._0_c00231{margin-left:-1.325846px;}
._1_c00231{width:845.705952px;}
.fc0_c00231{color:rgb(0,0,0);}
.fs1_c00231{font-size:66.240000px;}
.fs0_c00231{font-size:95.760000px;}
.y0_c00231{bottom:0.000000px;}
.y4_c00231{bottom:709.304700px;}
.y3_c00231{bottom:742.965000px;}
.y2_c00231{bottom:780.765000px;}
.y1_c00231{bottom:814.965000px;}
.h3_c00231{height:56.957344px;}
.h2_c00231{height:68.827500px;}
.h0_c00231{height:1262.880000px;}
.h1_c00231{height:1263.000000px;}
.w0_c00231{width:892.980000px;}
.w1_c00231{width:893.250000px;}
.x0_c00231{left:0.000000px;}
.x3_c00231{left:106.416000px;}
.x2_c00231{left:219.090000px;}
.x1_c00231{left:427.755000px;}
.x4_c00231{left:446.475000px;}
@media print{
.v0_c00231{vertical-align:0.000000pt;}
.ls0_c00231{letter-spacing:0.000000pt;}
.ws0_c00231{word-spacing:0.000000pt;}
._0_c00231{margin-left:-1.178530pt;}
._1_c00231{width:751.738624pt;}
.fs1_c00231{font-size:58.880000pt;}
.fs0_c00231{font-size:85.120000pt;}
.y0_c00231{bottom:0.000000pt;}
.y4_c00231{bottom:630.493067pt;}
.y3_c00231{bottom:660.413333pt;}
.y2_c00231{bottom:694.013333pt;}
.y1_c00231{bottom:724.413333pt;}
.h3_c00231{height:50.628750pt;}
.h2_c00231{height:61.180000pt;}
.h0_c00231{height:1122.560000pt;}
.h1_c00231{height:1122.666667pt;}
.w0_c00231{width:793.760000pt;}
.w1_c00231{width:794.000000pt;}
.x0_c00231{left:0.000000pt;}
.x3_c00231{left:94.592000pt;}
.x2_c00231{left:194.746667pt;}
.x1_c00231{left:380.226667pt;}
.x4_c00231{left:396.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_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;}
.sc__c00232{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00232{-webkit-text-stroke:0px transparent;}
}
.y0_c00232{bottom:0.000000px;}
.h0_c00232{height:892.500000px;}
.w0_c00232{width:1263.000000px;}
.x0_c00232{left:0.000000px;}
@media print{
.y0_c00232{bottom:0.000000pt;}
.h0_c00232{height:793.333333pt;}
.w0_c00232{width:1122.666667pt;}
.x0_c00232{left:0.000000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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;}
.sc__c00233{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00233{-webkit-text-stroke:0px transparent;}
}
.y0_c00233{bottom:0.000000px;}
.h0_c00233{height:892.500000px;}
.w0_c00233{width:1263.000000px;}
.x0_c00233{left:0.000000px;}
@media print{
.y0_c00233{bottom:0.000000pt;}
.h0_c00233{height:793.333333pt;}
.w0_c00233{width:1122.666667pt;}
.x0_c00233{left:0.000000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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;}
.sc__c00234{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00234{-webkit-text-stroke:0px transparent;}
}
.y0_c00234{bottom:0.000000px;}
.h0_c00234{height:892.500000px;}
.w0_c00234{width:1263.000000px;}
.x0_c00234{left:0.000000px;}
@media print{
.y0_c00234{bottom:0.000000pt;}
.h0_c00234{height:793.333333pt;}
.w0_c00234{width:1122.666667pt;}
.x0_c00234{left:0.000000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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;}
.sc__c00235{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00235{-webkit-text-stroke:0px transparent;}
}
.y0_c00235{bottom:0.000000px;}
.h0_c00235{height:892.500000px;}
.w0_c00235{width:1263.000000px;}
.x0_c00235{left:0.000000px;}
@media print{
.y0_c00235{bottom:0.000000pt;}
.h0_c00235{height:793.333333pt;}
.w0_c00235{width:1122.666667pt;}
.x0_c00235{left:0.000000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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;}
.sc__c00236{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00236{-webkit-text-stroke:0px transparent;}
}
.y0_c00236{bottom:0.000000px;}
.h0_c00236{height:892.500000px;}
.w0_c00236{width:1263.000000px;}
.x0_c00236{left:0.000000px;}
@media print{
.y0_c00236{bottom:0.000000pt;}
.h0_c00236{height:793.333333pt;}
.w0_c00236{width:1122.666667pt;}
.x0_c00236{left:0.000000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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;}
.sc__c00237{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00237{-webkit-text-stroke:0px transparent;}
}
.y0_c00237{bottom:0.000000px;}
.h0_c00237{height:892.500000px;}
.w0_c00237{width:1263.000000px;}
.x0_c00237{left:0.000000px;}
@media print{
.y0_c00237{bottom:0.000000pt;}
.h0_c00237{height:793.333333pt;}
.w0_c00237{width:1122.666667pt;}
.x0_c00237{left:0.000000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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;}
.sc__c00238{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00238{-webkit-text-stroke:0px transparent;}
}
.y0_c00238{bottom:0.000000px;}
.h0_c00238{height:892.500000px;}
.w0_c00238{width:1263.000000px;}
.x0_c00238{left:0.000000px;}
@media print{
.y0_c00238{bottom:0.000000pt;}
.h0_c00238{height:793.333333pt;}
.w0_c00238{width:1122.666667pt;}
.x0_c00238{left:0.000000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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;}
.sc__c00239{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00239{-webkit-text-stroke:0px transparent;}
}
.y0_c00239{bottom:0.000000px;}
.h0_c00239{height:892.500000px;}
.w0_c00239{width:1263.000000px;}
.x0_c00239{left:0.000000px;}
@media print{
.y0_c00239{bottom:0.000000pt;}
.h0_c00239{height:793.333333pt;}
.w0_c00239{width:1122.666667pt;}
.x0_c00239{left:0.000000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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;}
.sc__c00240{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00240{-webkit-text-stroke:0px transparent;}
}
.y0_c00240{bottom:0.000000px;}
.h0_c00240{height:892.500000px;}
.w0_c00240{width:1263.000000px;}
.x0_c00240{left:0.000000px;}
@media print{
.y0_c00240{bottom:0.000000pt;}
.h0_c00240{height:793.333333pt;}
.w0_c00240{width:1122.666667pt;}
.x0_c00240{left:0.000000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d4270a20df126fafd6d82946.woff2')format("woff");}.ff1_c00241{font-family:ff1_c00241;line-height:0.929199;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00241;src:url('chunks/assets/font_e6829dda30e08da85f6eae62.woff2')format("woff");}.ff2_c00241{font-family:ff2_c00241;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls0_c00241{letter-spacing:0.000000px;}
.sc__c00241{text-shadow:none;}
.sc0_c00241{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00241{-webkit-text-stroke:0px transparent;}
.sc0_c00241{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00241{word-spacing:0.000000px;}
._0_c00241{width:1.213623px;}
._1_c00241{width:125.298130px;}
._2_c00241{width:845.739072px;}
.fc0_c00241{color:rgb(0,0,0);}
.fs1_c00241{font-size:66.240000px;}
.fs0_c00241{font-size:95.760000px;}
.y0_c00241{bottom:0.000000px;}
.y2_c00241{bottom:780.585150px;}
.y1_c00241{bottom:814.965000px;}
.h3_c00241{height:48.224531px;}
.h2_c00241{height:68.827500px;}
.h0_c00241{height:1262.880000px;}
.h1_c00241{height:1263.000000px;}
.w0_c00241{width:892.980000px;}
.w1_c00241{width:893.250000px;}
.x0_c00241{left:0.000000px;}
.x2_c00241{left:106.416000px;}
.x1_c00241{left:334.155000px;}
@media print{
.v0_c00241{vertical-align:0.000000pt;}
.ls0_c00241{letter-spacing:0.000000pt;}
.ws0_c00241{word-spacing:0.000000pt;}
._0_c00241{width:1.078776pt;}
._1_c00241{width:111.376115pt;}
._2_c00241{width:751.768064pt;}
.fs1_c00241{font-size:58.880000pt;}
.fs0_c00241{font-size:85.120000pt;}
.y0_c00241{bottom:0.000000pt;}
.y2_c00241{bottom:693.853467pt;}
.y1_c00241{bottom:724.413333pt;}
.h3_c00241{height:42.866250pt;}
.h2_c00241{height:61.180000pt;}
.h0_c00241{height:1122.560000pt;}
.h1_c00241{height:1122.666667pt;}
.w0_c00241{width:793.760000pt;}
.w1_c00241{width:794.000000pt;}
.x0_c00241{left:0.000000pt;}
.x2_c00241{left:94.592000pt;}
.x1_c00241{left:297.026667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1f1dac4b44b93a534719807e.woff2')format("woff");}.ff1_c00242{font-family:ff1_c00242;line-height:0.929199;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00242;src:url('chunks/assets/font_2905936d6f221091b9c330e9.woff2')format("woff");}.ff2_c00242{font-family:ff2_c00242;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00242{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00242{vertical-align:0.000000px;}
.ls0_c00242{letter-spacing:0.000000px;}
.sc__c00242{text-shadow:none;}
.sc0_c00242{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00242{-webkit-text-stroke:0px transparent;}
.sc0_c00242{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00242{word-spacing:-18.414720px;}
.ws1_c00242{word-spacing:0.000000px;}
._0_c00242{margin-left:-1.455793px;}
._1_c00242{width:845.705952px;}
.fc1_c00242{color:rgb(64,64,64);}
.fc0_c00242{color:rgb(0,0,0);}
.fs1_c00242{font-size:66.240000px;}
.fs0_c00242{font-size:95.760000px;}
.y0_c00242{bottom:0.000000px;}
.y3_c00242{bottom:734.144850px;}
.y2_c00242{bottom:771.765000px;}
.y1_c00242{bottom:814.965000px;}
.h3_c00242{height:48.224531px;}
.h2_c00242{height:68.827500px;}
.h0_c00242{height:1262.880000px;}
.h1_c00242{height:1263.000000px;}
.w0_c00242{width:892.980000px;}
.w1_c00242{width:893.250000px;}
.x0_c00242{left:0.000000px;}
.x2_c00242{left:387.795000px;}
.x1_c00242{left:427.755000px;}
.x3_c00242{left:446.475750px;}
@media print{
.v0_c00242{vertical-align:0.000000pt;}
.ls0_c00242{letter-spacing:0.000000pt;}
.ws0_c00242{word-spacing:-16.368640pt;}
.ws1_c00242{word-spacing:0.000000pt;}
._0_c00242{margin-left:-1.294038pt;}
._1_c00242{width:751.738624pt;}
.fs1_c00242{font-size:58.880000pt;}
.fs0_c00242{font-size:85.120000pt;}
.y0_c00242{bottom:0.000000pt;}
.y3_c00242{bottom:652.573200pt;}
.y2_c00242{bottom:686.013333pt;}
.y1_c00242{bottom:724.413333pt;}
.h3_c00242{height:42.866250pt;}
.h2_c00242{height:61.180000pt;}
.h0_c00242{height:1122.560000pt;}
.h1_c00242{height:1122.666667pt;}
.w0_c00242{width:793.760000pt;}
.w1_c00242{width:794.000000pt;}
.x0_c00242{left:0.000000pt;}
.x2_c00242{left:344.706667pt;}
.x1_c00242{left:380.226667pt;}
.x3_c00242{left:396.867333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_779acf3c5896d6aaef03592a.woff2')format("woff");}.ff1_c00243{font-family:ff1_c00243;line-height:0.938965;font-style:normal;font-weight:normal;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_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff2_c00243{font-family:ff2_c00243;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00243{letter-spacing:0.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;}
}
.ws0_c00243{word-spacing:-36.829440px;}
.ws1_c00243{word-spacing:0.000000px;}
._5_c00243{margin-left:-8.329958px;}
._4_c00243{margin-left:-6.630250px;}
._7_c00243{margin-left:-4.315557px;}
._6_c00243{margin-left:-3.255271px;}
._2_c00243{margin-left:-1.190919px;}
._3_c00243{width:111.924326px;}
._1_c00243{width:995.547456px;}
._0_c00243{width:1257.579648px;}
.fc0_c00243{color:rgb(0,0,0);}
.fs0_c00243{font-size:66.240000px;}
.y0_c00243{bottom:0.000000px;}
.y1_c00243{bottom:56.555850px;}
.y6_c00243{bottom:88.955400px;}
.y5_c00243{bottom:110.015700px;}
.y4_c00243{bottom:615.884700px;}
.y3_c00243{bottom:663.765150px;}
.y2_c00243{bottom:684.824850px;}
.h2_c00243{height:48.256875px;}
.h0_c00243{height:1262.880000px;}
.h1_c00243{height:1263.000000px;}
.w0_c00243{width:892.980000px;}
.w1_c00243{width:893.250000px;}
.x0_c00243{left:0.000000px;}
.x2_c00243{left:127.631250px;}
.x1_c00243{left:148.896150px;}
.x3_c00243{left:286.950555px;}
@media print{
.v0_c00243{vertical-align:0.000000pt;}
.ls0_c00243{letter-spacing:0.000000pt;}
.ws0_c00243{word-spacing:-32.737280pt;}
.ws1_c00243{word-spacing:0.000000pt;}
._5_c00243{margin-left:-7.404407pt;}
._4_c00243{margin-left:-5.893555pt;}
._7_c00243{margin-left:-3.836051pt;}
._6_c00243{margin-left:-2.893574pt;}
._2_c00243{margin-left:-1.058595pt;}
._3_c00243{width:99.488290pt;}
._1_c00243{width:884.931072pt;}
._0_c00243{width:1117.848576pt;}
.fs0_c00243{font-size:58.880000pt;}
.y0_c00243{bottom:0.000000pt;}
.y1_c00243{bottom:50.271867pt;}
.y6_c00243{bottom:79.071467pt;}
.y5_c00243{bottom:97.791733pt;}
.y4_c00243{bottom:547.453067pt;}
.y3_c00243{bottom:590.013467pt;}
.y2_c00243{bottom:608.733200pt;}
.h2_c00243{height:42.895000pt;}
.h0_c00243{height:1122.560000pt;}
.h1_c00243{height:1122.666667pt;}
.w0_c00243{width:793.760000pt;}
.w1_c00243{width:794.000000pt;}
.x0_c00243{left:0.000000pt;}
.x2_c00243{left:113.450000pt;}
.x1_c00243{left:132.352133pt;}
.x3_c00243{left:255.067160pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ff55e85d60c8c86371c1c9c0.woff2')format("woff");}.ff1_c00244{font-family:ff1_c00244;line-height:0.938965;font-style:normal;font-weight:normal;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_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff2_c00244{font-family:ff2_c00244;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00244{letter-spacing:0.000000px;}
.sc__c00244{text-shadow:none;}
.sc0_c00244{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00244{-webkit-text-stroke:0px transparent;}
.sc0_c00244{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00244{word-spacing:-36.829440px;}
.ws1_c00244{word-spacing:0.000000px;}
._2_c00244{margin-left:-1.190919px;}
._5_c00244{width:5.955854px;}
._4_c00244{width:7.098712px;}
._3_c00244{width:111.924326px;}
._1_c00244{width:995.547456px;}
._0_c00244{width:1257.579648px;}
.fc0_c00244{color:rgb(0,0,0);}
.fs0_c00244{font-size:66.240000px;}
.y0_c00244{bottom:0.000000px;}
.y1_c00244{bottom:56.555850px;}
.y6_c00244{bottom:106.955400px;}
.y5_c00244{bottom:128.015700px;}
.y4_c00244{bottom:633.884700px;}
.y3_c00244{bottom:681.765150px;}
.y2_c00244{bottom:702.824850px;}
.h2_c00244{height:48.256875px;}
.h0_c00244{height:1262.880000px;}
.h1_c00244{height:1263.000000px;}
.w0_c00244{width:892.980000px;}
.w1_c00244{width:893.250000px;}
.x0_c00244{left:0.000000px;}
.x2_c00244{left:127.631250px;}
.x1_c00244{left:148.896150px;}
.x3_c00244{left:286.948500px;}
@media print{
.v0_c00244{vertical-align:0.000000pt;}
.ls0_c00244{letter-spacing:0.000000pt;}
.ws0_c00244{word-spacing:-32.737280pt;}
.ws1_c00244{word-spacing:0.000000pt;}
._2_c00244{margin-left:-1.058595pt;}
._5_c00244{width:5.294093pt;}
._4_c00244{width:6.309966pt;}
._3_c00244{width:99.488290pt;}
._1_c00244{width:884.931072pt;}
._0_c00244{width:1117.848576pt;}
.fs0_c00244{font-size:58.880000pt;}
.y0_c00244{bottom:0.000000pt;}
.y1_c00244{bottom:50.271867pt;}
.y6_c00244{bottom:95.071467pt;}
.y5_c00244{bottom:113.791733pt;}
.y4_c00244{bottom:563.453067pt;}
.y3_c00244{bottom:606.013467pt;}
.y2_c00244{bottom:624.733200pt;}
.h2_c00244{height:42.895000pt;}
.h0_c00244{height:1122.560000pt;}
.h1_c00244{height:1122.666667pt;}
.w0_c00244{width:793.760000pt;}
.w1_c00244{width:794.000000pt;}
.x0_c00244{left:0.000000pt;}
.x2_c00244{left:113.450000pt;}
.x1_c00244{left:132.352133pt;}
.x3_c00244{left:255.065333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_27eae5c7b3bf2af90e00cd5d.woff2')format("woff");}.ff1_c00245{font-family:ff1_c00245;line-height:0.938965;font-style:normal;font-weight:normal;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_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff2_c00245{font-family:ff2_c00245;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00245{letter-spacing:0.000000px;}
.sc__c00245{text-shadow:none;}
.sc0_c00245{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00245{-webkit-text-stroke:0px transparent;}
.sc0_c00245{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00245{word-spacing:-36.829440px;}
.ws1_c00245{word-spacing:0.000000px;}
._2_c00245{margin-left:-1.190919px;}
._7_c00245{width:3.794927px;}
._6_c00245{width:4.944712px;}
._5_c00245{width:5.955854px;}
._4_c00245{width:7.098712px;}
._3_c00245{width:111.924326px;}
._1_c00245{width:995.547456px;}
._0_c00245{width:1257.579648px;}
.fc0_c00245{color:rgb(0,0,0);}
.fs0_c00245{font-size:66.240000px;}
.y0_c00245{bottom:0.000000px;}
.y1_c00245{bottom:56.555850px;}
.y6_c00245{bottom:103.535400px;}
.y5_c00245{bottom:124.595700px;}
.y4_c00245{bottom:642.884700px;}
.y3_c00245{bottom:681.765150px;}
.y2_c00245{bottom:702.824850px;}
.h2_c00245{height:48.256875px;}
.h0_c00245{height:1262.880000px;}
.h1_c00245{height:1263.000000px;}
.w0_c00245{width:892.980000px;}
.w1_c00245{width:893.250000px;}
.x0_c00245{left:0.000000px;}
.x2_c00245{left:127.631250px;}
.x1_c00245{left:148.896150px;}
.x3_c00245{left:286.948500px;}
@media print{
.v0_c00245{vertical-align:0.000000pt;}
.ls0_c00245{letter-spacing:0.000000pt;}
.ws0_c00245{word-spacing:-32.737280pt;}
.ws1_c00245{word-spacing:0.000000pt;}
._2_c00245{margin-left:-1.058595pt;}
._7_c00245{width:3.373268pt;}
._6_c00245{width:4.395299pt;}
._5_c00245{width:5.294093pt;}
._4_c00245{width:6.309966pt;}
._3_c00245{width:99.488290pt;}
._1_c00245{width:884.931072pt;}
._0_c00245{width:1117.848576pt;}
.fs0_c00245{font-size:58.880000pt;}
.y0_c00245{bottom:0.000000pt;}
.y1_c00245{bottom:50.271867pt;}
.y6_c00245{bottom:92.031467pt;}
.y5_c00245{bottom:110.751733pt;}
.y4_c00245{bottom:571.453067pt;}
.y3_c00245{bottom:606.013467pt;}
.y2_c00245{bottom:624.733200pt;}
.h2_c00245{height:42.895000pt;}
.h0_c00245{height:1122.560000pt;}
.h1_c00245{height:1122.666667pt;}
.w0_c00245{width:793.760000pt;}
.w1_c00245{width:794.000000pt;}
.x0_c00245{left:0.000000pt;}
.x2_c00245{left:113.450000pt;}
.x1_c00245{left:132.352133pt;}
.x3_c00245{left:255.065333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fb301134e67467bb77cdd391.woff2')format("woff");}.ff1_c00246{font-family:ff1_c00246;line-height:0.938965;font-style:normal;font-weight:normal;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_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff2_c00246{font-family:ff2_c00246;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00246{letter-spacing:0.000000px;}
.sc__c00246{text-shadow:none;}
.sc0_c00246{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00246{-webkit-text-stroke:0px transparent;}
.sc0_c00246{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00246{word-spacing:-36.829440px;}
.ws1_c00246{word-spacing:0.000000px;}
._2_c00246{margin-left:-1.190919px;}
._5_c00246{width:3.794927px;}
._4_c00246{width:4.944712px;}
._3_c00246{width:111.924326px;}
._1_c00246{width:995.547456px;}
._0_c00246{width:1257.579648px;}
.fc0_c00246{color:rgb(0,0,0);}
.fs0_c00246{font-size:66.240000px;}
.y0_c00246{bottom:0.000000px;}
.y1_c00246{bottom:56.555850px;}
.y5_c00246{bottom:142.416300px;}
.y4_c00246{bottom:163.470150px;}
.y3_c00246{bottom:681.765150px;}
.y2_c00246{bottom:702.824850px;}
.h2_c00246{height:48.256875px;}
.h0_c00246{height:1262.880000px;}
.h1_c00246{height:1263.000000px;}
.w0_c00246{width:892.980000px;}
.w1_c00246{width:893.250000px;}
.x0_c00246{left:0.000000px;}
.x2_c00246{left:127.631250px;}
.x1_c00246{left:148.896150px;}
.x3_c00246{left:286.949100px;}
@media print{
.v0_c00246{vertical-align:0.000000pt;}
.ls0_c00246{letter-spacing:0.000000pt;}
.ws0_c00246{word-spacing:-32.737280pt;}
.ws1_c00246{word-spacing:0.000000pt;}
._2_c00246{margin-left:-1.058595pt;}
._5_c00246{width:3.373268pt;}
._4_c00246{width:4.395299pt;}
._3_c00246{width:99.488290pt;}
._1_c00246{width:884.931072pt;}
._0_c00246{width:1117.848576pt;}
.fs0_c00246{font-size:58.880000pt;}
.y0_c00246{bottom:0.000000pt;}
.y1_c00246{bottom:50.271867pt;}
.y5_c00246{bottom:126.592267pt;}
.y4_c00246{bottom:145.306800pt;}
.y3_c00246{bottom:606.013467pt;}
.y2_c00246{bottom:624.733200pt;}
.h2_c00246{height:42.895000pt;}
.h0_c00246{height:1122.560000pt;}
.h1_c00246{height:1122.666667pt;}
.w0_c00246{width:793.760000pt;}
.w1_c00246{width:794.000000pt;}
.x0_c00246{left:0.000000pt;}
.x2_c00246{left:113.450000pt;}
.x1_c00246{left:132.352133pt;}
.x3_c00246{left:255.065867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_87b183b93e9552d99ddad3e2.woff2')format("woff");}.ff1_c00247{font-family:ff1_c00247;line-height:0.938965;font-style:normal;font-weight:normal;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_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff2_c00247{font-family:ff2_c00247;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00247{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00247{vertical-align:0.000000px;}
.ls0_c00247{letter-spacing:0.000000px;}
.sc__c00247{text-shadow:none;}
.sc0_c00247{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00247{-webkit-text-stroke:0px transparent;}
.sc0_c00247{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00247{word-spacing:-36.829440px;}
.ws1_c00247{word-spacing:0.000000px;}
._2_c00247{margin-left:-1.190919px;}
._7_c00247{width:1.047529px;}
._4_c00247{width:16.239857px;}
._5_c00247{width:17.355121px;}
._6_c00247{width:75.094908px;}
._3_c00247{width:111.924326px;}
._1_c00247{width:995.547456px;}
._0_c00247{width:1257.579648px;}
.fc0_c00247{color:rgb(0,0,0);}
.fs0_c00247{font-size:66.240000px;}
.y0_c00247{bottom:0.000000px;}
.y1_c00247{bottom:56.555850px;}
.y5_c00247{bottom:142.416300px;}
.y4_c00247{bottom:163.470150px;}
.y3_c00247{bottom:681.765150px;}
.y2_c00247{bottom:702.824850px;}
.h2_c00247{height:48.256875px;}
.h0_c00247{height:1262.880000px;}
.h1_c00247{height:1263.000000px;}
.w0_c00247{width:892.980000px;}
.w1_c00247{width:893.250000px;}
.x0_c00247{left:0.000000px;}
.x2_c00247{left:127.631250px;}
.x1_c00247{left:148.896150px;}
.x3_c00247{left:286.947915px;}
@media print{
.v0_c00247{vertical-align:0.000000pt;}
.ls0_c00247{letter-spacing:0.000000pt;}
.ws0_c00247{word-spacing:-32.737280pt;}
.ws1_c00247{word-spacing:0.000000pt;}
._2_c00247{margin-left:-1.058595pt;}
._7_c00247{width:0.931137pt;}
._4_c00247{width:14.435428pt;}
._5_c00247{width:15.426775pt;}
._6_c00247{width:66.751030pt;}
._3_c00247{width:99.488290pt;}
._1_c00247{width:884.931072pt;}
._0_c00247{width:1117.848576pt;}
.fs0_c00247{font-size:58.880000pt;}
.y0_c00247{bottom:0.000000pt;}
.y1_c00247{bottom:50.271867pt;}
.y5_c00247{bottom:126.592267pt;}
.y4_c00247{bottom:145.306800pt;}
.y3_c00247{bottom:606.013467pt;}
.y2_c00247{bottom:624.733200pt;}
.h2_c00247{height:42.895000pt;}
.h0_c00247{height:1122.560000pt;}
.h1_c00247{height:1122.666667pt;}
.w0_c00247{width:793.760000pt;}
.w1_c00247{width:794.000000pt;}
.x0_c00247{left:0.000000pt;}
.x2_c00247{left:113.450000pt;}
.x1_c00247{left:132.352133pt;}
.x3_c00247{left:255.064813pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b4729bf7e7f897a2b80af746.woff2')format("woff");}.ff1_c00248{font-family:ff1_c00248;line-height:0.938965;font-style:normal;font-weight:normal;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_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff2_c00248{font-family:ff2_c00248;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00248{letter-spacing:0.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:-36.829440px;}
.ws1_c00248{word-spacing:0.000000px;}
._2_c00248{margin-left:-1.190919px;}
._6_c00248{width:1.120621px;}
._7_c00248{width:10.599291px;}
._4_c00248{width:16.239835px;}
._5_c00248{width:17.287006px;}
._3_c00248{width:75.094908px;}
._1_c00248{width:995.547456px;}
._0_c00248{width:1257.579648px;}
.fc0_c00248{color:rgb(0,0,0);}
.fs0_c00248{font-size:66.240000px;}
.y0_c00248{bottom:0.000000px;}
.y1_c00248{bottom:56.555850px;}
.y5_c00248{bottom:139.535700px;}
.y4_c00248{bottom:160.590150px;}
.y3_c00248{bottom:681.765150px;}
.y2_c00248{bottom:702.824850px;}
.h2_c00248{height:48.256875px;}
.h0_c00248{height:1262.880000px;}
.h1_c00248{height:1263.000000px;}
.w0_c00248{width:892.980000px;}
.w1_c00248{width:893.250000px;}
.x0_c00248{left:0.000000px;}
.x2_c00248{left:127.631250px;}
.x1_c00248{left:148.896150px;}
.x3_c00248{left:286.947915px;}
@media print{
.v0_c00248{vertical-align:0.000000pt;}
.ls0_c00248{letter-spacing:0.000000pt;}
.ws0_c00248{word-spacing:-32.737280pt;}
.ws1_c00248{word-spacing:0.000000pt;}
._2_c00248{margin-left:-1.058595pt;}
._6_c00248{width:0.996107pt;}
._7_c00248{width:9.421592pt;}
._4_c00248{width:14.435409pt;}
._5_c00248{width:15.366227pt;}
._3_c00248{width:66.751030pt;}
._1_c00248{width:884.931072pt;}
._0_c00248{width:1117.848576pt;}
.fs0_c00248{font-size:58.880000pt;}
.y0_c00248{bottom:0.000000pt;}
.y1_c00248{bottom:50.271867pt;}
.y5_c00248{bottom:124.031733pt;}
.y4_c00248{bottom:142.746800pt;}
.y3_c00248{bottom:606.013467pt;}
.y2_c00248{bottom:624.733200pt;}
.h2_c00248{height:42.895000pt;}
.h0_c00248{height:1122.560000pt;}
.h1_c00248{height:1122.666667pt;}
.w0_c00248{width:793.760000pt;}
.w1_c00248{width:794.000000pt;}
.x0_c00248{left:0.000000pt;}
.x2_c00248{left:113.450000pt;}
.x1_c00248{left:132.352133pt;}
.x3_c00248{left:255.064813pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3afeae297b98ce113469ef78.woff2')format("woff");}.ff1_c00249{font-family:ff1_c00249;line-height:0.938965;font-style:normal;font-weight:normal;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_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff2_c00249{font-family:ff2_c00249;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00249{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00249{vertical-align:0.000000px;}
.ls0_c00249{letter-spacing:0.000000px;}
.sc__c00249{text-shadow:none;}
.sc0_c00249{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00249{-webkit-text-stroke:0px transparent;}
.sc0_c00249{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00249{word-spacing:-36.829440px;}
.ws1_c00249{word-spacing:0.000000px;}
._2_c00249{margin-left:-1.190919px;}
._4_c00249{width:3.405291px;}
._5_c00249{width:10.599291px;}
._3_c00249{width:75.094908px;}
._1_c00249{width:995.547456px;}
._0_c00249{width:1257.579648px;}
.fc0_c00249{color:rgb(0,0,0);}
.fs0_c00249{font-size:66.240000px;}
.y0_c00249{bottom:0.000000px;}
.y1_c00249{bottom:56.555850px;}
.y5_c00249{bottom:120.096900px;}
.y4_c00249{bottom:141.156150px;}
.y3_c00249{bottom:681.765150px;}
.y2_c00249{bottom:702.824850px;}
.h2_c00249{height:48.256875px;}
.h0_c00249{height:1262.880000px;}
.h1_c00249{height:1263.000000px;}
.w0_c00249{width:892.980000px;}
.w1_c00249{width:893.250000px;}
.x0_c00249{left:0.000000px;}
.x2_c00249{left:127.631250px;}
.x1_c00249{left:148.896150px;}
.x3_c00249{left:286.949400px;}
@media print{
.v0_c00249{vertical-align:0.000000pt;}
.ls0_c00249{letter-spacing:0.000000pt;}
.ws0_c00249{word-spacing:-32.737280pt;}
.ws1_c00249{word-spacing:0.000000pt;}
._2_c00249{margin-left:-1.058595pt;}
._4_c00249{width:3.026925pt;}
._5_c00249{width:9.421592pt;}
._3_c00249{width:66.751030pt;}
._1_c00249{width:884.931072pt;}
._0_c00249{width:1117.848576pt;}
.fs0_c00249{font-size:58.880000pt;}
.y0_c00249{bottom:0.000000pt;}
.y1_c00249{bottom:50.271867pt;}
.y5_c00249{bottom:106.752800pt;}
.y4_c00249{bottom:125.472133pt;}
.y3_c00249{bottom:606.013467pt;}
.y2_c00249{bottom:624.733200pt;}
.h2_c00249{height:42.895000pt;}
.h0_c00249{height:1122.560000pt;}
.h1_c00249{height:1122.666667pt;}
.w0_c00249{width:793.760000pt;}
.w1_c00249{width:794.000000pt;}
.x0_c00249{left:0.000000pt;}
.x2_c00249{left:113.450000pt;}
.x1_c00249{left:132.352133pt;}
.x3_c00249{left:255.066133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_33f1d0cc302a49492128d19d.woff2')format("woff");}.ff1_c00250{font-family:ff1_c00250;line-height:0.938965;font-style:normal;font-weight:normal;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_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff2_c00250{font-family:ff2_c00250;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00250{letter-spacing:0.000000px;}
.sc__c00250{text-shadow:none;}
.sc0_c00250{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00250{-webkit-text-stroke:0px transparent;}
.sc0_c00250{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00250{word-spacing:-36.829440px;}
.ws1_c00250{word-spacing:0.000000px;}
._2_c00250{margin-left:-1.190919px;}
._5_c00250{width:1.965291px;}
._4_c00250{width:9.165291px;}
._3_c00250{width:75.094908px;}
._1_c00250{width:995.547456px;}
._0_c00250{width:1257.579648px;}
.fc0_c00250{color:rgb(0,0,0);}
.fs0_c00250{font-size:66.240000px;}
.y0_c00250{bottom:0.000000px;}
.y1_c00250{bottom:56.555850px;}
.y5_c00250{bottom:120.276450px;}
.y4_c00250{bottom:141.336150px;}
.y3_c00250{bottom:681.765150px;}
.y2_c00250{bottom:702.824850px;}
.h2_c00250{height:48.256875px;}
.h0_c00250{height:1262.880000px;}
.h1_c00250{height:1263.000000px;}
.w0_c00250{width:892.980000px;}
.w1_c00250{width:893.250000px;}
.x0_c00250{left:0.000000px;}
.x2_c00250{left:127.631250px;}
.x1_c00250{left:148.896150px;}
.x3_c00250{left:286.949130px;}
@media print{
.v0_c00250{vertical-align:0.000000pt;}
.ls0_c00250{letter-spacing:0.000000pt;}
.ws0_c00250{word-spacing:-32.737280pt;}
.ws1_c00250{word-spacing:0.000000pt;}
._2_c00250{margin-left:-1.058595pt;}
._5_c00250{width:1.746925pt;}
._4_c00250{width:8.146925pt;}
._3_c00250{width:66.751030pt;}
._1_c00250{width:884.931072pt;}
._0_c00250{width:1117.848576pt;}
.fs0_c00250{font-size:58.880000pt;}
.y0_c00250{bottom:0.000000pt;}
.y1_c00250{bottom:50.271867pt;}
.y5_c00250{bottom:106.912400pt;}
.y4_c00250{bottom:125.632133pt;}
.y3_c00250{bottom:606.013467pt;}
.y2_c00250{bottom:624.733200pt;}
.h2_c00250{height:42.895000pt;}
.h0_c00250{height:1122.560000pt;}
.h1_c00250{height:1122.666667pt;}
.w0_c00250{width:793.760000pt;}
.w1_c00250{width:794.000000pt;}
.x0_c00250{left:0.000000pt;}
.x2_c00250{left:113.450000pt;}
.x1_c00250{left:132.352133pt;}
.x3_c00250{left:255.065893pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8514674d581a991694c9ccc7.woff2')format("woff");}.ff1_c00251{font-family:ff1_c00251;line-height:0.938965;font-style:normal;font-weight:normal;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_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff2_c00251{font-family:ff2_c00251;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00251{letter-spacing:0.000000px;}
.sc__c00251{text-shadow:none;}
.sc0_c00251{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00251{-webkit-text-stroke:0px transparent;}
.sc0_c00251{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00251{word-spacing:-36.829440px;}
.ws1_c00251{word-spacing:0.000000px;}
._2_c00251{margin-left:-1.190919px;}
._4_c00251{width:9.165291px;}
._5_c00251{width:53.079291px;}
._3_c00251{width:75.094908px;}
._1_c00251{width:995.547456px;}
._0_c00251{width:1257.579648px;}
.fc0_c00251{color:rgb(0,0,0);}
.fs0_c00251{font-size:66.240000px;}
.y0_c00251{bottom:0.000000px;}
.y1_c00251{bottom:56.555850px;}
.y5_c00251{bottom:120.276450px;}
.y4_c00251{bottom:141.336150px;}
.y3_c00251{bottom:681.765150px;}
.y2_c00251{bottom:702.824850px;}
.h2_c00251{height:48.256875px;}
.h0_c00251{height:1262.880000px;}
.h1_c00251{height:1263.000000px;}
.w0_c00251{width:892.980000px;}
.w1_c00251{width:893.250000px;}
.x0_c00251{left:0.000000px;}
.x2_c00251{left:127.631250px;}
.x1_c00251{left:148.896150px;}
.x3_c00251{left:286.949130px;}
@media print{
.v0_c00251{vertical-align:0.000000pt;}
.ls0_c00251{letter-spacing:0.000000pt;}
.ws0_c00251{word-spacing:-32.737280pt;}
.ws1_c00251{word-spacing:0.000000pt;}
._2_c00251{margin-left:-1.058595pt;}
._4_c00251{width:8.146925pt;}
._5_c00251{width:47.181592pt;}
._3_c00251{width:66.751030pt;}
._1_c00251{width:884.931072pt;}
._0_c00251{width:1117.848576pt;}
.fs0_c00251{font-size:58.880000pt;}
.y0_c00251{bottom:0.000000pt;}
.y1_c00251{bottom:50.271867pt;}
.y5_c00251{bottom:106.912400pt;}
.y4_c00251{bottom:125.632133pt;}
.y3_c00251{bottom:606.013467pt;}
.y2_c00251{bottom:624.733200pt;}
.h2_c00251{height:42.895000pt;}
.h0_c00251{height:1122.560000pt;}
.h1_c00251{height:1122.666667pt;}
.w0_c00251{width:793.760000pt;}
.w1_c00251{width:794.000000pt;}
.x0_c00251{left:0.000000pt;}
.x2_c00251{left:113.450000pt;}
.x1_c00251{left:132.352133pt;}
.x3_c00251{left:255.065893pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6178a6b2f51591a2b40f72c9.woff2')format("woff");}.ff1_c00252{font-family:ff1_c00252;line-height:0.938965;font-style:normal;font-weight:normal;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_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff2_c00252{font-family:ff2_c00252;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00252{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00252{vertical-align:0.000000px;}
.ls0_c00252{letter-spacing:0.000000px;}
.sc__c00252{text-shadow:none;}
.sc0_c00252{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00252{-webkit-text-stroke:0px transparent;}
.sc0_c00252{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00252{word-spacing:-36.829440px;}
.ws1_c00252{word-spacing:0.000000px;}
._6_c00252{margin-left:-7.469948px;}
._4_c00252{margin-left:-6.257666px;}
._5_c00252{margin-left:-3.291044px;}
._2_c00252{margin-left:-1.190919px;}
._7_c00252{width:21.926571px;}
._3_c00252{width:75.094908px;}
._1_c00252{width:995.547456px;}
._0_c00252{width:1257.579648px;}
.fc0_c00252{color:rgb(0,0,0);}
.fs0_c00252{font-size:66.240000px;}
.y0_c00252{bottom:0.000000px;}
.y1_c00252{bottom:56.555850px;}
.y5_c00252{bottom:120.276450px;}
.y4_c00252{bottom:141.336150px;}
.y3_c00252{bottom:681.765150px;}
.y2_c00252{bottom:702.824850px;}
.h2_c00252{height:48.256875px;}
.h0_c00252{height:1262.880000px;}
.h1_c00252{height:1263.000000px;}
.w0_c00252{width:892.980000px;}
.w1_c00252{width:893.250000px;}
.x0_c00252{left:0.000000px;}
.x2_c00252{left:127.631250px;}
.x1_c00252{left:148.896150px;}
.x3_c00252{left:286.950510px;}
@media print{
.v0_c00252{vertical-align:0.000000pt;}
.ls0_c00252{letter-spacing:0.000000pt;}
.ws0_c00252{word-spacing:-32.737280pt;}
.ws1_c00252{word-spacing:0.000000pt;}
._6_c00252{margin-left:-6.639954pt;}
._4_c00252{margin-left:-5.562369pt;}
._5_c00252{margin-left:-2.925372pt;}
._2_c00252{margin-left:-1.058595pt;}
._7_c00252{width:19.490285pt;}
._3_c00252{width:66.751030pt;}
._1_c00252{width:884.931072pt;}
._0_c00252{width:1117.848576pt;}
.fs0_c00252{font-size:58.880000pt;}
.y0_c00252{bottom:0.000000pt;}
.y1_c00252{bottom:50.271867pt;}
.y5_c00252{bottom:106.912400pt;}
.y4_c00252{bottom:125.632133pt;}
.y3_c00252{bottom:606.013467pt;}
.y2_c00252{bottom:624.733200pt;}
.h2_c00252{height:42.895000pt;}
.h0_c00252{height:1122.560000pt;}
.h1_c00252{height:1122.666667pt;}
.w0_c00252{width:793.760000pt;}
.w1_c00252{width:794.000000pt;}
.x0_c00252{left:0.000000pt;}
.x2_c00252{left:113.450000pt;}
.x1_c00252{left:132.352133pt;}
.x3_c00252{left:255.067120pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7bcacd45f63103f6c5917d72.woff2')format("woff");}.ff1_c00253{font-family:ff1_c00253;line-height:0.938965;font-style:normal;font-weight:normal;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_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff2_c00253{font-family:ff2_c00253;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00253{letter-spacing:0.000000px;}
.sc__c00253{text-shadow:none;}
.sc0_c00253{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00253{-webkit-text-stroke:0px transparent;}
.sc0_c00253{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00253{word-spacing:-36.829440px;}
.ws1_c00253{word-spacing:0.000000px;}
._2_c00253{margin-left:-1.190919px;}
._4_c00253{width:2.480571px;}
._3_c00253{width:75.094908px;}
._1_c00253{width:995.547456px;}
._0_c00253{width:1257.579648px;}
.fc0_c00253{color:rgb(0,0,0);}
.fs0_c00253{font-size:66.240000px;}
.y0_c00253{bottom:0.000000px;}
.y1_c00253{bottom:56.555850px;}
.y5_c00253{bottom:120.276450px;}
.y4_c00253{bottom:141.336150px;}
.y3_c00253{bottom:681.765150px;}
.y2_c00253{bottom:702.824850px;}
.h2_c00253{height:48.256875px;}
.h0_c00253{height:1262.880000px;}
.h1_c00253{height:1263.000000px;}
.w0_c00253{width:892.980000px;}
.w1_c00253{width:893.250000px;}
.x0_c00253{left:0.000000px;}
.x2_c00253{left:127.631250px;}
.x1_c00253{left:148.896150px;}
.x3_c00253{left:286.923900px;}
@media print{
.v0_c00253{vertical-align:0.000000pt;}
.ls0_c00253{letter-spacing:0.000000pt;}
.ws0_c00253{word-spacing:-32.737280pt;}
.ws1_c00253{word-spacing:0.000000pt;}
._2_c00253{margin-left:-1.058595pt;}
._4_c00253{width:2.204952pt;}
._3_c00253{width:66.751030pt;}
._1_c00253{width:884.931072pt;}
._0_c00253{width:1117.848576pt;}
.fs0_c00253{font-size:58.880000pt;}
.y0_c00253{bottom:0.000000pt;}
.y1_c00253{bottom:50.271867pt;}
.y5_c00253{bottom:106.912400pt;}
.y4_c00253{bottom:125.632133pt;}
.y3_c00253{bottom:606.013467pt;}
.y2_c00253{bottom:624.733200pt;}
.h2_c00253{height:42.895000pt;}
.h0_c00253{height:1122.560000pt;}
.h1_c00253{height:1122.666667pt;}
.w0_c00253{width:793.760000pt;}
.w1_c00253{width:794.000000pt;}
.x0_c00253{left:0.000000pt;}
.x2_c00253{left:113.450000pt;}
.x1_c00253{left:132.352133pt;}
.x3_c00253{left:255.043467pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e744f576f4ba2c5cc0bf7b5c.woff2')format("woff");}.ff1_c00254{font-family:ff1_c00254;line-height:0.938965;font-style:normal;font-weight:normal;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_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff2_c00254{font-family:ff2_c00254;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00254{letter-spacing:0.000000px;}
.sc__c00254{text-shadow:none;}
.sc0_c00254{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00254{-webkit-text-stroke:0px transparent;}
.sc0_c00254{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00254{word-spacing:-36.829440px;}
.ws1_c00254{word-spacing:0.000000px;}
._6_c00254{margin-left:-2.602799px;}
._2_c00254{margin-left:-1.190919px;}
._4_c00254{width:20.480571px;}
._5_c00254{width:21.831285px;}
._3_c00254{width:75.094908px;}
._1_c00254{width:995.547456px;}
._0_c00254{width:1257.579648px;}
.fc0_c00254{color:rgb(0,0,0);}
.fs0_c00254{font-size:66.240000px;}
.y0_c00254{bottom:0.000000px;}
.y1_c00254{bottom:56.555850px;}
.y5_c00254{bottom:120.276450px;}
.y4_c00254{bottom:141.336150px;}
.y3_c00254{bottom:681.765150px;}
.y2_c00254{bottom:702.824850px;}
.h2_c00254{height:48.256875px;}
.h0_c00254{height:1262.880000px;}
.h1_c00254{height:1263.000000px;}
.w0_c00254{width:892.980000px;}
.w1_c00254{width:893.250000px;}
.x0_c00254{left:0.000000px;}
.x2_c00254{left:127.631250px;}
.x1_c00254{left:148.896150px;}
.x3_c00254{left:286.923315px;}
@media print{
.v0_c00254{vertical-align:0.000000pt;}
.ls0_c00254{letter-spacing:0.000000pt;}
.ws0_c00254{word-spacing:-32.737280pt;}
.ws1_c00254{word-spacing:0.000000pt;}
._6_c00254{margin-left:-2.313599pt;}
._2_c00254{margin-left:-1.058595pt;}
._4_c00254{width:18.204952pt;}
._5_c00254{width:19.405587pt;}
._3_c00254{width:66.751030pt;}
._1_c00254{width:884.931072pt;}
._0_c00254{width:1117.848576pt;}
.fs0_c00254{font-size:58.880000pt;}
.y0_c00254{bottom:0.000000pt;}
.y1_c00254{bottom:50.271867pt;}
.y5_c00254{bottom:106.912400pt;}
.y4_c00254{bottom:125.632133pt;}
.y3_c00254{bottom:606.013467pt;}
.y2_c00254{bottom:624.733200pt;}
.h2_c00254{height:42.895000pt;}
.h0_c00254{height:1122.560000pt;}
.h1_c00254{height:1122.666667pt;}
.w0_c00254{width:793.760000pt;}
.w1_c00254{width:794.000000pt;}
.x0_c00254{left:0.000000pt;}
.x2_c00254{left:113.450000pt;}
.x1_c00254{left:132.352133pt;}
.x3_c00254{left:255.042947pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_60a1c5f21f4a8d45eb021aae.woff2')format("woff");}.ff1_c00255{font-family:ff1_c00255;line-height:0.929199;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00255;src:url('chunks/assets/font_257b04e84a4b9c816442cc1e.woff2')format("woff");}.ff2_c00255{font-family:ff2_c00255;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00255{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00255{vertical-align:0.000000px;}
.ls0_c00255{letter-spacing:0.000000px;}
.sc__c00255{text-shadow:none;}
.sc0_c00255{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00255{-webkit-text-stroke:0px transparent;}
.sc0_c00255{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00255{word-spacing:0.000000px;}
._0_c00255{margin-left:-1.058714px;}
.fc0_c00255{color:rgb(0,0,0);}
.fs1_c00255{font-size:66.240000px;}
.fs0_c00255{font-size:95.760000px;}
.y0_c00255{bottom:0.000000px;}
.y2_c00255{bottom:780.765000px;}
.y1_c00255{bottom:814.965000px;}
.h2_c00255{height:68.827500px;}
.h0_c00255{height:1262.880000px;}
.h1_c00255{height:1263.000000px;}
.w0_c00255{width:892.980000px;}
.w1_c00255{width:893.250000px;}
.x0_c00255{left:0.000000px;}
.x2_c00255{left:196.950000px;}
.x1_c00255{left:427.755000px;}
@media print{
.v0_c00255{vertical-align:0.000000pt;}
.ls0_c00255{letter-spacing:0.000000pt;}
.ws0_c00255{word-spacing:0.000000pt;}
._0_c00255{margin-left:-0.941079pt;}
.fs1_c00255{font-size:58.880000pt;}
.fs0_c00255{font-size:85.120000pt;}
.y0_c00255{bottom:0.000000pt;}
.y2_c00255{bottom:694.013333pt;}
.y1_c00255{bottom:724.413333pt;}
.h2_c00255{height:61.180000pt;}
.h0_c00255{height:1122.560000pt;}
.h1_c00255{height:1122.666667pt;}
.w0_c00255{width:793.760000pt;}
.w1_c00255{width:794.000000pt;}
.x0_c00255{left:0.000000pt;}
.x2_c00255{left:175.066667pt;}
.x1_c00255{left:380.226667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c0c1a5d93686c805741712f8.woff2')format("woff");}.ff1_c00256{font-family:ff1_c00256;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00256{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00256{vertical-align:0.000000px;}
.ls0_c00256{letter-spacing:0.000000px;}
.sc__c00256{text-shadow:none;}
.sc0_c00256{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00256{-webkit-text-stroke:0px transparent;}
.sc0_c00256{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00256{word-spacing:0.000000px;}
._5_c00256{margin-left:-3.975692px;}
._2_c00256{margin-left:-1.190920px;}
._4_c00256{width:4.644651px;}
._3_c00256{width:111.924401px;}
._6_c00256{width:845.765568px;}
._1_c00256{width:995.547456px;}
._0_c00256{width:1257.579648px;}
.fc0_c00256{color:rgb(0,0,0);}
.fs0_c00256{font-size:66.240000px;}
.y0_c00256{bottom:0.000000px;}
.y1_c00256{bottom:56.555850px;}
.y5_c00256{bottom:169.410000px;}
.y4_c00256{bottom:208.290450px;}
.y3_c00256{bottom:229.350150px;}
.y2_c00256{bottom:250.409850px;}
.h2_c00256{height:48.224531px;}
.h0_c00256{height:1262.880000px;}
.h1_c00256{height:1263.000000px;}
.w0_c00256{width:892.980000px;}
.w1_c00256{width:893.250000px;}
.x0_c00256{left:0.000000px;}
.x2_c00256{left:127.631250px;}
.x1_c00256{left:148.896150px;}
.x4_c00256{left:191.549250px;}
.x3_c00256{left:286.949250px;}
@media print{
.v0_c00256{vertical-align:0.000000pt;}
.ls0_c00256{letter-spacing:0.000000pt;}
.ws0_c00256{word-spacing:0.000000pt;}
._5_c00256{margin-left:-3.533949pt;}
._2_c00256{margin-left:-1.058596pt;}
._4_c00256{width:4.128579pt;}
._3_c00256{width:99.488357pt;}
._6_c00256{width:751.791616pt;}
._1_c00256{width:884.931072pt;}
._0_c00256{width:1117.848576pt;}
.fs0_c00256{font-size:58.880000pt;}
.y0_c00256{bottom:0.000000pt;}
.y1_c00256{bottom:50.271867pt;}
.y5_c00256{bottom:150.586667pt;}
.y4_c00256{bottom:185.147067pt;}
.y3_c00256{bottom:203.866800pt;}
.y2_c00256{bottom:222.586533pt;}
.h2_c00256{height:42.866250pt;}
.h0_c00256{height:1122.560000pt;}
.h1_c00256{height:1122.666667pt;}
.w0_c00256{width:793.760000pt;}
.w1_c00256{width:794.000000pt;}
.x0_c00256{left:0.000000pt;}
.x2_c00256{left:113.450000pt;}
.x1_c00256{left:132.352133pt;}
.x4_c00256{left:170.266000pt;}
.x3_c00256{left:255.066000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_275d552342cd74f81746e384.woff2')format("woff");}.ff1_c00257{font-family:ff1_c00257;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls0_c00257{letter-spacing:0.000000px;}
.sc__c00257{text-shadow:none;}
.sc0_c00257{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00257{-webkit-text-stroke:0px transparent;}
.sc0_c00257{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00257{word-spacing:0.000000px;}
._2_c00257{margin-left:-1.190920px;}
._4_c00257{width:4.644651px;}
._5_c00257{width:32.588427px;}
._3_c00257{width:111.924328px;}
._6_c00257{width:845.765568px;}
._1_c00257{width:995.547456px;}
._0_c00257{width:1257.579648px;}
.fc0_c00257{color:rgb(0,0,0);}
.fs0_c00257{font-size:66.240000px;}
.y0_c00257{bottom:0.000000px;}
.y1_c00257{bottom:56.555850px;}
.y5_c00257{bottom:177.690450px;}
.y4_c00257{bottom:216.570300px;}
.y3_c00257{bottom:237.629550px;}
.y2_c00257{bottom:258.689850px;}
.h2_c00257{height:48.224531px;}
.h0_c00257{height:1262.880000px;}
.h1_c00257{height:1263.000000px;}
.w0_c00257{width:892.980000px;}
.w1_c00257{width:893.250000px;}
.x0_c00257{left:0.000000px;}
.x2_c00257{left:127.631250px;}
.x1_c00257{left:148.896150px;}
.x4_c00257{left:191.550750px;}
.x3_c00257{left:286.950750px;}
@media print{
.v0_c00257{vertical-align:0.000000pt;}
.ls0_c00257{letter-spacing:0.000000pt;}
.ws0_c00257{word-spacing:0.000000pt;}
._2_c00257{margin-left:-1.058596pt;}
._4_c00257{width:4.128579pt;}
._5_c00257{width:28.967491pt;}
._3_c00257{width:99.488291pt;}
._6_c00257{width:751.791616pt;}
._1_c00257{width:884.931072pt;}
._0_c00257{width:1117.848576pt;}
.fs0_c00257{font-size:58.880000pt;}
.y0_c00257{bottom:0.000000pt;}
.y1_c00257{bottom:50.271867pt;}
.y5_c00257{bottom:157.947067pt;}
.y4_c00257{bottom:192.506933pt;}
.y3_c00257{bottom:211.226267pt;}
.y2_c00257{bottom:229.946533pt;}
.h2_c00257{height:42.866250pt;}
.h0_c00257{height:1122.560000pt;}
.h1_c00257{height:1122.666667pt;}
.w0_c00257{width:793.760000pt;}
.w1_c00257{width:794.000000pt;}
.x0_c00257{left:0.000000pt;}
.x2_c00257{left:113.450000pt;}
.x1_c00257{left:132.352133pt;}
.x4_c00257{left:170.267333pt;}
.x3_c00257{left:255.067333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f44f67909457e5a0b5151fdb.woff2')format("woff");}.ff1_c00258{font-family:ff1_c00258;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls0_c00258{letter-spacing:0.000000px;}
.sc__c00258{text-shadow:none;}
.sc0_c00258{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00258{-webkit-text-stroke:0px transparent;}
.sc0_c00258{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00258{word-spacing:0.000000px;}
._4_c00258{margin-left:-5.993777px;}
._5_c00258{margin-left:-4.429392px;}
._2_c00258{margin-left:-1.190920px;}
._3_c00258{width:111.924328px;}
._6_c00258{width:845.370858px;}
._1_c00258{width:995.547456px;}
._0_c00258{width:1257.579648px;}
.fc0_c00258{color:rgb(0,0,0);}
.fs0_c00258{font-size:66.240000px;}
.y0_c00258{bottom:0.000000px;}
.y1_c00258{bottom:56.555850px;}
.y5_c00258{bottom:103.716450px;}
.y4_c00258{bottom:124.776150px;}
.y3_c00258{bottom:672.765150px;}
.y2_c00258{bottom:693.824850px;}
.h2_c00258{height:48.224531px;}
.h0_c00258{height:1262.880000px;}
.h1_c00258{height:1263.000000px;}
.w0_c00258{width:892.980000px;}
.w1_c00258{width:893.250000px;}
.x0_c00258{left:0.000000px;}
.x2_c00258{left:127.631250px;}
.x1_c00258{left:148.896150px;}
.x3_c00258{left:286.949250px;}
@media print{
.v0_c00258{vertical-align:0.000000pt;}
.ls0_c00258{letter-spacing:0.000000pt;}
.ws0_c00258{word-spacing:0.000000pt;}
._4_c00258{margin-left:-5.327802pt;}
._5_c00258{margin-left:-3.937237pt;}
._2_c00258{margin-left:-1.058596pt;}
._3_c00258{width:99.488291pt;}
._6_c00258{width:751.440762pt;}
._1_c00258{width:884.931072pt;}
._0_c00258{width:1117.848576pt;}
.fs0_c00258{font-size:58.880000pt;}
.y0_c00258{bottom:0.000000pt;}
.y1_c00258{bottom:50.271867pt;}
.y5_c00258{bottom:92.192400pt;}
.y4_c00258{bottom:110.912133pt;}
.y3_c00258{bottom:598.013467pt;}
.y2_c00258{bottom:616.733200pt;}
.h2_c00258{height:42.866250pt;}
.h0_c00258{height:1122.560000pt;}
.h1_c00258{height:1122.666667pt;}
.w0_c00258{width:793.760000pt;}
.w1_c00258{width:794.000000pt;}
.x0_c00258{left:0.000000pt;}
.x2_c00258{left:113.450000pt;}
.x1_c00258{left:132.352133pt;}
.x3_c00258{left:255.066000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b9b5a54e18d240921637d05e.woff2')format("woff");}.ff1_c00259{font-family:ff1_c00259;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00259{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00259{vertical-align:0.000000px;}
.ls0_c00259{letter-spacing:0.000000px;}
.sc__c00259{text-shadow:none;}
.sc0_c00259{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00259{-webkit-text-stroke:0px transparent;}
.sc0_c00259{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00259{word-spacing:0.000000px;}
._2_c00259{margin-left:-1.190920px;}
._4_c00259{width:5.762078px;}
._5_c00259{width:6.879609px;}
._7_c00259{width:8.904974px;}
._6_c00259{width:14.573145px;}
._3_c00259{width:111.924328px;}
._1_c00259{width:995.547456px;}
._0_c00259{width:1257.579648px;}
.fc0_c00259{color:rgb(0,0,0);}
.fs0_c00259{font-size:66.240000px;}
.y0_c00259{bottom:0.000000px;}
.y1_c00259{bottom:56.555850px;}
.y7_c00259{bottom:97.775700px;}
.y6_c00259{bottom:118.835400px;}
.y5_c00259{bottom:644.144400px;}
.y4_c00259{bottom:665.204700px;}
.y3_c00259{bottom:686.265000px;}
.y2_c00259{bottom:707.144850px;}
.h2_c00259{height:48.224531px;}
.h0_c00259{height:1262.880000px;}
.h1_c00259{height:1263.000000px;}
.w0_c00259{width:892.980000px;}
.w1_c00259{width:893.250000px;}
.x0_c00259{left:0.000000px;}
.x2_c00259{left:127.631250px;}
.x1_c00259{left:148.896150px;}
.x3_c00259{left:286.949250px;}
@media print{
.v0_c00259{vertical-align:0.000000pt;}
.ls0_c00259{letter-spacing:0.000000pt;}
.ws0_c00259{word-spacing:0.000000pt;}
._2_c00259{margin-left:-1.058596pt;}
._4_c00259{width:5.121848pt;}
._5_c00259{width:6.115208pt;}
._7_c00259{width:7.915533pt;}
._6_c00259{width:12.953907pt;}
._3_c00259{width:99.488291pt;}
._1_c00259{width:884.931072pt;}
._0_c00259{width:1117.848576pt;}
.fs0_c00259{font-size:58.880000pt;}
.y0_c00259{bottom:0.000000pt;}
.y1_c00259{bottom:50.271867pt;}
.y7_c00259{bottom:86.911733pt;}
.y6_c00259{bottom:105.631467pt;}
.y5_c00259{bottom:572.572800pt;}
.y4_c00259{bottom:591.293067pt;}
.y3_c00259{bottom:610.013333pt;}
.y2_c00259{bottom:628.573200pt;}
.h2_c00259{height:42.866250pt;}
.h0_c00259{height:1122.560000pt;}
.h1_c00259{height:1122.666667pt;}
.w0_c00259{width:793.760000pt;}
.w1_c00259{width:794.000000pt;}
.x0_c00259{left:0.000000pt;}
.x2_c00259{left:113.450000pt;}
.x1_c00259{left:132.352133pt;}
.x3_c00259{left:255.066000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b4e7215eb0bf62b709143c81.woff2')format("woff");}.ff1_c00260{font-family:ff1_c00260;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00260;src:url('chunks/assets/font_2d0cdce5dc3b2ad709a9f767.woff2')format("woff");}.ff2_c00260{font-family:ff2_c00260;line-height:1.058594;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00260{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00260{vertical-align:0.000000px;}
.ls1_c00260{letter-spacing:0.000000px;}
.ls0_c00260{letter-spacing:845.711280px;}
.sc__c00260{text-shadow:none;}
.sc0_c00260{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00260{-webkit-text-stroke:0px transparent;}
.sc0_c00260{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00260{word-spacing:0.000000px;}
._0_c00260{width:1.394092px;}
._1_c00260{width:125.298130px;}
.fc0_c00260{color:rgb(0,0,0);}
.fs1_c00260{font-size:66.240000px;}
.fs0_c00260{font-size:95.760000px;}
.y0_c00260{bottom:0.000000px;}
.y2_c00260{bottom:773.746350px;}
.y1_c00260{bottom:814.966500px;}
.h2_c00260{height:69.715898px;}
.h0_c00260{height:1262.879850px;}
.h1_c00260{height:1263.000000px;}
.w0_c00260{width:892.979850px;}
.w1_c00260{width:893.250000px;}
.x0_c00260{left:0.000000px;}
.x1_c00260{left:261.570000px;}
.x2_c00260{left:446.475000px;}
@media print{
.v0_c00260{vertical-align:0.000000pt;}
.ls1_c00260{letter-spacing:0.000000pt;}
.ls0_c00260{letter-spacing:751.743360pt;}
.ws0_c00260{word-spacing:0.000000pt;}
._0_c00260{width:1.239193pt;}
._1_c00260{width:111.376115pt;}
.fs1_c00260{font-size:58.880000pt;}
.fs0_c00260{font-size:85.120000pt;}
.y0_c00260{bottom:0.000000pt;}
.y2_c00260{bottom:687.774533pt;}
.y1_c00260{bottom:724.414667pt;}
.h2_c00260{height:61.969688pt;}
.h0_c00260{height:1122.559867pt;}
.h1_c00260{height:1122.666667pt;}
.w0_c00260{width:793.759867pt;}
.w1_c00260{width:794.000000pt;}
.x0_c00260{left:0.000000pt;}
.x1_c00260{left:232.506667pt;}
.x2_c00260{left:396.866667pt;}
}





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

.ir_c00261:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00261{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00261;src:url('chunks/assets/font_4aeb77f5bbb189847bb2d11c.woff2')format("woff");}.ff1_c00261{font-family:ff1_c00261;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00261;src:url('chunks/assets/font_c6a7484aa41e5a8104cfd8a5.woff2')format("woff");}.ff2_c00261{font-family:ff2_c00261;line-height:1.058594;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00261{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00261{vertical-align:0.000000px;}
.ls1_c00261{letter-spacing:0.000000px;}
.ls0_c00261{letter-spacing:845.705280px;}
.sc__c00261{text-shadow:none;}
.sc0_c00261{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00261{-webkit-text-stroke:0px transparent;}
.sc0_c00261{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00261{word-spacing:0.000000px;}
._0_c00261{margin-left:-1.383251px;}
.fc1_c00261{color:rgb(64,64,64);}
.fc0_c00261{color:rgb(0,0,0);}
.fs1_c00261{font-size:66.240000px;}
.fs0_c00261{font-size:95.760000px;}
.y0_c00261{bottom:0.000000px;}
.y3_c00261{bottom:752.145000px;}
.y2_c00261{bottom:780.766500px;}
.y1_c00261{bottom:814.966500px;}
.h3_c00261{height:56.957344px;}
.h2_c00261{height:69.715898px;}
.h0_c00261{height:1262.879850px;}
.h1_c00261{height:1263.000000px;}
.w0_c00261{width:892.979850px;}
.w1_c00261{width:893.250000px;}
.x0_c00261{left:0.000000px;}
.x2_c00261{left:307.155000px;}
.x1_c00261{left:427.755000px;}
.x3_c00261{left:446.475000px;}
@media print{
.v0_c00261{vertical-align:0.000000pt;}
.ls1_c00261{letter-spacing:0.000000pt;}
.ls0_c00261{letter-spacing:751.738027pt;}
.ws0_c00261{word-spacing:0.000000pt;}
._0_c00261{margin-left:-1.229556pt;}
.fs1_c00261{font-size:58.880000pt;}
.fs0_c00261{font-size:85.120000pt;}
.y0_c00261{bottom:0.000000pt;}
.y3_c00261{bottom:668.573333pt;}
.y2_c00261{bottom:694.014667pt;}
.y1_c00261{bottom:724.414667pt;}
.h3_c00261{height:50.628750pt;}
.h2_c00261{height:61.969688pt;}
.h0_c00261{height:1122.559867pt;}
.h1_c00261{height:1122.666667pt;}
.w0_c00261{width:793.759867pt;}
.w1_c00261{width:794.000000pt;}
.x0_c00261{left:0.000000pt;}
.x2_c00261{left:273.026667pt;}
.x1_c00261{left:380.226667pt;}
.x3_c00261{left:396.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_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_b4afbce4f73be568c8a71d8a.woff2')format("woff");}.ff1_c00262{font-family:ff1_c00262;line-height:0.666504;font-style:normal;font-weight:normal;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_df8fb875242609b7f960cf0d.woff2')format("woff");}.ff2_c00262{font-family:ff2_c00262;line-height:0.938965;font-style:normal;font-weight:normal;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_cb325950b7b3fc4424dbd819.woff2')format("woff");}.ff3_c00262{font-family:ff3_c00262;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00262;src:url('chunks/assets/font_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff4_c00262{font-family:ff4_c00262;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00262{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00262{vertical-align:0.000000px;}
.ls1_c00262{letter-spacing:0.000000px;}
.ls0_c00262{letter-spacing:0.214973px;}
.sc__c00262{text-shadow:none;}
.sc0_c00262{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00262{-webkit-text-stroke:0px transparent;}
.sc0_c00262{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00262{word-spacing:-15.012033px;}
.ws1_c00262{word-spacing:0.000000px;}
._2_c00262{margin-left:-1.234280px;}
._3_c00262{width:1.147852px;}
._1_c00262{width:911.881968px;}
._0_c00262{width:1345.983552px;}
.fc0_c00262{color:rgb(0,0,0);}
.fs1_c00262{font-size:54.000120px;}
.fs0_c00262{font-size:66.240000px;}
.y0_c00262{bottom:0.000000px;}
.y7_c00262{bottom:5.220000px;}
.y18_c00262{bottom:17.640000px;}
.y1b_c00262{bottom:17.641500px;}
.yf_c00262{bottom:24.481650px;}
.y21_c00262{bottom:25.019550px;}
.y1e_c00262{bottom:25.020000px;}
.yb_c00262{bottom:25.198500px;}
.y16_c00262{bottom:25.201500px;}
.y5_c00262{bottom:25.380000px;}
.y13_c00262{bottom:25.381500px;}
.y11_c00262{bottom:32.220000px;}
.y10_c00262{bottom:32.221500px;}
.y3_c00262{bottom:36.930000px;}
.ye_c00262{bottom:39.961500px;}
.y1_c00262{bottom:56.556450px;}
.y22_c00262{bottom:93.456450px;}
.y20_c00262{bottom:109.836900px;}
.y1f_c00262{bottom:170.130000px;}
.y1d_c00262{bottom:230.430000px;}
.y1c_c00262{bottom:290.775000px;}
.y1a_c00262{bottom:336.495000px;}
.y19_c00262{bottom:382.216500px;}
.y17_c00262{bottom:428.116500px;}
.y15_c00262{bottom:473.835000px;}
.y14_c00262{bottom:534.855000px;}
.y12_c00262{bottom:596.083500px;}
.y6_c00262{bottom:657.105000px;}
.yd_c00262{bottom:731.983500px;}
.yc_c00262{bottom:806.865000px;}
.ya_c00262{bottom:868.111500px;}
.y9_c00262{bottom:929.131500px;}
.y8_c00262{bottom:990.331500px;}
.y4_c00262{bottom:1051.351500px;}
.y2_c00262{bottom:1112.551500px;}
.h6_c00262{height:39.339931px;}
.hd_c00262{height:45.000000px;}
.h4_c00262{height:48.224531px;}
.h2_c00262{height:48.256875px;}
.h10_c00262{height:59.579850px;}
.hf_c00262{height:59.580450px;}
.he_c00262{height:59.616750px;}
.h8_c00262{height:60.300000px;}
.h5_c00262{height:60.478650px;}
.h9_c00262{height:60.479850px;}
.ha_c00262{height:60.515100px;}
.hc_c00262{height:60.516750px;}
.hb_c00262{height:74.160300px;}
.h3_c00262{height:85.715700px;}
.h7_c00262{height:454.708500px;}
.h0_c00262{height:1262.879850px;}
.h1_c00262{height:1263.000000px;}
.w3_c00262{width:100.259700px;}
.w4_c00262{width:149.796750px;}
.w6_c00262{width:250.951500px;}
.w5_c00262{width:458.716500px;}
.w7_c00262{width:459.075000px;}
.w2_c00262{width:710.383500px;}
.w0_c00262{width:892.979700px;}
.w1_c00262{width:893.250000px;}
.x0_c00262{left:0.000000px;}
.x4_c00262{left:4.860000px;}
.x1_c00262{left:148.896750px;}
.x2_c00262{left:154.470000px;}
.x8_c00262{left:202.726500px;}
.x3_c00262{left:204.166500px;}
.x7_c00262{left:229.170000px;}
.x5_c00262{left:255.630000px;}
.x6_c00262{left:406.155000px;}
@media print{
.v0_c00262{vertical-align:0.000000pt;}
.ls1_c00262{letter-spacing:0.000000pt;}
.ls0_c00262{letter-spacing:0.191087pt;}
.ws0_c00262{word-spacing:-13.344030pt;}
.ws1_c00262{word-spacing:0.000000pt;}
._2_c00262{margin-left:-1.097138pt;}
._3_c00262{width:1.020313pt;}
._1_c00262{width:810.561749pt;}
._0_c00262{width:1196.429824pt;}
.fs1_c00262{font-size:48.000107pt;}
.fs0_c00262{font-size:58.880000pt;}
.y0_c00262{bottom:0.000000pt;}
.y7_c00262{bottom:4.640000pt;}
.y18_c00262{bottom:15.680000pt;}
.y1b_c00262{bottom:15.681333pt;}
.yf_c00262{bottom:21.761467pt;}
.y21_c00262{bottom:22.239600pt;}
.y1e_c00262{bottom:22.240000pt;}
.yb_c00262{bottom:22.398667pt;}
.y16_c00262{bottom:22.401333pt;}
.y5_c00262{bottom:22.560000pt;}
.y13_c00262{bottom:22.561333pt;}
.y11_c00262{bottom:28.640000pt;}
.y10_c00262{bottom:28.641333pt;}
.y3_c00262{bottom:32.826667pt;}
.ye_c00262{bottom:35.521333pt;}
.y1_c00262{bottom:50.272400pt;}
.y22_c00262{bottom:83.072400pt;}
.y20_c00262{bottom:97.632800pt;}
.y1f_c00262{bottom:151.226667pt;}
.y1d_c00262{bottom:204.826667pt;}
.y1c_c00262{bottom:258.466667pt;}
.y1a_c00262{bottom:299.106667pt;}
.y19_c00262{bottom:339.748000pt;}
.y17_c00262{bottom:380.548000pt;}
.y15_c00262{bottom:421.186667pt;}
.y14_c00262{bottom:475.426667pt;}
.y12_c00262{bottom:529.852000pt;}
.y6_c00262{bottom:584.093333pt;}
.yd_c00262{bottom:650.652000pt;}
.yc_c00262{bottom:717.213333pt;}
.ya_c00262{bottom:771.654667pt;}
.y9_c00262{bottom:825.894667pt;}
.y8_c00262{bottom:880.294667pt;}
.y4_c00262{bottom:934.534667pt;}
.y2_c00262{bottom:988.934667pt;}
.h6_c00262{height:34.968828pt;}
.hd_c00262{height:40.000000pt;}
.h4_c00262{height:42.866250pt;}
.h2_c00262{height:42.895000pt;}
.h10_c00262{height:52.959867pt;}
.hf_c00262{height:52.960400pt;}
.he_c00262{height:52.992667pt;}
.h8_c00262{height:53.600000pt;}
.h5_c00262{height:53.758800pt;}
.h9_c00262{height:53.759867pt;}
.ha_c00262{height:53.791200pt;}
.hc_c00262{height:53.792667pt;}
.hb_c00262{height:65.920267pt;}
.h3_c00262{height:76.191733pt;}
.h7_c00262{height:404.185333pt;}
.h0_c00262{height:1122.559867pt;}
.h1_c00262{height:1122.666667pt;}
.w3_c00262{width:89.119733pt;}
.w4_c00262{width:133.152667pt;}
.w6_c00262{width:223.068000pt;}
.w5_c00262{width:407.748000pt;}
.w7_c00262{width:408.066667pt;}
.w2_c00262{width:631.452000pt;}
.w0_c00262{width:793.759733pt;}
.w1_c00262{width:794.000000pt;}
.x0_c00262{left:0.000000pt;}
.x4_c00262{left:4.320000pt;}
.x1_c00262{left:132.352667pt;}
.x2_c00262{left:137.306667pt;}
.x8_c00262{left:180.201333pt;}
.x3_c00262{left:181.481333pt;}
.x7_c00262{left:203.706667pt;}
.x5_c00262{left:227.226667pt;}
.x6_c00262{left:361.026667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b4afbce4f73be568c8a71d8a.woff2')format("woff");}.ff1_c00263{font-family:ff1_c00263;line-height:0.666504;font-style:normal;font-weight:normal;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_419e6644c6bd7cb62d953fc1.woff2')format("woff");}.ff2_c00263{font-family:ff2_c00263;line-height:0.938965;font-style:normal;font-weight:normal;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_cb325950b7b3fc4424dbd819.woff2')format("woff");}.ff3_c00263{font-family:ff3_c00263;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00263;src:url('chunks/assets/font_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff4_c00263{font-family:ff4_c00263;line-height:0.666504;font-style: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;}
.ls1_c00263{letter-spacing:0.000000px;}
.ls0_c00263{letter-spacing:0.214973px;}
.sc__c00263{text-shadow:none;}
.sc0_c00263{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00263{-webkit-text-stroke:0px transparent;}
.sc0_c00263{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00263{word-spacing:-15.012033px;}
.ws1_c00263{word-spacing:0.000000px;}
._2_c00263{margin-left:-1.234280px;}
._3_c00263{width:1.077393px;}
._1_c00263{width:911.881968px;}
._0_c00263{width:1345.983552px;}
.fc0_c00263{color:rgb(0,0,0);}
.fs1_c00263{font-size:54.000120px;}
.fs0_c00263{font-size:66.240000px;}
.y0_c00263{bottom:0.000000px;}
.y7_c00263{bottom:12.960000px;}
.y18_c00263{bottom:17.640000px;}
.y1b_c00263{bottom:17.641500px;}
.yf_c00263{bottom:24.481650px;}
.y21_c00263{bottom:25.019550px;}
.y1e_c00263{bottom:25.020000px;}
.yb_c00263{bottom:25.198500px;}
.y16_c00263{bottom:25.201500px;}
.y5_c00263{bottom:25.380000px;}
.y13_c00263{bottom:25.381500px;}
.y11_c00263{bottom:32.220000px;}
.y10_c00263{bottom:32.221500px;}
.y3_c00263{bottom:36.930000px;}
.ye_c00263{bottom:39.961500px;}
.y1_c00263{bottom:56.556450px;}
.y22_c00263{bottom:93.456450px;}
.y20_c00263{bottom:109.836900px;}
.y1f_c00263{bottom:170.130000px;}
.y1d_c00263{bottom:230.430000px;}
.y1c_c00263{bottom:290.775000px;}
.y1a_c00263{bottom:336.495000px;}
.y19_c00263{bottom:382.216500px;}
.y17_c00263{bottom:428.116500px;}
.y15_c00263{bottom:473.835000px;}
.y14_c00263{bottom:534.855000px;}
.y12_c00263{bottom:596.083500px;}
.y6_c00263{bottom:657.105000px;}
.yd_c00263{bottom:731.983500px;}
.yc_c00263{bottom:806.865000px;}
.ya_c00263{bottom:868.111500px;}
.y9_c00263{bottom:929.131500px;}
.y8_c00263{bottom:990.331500px;}
.y4_c00263{bottom:1051.351500px;}
.y2_c00263{bottom:1112.551500px;}
.h6_c00263{height:39.339931px;}
.hd_c00263{height:45.000000px;}
.h4_c00263{height:48.224531px;}
.h2_c00263{height:48.256875px;}
.h10_c00263{height:59.579850px;}
.hf_c00263{height:59.580450px;}
.he_c00263{height:59.616750px;}
.h8_c00263{height:60.300000px;}
.h5_c00263{height:60.478650px;}
.h9_c00263{height:60.479850px;}
.ha_c00263{height:60.515100px;}
.hc_c00263{height:60.516750px;}
.hb_c00263{height:74.160300px;}
.h3_c00263{height:85.715700px;}
.h7_c00263{height:454.708500px;}
.h0_c00263{height:1262.879850px;}
.h1_c00263{height:1263.000000px;}
.w3_c00263{width:100.259700px;}
.w4_c00263{width:149.796750px;}
.w6_c00263{width:250.951500px;}
.w5_c00263{width:458.716500px;}
.w7_c00263{width:459.075000px;}
.w2_c00263{width:710.383500px;}
.w0_c00263{width:892.979700px;}
.w1_c00263{width:893.250000px;}
.x0_c00263{left:0.000000px;}
.x4_c00263{left:4.860000px;}
.x1_c00263{left:148.896750px;}
.x2_c00263{left:154.470000px;}
.x8_c00263{left:202.726500px;}
.x3_c00263{left:204.166500px;}
.x7_c00263{left:229.170000px;}
.x5_c00263{left:255.630000px;}
.x6_c00263{left:406.155000px;}
@media print{
.v0_c00263{vertical-align:0.000000pt;}
.ls1_c00263{letter-spacing:0.000000pt;}
.ls0_c00263{letter-spacing:0.191087pt;}
.ws0_c00263{word-spacing:-13.344030pt;}
.ws1_c00263{word-spacing:0.000000pt;}
._2_c00263{margin-left:-1.097138pt;}
._3_c00263{width:0.957682pt;}
._1_c00263{width:810.561749pt;}
._0_c00263{width:1196.429824pt;}
.fs1_c00263{font-size:48.000107pt;}
.fs0_c00263{font-size:58.880000pt;}
.y0_c00263{bottom:0.000000pt;}
.y7_c00263{bottom:11.520000pt;}
.y18_c00263{bottom:15.680000pt;}
.y1b_c00263{bottom:15.681333pt;}
.yf_c00263{bottom:21.761467pt;}
.y21_c00263{bottom:22.239600pt;}
.y1e_c00263{bottom:22.240000pt;}
.yb_c00263{bottom:22.398667pt;}
.y16_c00263{bottom:22.401333pt;}
.y5_c00263{bottom:22.560000pt;}
.y13_c00263{bottom:22.561333pt;}
.y11_c00263{bottom:28.640000pt;}
.y10_c00263{bottom:28.641333pt;}
.y3_c00263{bottom:32.826667pt;}
.ye_c00263{bottom:35.521333pt;}
.y1_c00263{bottom:50.272400pt;}
.y22_c00263{bottom:83.072400pt;}
.y20_c00263{bottom:97.632800pt;}
.y1f_c00263{bottom:151.226667pt;}
.y1d_c00263{bottom:204.826667pt;}
.y1c_c00263{bottom:258.466667pt;}
.y1a_c00263{bottom:299.106667pt;}
.y19_c00263{bottom:339.748000pt;}
.y17_c00263{bottom:380.548000pt;}
.y15_c00263{bottom:421.186667pt;}
.y14_c00263{bottom:475.426667pt;}
.y12_c00263{bottom:529.852000pt;}
.y6_c00263{bottom:584.093333pt;}
.yd_c00263{bottom:650.652000pt;}
.yc_c00263{bottom:717.213333pt;}
.ya_c00263{bottom:771.654667pt;}
.y9_c00263{bottom:825.894667pt;}
.y8_c00263{bottom:880.294667pt;}
.y4_c00263{bottom:934.534667pt;}
.y2_c00263{bottom:988.934667pt;}
.h6_c00263{height:34.968828pt;}
.hd_c00263{height:40.000000pt;}
.h4_c00263{height:42.866250pt;}
.h2_c00263{height:42.895000pt;}
.h10_c00263{height:52.959867pt;}
.hf_c00263{height:52.960400pt;}
.he_c00263{height:52.992667pt;}
.h8_c00263{height:53.600000pt;}
.h5_c00263{height:53.758800pt;}
.h9_c00263{height:53.759867pt;}
.ha_c00263{height:53.791200pt;}
.hc_c00263{height:53.792667pt;}
.hb_c00263{height:65.920267pt;}
.h3_c00263{height:76.191733pt;}
.h7_c00263{height:404.185333pt;}
.h0_c00263{height:1122.559867pt;}
.h1_c00263{height:1122.666667pt;}
.w3_c00263{width:89.119733pt;}
.w4_c00263{width:133.152667pt;}
.w6_c00263{width:223.068000pt;}
.w5_c00263{width:407.748000pt;}
.w7_c00263{width:408.066667pt;}
.w2_c00263{width:631.452000pt;}
.w0_c00263{width:793.759733pt;}
.w1_c00263{width:794.000000pt;}
.x0_c00263{left:0.000000pt;}
.x4_c00263{left:4.320000pt;}
.x1_c00263{left:132.352667pt;}
.x2_c00263{left:137.306667pt;}
.x8_c00263{left:180.201333pt;}
.x3_c00263{left:181.481333pt;}
.x7_c00263{left:203.706667pt;}
.x5_c00263{left:227.226667pt;}
.x6_c00263{left:361.026667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b4afbce4f73be568c8a71d8a.woff2')format("woff");}.ff1_c00264{font-family:ff1_c00264;line-height:0.666504;font-style:normal;font-weight:normal;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_df8fb875242609b7f960cf0d.woff2')format("woff");}.ff2_c00264{font-family:ff2_c00264;line-height:0.938965;font-style:normal;font-weight:normal;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_cb325950b7b3fc4424dbd819.woff2')format("woff");}.ff3_c00264{font-family:ff3_c00264;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00264;src:url('chunks/assets/font_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff4_c00264{font-family:ff4_c00264;line-height:0.666504;font-style: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;}
.ls1_c00264{letter-spacing:0.000000px;}
.ls0_c00264{letter-spacing:0.214973px;}
.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:-15.012033px;}
.ws1_c00264{word-spacing:0.000000px;}
._2_c00264{margin-left:-1.234280px;}
._3_c00264{width:1.077393px;}
._1_c00264{width:911.881968px;}
._0_c00264{width:1345.983552px;}
.fc0_c00264{color:rgb(0,0,0);}
.fs1_c00264{font-size:54.000120px;}
.fs0_c00264{font-size:66.240000px;}
.y0_c00264{bottom:0.000000px;}
.y18_c00264{bottom:17.640000px;}
.y1b_c00264{bottom:17.641500px;}
.yf_c00264{bottom:24.481650px;}
.y21_c00264{bottom:25.019550px;}
.y1e_c00264{bottom:25.020000px;}
.yb_c00264{bottom:25.198500px;}
.y16_c00264{bottom:25.201500px;}
.y5_c00264{bottom:25.380000px;}
.y13_c00264{bottom:25.381500px;}
.y11_c00264{bottom:32.220000px;}
.y10_c00264{bottom:32.221500px;}
.y3_c00264{bottom:36.930000px;}
.ye_c00264{bottom:39.961500px;}
.y7_c00264{bottom:42.840000px;}
.y1_c00264{bottom:56.556450px;}
.y22_c00264{bottom:93.456450px;}
.y20_c00264{bottom:109.836900px;}
.y1f_c00264{bottom:170.130000px;}
.y1d_c00264{bottom:230.430000px;}
.y1c_c00264{bottom:290.775000px;}
.y1a_c00264{bottom:336.495000px;}
.y19_c00264{bottom:382.216500px;}
.y17_c00264{bottom:428.116500px;}
.y15_c00264{bottom:473.835000px;}
.y14_c00264{bottom:534.855000px;}
.y12_c00264{bottom:596.083500px;}
.y6_c00264{bottom:657.105000px;}
.yd_c00264{bottom:731.983500px;}
.yc_c00264{bottom:806.865000px;}
.ya_c00264{bottom:868.111500px;}
.y9_c00264{bottom:929.131500px;}
.y8_c00264{bottom:990.331500px;}
.y4_c00264{bottom:1051.351500px;}
.y2_c00264{bottom:1112.551500px;}
.h6_c00264{height:39.339931px;}
.hd_c00264{height:45.000000px;}
.h4_c00264{height:48.224531px;}
.h2_c00264{height:48.256875px;}
.h10_c00264{height:59.579850px;}
.hf_c00264{height:59.580450px;}
.he_c00264{height:59.616750px;}
.h8_c00264{height:60.300000px;}
.h5_c00264{height:60.478650px;}
.h9_c00264{height:60.479850px;}
.ha_c00264{height:60.515100px;}
.hc_c00264{height:60.516750px;}
.hb_c00264{height:74.160300px;}
.h3_c00264{height:85.715700px;}
.h7_c00264{height:454.708500px;}
.h0_c00264{height:1262.879850px;}
.h1_c00264{height:1263.000000px;}
.w3_c00264{width:100.259700px;}
.w4_c00264{width:149.796750px;}
.w6_c00264{width:250.951500px;}
.w5_c00264{width:458.716500px;}
.w7_c00264{width:459.075000px;}
.w2_c00264{width:710.383500px;}
.w0_c00264{width:892.979700px;}
.w1_c00264{width:893.250000px;}
.x0_c00264{left:0.000000px;}
.x4_c00264{left:4.860000px;}
.x1_c00264{left:148.896750px;}
.x2_c00264{left:154.470000px;}
.x8_c00264{left:202.726500px;}
.x3_c00264{left:204.166500px;}
.x5_c00264{left:255.630000px;}
.x6_c00264{left:406.155000px;}
.x7_c00264{left:441.795000px;}
@media print{
.v0_c00264{vertical-align:0.000000pt;}
.ls1_c00264{letter-spacing:0.000000pt;}
.ls0_c00264{letter-spacing:0.191087pt;}
.ws0_c00264{word-spacing:-13.344030pt;}
.ws1_c00264{word-spacing:0.000000pt;}
._2_c00264{margin-left:-1.097138pt;}
._3_c00264{width:0.957682pt;}
._1_c00264{width:810.561749pt;}
._0_c00264{width:1196.429824pt;}
.fs1_c00264{font-size:48.000107pt;}
.fs0_c00264{font-size:58.880000pt;}
.y0_c00264{bottom:0.000000pt;}
.y18_c00264{bottom:15.680000pt;}
.y1b_c00264{bottom:15.681333pt;}
.yf_c00264{bottom:21.761467pt;}
.y21_c00264{bottom:22.239600pt;}
.y1e_c00264{bottom:22.240000pt;}
.yb_c00264{bottom:22.398667pt;}
.y16_c00264{bottom:22.401333pt;}
.y5_c00264{bottom:22.560000pt;}
.y13_c00264{bottom:22.561333pt;}
.y11_c00264{bottom:28.640000pt;}
.y10_c00264{bottom:28.641333pt;}
.y3_c00264{bottom:32.826667pt;}
.ye_c00264{bottom:35.521333pt;}
.y7_c00264{bottom:38.080000pt;}
.y1_c00264{bottom:50.272400pt;}
.y22_c00264{bottom:83.072400pt;}
.y20_c00264{bottom:97.632800pt;}
.y1f_c00264{bottom:151.226667pt;}
.y1d_c00264{bottom:204.826667pt;}
.y1c_c00264{bottom:258.466667pt;}
.y1a_c00264{bottom:299.106667pt;}
.y19_c00264{bottom:339.748000pt;}
.y17_c00264{bottom:380.548000pt;}
.y15_c00264{bottom:421.186667pt;}
.y14_c00264{bottom:475.426667pt;}
.y12_c00264{bottom:529.852000pt;}
.y6_c00264{bottom:584.093333pt;}
.yd_c00264{bottom:650.652000pt;}
.yc_c00264{bottom:717.213333pt;}
.ya_c00264{bottom:771.654667pt;}
.y9_c00264{bottom:825.894667pt;}
.y8_c00264{bottom:880.294667pt;}
.y4_c00264{bottom:934.534667pt;}
.y2_c00264{bottom:988.934667pt;}
.h6_c00264{height:34.968828pt;}
.hd_c00264{height:40.000000pt;}
.h4_c00264{height:42.866250pt;}
.h2_c00264{height:42.895000pt;}
.h10_c00264{height:52.959867pt;}
.hf_c00264{height:52.960400pt;}
.he_c00264{height:52.992667pt;}
.h8_c00264{height:53.600000pt;}
.h5_c00264{height:53.758800pt;}
.h9_c00264{height:53.759867pt;}
.ha_c00264{height:53.791200pt;}
.hc_c00264{height:53.792667pt;}
.hb_c00264{height:65.920267pt;}
.h3_c00264{height:76.191733pt;}
.h7_c00264{height:404.185333pt;}
.h0_c00264{height:1122.559867pt;}
.h1_c00264{height:1122.666667pt;}
.w3_c00264{width:89.119733pt;}
.w4_c00264{width:133.152667pt;}
.w6_c00264{width:223.068000pt;}
.w5_c00264{width:407.748000pt;}
.w7_c00264{width:408.066667pt;}
.w2_c00264{width:631.452000pt;}
.w0_c00264{width:793.759733pt;}
.w1_c00264{width:794.000000pt;}
.x0_c00264{left:0.000000pt;}
.x4_c00264{left:4.320000pt;}
.x1_c00264{left:132.352667pt;}
.x2_c00264{left:137.306667pt;}
.x8_c00264{left:180.201333pt;}
.x3_c00264{left:181.481333pt;}
.x5_c00264{left:227.226667pt;}
.x6_c00264{left:361.026667pt;}
.x7_c00264{left:392.706667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b4afbce4f73be568c8a71d8a.woff2')format("woff");}.ff1_c00265{font-family:ff1_c00265;line-height:0.666504;font-style:normal;font-weight:normal;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_65ca7ba17a0ada267378783b.woff2')format("woff");}.ff2_c00265{font-family:ff2_c00265;line-height:0.938965;font-style:normal;font-weight:normal;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_cb325950b7b3fc4424dbd819.woff2')format("woff");}.ff3_c00265{font-family:ff3_c00265;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00265;src:url('chunks/assets/font_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff4_c00265{font-family:ff4_c00265;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00265{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00265{vertical-align:0.000000px;}
.ls1_c00265{letter-spacing:0.000000px;}
.ls0_c00265{letter-spacing:0.214973px;}
.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:-15.012033px;}
.ws1_c00265{word-spacing:0.000000px;}
._2_c00265{margin-left:-1.234280px;}
._3_c00265{width:1.110640px;}
._1_c00265{width:911.881968px;}
._0_c00265{width:1345.983552px;}
.fc0_c00265{color:rgb(0,0,0);}
.fs1_c00265{font-size:54.000120px;}
.fs0_c00265{font-size:66.240000px;}
.y0_c00265{bottom:0.000000px;}
.y7_c00265{bottom:14.580000px;}
.y18_c00265{bottom:17.640000px;}
.y1b_c00265{bottom:17.641500px;}
.yf_c00265{bottom:24.481650px;}
.y21_c00265{bottom:25.019550px;}
.y1e_c00265{bottom:25.020000px;}
.yb_c00265{bottom:25.198500px;}
.y16_c00265{bottom:25.201500px;}
.y5_c00265{bottom:25.380000px;}
.y13_c00265{bottom:25.381500px;}
.y11_c00265{bottom:32.220000px;}
.y10_c00265{bottom:32.221500px;}
.y3_c00265{bottom:36.930000px;}
.ye_c00265{bottom:39.961500px;}
.y1_c00265{bottom:56.556450px;}
.y22_c00265{bottom:93.456450px;}
.y20_c00265{bottom:109.836900px;}
.y1f_c00265{bottom:170.130000px;}
.y1d_c00265{bottom:230.430000px;}
.y1c_c00265{bottom:290.775000px;}
.y1a_c00265{bottom:336.495000px;}
.y19_c00265{bottom:382.216500px;}
.y17_c00265{bottom:428.116500px;}
.y15_c00265{bottom:473.835000px;}
.y14_c00265{bottom:534.855000px;}
.y12_c00265{bottom:596.083500px;}
.y6_c00265{bottom:657.105000px;}
.yd_c00265{bottom:731.983500px;}
.yc_c00265{bottom:806.865000px;}
.ya_c00265{bottom:868.111500px;}
.y9_c00265{bottom:929.131500px;}
.y8_c00265{bottom:990.331500px;}
.y4_c00265{bottom:1051.351500px;}
.y2_c00265{bottom:1112.551500px;}
.h6_c00265{height:39.339931px;}
.hd_c00265{height:45.000000px;}
.h4_c00265{height:48.224531px;}
.h2_c00265{height:48.256875px;}
.h10_c00265{height:59.579850px;}
.hf_c00265{height:59.580450px;}
.he_c00265{height:59.616750px;}
.h8_c00265{height:60.300000px;}
.h5_c00265{height:60.478650px;}
.h9_c00265{height:60.479850px;}
.ha_c00265{height:60.515100px;}
.hc_c00265{height:60.516750px;}
.hb_c00265{height:74.160300px;}
.h3_c00265{height:85.715700px;}
.h7_c00265{height:454.708500px;}
.h0_c00265{height:1262.879850px;}
.h1_c00265{height:1263.000000px;}
.w3_c00265{width:100.259700px;}
.w4_c00265{width:149.796750px;}
.w6_c00265{width:250.951500px;}
.w5_c00265{width:463.036500px;}
.w7_c00265{width:463.395000px;}
.w2_c00265{width:714.705000px;}
.w0_c00265{width:892.979700px;}
.w1_c00265{width:893.250000px;}
.x0_c00265{left:0.000000px;}
.x4_c00265{left:4.860000px;}
.x1_c00265{left:148.896750px;}
.x2_c00265{left:154.470000px;}
.x8_c00265{left:204.886500px;}
.x3_c00265{left:206.506500px;}
.x5_c00265{left:255.630000px;}
.x6_c00265{left:406.155000px;}
.x7_c00265{left:457.995000px;}
@media print{
.v0_c00265{vertical-align:0.000000pt;}
.ls1_c00265{letter-spacing:0.000000pt;}
.ls0_c00265{letter-spacing:0.191087pt;}
.ws0_c00265{word-spacing:-13.344030pt;}
.ws1_c00265{word-spacing:0.000000pt;}
._2_c00265{margin-left:-1.097138pt;}
._3_c00265{width:0.987236pt;}
._1_c00265{width:810.561749pt;}
._0_c00265{width:1196.429824pt;}
.fs1_c00265{font-size:48.000107pt;}
.fs0_c00265{font-size:58.880000pt;}
.y0_c00265{bottom:0.000000pt;}
.y7_c00265{bottom:12.960000pt;}
.y18_c00265{bottom:15.680000pt;}
.y1b_c00265{bottom:15.681333pt;}
.yf_c00265{bottom:21.761467pt;}
.y21_c00265{bottom:22.239600pt;}
.y1e_c00265{bottom:22.240000pt;}
.yb_c00265{bottom:22.398667pt;}
.y16_c00265{bottom:22.401333pt;}
.y5_c00265{bottom:22.560000pt;}
.y13_c00265{bottom:22.561333pt;}
.y11_c00265{bottom:28.640000pt;}
.y10_c00265{bottom:28.641333pt;}
.y3_c00265{bottom:32.826667pt;}
.ye_c00265{bottom:35.521333pt;}
.y1_c00265{bottom:50.272400pt;}
.y22_c00265{bottom:83.072400pt;}
.y20_c00265{bottom:97.632800pt;}
.y1f_c00265{bottom:151.226667pt;}
.y1d_c00265{bottom:204.826667pt;}
.y1c_c00265{bottom:258.466667pt;}
.y1a_c00265{bottom:299.106667pt;}
.y19_c00265{bottom:339.748000pt;}
.y17_c00265{bottom:380.548000pt;}
.y15_c00265{bottom:421.186667pt;}
.y14_c00265{bottom:475.426667pt;}
.y12_c00265{bottom:529.852000pt;}
.y6_c00265{bottom:584.093333pt;}
.yd_c00265{bottom:650.652000pt;}
.yc_c00265{bottom:717.213333pt;}
.ya_c00265{bottom:771.654667pt;}
.y9_c00265{bottom:825.894667pt;}
.y8_c00265{bottom:880.294667pt;}
.y4_c00265{bottom:934.534667pt;}
.y2_c00265{bottom:988.934667pt;}
.h6_c00265{height:34.968828pt;}
.hd_c00265{height:40.000000pt;}
.h4_c00265{height:42.866250pt;}
.h2_c00265{height:42.895000pt;}
.h10_c00265{height:52.959867pt;}
.hf_c00265{height:52.960400pt;}
.he_c00265{height:52.992667pt;}
.h8_c00265{height:53.600000pt;}
.h5_c00265{height:53.758800pt;}
.h9_c00265{height:53.759867pt;}
.ha_c00265{height:53.791200pt;}
.hc_c00265{height:53.792667pt;}
.hb_c00265{height:65.920267pt;}
.h3_c00265{height:76.191733pt;}
.h7_c00265{height:404.185333pt;}
.h0_c00265{height:1122.559867pt;}
.h1_c00265{height:1122.666667pt;}
.w3_c00265{width:89.119733pt;}
.w4_c00265{width:133.152667pt;}
.w6_c00265{width:223.068000pt;}
.w5_c00265{width:411.588000pt;}
.w7_c00265{width:411.906667pt;}
.w2_c00265{width:635.293333pt;}
.w0_c00265{width:793.759733pt;}
.w1_c00265{width:794.000000pt;}
.x0_c00265{left:0.000000pt;}
.x4_c00265{left:4.320000pt;}
.x1_c00265{left:132.352667pt;}
.x2_c00265{left:137.306667pt;}
.x8_c00265{left:182.121333pt;}
.x3_c00265{left:183.561333pt;}
.x5_c00265{left:227.226667pt;}
.x6_c00265{left:361.026667pt;}
.x7_c00265{left:407.106667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b4afbce4f73be568c8a71d8a.woff2')format("woff");}.ff1_c00266{font-family:ff1_c00266;line-height:0.666504;font-style:normal;font-weight:normal;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_d59b0da33cc3cea7a3aab6f4.woff2')format("woff");}.ff2_c00266{font-family:ff2_c00266;line-height:0.938965;font-style:normal;font-weight:normal;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_cb325950b7b3fc4424dbd819.woff2')format("woff");}.ff3_c00266{font-family:ff3_c00266;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00266;src:url('chunks/assets/font_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff4_c00266{font-family:ff4_c00266;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00266{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00266{vertical-align:0.000000px;}
.ls1_c00266{letter-spacing:0.000000px;}
.ls0_c00266{letter-spacing:0.214973px;}
.sc__c00266{text-shadow:none;}
.sc0_c00266{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00266{-webkit-text-stroke:0px transparent;}
.sc0_c00266{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00266{word-spacing:-15.012033px;}
.ws1_c00266{word-spacing:0.000000px;}
._2_c00266{margin-left:-1.234280px;}
._3_c00266{width:1.110640px;}
._1_c00266{width:911.881968px;}
._0_c00266{width:1345.983552px;}
.fc0_c00266{color:rgb(0,0,0);}
.fs1_c00266{font-size:54.000120px;}
.fs0_c00266{font-size:66.240000px;}
.y0_c00266{bottom:0.000000px;}
.y8_c00266{bottom:6.840000px;}
.y19_c00266{bottom:17.640000px;}
.y1c_c00266{bottom:17.641500px;}
.y10_c00266{bottom:24.481650px;}
.y22_c00266{bottom:25.019550px;}
.y1f_c00266{bottom:25.020000px;}
.yc_c00266{bottom:25.198500px;}
.y17_c00266{bottom:25.201500px;}
.y5_c00266{bottom:25.380000px;}
.y14_c00266{bottom:25.381500px;}
.y12_c00266{bottom:32.220000px;}
.y11_c00266{bottom:32.221500px;}
.y3_c00266{bottom:36.930000px;}
.yf_c00266{bottom:39.961500px;}
.y1_c00266{bottom:56.556450px;}
.y23_c00266{bottom:93.456450px;}
.y21_c00266{bottom:109.836900px;}
.y20_c00266{bottom:170.130000px;}
.y1e_c00266{bottom:230.430000px;}
.y1d_c00266{bottom:290.775000px;}
.y1b_c00266{bottom:336.495000px;}
.y1a_c00266{bottom:382.216500px;}
.y18_c00266{bottom:428.116500px;}
.y7_c00266{bottom:435.465000px;}
.y16_c00266{bottom:473.835000px;}
.y15_c00266{bottom:534.855000px;}
.y13_c00266{bottom:596.083500px;}
.y6_c00266{bottom:657.105000px;}
.ye_c00266{bottom:731.983500px;}
.yd_c00266{bottom:806.865000px;}
.yb_c00266{bottom:868.111500px;}
.ya_c00266{bottom:929.131500px;}
.y9_c00266{bottom:990.331500px;}
.y4_c00266{bottom:1051.351500px;}
.y2_c00266{bottom:1112.551500px;}
.h6_c00266{height:39.339931px;}
.hd_c00266{height:45.000000px;}
.h4_c00266{height:48.224531px;}
.h2_c00266{height:48.256875px;}
.h10_c00266{height:59.579850px;}
.hf_c00266{height:59.580450px;}
.he_c00266{height:59.616750px;}
.h8_c00266{height:60.300000px;}
.h5_c00266{height:60.478650px;}
.h9_c00266{height:60.479850px;}
.ha_c00266{height:60.515100px;}
.hc_c00266{height:60.516750px;}
.hb_c00266{height:74.160300px;}
.h3_c00266{height:85.715700px;}
.h7_c00266{height:454.708500px;}
.h0_c00266{height:1262.879850px;}
.h1_c00266{height:1263.000000px;}
.w3_c00266{width:100.259700px;}
.w4_c00266{width:149.796750px;}
.w6_c00266{width:250.951500px;}
.w5_c00266{width:463.036500px;}
.w7_c00266{width:463.395000px;}
.w2_c00266{width:714.705000px;}
.w0_c00266{width:892.979700px;}
.w1_c00266{width:893.250000px;}
.x0_c00266{left:0.000000px;}
.x4_c00266{left:4.860000px;}
.x1_c00266{left:148.896750px;}
.x2_c00266{left:154.470000px;}
.x9_c00266{left:204.886500px;}
.x3_c00266{left:206.506500px;}
.x7_c00266{left:231.510000px;}
.x5_c00266{left:255.630000px;}
.x6_c00266{left:406.155000px;}
.x8_c00266{left:457.995000px;}
@media print{
.v0_c00266{vertical-align:0.000000pt;}
.ls1_c00266{letter-spacing:0.000000pt;}
.ls0_c00266{letter-spacing:0.191087pt;}
.ws0_c00266{word-spacing:-13.344030pt;}
.ws1_c00266{word-spacing:0.000000pt;}
._2_c00266{margin-left:-1.097138pt;}
._3_c00266{width:0.987236pt;}
._1_c00266{width:810.561749pt;}
._0_c00266{width:1196.429824pt;}
.fs1_c00266{font-size:48.000107pt;}
.fs0_c00266{font-size:58.880000pt;}
.y0_c00266{bottom:0.000000pt;}
.y8_c00266{bottom:6.080000pt;}
.y19_c00266{bottom:15.680000pt;}
.y1c_c00266{bottom:15.681333pt;}
.y10_c00266{bottom:21.761467pt;}
.y22_c00266{bottom:22.239600pt;}
.y1f_c00266{bottom:22.240000pt;}
.yc_c00266{bottom:22.398667pt;}
.y17_c00266{bottom:22.401333pt;}
.y5_c00266{bottom:22.560000pt;}
.y14_c00266{bottom:22.561333pt;}
.y12_c00266{bottom:28.640000pt;}
.y11_c00266{bottom:28.641333pt;}
.y3_c00266{bottom:32.826667pt;}
.yf_c00266{bottom:35.521333pt;}
.y1_c00266{bottom:50.272400pt;}
.y23_c00266{bottom:83.072400pt;}
.y21_c00266{bottom:97.632800pt;}
.y20_c00266{bottom:151.226667pt;}
.y1e_c00266{bottom:204.826667pt;}
.y1d_c00266{bottom:258.466667pt;}
.y1b_c00266{bottom:299.106667pt;}
.y1a_c00266{bottom:339.748000pt;}
.y18_c00266{bottom:380.548000pt;}
.y7_c00266{bottom:387.080000pt;}
.y16_c00266{bottom:421.186667pt;}
.y15_c00266{bottom:475.426667pt;}
.y13_c00266{bottom:529.852000pt;}
.y6_c00266{bottom:584.093333pt;}
.ye_c00266{bottom:650.652000pt;}
.yd_c00266{bottom:717.213333pt;}
.yb_c00266{bottom:771.654667pt;}
.ya_c00266{bottom:825.894667pt;}
.y9_c00266{bottom:880.294667pt;}
.y4_c00266{bottom:934.534667pt;}
.y2_c00266{bottom:988.934667pt;}
.h6_c00266{height:34.968828pt;}
.hd_c00266{height:40.000000pt;}
.h4_c00266{height:42.866250pt;}
.h2_c00266{height:42.895000pt;}
.h10_c00266{height:52.959867pt;}
.hf_c00266{height:52.960400pt;}
.he_c00266{height:52.992667pt;}
.h8_c00266{height:53.600000pt;}
.h5_c00266{height:53.758800pt;}
.h9_c00266{height:53.759867pt;}
.ha_c00266{height:53.791200pt;}
.hc_c00266{height:53.792667pt;}
.hb_c00266{height:65.920267pt;}
.h3_c00266{height:76.191733pt;}
.h7_c00266{height:404.185333pt;}
.h0_c00266{height:1122.559867pt;}
.h1_c00266{height:1122.666667pt;}
.w3_c00266{width:89.119733pt;}
.w4_c00266{width:133.152667pt;}
.w6_c00266{width:223.068000pt;}
.w5_c00266{width:411.588000pt;}
.w7_c00266{width:411.906667pt;}
.w2_c00266{width:635.293333pt;}
.w0_c00266{width:793.759733pt;}
.w1_c00266{width:794.000000pt;}
.x0_c00266{left:0.000000pt;}
.x4_c00266{left:4.320000pt;}
.x1_c00266{left:132.352667pt;}
.x2_c00266{left:137.306667pt;}
.x9_c00266{left:182.121333pt;}
.x3_c00266{left:183.561333pt;}
.x7_c00266{left:205.786667pt;}
.x5_c00266{left:227.226667pt;}
.x6_c00266{left:361.026667pt;}
.x8_c00266{left:407.106667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b4afbce4f73be568c8a71d8a.woff2')format("woff");}.ff1_c00267{font-family:ff1_c00267;line-height:0.666504;font-style:normal;font-weight:normal;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_3522f8ff99e6a24a178ec3cb.woff2')format("woff");}.ff2_c00267{font-family:ff2_c00267;line-height:0.938965;font-style:normal;font-weight:normal;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_cb325950b7b3fc4424dbd819.woff2')format("woff");}.ff3_c00267{font-family:ff3_c00267;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00267;src:url('chunks/assets/font_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff4_c00267{font-family:ff4_c00267;line-height:0.666504;font-style: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;}
.ls1_c00267{letter-spacing:0.000000px;}
.ls0_c00267{letter-spacing:0.214973px;}
.sc__c00267{text-shadow:none;}
.sc0_c00267{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00267{-webkit-text-stroke:0px transparent;}
.sc0_c00267{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00267{word-spacing:-15.012033px;}
.ws1_c00267{word-spacing:0.000000px;}
._2_c00267{margin-left:-1.234280px;}
._3_c00267{width:1.110640px;}
._1_c00267{width:911.881968px;}
._0_c00267{width:1345.983552px;}
.fc0_c00267{color:rgb(0,0,0);}
.fs1_c00267{font-size:54.000120px;}
.fs0_c00267{font-size:66.240000px;}
.y0_c00267{bottom:0.000000px;}
.y7_c00267{bottom:14.580000px;}
.y18_c00267{bottom:17.640000px;}
.y1b_c00267{bottom:17.641500px;}
.yf_c00267{bottom:24.481650px;}
.y21_c00267{bottom:25.019550px;}
.y1e_c00267{bottom:25.020000px;}
.yb_c00267{bottom:25.198500px;}
.y16_c00267{bottom:25.201500px;}
.y5_c00267{bottom:25.380000px;}
.y13_c00267{bottom:25.381500px;}
.y11_c00267{bottom:32.220000px;}
.y10_c00267{bottom:32.221500px;}
.y3_c00267{bottom:36.930000px;}
.ye_c00267{bottom:39.961500px;}
.y1_c00267{bottom:56.556450px;}
.y22_c00267{bottom:93.456450px;}
.y20_c00267{bottom:109.836900px;}
.y1f_c00267{bottom:170.130000px;}
.y1d_c00267{bottom:230.430000px;}
.y1c_c00267{bottom:290.775000px;}
.y1a_c00267{bottom:336.495000px;}
.y19_c00267{bottom:382.216500px;}
.y17_c00267{bottom:428.116500px;}
.y15_c00267{bottom:473.835000px;}
.y14_c00267{bottom:534.855000px;}
.y12_c00267{bottom:596.083500px;}
.y6_c00267{bottom:657.105000px;}
.yd_c00267{bottom:731.983500px;}
.yc_c00267{bottom:806.865000px;}
.ya_c00267{bottom:868.111500px;}
.y9_c00267{bottom:929.131500px;}
.y8_c00267{bottom:990.331500px;}
.y4_c00267{bottom:1051.351500px;}
.y2_c00267{bottom:1112.551500px;}
.h6_c00267{height:39.339931px;}
.hd_c00267{height:45.000000px;}
.h4_c00267{height:48.224531px;}
.h2_c00267{height:48.256875px;}
.h10_c00267{height:59.579850px;}
.hf_c00267{height:59.580450px;}
.he_c00267{height:59.616750px;}
.h8_c00267{height:60.300000px;}
.h5_c00267{height:60.478650px;}
.h9_c00267{height:60.479850px;}
.ha_c00267{height:60.515100px;}
.hc_c00267{height:60.516750px;}
.hb_c00267{height:74.160300px;}
.h3_c00267{height:85.715700px;}
.h7_c00267{height:454.708500px;}
.h0_c00267{height:1262.879850px;}
.h1_c00267{height:1263.000000px;}
.w3_c00267{width:100.259700px;}
.w4_c00267{width:149.796750px;}
.w6_c00267{width:250.951500px;}
.w5_c00267{width:463.036500px;}
.w7_c00267{width:463.395000px;}
.w2_c00267{width:714.705000px;}
.w0_c00267{width:892.979700px;}
.w1_c00267{width:893.250000px;}
.x0_c00267{left:0.000000px;}
.x4_c00267{left:4.860000px;}
.x1_c00267{left:148.896750px;}
.x2_c00267{left:154.470000px;}
.x8_c00267{left:204.886500px;}
.x3_c00267{left:206.506500px;}
.x5_c00267{left:255.630000px;}
.x6_c00267{left:406.155000px;}
.x7_c00267{left:457.995000px;}
@media print{
.v0_c00267{vertical-align:0.000000pt;}
.ls1_c00267{letter-spacing:0.000000pt;}
.ls0_c00267{letter-spacing:0.191087pt;}
.ws0_c00267{word-spacing:-13.344030pt;}
.ws1_c00267{word-spacing:0.000000pt;}
._2_c00267{margin-left:-1.097138pt;}
._3_c00267{width:0.987236pt;}
._1_c00267{width:810.561749pt;}
._0_c00267{width:1196.429824pt;}
.fs1_c00267{font-size:48.000107pt;}
.fs0_c00267{font-size:58.880000pt;}
.y0_c00267{bottom:0.000000pt;}
.y7_c00267{bottom:12.960000pt;}
.y18_c00267{bottom:15.680000pt;}
.y1b_c00267{bottom:15.681333pt;}
.yf_c00267{bottom:21.761467pt;}
.y21_c00267{bottom:22.239600pt;}
.y1e_c00267{bottom:22.240000pt;}
.yb_c00267{bottom:22.398667pt;}
.y16_c00267{bottom:22.401333pt;}
.y5_c00267{bottom:22.560000pt;}
.y13_c00267{bottom:22.561333pt;}
.y11_c00267{bottom:28.640000pt;}
.y10_c00267{bottom:28.641333pt;}
.y3_c00267{bottom:32.826667pt;}
.ye_c00267{bottom:35.521333pt;}
.y1_c00267{bottom:50.272400pt;}
.y22_c00267{bottom:83.072400pt;}
.y20_c00267{bottom:97.632800pt;}
.y1f_c00267{bottom:151.226667pt;}
.y1d_c00267{bottom:204.826667pt;}
.y1c_c00267{bottom:258.466667pt;}
.y1a_c00267{bottom:299.106667pt;}
.y19_c00267{bottom:339.748000pt;}
.y17_c00267{bottom:380.548000pt;}
.y15_c00267{bottom:421.186667pt;}
.y14_c00267{bottom:475.426667pt;}
.y12_c00267{bottom:529.852000pt;}
.y6_c00267{bottom:584.093333pt;}
.yd_c00267{bottom:650.652000pt;}
.yc_c00267{bottom:717.213333pt;}
.ya_c00267{bottom:771.654667pt;}
.y9_c00267{bottom:825.894667pt;}
.y8_c00267{bottom:880.294667pt;}
.y4_c00267{bottom:934.534667pt;}
.y2_c00267{bottom:988.934667pt;}
.h6_c00267{height:34.968828pt;}
.hd_c00267{height:40.000000pt;}
.h4_c00267{height:42.866250pt;}
.h2_c00267{height:42.895000pt;}
.h10_c00267{height:52.959867pt;}
.hf_c00267{height:52.960400pt;}
.he_c00267{height:52.992667pt;}
.h8_c00267{height:53.600000pt;}
.h5_c00267{height:53.758800pt;}
.h9_c00267{height:53.759867pt;}
.ha_c00267{height:53.791200pt;}
.hc_c00267{height:53.792667pt;}
.hb_c00267{height:65.920267pt;}
.h3_c00267{height:76.191733pt;}
.h7_c00267{height:404.185333pt;}
.h0_c00267{height:1122.559867pt;}
.h1_c00267{height:1122.666667pt;}
.w3_c00267{width:89.119733pt;}
.w4_c00267{width:133.152667pt;}
.w6_c00267{width:223.068000pt;}
.w5_c00267{width:411.588000pt;}
.w7_c00267{width:411.906667pt;}
.w2_c00267{width:635.293333pt;}
.w0_c00267{width:793.759733pt;}
.w1_c00267{width:794.000000pt;}
.x0_c00267{left:0.000000pt;}
.x4_c00267{left:4.320000pt;}
.x1_c00267{left:132.352667pt;}
.x2_c00267{left:137.306667pt;}
.x8_c00267{left:182.121333pt;}
.x3_c00267{left:183.561333pt;}
.x5_c00267{left:227.226667pt;}
.x6_c00267{left:361.026667pt;}
.x7_c00267{left:407.106667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b4afbce4f73be568c8a71d8a.woff2')format("woff");}.ff1_c00268{font-family:ff1_c00268;line-height:0.666504;font-style:normal;font-weight:normal;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_c04a71759bd27416e0339c78.woff2')format("woff");}.ff2_c00268{font-family:ff2_c00268;line-height:0.938965;font-style:normal;font-weight:normal;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_cb325950b7b3fc4424dbd819.woff2')format("woff");}.ff3_c00268{font-family:ff3_c00268;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00268;src:url('chunks/assets/font_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff4_c00268{font-family:ff4_c00268;line-height:0.666504;font-style: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;}
.ls1_c00268{letter-spacing:0.000000px;}
.ls0_c00268{letter-spacing:0.214973px;}
.sc__c00268{text-shadow:none;}
.sc0_c00268{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00268{-webkit-text-stroke:0px transparent;}
.sc0_c00268{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00268{word-spacing:-15.012033px;}
.ws1_c00268{word-spacing:0.000000px;}
._2_c00268{margin-left:-1.234280px;}
._3_c00268{width:1.110640px;}
._1_c00268{width:911.881968px;}
._0_c00268{width:1345.983552px;}
.fc0_c00268{color:rgb(0,0,0);}
.fs1_c00268{font-size:54.000120px;}
.fs0_c00268{font-size:66.240000px;}
.y0_c00268{bottom:0.000000px;}
.y8_c00268{bottom:12.060000px;}
.y19_c00268{bottom:17.640000px;}
.y1c_c00268{bottom:17.641500px;}
.y10_c00268{bottom:24.481650px;}
.y7_c00268{bottom:24.660000px;}
.y22_c00268{bottom:25.019550px;}
.y1f_c00268{bottom:25.020000px;}
.yc_c00268{bottom:25.198500px;}
.y17_c00268{bottom:25.201500px;}
.y5_c00268{bottom:25.380000px;}
.y14_c00268{bottom:25.381500px;}
.y12_c00268{bottom:32.220000px;}
.y11_c00268{bottom:32.221500px;}
.y3_c00268{bottom:36.930000px;}
.yf_c00268{bottom:39.961500px;}
.y1_c00268{bottom:56.556450px;}
.y23_c00268{bottom:93.456450px;}
.y21_c00268{bottom:109.836900px;}
.y20_c00268{bottom:170.130000px;}
.y1e_c00268{bottom:230.430000px;}
.y1d_c00268{bottom:290.775000px;}
.y1b_c00268{bottom:336.495000px;}
.y1a_c00268{bottom:382.216500px;}
.y18_c00268{bottom:428.116500px;}
.y16_c00268{bottom:473.835000px;}
.y15_c00268{bottom:534.855000px;}
.y13_c00268{bottom:596.083500px;}
.y6_c00268{bottom:657.105000px;}
.ye_c00268{bottom:731.983500px;}
.yd_c00268{bottom:806.865000px;}
.yb_c00268{bottom:868.111500px;}
.ya_c00268{bottom:929.131500px;}
.y9_c00268{bottom:990.331500px;}
.y4_c00268{bottom:1051.351500px;}
.y2_c00268{bottom:1112.551500px;}
.h6_c00268{height:39.339931px;}
.hd_c00268{height:45.000000px;}
.h4_c00268{height:48.224531px;}
.h2_c00268{height:48.256875px;}
.h10_c00268{height:59.579850px;}
.hf_c00268{height:59.580450px;}
.he_c00268{height:59.616750px;}
.h8_c00268{height:60.300000px;}
.h5_c00268{height:60.478650px;}
.h9_c00268{height:60.479850px;}
.ha_c00268{height:60.515100px;}
.hc_c00268{height:60.516750px;}
.hb_c00268{height:74.160300px;}
.h3_c00268{height:85.715700px;}
.h7_c00268{height:454.708500px;}
.h0_c00268{height:1262.879850px;}
.h1_c00268{height:1263.000000px;}
.w3_c00268{width:100.259700px;}
.w4_c00268{width:149.796750px;}
.w6_c00268{width:250.951500px;}
.w5_c00268{width:458.716500px;}
.w7_c00268{width:459.075000px;}
.w2_c00268{width:710.383500px;}
.w0_c00268{width:892.979700px;}
.w1_c00268{width:893.250000px;}
.x0_c00268{left:0.000000px;}
.x4_c00268{left:4.860000px;}
.x1_c00268{left:148.896750px;}
.x2_c00268{left:154.470000px;}
.x9_c00268{left:202.726500px;}
.x3_c00268{left:204.166500px;}
.x8_c00268{left:229.170000px;}
.x5_c00268{left:255.630000px;}
.x6_c00268{left:406.155000px;}
.x7_c00268{left:441.795000px;}
@media print{
.v0_c00268{vertical-align:0.000000pt;}
.ls1_c00268{letter-spacing:0.000000pt;}
.ls0_c00268{letter-spacing:0.191087pt;}
.ws0_c00268{word-spacing:-13.344030pt;}
.ws1_c00268{word-spacing:0.000000pt;}
._2_c00268{margin-left:-1.097138pt;}
._3_c00268{width:0.987236pt;}
._1_c00268{width:810.561749pt;}
._0_c00268{width:1196.429824pt;}
.fs1_c00268{font-size:48.000107pt;}
.fs0_c00268{font-size:58.880000pt;}
.y0_c00268{bottom:0.000000pt;}
.y8_c00268{bottom:10.720000pt;}
.y19_c00268{bottom:15.680000pt;}
.y1c_c00268{bottom:15.681333pt;}
.y10_c00268{bottom:21.761467pt;}
.y7_c00268{bottom:21.920000pt;}
.y22_c00268{bottom:22.239600pt;}
.y1f_c00268{bottom:22.240000pt;}
.yc_c00268{bottom:22.398667pt;}
.y17_c00268{bottom:22.401333pt;}
.y5_c00268{bottom:22.560000pt;}
.y14_c00268{bottom:22.561333pt;}
.y12_c00268{bottom:28.640000pt;}
.y11_c00268{bottom:28.641333pt;}
.y3_c00268{bottom:32.826667pt;}
.yf_c00268{bottom:35.521333pt;}
.y1_c00268{bottom:50.272400pt;}
.y23_c00268{bottom:83.072400pt;}
.y21_c00268{bottom:97.632800pt;}
.y20_c00268{bottom:151.226667pt;}
.y1e_c00268{bottom:204.826667pt;}
.y1d_c00268{bottom:258.466667pt;}
.y1b_c00268{bottom:299.106667pt;}
.y1a_c00268{bottom:339.748000pt;}
.y18_c00268{bottom:380.548000pt;}
.y16_c00268{bottom:421.186667pt;}
.y15_c00268{bottom:475.426667pt;}
.y13_c00268{bottom:529.852000pt;}
.y6_c00268{bottom:584.093333pt;}
.ye_c00268{bottom:650.652000pt;}
.yd_c00268{bottom:717.213333pt;}
.yb_c00268{bottom:771.654667pt;}
.ya_c00268{bottom:825.894667pt;}
.y9_c00268{bottom:880.294667pt;}
.y4_c00268{bottom:934.534667pt;}
.y2_c00268{bottom:988.934667pt;}
.h6_c00268{height:34.968828pt;}
.hd_c00268{height:40.000000pt;}
.h4_c00268{height:42.866250pt;}
.h2_c00268{height:42.895000pt;}
.h10_c00268{height:52.959867pt;}
.hf_c00268{height:52.960400pt;}
.he_c00268{height:52.992667pt;}
.h8_c00268{height:53.600000pt;}
.h5_c00268{height:53.758800pt;}
.h9_c00268{height:53.759867pt;}
.ha_c00268{height:53.791200pt;}
.hc_c00268{height:53.792667pt;}
.hb_c00268{height:65.920267pt;}
.h3_c00268{height:76.191733pt;}
.h7_c00268{height:404.185333pt;}
.h0_c00268{height:1122.559867pt;}
.h1_c00268{height:1122.666667pt;}
.w3_c00268{width:89.119733pt;}
.w4_c00268{width:133.152667pt;}
.w6_c00268{width:223.068000pt;}
.w5_c00268{width:407.748000pt;}
.w7_c00268{width:408.066667pt;}
.w2_c00268{width:631.452000pt;}
.w0_c00268{width:793.759733pt;}
.w1_c00268{width:794.000000pt;}
.x0_c00268{left:0.000000pt;}
.x4_c00268{left:4.320000pt;}
.x1_c00268{left:132.352667pt;}
.x2_c00268{left:137.306667pt;}
.x9_c00268{left:180.201333pt;}
.x3_c00268{left:181.481333pt;}
.x8_c00268{left:203.706667pt;}
.x5_c00268{left:227.226667pt;}
.x6_c00268{left:361.026667pt;}
.x7_c00268{left:392.706667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b4afbce4f73be568c8a71d8a.woff2')format("woff");}.ff1_c00269{font-family:ff1_c00269;line-height:0.666504;font-style:normal;font-weight:normal;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_f0288ed1357e47efeafecf3d.woff2')format("woff");}.ff2_c00269{font-family:ff2_c00269;line-height:0.938965;font-style:normal;font-weight:normal;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_cb325950b7b3fc4424dbd819.woff2')format("woff");}.ff3_c00269{font-family:ff3_c00269;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00269;src:url('chunks/assets/font_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff4_c00269{font-family:ff4_c00269;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00269{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00269{vertical-align:0.000000px;}
.ls1_c00269{letter-spacing:0.000000px;}
.ls0_c00269{letter-spacing:0.214973px;}
.sc__c00269{text-shadow:none;}
.sc0_c00269{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00269{-webkit-text-stroke:0px transparent;}
.sc0_c00269{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00269{word-spacing:-15.012033px;}
.ws1_c00269{word-spacing:0.000000px;}
._2_c00269{margin-left:-1.234280px;}
._3_c00269{width:1.110640px;}
._1_c00269{width:911.881968px;}
._0_c00269{width:1345.983552px;}
.fc0_c00269{color:rgb(0,0,0);}
.fs1_c00269{font-size:54.000120px;}
.fs0_c00269{font-size:66.240000px;}
.y0_c00269{bottom:0.000000px;}
.y7_c00269{bottom:14.580000px;}
.y18_c00269{bottom:17.640000px;}
.y1b_c00269{bottom:17.641500px;}
.yf_c00269{bottom:24.481650px;}
.y21_c00269{bottom:25.019550px;}
.y1e_c00269{bottom:25.020000px;}
.yb_c00269{bottom:25.198500px;}
.y16_c00269{bottom:25.201500px;}
.y5_c00269{bottom:25.380000px;}
.y13_c00269{bottom:25.381500px;}
.y11_c00269{bottom:32.220000px;}
.y10_c00269{bottom:32.221500px;}
.y3_c00269{bottom:36.930000px;}
.ye_c00269{bottom:39.961500px;}
.y1_c00269{bottom:56.556450px;}
.y22_c00269{bottom:93.456450px;}
.y20_c00269{bottom:109.836900px;}
.y1f_c00269{bottom:170.130000px;}
.y1d_c00269{bottom:230.430000px;}
.y1c_c00269{bottom:290.775000px;}
.y1a_c00269{bottom:336.495000px;}
.y19_c00269{bottom:382.216500px;}
.y17_c00269{bottom:428.116500px;}
.y15_c00269{bottom:473.835000px;}
.y14_c00269{bottom:534.855000px;}
.y12_c00269{bottom:596.083500px;}
.y6_c00269{bottom:657.105000px;}
.yd_c00269{bottom:731.983500px;}
.yc_c00269{bottom:806.865000px;}
.ya_c00269{bottom:868.111500px;}
.y9_c00269{bottom:929.131500px;}
.y8_c00269{bottom:990.331500px;}
.y4_c00269{bottom:1051.351500px;}
.y2_c00269{bottom:1112.551500px;}
.h6_c00269{height:39.339931px;}
.hd_c00269{height:45.000000px;}
.h4_c00269{height:48.224531px;}
.h2_c00269{height:48.256875px;}
.h10_c00269{height:59.579850px;}
.hf_c00269{height:59.580450px;}
.he_c00269{height:59.616750px;}
.h8_c00269{height:60.300000px;}
.h5_c00269{height:60.478650px;}
.h9_c00269{height:60.479850px;}
.ha_c00269{height:60.515100px;}
.hc_c00269{height:60.516750px;}
.hb_c00269{height:74.160300px;}
.h3_c00269{height:85.715700px;}
.h7_c00269{height:454.708500px;}
.h0_c00269{height:1262.879850px;}
.h1_c00269{height:1263.000000px;}
.w3_c00269{width:100.259700px;}
.w4_c00269{width:149.796750px;}
.w6_c00269{width:250.951500px;}
.w5_c00269{width:463.036500px;}
.w7_c00269{width:463.395000px;}
.w2_c00269{width:714.705000px;}
.w0_c00269{width:892.979700px;}
.w1_c00269{width:893.250000px;}
.x0_c00269{left:0.000000px;}
.x4_c00269{left:4.860000px;}
.x1_c00269{left:148.896750px;}
.x2_c00269{left:154.470000px;}
.x8_c00269{left:204.886500px;}
.x3_c00269{left:206.506500px;}
.x5_c00269{left:255.630000px;}
.x6_c00269{left:406.155000px;}
.x7_c00269{left:457.995000px;}
@media print{
.v0_c00269{vertical-align:0.000000pt;}
.ls1_c00269{letter-spacing:0.000000pt;}
.ls0_c00269{letter-spacing:0.191087pt;}
.ws0_c00269{word-spacing:-13.344030pt;}
.ws1_c00269{word-spacing:0.000000pt;}
._2_c00269{margin-left:-1.097138pt;}
._3_c00269{width:0.987236pt;}
._1_c00269{width:810.561749pt;}
._0_c00269{width:1196.429824pt;}
.fs1_c00269{font-size:48.000107pt;}
.fs0_c00269{font-size:58.880000pt;}
.y0_c00269{bottom:0.000000pt;}
.y7_c00269{bottom:12.960000pt;}
.y18_c00269{bottom:15.680000pt;}
.y1b_c00269{bottom:15.681333pt;}
.yf_c00269{bottom:21.761467pt;}
.y21_c00269{bottom:22.239600pt;}
.y1e_c00269{bottom:22.240000pt;}
.yb_c00269{bottom:22.398667pt;}
.y16_c00269{bottom:22.401333pt;}
.y5_c00269{bottom:22.560000pt;}
.y13_c00269{bottom:22.561333pt;}
.y11_c00269{bottom:28.640000pt;}
.y10_c00269{bottom:28.641333pt;}
.y3_c00269{bottom:32.826667pt;}
.ye_c00269{bottom:35.521333pt;}
.y1_c00269{bottom:50.272400pt;}
.y22_c00269{bottom:83.072400pt;}
.y20_c00269{bottom:97.632800pt;}
.y1f_c00269{bottom:151.226667pt;}
.y1d_c00269{bottom:204.826667pt;}
.y1c_c00269{bottom:258.466667pt;}
.y1a_c00269{bottom:299.106667pt;}
.y19_c00269{bottom:339.748000pt;}
.y17_c00269{bottom:380.548000pt;}
.y15_c00269{bottom:421.186667pt;}
.y14_c00269{bottom:475.426667pt;}
.y12_c00269{bottom:529.852000pt;}
.y6_c00269{bottom:584.093333pt;}
.yd_c00269{bottom:650.652000pt;}
.yc_c00269{bottom:717.213333pt;}
.ya_c00269{bottom:771.654667pt;}
.y9_c00269{bottom:825.894667pt;}
.y8_c00269{bottom:880.294667pt;}
.y4_c00269{bottom:934.534667pt;}
.y2_c00269{bottom:988.934667pt;}
.h6_c00269{height:34.968828pt;}
.hd_c00269{height:40.000000pt;}
.h4_c00269{height:42.866250pt;}
.h2_c00269{height:42.895000pt;}
.h10_c00269{height:52.959867pt;}
.hf_c00269{height:52.960400pt;}
.he_c00269{height:52.992667pt;}
.h8_c00269{height:53.600000pt;}
.h5_c00269{height:53.758800pt;}
.h9_c00269{height:53.759867pt;}
.ha_c00269{height:53.791200pt;}
.hc_c00269{height:53.792667pt;}
.hb_c00269{height:65.920267pt;}
.h3_c00269{height:76.191733pt;}
.h7_c00269{height:404.185333pt;}
.h0_c00269{height:1122.559867pt;}
.h1_c00269{height:1122.666667pt;}
.w3_c00269{width:89.119733pt;}
.w4_c00269{width:133.152667pt;}
.w6_c00269{width:223.068000pt;}
.w5_c00269{width:411.588000pt;}
.w7_c00269{width:411.906667pt;}
.w2_c00269{width:635.293333pt;}
.w0_c00269{width:793.759733pt;}
.w1_c00269{width:794.000000pt;}
.x0_c00269{left:0.000000pt;}
.x4_c00269{left:4.320000pt;}
.x1_c00269{left:132.352667pt;}
.x2_c00269{left:137.306667pt;}
.x8_c00269{left:182.121333pt;}
.x3_c00269{left:183.561333pt;}
.x5_c00269{left:227.226667pt;}
.x6_c00269{left:361.026667pt;}
.x7_c00269{left:407.106667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b4afbce4f73be568c8a71d8a.woff2')format("woff");}.ff1_c00270{font-family:ff1_c00270;line-height:0.666504;font-style:normal;font-weight:normal;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_b147a4f2951862e8bd7f086a.woff2')format("woff");}.ff2_c00270{font-family:ff2_c00270;line-height:0.938965;font-style:normal;font-weight:normal;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_cb325950b7b3fc4424dbd819.woff2')format("woff");}.ff3_c00270{font-family:ff3_c00270;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00270;src:url('chunks/assets/font_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff4_c00270{font-family:ff4_c00270;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00270{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00270{vertical-align:0.000000px;}
.ls1_c00270{letter-spacing:0.000000px;}
.ls0_c00270{letter-spacing:0.214973px;}
.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:-15.012033px;}
.ws1_c00270{word-spacing:0.000000px;}
._2_c00270{margin-left:-1.234280px;}
._3_c00270{width:1.110640px;}
._1_c00270{width:911.881968px;}
._0_c00270{width:1345.983552px;}
.fc0_c00270{color:rgb(0,0,0);}
.fs1_c00270{font-size:54.000120px;}
.fs0_c00270{font-size:66.240000px;}
.y0_c00270{bottom:0.000000px;}
.y9_c00270{bottom:4.321500px;}
.y8_c00270{bottom:16.921500px;}
.y1a_c00270{bottom:17.640000px;}
.y1d_c00270{bottom:17.641500px;}
.y11_c00270{bottom:24.481650px;}
.y23_c00270{bottom:25.019550px;}
.y20_c00270{bottom:25.020000px;}
.yd_c00270{bottom:25.198500px;}
.y18_c00270{bottom:25.201500px;}
.y5_c00270{bottom:25.380000px;}
.y15_c00270{bottom:25.381500px;}
.y13_c00270{bottom:32.220000px;}
.y12_c00270{bottom:32.221500px;}
.y3_c00270{bottom:36.930000px;}
.y10_c00270{bottom:39.961500px;}
.y1_c00270{bottom:56.556450px;}
.y24_c00270{bottom:93.456450px;}
.y22_c00270{bottom:109.836900px;}
.y21_c00270{bottom:170.130000px;}
.y1f_c00270{bottom:230.430000px;}
.y1e_c00270{bottom:290.775000px;}
.y1c_c00270{bottom:336.495000px;}
.y1b_c00270{bottom:382.216500px;}
.y19_c00270{bottom:428.116500px;}
.y7_c00270{bottom:440.686500px;}
.y17_c00270{bottom:473.835000px;}
.y16_c00270{bottom:534.855000px;}
.y14_c00270{bottom:596.083500px;}
.y6_c00270{bottom:657.105000px;}
.yf_c00270{bottom:731.983500px;}
.ye_c00270{bottom:806.865000px;}
.yc_c00270{bottom:868.111500px;}
.yb_c00270{bottom:929.131500px;}
.ya_c00270{bottom:990.331500px;}
.y4_c00270{bottom:1051.351500px;}
.y2_c00270{bottom:1112.551500px;}
.h6_c00270{height:39.339931px;}
.hd_c00270{height:45.000000px;}
.h4_c00270{height:48.224531px;}
.h2_c00270{height:48.256875px;}
.h10_c00270{height:59.579850px;}
.hf_c00270{height:59.580450px;}
.he_c00270{height:59.616750px;}
.h8_c00270{height:60.300000px;}
.h5_c00270{height:60.478650px;}
.h9_c00270{height:60.479850px;}
.ha_c00270{height:60.515100px;}
.hc_c00270{height:60.516750px;}
.hb_c00270{height:74.160300px;}
.h3_c00270{height:85.715700px;}
.h7_c00270{height:454.708500px;}
.h0_c00270{height:1262.879850px;}
.h1_c00270{height:1263.000000px;}
.w3_c00270{width:100.259700px;}
.w4_c00270{width:149.796750px;}
.w6_c00270{width:250.951500px;}
.w5_c00270{width:458.716500px;}
.w7_c00270{width:459.075000px;}
.w2_c00270{width:710.383500px;}
.w0_c00270{width:892.979700px;}
.w1_c00270{width:893.250000px;}
.x0_c00270{left:0.000000px;}
.x4_c00270{left:4.860000px;}
.x1_c00270{left:148.896750px;}
.x2_c00270{left:154.470000px;}
.x9_c00270{left:202.726500px;}
.x3_c00270{left:204.166500px;}
.x7_c00270{left:229.170000px;}
.x5_c00270{left:255.630000px;}
.x6_c00270{left:406.155000px;}
.x8_c00270{left:441.795000px;}
@media print{
.v0_c00270{vertical-align:0.000000pt;}
.ls1_c00270{letter-spacing:0.000000pt;}
.ls0_c00270{letter-spacing:0.191087pt;}
.ws0_c00270{word-spacing:-13.344030pt;}
.ws1_c00270{word-spacing:0.000000pt;}
._2_c00270{margin-left:-1.097138pt;}
._3_c00270{width:0.987236pt;}
._1_c00270{width:810.561749pt;}
._0_c00270{width:1196.429824pt;}
.fs1_c00270{font-size:48.000107pt;}
.fs0_c00270{font-size:58.880000pt;}
.y0_c00270{bottom:0.000000pt;}
.y9_c00270{bottom:3.841333pt;}
.y8_c00270{bottom:15.041333pt;}
.y1a_c00270{bottom:15.680000pt;}
.y1d_c00270{bottom:15.681333pt;}
.y11_c00270{bottom:21.761467pt;}
.y23_c00270{bottom:22.239600pt;}
.y20_c00270{bottom:22.240000pt;}
.yd_c00270{bottom:22.398667pt;}
.y18_c00270{bottom:22.401333pt;}
.y5_c00270{bottom:22.560000pt;}
.y15_c00270{bottom:22.561333pt;}
.y13_c00270{bottom:28.640000pt;}
.y12_c00270{bottom:28.641333pt;}
.y3_c00270{bottom:32.826667pt;}
.y10_c00270{bottom:35.521333pt;}
.y1_c00270{bottom:50.272400pt;}
.y24_c00270{bottom:83.072400pt;}
.y22_c00270{bottom:97.632800pt;}
.y21_c00270{bottom:151.226667pt;}
.y1f_c00270{bottom:204.826667pt;}
.y1e_c00270{bottom:258.466667pt;}
.y1c_c00270{bottom:299.106667pt;}
.y1b_c00270{bottom:339.748000pt;}
.y19_c00270{bottom:380.548000pt;}
.y7_c00270{bottom:391.721333pt;}
.y17_c00270{bottom:421.186667pt;}
.y16_c00270{bottom:475.426667pt;}
.y14_c00270{bottom:529.852000pt;}
.y6_c00270{bottom:584.093333pt;}
.yf_c00270{bottom:650.652000pt;}
.ye_c00270{bottom:717.213333pt;}
.yc_c00270{bottom:771.654667pt;}
.yb_c00270{bottom:825.894667pt;}
.ya_c00270{bottom:880.294667pt;}
.y4_c00270{bottom:934.534667pt;}
.y2_c00270{bottom:988.934667pt;}
.h6_c00270{height:34.968828pt;}
.hd_c00270{height:40.000000pt;}
.h4_c00270{height:42.866250pt;}
.h2_c00270{height:42.895000pt;}
.h10_c00270{height:52.959867pt;}
.hf_c00270{height:52.960400pt;}
.he_c00270{height:52.992667pt;}
.h8_c00270{height:53.600000pt;}
.h5_c00270{height:53.758800pt;}
.h9_c00270{height:53.759867pt;}
.ha_c00270{height:53.791200pt;}
.hc_c00270{height:53.792667pt;}
.hb_c00270{height:65.920267pt;}
.h3_c00270{height:76.191733pt;}
.h7_c00270{height:404.185333pt;}
.h0_c00270{height:1122.559867pt;}
.h1_c00270{height:1122.666667pt;}
.w3_c00270{width:89.119733pt;}
.w4_c00270{width:133.152667pt;}
.w6_c00270{width:223.068000pt;}
.w5_c00270{width:407.748000pt;}
.w7_c00270{width:408.066667pt;}
.w2_c00270{width:631.452000pt;}
.w0_c00270{width:793.759733pt;}
.w1_c00270{width:794.000000pt;}
.x0_c00270{left:0.000000pt;}
.x4_c00270{left:4.320000pt;}
.x1_c00270{left:132.352667pt;}
.x2_c00270{left:137.306667pt;}
.x9_c00270{left:180.201333pt;}
.x3_c00270{left:181.481333pt;}
.x7_c00270{left:203.706667pt;}
.x5_c00270{left:227.226667pt;}
.x6_c00270{left:361.026667pt;}
.x8_c00270{left:392.706667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b4afbce4f73be568c8a71d8a.woff2')format("woff");}.ff1_c00271{font-family:ff1_c00271;line-height:0.666504;font-style:normal;font-weight:normal;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_4d894159fa5988690358944a.woff2')format("woff");}.ff2_c00271{font-family:ff2_c00271;line-height:0.938965;font-style:normal;font-weight:normal;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_cb325950b7b3fc4424dbd819.woff2')format("woff");}.ff3_c00271{font-family:ff3_c00271;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00271;src:url('chunks/assets/font_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff4_c00271{font-family:ff4_c00271;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00271{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00271{vertical-align:0.000000px;}
.ls1_c00271{letter-spacing:0.000000px;}
.ls0_c00271{letter-spacing:0.214973px;}
.sc__c00271{text-shadow:none;}
.sc0_c00271{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00271{-webkit-text-stroke:0px transparent;}
.sc0_c00271{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00271{word-spacing:-15.012033px;}
.ws1_c00271{word-spacing:0.000000px;}
._2_c00271{margin-left:-1.234280px;}
._3_c00271{width:1.093579px;}
._1_c00271{width:911.881968px;}
._0_c00271{width:1345.983552px;}
.fc0_c00271{color:rgb(0,0,0);}
.fs1_c00271{font-size:54.000120px;}
.fs0_c00271{font-size:66.240000px;}
.y0_c00271{bottom:0.000000px;}
.y7_c00271{bottom:14.580000px;}
.y14_c00271{bottom:16.740900px;}
.y1b_c00271{bottom:17.640000px;}
.y1e_c00271{bottom:17.641500px;}
.yf_c00271{bottom:24.481650px;}
.y24_c00271{bottom:25.019550px;}
.y21_c00271{bottom:25.020000px;}
.yb_c00271{bottom:25.198500px;}
.y19_c00271{bottom:25.201500px;}
.y5_c00271{bottom:25.380000px;}
.y16_c00271{bottom:25.381500px;}
.y11_c00271{bottom:32.220000px;}
.y13_c00271{bottom:32.220750px;}
.y10_c00271{bottom:32.221500px;}
.y3_c00271{bottom:36.930000px;}
.ye_c00271{bottom:39.961500px;}
.y12_c00271{bottom:47.880000px;}
.y1_c00271{bottom:56.556450px;}
.y25_c00271{bottom:93.456450px;}
.y23_c00271{bottom:109.836900px;}
.y22_c00271{bottom:170.130000px;}
.y20_c00271{bottom:230.430000px;}
.y1f_c00271{bottom:290.775000px;}
.y1d_c00271{bottom:336.495000px;}
.y1c_c00271{bottom:382.216500px;}
.y1a_c00271{bottom:428.116500px;}
.y18_c00271{bottom:473.835000px;}
.y17_c00271{bottom:534.855000px;}
.y15_c00271{bottom:596.083500px;}
.y6_c00271{bottom:657.105000px;}
.yd_c00271{bottom:731.983500px;}
.yc_c00271{bottom:806.865000px;}
.ya_c00271{bottom:868.111500px;}
.y9_c00271{bottom:929.131500px;}
.y8_c00271{bottom:990.331500px;}
.y4_c00271{bottom:1051.351500px;}
.y2_c00271{bottom:1112.551500px;}
.h6_c00271{height:39.339931px;}
.hd_c00271{height:45.000000px;}
.h4_c00271{height:48.224531px;}
.h2_c00271{height:48.256875px;}
.h10_c00271{height:59.579850px;}
.hf_c00271{height:59.580450px;}
.he_c00271{height:59.616750px;}
.h8_c00271{height:60.300000px;}
.h5_c00271{height:60.478650px;}
.h9_c00271{height:60.479850px;}
.ha_c00271{height:60.515100px;}
.hc_c00271{height:60.516750px;}
.hb_c00271{height:74.160300px;}
.h3_c00271{height:85.715700px;}
.h7_c00271{height:454.708500px;}
.h0_c00271{height:1262.879850px;}
.h1_c00271{height:1263.000000px;}
.w3_c00271{width:100.259700px;}
.w4_c00271{width:149.796750px;}
.w6_c00271{width:250.951500px;}
.w5_c00271{width:463.036500px;}
.w7_c00271{width:463.395000px;}
.w2_c00271{width:714.705000px;}
.w0_c00271{width:892.979700px;}
.w1_c00271{width:893.250000px;}
.x0_c00271{left:0.000000px;}
.x4_c00271{left:4.860000px;}
.x1_c00271{left:148.896750px;}
.x2_c00271{left:154.470000px;}
.x8_c00271{left:204.886500px;}
.x3_c00271{left:206.506500px;}
.x5_c00271{left:255.630000px;}
.x6_c00271{left:406.155000px;}
.x7_c00271{left:457.995000px;}
@media print{
.v0_c00271{vertical-align:0.000000pt;}
.ls1_c00271{letter-spacing:0.000000pt;}
.ls0_c00271{letter-spacing:0.191087pt;}
.ws0_c00271{word-spacing:-13.344030pt;}
.ws1_c00271{word-spacing:0.000000pt;}
._2_c00271{margin-left:-1.097138pt;}
._3_c00271{width:0.972070pt;}
._1_c00271{width:810.561749pt;}
._0_c00271{width:1196.429824pt;}
.fs1_c00271{font-size:48.000107pt;}
.fs0_c00271{font-size:58.880000pt;}
.y0_c00271{bottom:0.000000pt;}
.y7_c00271{bottom:12.960000pt;}
.y14_c00271{bottom:14.880800pt;}
.y1b_c00271{bottom:15.680000pt;}
.y1e_c00271{bottom:15.681333pt;}
.yf_c00271{bottom:21.761467pt;}
.y24_c00271{bottom:22.239600pt;}
.y21_c00271{bottom:22.240000pt;}
.yb_c00271{bottom:22.398667pt;}
.y19_c00271{bottom:22.401333pt;}
.y5_c00271{bottom:22.560000pt;}
.y16_c00271{bottom:22.561333pt;}
.y11_c00271{bottom:28.640000pt;}
.y13_c00271{bottom:28.640667pt;}
.y10_c00271{bottom:28.641333pt;}
.y3_c00271{bottom:32.826667pt;}
.ye_c00271{bottom:35.521333pt;}
.y12_c00271{bottom:42.560000pt;}
.y1_c00271{bottom:50.272400pt;}
.y25_c00271{bottom:83.072400pt;}
.y23_c00271{bottom:97.632800pt;}
.y22_c00271{bottom:151.226667pt;}
.y20_c00271{bottom:204.826667pt;}
.y1f_c00271{bottom:258.466667pt;}
.y1d_c00271{bottom:299.106667pt;}
.y1c_c00271{bottom:339.748000pt;}
.y1a_c00271{bottom:380.548000pt;}
.y18_c00271{bottom:421.186667pt;}
.y17_c00271{bottom:475.426667pt;}
.y15_c00271{bottom:529.852000pt;}
.y6_c00271{bottom:584.093333pt;}
.yd_c00271{bottom:650.652000pt;}
.yc_c00271{bottom:717.213333pt;}
.ya_c00271{bottom:771.654667pt;}
.y9_c00271{bottom:825.894667pt;}
.y8_c00271{bottom:880.294667pt;}
.y4_c00271{bottom:934.534667pt;}
.y2_c00271{bottom:988.934667pt;}
.h6_c00271{height:34.968828pt;}
.hd_c00271{height:40.000000pt;}
.h4_c00271{height:42.866250pt;}
.h2_c00271{height:42.895000pt;}
.h10_c00271{height:52.959867pt;}
.hf_c00271{height:52.960400pt;}
.he_c00271{height:52.992667pt;}
.h8_c00271{height:53.600000pt;}
.h5_c00271{height:53.758800pt;}
.h9_c00271{height:53.759867pt;}
.ha_c00271{height:53.791200pt;}
.hc_c00271{height:53.792667pt;}
.hb_c00271{height:65.920267pt;}
.h3_c00271{height:76.191733pt;}
.h7_c00271{height:404.185333pt;}
.h0_c00271{height:1122.559867pt;}
.h1_c00271{height:1122.666667pt;}
.w3_c00271{width:89.119733pt;}
.w4_c00271{width:133.152667pt;}
.w6_c00271{width:223.068000pt;}
.w5_c00271{width:411.588000pt;}
.w7_c00271{width:411.906667pt;}
.w2_c00271{width:635.293333pt;}
.w0_c00271{width:793.759733pt;}
.w1_c00271{width:794.000000pt;}
.x0_c00271{left:0.000000pt;}
.x4_c00271{left:4.320000pt;}
.x1_c00271{left:132.352667pt;}
.x2_c00271{left:137.306667pt;}
.x8_c00271{left:182.121333pt;}
.x3_c00271{left:183.561333pt;}
.x5_c00271{left:227.226667pt;}
.x6_c00271{left:361.026667pt;}
.x7_c00271{left:407.106667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b4afbce4f73be568c8a71d8a.woff2')format("woff");}.ff1_c00272{font-family:ff1_c00272;line-height:0.666504;font-style:normal;font-weight:normal;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_cec4868a5d4edfcb9bdfdf80.woff2')format("woff");}.ff2_c00272{font-family:ff2_c00272;line-height:0.938965;font-style:normal;font-weight:normal;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_cb325950b7b3fc4424dbd819.woff2')format("woff");}.ff3_c00272{font-family:ff3_c00272;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00272;src:url('chunks/assets/font_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff4_c00272{font-family:ff4_c00272;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00272{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00272{vertical-align:0.000000px;}
.ls1_c00272{letter-spacing:0.000000px;}
.ls0_c00272{letter-spacing:0.214973px;}
.sc__c00272{text-shadow:none;}
.sc0_c00272{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00272{-webkit-text-stroke:0px transparent;}
.sc0_c00272{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00272{word-spacing:-15.012033px;}
.ws1_c00272{word-spacing:0.000000px;}
._2_c00272{margin-left:-1.234280px;}
._3_c00272{width:1.110640px;}
._1_c00272{width:911.881968px;}
._0_c00272{width:1345.983552px;}
.fc0_c00272{color:rgb(0,0,0);}
.fs1_c00272{font-size:54.000120px;}
.fs0_c00272{font-size:66.240000px;}
.y0_c00272{bottom:0.000000px;}
.y9_c00272{bottom:4.321500px;}
.y8_c00272{bottom:16.921500px;}
.y1a_c00272{bottom:17.640000px;}
.y1d_c00272{bottom:17.641500px;}
.y11_c00272{bottom:24.481650px;}
.y23_c00272{bottom:25.019550px;}
.y20_c00272{bottom:25.020000px;}
.yd_c00272{bottom:25.198500px;}
.y18_c00272{bottom:25.201500px;}
.y5_c00272{bottom:25.380000px;}
.y15_c00272{bottom:25.381500px;}
.y13_c00272{bottom:32.220000px;}
.y12_c00272{bottom:32.221500px;}
.y3_c00272{bottom:36.930000px;}
.y10_c00272{bottom:39.961500px;}
.y1_c00272{bottom:56.556450px;}
.y24_c00272{bottom:93.456450px;}
.y22_c00272{bottom:109.836900px;}
.y21_c00272{bottom:170.130000px;}
.y1f_c00272{bottom:230.430000px;}
.y1e_c00272{bottom:290.775000px;}
.y1c_c00272{bottom:336.495000px;}
.y1b_c00272{bottom:382.216500px;}
.y19_c00272{bottom:428.116500px;}
.y7_c00272{bottom:440.686500px;}
.y17_c00272{bottom:473.835000px;}
.y16_c00272{bottom:534.855000px;}
.y14_c00272{bottom:596.083500px;}
.y6_c00272{bottom:657.105000px;}
.yf_c00272{bottom:731.983500px;}
.ye_c00272{bottom:806.865000px;}
.yc_c00272{bottom:868.111500px;}
.yb_c00272{bottom:929.131500px;}
.ya_c00272{bottom:990.331500px;}
.y4_c00272{bottom:1051.351500px;}
.y2_c00272{bottom:1112.551500px;}
.h6_c00272{height:39.339931px;}
.hd_c00272{height:45.000000px;}
.h4_c00272{height:48.224531px;}
.h2_c00272{height:48.256875px;}
.h10_c00272{height:59.579850px;}
.hf_c00272{height:59.580450px;}
.he_c00272{height:59.616750px;}
.h8_c00272{height:60.300000px;}
.h5_c00272{height:60.478650px;}
.h9_c00272{height:60.479850px;}
.ha_c00272{height:60.515100px;}
.hc_c00272{height:60.516750px;}
.hb_c00272{height:74.160300px;}
.h3_c00272{height:85.715700px;}
.h7_c00272{height:454.708500px;}
.h0_c00272{height:1262.879850px;}
.h1_c00272{height:1263.000000px;}
.w3_c00272{width:100.259700px;}
.w4_c00272{width:149.796750px;}
.w6_c00272{width:250.951500px;}
.w5_c00272{width:458.716500px;}
.w7_c00272{width:459.075000px;}
.w2_c00272{width:710.383500px;}
.w0_c00272{width:892.979700px;}
.w1_c00272{width:893.250000px;}
.x0_c00272{left:0.000000px;}
.x4_c00272{left:4.860000px;}
.x1_c00272{left:148.896750px;}
.x2_c00272{left:154.470000px;}
.x9_c00272{left:202.726500px;}
.x3_c00272{left:204.166500px;}
.x7_c00272{left:229.170000px;}
.x5_c00272{left:255.630000px;}
.x6_c00272{left:406.155000px;}
.x8_c00272{left:441.795000px;}
@media print{
.v0_c00272{vertical-align:0.000000pt;}
.ls1_c00272{letter-spacing:0.000000pt;}
.ls0_c00272{letter-spacing:0.191087pt;}
.ws0_c00272{word-spacing:-13.344030pt;}
.ws1_c00272{word-spacing:0.000000pt;}
._2_c00272{margin-left:-1.097138pt;}
._3_c00272{width:0.987236pt;}
._1_c00272{width:810.561749pt;}
._0_c00272{width:1196.429824pt;}
.fs1_c00272{font-size:48.000107pt;}
.fs0_c00272{font-size:58.880000pt;}
.y0_c00272{bottom:0.000000pt;}
.y9_c00272{bottom:3.841333pt;}
.y8_c00272{bottom:15.041333pt;}
.y1a_c00272{bottom:15.680000pt;}
.y1d_c00272{bottom:15.681333pt;}
.y11_c00272{bottom:21.761467pt;}
.y23_c00272{bottom:22.239600pt;}
.y20_c00272{bottom:22.240000pt;}
.yd_c00272{bottom:22.398667pt;}
.y18_c00272{bottom:22.401333pt;}
.y5_c00272{bottom:22.560000pt;}
.y15_c00272{bottom:22.561333pt;}
.y13_c00272{bottom:28.640000pt;}
.y12_c00272{bottom:28.641333pt;}
.y3_c00272{bottom:32.826667pt;}
.y10_c00272{bottom:35.521333pt;}
.y1_c00272{bottom:50.272400pt;}
.y24_c00272{bottom:83.072400pt;}
.y22_c00272{bottom:97.632800pt;}
.y21_c00272{bottom:151.226667pt;}
.y1f_c00272{bottom:204.826667pt;}
.y1e_c00272{bottom:258.466667pt;}
.y1c_c00272{bottom:299.106667pt;}
.y1b_c00272{bottom:339.748000pt;}
.y19_c00272{bottom:380.548000pt;}
.y7_c00272{bottom:391.721333pt;}
.y17_c00272{bottom:421.186667pt;}
.y16_c00272{bottom:475.426667pt;}
.y14_c00272{bottom:529.852000pt;}
.y6_c00272{bottom:584.093333pt;}
.yf_c00272{bottom:650.652000pt;}
.ye_c00272{bottom:717.213333pt;}
.yc_c00272{bottom:771.654667pt;}
.yb_c00272{bottom:825.894667pt;}
.ya_c00272{bottom:880.294667pt;}
.y4_c00272{bottom:934.534667pt;}
.y2_c00272{bottom:988.934667pt;}
.h6_c00272{height:34.968828pt;}
.hd_c00272{height:40.000000pt;}
.h4_c00272{height:42.866250pt;}
.h2_c00272{height:42.895000pt;}
.h10_c00272{height:52.959867pt;}
.hf_c00272{height:52.960400pt;}
.he_c00272{height:52.992667pt;}
.h8_c00272{height:53.600000pt;}
.h5_c00272{height:53.758800pt;}
.h9_c00272{height:53.759867pt;}
.ha_c00272{height:53.791200pt;}
.hc_c00272{height:53.792667pt;}
.hb_c00272{height:65.920267pt;}
.h3_c00272{height:76.191733pt;}
.h7_c00272{height:404.185333pt;}
.h0_c00272{height:1122.559867pt;}
.h1_c00272{height:1122.666667pt;}
.w3_c00272{width:89.119733pt;}
.w4_c00272{width:133.152667pt;}
.w6_c00272{width:223.068000pt;}
.w5_c00272{width:407.748000pt;}
.w7_c00272{width:408.066667pt;}
.w2_c00272{width:631.452000pt;}
.w0_c00272{width:793.759733pt;}
.w1_c00272{width:794.000000pt;}
.x0_c00272{left:0.000000pt;}
.x4_c00272{left:4.320000pt;}
.x1_c00272{left:132.352667pt;}
.x2_c00272{left:137.306667pt;}
.x9_c00272{left:180.201333pt;}
.x3_c00272{left:181.481333pt;}
.x7_c00272{left:203.706667pt;}
.x5_c00272{left:227.226667pt;}
.x6_c00272{left:361.026667pt;}
.x8_c00272{left:392.706667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b4afbce4f73be568c8a71d8a.woff2')format("woff");}.ff1_c00273{font-family:ff1_c00273;line-height:0.666504;font-style:normal;font-weight:normal;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_d27e2e2cb1b0deba3df3bfdb.woff2')format("woff");}.ff2_c00273{font-family:ff2_c00273;line-height:0.938965;font-style:normal;font-weight:normal;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_cb325950b7b3fc4424dbd819.woff2')format("woff");}.ff3_c00273{font-family:ff3_c00273;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00273;src:url('chunks/assets/font_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff4_c00273{font-family:ff4_c00273;line-height:0.666504;font-style: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;}
.ls1_c00273{letter-spacing:0.000000px;}
.ls0_c00273{letter-spacing:0.214973px;}
.sc__c00273{text-shadow:none;}
.sc0_c00273{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00273{-webkit-text-stroke:0px transparent;}
.sc0_c00273{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00273{word-spacing:-15.012033px;}
.ws1_c00273{word-spacing:0.000000px;}
._2_c00273{margin-left:-1.234280px;}
._3_c00273{width:1.110640px;}
._1_c00273{width:911.881968px;}
._0_c00273{width:1345.983552px;}
.fc0_c00273{color:rgb(0,0,0);}
.fs1_c00273{font-size:54.000120px;}
.fs0_c00273{font-size:66.240000px;}
.y0_c00273{bottom:0.000000px;}
.y18_c00273{bottom:17.640000px;}
.y1b_c00273{bottom:17.641500px;}
.yf_c00273{bottom:24.481650px;}
.y21_c00273{bottom:25.019550px;}
.y1e_c00273{bottom:25.020000px;}
.yb_c00273{bottom:25.198500px;}
.y16_c00273{bottom:25.201500px;}
.y5_c00273{bottom:25.380000px;}
.y13_c00273{bottom:25.381500px;}
.y7_c00273{bottom:30.420000px;}
.y11_c00273{bottom:32.220000px;}
.y10_c00273{bottom:32.221500px;}
.y3_c00273{bottom:36.930000px;}
.ye_c00273{bottom:39.961500px;}
.y1_c00273{bottom:56.556450px;}
.y22_c00273{bottom:93.456450px;}
.y20_c00273{bottom:109.836900px;}
.y1f_c00273{bottom:170.130000px;}
.y1d_c00273{bottom:230.430000px;}
.y1c_c00273{bottom:290.775000px;}
.y1a_c00273{bottom:336.495000px;}
.y19_c00273{bottom:382.216500px;}
.y17_c00273{bottom:428.116500px;}
.y15_c00273{bottom:473.835000px;}
.y14_c00273{bottom:534.855000px;}
.y12_c00273{bottom:596.083500px;}
.y6_c00273{bottom:657.105000px;}
.yd_c00273{bottom:731.983500px;}
.yc_c00273{bottom:806.865000px;}
.ya_c00273{bottom:868.111500px;}
.y9_c00273{bottom:929.131500px;}
.y8_c00273{bottom:990.331500px;}
.y4_c00273{bottom:1051.351500px;}
.y2_c00273{bottom:1112.551500px;}
.h6_c00273{height:39.339931px;}
.hd_c00273{height:45.000000px;}
.h4_c00273{height:48.224531px;}
.h2_c00273{height:48.256875px;}
.h10_c00273{height:59.579850px;}
.hf_c00273{height:59.580450px;}
.he_c00273{height:59.616750px;}
.h8_c00273{height:60.300000px;}
.h5_c00273{height:60.478650px;}
.h9_c00273{height:60.479850px;}
.ha_c00273{height:60.515100px;}
.hc_c00273{height:60.516750px;}
.hb_c00273{height:74.160300px;}
.h3_c00273{height:85.715700px;}
.h7_c00273{height:454.708500px;}
.h0_c00273{height:1262.879850px;}
.h1_c00273{height:1263.000000px;}
.w3_c00273{width:100.259700px;}
.w4_c00273{width:149.796750px;}
.w6_c00273{width:250.951500px;}
.w5_c00273{width:463.036500px;}
.w7_c00273{width:463.395000px;}
.w2_c00273{width:714.705000px;}
.w0_c00273{width:892.979700px;}
.w1_c00273{width:893.250000px;}
.x0_c00273{left:0.000000px;}
.x4_c00273{left:4.860000px;}
.x1_c00273{left:148.896750px;}
.x2_c00273{left:154.470000px;}
.x8_c00273{left:204.886500px;}
.x3_c00273{left:206.506500px;}
.x5_c00273{left:255.630000px;}
.x6_c00273{left:406.155000px;}
.x7_c00273{left:444.136500px;}
@media print{
.v0_c00273{vertical-align:0.000000pt;}
.ls1_c00273{letter-spacing:0.000000pt;}
.ls0_c00273{letter-spacing:0.191087pt;}
.ws0_c00273{word-spacing:-13.344030pt;}
.ws1_c00273{word-spacing:0.000000pt;}
._2_c00273{margin-left:-1.097138pt;}
._3_c00273{width:0.987236pt;}
._1_c00273{width:810.561749pt;}
._0_c00273{width:1196.429824pt;}
.fs1_c00273{font-size:48.000107pt;}
.fs0_c00273{font-size:58.880000pt;}
.y0_c00273{bottom:0.000000pt;}
.y18_c00273{bottom:15.680000pt;}
.y1b_c00273{bottom:15.681333pt;}
.yf_c00273{bottom:21.761467pt;}
.y21_c00273{bottom:22.239600pt;}
.y1e_c00273{bottom:22.240000pt;}
.yb_c00273{bottom:22.398667pt;}
.y16_c00273{bottom:22.401333pt;}
.y5_c00273{bottom:22.560000pt;}
.y13_c00273{bottom:22.561333pt;}
.y7_c00273{bottom:27.040000pt;}
.y11_c00273{bottom:28.640000pt;}
.y10_c00273{bottom:28.641333pt;}
.y3_c00273{bottom:32.826667pt;}
.ye_c00273{bottom:35.521333pt;}
.y1_c00273{bottom:50.272400pt;}
.y22_c00273{bottom:83.072400pt;}
.y20_c00273{bottom:97.632800pt;}
.y1f_c00273{bottom:151.226667pt;}
.y1d_c00273{bottom:204.826667pt;}
.y1c_c00273{bottom:258.466667pt;}
.y1a_c00273{bottom:299.106667pt;}
.y19_c00273{bottom:339.748000pt;}
.y17_c00273{bottom:380.548000pt;}
.y15_c00273{bottom:421.186667pt;}
.y14_c00273{bottom:475.426667pt;}
.y12_c00273{bottom:529.852000pt;}
.y6_c00273{bottom:584.093333pt;}
.yd_c00273{bottom:650.652000pt;}
.yc_c00273{bottom:717.213333pt;}
.ya_c00273{bottom:771.654667pt;}
.y9_c00273{bottom:825.894667pt;}
.y8_c00273{bottom:880.294667pt;}
.y4_c00273{bottom:934.534667pt;}
.y2_c00273{bottom:988.934667pt;}
.h6_c00273{height:34.968828pt;}
.hd_c00273{height:40.000000pt;}
.h4_c00273{height:42.866250pt;}
.h2_c00273{height:42.895000pt;}
.h10_c00273{height:52.959867pt;}
.hf_c00273{height:52.960400pt;}
.he_c00273{height:52.992667pt;}
.h8_c00273{height:53.600000pt;}
.h5_c00273{height:53.758800pt;}
.h9_c00273{height:53.759867pt;}
.ha_c00273{height:53.791200pt;}
.hc_c00273{height:53.792667pt;}
.hb_c00273{height:65.920267pt;}
.h3_c00273{height:76.191733pt;}
.h7_c00273{height:404.185333pt;}
.h0_c00273{height:1122.559867pt;}
.h1_c00273{height:1122.666667pt;}
.w3_c00273{width:89.119733pt;}
.w4_c00273{width:133.152667pt;}
.w6_c00273{width:223.068000pt;}
.w5_c00273{width:411.588000pt;}
.w7_c00273{width:411.906667pt;}
.w2_c00273{width:635.293333pt;}
.w0_c00273{width:793.759733pt;}
.w1_c00273{width:794.000000pt;}
.x0_c00273{left:0.000000pt;}
.x4_c00273{left:4.320000pt;}
.x1_c00273{left:132.352667pt;}
.x2_c00273{left:137.306667pt;}
.x8_c00273{left:182.121333pt;}
.x3_c00273{left:183.561333pt;}
.x5_c00273{left:227.226667pt;}
.x6_c00273{left:361.026667pt;}
.x7_c00273{left:394.788000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b4afbce4f73be568c8a71d8a.woff2')format("woff");}.ff1_c00274{font-family:ff1_c00274;line-height:0.666504;font-style:normal;font-weight:normal;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_897c6a437530002429df9e2a.woff2')format("woff");}.ff2_c00274{font-family:ff2_c00274;line-height:0.938965;font-style:normal;font-weight:normal;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_cb325950b7b3fc4424dbd819.woff2')format("woff");}.ff3_c00274{font-family:ff3_c00274;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00274;src:url('chunks/assets/font_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff4_c00274{font-family:ff4_c00274;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00274{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00274{vertical-align:0.000000px;}
.ls1_c00274{letter-spacing:0.000000px;}
.ls0_c00274{letter-spacing:0.214973px;}
.sc__c00274{text-shadow:none;}
.sc0_c00274{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00274{-webkit-text-stroke:0px transparent;}
.sc0_c00274{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00274{word-spacing:-15.012033px;}
.ws1_c00274{word-spacing:0.000000px;}
._2_c00274{margin-left:-1.234280px;}
._3_c00274{width:1.147852px;}
._1_c00274{width:911.881968px;}
._0_c00274{width:1345.983552px;}
.fc0_c00274{color:rgb(0,0,0);}
.fs1_c00274{font-size:54.000120px;}
.fs0_c00274{font-size:66.240000px;}
.y0_c00274{bottom:0.000000px;}
.y17_c00274{bottom:17.640000px;}
.y1a_c00274{bottom:17.641500px;}
.yf_c00274{bottom:24.481650px;}
.y20_c00274{bottom:25.019550px;}
.y1d_c00274{bottom:25.020000px;}
.yb_c00274{bottom:25.198500px;}
.y15_c00274{bottom:25.201500px;}
.y5_c00274{bottom:25.380000px;}
.y12_c00274{bottom:25.381500px;}
.y10_c00274{bottom:32.220000px;}
.y7_c00274{bottom:33.840000px;}
.y3_c00274{bottom:36.930000px;}
.ye_c00274{bottom:39.961500px;}
.y1_c00274{bottom:56.556450px;}
.y21_c00274{bottom:93.456450px;}
.y1f_c00274{bottom:109.836900px;}
.y1e_c00274{bottom:170.130000px;}
.y1c_c00274{bottom:230.430000px;}
.y1b_c00274{bottom:290.775000px;}
.y19_c00274{bottom:336.495000px;}
.y18_c00274{bottom:382.216500px;}
.y16_c00274{bottom:428.116500px;}
.y14_c00274{bottom:473.835000px;}
.y13_c00274{bottom:534.855000px;}
.y11_c00274{bottom:596.083500px;}
.y6_c00274{bottom:657.105000px;}
.yd_c00274{bottom:731.983500px;}
.yc_c00274{bottom:806.865000px;}
.ya_c00274{bottom:868.111500px;}
.y9_c00274{bottom:929.131500px;}
.y8_c00274{bottom:990.331500px;}
.y4_c00274{bottom:1051.351500px;}
.y2_c00274{bottom:1112.551500px;}
.h6_c00274{height:39.339931px;}
.hd_c00274{height:45.000000px;}
.h4_c00274{height:48.224531px;}
.h2_c00274{height:48.256875px;}
.h10_c00274{height:59.579850px;}
.hf_c00274{height:59.580450px;}
.he_c00274{height:59.616750px;}
.h8_c00274{height:60.300000px;}
.h5_c00274{height:60.478650px;}
.h9_c00274{height:60.479850px;}
.ha_c00274{height:60.515100px;}
.hc_c00274{height:60.516750px;}
.hb_c00274{height:74.160300px;}
.h3_c00274{height:85.715700px;}
.h7_c00274{height:454.708500px;}
.h0_c00274{height:1262.879850px;}
.h1_c00274{height:1263.000000px;}
.w3_c00274{width:100.259700px;}
.w4_c00274{width:149.796750px;}
.w6_c00274{width:250.951500px;}
.w5_c00274{width:463.036500px;}
.w7_c00274{width:463.395000px;}
.w2_c00274{width:714.705000px;}
.w0_c00274{width:892.979700px;}
.w1_c00274{width:893.250000px;}
.x0_c00274{left:0.000000px;}
.x4_c00274{left:4.860000px;}
.x1_c00274{left:148.896750px;}
.x2_c00274{left:154.470000px;}
.x8_c00274{left:204.886500px;}
.x3_c00274{left:206.506500px;}
.x5_c00274{left:255.630000px;}
.x6_c00274{left:406.155000px;}
.x7_c00274{left:454.755000px;}
@media print{
.v0_c00274{vertical-align:0.000000pt;}
.ls1_c00274{letter-spacing:0.000000pt;}
.ls0_c00274{letter-spacing:0.191087pt;}
.ws0_c00274{word-spacing:-13.344030pt;}
.ws1_c00274{word-spacing:0.000000pt;}
._2_c00274{margin-left:-1.097138pt;}
._3_c00274{width:1.020313pt;}
._1_c00274{width:810.561749pt;}
._0_c00274{width:1196.429824pt;}
.fs1_c00274{font-size:48.000107pt;}
.fs0_c00274{font-size:58.880000pt;}
.y0_c00274{bottom:0.000000pt;}
.y17_c00274{bottom:15.680000pt;}
.y1a_c00274{bottom:15.681333pt;}
.yf_c00274{bottom:21.761467pt;}
.y20_c00274{bottom:22.239600pt;}
.y1d_c00274{bottom:22.240000pt;}
.yb_c00274{bottom:22.398667pt;}
.y15_c00274{bottom:22.401333pt;}
.y5_c00274{bottom:22.560000pt;}
.y12_c00274{bottom:22.561333pt;}
.y10_c00274{bottom:28.640000pt;}
.y7_c00274{bottom:30.080000pt;}
.y3_c00274{bottom:32.826667pt;}
.ye_c00274{bottom:35.521333pt;}
.y1_c00274{bottom:50.272400pt;}
.y21_c00274{bottom:83.072400pt;}
.y1f_c00274{bottom:97.632800pt;}
.y1e_c00274{bottom:151.226667pt;}
.y1c_c00274{bottom:204.826667pt;}
.y1b_c00274{bottom:258.466667pt;}
.y19_c00274{bottom:299.106667pt;}
.y18_c00274{bottom:339.748000pt;}
.y16_c00274{bottom:380.548000pt;}
.y14_c00274{bottom:421.186667pt;}
.y13_c00274{bottom:475.426667pt;}
.y11_c00274{bottom:529.852000pt;}
.y6_c00274{bottom:584.093333pt;}
.yd_c00274{bottom:650.652000pt;}
.yc_c00274{bottom:717.213333pt;}
.ya_c00274{bottom:771.654667pt;}
.y9_c00274{bottom:825.894667pt;}
.y8_c00274{bottom:880.294667pt;}
.y4_c00274{bottom:934.534667pt;}
.y2_c00274{bottom:988.934667pt;}
.h6_c00274{height:34.968828pt;}
.hd_c00274{height:40.000000pt;}
.h4_c00274{height:42.866250pt;}
.h2_c00274{height:42.895000pt;}
.h10_c00274{height:52.959867pt;}
.hf_c00274{height:52.960400pt;}
.he_c00274{height:52.992667pt;}
.h8_c00274{height:53.600000pt;}
.h5_c00274{height:53.758800pt;}
.h9_c00274{height:53.759867pt;}
.ha_c00274{height:53.791200pt;}
.hc_c00274{height:53.792667pt;}
.hb_c00274{height:65.920267pt;}
.h3_c00274{height:76.191733pt;}
.h7_c00274{height:404.185333pt;}
.h0_c00274{height:1122.559867pt;}
.h1_c00274{height:1122.666667pt;}
.w3_c00274{width:89.119733pt;}
.w4_c00274{width:133.152667pt;}
.w6_c00274{width:223.068000pt;}
.w5_c00274{width:411.588000pt;}
.w7_c00274{width:411.906667pt;}
.w2_c00274{width:635.293333pt;}
.w0_c00274{width:793.759733pt;}
.w1_c00274{width:794.000000pt;}
.x0_c00274{left:0.000000pt;}
.x4_c00274{left:4.320000pt;}
.x1_c00274{left:132.352667pt;}
.x2_c00274{left:137.306667pt;}
.x8_c00274{left:182.121333pt;}
.x3_c00274{left:183.561333pt;}
.x5_c00274{left:227.226667pt;}
.x6_c00274{left:361.026667pt;}
.x7_c00274{left:404.226667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b4afbce4f73be568c8a71d8a.woff2')format("woff");}.ff1_c00275{font-family:ff1_c00275;line-height:0.666504;font-style:normal;font-weight:normal;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_380e403b07e2c42bf66e9d53.woff2')format("woff");}.ff2_c00275{font-family:ff2_c00275;line-height:0.938965;font-style:normal;font-weight:normal;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_cb325950b7b3fc4424dbd819.woff2')format("woff");}.ff3_c00275{font-family:ff3_c00275;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00275;src:url('chunks/assets/font_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff4_c00275{font-family:ff4_c00275;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00275{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00275{vertical-align:0.000000px;}
.ls1_c00275{letter-spacing:0.000000px;}
.ls0_c00275{letter-spacing:0.214973px;}
.sc__c00275{text-shadow:none;}
.sc0_c00275{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00275{-webkit-text-stroke:0px transparent;}
.sc0_c00275{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00275{word-spacing:-15.012033px;}
.ws1_c00275{word-spacing:0.000000px;}
._2_c00275{margin-left:-1.234280px;}
._3_c00275{width:1.147852px;}
._1_c00275{width:911.881968px;}
._0_c00275{width:1345.983552px;}
.fc0_c00275{color:rgb(0,0,0);}
.fs1_c00275{font-size:54.000120px;}
.fs0_c00275{font-size:66.240000px;}
.y0_c00275{bottom:0.000000px;}
.y18_c00275{bottom:17.640000px;}
.y1b_c00275{bottom:17.641500px;}
.yf_c00275{bottom:24.481650px;}
.y21_c00275{bottom:25.019550px;}
.y1e_c00275{bottom:25.020000px;}
.yb_c00275{bottom:25.198500px;}
.y16_c00275{bottom:25.201500px;}
.y5_c00275{bottom:25.380000px;}
.y13_c00275{bottom:25.381500px;}
.y7_c00275{bottom:30.420000px;}
.y11_c00275{bottom:32.220000px;}
.y10_c00275{bottom:32.221500px;}
.y3_c00275{bottom:36.930000px;}
.ye_c00275{bottom:39.961500px;}
.y1_c00275{bottom:56.556450px;}
.y22_c00275{bottom:93.456450px;}
.y20_c00275{bottom:109.836900px;}
.y1f_c00275{bottom:170.130000px;}
.y1d_c00275{bottom:230.430000px;}
.y1c_c00275{bottom:290.775000px;}
.y1a_c00275{bottom:336.495000px;}
.y19_c00275{bottom:382.216500px;}
.y17_c00275{bottom:428.116500px;}
.y15_c00275{bottom:473.835000px;}
.y14_c00275{bottom:534.855000px;}
.y12_c00275{bottom:596.083500px;}
.y6_c00275{bottom:657.105000px;}
.yd_c00275{bottom:731.983500px;}
.yc_c00275{bottom:806.865000px;}
.ya_c00275{bottom:868.111500px;}
.y9_c00275{bottom:929.131500px;}
.y8_c00275{bottom:990.331500px;}
.y4_c00275{bottom:1051.351500px;}
.y2_c00275{bottom:1112.551500px;}
.h6_c00275{height:39.339931px;}
.hd_c00275{height:45.000000px;}
.h4_c00275{height:48.224531px;}
.h2_c00275{height:48.256875px;}
.h10_c00275{height:59.579850px;}
.hf_c00275{height:59.580450px;}
.he_c00275{height:59.616750px;}
.h8_c00275{height:60.300000px;}
.h5_c00275{height:60.478650px;}
.h9_c00275{height:60.479850px;}
.ha_c00275{height:60.515100px;}
.hc_c00275{height:60.516750px;}
.hb_c00275{height:74.160300px;}
.h3_c00275{height:85.715700px;}
.h7_c00275{height:454.708500px;}
.h0_c00275{height:1262.879850px;}
.h1_c00275{height:1263.000000px;}
.w3_c00275{width:100.259700px;}
.w4_c00275{width:149.796750px;}
.w6_c00275{width:250.951500px;}
.w5_c00275{width:463.036500px;}
.w7_c00275{width:463.395000px;}
.w2_c00275{width:714.705000px;}
.w0_c00275{width:892.979700px;}
.w1_c00275{width:893.250000px;}
.x0_c00275{left:0.000000px;}
.x4_c00275{left:4.860000px;}
.x1_c00275{left:148.896750px;}
.x2_c00275{left:154.470000px;}
.x8_c00275{left:204.886500px;}
.x3_c00275{left:206.506500px;}
.x5_c00275{left:255.630000px;}
.x6_c00275{left:406.155000px;}
.x7_c00275{left:444.136500px;}
@media print{
.v0_c00275{vertical-align:0.000000pt;}
.ls1_c00275{letter-spacing:0.000000pt;}
.ls0_c00275{letter-spacing:0.191087pt;}
.ws0_c00275{word-spacing:-13.344030pt;}
.ws1_c00275{word-spacing:0.000000pt;}
._2_c00275{margin-left:-1.097138pt;}
._3_c00275{width:1.020313pt;}
._1_c00275{width:810.561749pt;}
._0_c00275{width:1196.429824pt;}
.fs1_c00275{font-size:48.000107pt;}
.fs0_c00275{font-size:58.880000pt;}
.y0_c00275{bottom:0.000000pt;}
.y18_c00275{bottom:15.680000pt;}
.y1b_c00275{bottom:15.681333pt;}
.yf_c00275{bottom:21.761467pt;}
.y21_c00275{bottom:22.239600pt;}
.y1e_c00275{bottom:22.240000pt;}
.yb_c00275{bottom:22.398667pt;}
.y16_c00275{bottom:22.401333pt;}
.y5_c00275{bottom:22.560000pt;}
.y13_c00275{bottom:22.561333pt;}
.y7_c00275{bottom:27.040000pt;}
.y11_c00275{bottom:28.640000pt;}
.y10_c00275{bottom:28.641333pt;}
.y3_c00275{bottom:32.826667pt;}
.ye_c00275{bottom:35.521333pt;}
.y1_c00275{bottom:50.272400pt;}
.y22_c00275{bottom:83.072400pt;}
.y20_c00275{bottom:97.632800pt;}
.y1f_c00275{bottom:151.226667pt;}
.y1d_c00275{bottom:204.826667pt;}
.y1c_c00275{bottom:258.466667pt;}
.y1a_c00275{bottom:299.106667pt;}
.y19_c00275{bottom:339.748000pt;}
.y17_c00275{bottom:380.548000pt;}
.y15_c00275{bottom:421.186667pt;}
.y14_c00275{bottom:475.426667pt;}
.y12_c00275{bottom:529.852000pt;}
.y6_c00275{bottom:584.093333pt;}
.yd_c00275{bottom:650.652000pt;}
.yc_c00275{bottom:717.213333pt;}
.ya_c00275{bottom:771.654667pt;}
.y9_c00275{bottom:825.894667pt;}
.y8_c00275{bottom:880.294667pt;}
.y4_c00275{bottom:934.534667pt;}
.y2_c00275{bottom:988.934667pt;}
.h6_c00275{height:34.968828pt;}
.hd_c00275{height:40.000000pt;}
.h4_c00275{height:42.866250pt;}
.h2_c00275{height:42.895000pt;}
.h10_c00275{height:52.959867pt;}
.hf_c00275{height:52.960400pt;}
.he_c00275{height:52.992667pt;}
.h8_c00275{height:53.600000pt;}
.h5_c00275{height:53.758800pt;}
.h9_c00275{height:53.759867pt;}
.ha_c00275{height:53.791200pt;}
.hc_c00275{height:53.792667pt;}
.hb_c00275{height:65.920267pt;}
.h3_c00275{height:76.191733pt;}
.h7_c00275{height:404.185333pt;}
.h0_c00275{height:1122.559867pt;}
.h1_c00275{height:1122.666667pt;}
.w3_c00275{width:89.119733pt;}
.w4_c00275{width:133.152667pt;}
.w6_c00275{width:223.068000pt;}
.w5_c00275{width:411.588000pt;}
.w7_c00275{width:411.906667pt;}
.w2_c00275{width:635.293333pt;}
.w0_c00275{width:793.759733pt;}
.w1_c00275{width:794.000000pt;}
.x0_c00275{left:0.000000pt;}
.x4_c00275{left:4.320000pt;}
.x1_c00275{left:132.352667pt;}
.x2_c00275{left:137.306667pt;}
.x8_c00275{left:182.121333pt;}
.x3_c00275{left:183.561333pt;}
.x5_c00275{left:227.226667pt;}
.x6_c00275{left:361.026667pt;}
.x7_c00275{left:394.788000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b4afbce4f73be568c8a71d8a.woff2')format("woff");}.ff1_c00276{font-family:ff1_c00276;line-height:0.666504;font-style:normal;font-weight:normal;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_a076d8d3bfaa9003c710b988.woff2')format("woff");}.ff2_c00276{font-family:ff2_c00276;line-height:0.938965;font-style:normal;font-weight:normal;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_cb325950b7b3fc4424dbd819.woff2')format("woff");}.ff3_c00276{font-family:ff3_c00276;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00276;src:url('chunks/assets/font_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff4_c00276{font-family:ff4_c00276;line-height:0.666504;font-style: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;}
.ls1_c00276{letter-spacing:0.000000px;}
.ls0_c00276{letter-spacing:0.214973px;}
.sc__c00276{text-shadow:none;}
.sc0_c00276{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00276{-webkit-text-stroke:0px transparent;}
.sc0_c00276{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00276{word-spacing:-15.012033px;}
.ws1_c00276{word-spacing:0.000000px;}
._2_c00276{margin-left:-1.234280px;}
._3_c00276{width:1.147852px;}
._1_c00276{width:911.881968px;}
._0_c00276{width:1345.983552px;}
.fc0_c00276{color:rgb(0,0,0);}
.fs1_c00276{font-size:54.000120px;}
.fs0_c00276{font-size:66.240000px;}
.y0_c00276{bottom:0.000000px;}
.y18_c00276{bottom:17.640000px;}
.y1b_c00276{bottom:17.641500px;}
.yf_c00276{bottom:24.481650px;}
.y21_c00276{bottom:25.019550px;}
.y1e_c00276{bottom:25.020000px;}
.yb_c00276{bottom:25.198500px;}
.y16_c00276{bottom:25.201500px;}
.y5_c00276{bottom:25.380000px;}
.y13_c00276{bottom:25.381500px;}
.y11_c00276{bottom:32.220000px;}
.y10_c00276{bottom:32.221500px;}
.y3_c00276{bottom:36.930000px;}
.ye_c00276{bottom:39.961500px;}
.y7_c00276{bottom:53.820000px;}
.y1_c00276{bottom:56.556450px;}
.y20_c00276{bottom:109.836900px;}
.y1f_c00276{bottom:170.130000px;}
.y1d_c00276{bottom:230.430000px;}
.y1c_c00276{bottom:290.775000px;}
.y1a_c00276{bottom:336.495000px;}
.y19_c00276{bottom:382.216500px;}
.y17_c00276{bottom:428.116500px;}
.y15_c00276{bottom:473.835000px;}
.y14_c00276{bottom:534.855000px;}
.y12_c00276{bottom:596.083500px;}
.y6_c00276{bottom:657.105000px;}
.yd_c00276{bottom:731.983500px;}
.yc_c00276{bottom:806.865000px;}
.ya_c00276{bottom:868.111500px;}
.y9_c00276{bottom:929.131500px;}
.y8_c00276{bottom:990.331500px;}
.y4_c00276{bottom:1051.351500px;}
.y2_c00276{bottom:1112.551500px;}
.h6_c00276{height:39.339931px;}
.hd_c00276{height:45.000000px;}
.h4_c00276{height:48.224531px;}
.h2_c00276{height:48.256875px;}
.h10_c00276{height:59.579850px;}
.hf_c00276{height:59.580450px;}
.he_c00276{height:59.616750px;}
.h8_c00276{height:60.300000px;}
.h5_c00276{height:60.478650px;}
.h9_c00276{height:60.479850px;}
.ha_c00276{height:60.515100px;}
.hc_c00276{height:60.516750px;}
.hb_c00276{height:74.160300px;}
.h3_c00276{height:85.715700px;}
.h7_c00276{height:454.708500px;}
.h0_c00276{height:1262.879850px;}
.h1_c00276{height:1263.000000px;}
.w3_c00276{width:100.259700px;}
.w4_c00276{width:149.796750px;}
.w6_c00276{width:250.951500px;}
.w5_c00276{width:463.036500px;}
.w7_c00276{width:463.395000px;}
.w2_c00276{width:714.705000px;}
.w0_c00276{width:892.979700px;}
.w1_c00276{width:893.250000px;}
.x0_c00276{left:0.000000px;}
.x4_c00276{left:4.860000px;}
.x1_c00276{left:148.896750px;}
.x2_c00276{left:154.470000px;}
.x8_c00276{left:204.886500px;}
.x3_c00276{left:206.506500px;}
.x5_c00276{left:255.630000px;}
.x6_c00276{left:406.155000px;}
.x7_c00276{left:454.755000px;}
@media print{
.v0_c00276{vertical-align:0.000000pt;}
.ls1_c00276{letter-spacing:0.000000pt;}
.ls0_c00276{letter-spacing:0.191087pt;}
.ws0_c00276{word-spacing:-13.344030pt;}
.ws1_c00276{word-spacing:0.000000pt;}
._2_c00276{margin-left:-1.097138pt;}
._3_c00276{width:1.020313pt;}
._1_c00276{width:810.561749pt;}
._0_c00276{width:1196.429824pt;}
.fs1_c00276{font-size:48.000107pt;}
.fs0_c00276{font-size:58.880000pt;}
.y0_c00276{bottom:0.000000pt;}
.y18_c00276{bottom:15.680000pt;}
.y1b_c00276{bottom:15.681333pt;}
.yf_c00276{bottom:21.761467pt;}
.y21_c00276{bottom:22.239600pt;}
.y1e_c00276{bottom:22.240000pt;}
.yb_c00276{bottom:22.398667pt;}
.y16_c00276{bottom:22.401333pt;}
.y5_c00276{bottom:22.560000pt;}
.y13_c00276{bottom:22.561333pt;}
.y11_c00276{bottom:28.640000pt;}
.y10_c00276{bottom:28.641333pt;}
.y3_c00276{bottom:32.826667pt;}
.ye_c00276{bottom:35.521333pt;}
.y7_c00276{bottom:47.840000pt;}
.y1_c00276{bottom:50.272400pt;}
.y20_c00276{bottom:97.632800pt;}
.y1f_c00276{bottom:151.226667pt;}
.y1d_c00276{bottom:204.826667pt;}
.y1c_c00276{bottom:258.466667pt;}
.y1a_c00276{bottom:299.106667pt;}
.y19_c00276{bottom:339.748000pt;}
.y17_c00276{bottom:380.548000pt;}
.y15_c00276{bottom:421.186667pt;}
.y14_c00276{bottom:475.426667pt;}
.y12_c00276{bottom:529.852000pt;}
.y6_c00276{bottom:584.093333pt;}
.yd_c00276{bottom:650.652000pt;}
.yc_c00276{bottom:717.213333pt;}
.ya_c00276{bottom:771.654667pt;}
.y9_c00276{bottom:825.894667pt;}
.y8_c00276{bottom:880.294667pt;}
.y4_c00276{bottom:934.534667pt;}
.y2_c00276{bottom:988.934667pt;}
.h6_c00276{height:34.968828pt;}
.hd_c00276{height:40.000000pt;}
.h4_c00276{height:42.866250pt;}
.h2_c00276{height:42.895000pt;}
.h10_c00276{height:52.959867pt;}
.hf_c00276{height:52.960400pt;}
.he_c00276{height:52.992667pt;}
.h8_c00276{height:53.600000pt;}
.h5_c00276{height:53.758800pt;}
.h9_c00276{height:53.759867pt;}
.ha_c00276{height:53.791200pt;}
.hc_c00276{height:53.792667pt;}
.hb_c00276{height:65.920267pt;}
.h3_c00276{height:76.191733pt;}
.h7_c00276{height:404.185333pt;}
.h0_c00276{height:1122.559867pt;}
.h1_c00276{height:1122.666667pt;}
.w3_c00276{width:89.119733pt;}
.w4_c00276{width:133.152667pt;}
.w6_c00276{width:223.068000pt;}
.w5_c00276{width:411.588000pt;}
.w7_c00276{width:411.906667pt;}
.w2_c00276{width:635.293333pt;}
.w0_c00276{width:793.759733pt;}
.w1_c00276{width:794.000000pt;}
.x0_c00276{left:0.000000pt;}
.x4_c00276{left:4.320000pt;}
.x1_c00276{left:132.352667pt;}
.x2_c00276{left:137.306667pt;}
.x8_c00276{left:182.121333pt;}
.x3_c00276{left:183.561333pt;}
.x5_c00276{left:227.226667pt;}
.x6_c00276{left:361.026667pt;}
.x7_c00276{left:404.226667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b4afbce4f73be568c8a71d8a.woff2')format("woff");}.ff1_c00277{font-family:ff1_c00277;line-height:0.666504;font-style:normal;font-weight:normal;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_a076d8d3bfaa9003c710b988.woff2')format("woff");}.ff2_c00277{font-family:ff2_c00277;line-height:0.938965;font-style:normal;font-weight:normal;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_cb325950b7b3fc4424dbd819.woff2')format("woff");}.ff3_c00277{font-family:ff3_c00277;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00277;src:url('chunks/assets/font_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff4_c00277{font-family:ff4_c00277;line-height:0.666504;font-style: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;}
.ls1_c00277{letter-spacing:0.000000px;}
.ls0_c00277{letter-spacing:0.214973px;}
.sc__c00277{text-shadow:none;}
.sc0_c00277{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00277{-webkit-text-stroke:0px transparent;}
.sc0_c00277{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00277{word-spacing:-15.012033px;}
.ws1_c00277{word-spacing:0.000000px;}
._2_c00277{margin-left:-1.234280px;}
._3_c00277{width:1.147852px;}
._1_c00277{width:911.881968px;}
._0_c00277{width:1345.983552px;}
.fc0_c00277{color:rgb(0,0,0);}
.fs1_c00277{font-size:54.000120px;}
.fs0_c00277{font-size:66.240000px;}
.y0_c00277{bottom:0.000000px;}
.y18_c00277{bottom:17.640000px;}
.y1b_c00277{bottom:17.641500px;}
.yf_c00277{bottom:24.481650px;}
.y21_c00277{bottom:25.019550px;}
.y1e_c00277{bottom:25.020000px;}
.yb_c00277{bottom:25.198500px;}
.y16_c00277{bottom:25.201500px;}
.y5_c00277{bottom:25.380000px;}
.y13_c00277{bottom:25.381500px;}
.y11_c00277{bottom:32.220000px;}
.y10_c00277{bottom:32.221500px;}
.y3_c00277{bottom:36.930000px;}
.ye_c00277{bottom:39.961500px;}
.y7_c00277{bottom:53.820000px;}
.y1_c00277{bottom:56.556450px;}
.y22_c00277{bottom:93.456450px;}
.y20_c00277{bottom:109.836900px;}
.y1f_c00277{bottom:170.130000px;}
.y1d_c00277{bottom:230.430000px;}
.y1c_c00277{bottom:290.775000px;}
.y1a_c00277{bottom:336.495000px;}
.y19_c00277{bottom:382.216500px;}
.y17_c00277{bottom:428.116500px;}
.y15_c00277{bottom:473.835000px;}
.y14_c00277{bottom:534.855000px;}
.y12_c00277{bottom:596.083500px;}
.y6_c00277{bottom:657.105000px;}
.yd_c00277{bottom:731.983500px;}
.yc_c00277{bottom:806.865000px;}
.ya_c00277{bottom:868.111500px;}
.y9_c00277{bottom:929.131500px;}
.y8_c00277{bottom:990.331500px;}
.y4_c00277{bottom:1051.351500px;}
.y2_c00277{bottom:1112.551500px;}
.h6_c00277{height:39.339931px;}
.hd_c00277{height:45.000000px;}
.h4_c00277{height:48.224531px;}
.h2_c00277{height:48.256875px;}
.h10_c00277{height:59.579850px;}
.hf_c00277{height:59.580450px;}
.he_c00277{height:59.616750px;}
.h8_c00277{height:60.300000px;}
.h5_c00277{height:60.478650px;}
.h9_c00277{height:60.479850px;}
.ha_c00277{height:60.515100px;}
.hc_c00277{height:60.516750px;}
.hb_c00277{height:74.160300px;}
.h3_c00277{height:85.715700px;}
.h7_c00277{height:454.708500px;}
.h0_c00277{height:1262.879850px;}
.h1_c00277{height:1263.000000px;}
.w3_c00277{width:100.259700px;}
.w4_c00277{width:149.796750px;}
.w6_c00277{width:250.951500px;}
.w5_c00277{width:463.036500px;}
.w7_c00277{width:463.395000px;}
.w2_c00277{width:714.705000px;}
.w0_c00277{width:892.979700px;}
.w1_c00277{width:893.250000px;}
.x0_c00277{left:0.000000px;}
.x4_c00277{left:4.860000px;}
.x1_c00277{left:148.896750px;}
.x2_c00277{left:154.470000px;}
.x8_c00277{left:204.886500px;}
.x3_c00277{left:206.506500px;}
.x5_c00277{left:255.630000px;}
.x6_c00277{left:406.155000px;}
.x7_c00277{left:454.755000px;}
@media print{
.v0_c00277{vertical-align:0.000000pt;}
.ls1_c00277{letter-spacing:0.000000pt;}
.ls0_c00277{letter-spacing:0.191087pt;}
.ws0_c00277{word-spacing:-13.344030pt;}
.ws1_c00277{word-spacing:0.000000pt;}
._2_c00277{margin-left:-1.097138pt;}
._3_c00277{width:1.020313pt;}
._1_c00277{width:810.561749pt;}
._0_c00277{width:1196.429824pt;}
.fs1_c00277{font-size:48.000107pt;}
.fs0_c00277{font-size:58.880000pt;}
.y0_c00277{bottom:0.000000pt;}
.y18_c00277{bottom:15.680000pt;}
.y1b_c00277{bottom:15.681333pt;}
.yf_c00277{bottom:21.761467pt;}
.y21_c00277{bottom:22.239600pt;}
.y1e_c00277{bottom:22.240000pt;}
.yb_c00277{bottom:22.398667pt;}
.y16_c00277{bottom:22.401333pt;}
.y5_c00277{bottom:22.560000pt;}
.y13_c00277{bottom:22.561333pt;}
.y11_c00277{bottom:28.640000pt;}
.y10_c00277{bottom:28.641333pt;}
.y3_c00277{bottom:32.826667pt;}
.ye_c00277{bottom:35.521333pt;}
.y7_c00277{bottom:47.840000pt;}
.y1_c00277{bottom:50.272400pt;}
.y22_c00277{bottom:83.072400pt;}
.y20_c00277{bottom:97.632800pt;}
.y1f_c00277{bottom:151.226667pt;}
.y1d_c00277{bottom:204.826667pt;}
.y1c_c00277{bottom:258.466667pt;}
.y1a_c00277{bottom:299.106667pt;}
.y19_c00277{bottom:339.748000pt;}
.y17_c00277{bottom:380.548000pt;}
.y15_c00277{bottom:421.186667pt;}
.y14_c00277{bottom:475.426667pt;}
.y12_c00277{bottom:529.852000pt;}
.y6_c00277{bottom:584.093333pt;}
.yd_c00277{bottom:650.652000pt;}
.yc_c00277{bottom:717.213333pt;}
.ya_c00277{bottom:771.654667pt;}
.y9_c00277{bottom:825.894667pt;}
.y8_c00277{bottom:880.294667pt;}
.y4_c00277{bottom:934.534667pt;}
.y2_c00277{bottom:988.934667pt;}
.h6_c00277{height:34.968828pt;}
.hd_c00277{height:40.000000pt;}
.h4_c00277{height:42.866250pt;}
.h2_c00277{height:42.895000pt;}
.h10_c00277{height:52.959867pt;}
.hf_c00277{height:52.960400pt;}
.he_c00277{height:52.992667pt;}
.h8_c00277{height:53.600000pt;}
.h5_c00277{height:53.758800pt;}
.h9_c00277{height:53.759867pt;}
.ha_c00277{height:53.791200pt;}
.hc_c00277{height:53.792667pt;}
.hb_c00277{height:65.920267pt;}
.h3_c00277{height:76.191733pt;}
.h7_c00277{height:404.185333pt;}
.h0_c00277{height:1122.559867pt;}
.h1_c00277{height:1122.666667pt;}
.w3_c00277{width:89.119733pt;}
.w4_c00277{width:133.152667pt;}
.w6_c00277{width:223.068000pt;}
.w5_c00277{width:411.588000pt;}
.w7_c00277{width:411.906667pt;}
.w2_c00277{width:635.293333pt;}
.w0_c00277{width:793.759733pt;}
.w1_c00277{width:794.000000pt;}
.x0_c00277{left:0.000000pt;}
.x4_c00277{left:4.320000pt;}
.x1_c00277{left:132.352667pt;}
.x2_c00277{left:137.306667pt;}
.x8_c00277{left:182.121333pt;}
.x3_c00277{left:183.561333pt;}
.x5_c00277{left:227.226667pt;}
.x6_c00277{left:361.026667pt;}
.x7_c00277{left:404.226667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b4afbce4f73be568c8a71d8a.woff2')format("woff");}.ff1_c00278{font-family:ff1_c00278;line-height:0.666504;font-style:normal;font-weight:normal;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_10266b06f22c79aee050b923.woff2')format("woff");}.ff2_c00278{font-family:ff2_c00278;line-height:0.938965;font-style:normal;font-weight:normal;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_cb325950b7b3fc4424dbd819.woff2')format("woff");}.ff3_c00278{font-family:ff3_c00278;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00278;src:url('chunks/assets/font_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff4_c00278{font-family:ff4_c00278;line-height:0.666504;font-style: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;}
.ls1_c00278{letter-spacing:0.000000px;}
.ls0_c00278{letter-spacing:0.214973px;}
.sc__c00278{text-shadow:none;}
.sc0_c00278{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00278{-webkit-text-stroke:0px transparent;}
.sc0_c00278{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00278{word-spacing:-15.012033px;}
.ws1_c00278{word-spacing:0.000000px;}
._2_c00278{margin-left:-1.234280px;}
._3_c00278{width:1.147852px;}
._1_c00278{width:911.881968px;}
._0_c00278{width:1345.983552px;}
.fc0_c00278{color:rgb(0,0,0);}
.fs1_c00278{font-size:54.000120px;}
.fs0_c00278{font-size:66.240000px;}
.y0_c00278{bottom:0.000000px;}
.y18_c00278{bottom:17.640000px;}
.y1b_c00278{bottom:17.641500px;}
.yf_c00278{bottom:24.481650px;}
.y21_c00278{bottom:25.019550px;}
.y1e_c00278{bottom:25.020000px;}
.yb_c00278{bottom:25.198500px;}
.y16_c00278{bottom:25.201500px;}
.y5_c00278{bottom:25.380000px;}
.y13_c00278{bottom:25.381500px;}
.y11_c00278{bottom:32.220000px;}
.y10_c00278{bottom:32.221500px;}
.y3_c00278{bottom:36.930000px;}
.ye_c00278{bottom:39.961500px;}
.y7_c00278{bottom:53.820000px;}
.y1_c00278{bottom:56.556450px;}
.y22_c00278{bottom:93.456450px;}
.y20_c00278{bottom:109.836900px;}
.y1f_c00278{bottom:170.130000px;}
.y1d_c00278{bottom:230.430000px;}
.y1c_c00278{bottom:290.775000px;}
.y1a_c00278{bottom:336.495000px;}
.y19_c00278{bottom:382.216500px;}
.y17_c00278{bottom:428.116500px;}
.y15_c00278{bottom:473.835000px;}
.y14_c00278{bottom:534.855000px;}
.y12_c00278{bottom:596.083500px;}
.y6_c00278{bottom:657.105000px;}
.yd_c00278{bottom:731.983500px;}
.yc_c00278{bottom:806.865000px;}
.ya_c00278{bottom:868.111500px;}
.y9_c00278{bottom:929.131500px;}
.y8_c00278{bottom:990.331500px;}
.y4_c00278{bottom:1051.351500px;}
.y2_c00278{bottom:1112.551500px;}
.h6_c00278{height:39.339931px;}
.hd_c00278{height:45.000000px;}
.h4_c00278{height:48.224531px;}
.h2_c00278{height:48.256875px;}
.h10_c00278{height:59.579850px;}
.hf_c00278{height:59.580450px;}
.he_c00278{height:59.616750px;}
.h8_c00278{height:60.300000px;}
.h5_c00278{height:60.478650px;}
.h9_c00278{height:60.479850px;}
.ha_c00278{height:60.515100px;}
.hc_c00278{height:60.516750px;}
.hb_c00278{height:74.160300px;}
.h3_c00278{height:85.715700px;}
.h7_c00278{height:454.708500px;}
.h0_c00278{height:1262.879850px;}
.h1_c00278{height:1263.000000px;}
.w3_c00278{width:100.259700px;}
.w4_c00278{width:149.796750px;}
.w6_c00278{width:250.951500px;}
.w5_c00278{width:463.036500px;}
.w7_c00278{width:463.395000px;}
.w2_c00278{width:714.705000px;}
.w0_c00278{width:892.979700px;}
.w1_c00278{width:893.250000px;}
.x0_c00278{left:0.000000px;}
.x4_c00278{left:4.860000px;}
.x1_c00278{left:148.896750px;}
.x2_c00278{left:154.470000px;}
.x8_c00278{left:204.886500px;}
.x3_c00278{left:206.506500px;}
.x5_c00278{left:255.630000px;}
.x6_c00278{left:406.155000px;}
.x7_c00278{left:454.755000px;}
@media print{
.v0_c00278{vertical-align:0.000000pt;}
.ls1_c00278{letter-spacing:0.000000pt;}
.ls0_c00278{letter-spacing:0.191087pt;}
.ws0_c00278{word-spacing:-13.344030pt;}
.ws1_c00278{word-spacing:0.000000pt;}
._2_c00278{margin-left:-1.097138pt;}
._3_c00278{width:1.020313pt;}
._1_c00278{width:810.561749pt;}
._0_c00278{width:1196.429824pt;}
.fs1_c00278{font-size:48.000107pt;}
.fs0_c00278{font-size:58.880000pt;}
.y0_c00278{bottom:0.000000pt;}
.y18_c00278{bottom:15.680000pt;}
.y1b_c00278{bottom:15.681333pt;}
.yf_c00278{bottom:21.761467pt;}
.y21_c00278{bottom:22.239600pt;}
.y1e_c00278{bottom:22.240000pt;}
.yb_c00278{bottom:22.398667pt;}
.y16_c00278{bottom:22.401333pt;}
.y5_c00278{bottom:22.560000pt;}
.y13_c00278{bottom:22.561333pt;}
.y11_c00278{bottom:28.640000pt;}
.y10_c00278{bottom:28.641333pt;}
.y3_c00278{bottom:32.826667pt;}
.ye_c00278{bottom:35.521333pt;}
.y7_c00278{bottom:47.840000pt;}
.y1_c00278{bottom:50.272400pt;}
.y22_c00278{bottom:83.072400pt;}
.y20_c00278{bottom:97.632800pt;}
.y1f_c00278{bottom:151.226667pt;}
.y1d_c00278{bottom:204.826667pt;}
.y1c_c00278{bottom:258.466667pt;}
.y1a_c00278{bottom:299.106667pt;}
.y19_c00278{bottom:339.748000pt;}
.y17_c00278{bottom:380.548000pt;}
.y15_c00278{bottom:421.186667pt;}
.y14_c00278{bottom:475.426667pt;}
.y12_c00278{bottom:529.852000pt;}
.y6_c00278{bottom:584.093333pt;}
.yd_c00278{bottom:650.652000pt;}
.yc_c00278{bottom:717.213333pt;}
.ya_c00278{bottom:771.654667pt;}
.y9_c00278{bottom:825.894667pt;}
.y8_c00278{bottom:880.294667pt;}
.y4_c00278{bottom:934.534667pt;}
.y2_c00278{bottom:988.934667pt;}
.h6_c00278{height:34.968828pt;}
.hd_c00278{height:40.000000pt;}
.h4_c00278{height:42.866250pt;}
.h2_c00278{height:42.895000pt;}
.h10_c00278{height:52.959867pt;}
.hf_c00278{height:52.960400pt;}
.he_c00278{height:52.992667pt;}
.h8_c00278{height:53.600000pt;}
.h5_c00278{height:53.758800pt;}
.h9_c00278{height:53.759867pt;}
.ha_c00278{height:53.791200pt;}
.hc_c00278{height:53.792667pt;}
.hb_c00278{height:65.920267pt;}
.h3_c00278{height:76.191733pt;}
.h7_c00278{height:404.185333pt;}
.h0_c00278{height:1122.559867pt;}
.h1_c00278{height:1122.666667pt;}
.w3_c00278{width:89.119733pt;}
.w4_c00278{width:133.152667pt;}
.w6_c00278{width:223.068000pt;}
.w5_c00278{width:411.588000pt;}
.w7_c00278{width:411.906667pt;}
.w2_c00278{width:635.293333pt;}
.w0_c00278{width:793.759733pt;}
.w1_c00278{width:794.000000pt;}
.x0_c00278{left:0.000000pt;}
.x4_c00278{left:4.320000pt;}
.x1_c00278{left:132.352667pt;}
.x2_c00278{left:137.306667pt;}
.x8_c00278{left:182.121333pt;}
.x3_c00278{left:183.561333pt;}
.x5_c00278{left:227.226667pt;}
.x6_c00278{left:361.026667pt;}
.x7_c00278{left:404.226667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b4afbce4f73be568c8a71d8a.woff2')format("woff");}.ff1_c00279{font-family:ff1_c00279;line-height:0.666504;font-style:normal;font-weight:normal;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_556b67fdafb17875ff34858d.woff2')format("woff");}.ff2_c00279{font-family:ff2_c00279;line-height:0.938965;font-style:normal;font-weight:normal;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_cb325950b7b3fc4424dbd819.woff2')format("woff");}.ff3_c00279{font-family:ff3_c00279;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00279;src:url('chunks/assets/font_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff4_c00279{font-family:ff4_c00279;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00279{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00279{vertical-align:0.000000px;}
.ls1_c00279{letter-spacing:0.000000px;}
.ls0_c00279{letter-spacing:0.214973px;}
.sc__c00279{text-shadow:none;}
.sc0_c00279{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00279{-webkit-text-stroke:0px transparent;}
.sc0_c00279{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00279{word-spacing:-15.012033px;}
.ws1_c00279{word-spacing:0.000000px;}
._2_c00279{margin-left:-1.234280px;}
._3_c00279{width:1.110640px;}
._1_c00279{width:911.881968px;}
._0_c00279{width:1345.983552px;}
.fc0_c00279{color:rgb(0,0,0);}
.fs1_c00279{font-size:54.000120px;}
.fs0_c00279{font-size:66.240000px;}
.y0_c00279{bottom:0.000000px;}
.y18_c00279{bottom:17.640000px;}
.y1b_c00279{bottom:17.641500px;}
.yf_c00279{bottom:24.481650px;}
.y21_c00279{bottom:25.019550px;}
.y1e_c00279{bottom:25.020000px;}
.yb_c00279{bottom:25.198500px;}
.y16_c00279{bottom:25.201500px;}
.y5_c00279{bottom:25.380000px;}
.y13_c00279{bottom:25.381500px;}
.y11_c00279{bottom:32.220000px;}
.y10_c00279{bottom:32.221500px;}
.y3_c00279{bottom:36.930000px;}
.ye_c00279{bottom:39.961500px;}
.y7_c00279{bottom:53.820000px;}
.y1_c00279{bottom:56.556450px;}
.y22_c00279{bottom:93.456450px;}
.y20_c00279{bottom:109.836900px;}
.y1f_c00279{bottom:170.130000px;}
.y1d_c00279{bottom:230.430000px;}
.y1c_c00279{bottom:290.775000px;}
.y1a_c00279{bottom:336.495000px;}
.y19_c00279{bottom:382.216500px;}
.y17_c00279{bottom:428.116500px;}
.y15_c00279{bottom:473.835000px;}
.y14_c00279{bottom:534.855000px;}
.y12_c00279{bottom:596.083500px;}
.y6_c00279{bottom:657.105000px;}
.yd_c00279{bottom:731.983500px;}
.yc_c00279{bottom:806.865000px;}
.ya_c00279{bottom:868.111500px;}
.y9_c00279{bottom:929.131500px;}
.y8_c00279{bottom:990.331500px;}
.y4_c00279{bottom:1051.351500px;}
.y2_c00279{bottom:1112.551500px;}
.h6_c00279{height:39.339931px;}
.hd_c00279{height:45.000000px;}
.h4_c00279{height:48.224531px;}
.h2_c00279{height:48.256875px;}
.h10_c00279{height:59.579850px;}
.hf_c00279{height:59.580450px;}
.he_c00279{height:59.616750px;}
.h8_c00279{height:60.300000px;}
.h5_c00279{height:60.478650px;}
.h9_c00279{height:60.479850px;}
.ha_c00279{height:60.515100px;}
.hc_c00279{height:60.516750px;}
.hb_c00279{height:74.160300px;}
.h3_c00279{height:85.715700px;}
.h7_c00279{height:454.708500px;}
.h0_c00279{height:1262.879850px;}
.h1_c00279{height:1263.000000px;}
.w3_c00279{width:100.259700px;}
.w4_c00279{width:149.796750px;}
.w6_c00279{width:250.951500px;}
.w5_c00279{width:463.036500px;}
.w7_c00279{width:463.395000px;}
.w2_c00279{width:714.705000px;}
.w0_c00279{width:892.979700px;}
.w1_c00279{width:893.250000px;}
.x0_c00279{left:0.000000px;}
.x4_c00279{left:4.860000px;}
.x1_c00279{left:148.896750px;}
.x2_c00279{left:154.470000px;}
.x8_c00279{left:204.886500px;}
.x3_c00279{left:206.506500px;}
.x5_c00279{left:255.630000px;}
.x6_c00279{left:406.155000px;}
.x7_c00279{left:454.755000px;}
@media print{
.v0_c00279{vertical-align:0.000000pt;}
.ls1_c00279{letter-spacing:0.000000pt;}
.ls0_c00279{letter-spacing:0.191087pt;}
.ws0_c00279{word-spacing:-13.344030pt;}
.ws1_c00279{word-spacing:0.000000pt;}
._2_c00279{margin-left:-1.097138pt;}
._3_c00279{width:0.987236pt;}
._1_c00279{width:810.561749pt;}
._0_c00279{width:1196.429824pt;}
.fs1_c00279{font-size:48.000107pt;}
.fs0_c00279{font-size:58.880000pt;}
.y0_c00279{bottom:0.000000pt;}
.y18_c00279{bottom:15.680000pt;}
.y1b_c00279{bottom:15.681333pt;}
.yf_c00279{bottom:21.761467pt;}
.y21_c00279{bottom:22.239600pt;}
.y1e_c00279{bottom:22.240000pt;}
.yb_c00279{bottom:22.398667pt;}
.y16_c00279{bottom:22.401333pt;}
.y5_c00279{bottom:22.560000pt;}
.y13_c00279{bottom:22.561333pt;}
.y11_c00279{bottom:28.640000pt;}
.y10_c00279{bottom:28.641333pt;}
.y3_c00279{bottom:32.826667pt;}
.ye_c00279{bottom:35.521333pt;}
.y7_c00279{bottom:47.840000pt;}
.y1_c00279{bottom:50.272400pt;}
.y22_c00279{bottom:83.072400pt;}
.y20_c00279{bottom:97.632800pt;}
.y1f_c00279{bottom:151.226667pt;}
.y1d_c00279{bottom:204.826667pt;}
.y1c_c00279{bottom:258.466667pt;}
.y1a_c00279{bottom:299.106667pt;}
.y19_c00279{bottom:339.748000pt;}
.y17_c00279{bottom:380.548000pt;}
.y15_c00279{bottom:421.186667pt;}
.y14_c00279{bottom:475.426667pt;}
.y12_c00279{bottom:529.852000pt;}
.y6_c00279{bottom:584.093333pt;}
.yd_c00279{bottom:650.652000pt;}
.yc_c00279{bottom:717.213333pt;}
.ya_c00279{bottom:771.654667pt;}
.y9_c00279{bottom:825.894667pt;}
.y8_c00279{bottom:880.294667pt;}
.y4_c00279{bottom:934.534667pt;}
.y2_c00279{bottom:988.934667pt;}
.h6_c00279{height:34.968828pt;}
.hd_c00279{height:40.000000pt;}
.h4_c00279{height:42.866250pt;}
.h2_c00279{height:42.895000pt;}
.h10_c00279{height:52.959867pt;}
.hf_c00279{height:52.960400pt;}
.he_c00279{height:52.992667pt;}
.h8_c00279{height:53.600000pt;}
.h5_c00279{height:53.758800pt;}
.h9_c00279{height:53.759867pt;}
.ha_c00279{height:53.791200pt;}
.hc_c00279{height:53.792667pt;}
.hb_c00279{height:65.920267pt;}
.h3_c00279{height:76.191733pt;}
.h7_c00279{height:404.185333pt;}
.h0_c00279{height:1122.559867pt;}
.h1_c00279{height:1122.666667pt;}
.w3_c00279{width:89.119733pt;}
.w4_c00279{width:133.152667pt;}
.w6_c00279{width:223.068000pt;}
.w5_c00279{width:411.588000pt;}
.w7_c00279{width:411.906667pt;}
.w2_c00279{width:635.293333pt;}
.w0_c00279{width:793.759733pt;}
.w1_c00279{width:794.000000pt;}
.x0_c00279{left:0.000000pt;}
.x4_c00279{left:4.320000pt;}
.x1_c00279{left:132.352667pt;}
.x2_c00279{left:137.306667pt;}
.x8_c00279{left:182.121333pt;}
.x3_c00279{left:183.561333pt;}
.x5_c00279{left:227.226667pt;}
.x6_c00279{left:361.026667pt;}
.x7_c00279{left:404.226667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b4afbce4f73be568c8a71d8a.woff2')format("woff");}.ff1_c00280{font-family:ff1_c00280;line-height:0.666504;font-style:normal;font-weight:normal;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_501420977117ea560dae5ba4.woff2')format("woff");}.ff2_c00280{font-family:ff2_c00280;line-height:0.938965;font-style:normal;font-weight:normal;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_cb325950b7b3fc4424dbd819.woff2')format("woff");}.ff3_c00280{font-family:ff3_c00280;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00280;src:url('chunks/assets/font_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff4_c00280{font-family:ff4_c00280;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00280{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00280{vertical-align:0.000000px;}
.ls1_c00280{letter-spacing:0.000000px;}
.ls0_c00280{letter-spacing:0.214973px;}
.sc__c00280{text-shadow:none;}
.sc0_c00280{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00280{-webkit-text-stroke:0px transparent;}
.sc0_c00280{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00280{word-spacing:-15.012033px;}
.ws1_c00280{word-spacing:0.000000px;}
._2_c00280{margin-left:-1.234280px;}
._3_c00280{width:1.147852px;}
._1_c00280{width:911.881968px;}
._0_c00280{width:1345.983552px;}
.fc0_c00280{color:rgb(0,0,0);}
.fs1_c00280{font-size:54.000120px;}
.fs0_c00280{font-size:66.240000px;}
.y0_c00280{bottom:0.000000px;}
.y18_c00280{bottom:17.640000px;}
.y1b_c00280{bottom:17.641500px;}
.yf_c00280{bottom:24.481650px;}
.y21_c00280{bottom:25.019550px;}
.y1e_c00280{bottom:25.020000px;}
.yb_c00280{bottom:25.198500px;}
.y16_c00280{bottom:25.201500px;}
.y5_c00280{bottom:25.380000px;}
.y13_c00280{bottom:25.381500px;}
.y11_c00280{bottom:32.220000px;}
.y10_c00280{bottom:32.221500px;}
.y3_c00280{bottom:36.930000px;}
.ye_c00280{bottom:39.961500px;}
.y7_c00280{bottom:53.820000px;}
.y1_c00280{bottom:56.556450px;}
.y22_c00280{bottom:93.456450px;}
.y20_c00280{bottom:109.836900px;}
.y1f_c00280{bottom:170.130000px;}
.y1d_c00280{bottom:230.430000px;}
.y1c_c00280{bottom:290.775000px;}
.y1a_c00280{bottom:336.495000px;}
.y19_c00280{bottom:382.216500px;}
.y17_c00280{bottom:428.116500px;}
.y15_c00280{bottom:473.835000px;}
.y14_c00280{bottom:534.855000px;}
.y12_c00280{bottom:596.083500px;}
.y6_c00280{bottom:657.105000px;}
.yd_c00280{bottom:731.983500px;}
.yc_c00280{bottom:806.865000px;}
.ya_c00280{bottom:868.111500px;}
.y9_c00280{bottom:929.131500px;}
.y8_c00280{bottom:990.331500px;}
.y4_c00280{bottom:1051.351500px;}
.y2_c00280{bottom:1112.551500px;}
.h6_c00280{height:39.339931px;}
.hd_c00280{height:45.000000px;}
.h4_c00280{height:48.224531px;}
.h2_c00280{height:48.256875px;}
.h10_c00280{height:59.579850px;}
.hf_c00280{height:59.580450px;}
.he_c00280{height:59.616750px;}
.h8_c00280{height:60.300000px;}
.h5_c00280{height:60.478650px;}
.h9_c00280{height:60.479850px;}
.ha_c00280{height:60.515100px;}
.hc_c00280{height:60.516750px;}
.hb_c00280{height:74.160300px;}
.h3_c00280{height:85.715700px;}
.h7_c00280{height:454.708500px;}
.h0_c00280{height:1262.879850px;}
.h1_c00280{height:1263.000000px;}
.w3_c00280{width:100.259700px;}
.w4_c00280{width:149.796750px;}
.w6_c00280{width:250.951500px;}
.w5_c00280{width:463.036500px;}
.w7_c00280{width:463.395000px;}
.w2_c00280{width:714.705000px;}
.w0_c00280{width:892.979700px;}
.w1_c00280{width:893.250000px;}
.x0_c00280{left:0.000000px;}
.x4_c00280{left:4.860000px;}
.x1_c00280{left:148.896750px;}
.x2_c00280{left:154.470000px;}
.x8_c00280{left:204.886500px;}
.x3_c00280{left:206.506500px;}
.x5_c00280{left:255.630000px;}
.x6_c00280{left:406.155000px;}
.x7_c00280{left:454.755000px;}
@media print{
.v0_c00280{vertical-align:0.000000pt;}
.ls1_c00280{letter-spacing:0.000000pt;}
.ls0_c00280{letter-spacing:0.191087pt;}
.ws0_c00280{word-spacing:-13.344030pt;}
.ws1_c00280{word-spacing:0.000000pt;}
._2_c00280{margin-left:-1.097138pt;}
._3_c00280{width:1.020313pt;}
._1_c00280{width:810.561749pt;}
._0_c00280{width:1196.429824pt;}
.fs1_c00280{font-size:48.000107pt;}
.fs0_c00280{font-size:58.880000pt;}
.y0_c00280{bottom:0.000000pt;}
.y18_c00280{bottom:15.680000pt;}
.y1b_c00280{bottom:15.681333pt;}
.yf_c00280{bottom:21.761467pt;}
.y21_c00280{bottom:22.239600pt;}
.y1e_c00280{bottom:22.240000pt;}
.yb_c00280{bottom:22.398667pt;}
.y16_c00280{bottom:22.401333pt;}
.y5_c00280{bottom:22.560000pt;}
.y13_c00280{bottom:22.561333pt;}
.y11_c00280{bottom:28.640000pt;}
.y10_c00280{bottom:28.641333pt;}
.y3_c00280{bottom:32.826667pt;}
.ye_c00280{bottom:35.521333pt;}
.y7_c00280{bottom:47.840000pt;}
.y1_c00280{bottom:50.272400pt;}
.y22_c00280{bottom:83.072400pt;}
.y20_c00280{bottom:97.632800pt;}
.y1f_c00280{bottom:151.226667pt;}
.y1d_c00280{bottom:204.826667pt;}
.y1c_c00280{bottom:258.466667pt;}
.y1a_c00280{bottom:299.106667pt;}
.y19_c00280{bottom:339.748000pt;}
.y17_c00280{bottom:380.548000pt;}
.y15_c00280{bottom:421.186667pt;}
.y14_c00280{bottom:475.426667pt;}
.y12_c00280{bottom:529.852000pt;}
.y6_c00280{bottom:584.093333pt;}
.yd_c00280{bottom:650.652000pt;}
.yc_c00280{bottom:717.213333pt;}
.ya_c00280{bottom:771.654667pt;}
.y9_c00280{bottom:825.894667pt;}
.y8_c00280{bottom:880.294667pt;}
.y4_c00280{bottom:934.534667pt;}
.y2_c00280{bottom:988.934667pt;}
.h6_c00280{height:34.968828pt;}
.hd_c00280{height:40.000000pt;}
.h4_c00280{height:42.866250pt;}
.h2_c00280{height:42.895000pt;}
.h10_c00280{height:52.959867pt;}
.hf_c00280{height:52.960400pt;}
.he_c00280{height:52.992667pt;}
.h8_c00280{height:53.600000pt;}
.h5_c00280{height:53.758800pt;}
.h9_c00280{height:53.759867pt;}
.ha_c00280{height:53.791200pt;}
.hc_c00280{height:53.792667pt;}
.hb_c00280{height:65.920267pt;}
.h3_c00280{height:76.191733pt;}
.h7_c00280{height:404.185333pt;}
.h0_c00280{height:1122.559867pt;}
.h1_c00280{height:1122.666667pt;}
.w3_c00280{width:89.119733pt;}
.w4_c00280{width:133.152667pt;}
.w6_c00280{width:223.068000pt;}
.w5_c00280{width:411.588000pt;}
.w7_c00280{width:411.906667pt;}
.w2_c00280{width:635.293333pt;}
.w0_c00280{width:793.759733pt;}
.w1_c00280{width:794.000000pt;}
.x0_c00280{left:0.000000pt;}
.x4_c00280{left:4.320000pt;}
.x1_c00280{left:132.352667pt;}
.x2_c00280{left:137.306667pt;}
.x8_c00280{left:182.121333pt;}
.x3_c00280{left:183.561333pt;}
.x5_c00280{left:227.226667pt;}
.x6_c00280{left:361.026667pt;}
.x7_c00280{left:404.226667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b4afbce4f73be568c8a71d8a.woff2')format("woff");}.ff1_c00281{font-family:ff1_c00281;line-height:0.666504;font-style:normal;font-weight:normal;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_11e615dd095d8438bf065893.woff2')format("woff");}.ff2_c00281{font-family:ff2_c00281;line-height:0.938965;font-style:normal;font-weight:normal;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_cb325950b7b3fc4424dbd819.woff2')format("woff");}.ff3_c00281{font-family:ff3_c00281;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00281;src:url('chunks/assets/font_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff4_c00281{font-family:ff4_c00281;line-height:0.666504;font-style: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;}
.ls1_c00281{letter-spacing:0.000000px;}
.ls0_c00281{letter-spacing:0.214973px;}
.sc__c00281{text-shadow:none;}
.sc0_c00281{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00281{-webkit-text-stroke:0px transparent;}
.sc0_c00281{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00281{word-spacing:-15.012033px;}
.ws1_c00281{word-spacing:0.000000px;}
._2_c00281{margin-left:-1.234280px;}
._3_c00281{width:1.147852px;}
._1_c00281{width:911.881968px;}
._0_c00281{width:1345.983552px;}
.fc0_c00281{color:rgb(0,0,0);}
.fs1_c00281{font-size:54.000120px;}
.fs0_c00281{font-size:66.240000px;}
.y0_c00281{bottom:0.000000px;}
.y18_c00281{bottom:17.640000px;}
.y1b_c00281{bottom:17.641500px;}
.yf_c00281{bottom:24.481650px;}
.y21_c00281{bottom:25.019550px;}
.y1e_c00281{bottom:25.020000px;}
.yb_c00281{bottom:25.198500px;}
.y16_c00281{bottom:25.201500px;}
.y5_c00281{bottom:25.380000px;}
.y13_c00281{bottom:25.381500px;}
.y11_c00281{bottom:32.220000px;}
.y10_c00281{bottom:32.221500px;}
.y3_c00281{bottom:36.930000px;}
.ye_c00281{bottom:39.961500px;}
.y7_c00281{bottom:53.820000px;}
.y1_c00281{bottom:56.556450px;}
.y22_c00281{bottom:93.456450px;}
.y20_c00281{bottom:109.836900px;}
.y1f_c00281{bottom:170.130000px;}
.y1d_c00281{bottom:230.430000px;}
.y1c_c00281{bottom:290.775000px;}
.y1a_c00281{bottom:336.495000px;}
.y19_c00281{bottom:382.216500px;}
.y17_c00281{bottom:428.116500px;}
.y15_c00281{bottom:473.835000px;}
.y14_c00281{bottom:534.855000px;}
.y12_c00281{bottom:596.083500px;}
.y6_c00281{bottom:657.105000px;}
.yd_c00281{bottom:731.983500px;}
.yc_c00281{bottom:806.865000px;}
.ya_c00281{bottom:868.111500px;}
.y9_c00281{bottom:929.131500px;}
.y8_c00281{bottom:990.331500px;}
.y4_c00281{bottom:1051.351500px;}
.y2_c00281{bottom:1112.551500px;}
.h6_c00281{height:39.339931px;}
.hd_c00281{height:45.000000px;}
.h4_c00281{height:48.224531px;}
.h2_c00281{height:48.256875px;}
.h10_c00281{height:59.579850px;}
.hf_c00281{height:59.580450px;}
.he_c00281{height:59.616750px;}
.h8_c00281{height:60.300000px;}
.h5_c00281{height:60.478650px;}
.h9_c00281{height:60.479850px;}
.ha_c00281{height:60.515100px;}
.hc_c00281{height:60.516750px;}
.hb_c00281{height:74.160300px;}
.h3_c00281{height:85.715700px;}
.h7_c00281{height:454.708500px;}
.h0_c00281{height:1262.879850px;}
.h1_c00281{height:1263.000000px;}
.w3_c00281{width:100.259700px;}
.w4_c00281{width:149.796750px;}
.w6_c00281{width:250.951500px;}
.w5_c00281{width:463.036500px;}
.w7_c00281{width:463.395000px;}
.w2_c00281{width:714.705000px;}
.w0_c00281{width:892.979700px;}
.w1_c00281{width:893.250000px;}
.x0_c00281{left:0.000000px;}
.x4_c00281{left:4.860000px;}
.x1_c00281{left:148.896750px;}
.x2_c00281{left:154.470000px;}
.x8_c00281{left:204.886500px;}
.x3_c00281{left:206.506500px;}
.x5_c00281{left:255.630000px;}
.x6_c00281{left:406.155000px;}
.x7_c00281{left:454.755000px;}
@media print{
.v0_c00281{vertical-align:0.000000pt;}
.ls1_c00281{letter-spacing:0.000000pt;}
.ls0_c00281{letter-spacing:0.191087pt;}
.ws0_c00281{word-spacing:-13.344030pt;}
.ws1_c00281{word-spacing:0.000000pt;}
._2_c00281{margin-left:-1.097138pt;}
._3_c00281{width:1.020313pt;}
._1_c00281{width:810.561749pt;}
._0_c00281{width:1196.429824pt;}
.fs1_c00281{font-size:48.000107pt;}
.fs0_c00281{font-size:58.880000pt;}
.y0_c00281{bottom:0.000000pt;}
.y18_c00281{bottom:15.680000pt;}
.y1b_c00281{bottom:15.681333pt;}
.yf_c00281{bottom:21.761467pt;}
.y21_c00281{bottom:22.239600pt;}
.y1e_c00281{bottom:22.240000pt;}
.yb_c00281{bottom:22.398667pt;}
.y16_c00281{bottom:22.401333pt;}
.y5_c00281{bottom:22.560000pt;}
.y13_c00281{bottom:22.561333pt;}
.y11_c00281{bottom:28.640000pt;}
.y10_c00281{bottom:28.641333pt;}
.y3_c00281{bottom:32.826667pt;}
.ye_c00281{bottom:35.521333pt;}
.y7_c00281{bottom:47.840000pt;}
.y1_c00281{bottom:50.272400pt;}
.y22_c00281{bottom:83.072400pt;}
.y20_c00281{bottom:97.632800pt;}
.y1f_c00281{bottom:151.226667pt;}
.y1d_c00281{bottom:204.826667pt;}
.y1c_c00281{bottom:258.466667pt;}
.y1a_c00281{bottom:299.106667pt;}
.y19_c00281{bottom:339.748000pt;}
.y17_c00281{bottom:380.548000pt;}
.y15_c00281{bottom:421.186667pt;}
.y14_c00281{bottom:475.426667pt;}
.y12_c00281{bottom:529.852000pt;}
.y6_c00281{bottom:584.093333pt;}
.yd_c00281{bottom:650.652000pt;}
.yc_c00281{bottom:717.213333pt;}
.ya_c00281{bottom:771.654667pt;}
.y9_c00281{bottom:825.894667pt;}
.y8_c00281{bottom:880.294667pt;}
.y4_c00281{bottom:934.534667pt;}
.y2_c00281{bottom:988.934667pt;}
.h6_c00281{height:34.968828pt;}
.hd_c00281{height:40.000000pt;}
.h4_c00281{height:42.866250pt;}
.h2_c00281{height:42.895000pt;}
.h10_c00281{height:52.959867pt;}
.hf_c00281{height:52.960400pt;}
.he_c00281{height:52.992667pt;}
.h8_c00281{height:53.600000pt;}
.h5_c00281{height:53.758800pt;}
.h9_c00281{height:53.759867pt;}
.ha_c00281{height:53.791200pt;}
.hc_c00281{height:53.792667pt;}
.hb_c00281{height:65.920267pt;}
.h3_c00281{height:76.191733pt;}
.h7_c00281{height:404.185333pt;}
.h0_c00281{height:1122.559867pt;}
.h1_c00281{height:1122.666667pt;}
.w3_c00281{width:89.119733pt;}
.w4_c00281{width:133.152667pt;}
.w6_c00281{width:223.068000pt;}
.w5_c00281{width:411.588000pt;}
.w7_c00281{width:411.906667pt;}
.w2_c00281{width:635.293333pt;}
.w0_c00281{width:793.759733pt;}
.w1_c00281{width:794.000000pt;}
.x0_c00281{left:0.000000pt;}
.x4_c00281{left:4.320000pt;}
.x1_c00281{left:132.352667pt;}
.x2_c00281{left:137.306667pt;}
.x8_c00281{left:182.121333pt;}
.x3_c00281{left:183.561333pt;}
.x5_c00281{left:227.226667pt;}
.x6_c00281{left:361.026667pt;}
.x7_c00281{left:404.226667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b4afbce4f73be568c8a71d8a.woff2')format("woff");}.ff1_c00282{font-family:ff1_c00282;line-height:0.666504;font-style:normal;font-weight:normal;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_f2f72836a6861a0ffbc70b31.woff2')format("woff");}.ff2_c00282{font-family:ff2_c00282;line-height:0.938965;font-style:normal;font-weight:normal;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_cb325950b7b3fc4424dbd819.woff2')format("woff");}.ff3_c00282{font-family:ff3_c00282;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00282;src:url('chunks/assets/font_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff4_c00282{font-family:ff4_c00282;line-height:0.666504;font-style: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;}
.ls1_c00282{letter-spacing:0.000000px;}
.ls0_c00282{letter-spacing:0.214973px;}
.sc__c00282{text-shadow:none;}
.sc0_c00282{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00282{-webkit-text-stroke:0px transparent;}
.sc0_c00282{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00282{word-spacing:-15.012033px;}
.ws1_c00282{word-spacing:0.000000px;}
._2_c00282{margin-left:-1.234280px;}
._3_c00282{width:1.147852px;}
._1_c00282{width:911.881968px;}
._0_c00282{width:1345.983552px;}
.fc0_c00282{color:rgb(0,0,0);}
.fs1_c00282{font-size:54.000120px;}
.fs0_c00282{font-size:66.240000px;}
.y0_c00282{bottom:0.000000px;}
.y18_c00282{bottom:17.640000px;}
.y1b_c00282{bottom:17.641500px;}
.yf_c00282{bottom:24.481650px;}
.y21_c00282{bottom:25.019550px;}
.y1e_c00282{bottom:25.020000px;}
.yb_c00282{bottom:25.198500px;}
.y16_c00282{bottom:25.201500px;}
.y5_c00282{bottom:25.380000px;}
.y13_c00282{bottom:25.381500px;}
.y11_c00282{bottom:32.220000px;}
.y10_c00282{bottom:32.221500px;}
.y3_c00282{bottom:36.930000px;}
.ye_c00282{bottom:39.961500px;}
.y7_c00282{bottom:47.160000px;}
.y1_c00282{bottom:56.556450px;}
.y22_c00282{bottom:93.456450px;}
.y20_c00282{bottom:109.836900px;}
.y1f_c00282{bottom:170.130000px;}
.y1d_c00282{bottom:230.430000px;}
.y1c_c00282{bottom:290.775000px;}
.y1a_c00282{bottom:336.495000px;}
.y19_c00282{bottom:382.216500px;}
.y17_c00282{bottom:428.116500px;}
.y15_c00282{bottom:473.835000px;}
.y14_c00282{bottom:534.855000px;}
.y12_c00282{bottom:596.083500px;}
.y6_c00282{bottom:657.105000px;}
.yd_c00282{bottom:731.983500px;}
.yc_c00282{bottom:806.865000px;}
.ya_c00282{bottom:868.111500px;}
.y9_c00282{bottom:929.131500px;}
.y8_c00282{bottom:990.331500px;}
.y4_c00282{bottom:1051.351500px;}
.y2_c00282{bottom:1112.551500px;}
.h6_c00282{height:39.339931px;}
.hd_c00282{height:45.000000px;}
.h4_c00282{height:48.224531px;}
.h2_c00282{height:48.256875px;}
.h10_c00282{height:59.579850px;}
.hf_c00282{height:59.580450px;}
.he_c00282{height:59.616750px;}
.h8_c00282{height:60.300000px;}
.h5_c00282{height:60.478650px;}
.h9_c00282{height:60.479850px;}
.ha_c00282{height:60.515100px;}
.hc_c00282{height:60.516750px;}
.hb_c00282{height:74.160300px;}
.h3_c00282{height:85.715700px;}
.h7_c00282{height:454.708500px;}
.h0_c00282{height:1262.879850px;}
.h1_c00282{height:1263.000000px;}
.w3_c00282{width:100.259700px;}
.w4_c00282{width:149.796750px;}
.w6_c00282{width:250.951500px;}
.w5_c00282{width:463.036500px;}
.w7_c00282{width:463.395000px;}
.w2_c00282{width:714.705000px;}
.w0_c00282{width:892.979700px;}
.w1_c00282{width:893.250000px;}
.x0_c00282{left:0.000000px;}
.x4_c00282{left:4.860000px;}
.x1_c00282{left:148.896750px;}
.x2_c00282{left:154.470000px;}
.x8_c00282{left:204.886500px;}
.x3_c00282{left:206.506500px;}
.x5_c00282{left:255.630000px;}
.x6_c00282{left:406.155000px;}
.x7_c00282{left:444.136500px;}
@media print{
.v0_c00282{vertical-align:0.000000pt;}
.ls1_c00282{letter-spacing:0.000000pt;}
.ls0_c00282{letter-spacing:0.191087pt;}
.ws0_c00282{word-spacing:-13.344030pt;}
.ws1_c00282{word-spacing:0.000000pt;}
._2_c00282{margin-left:-1.097138pt;}
._3_c00282{width:1.020313pt;}
._1_c00282{width:810.561749pt;}
._0_c00282{width:1196.429824pt;}
.fs1_c00282{font-size:48.000107pt;}
.fs0_c00282{font-size:58.880000pt;}
.y0_c00282{bottom:0.000000pt;}
.y18_c00282{bottom:15.680000pt;}
.y1b_c00282{bottom:15.681333pt;}
.yf_c00282{bottom:21.761467pt;}
.y21_c00282{bottom:22.239600pt;}
.y1e_c00282{bottom:22.240000pt;}
.yb_c00282{bottom:22.398667pt;}
.y16_c00282{bottom:22.401333pt;}
.y5_c00282{bottom:22.560000pt;}
.y13_c00282{bottom:22.561333pt;}
.y11_c00282{bottom:28.640000pt;}
.y10_c00282{bottom:28.641333pt;}
.y3_c00282{bottom:32.826667pt;}
.ye_c00282{bottom:35.521333pt;}
.y7_c00282{bottom:41.920000pt;}
.y1_c00282{bottom:50.272400pt;}
.y22_c00282{bottom:83.072400pt;}
.y20_c00282{bottom:97.632800pt;}
.y1f_c00282{bottom:151.226667pt;}
.y1d_c00282{bottom:204.826667pt;}
.y1c_c00282{bottom:258.466667pt;}
.y1a_c00282{bottom:299.106667pt;}
.y19_c00282{bottom:339.748000pt;}
.y17_c00282{bottom:380.548000pt;}
.y15_c00282{bottom:421.186667pt;}
.y14_c00282{bottom:475.426667pt;}
.y12_c00282{bottom:529.852000pt;}
.y6_c00282{bottom:584.093333pt;}
.yd_c00282{bottom:650.652000pt;}
.yc_c00282{bottom:717.213333pt;}
.ya_c00282{bottom:771.654667pt;}
.y9_c00282{bottom:825.894667pt;}
.y8_c00282{bottom:880.294667pt;}
.y4_c00282{bottom:934.534667pt;}
.y2_c00282{bottom:988.934667pt;}
.h6_c00282{height:34.968828pt;}
.hd_c00282{height:40.000000pt;}
.h4_c00282{height:42.866250pt;}
.h2_c00282{height:42.895000pt;}
.h10_c00282{height:52.959867pt;}
.hf_c00282{height:52.960400pt;}
.he_c00282{height:52.992667pt;}
.h8_c00282{height:53.600000pt;}
.h5_c00282{height:53.758800pt;}
.h9_c00282{height:53.759867pt;}
.ha_c00282{height:53.791200pt;}
.hc_c00282{height:53.792667pt;}
.hb_c00282{height:65.920267pt;}
.h3_c00282{height:76.191733pt;}
.h7_c00282{height:404.185333pt;}
.h0_c00282{height:1122.559867pt;}
.h1_c00282{height:1122.666667pt;}
.w3_c00282{width:89.119733pt;}
.w4_c00282{width:133.152667pt;}
.w6_c00282{width:223.068000pt;}
.w5_c00282{width:411.588000pt;}
.w7_c00282{width:411.906667pt;}
.w2_c00282{width:635.293333pt;}
.w0_c00282{width:793.759733pt;}
.w1_c00282{width:794.000000pt;}
.x0_c00282{left:0.000000pt;}
.x4_c00282{left:4.320000pt;}
.x1_c00282{left:132.352667pt;}
.x2_c00282{left:137.306667pt;}
.x8_c00282{left:182.121333pt;}
.x3_c00282{left:183.561333pt;}
.x5_c00282{left:227.226667pt;}
.x6_c00282{left:361.026667pt;}
.x7_c00282{left:394.788000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b4afbce4f73be568c8a71d8a.woff2')format("woff");}.ff1_c00283{font-family:ff1_c00283;line-height:0.666504;font-style:normal;font-weight:normal;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_2a766733ad2bf7ede7c34ea7.woff2')format("woff");}.ff2_c00283{font-family:ff2_c00283;line-height:0.938965;font-style:normal;font-weight:normal;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_cb325950b7b3fc4424dbd819.woff2')format("woff");}.ff3_c00283{font-family:ff3_c00283;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00283;src:url('chunks/assets/font_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff4_c00283{font-family:ff4_c00283;line-height:0.666504;font-style: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;}
.ls1_c00283{letter-spacing:0.000000px;}
.ls0_c00283{letter-spacing:0.214973px;}
.sc__c00283{text-shadow:none;}
.sc0_c00283{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00283{-webkit-text-stroke:0px transparent;}
.sc0_c00283{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00283{word-spacing:-15.012033px;}
.ws1_c00283{word-spacing:0.000000px;}
._2_c00283{margin-left:-1.234280px;}
._3_c00283{width:1.147852px;}
._1_c00283{width:911.881968px;}
._0_c00283{width:1345.983552px;}
.fc0_c00283{color:rgb(0,0,0);}
.fs1_c00283{font-size:54.000120px;}
.fs0_c00283{font-size:66.240000px;}
.y0_c00283{bottom:0.000000px;}
.y18_c00283{bottom:17.640000px;}
.y1b_c00283{bottom:17.641500px;}
.yf_c00283{bottom:24.481650px;}
.y21_c00283{bottom:25.019550px;}
.y1e_c00283{bottom:25.020000px;}
.yb_c00283{bottom:25.198500px;}
.y16_c00283{bottom:25.201500px;}
.y5_c00283{bottom:25.380000px;}
.y13_c00283{bottom:25.381500px;}
.y11_c00283{bottom:32.220000px;}
.y10_c00283{bottom:32.221500px;}
.y3_c00283{bottom:36.930000px;}
.ye_c00283{bottom:39.961500px;}
.y7_c00283{bottom:47.160000px;}
.y1_c00283{bottom:56.556450px;}
.y22_c00283{bottom:93.456450px;}
.y20_c00283{bottom:109.836900px;}
.y1f_c00283{bottom:170.130000px;}
.y1d_c00283{bottom:230.430000px;}
.y1c_c00283{bottom:290.775000px;}
.y1a_c00283{bottom:336.495000px;}
.y19_c00283{bottom:382.216500px;}
.y17_c00283{bottom:428.116500px;}
.y15_c00283{bottom:473.835000px;}
.y14_c00283{bottom:534.855000px;}
.y12_c00283{bottom:596.083500px;}
.y6_c00283{bottom:657.105000px;}
.yd_c00283{bottom:731.983500px;}
.yc_c00283{bottom:806.865000px;}
.ya_c00283{bottom:868.111500px;}
.y9_c00283{bottom:929.131500px;}
.y8_c00283{bottom:990.331500px;}
.y4_c00283{bottom:1051.351500px;}
.y2_c00283{bottom:1112.551500px;}
.h6_c00283{height:39.339931px;}
.hd_c00283{height:45.000000px;}
.h4_c00283{height:48.224531px;}
.h2_c00283{height:48.256875px;}
.h10_c00283{height:59.579850px;}
.hf_c00283{height:59.580450px;}
.he_c00283{height:59.616750px;}
.h8_c00283{height:60.300000px;}
.h5_c00283{height:60.478650px;}
.h9_c00283{height:60.479850px;}
.ha_c00283{height:60.515100px;}
.hc_c00283{height:60.516750px;}
.hb_c00283{height:74.160300px;}
.h3_c00283{height:85.715700px;}
.h7_c00283{height:454.708500px;}
.h0_c00283{height:1262.879850px;}
.h1_c00283{height:1263.000000px;}
.w3_c00283{width:100.259700px;}
.w4_c00283{width:149.796750px;}
.w6_c00283{width:250.951500px;}
.w5_c00283{width:463.036500px;}
.w7_c00283{width:463.395000px;}
.w2_c00283{width:714.705000px;}
.w0_c00283{width:892.979700px;}
.w1_c00283{width:893.250000px;}
.x0_c00283{left:0.000000px;}
.x4_c00283{left:4.860000px;}
.x1_c00283{left:148.896750px;}
.x2_c00283{left:154.470000px;}
.x8_c00283{left:204.886500px;}
.x3_c00283{left:206.506500px;}
.x5_c00283{left:255.630000px;}
.x6_c00283{left:406.155000px;}
.x7_c00283{left:444.136500px;}
@media print{
.v0_c00283{vertical-align:0.000000pt;}
.ls1_c00283{letter-spacing:0.000000pt;}
.ls0_c00283{letter-spacing:0.191087pt;}
.ws0_c00283{word-spacing:-13.344030pt;}
.ws1_c00283{word-spacing:0.000000pt;}
._2_c00283{margin-left:-1.097138pt;}
._3_c00283{width:1.020313pt;}
._1_c00283{width:810.561749pt;}
._0_c00283{width:1196.429824pt;}
.fs1_c00283{font-size:48.000107pt;}
.fs0_c00283{font-size:58.880000pt;}
.y0_c00283{bottom:0.000000pt;}
.y18_c00283{bottom:15.680000pt;}
.y1b_c00283{bottom:15.681333pt;}
.yf_c00283{bottom:21.761467pt;}
.y21_c00283{bottom:22.239600pt;}
.y1e_c00283{bottom:22.240000pt;}
.yb_c00283{bottom:22.398667pt;}
.y16_c00283{bottom:22.401333pt;}
.y5_c00283{bottom:22.560000pt;}
.y13_c00283{bottom:22.561333pt;}
.y11_c00283{bottom:28.640000pt;}
.y10_c00283{bottom:28.641333pt;}
.y3_c00283{bottom:32.826667pt;}
.ye_c00283{bottom:35.521333pt;}
.y7_c00283{bottom:41.920000pt;}
.y1_c00283{bottom:50.272400pt;}
.y22_c00283{bottom:83.072400pt;}
.y20_c00283{bottom:97.632800pt;}
.y1f_c00283{bottom:151.226667pt;}
.y1d_c00283{bottom:204.826667pt;}
.y1c_c00283{bottom:258.466667pt;}
.y1a_c00283{bottom:299.106667pt;}
.y19_c00283{bottom:339.748000pt;}
.y17_c00283{bottom:380.548000pt;}
.y15_c00283{bottom:421.186667pt;}
.y14_c00283{bottom:475.426667pt;}
.y12_c00283{bottom:529.852000pt;}
.y6_c00283{bottom:584.093333pt;}
.yd_c00283{bottom:650.652000pt;}
.yc_c00283{bottom:717.213333pt;}
.ya_c00283{bottom:771.654667pt;}
.y9_c00283{bottom:825.894667pt;}
.y8_c00283{bottom:880.294667pt;}
.y4_c00283{bottom:934.534667pt;}
.y2_c00283{bottom:988.934667pt;}
.h6_c00283{height:34.968828pt;}
.hd_c00283{height:40.000000pt;}
.h4_c00283{height:42.866250pt;}
.h2_c00283{height:42.895000pt;}
.h10_c00283{height:52.959867pt;}
.hf_c00283{height:52.960400pt;}
.he_c00283{height:52.992667pt;}
.h8_c00283{height:53.600000pt;}
.h5_c00283{height:53.758800pt;}
.h9_c00283{height:53.759867pt;}
.ha_c00283{height:53.791200pt;}
.hc_c00283{height:53.792667pt;}
.hb_c00283{height:65.920267pt;}
.h3_c00283{height:76.191733pt;}
.h7_c00283{height:404.185333pt;}
.h0_c00283{height:1122.559867pt;}
.h1_c00283{height:1122.666667pt;}
.w3_c00283{width:89.119733pt;}
.w4_c00283{width:133.152667pt;}
.w6_c00283{width:223.068000pt;}
.w5_c00283{width:411.588000pt;}
.w7_c00283{width:411.906667pt;}
.w2_c00283{width:635.293333pt;}
.w0_c00283{width:793.759733pt;}
.w1_c00283{width:794.000000pt;}
.x0_c00283{left:0.000000pt;}
.x4_c00283{left:4.320000pt;}
.x1_c00283{left:132.352667pt;}
.x2_c00283{left:137.306667pt;}
.x8_c00283{left:182.121333pt;}
.x3_c00283{left:183.561333pt;}
.x5_c00283{left:227.226667pt;}
.x6_c00283{left:361.026667pt;}
.x7_c00283{left:394.788000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b4afbce4f73be568c8a71d8a.woff2')format("woff");}.ff1_c00284{font-family:ff1_c00284;line-height:0.666504;font-style:normal;font-weight:normal;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_16eaac69b0a7cd1a3ef3d7df.woff2')format("woff");}.ff2_c00284{font-family:ff2_c00284;line-height:0.938965;font-style:normal;font-weight:normal;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_cb325950b7b3fc4424dbd819.woff2')format("woff");}.ff3_c00284{font-family:ff3_c00284;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00284;src:url('chunks/assets/font_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff4_c00284{font-family:ff4_c00284;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00284{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00284{vertical-align:0.000000px;}
.ls1_c00284{letter-spacing:0.000000px;}
.ls0_c00284{letter-spacing:0.214973px;}
.sc__c00284{text-shadow:none;}
.sc0_c00284{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00284{-webkit-text-stroke:0px transparent;}
.sc0_c00284{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00284{word-spacing:-15.012033px;}
.ws1_c00284{word-spacing:0.000000px;}
._2_c00284{margin-left:-1.234280px;}
._3_c00284{width:1.147852px;}
._1_c00284{width:911.881968px;}
._0_c00284{width:1345.983552px;}
.fc0_c00284{color:rgb(0,0,0);}
.fs1_c00284{font-size:54.000120px;}
.fs0_c00284{font-size:66.240000px;}
.y0_c00284{bottom:0.000000px;}
.y18_c00284{bottom:17.640000px;}
.y1b_c00284{bottom:17.641500px;}
.yf_c00284{bottom:24.481650px;}
.y21_c00284{bottom:25.019550px;}
.y1e_c00284{bottom:25.020000px;}
.yb_c00284{bottom:25.198500px;}
.y16_c00284{bottom:25.201500px;}
.y5_c00284{bottom:25.380000px;}
.y13_c00284{bottom:25.381500px;}
.y11_c00284{bottom:32.220000px;}
.y10_c00284{bottom:32.221500px;}
.y3_c00284{bottom:36.930000px;}
.ye_c00284{bottom:39.961500px;}
.y7_c00284{bottom:47.160000px;}
.y1_c00284{bottom:56.556450px;}
.y22_c00284{bottom:93.456450px;}
.y20_c00284{bottom:109.836900px;}
.y1f_c00284{bottom:170.130000px;}
.y1d_c00284{bottom:230.430000px;}
.y1c_c00284{bottom:290.775000px;}
.y1a_c00284{bottom:336.495000px;}
.y19_c00284{bottom:382.216500px;}
.y17_c00284{bottom:428.116500px;}
.y15_c00284{bottom:473.835000px;}
.y14_c00284{bottom:534.855000px;}
.y12_c00284{bottom:596.083500px;}
.y6_c00284{bottom:657.105000px;}
.yd_c00284{bottom:731.983500px;}
.yc_c00284{bottom:806.865000px;}
.ya_c00284{bottom:868.111500px;}
.y9_c00284{bottom:929.131500px;}
.y8_c00284{bottom:990.331500px;}
.y4_c00284{bottom:1051.351500px;}
.y2_c00284{bottom:1112.551500px;}
.h6_c00284{height:39.339931px;}
.hd_c00284{height:45.000000px;}
.h4_c00284{height:48.224531px;}
.h2_c00284{height:48.256875px;}
.h10_c00284{height:59.579850px;}
.hf_c00284{height:59.580450px;}
.he_c00284{height:59.616750px;}
.h8_c00284{height:60.300000px;}
.h5_c00284{height:60.478650px;}
.h9_c00284{height:60.479850px;}
.ha_c00284{height:60.515100px;}
.hc_c00284{height:60.516750px;}
.hb_c00284{height:74.160300px;}
.h3_c00284{height:85.715700px;}
.h7_c00284{height:454.708500px;}
.h0_c00284{height:1262.879850px;}
.h1_c00284{height:1263.000000px;}
.w3_c00284{width:100.259700px;}
.w4_c00284{width:149.796750px;}
.w6_c00284{width:250.951500px;}
.w5_c00284{width:463.036500px;}
.w7_c00284{width:463.395000px;}
.w2_c00284{width:714.705000px;}
.w0_c00284{width:892.979700px;}
.w1_c00284{width:893.250000px;}
.x0_c00284{left:0.000000px;}
.x4_c00284{left:4.860000px;}
.x1_c00284{left:148.896750px;}
.x2_c00284{left:154.470000px;}
.x8_c00284{left:204.886500px;}
.x3_c00284{left:206.506500px;}
.x5_c00284{left:255.630000px;}
.x6_c00284{left:406.155000px;}
.x7_c00284{left:444.136500px;}
@media print{
.v0_c00284{vertical-align:0.000000pt;}
.ls1_c00284{letter-spacing:0.000000pt;}
.ls0_c00284{letter-spacing:0.191087pt;}
.ws0_c00284{word-spacing:-13.344030pt;}
.ws1_c00284{word-spacing:0.000000pt;}
._2_c00284{margin-left:-1.097138pt;}
._3_c00284{width:1.020313pt;}
._1_c00284{width:810.561749pt;}
._0_c00284{width:1196.429824pt;}
.fs1_c00284{font-size:48.000107pt;}
.fs0_c00284{font-size:58.880000pt;}
.y0_c00284{bottom:0.000000pt;}
.y18_c00284{bottom:15.680000pt;}
.y1b_c00284{bottom:15.681333pt;}
.yf_c00284{bottom:21.761467pt;}
.y21_c00284{bottom:22.239600pt;}
.y1e_c00284{bottom:22.240000pt;}
.yb_c00284{bottom:22.398667pt;}
.y16_c00284{bottom:22.401333pt;}
.y5_c00284{bottom:22.560000pt;}
.y13_c00284{bottom:22.561333pt;}
.y11_c00284{bottom:28.640000pt;}
.y10_c00284{bottom:28.641333pt;}
.y3_c00284{bottom:32.826667pt;}
.ye_c00284{bottom:35.521333pt;}
.y7_c00284{bottom:41.920000pt;}
.y1_c00284{bottom:50.272400pt;}
.y22_c00284{bottom:83.072400pt;}
.y20_c00284{bottom:97.632800pt;}
.y1f_c00284{bottom:151.226667pt;}
.y1d_c00284{bottom:204.826667pt;}
.y1c_c00284{bottom:258.466667pt;}
.y1a_c00284{bottom:299.106667pt;}
.y19_c00284{bottom:339.748000pt;}
.y17_c00284{bottom:380.548000pt;}
.y15_c00284{bottom:421.186667pt;}
.y14_c00284{bottom:475.426667pt;}
.y12_c00284{bottom:529.852000pt;}
.y6_c00284{bottom:584.093333pt;}
.yd_c00284{bottom:650.652000pt;}
.yc_c00284{bottom:717.213333pt;}
.ya_c00284{bottom:771.654667pt;}
.y9_c00284{bottom:825.894667pt;}
.y8_c00284{bottom:880.294667pt;}
.y4_c00284{bottom:934.534667pt;}
.y2_c00284{bottom:988.934667pt;}
.h6_c00284{height:34.968828pt;}
.hd_c00284{height:40.000000pt;}
.h4_c00284{height:42.866250pt;}
.h2_c00284{height:42.895000pt;}
.h10_c00284{height:52.959867pt;}
.hf_c00284{height:52.960400pt;}
.he_c00284{height:52.992667pt;}
.h8_c00284{height:53.600000pt;}
.h5_c00284{height:53.758800pt;}
.h9_c00284{height:53.759867pt;}
.ha_c00284{height:53.791200pt;}
.hc_c00284{height:53.792667pt;}
.hb_c00284{height:65.920267pt;}
.h3_c00284{height:76.191733pt;}
.h7_c00284{height:404.185333pt;}
.h0_c00284{height:1122.559867pt;}
.h1_c00284{height:1122.666667pt;}
.w3_c00284{width:89.119733pt;}
.w4_c00284{width:133.152667pt;}
.w6_c00284{width:223.068000pt;}
.w5_c00284{width:411.588000pt;}
.w7_c00284{width:411.906667pt;}
.w2_c00284{width:635.293333pt;}
.w0_c00284{width:793.759733pt;}
.w1_c00284{width:794.000000pt;}
.x0_c00284{left:0.000000pt;}
.x4_c00284{left:4.320000pt;}
.x1_c00284{left:132.352667pt;}
.x2_c00284{left:137.306667pt;}
.x8_c00284{left:182.121333pt;}
.x3_c00284{left:183.561333pt;}
.x5_c00284{left:227.226667pt;}
.x6_c00284{left:361.026667pt;}
.x7_c00284{left:394.788000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b4afbce4f73be568c8a71d8a.woff2')format("woff");}.ff1_c00285{font-family:ff1_c00285;line-height:0.666504;font-style:normal;font-weight:normal;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_8d9d8cb631383a08417e9fa5.woff2')format("woff");}.ff2_c00285{font-family:ff2_c00285;line-height:0.938965;font-style:normal;font-weight:normal;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_cb325950b7b3fc4424dbd819.woff2')format("woff");}.ff3_c00285{font-family:ff3_c00285;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00285;src:url('chunks/assets/font_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff4_c00285{font-family:ff4_c00285;line-height:0.666504;font-style: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;}
.ls1_c00285{letter-spacing:0.000000px;}
.ls0_c00285{letter-spacing:0.214973px;}
.sc__c00285{text-shadow:none;}
.sc0_c00285{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00285{-webkit-text-stroke:0px transparent;}
.sc0_c00285{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00285{word-spacing:-15.012033px;}
.ws1_c00285{word-spacing:0.000000px;}
._2_c00285{margin-left:-1.234280px;}
._3_c00285{width:1.147852px;}
._1_c00285{width:911.881968px;}
._0_c00285{width:1345.983552px;}
.fc0_c00285{color:rgb(0,0,0);}
.fs1_c00285{font-size:54.000120px;}
.fs0_c00285{font-size:66.240000px;}
.y0_c00285{bottom:0.000000px;}
.y18_c00285{bottom:17.640000px;}
.y1b_c00285{bottom:17.641500px;}
.yf_c00285{bottom:24.481650px;}
.y21_c00285{bottom:25.019550px;}
.y1e_c00285{bottom:25.020000px;}
.yb_c00285{bottom:25.198500px;}
.y16_c00285{bottom:25.201500px;}
.y5_c00285{bottom:25.380000px;}
.y13_c00285{bottom:25.381500px;}
.y11_c00285{bottom:32.220000px;}
.y10_c00285{bottom:32.221500px;}
.y3_c00285{bottom:36.930000px;}
.ye_c00285{bottom:39.961500px;}
.y7_c00285{bottom:47.160000px;}
.y1_c00285{bottom:56.556450px;}
.y22_c00285{bottom:93.456450px;}
.y20_c00285{bottom:109.836900px;}
.y1f_c00285{bottom:170.130000px;}
.y1d_c00285{bottom:230.430000px;}
.y1c_c00285{bottom:290.775000px;}
.y1a_c00285{bottom:336.495000px;}
.y19_c00285{bottom:382.216500px;}
.y17_c00285{bottom:428.116500px;}
.y15_c00285{bottom:473.835000px;}
.y14_c00285{bottom:534.855000px;}
.y12_c00285{bottom:596.083500px;}
.y6_c00285{bottom:657.105000px;}
.yd_c00285{bottom:731.983500px;}
.yc_c00285{bottom:806.865000px;}
.ya_c00285{bottom:868.111500px;}
.y9_c00285{bottom:929.131500px;}
.y8_c00285{bottom:990.331500px;}
.y4_c00285{bottom:1051.351500px;}
.y2_c00285{bottom:1112.551500px;}
.h6_c00285{height:39.339931px;}
.hd_c00285{height:45.000000px;}
.h4_c00285{height:48.224531px;}
.h2_c00285{height:48.256875px;}
.h10_c00285{height:59.579850px;}
.hf_c00285{height:59.580450px;}
.he_c00285{height:59.616750px;}
.h8_c00285{height:60.300000px;}
.h5_c00285{height:60.478650px;}
.h9_c00285{height:60.479850px;}
.ha_c00285{height:60.515100px;}
.hc_c00285{height:60.516750px;}
.hb_c00285{height:74.160300px;}
.h3_c00285{height:85.715700px;}
.h7_c00285{height:454.708500px;}
.h0_c00285{height:1262.879850px;}
.h1_c00285{height:1263.000000px;}
.w3_c00285{width:100.259700px;}
.w4_c00285{width:149.796750px;}
.w6_c00285{width:250.951500px;}
.w5_c00285{width:463.036500px;}
.w7_c00285{width:463.395000px;}
.w2_c00285{width:714.705000px;}
.w0_c00285{width:892.979700px;}
.w1_c00285{width:893.250000px;}
.x0_c00285{left:0.000000px;}
.x4_c00285{left:4.860000px;}
.x1_c00285{left:148.896750px;}
.x2_c00285{left:154.470000px;}
.x8_c00285{left:204.886500px;}
.x3_c00285{left:206.506500px;}
.x5_c00285{left:255.630000px;}
.x6_c00285{left:406.155000px;}
.x7_c00285{left:444.136500px;}
@media print{
.v0_c00285{vertical-align:0.000000pt;}
.ls1_c00285{letter-spacing:0.000000pt;}
.ls0_c00285{letter-spacing:0.191087pt;}
.ws0_c00285{word-spacing:-13.344030pt;}
.ws1_c00285{word-spacing:0.000000pt;}
._2_c00285{margin-left:-1.097138pt;}
._3_c00285{width:1.020313pt;}
._1_c00285{width:810.561749pt;}
._0_c00285{width:1196.429824pt;}
.fs1_c00285{font-size:48.000107pt;}
.fs0_c00285{font-size:58.880000pt;}
.y0_c00285{bottom:0.000000pt;}
.y18_c00285{bottom:15.680000pt;}
.y1b_c00285{bottom:15.681333pt;}
.yf_c00285{bottom:21.761467pt;}
.y21_c00285{bottom:22.239600pt;}
.y1e_c00285{bottom:22.240000pt;}
.yb_c00285{bottom:22.398667pt;}
.y16_c00285{bottom:22.401333pt;}
.y5_c00285{bottom:22.560000pt;}
.y13_c00285{bottom:22.561333pt;}
.y11_c00285{bottom:28.640000pt;}
.y10_c00285{bottom:28.641333pt;}
.y3_c00285{bottom:32.826667pt;}
.ye_c00285{bottom:35.521333pt;}
.y7_c00285{bottom:41.920000pt;}
.y1_c00285{bottom:50.272400pt;}
.y22_c00285{bottom:83.072400pt;}
.y20_c00285{bottom:97.632800pt;}
.y1f_c00285{bottom:151.226667pt;}
.y1d_c00285{bottom:204.826667pt;}
.y1c_c00285{bottom:258.466667pt;}
.y1a_c00285{bottom:299.106667pt;}
.y19_c00285{bottom:339.748000pt;}
.y17_c00285{bottom:380.548000pt;}
.y15_c00285{bottom:421.186667pt;}
.y14_c00285{bottom:475.426667pt;}
.y12_c00285{bottom:529.852000pt;}
.y6_c00285{bottom:584.093333pt;}
.yd_c00285{bottom:650.652000pt;}
.yc_c00285{bottom:717.213333pt;}
.ya_c00285{bottom:771.654667pt;}
.y9_c00285{bottom:825.894667pt;}
.y8_c00285{bottom:880.294667pt;}
.y4_c00285{bottom:934.534667pt;}
.y2_c00285{bottom:988.934667pt;}
.h6_c00285{height:34.968828pt;}
.hd_c00285{height:40.000000pt;}
.h4_c00285{height:42.866250pt;}
.h2_c00285{height:42.895000pt;}
.h10_c00285{height:52.959867pt;}
.hf_c00285{height:52.960400pt;}
.he_c00285{height:52.992667pt;}
.h8_c00285{height:53.600000pt;}
.h5_c00285{height:53.758800pt;}
.h9_c00285{height:53.759867pt;}
.ha_c00285{height:53.791200pt;}
.hc_c00285{height:53.792667pt;}
.hb_c00285{height:65.920267pt;}
.h3_c00285{height:76.191733pt;}
.h7_c00285{height:404.185333pt;}
.h0_c00285{height:1122.559867pt;}
.h1_c00285{height:1122.666667pt;}
.w3_c00285{width:89.119733pt;}
.w4_c00285{width:133.152667pt;}
.w6_c00285{width:223.068000pt;}
.w5_c00285{width:411.588000pt;}
.w7_c00285{width:411.906667pt;}
.w2_c00285{width:635.293333pt;}
.w0_c00285{width:793.759733pt;}
.w1_c00285{width:794.000000pt;}
.x0_c00285{left:0.000000pt;}
.x4_c00285{left:4.320000pt;}
.x1_c00285{left:132.352667pt;}
.x2_c00285{left:137.306667pt;}
.x8_c00285{left:182.121333pt;}
.x3_c00285{left:183.561333pt;}
.x5_c00285{left:227.226667pt;}
.x6_c00285{left:361.026667pt;}
.x7_c00285{left:394.788000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b4afbce4f73be568c8a71d8a.woff2')format("woff");}.ff1_c00286{font-family:ff1_c00286;line-height:0.666504;font-style:normal;font-weight:normal;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_633d27b66ab276c8be5a4559.woff2')format("woff");}.ff2_c00286{font-family:ff2_c00286;line-height:0.938965;font-style:normal;font-weight:normal;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_cb325950b7b3fc4424dbd819.woff2')format("woff");}.ff3_c00286{font-family:ff3_c00286;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00286;src:url('chunks/assets/font_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff4_c00286{font-family:ff4_c00286;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00286{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00286{vertical-align:0.000000px;}
.ls1_c00286{letter-spacing:0.000000px;}
.ls0_c00286{letter-spacing:0.214973px;}
.sc__c00286{text-shadow:none;}
.sc0_c00286{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00286{-webkit-text-stroke:0px transparent;}
.sc0_c00286{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00286{word-spacing:-15.012033px;}
.ws1_c00286{word-spacing:0.000000px;}
._2_c00286{margin-left:-1.234280px;}
._3_c00286{width:1.147852px;}
._1_c00286{width:911.881968px;}
._0_c00286{width:1345.983552px;}
.fc0_c00286{color:rgb(0,0,0);}
.fs1_c00286{font-size:54.000120px;}
.fs0_c00286{font-size:66.240000px;}
.y0_c00286{bottom:0.000000px;}
.y18_c00286{bottom:17.640000px;}
.y1b_c00286{bottom:17.641500px;}
.yf_c00286{bottom:24.481650px;}
.y21_c00286{bottom:25.019550px;}
.y1e_c00286{bottom:25.020000px;}
.yb_c00286{bottom:25.198500px;}
.y16_c00286{bottom:25.201500px;}
.y5_c00286{bottom:25.380000px;}
.y13_c00286{bottom:25.381500px;}
.y11_c00286{bottom:32.220000px;}
.y10_c00286{bottom:32.221500px;}
.y3_c00286{bottom:36.930000px;}
.ye_c00286{bottom:39.961500px;}
.y7_c00286{bottom:47.160000px;}
.y1_c00286{bottom:56.556450px;}
.y22_c00286{bottom:93.456450px;}
.y20_c00286{bottom:109.836900px;}
.y1f_c00286{bottom:170.130000px;}
.y1d_c00286{bottom:230.430000px;}
.y1c_c00286{bottom:290.775000px;}
.y1a_c00286{bottom:336.495000px;}
.y19_c00286{bottom:382.216500px;}
.y17_c00286{bottom:428.116500px;}
.y15_c00286{bottom:473.835000px;}
.y14_c00286{bottom:534.855000px;}
.y12_c00286{bottom:596.083500px;}
.y6_c00286{bottom:657.105000px;}
.yd_c00286{bottom:731.983500px;}
.yc_c00286{bottom:806.865000px;}
.ya_c00286{bottom:868.111500px;}
.y9_c00286{bottom:929.131500px;}
.y8_c00286{bottom:990.331500px;}
.y4_c00286{bottom:1051.351500px;}
.y2_c00286{bottom:1112.551500px;}
.h6_c00286{height:39.339931px;}
.hd_c00286{height:45.000000px;}
.h4_c00286{height:48.224531px;}
.h2_c00286{height:48.256875px;}
.h10_c00286{height:59.579850px;}
.hf_c00286{height:59.580450px;}
.he_c00286{height:59.616750px;}
.h8_c00286{height:60.300000px;}
.h5_c00286{height:60.478650px;}
.h9_c00286{height:60.479850px;}
.ha_c00286{height:60.515100px;}
.hc_c00286{height:60.516750px;}
.hb_c00286{height:74.160300px;}
.h3_c00286{height:85.715700px;}
.h7_c00286{height:454.708500px;}
.h0_c00286{height:1262.879850px;}
.h1_c00286{height:1263.000000px;}
.w3_c00286{width:100.259700px;}
.w4_c00286{width:149.796750px;}
.w6_c00286{width:250.951500px;}
.w5_c00286{width:463.036500px;}
.w7_c00286{width:463.395000px;}
.w2_c00286{width:714.705000px;}
.w0_c00286{width:892.979700px;}
.w1_c00286{width:893.250000px;}
.x0_c00286{left:0.000000px;}
.x4_c00286{left:4.860000px;}
.x1_c00286{left:148.896750px;}
.x2_c00286{left:154.470000px;}
.x8_c00286{left:204.886500px;}
.x3_c00286{left:206.506500px;}
.x5_c00286{left:255.630000px;}
.x6_c00286{left:406.155000px;}
.x7_c00286{left:444.136500px;}
@media print{
.v0_c00286{vertical-align:0.000000pt;}
.ls1_c00286{letter-spacing:0.000000pt;}
.ls0_c00286{letter-spacing:0.191087pt;}
.ws0_c00286{word-spacing:-13.344030pt;}
.ws1_c00286{word-spacing:0.000000pt;}
._2_c00286{margin-left:-1.097138pt;}
._3_c00286{width:1.020313pt;}
._1_c00286{width:810.561749pt;}
._0_c00286{width:1196.429824pt;}
.fs1_c00286{font-size:48.000107pt;}
.fs0_c00286{font-size:58.880000pt;}
.y0_c00286{bottom:0.000000pt;}
.y18_c00286{bottom:15.680000pt;}
.y1b_c00286{bottom:15.681333pt;}
.yf_c00286{bottom:21.761467pt;}
.y21_c00286{bottom:22.239600pt;}
.y1e_c00286{bottom:22.240000pt;}
.yb_c00286{bottom:22.398667pt;}
.y16_c00286{bottom:22.401333pt;}
.y5_c00286{bottom:22.560000pt;}
.y13_c00286{bottom:22.561333pt;}
.y11_c00286{bottom:28.640000pt;}
.y10_c00286{bottom:28.641333pt;}
.y3_c00286{bottom:32.826667pt;}
.ye_c00286{bottom:35.521333pt;}
.y7_c00286{bottom:41.920000pt;}
.y1_c00286{bottom:50.272400pt;}
.y22_c00286{bottom:83.072400pt;}
.y20_c00286{bottom:97.632800pt;}
.y1f_c00286{bottom:151.226667pt;}
.y1d_c00286{bottom:204.826667pt;}
.y1c_c00286{bottom:258.466667pt;}
.y1a_c00286{bottom:299.106667pt;}
.y19_c00286{bottom:339.748000pt;}
.y17_c00286{bottom:380.548000pt;}
.y15_c00286{bottom:421.186667pt;}
.y14_c00286{bottom:475.426667pt;}
.y12_c00286{bottom:529.852000pt;}
.y6_c00286{bottom:584.093333pt;}
.yd_c00286{bottom:650.652000pt;}
.yc_c00286{bottom:717.213333pt;}
.ya_c00286{bottom:771.654667pt;}
.y9_c00286{bottom:825.894667pt;}
.y8_c00286{bottom:880.294667pt;}
.y4_c00286{bottom:934.534667pt;}
.y2_c00286{bottom:988.934667pt;}
.h6_c00286{height:34.968828pt;}
.hd_c00286{height:40.000000pt;}
.h4_c00286{height:42.866250pt;}
.h2_c00286{height:42.895000pt;}
.h10_c00286{height:52.959867pt;}
.hf_c00286{height:52.960400pt;}
.he_c00286{height:52.992667pt;}
.h8_c00286{height:53.600000pt;}
.h5_c00286{height:53.758800pt;}
.h9_c00286{height:53.759867pt;}
.ha_c00286{height:53.791200pt;}
.hc_c00286{height:53.792667pt;}
.hb_c00286{height:65.920267pt;}
.h3_c00286{height:76.191733pt;}
.h7_c00286{height:404.185333pt;}
.h0_c00286{height:1122.559867pt;}
.h1_c00286{height:1122.666667pt;}
.w3_c00286{width:89.119733pt;}
.w4_c00286{width:133.152667pt;}
.w6_c00286{width:223.068000pt;}
.w5_c00286{width:411.588000pt;}
.w7_c00286{width:411.906667pt;}
.w2_c00286{width:635.293333pt;}
.w0_c00286{width:793.759733pt;}
.w1_c00286{width:794.000000pt;}
.x0_c00286{left:0.000000pt;}
.x4_c00286{left:4.320000pt;}
.x1_c00286{left:132.352667pt;}
.x2_c00286{left:137.306667pt;}
.x8_c00286{left:182.121333pt;}
.x3_c00286{left:183.561333pt;}
.x5_c00286{left:227.226667pt;}
.x6_c00286{left:361.026667pt;}
.x7_c00286{left:394.788000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b4afbce4f73be568c8a71d8a.woff2')format("woff");}.ff1_c00287{font-family:ff1_c00287;line-height:0.666504;font-style:normal;font-weight:normal;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_60b628fbb82dd7373fa7f9d1.woff2')format("woff");}.ff2_c00287{font-family:ff2_c00287;line-height:0.938965;font-style:normal;font-weight:normal;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_cb325950b7b3fc4424dbd819.woff2')format("woff");}.ff3_c00287{font-family:ff3_c00287;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00287;src:url('chunks/assets/font_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff4_c00287{font-family:ff4_c00287;line-height:0.666504;font-style: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;}
.ls1_c00287{letter-spacing:0.000000px;}
.ls0_c00287{letter-spacing:0.214973px;}
.sc__c00287{text-shadow:none;}
.sc0_c00287{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00287{-webkit-text-stroke:0px transparent;}
.sc0_c00287{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00287{word-spacing:-15.012033px;}
.ws1_c00287{word-spacing:0.000000px;}
._2_c00287{margin-left:-1.234280px;}
._3_c00287{width:1.147852px;}
._1_c00287{width:911.881968px;}
._0_c00287{width:1345.983552px;}
.fc0_c00287{color:rgb(0,0,0);}
.fs1_c00287{font-size:54.000120px;}
.fs0_c00287{font-size:66.240000px;}
.y0_c00287{bottom:0.000000px;}
.y18_c00287{bottom:17.640000px;}
.y1b_c00287{bottom:17.641500px;}
.yf_c00287{bottom:24.481650px;}
.y21_c00287{bottom:25.019550px;}
.y1e_c00287{bottom:25.020000px;}
.yb_c00287{bottom:25.198500px;}
.y16_c00287{bottom:25.201500px;}
.y5_c00287{bottom:25.380000px;}
.y13_c00287{bottom:25.381500px;}
.y11_c00287{bottom:32.220000px;}
.y10_c00287{bottom:32.221500px;}
.y3_c00287{bottom:36.930000px;}
.ye_c00287{bottom:39.961500px;}
.y7_c00287{bottom:47.160000px;}
.y1_c00287{bottom:56.556450px;}
.y22_c00287{bottom:93.456450px;}
.y20_c00287{bottom:109.836900px;}
.y1f_c00287{bottom:170.130000px;}
.y1d_c00287{bottom:230.430000px;}
.y1c_c00287{bottom:290.775000px;}
.y1a_c00287{bottom:336.495000px;}
.y19_c00287{bottom:382.216500px;}
.y17_c00287{bottom:428.116500px;}
.y15_c00287{bottom:473.835000px;}
.y14_c00287{bottom:534.855000px;}
.y12_c00287{bottom:596.083500px;}
.y6_c00287{bottom:657.105000px;}
.yd_c00287{bottom:731.983500px;}
.yc_c00287{bottom:806.865000px;}
.ya_c00287{bottom:868.111500px;}
.y9_c00287{bottom:929.131500px;}
.y8_c00287{bottom:990.331500px;}
.y4_c00287{bottom:1051.351500px;}
.y2_c00287{bottom:1112.551500px;}
.h6_c00287{height:39.339931px;}
.hd_c00287{height:45.000000px;}
.h4_c00287{height:48.224531px;}
.h2_c00287{height:48.256875px;}
.h10_c00287{height:59.579850px;}
.hf_c00287{height:59.580450px;}
.he_c00287{height:59.616750px;}
.h8_c00287{height:60.300000px;}
.h5_c00287{height:60.478650px;}
.h9_c00287{height:60.479850px;}
.ha_c00287{height:60.515100px;}
.hc_c00287{height:60.516750px;}
.hb_c00287{height:74.160300px;}
.h3_c00287{height:85.715700px;}
.h7_c00287{height:454.708500px;}
.h0_c00287{height:1262.879850px;}
.h1_c00287{height:1263.000000px;}
.w3_c00287{width:100.259700px;}
.w4_c00287{width:149.796750px;}
.w6_c00287{width:250.951500px;}
.w5_c00287{width:463.036500px;}
.w7_c00287{width:463.395000px;}
.w2_c00287{width:714.705000px;}
.w0_c00287{width:892.979700px;}
.w1_c00287{width:893.250000px;}
.x0_c00287{left:0.000000px;}
.x4_c00287{left:4.860000px;}
.x1_c00287{left:148.896750px;}
.x2_c00287{left:154.470000px;}
.x8_c00287{left:204.886500px;}
.x3_c00287{left:206.506500px;}
.x5_c00287{left:255.630000px;}
.x6_c00287{left:406.155000px;}
.x7_c00287{left:444.136500px;}
@media print{
.v0_c00287{vertical-align:0.000000pt;}
.ls1_c00287{letter-spacing:0.000000pt;}
.ls0_c00287{letter-spacing:0.191087pt;}
.ws0_c00287{word-spacing:-13.344030pt;}
.ws1_c00287{word-spacing:0.000000pt;}
._2_c00287{margin-left:-1.097138pt;}
._3_c00287{width:1.020313pt;}
._1_c00287{width:810.561749pt;}
._0_c00287{width:1196.429824pt;}
.fs1_c00287{font-size:48.000107pt;}
.fs0_c00287{font-size:58.880000pt;}
.y0_c00287{bottom:0.000000pt;}
.y18_c00287{bottom:15.680000pt;}
.y1b_c00287{bottom:15.681333pt;}
.yf_c00287{bottom:21.761467pt;}
.y21_c00287{bottom:22.239600pt;}
.y1e_c00287{bottom:22.240000pt;}
.yb_c00287{bottom:22.398667pt;}
.y16_c00287{bottom:22.401333pt;}
.y5_c00287{bottom:22.560000pt;}
.y13_c00287{bottom:22.561333pt;}
.y11_c00287{bottom:28.640000pt;}
.y10_c00287{bottom:28.641333pt;}
.y3_c00287{bottom:32.826667pt;}
.ye_c00287{bottom:35.521333pt;}
.y7_c00287{bottom:41.920000pt;}
.y1_c00287{bottom:50.272400pt;}
.y22_c00287{bottom:83.072400pt;}
.y20_c00287{bottom:97.632800pt;}
.y1f_c00287{bottom:151.226667pt;}
.y1d_c00287{bottom:204.826667pt;}
.y1c_c00287{bottom:258.466667pt;}
.y1a_c00287{bottom:299.106667pt;}
.y19_c00287{bottom:339.748000pt;}
.y17_c00287{bottom:380.548000pt;}
.y15_c00287{bottom:421.186667pt;}
.y14_c00287{bottom:475.426667pt;}
.y12_c00287{bottom:529.852000pt;}
.y6_c00287{bottom:584.093333pt;}
.yd_c00287{bottom:650.652000pt;}
.yc_c00287{bottom:717.213333pt;}
.ya_c00287{bottom:771.654667pt;}
.y9_c00287{bottom:825.894667pt;}
.y8_c00287{bottom:880.294667pt;}
.y4_c00287{bottom:934.534667pt;}
.y2_c00287{bottom:988.934667pt;}
.h6_c00287{height:34.968828pt;}
.hd_c00287{height:40.000000pt;}
.h4_c00287{height:42.866250pt;}
.h2_c00287{height:42.895000pt;}
.h10_c00287{height:52.959867pt;}
.hf_c00287{height:52.960400pt;}
.he_c00287{height:52.992667pt;}
.h8_c00287{height:53.600000pt;}
.h5_c00287{height:53.758800pt;}
.h9_c00287{height:53.759867pt;}
.ha_c00287{height:53.791200pt;}
.hc_c00287{height:53.792667pt;}
.hb_c00287{height:65.920267pt;}
.h3_c00287{height:76.191733pt;}
.h7_c00287{height:404.185333pt;}
.h0_c00287{height:1122.559867pt;}
.h1_c00287{height:1122.666667pt;}
.w3_c00287{width:89.119733pt;}
.w4_c00287{width:133.152667pt;}
.w6_c00287{width:223.068000pt;}
.w5_c00287{width:411.588000pt;}
.w7_c00287{width:411.906667pt;}
.w2_c00287{width:635.293333pt;}
.w0_c00287{width:793.759733pt;}
.w1_c00287{width:794.000000pt;}
.x0_c00287{left:0.000000pt;}
.x4_c00287{left:4.320000pt;}
.x1_c00287{left:132.352667pt;}
.x2_c00287{left:137.306667pt;}
.x8_c00287{left:182.121333pt;}
.x3_c00287{left:183.561333pt;}
.x5_c00287{left:227.226667pt;}
.x6_c00287{left:361.026667pt;}
.x7_c00287{left:394.788000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b4afbce4f73be568c8a71d8a.woff2')format("woff");}.ff1_c00288{font-family:ff1_c00288;line-height:0.666504;font-style:normal;font-weight:normal;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_5c0322e0562be53506294d3e.woff2')format("woff");}.ff2_c00288{font-family:ff2_c00288;line-height:0.938965;font-style:normal;font-weight:normal;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_cb325950b7b3fc4424dbd819.woff2')format("woff");}.ff3_c00288{font-family:ff3_c00288;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00288;src:url('chunks/assets/font_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff4_c00288{font-family:ff4_c00288;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00288{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00288{vertical-align:0.000000px;}
.ls1_c00288{letter-spacing:0.000000px;}
.ls0_c00288{letter-spacing:0.214973px;}
.sc__c00288{text-shadow:none;}
.sc0_c00288{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00288{-webkit-text-stroke:0px transparent;}
.sc0_c00288{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00288{word-spacing:-15.012033px;}
.ws1_c00288{word-spacing:0.000000px;}
._2_c00288{margin-left:-1.234280px;}
._3_c00288{width:1.147852px;}
._1_c00288{width:911.881968px;}
._0_c00288{width:1345.983552px;}
.fc0_c00288{color:rgb(0,0,0);}
.fs1_c00288{font-size:54.000120px;}
.fs0_c00288{font-size:66.240000px;}
.y0_c00288{bottom:0.000000px;}
.y8_c00288{bottom:10.080000px;}
.y19_c00288{bottom:17.640000px;}
.y1c_c00288{bottom:17.641500px;}
.y10_c00288{bottom:24.481650px;}
.y22_c00288{bottom:25.019550px;}
.y1f_c00288{bottom:25.020000px;}
.yc_c00288{bottom:25.198500px;}
.y17_c00288{bottom:25.201500px;}
.y5_c00288{bottom:25.380000px;}
.y14_c00288{bottom:25.381500px;}
.y12_c00288{bottom:32.220000px;}
.y11_c00288{bottom:32.221500px;}
.y3_c00288{bottom:36.930000px;}
.yf_c00288{bottom:39.961500px;}
.y1_c00288{bottom:56.556450px;}
.y23_c00288{bottom:93.456450px;}
.y21_c00288{bottom:109.836900px;}
.y20_c00288{bottom:170.130000px;}
.y1e_c00288{bottom:230.430000px;}
.y1d_c00288{bottom:290.775000px;}
.y1b_c00288{bottom:336.495000px;}
.y1a_c00288{bottom:382.216500px;}
.y18_c00288{bottom:428.116500px;}
.y7_c00288{bottom:432.225000px;}
.y16_c00288{bottom:473.835000px;}
.y15_c00288{bottom:534.855000px;}
.y13_c00288{bottom:596.083500px;}
.y6_c00288{bottom:657.105000px;}
.ye_c00288{bottom:731.983500px;}
.yd_c00288{bottom:806.865000px;}
.yb_c00288{bottom:868.111500px;}
.ya_c00288{bottom:929.131500px;}
.y9_c00288{bottom:990.331500px;}
.y4_c00288{bottom:1051.351500px;}
.y2_c00288{bottom:1112.551500px;}
.h6_c00288{height:39.339931px;}
.hd_c00288{height:45.000000px;}
.h4_c00288{height:48.224531px;}
.h2_c00288{height:48.256875px;}
.h10_c00288{height:59.579850px;}
.hf_c00288{height:59.580450px;}
.he_c00288{height:59.616750px;}
.h8_c00288{height:60.300000px;}
.h5_c00288{height:60.478650px;}
.h9_c00288{height:60.479850px;}
.ha_c00288{height:60.515100px;}
.hc_c00288{height:60.516750px;}
.hb_c00288{height:74.160300px;}
.h3_c00288{height:85.715700px;}
.h7_c00288{height:454.708500px;}
.h0_c00288{height:1262.879850px;}
.h1_c00288{height:1263.000000px;}
.w3_c00288{width:100.259700px;}
.w4_c00288{width:149.796750px;}
.w6_c00288{width:250.951500px;}
.w5_c00288{width:463.036500px;}
.w7_c00288{width:463.395000px;}
.w2_c00288{width:714.705000px;}
.w0_c00288{width:892.979700px;}
.w1_c00288{width:893.250000px;}
.x0_c00288{left:0.000000px;}
.x4_c00288{left:4.860000px;}
.x1_c00288{left:148.896750px;}
.x2_c00288{left:154.470000px;}
.x9_c00288{left:204.886500px;}
.x3_c00288{left:206.506500px;}
.x7_c00288{left:231.510000px;}
.x5_c00288{left:255.630000px;}
.x6_c00288{left:406.155000px;}
.x8_c00288{left:444.135000px;}
@media print{
.v0_c00288{vertical-align:0.000000pt;}
.ls1_c00288{letter-spacing:0.000000pt;}
.ls0_c00288{letter-spacing:0.191087pt;}
.ws0_c00288{word-spacing:-13.344030pt;}
.ws1_c00288{word-spacing:0.000000pt;}
._2_c00288{margin-left:-1.097138pt;}
._3_c00288{width:1.020313pt;}
._1_c00288{width:810.561749pt;}
._0_c00288{width:1196.429824pt;}
.fs1_c00288{font-size:48.000107pt;}
.fs0_c00288{font-size:58.880000pt;}
.y0_c00288{bottom:0.000000pt;}
.y8_c00288{bottom:8.960000pt;}
.y19_c00288{bottom:15.680000pt;}
.y1c_c00288{bottom:15.681333pt;}
.y10_c00288{bottom:21.761467pt;}
.y22_c00288{bottom:22.239600pt;}
.y1f_c00288{bottom:22.240000pt;}
.yc_c00288{bottom:22.398667pt;}
.y17_c00288{bottom:22.401333pt;}
.y5_c00288{bottom:22.560000pt;}
.y14_c00288{bottom:22.561333pt;}
.y12_c00288{bottom:28.640000pt;}
.y11_c00288{bottom:28.641333pt;}
.y3_c00288{bottom:32.826667pt;}
.yf_c00288{bottom:35.521333pt;}
.y1_c00288{bottom:50.272400pt;}
.y23_c00288{bottom:83.072400pt;}
.y21_c00288{bottom:97.632800pt;}
.y20_c00288{bottom:151.226667pt;}
.y1e_c00288{bottom:204.826667pt;}
.y1d_c00288{bottom:258.466667pt;}
.y1b_c00288{bottom:299.106667pt;}
.y1a_c00288{bottom:339.748000pt;}
.y18_c00288{bottom:380.548000pt;}
.y7_c00288{bottom:384.200000pt;}
.y16_c00288{bottom:421.186667pt;}
.y15_c00288{bottom:475.426667pt;}
.y13_c00288{bottom:529.852000pt;}
.y6_c00288{bottom:584.093333pt;}
.ye_c00288{bottom:650.652000pt;}
.yd_c00288{bottom:717.213333pt;}
.yb_c00288{bottom:771.654667pt;}
.ya_c00288{bottom:825.894667pt;}
.y9_c00288{bottom:880.294667pt;}
.y4_c00288{bottom:934.534667pt;}
.y2_c00288{bottom:988.934667pt;}
.h6_c00288{height:34.968828pt;}
.hd_c00288{height:40.000000pt;}
.h4_c00288{height:42.866250pt;}
.h2_c00288{height:42.895000pt;}
.h10_c00288{height:52.959867pt;}
.hf_c00288{height:52.960400pt;}
.he_c00288{height:52.992667pt;}
.h8_c00288{height:53.600000pt;}
.h5_c00288{height:53.758800pt;}
.h9_c00288{height:53.759867pt;}
.ha_c00288{height:53.791200pt;}
.hc_c00288{height:53.792667pt;}
.hb_c00288{height:65.920267pt;}
.h3_c00288{height:76.191733pt;}
.h7_c00288{height:404.185333pt;}
.h0_c00288{height:1122.559867pt;}
.h1_c00288{height:1122.666667pt;}
.w3_c00288{width:89.119733pt;}
.w4_c00288{width:133.152667pt;}
.w6_c00288{width:223.068000pt;}
.w5_c00288{width:411.588000pt;}
.w7_c00288{width:411.906667pt;}
.w2_c00288{width:635.293333pt;}
.w0_c00288{width:793.759733pt;}
.w1_c00288{width:794.000000pt;}
.x0_c00288{left:0.000000pt;}
.x4_c00288{left:4.320000pt;}
.x1_c00288{left:132.352667pt;}
.x2_c00288{left:137.306667pt;}
.x9_c00288{left:182.121333pt;}
.x3_c00288{left:183.561333pt;}
.x7_c00288{left:205.786667pt;}
.x5_c00288{left:227.226667pt;}
.x6_c00288{left:361.026667pt;}
.x8_c00288{left:394.786667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b4afbce4f73be568c8a71d8a.woff2')format("woff");}.ff1_c00289{font-family:ff1_c00289;line-height:0.666504;font-style:normal;font-weight:normal;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_f68eb57560965b0d468c602f.woff2')format("woff");}.ff2_c00289{font-family:ff2_c00289;line-height:0.938965;font-style:normal;font-weight:normal;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_cb325950b7b3fc4424dbd819.woff2')format("woff");}.ff3_c00289{font-family:ff3_c00289;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00289;src:url('chunks/assets/font_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff4_c00289{font-family:ff4_c00289;line-height:0.666504;font-style: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;}
.ls1_c00289{letter-spacing:0.000000px;}
.ls0_c00289{letter-spacing:0.214973px;}
.sc__c00289{text-shadow:none;}
.sc0_c00289{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00289{-webkit-text-stroke:0px transparent;}
.sc0_c00289{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00289{word-spacing:-15.012033px;}
.ws1_c00289{word-spacing:0.000000px;}
._2_c00289{margin-left:-1.234280px;}
._3_c00289{width:1.147852px;}
._1_c00289{width:911.881968px;}
._0_c00289{width:1345.983552px;}
.fc0_c00289{color:rgb(0,0,0);}
.fs1_c00289{font-size:54.000120px;}
.fs0_c00289{font-size:66.240000px;}
.y0_c00289{bottom:0.000000px;}
.y8_c00289{bottom:10.080000px;}
.y19_c00289{bottom:17.640000px;}
.y1c_c00289{bottom:17.641500px;}
.y10_c00289{bottom:24.481650px;}
.y22_c00289{bottom:25.019550px;}
.y1f_c00289{bottom:25.020000px;}
.yc_c00289{bottom:25.198500px;}
.y17_c00289{bottom:25.201500px;}
.y5_c00289{bottom:25.380000px;}
.y14_c00289{bottom:25.381500px;}
.y12_c00289{bottom:32.220000px;}
.y11_c00289{bottom:32.221500px;}
.y3_c00289{bottom:36.930000px;}
.yf_c00289{bottom:39.961500px;}
.y1_c00289{bottom:56.556450px;}
.y23_c00289{bottom:93.456450px;}
.y21_c00289{bottom:109.836900px;}
.y20_c00289{bottom:170.130000px;}
.y1e_c00289{bottom:230.430000px;}
.y1d_c00289{bottom:290.775000px;}
.y1b_c00289{bottom:336.495000px;}
.y1a_c00289{bottom:382.216500px;}
.y18_c00289{bottom:428.116500px;}
.y7_c00289{bottom:432.225000px;}
.y16_c00289{bottom:473.835000px;}
.y15_c00289{bottom:534.855000px;}
.y13_c00289{bottom:596.083500px;}
.y6_c00289{bottom:657.105000px;}
.ye_c00289{bottom:731.983500px;}
.yd_c00289{bottom:806.865000px;}
.yb_c00289{bottom:868.111500px;}
.ya_c00289{bottom:929.131500px;}
.y9_c00289{bottom:990.331500px;}
.y4_c00289{bottom:1051.351500px;}
.y2_c00289{bottom:1112.551500px;}
.h6_c00289{height:39.339931px;}
.hd_c00289{height:45.000000px;}
.h4_c00289{height:48.224531px;}
.h2_c00289{height:48.256875px;}
.h10_c00289{height:59.579850px;}
.hf_c00289{height:59.580450px;}
.he_c00289{height:59.616750px;}
.h8_c00289{height:60.300000px;}
.h5_c00289{height:60.478650px;}
.h9_c00289{height:60.479850px;}
.ha_c00289{height:60.515100px;}
.hc_c00289{height:60.516750px;}
.hb_c00289{height:74.160300px;}
.h3_c00289{height:85.715700px;}
.h7_c00289{height:454.708500px;}
.h0_c00289{height:1262.879850px;}
.h1_c00289{height:1263.000000px;}
.w3_c00289{width:100.259700px;}
.w4_c00289{width:149.796750px;}
.w6_c00289{width:250.951500px;}
.w5_c00289{width:463.036500px;}
.w7_c00289{width:463.395000px;}
.w2_c00289{width:714.705000px;}
.w0_c00289{width:892.979700px;}
.w1_c00289{width:893.250000px;}
.x0_c00289{left:0.000000px;}
.x4_c00289{left:4.860000px;}
.x1_c00289{left:148.896750px;}
.x2_c00289{left:154.470000px;}
.x9_c00289{left:204.886500px;}
.x3_c00289{left:206.506500px;}
.x7_c00289{left:231.510000px;}
.x5_c00289{left:255.630000px;}
.x6_c00289{left:406.155000px;}
.x8_c00289{left:444.135000px;}
@media print{
.v0_c00289{vertical-align:0.000000pt;}
.ls1_c00289{letter-spacing:0.000000pt;}
.ls0_c00289{letter-spacing:0.191087pt;}
.ws0_c00289{word-spacing:-13.344030pt;}
.ws1_c00289{word-spacing:0.000000pt;}
._2_c00289{margin-left:-1.097138pt;}
._3_c00289{width:1.020313pt;}
._1_c00289{width:810.561749pt;}
._0_c00289{width:1196.429824pt;}
.fs1_c00289{font-size:48.000107pt;}
.fs0_c00289{font-size:58.880000pt;}
.y0_c00289{bottom:0.000000pt;}
.y8_c00289{bottom:8.960000pt;}
.y19_c00289{bottom:15.680000pt;}
.y1c_c00289{bottom:15.681333pt;}
.y10_c00289{bottom:21.761467pt;}
.y22_c00289{bottom:22.239600pt;}
.y1f_c00289{bottom:22.240000pt;}
.yc_c00289{bottom:22.398667pt;}
.y17_c00289{bottom:22.401333pt;}
.y5_c00289{bottom:22.560000pt;}
.y14_c00289{bottom:22.561333pt;}
.y12_c00289{bottom:28.640000pt;}
.y11_c00289{bottom:28.641333pt;}
.y3_c00289{bottom:32.826667pt;}
.yf_c00289{bottom:35.521333pt;}
.y1_c00289{bottom:50.272400pt;}
.y23_c00289{bottom:83.072400pt;}
.y21_c00289{bottom:97.632800pt;}
.y20_c00289{bottom:151.226667pt;}
.y1e_c00289{bottom:204.826667pt;}
.y1d_c00289{bottom:258.466667pt;}
.y1b_c00289{bottom:299.106667pt;}
.y1a_c00289{bottom:339.748000pt;}
.y18_c00289{bottom:380.548000pt;}
.y7_c00289{bottom:384.200000pt;}
.y16_c00289{bottom:421.186667pt;}
.y15_c00289{bottom:475.426667pt;}
.y13_c00289{bottom:529.852000pt;}
.y6_c00289{bottom:584.093333pt;}
.ye_c00289{bottom:650.652000pt;}
.yd_c00289{bottom:717.213333pt;}
.yb_c00289{bottom:771.654667pt;}
.ya_c00289{bottom:825.894667pt;}
.y9_c00289{bottom:880.294667pt;}
.y4_c00289{bottom:934.534667pt;}
.y2_c00289{bottom:988.934667pt;}
.h6_c00289{height:34.968828pt;}
.hd_c00289{height:40.000000pt;}
.h4_c00289{height:42.866250pt;}
.h2_c00289{height:42.895000pt;}
.h10_c00289{height:52.959867pt;}
.hf_c00289{height:52.960400pt;}
.he_c00289{height:52.992667pt;}
.h8_c00289{height:53.600000pt;}
.h5_c00289{height:53.758800pt;}
.h9_c00289{height:53.759867pt;}
.ha_c00289{height:53.791200pt;}
.hc_c00289{height:53.792667pt;}
.hb_c00289{height:65.920267pt;}
.h3_c00289{height:76.191733pt;}
.h7_c00289{height:404.185333pt;}
.h0_c00289{height:1122.559867pt;}
.h1_c00289{height:1122.666667pt;}
.w3_c00289{width:89.119733pt;}
.w4_c00289{width:133.152667pt;}
.w6_c00289{width:223.068000pt;}
.w5_c00289{width:411.588000pt;}
.w7_c00289{width:411.906667pt;}
.w2_c00289{width:635.293333pt;}
.w0_c00289{width:793.759733pt;}
.w1_c00289{width:794.000000pt;}
.x0_c00289{left:0.000000pt;}
.x4_c00289{left:4.320000pt;}
.x1_c00289{left:132.352667pt;}
.x2_c00289{left:137.306667pt;}
.x9_c00289{left:182.121333pt;}
.x3_c00289{left:183.561333pt;}
.x7_c00289{left:205.786667pt;}
.x5_c00289{left:227.226667pt;}
.x6_c00289{left:361.026667pt;}
.x8_c00289{left:394.786667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b4afbce4f73be568c8a71d8a.woff2')format("woff");}.ff1_c00290{font-family:ff1_c00290;line-height:0.666504;font-style:normal;font-weight:normal;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_7e1b524b528e977109cd3b88.woff2')format("woff");}.ff2_c00290{font-family:ff2_c00290;line-height:0.938965;font-style:normal;font-weight:normal;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_1c84e557915e5449690ed554.woff2')format("woff");}.ff3_c00290{font-family:ff3_c00290;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00290;src:url('chunks/assets/font_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff4_c00290{font-family:ff4_c00290;line-height:0.666504;font-style: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;}
.ls1_c00290{letter-spacing:0.000000px;}
.ls0_c00290{letter-spacing:0.217313px;}
.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:-15.012033px;}
.ws1_c00290{word-spacing:0.000000px;}
._2_c00290{margin-left:-1.234280px;}
._3_c00290{width:1.110640px;}
._1_c00290{width:997.561968px;}
._0_c00290{width:1345.983552px;}
.fc0_c00290{color:rgb(0,0,0);}
.fs1_c00290{font-size:54.000120px;}
.fs0_c00290{font-size:66.240000px;}
.y0_c00290{bottom:0.000000px;}
.y18_c00290{bottom:17.640000px;}
.y1b_c00290{bottom:17.641500px;}
.yf_c00290{bottom:24.481650px;}
.y21_c00290{bottom:25.019550px;}
.y1e_c00290{bottom:25.020000px;}
.yb_c00290{bottom:25.198500px;}
.y16_c00290{bottom:25.201500px;}
.y5_c00290{bottom:25.380000px;}
.y13_c00290{bottom:25.381500px;}
.y11_c00290{bottom:32.220000px;}
.y10_c00290{bottom:32.221500px;}
.y7_c00290{bottom:36.180000px;}
.y3_c00290{bottom:36.930000px;}
.ye_c00290{bottom:39.961500px;}
.y1_c00290{bottom:56.556450px;}
.y20_c00290{bottom:109.836900px;}
.y1f_c00290{bottom:170.130000px;}
.y1d_c00290{bottom:230.430000px;}
.y1c_c00290{bottom:290.775000px;}
.y1a_c00290{bottom:336.495000px;}
.y19_c00290{bottom:382.216500px;}
.y17_c00290{bottom:428.116500px;}
.y15_c00290{bottom:473.835000px;}
.y14_c00290{bottom:534.855000px;}
.y12_c00290{bottom:596.083500px;}
.y6_c00290{bottom:657.105000px;}
.yd_c00290{bottom:731.983500px;}
.yc_c00290{bottom:806.865000px;}
.ya_c00290{bottom:868.111500px;}
.y9_c00290{bottom:929.131500px;}
.y8_c00290{bottom:990.331500px;}
.y4_c00290{bottom:1051.351500px;}
.y2_c00290{bottom:1112.551500px;}
.h6_c00290{height:39.339931px;}
.hd_c00290{height:45.000000px;}
.h4_c00290{height:48.224531px;}
.h2_c00290{height:48.256875px;}
.h10_c00290{height:59.579850px;}
.hf_c00290{height:59.580450px;}
.he_c00290{height:59.616750px;}
.h8_c00290{height:60.300000px;}
.h5_c00290{height:60.478650px;}
.h9_c00290{height:60.479850px;}
.ha_c00290{height:60.515100px;}
.hc_c00290{height:60.516750px;}
.hb_c00290{height:74.160300px;}
.h3_c00290{height:85.715700px;}
.h7_c00290{height:454.708500px;}
.h0_c00290{height:1262.879850px;}
.h1_c00290{height:1263.000000px;}
.w3_c00290{width:100.259700px;}
.w4_c00290{width:149.976600px;}
.w6_c00290{width:250.950000px;}
.w5_c00290{width:441.795000px;}
.w7_c00290{width:442.155000px;}
.w2_c00290{width:693.465000px;}
.w0_c00290{width:892.979700px;}
.w1_c00290{width:893.250000px;}
.x0_c00290{left:0.000000px;}
.x3_c00290{left:4.853250px;}
.x1_c00290{left:148.896750px;}
.x7_c00290{left:194.259750px;}
.x2_c00290{left:199.479750px;}
.x6_c00290{left:220.890000px;}
.x4_c00290{left:249.870000px;}
.x5_c00290{left:400.575000px;}
@media print{
.v0_c00290{vertical-align:0.000000pt;}
.ls1_c00290{letter-spacing:0.000000pt;}
.ls0_c00290{letter-spacing:0.193167pt;}
.ws0_c00290{word-spacing:-13.344030pt;}
.ws1_c00290{word-spacing:0.000000pt;}
._2_c00290{margin-left:-1.097138pt;}
._3_c00290{width:0.987236pt;}
._1_c00290{width:886.721749pt;}
._0_c00290{width:1196.429824pt;}
.fs1_c00290{font-size:48.000107pt;}
.fs0_c00290{font-size:58.880000pt;}
.y0_c00290{bottom:0.000000pt;}
.y18_c00290{bottom:15.680000pt;}
.y1b_c00290{bottom:15.681333pt;}
.yf_c00290{bottom:21.761467pt;}
.y21_c00290{bottom:22.239600pt;}
.y1e_c00290{bottom:22.240000pt;}
.yb_c00290{bottom:22.398667pt;}
.y16_c00290{bottom:22.401333pt;}
.y5_c00290{bottom:22.560000pt;}
.y13_c00290{bottom:22.561333pt;}
.y11_c00290{bottom:28.640000pt;}
.y10_c00290{bottom:28.641333pt;}
.y7_c00290{bottom:32.160000pt;}
.y3_c00290{bottom:32.826667pt;}
.ye_c00290{bottom:35.521333pt;}
.y1_c00290{bottom:50.272400pt;}
.y20_c00290{bottom:97.632800pt;}
.y1f_c00290{bottom:151.226667pt;}
.y1d_c00290{bottom:204.826667pt;}
.y1c_c00290{bottom:258.466667pt;}
.y1a_c00290{bottom:299.106667pt;}
.y19_c00290{bottom:339.748000pt;}
.y17_c00290{bottom:380.548000pt;}
.y15_c00290{bottom:421.186667pt;}
.y14_c00290{bottom:475.426667pt;}
.y12_c00290{bottom:529.852000pt;}
.y6_c00290{bottom:584.093333pt;}
.yd_c00290{bottom:650.652000pt;}
.yc_c00290{bottom:717.213333pt;}
.ya_c00290{bottom:771.654667pt;}
.y9_c00290{bottom:825.894667pt;}
.y8_c00290{bottom:880.294667pt;}
.y4_c00290{bottom:934.534667pt;}
.y2_c00290{bottom:988.934667pt;}
.h6_c00290{height:34.968828pt;}
.hd_c00290{height:40.000000pt;}
.h4_c00290{height:42.866250pt;}
.h2_c00290{height:42.895000pt;}
.h10_c00290{height:52.959867pt;}
.hf_c00290{height:52.960400pt;}
.he_c00290{height:52.992667pt;}
.h8_c00290{height:53.600000pt;}
.h5_c00290{height:53.758800pt;}
.h9_c00290{height:53.759867pt;}
.ha_c00290{height:53.791200pt;}
.hc_c00290{height:53.792667pt;}
.hb_c00290{height:65.920267pt;}
.h3_c00290{height:76.191733pt;}
.h7_c00290{height:404.185333pt;}
.h0_c00290{height:1122.559867pt;}
.h1_c00290{height:1122.666667pt;}
.w3_c00290{width:89.119733pt;}
.w4_c00290{width:133.312533pt;}
.w6_c00290{width:223.066667pt;}
.w5_c00290{width:392.706667pt;}
.w7_c00290{width:393.026667pt;}
.w2_c00290{width:616.413333pt;}
.w0_c00290{width:793.759733pt;}
.w1_c00290{width:794.000000pt;}
.x0_c00290{left:0.000000pt;}
.x3_c00290{left:4.314000pt;}
.x1_c00290{left:132.352667pt;}
.x7_c00290{left:172.675333pt;}
.x2_c00290{left:177.315333pt;}
.x6_c00290{left:196.346667pt;}
.x4_c00290{left:222.106667pt;}
.x5_c00290{left:356.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_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_b4afbce4f73be568c8a71d8a.woff2')format("woff");}.ff1_c00291{font-family:ff1_c00291;line-height:0.666504;font-style:normal;font-weight:normal;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_8fe54d3264bfd766d95420fb.woff2')format("woff");}.ff2_c00291{font-family:ff2_c00291;line-height:0.938965;font-style:normal;font-weight:normal;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_1c84e557915e5449690ed554.woff2')format("woff");}.ff3_c00291{font-family:ff3_c00291;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00291;src:url('chunks/assets/font_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff4_c00291{font-family:ff4_c00291;line-height:0.666504;font-style: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;}
.ls1_c00291{letter-spacing:0.000000px;}
.ls0_c00291{letter-spacing:0.217313px;}
.sc__c00291{text-shadow:none;}
.sc0_c00291{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00291{-webkit-text-stroke:0px transparent;}
.sc0_c00291{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00291{word-spacing:-15.012033px;}
.ws1_c00291{word-spacing:0.000000px;}
._2_c00291{margin-left:-1.234280px;}
._3_c00291{width:1.058206px;}
._4_c00291{width:849.183552px;}
._1_c00291{width:997.561968px;}
._0_c00291{width:1345.983552px;}
.fc0_c00291{color:rgb(0,0,0);}
.fs1_c00291{font-size:54.000120px;}
.fs0_c00291{font-size:66.240000px;}
.y0_c00291{bottom:0.000000px;}
.y7_c00291{bottom:5.220000px;}
.y18_c00291{bottom:17.640000px;}
.y1b_c00291{bottom:17.641500px;}
.yf_c00291{bottom:24.481650px;}
.y21_c00291{bottom:25.019550px;}
.y1e_c00291{bottom:25.020000px;}
.yb_c00291{bottom:25.198500px;}
.y16_c00291{bottom:25.201500px;}
.y5_c00291{bottom:25.380000px;}
.y13_c00291{bottom:25.381500px;}
.y11_c00291{bottom:32.220000px;}
.y10_c00291{bottom:32.221500px;}
.y3_c00291{bottom:36.930000px;}
.ye_c00291{bottom:39.961500px;}
.y1_c00291{bottom:56.556450px;}
.y22_c00291{bottom:93.456450px;}
.y20_c00291{bottom:109.836900px;}
.y1f_c00291{bottom:170.130000px;}
.y1d_c00291{bottom:230.430000px;}
.y1c_c00291{bottom:290.775000px;}
.y1a_c00291{bottom:336.495000px;}
.y19_c00291{bottom:382.216500px;}
.y17_c00291{bottom:428.116500px;}
.y15_c00291{bottom:473.835000px;}
.y14_c00291{bottom:534.855000px;}
.y12_c00291{bottom:596.083500px;}
.y6_c00291{bottom:657.105000px;}
.yd_c00291{bottom:731.983500px;}
.yc_c00291{bottom:806.865000px;}
.ya_c00291{bottom:868.111500px;}
.y9_c00291{bottom:929.131500px;}
.y8_c00291{bottom:990.331500px;}
.y4_c00291{bottom:1051.351500px;}
.y2_c00291{bottom:1112.551500px;}
.h6_c00291{height:39.339931px;}
.h11_c00291{height:44.149219px;}
.hd_c00291{height:45.000000px;}
.h4_c00291{height:48.224531px;}
.h2_c00291{height:48.256875px;}
.h10_c00291{height:59.579850px;}
.hf_c00291{height:59.580450px;}
.he_c00291{height:59.616750px;}
.h8_c00291{height:60.300000px;}
.h5_c00291{height:60.478650px;}
.h9_c00291{height:60.479850px;}
.ha_c00291{height:60.515100px;}
.hc_c00291{height:60.516750px;}
.hb_c00291{height:74.160300px;}
.h3_c00291{height:85.715700px;}
.h7_c00291{height:454.708500px;}
.h0_c00291{height:1262.879850px;}
.h1_c00291{height:1263.000000px;}
.w3_c00291{width:100.259700px;}
.w4_c00291{width:149.976600px;}
.w6_c00291{width:250.950000px;}
.w5_c00291{width:441.795000px;}
.w7_c00291{width:442.155000px;}
.w2_c00291{width:693.465000px;}
.w0_c00291{width:892.979700px;}
.w1_c00291{width:893.250000px;}
.x0_c00291{left:0.000000px;}
.x3_c00291{left:4.853250px;}
.x1_c00291{left:148.896750px;}
.x7_c00291{left:194.259750px;}
.x2_c00291{left:199.479750px;}
.x6_c00291{left:220.890000px;}
.x4_c00291{left:249.870000px;}
.x5_c00291{left:400.575000px;}
@media print{
.v0_c00291{vertical-align:0.000000pt;}
.ls1_c00291{letter-spacing:0.000000pt;}
.ls0_c00291{letter-spacing:0.193167pt;}
.ws0_c00291{word-spacing:-13.344030pt;}
.ws1_c00291{word-spacing:0.000000pt;}
._2_c00291{margin-left:-1.097138pt;}
._3_c00291{width:0.940628pt;}
._4_c00291{width:754.829824pt;}
._1_c00291{width:886.721749pt;}
._0_c00291{width:1196.429824pt;}
.fs1_c00291{font-size:48.000107pt;}
.fs0_c00291{font-size:58.880000pt;}
.y0_c00291{bottom:0.000000pt;}
.y7_c00291{bottom:4.640000pt;}
.y18_c00291{bottom:15.680000pt;}
.y1b_c00291{bottom:15.681333pt;}
.yf_c00291{bottom:21.761467pt;}
.y21_c00291{bottom:22.239600pt;}
.y1e_c00291{bottom:22.240000pt;}
.yb_c00291{bottom:22.398667pt;}
.y16_c00291{bottom:22.401333pt;}
.y5_c00291{bottom:22.560000pt;}
.y13_c00291{bottom:22.561333pt;}
.y11_c00291{bottom:28.640000pt;}
.y10_c00291{bottom:28.641333pt;}
.y3_c00291{bottom:32.826667pt;}
.ye_c00291{bottom:35.521333pt;}
.y1_c00291{bottom:50.272400pt;}
.y22_c00291{bottom:83.072400pt;}
.y20_c00291{bottom:97.632800pt;}
.y1f_c00291{bottom:151.226667pt;}
.y1d_c00291{bottom:204.826667pt;}
.y1c_c00291{bottom:258.466667pt;}
.y1a_c00291{bottom:299.106667pt;}
.y19_c00291{bottom:339.748000pt;}
.y17_c00291{bottom:380.548000pt;}
.y15_c00291{bottom:421.186667pt;}
.y14_c00291{bottom:475.426667pt;}
.y12_c00291{bottom:529.852000pt;}
.y6_c00291{bottom:584.093333pt;}
.yd_c00291{bottom:650.652000pt;}
.yc_c00291{bottom:717.213333pt;}
.ya_c00291{bottom:771.654667pt;}
.y9_c00291{bottom:825.894667pt;}
.y8_c00291{bottom:880.294667pt;}
.y4_c00291{bottom:934.534667pt;}
.y2_c00291{bottom:988.934667pt;}
.h6_c00291{height:34.968828pt;}
.h11_c00291{height:39.243750pt;}
.hd_c00291{height:40.000000pt;}
.h4_c00291{height:42.866250pt;}
.h2_c00291{height:42.895000pt;}
.h10_c00291{height:52.959867pt;}
.hf_c00291{height:52.960400pt;}
.he_c00291{height:52.992667pt;}
.h8_c00291{height:53.600000pt;}
.h5_c00291{height:53.758800pt;}
.h9_c00291{height:53.759867pt;}
.ha_c00291{height:53.791200pt;}
.hc_c00291{height:53.792667pt;}
.hb_c00291{height:65.920267pt;}
.h3_c00291{height:76.191733pt;}
.h7_c00291{height:404.185333pt;}
.h0_c00291{height:1122.559867pt;}
.h1_c00291{height:1122.666667pt;}
.w3_c00291{width:89.119733pt;}
.w4_c00291{width:133.312533pt;}
.w6_c00291{width:223.066667pt;}
.w5_c00291{width:392.706667pt;}
.w7_c00291{width:393.026667pt;}
.w2_c00291{width:616.413333pt;}
.w0_c00291{width:793.759733pt;}
.w1_c00291{width:794.000000pt;}
.x0_c00291{left:0.000000pt;}
.x3_c00291{left:4.314000pt;}
.x1_c00291{left:132.352667pt;}
.x7_c00291{left:172.675333pt;}
.x2_c00291{left:177.315333pt;}
.x6_c00291{left:196.346667pt;}
.x4_c00291{left:222.106667pt;}
.x5_c00291{left:356.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_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_b4afbce4f73be568c8a71d8a.woff2')format("woff");}.ff1_c00292{font-family:ff1_c00292;line-height:0.666504;font-style:normal;font-weight:normal;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_e7c0739bc479483f3e27536f.woff2')format("woff");}.ff2_c00292{font-family:ff2_c00292;line-height:0.938965;font-style:normal;font-weight:normal;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_1c84e557915e5449690ed554.woff2')format("woff");}.ff3_c00292{font-family:ff3_c00292;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00292;src:url('chunks/assets/font_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff4_c00292{font-family:ff4_c00292;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00292{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00292{vertical-align:0.000000px;}
.ls1_c00292{letter-spacing:0.000000px;}
.ls0_c00292{letter-spacing:0.217313px;}
.sc__c00292{text-shadow:none;}
.sc0_c00292{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00292{-webkit-text-stroke:0px transparent;}
.sc0_c00292{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00292{word-spacing:-15.012033px;}
.ws1_c00292{word-spacing:0.000000px;}
._2_c00292{margin-left:-1.234280px;}
._3_c00292{width:1.040185px;}
._1_c00292{width:997.561968px;}
._0_c00292{width:1345.983552px;}
.fc0_c00292{color:rgb(0,0,0);}
.fs1_c00292{font-size:54.000120px;}
.fs0_c00292{font-size:66.240000px;}
.y0_c00292{bottom:0.000000px;}
.y18_c00292{bottom:17.640000px;}
.y1b_c00292{bottom:17.641500px;}
.yf_c00292{bottom:24.481650px;}
.y21_c00292{bottom:25.019550px;}
.y1e_c00292{bottom:25.020000px;}
.yb_c00292{bottom:25.198500px;}
.y16_c00292{bottom:25.201500px;}
.y5_c00292{bottom:25.380000px;}
.y13_c00292{bottom:25.381500px;}
.y7_c00292{bottom:28.440000px;}
.y11_c00292{bottom:32.220000px;}
.y10_c00292{bottom:32.221500px;}
.y3_c00292{bottom:36.930000px;}
.ye_c00292{bottom:39.961500px;}
.y1_c00292{bottom:56.556450px;}
.y20_c00292{bottom:109.836900px;}
.y1f_c00292{bottom:170.130000px;}
.y1d_c00292{bottom:230.430000px;}
.y1c_c00292{bottom:290.775000px;}
.y1a_c00292{bottom:336.495000px;}
.y19_c00292{bottom:382.216500px;}
.y17_c00292{bottom:428.116500px;}
.y15_c00292{bottom:473.835000px;}
.y14_c00292{bottom:534.855000px;}
.y12_c00292{bottom:596.083500px;}
.y6_c00292{bottom:657.105000px;}
.yd_c00292{bottom:731.983500px;}
.yc_c00292{bottom:806.865000px;}
.ya_c00292{bottom:868.111500px;}
.y9_c00292{bottom:929.131500px;}
.y8_c00292{bottom:990.331500px;}
.y4_c00292{bottom:1051.351500px;}
.y2_c00292{bottom:1112.551500px;}
.h6_c00292{height:39.339931px;}
.hd_c00292{height:45.000000px;}
.h4_c00292{height:48.224531px;}
.h2_c00292{height:48.256875px;}
.h10_c00292{height:59.579850px;}
.hf_c00292{height:59.580450px;}
.he_c00292{height:59.616750px;}
.h8_c00292{height:60.300000px;}
.h5_c00292{height:60.478650px;}
.h9_c00292{height:60.479850px;}
.ha_c00292{height:60.515100px;}
.hc_c00292{height:60.516750px;}
.hb_c00292{height:74.160300px;}
.h3_c00292{height:85.715700px;}
.h7_c00292{height:454.708500px;}
.h0_c00292{height:1262.879850px;}
.h1_c00292{height:1263.000000px;}
.w3_c00292{width:105.119550px;}
.w4_c00292{width:149.976600px;}
.w6_c00292{width:255.808500px;}
.w5_c00292{width:441.795000px;}
.w7_c00292{width:442.155000px;}
.w2_c00292{width:698.325000px;}
.w0_c00292{width:892.979700px;}
.w1_c00292{width:893.250000px;}
.x0_c00292{left:0.000000px;}
.x4_c00292{left:4.859850px;}
.x2_c00292{left:144.036900px;}
.x1_c00292{left:148.896750px;}
.x8_c00292{left:196.779600px;}
.x3_c00292{left:201.999600px;}
.x7_c00292{left:220.890000px;}
.x5_c00292{left:249.870000px;}
.x6_c00292{left:400.575000px;}
@media print{
.v0_c00292{vertical-align:0.000000pt;}
.ls1_c00292{letter-spacing:0.000000pt;}
.ls0_c00292{letter-spacing:0.193167pt;}
.ws0_c00292{word-spacing:-13.344030pt;}
.ws1_c00292{word-spacing:0.000000pt;}
._2_c00292{margin-left:-1.097138pt;}
._3_c00292{width:0.924609pt;}
._1_c00292{width:886.721749pt;}
._0_c00292{width:1196.429824pt;}
.fs1_c00292{font-size:48.000107pt;}
.fs0_c00292{font-size:58.880000pt;}
.y0_c00292{bottom:0.000000pt;}
.y18_c00292{bottom:15.680000pt;}
.y1b_c00292{bottom:15.681333pt;}
.yf_c00292{bottom:21.761467pt;}
.y21_c00292{bottom:22.239600pt;}
.y1e_c00292{bottom:22.240000pt;}
.yb_c00292{bottom:22.398667pt;}
.y16_c00292{bottom:22.401333pt;}
.y5_c00292{bottom:22.560000pt;}
.y13_c00292{bottom:22.561333pt;}
.y7_c00292{bottom:25.280000pt;}
.y11_c00292{bottom:28.640000pt;}
.y10_c00292{bottom:28.641333pt;}
.y3_c00292{bottom:32.826667pt;}
.ye_c00292{bottom:35.521333pt;}
.y1_c00292{bottom:50.272400pt;}
.y20_c00292{bottom:97.632800pt;}
.y1f_c00292{bottom:151.226667pt;}
.y1d_c00292{bottom:204.826667pt;}
.y1c_c00292{bottom:258.466667pt;}
.y1a_c00292{bottom:299.106667pt;}
.y19_c00292{bottom:339.748000pt;}
.y17_c00292{bottom:380.548000pt;}
.y15_c00292{bottom:421.186667pt;}
.y14_c00292{bottom:475.426667pt;}
.y12_c00292{bottom:529.852000pt;}
.y6_c00292{bottom:584.093333pt;}
.yd_c00292{bottom:650.652000pt;}
.yc_c00292{bottom:717.213333pt;}
.ya_c00292{bottom:771.654667pt;}
.y9_c00292{bottom:825.894667pt;}
.y8_c00292{bottom:880.294667pt;}
.y4_c00292{bottom:934.534667pt;}
.y2_c00292{bottom:988.934667pt;}
.h6_c00292{height:34.968828pt;}
.hd_c00292{height:40.000000pt;}
.h4_c00292{height:42.866250pt;}
.h2_c00292{height:42.895000pt;}
.h10_c00292{height:52.959867pt;}
.hf_c00292{height:52.960400pt;}
.he_c00292{height:52.992667pt;}
.h8_c00292{height:53.600000pt;}
.h5_c00292{height:53.758800pt;}
.h9_c00292{height:53.759867pt;}
.ha_c00292{height:53.791200pt;}
.hc_c00292{height:53.792667pt;}
.hb_c00292{height:65.920267pt;}
.h3_c00292{height:76.191733pt;}
.h7_c00292{height:404.185333pt;}
.h0_c00292{height:1122.559867pt;}
.h1_c00292{height:1122.666667pt;}
.w3_c00292{width:93.439600pt;}
.w4_c00292{width:133.312533pt;}
.w6_c00292{width:227.385333pt;}
.w5_c00292{width:392.706667pt;}
.w7_c00292{width:393.026667pt;}
.w2_c00292{width:620.733333pt;}
.w0_c00292{width:793.759733pt;}
.w1_c00292{width:794.000000pt;}
.x0_c00292{left:0.000000pt;}
.x4_c00292{left:4.319867pt;}
.x2_c00292{left:128.032800pt;}
.x1_c00292{left:132.352667pt;}
.x8_c00292{left:174.915200pt;}
.x3_c00292{left:179.555200pt;}
.x7_c00292{left:196.346667pt;}
.x5_c00292{left:222.106667pt;}
.x6_c00292{left:356.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_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_b4afbce4f73be568c8a71d8a.woff2')format("woff");}.ff1_c00293{font-family:ff1_c00293;line-height:0.666504;font-style:normal;font-weight:normal;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_3eee2a6df14d08a5f9cbcc25.woff2')format("woff");}.ff2_c00293{font-family:ff2_c00293;line-height:0.938965;font-style:normal;font-weight:normal;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_1c84e557915e5449690ed554.woff2')format("woff");}.ff3_c00293{font-family:ff3_c00293;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00293;src:url('chunks/assets/font_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff4_c00293{font-family:ff4_c00293;line-height:0.666504;font-style: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;}
.ls1_c00293{letter-spacing:0.000000px;}
.ls0_c00293{letter-spacing:0.217313px;}
.sc__c00293{text-shadow:none;}
.sc0_c00293{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00293{-webkit-text-stroke:0px transparent;}
.sc0_c00293{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00293{word-spacing:-15.012033px;}
.ws1_c00293{word-spacing:0.000000px;}
._2_c00293{margin-left:-1.234280px;}
._3_c00293{width:1.110640px;}
._1_c00293{width:997.561968px;}
._0_c00293{width:1345.983552px;}
.fc0_c00293{color:rgb(0,0,0);}
.fs1_c00293{font-size:54.000120px;}
.fs0_c00293{font-size:66.240000px;}
.y0_c00293{bottom:0.000000px;}
.y18_c00293{bottom:17.640000px;}
.y1b_c00293{bottom:17.641500px;}
.yf_c00293{bottom:24.481650px;}
.y21_c00293{bottom:25.019550px;}
.y1e_c00293{bottom:25.020000px;}
.yb_c00293{bottom:25.198500px;}
.y16_c00293{bottom:25.201500px;}
.y5_c00293{bottom:25.380000px;}
.y13_c00293{bottom:25.381500px;}
.y7_c00293{bottom:28.440000px;}
.y11_c00293{bottom:32.220000px;}
.y10_c00293{bottom:32.221500px;}
.y3_c00293{bottom:36.930000px;}
.ye_c00293{bottom:39.961500px;}
.y1_c00293{bottom:56.556450px;}
.y22_c00293{bottom:93.456450px;}
.y20_c00293{bottom:109.836900px;}
.y1f_c00293{bottom:170.130000px;}
.y1d_c00293{bottom:230.430000px;}
.y1c_c00293{bottom:290.775000px;}
.y1a_c00293{bottom:336.495000px;}
.y19_c00293{bottom:382.216500px;}
.y17_c00293{bottom:428.116500px;}
.y15_c00293{bottom:473.835000px;}
.y14_c00293{bottom:534.855000px;}
.y12_c00293{bottom:596.083500px;}
.y6_c00293{bottom:657.105000px;}
.yd_c00293{bottom:731.983500px;}
.yc_c00293{bottom:806.865000px;}
.ya_c00293{bottom:868.111500px;}
.y9_c00293{bottom:929.131500px;}
.y8_c00293{bottom:990.331500px;}
.y4_c00293{bottom:1051.351500px;}
.y2_c00293{bottom:1112.551500px;}
.h6_c00293{height:39.339931px;}
.h11_c00293{height:44.149219px;}
.hd_c00293{height:45.000000px;}
.h4_c00293{height:48.224531px;}
.h2_c00293{height:48.256875px;}
.h10_c00293{height:59.579850px;}
.hf_c00293{height:59.580450px;}
.he_c00293{height:59.616750px;}
.h8_c00293{height:60.300000px;}
.h5_c00293{height:60.478650px;}
.h9_c00293{height:60.479850px;}
.ha_c00293{height:60.515100px;}
.hc_c00293{height:60.516750px;}
.hb_c00293{height:74.160300px;}
.h3_c00293{height:85.715700px;}
.h7_c00293{height:454.708500px;}
.h0_c00293{height:1262.879850px;}
.h1_c00293{height:1263.000000px;}
.w3_c00293{width:105.119550px;}
.w4_c00293{width:149.976600px;}
.w6_c00293{width:255.808500px;}
.w5_c00293{width:441.795000px;}
.w7_c00293{width:442.155000px;}
.w2_c00293{width:698.325000px;}
.w0_c00293{width:892.979700px;}
.w1_c00293{width:893.250000px;}
.x0_c00293{left:0.000000px;}
.x4_c00293{left:4.859850px;}
.x2_c00293{left:144.036900px;}
.x1_c00293{left:148.896750px;}
.x8_c00293{left:196.779600px;}
.x3_c00293{left:201.999600px;}
.x7_c00293{left:220.890000px;}
.x5_c00293{left:249.870000px;}
.x6_c00293{left:400.575000px;}
@media print{
.v0_c00293{vertical-align:0.000000pt;}
.ls1_c00293{letter-spacing:0.000000pt;}
.ls0_c00293{letter-spacing:0.193167pt;}
.ws0_c00293{word-spacing:-13.344030pt;}
.ws1_c00293{word-spacing:0.000000pt;}
._2_c00293{margin-left:-1.097138pt;}
._3_c00293{width:0.987236pt;}
._1_c00293{width:886.721749pt;}
._0_c00293{width:1196.429824pt;}
.fs1_c00293{font-size:48.000107pt;}
.fs0_c00293{font-size:58.880000pt;}
.y0_c00293{bottom:0.000000pt;}
.y18_c00293{bottom:15.680000pt;}
.y1b_c00293{bottom:15.681333pt;}
.yf_c00293{bottom:21.761467pt;}
.y21_c00293{bottom:22.239600pt;}
.y1e_c00293{bottom:22.240000pt;}
.yb_c00293{bottom:22.398667pt;}
.y16_c00293{bottom:22.401333pt;}
.y5_c00293{bottom:22.560000pt;}
.y13_c00293{bottom:22.561333pt;}
.y7_c00293{bottom:25.280000pt;}
.y11_c00293{bottom:28.640000pt;}
.y10_c00293{bottom:28.641333pt;}
.y3_c00293{bottom:32.826667pt;}
.ye_c00293{bottom:35.521333pt;}
.y1_c00293{bottom:50.272400pt;}
.y22_c00293{bottom:83.072400pt;}
.y20_c00293{bottom:97.632800pt;}
.y1f_c00293{bottom:151.226667pt;}
.y1d_c00293{bottom:204.826667pt;}
.y1c_c00293{bottom:258.466667pt;}
.y1a_c00293{bottom:299.106667pt;}
.y19_c00293{bottom:339.748000pt;}
.y17_c00293{bottom:380.548000pt;}
.y15_c00293{bottom:421.186667pt;}
.y14_c00293{bottom:475.426667pt;}
.y12_c00293{bottom:529.852000pt;}
.y6_c00293{bottom:584.093333pt;}
.yd_c00293{bottom:650.652000pt;}
.yc_c00293{bottom:717.213333pt;}
.ya_c00293{bottom:771.654667pt;}
.y9_c00293{bottom:825.894667pt;}
.y8_c00293{bottom:880.294667pt;}
.y4_c00293{bottom:934.534667pt;}
.y2_c00293{bottom:988.934667pt;}
.h6_c00293{height:34.968828pt;}
.h11_c00293{height:39.243750pt;}
.hd_c00293{height:40.000000pt;}
.h4_c00293{height:42.866250pt;}
.h2_c00293{height:42.895000pt;}
.h10_c00293{height:52.959867pt;}
.hf_c00293{height:52.960400pt;}
.he_c00293{height:52.992667pt;}
.h8_c00293{height:53.600000pt;}
.h5_c00293{height:53.758800pt;}
.h9_c00293{height:53.759867pt;}
.ha_c00293{height:53.791200pt;}
.hc_c00293{height:53.792667pt;}
.hb_c00293{height:65.920267pt;}
.h3_c00293{height:76.191733pt;}
.h7_c00293{height:404.185333pt;}
.h0_c00293{height:1122.559867pt;}
.h1_c00293{height:1122.666667pt;}
.w3_c00293{width:93.439600pt;}
.w4_c00293{width:133.312533pt;}
.w6_c00293{width:227.385333pt;}
.w5_c00293{width:392.706667pt;}
.w7_c00293{width:393.026667pt;}
.w2_c00293{width:620.733333pt;}
.w0_c00293{width:793.759733pt;}
.w1_c00293{width:794.000000pt;}
.x0_c00293{left:0.000000pt;}
.x4_c00293{left:4.319867pt;}
.x2_c00293{left:128.032800pt;}
.x1_c00293{left:132.352667pt;}
.x8_c00293{left:174.915200pt;}
.x3_c00293{left:179.555200pt;}
.x7_c00293{left:196.346667pt;}
.x5_c00293{left:222.106667pt;}
.x6_c00293{left:356.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_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_b4afbce4f73be568c8a71d8a.woff2')format("woff");}.ff1_c00294{font-family:ff1_c00294;line-height:0.666504;font-style:normal;font-weight:normal;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_2eb3266396f9c4ca6561380a.woff2')format("woff");}.ff2_c00294{font-family:ff2_c00294;line-height:0.938965;font-style:normal;font-weight:normal;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_1c84e557915e5449690ed554.woff2')format("woff");}.ff3_c00294{font-family:ff3_c00294;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00294;src:url('chunks/assets/font_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff4_c00294{font-family:ff4_c00294;line-height:0.666504;font-style: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;}
.ls1_c00294{letter-spacing:0.000000px;}
.ls0_c00294{letter-spacing:0.217313px;}
.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:-15.012033px;}
.ws1_c00294{word-spacing:0.000000px;}
._2_c00294{margin-left:-1.234280px;}
._3_c00294{width:1.110640px;}
._1_c00294{width:997.561968px;}
._0_c00294{width:1345.983552px;}
.fc0_c00294{color:rgb(0,0,0);}
.fs1_c00294{font-size:54.000120px;}
.fs0_c00294{font-size:66.240000px;}
.y0_c00294{bottom:0.000000px;}
.y18_c00294{bottom:17.640000px;}
.y1b_c00294{bottom:17.641500px;}
.yf_c00294{bottom:24.481650px;}
.y21_c00294{bottom:25.019550px;}
.y1e_c00294{bottom:25.020000px;}
.yb_c00294{bottom:25.198500px;}
.y16_c00294{bottom:25.201500px;}
.y5_c00294{bottom:25.380000px;}
.y13_c00294{bottom:25.381500px;}
.y7_c00294{bottom:28.440000px;}
.y11_c00294{bottom:32.220000px;}
.y10_c00294{bottom:32.221500px;}
.y3_c00294{bottom:36.930000px;}
.ye_c00294{bottom:39.961500px;}
.y1_c00294{bottom:56.556450px;}
.y20_c00294{bottom:109.836900px;}
.y1f_c00294{bottom:170.130000px;}
.y1d_c00294{bottom:230.430000px;}
.y1c_c00294{bottom:290.775000px;}
.y1a_c00294{bottom:336.495000px;}
.y19_c00294{bottom:382.216500px;}
.y17_c00294{bottom:428.116500px;}
.y15_c00294{bottom:473.835000px;}
.y14_c00294{bottom:534.855000px;}
.y12_c00294{bottom:596.083500px;}
.y6_c00294{bottom:657.105000px;}
.yd_c00294{bottom:731.983500px;}
.yc_c00294{bottom:806.865000px;}
.ya_c00294{bottom:868.111500px;}
.y9_c00294{bottom:929.131500px;}
.y8_c00294{bottom:990.331500px;}
.y4_c00294{bottom:1051.351500px;}
.y2_c00294{bottom:1112.551500px;}
.h6_c00294{height:39.339931px;}
.hd_c00294{height:45.000000px;}
.h4_c00294{height:48.224531px;}
.h2_c00294{height:48.256875px;}
.h10_c00294{height:59.579850px;}
.hf_c00294{height:59.580450px;}
.he_c00294{height:59.616750px;}
.h8_c00294{height:60.300000px;}
.h5_c00294{height:60.478650px;}
.h9_c00294{height:60.479850px;}
.ha_c00294{height:60.515100px;}
.hc_c00294{height:60.516750px;}
.hb_c00294{height:74.160300px;}
.h3_c00294{height:85.715700px;}
.h7_c00294{height:454.708500px;}
.h0_c00294{height:1262.879850px;}
.h1_c00294{height:1263.000000px;}
.w3_c00294{width:105.119550px;}
.w4_c00294{width:149.976600px;}
.w6_c00294{width:255.808500px;}
.w5_c00294{width:441.795000px;}
.w7_c00294{width:442.155000px;}
.w2_c00294{width:698.325000px;}
.w0_c00294{width:892.979700px;}
.w1_c00294{width:893.250000px;}
.x0_c00294{left:0.000000px;}
.x4_c00294{left:4.859850px;}
.x2_c00294{left:144.036900px;}
.x1_c00294{left:148.896750px;}
.x8_c00294{left:196.779600px;}
.x3_c00294{left:201.999600px;}
.x7_c00294{left:220.890000px;}
.x5_c00294{left:249.870000px;}
.x6_c00294{left:400.575000px;}
@media print{
.v0_c00294{vertical-align:0.000000pt;}
.ls1_c00294{letter-spacing:0.000000pt;}
.ls0_c00294{letter-spacing:0.193167pt;}
.ws0_c00294{word-spacing:-13.344030pt;}
.ws1_c00294{word-spacing:0.000000pt;}
._2_c00294{margin-left:-1.097138pt;}
._3_c00294{width:0.987236pt;}
._1_c00294{width:886.721749pt;}
._0_c00294{width:1196.429824pt;}
.fs1_c00294{font-size:48.000107pt;}
.fs0_c00294{font-size:58.880000pt;}
.y0_c00294{bottom:0.000000pt;}
.y18_c00294{bottom:15.680000pt;}
.y1b_c00294{bottom:15.681333pt;}
.yf_c00294{bottom:21.761467pt;}
.y21_c00294{bottom:22.239600pt;}
.y1e_c00294{bottom:22.240000pt;}
.yb_c00294{bottom:22.398667pt;}
.y16_c00294{bottom:22.401333pt;}
.y5_c00294{bottom:22.560000pt;}
.y13_c00294{bottom:22.561333pt;}
.y7_c00294{bottom:25.280000pt;}
.y11_c00294{bottom:28.640000pt;}
.y10_c00294{bottom:28.641333pt;}
.y3_c00294{bottom:32.826667pt;}
.ye_c00294{bottom:35.521333pt;}
.y1_c00294{bottom:50.272400pt;}
.y20_c00294{bottom:97.632800pt;}
.y1f_c00294{bottom:151.226667pt;}
.y1d_c00294{bottom:204.826667pt;}
.y1c_c00294{bottom:258.466667pt;}
.y1a_c00294{bottom:299.106667pt;}
.y19_c00294{bottom:339.748000pt;}
.y17_c00294{bottom:380.548000pt;}
.y15_c00294{bottom:421.186667pt;}
.y14_c00294{bottom:475.426667pt;}
.y12_c00294{bottom:529.852000pt;}
.y6_c00294{bottom:584.093333pt;}
.yd_c00294{bottom:650.652000pt;}
.yc_c00294{bottom:717.213333pt;}
.ya_c00294{bottom:771.654667pt;}
.y9_c00294{bottom:825.894667pt;}
.y8_c00294{bottom:880.294667pt;}
.y4_c00294{bottom:934.534667pt;}
.y2_c00294{bottom:988.934667pt;}
.h6_c00294{height:34.968828pt;}
.hd_c00294{height:40.000000pt;}
.h4_c00294{height:42.866250pt;}
.h2_c00294{height:42.895000pt;}
.h10_c00294{height:52.959867pt;}
.hf_c00294{height:52.960400pt;}
.he_c00294{height:52.992667pt;}
.h8_c00294{height:53.600000pt;}
.h5_c00294{height:53.758800pt;}
.h9_c00294{height:53.759867pt;}
.ha_c00294{height:53.791200pt;}
.hc_c00294{height:53.792667pt;}
.hb_c00294{height:65.920267pt;}
.h3_c00294{height:76.191733pt;}
.h7_c00294{height:404.185333pt;}
.h0_c00294{height:1122.559867pt;}
.h1_c00294{height:1122.666667pt;}
.w3_c00294{width:93.439600pt;}
.w4_c00294{width:133.312533pt;}
.w6_c00294{width:227.385333pt;}
.w5_c00294{width:392.706667pt;}
.w7_c00294{width:393.026667pt;}
.w2_c00294{width:620.733333pt;}
.w0_c00294{width:793.759733pt;}
.w1_c00294{width:794.000000pt;}
.x0_c00294{left:0.000000pt;}
.x4_c00294{left:4.319867pt;}
.x2_c00294{left:128.032800pt;}
.x1_c00294{left:132.352667pt;}
.x8_c00294{left:174.915200pt;}
.x3_c00294{left:179.555200pt;}
.x7_c00294{left:196.346667pt;}
.x5_c00294{left:222.106667pt;}
.x6_c00294{left:356.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_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_b4afbce4f73be568c8a71d8a.woff2')format("woff");}.ff1_c00295{font-family:ff1_c00295;line-height:0.666504;font-style:normal;font-weight:normal;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_2eb3266396f9c4ca6561380a.woff2')format("woff");}.ff2_c00295{font-family:ff2_c00295;line-height:0.938965;font-style:normal;font-weight:normal;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_1c84e557915e5449690ed554.woff2')format("woff");}.ff3_c00295{font-family:ff3_c00295;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00295;src:url('chunks/assets/font_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff4_c00295{font-family:ff4_c00295;line-height:0.666504;font-style: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;}
.ls1_c00295{letter-spacing:0.000000px;}
.ls0_c00295{letter-spacing:0.217313px;}
.sc__c00295{text-shadow:none;}
.sc0_c00295{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00295{-webkit-text-stroke:0px transparent;}
.sc0_c00295{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00295{word-spacing:-15.012033px;}
.ws1_c00295{word-spacing:0.000000px;}
._2_c00295{margin-left:-1.234280px;}
._3_c00295{width:1.110640px;}
._1_c00295{width:997.561968px;}
._0_c00295{width:1345.983552px;}
.fc0_c00295{color:rgb(0,0,0);}
.fs1_c00295{font-size:54.000120px;}
.fs0_c00295{font-size:66.240000px;}
.y0_c00295{bottom:0.000000px;}
.y18_c00295{bottom:17.640000px;}
.y1b_c00295{bottom:17.641500px;}
.yf_c00295{bottom:24.481650px;}
.y21_c00295{bottom:25.019550px;}
.y1e_c00295{bottom:25.020000px;}
.yb_c00295{bottom:25.198500px;}
.y16_c00295{bottom:25.201500px;}
.y5_c00295{bottom:25.380000px;}
.y13_c00295{bottom:25.381500px;}
.y11_c00295{bottom:32.220000px;}
.y10_c00295{bottom:32.221500px;}
.y7_c00295{bottom:36.180000px;}
.y3_c00295{bottom:36.930000px;}
.ye_c00295{bottom:39.961500px;}
.y1_c00295{bottom:56.556450px;}
.y20_c00295{bottom:109.836900px;}
.y1f_c00295{bottom:170.130000px;}
.y1d_c00295{bottom:230.430000px;}
.y1c_c00295{bottom:290.775000px;}
.y1a_c00295{bottom:336.495000px;}
.y19_c00295{bottom:382.216500px;}
.y17_c00295{bottom:428.116500px;}
.y15_c00295{bottom:473.835000px;}
.y14_c00295{bottom:534.855000px;}
.y12_c00295{bottom:596.083500px;}
.y6_c00295{bottom:657.105000px;}
.yd_c00295{bottom:731.983500px;}
.yc_c00295{bottom:806.865000px;}
.ya_c00295{bottom:868.111500px;}
.y9_c00295{bottom:929.131500px;}
.y8_c00295{bottom:990.331500px;}
.y4_c00295{bottom:1051.351500px;}
.y2_c00295{bottom:1112.551500px;}
.h6_c00295{height:39.339931px;}
.hd_c00295{height:45.000000px;}
.h4_c00295{height:48.224531px;}
.h2_c00295{height:48.256875px;}
.h10_c00295{height:59.579850px;}
.hf_c00295{height:59.580450px;}
.he_c00295{height:59.616750px;}
.h8_c00295{height:60.300000px;}
.h5_c00295{height:60.478650px;}
.h9_c00295{height:60.479850px;}
.ha_c00295{height:60.515100px;}
.hc_c00295{height:60.516750px;}
.hb_c00295{height:74.160300px;}
.h3_c00295{height:85.715700px;}
.h7_c00295{height:454.708500px;}
.h0_c00295{height:1262.879850px;}
.h1_c00295{height:1263.000000px;}
.w3_c00295{width:105.119550px;}
.w4_c00295{width:149.976600px;}
.w6_c00295{width:255.808500px;}
.w5_c00295{width:441.795000px;}
.w7_c00295{width:442.155000px;}
.w2_c00295{width:698.325000px;}
.w0_c00295{width:892.979700px;}
.w1_c00295{width:893.250000px;}
.x0_c00295{left:0.000000px;}
.x4_c00295{left:4.859850px;}
.x2_c00295{left:144.036900px;}
.x1_c00295{left:148.896750px;}
.x8_c00295{left:196.779600px;}
.x3_c00295{left:201.999600px;}
.x7_c00295{left:220.890000px;}
.x5_c00295{left:249.870000px;}
.x6_c00295{left:400.575000px;}
@media print{
.v0_c00295{vertical-align:0.000000pt;}
.ls1_c00295{letter-spacing:0.000000pt;}
.ls0_c00295{letter-spacing:0.193167pt;}
.ws0_c00295{word-spacing:-13.344030pt;}
.ws1_c00295{word-spacing:0.000000pt;}
._2_c00295{margin-left:-1.097138pt;}
._3_c00295{width:0.987236pt;}
._1_c00295{width:886.721749pt;}
._0_c00295{width:1196.429824pt;}
.fs1_c00295{font-size:48.000107pt;}
.fs0_c00295{font-size:58.880000pt;}
.y0_c00295{bottom:0.000000pt;}
.y18_c00295{bottom:15.680000pt;}
.y1b_c00295{bottom:15.681333pt;}
.yf_c00295{bottom:21.761467pt;}
.y21_c00295{bottom:22.239600pt;}
.y1e_c00295{bottom:22.240000pt;}
.yb_c00295{bottom:22.398667pt;}
.y16_c00295{bottom:22.401333pt;}
.y5_c00295{bottom:22.560000pt;}
.y13_c00295{bottom:22.561333pt;}
.y11_c00295{bottom:28.640000pt;}
.y10_c00295{bottom:28.641333pt;}
.y7_c00295{bottom:32.160000pt;}
.y3_c00295{bottom:32.826667pt;}
.ye_c00295{bottom:35.521333pt;}
.y1_c00295{bottom:50.272400pt;}
.y20_c00295{bottom:97.632800pt;}
.y1f_c00295{bottom:151.226667pt;}
.y1d_c00295{bottom:204.826667pt;}
.y1c_c00295{bottom:258.466667pt;}
.y1a_c00295{bottom:299.106667pt;}
.y19_c00295{bottom:339.748000pt;}
.y17_c00295{bottom:380.548000pt;}
.y15_c00295{bottom:421.186667pt;}
.y14_c00295{bottom:475.426667pt;}
.y12_c00295{bottom:529.852000pt;}
.y6_c00295{bottom:584.093333pt;}
.yd_c00295{bottom:650.652000pt;}
.yc_c00295{bottom:717.213333pt;}
.ya_c00295{bottom:771.654667pt;}
.y9_c00295{bottom:825.894667pt;}
.y8_c00295{bottom:880.294667pt;}
.y4_c00295{bottom:934.534667pt;}
.y2_c00295{bottom:988.934667pt;}
.h6_c00295{height:34.968828pt;}
.hd_c00295{height:40.000000pt;}
.h4_c00295{height:42.866250pt;}
.h2_c00295{height:42.895000pt;}
.h10_c00295{height:52.959867pt;}
.hf_c00295{height:52.960400pt;}
.he_c00295{height:52.992667pt;}
.h8_c00295{height:53.600000pt;}
.h5_c00295{height:53.758800pt;}
.h9_c00295{height:53.759867pt;}
.ha_c00295{height:53.791200pt;}
.hc_c00295{height:53.792667pt;}
.hb_c00295{height:65.920267pt;}
.h3_c00295{height:76.191733pt;}
.h7_c00295{height:404.185333pt;}
.h0_c00295{height:1122.559867pt;}
.h1_c00295{height:1122.666667pt;}
.w3_c00295{width:93.439600pt;}
.w4_c00295{width:133.312533pt;}
.w6_c00295{width:227.385333pt;}
.w5_c00295{width:392.706667pt;}
.w7_c00295{width:393.026667pt;}
.w2_c00295{width:620.733333pt;}
.w0_c00295{width:793.759733pt;}
.w1_c00295{width:794.000000pt;}
.x0_c00295{left:0.000000pt;}
.x4_c00295{left:4.319867pt;}
.x2_c00295{left:128.032800pt;}
.x1_c00295{left:132.352667pt;}
.x8_c00295{left:174.915200pt;}
.x3_c00295{left:179.555200pt;}
.x7_c00295{left:196.346667pt;}
.x5_c00295{left:222.106667pt;}
.x6_c00295{left:356.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_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_b4afbce4f73be568c8a71d8a.woff2')format("woff");}.ff1_c00296{font-family:ff1_c00296;line-height:0.666504;font-style:normal;font-weight:normal;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_7aa9c30852c4cfef6fbe2a9e.woff2')format("woff");}.ff2_c00296{font-family:ff2_c00296;line-height:0.938965;font-style:normal;font-weight:normal;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_1c84e557915e5449690ed554.woff2')format("woff");}.ff3_c00296{font-family:ff3_c00296;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00296;src:url('chunks/assets/font_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff4_c00296{font-family:ff4_c00296;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00296{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00296{vertical-align:0.000000px;}
.ls1_c00296{letter-spacing:0.000000px;}
.ls0_c00296{letter-spacing:0.217313px;}
.sc__c00296{text-shadow:none;}
.sc0_c00296{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00296{-webkit-text-stroke:0px transparent;}
.sc0_c00296{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00296{word-spacing:-15.012033px;}
.ws1_c00296{word-spacing:0.000000px;}
._2_c00296{margin-left:-1.234280px;}
._3_c00296{width:1.110640px;}
._1_c00296{width:997.561968px;}
._0_c00296{width:1345.983552px;}
.fc0_c00296{color:rgb(0,0,0);}
.fs1_c00296{font-size:54.000120px;}
.fs0_c00296{font-size:66.240000px;}
.y0_c00296{bottom:0.000000px;}
.y7_c00296{bottom:5.220000px;}
.y18_c00296{bottom:17.640000px;}
.y1b_c00296{bottom:17.641500px;}
.yf_c00296{bottom:24.481650px;}
.y21_c00296{bottom:25.019550px;}
.y1e_c00296{bottom:25.020000px;}
.yb_c00296{bottom:25.198500px;}
.y16_c00296{bottom:25.201500px;}
.y5_c00296{bottom:25.380000px;}
.y13_c00296{bottom:25.381500px;}
.y11_c00296{bottom:32.220000px;}
.y10_c00296{bottom:32.221500px;}
.y3_c00296{bottom:36.930000px;}
.ye_c00296{bottom:39.961500px;}
.y1_c00296{bottom:56.556450px;}
.y20_c00296{bottom:109.836900px;}
.y1f_c00296{bottom:170.130000px;}
.y1d_c00296{bottom:230.430000px;}
.y1c_c00296{bottom:290.775000px;}
.y1a_c00296{bottom:336.495000px;}
.y19_c00296{bottom:382.216500px;}
.y17_c00296{bottom:428.116500px;}
.y15_c00296{bottom:473.835000px;}
.y14_c00296{bottom:534.855000px;}
.y12_c00296{bottom:596.083500px;}
.y6_c00296{bottom:657.105000px;}
.yd_c00296{bottom:731.983500px;}
.yc_c00296{bottom:806.865000px;}
.ya_c00296{bottom:868.111500px;}
.y9_c00296{bottom:929.131500px;}
.y8_c00296{bottom:990.331500px;}
.y4_c00296{bottom:1051.351500px;}
.y2_c00296{bottom:1112.551500px;}
.h6_c00296{height:39.339931px;}
.hd_c00296{height:45.000000px;}
.h4_c00296{height:48.224531px;}
.h2_c00296{height:48.256875px;}
.h10_c00296{height:59.579850px;}
.hf_c00296{height:59.580450px;}
.he_c00296{height:59.616750px;}
.h8_c00296{height:60.300000px;}
.h5_c00296{height:60.478650px;}
.h9_c00296{height:60.479850px;}
.ha_c00296{height:60.515100px;}
.hc_c00296{height:60.516750px;}
.hb_c00296{height:74.160300px;}
.h3_c00296{height:85.715700px;}
.h7_c00296{height:454.708500px;}
.h0_c00296{height:1262.879850px;}
.h1_c00296{height:1263.000000px;}
.w3_c00296{width:105.119550px;}
.w4_c00296{width:149.976600px;}
.w6_c00296{width:255.808500px;}
.w5_c00296{width:441.795000px;}
.w7_c00296{width:442.155000px;}
.w2_c00296{width:698.325000px;}
.w0_c00296{width:892.979700px;}
.w1_c00296{width:893.250000px;}
.x0_c00296{left:0.000000px;}
.x4_c00296{left:4.859850px;}
.x2_c00296{left:144.036900px;}
.x1_c00296{left:148.896750px;}
.x8_c00296{left:196.779600px;}
.x3_c00296{left:201.999600px;}
.x7_c00296{left:220.890000px;}
.x5_c00296{left:249.870000px;}
.x6_c00296{left:400.575000px;}
@media print{
.v0_c00296{vertical-align:0.000000pt;}
.ls1_c00296{letter-spacing:0.000000pt;}
.ls0_c00296{letter-spacing:0.193167pt;}
.ws0_c00296{word-spacing:-13.344030pt;}
.ws1_c00296{word-spacing:0.000000pt;}
._2_c00296{margin-left:-1.097138pt;}
._3_c00296{width:0.987236pt;}
._1_c00296{width:886.721749pt;}
._0_c00296{width:1196.429824pt;}
.fs1_c00296{font-size:48.000107pt;}
.fs0_c00296{font-size:58.880000pt;}
.y0_c00296{bottom:0.000000pt;}
.y7_c00296{bottom:4.640000pt;}
.y18_c00296{bottom:15.680000pt;}
.y1b_c00296{bottom:15.681333pt;}
.yf_c00296{bottom:21.761467pt;}
.y21_c00296{bottom:22.239600pt;}
.y1e_c00296{bottom:22.240000pt;}
.yb_c00296{bottom:22.398667pt;}
.y16_c00296{bottom:22.401333pt;}
.y5_c00296{bottom:22.560000pt;}
.y13_c00296{bottom:22.561333pt;}
.y11_c00296{bottom:28.640000pt;}
.y10_c00296{bottom:28.641333pt;}
.y3_c00296{bottom:32.826667pt;}
.ye_c00296{bottom:35.521333pt;}
.y1_c00296{bottom:50.272400pt;}
.y20_c00296{bottom:97.632800pt;}
.y1f_c00296{bottom:151.226667pt;}
.y1d_c00296{bottom:204.826667pt;}
.y1c_c00296{bottom:258.466667pt;}
.y1a_c00296{bottom:299.106667pt;}
.y19_c00296{bottom:339.748000pt;}
.y17_c00296{bottom:380.548000pt;}
.y15_c00296{bottom:421.186667pt;}
.y14_c00296{bottom:475.426667pt;}
.y12_c00296{bottom:529.852000pt;}
.y6_c00296{bottom:584.093333pt;}
.yd_c00296{bottom:650.652000pt;}
.yc_c00296{bottom:717.213333pt;}
.ya_c00296{bottom:771.654667pt;}
.y9_c00296{bottom:825.894667pt;}
.y8_c00296{bottom:880.294667pt;}
.y4_c00296{bottom:934.534667pt;}
.y2_c00296{bottom:988.934667pt;}
.h6_c00296{height:34.968828pt;}
.hd_c00296{height:40.000000pt;}
.h4_c00296{height:42.866250pt;}
.h2_c00296{height:42.895000pt;}
.h10_c00296{height:52.959867pt;}
.hf_c00296{height:52.960400pt;}
.he_c00296{height:52.992667pt;}
.h8_c00296{height:53.600000pt;}
.h5_c00296{height:53.758800pt;}
.h9_c00296{height:53.759867pt;}
.ha_c00296{height:53.791200pt;}
.hc_c00296{height:53.792667pt;}
.hb_c00296{height:65.920267pt;}
.h3_c00296{height:76.191733pt;}
.h7_c00296{height:404.185333pt;}
.h0_c00296{height:1122.559867pt;}
.h1_c00296{height:1122.666667pt;}
.w3_c00296{width:93.439600pt;}
.w4_c00296{width:133.312533pt;}
.w6_c00296{width:227.385333pt;}
.w5_c00296{width:392.706667pt;}
.w7_c00296{width:393.026667pt;}
.w2_c00296{width:620.733333pt;}
.w0_c00296{width:793.759733pt;}
.w1_c00296{width:794.000000pt;}
.x0_c00296{left:0.000000pt;}
.x4_c00296{left:4.319867pt;}
.x2_c00296{left:128.032800pt;}
.x1_c00296{left:132.352667pt;}
.x8_c00296{left:174.915200pt;}
.x3_c00296{left:179.555200pt;}
.x7_c00296{left:196.346667pt;}
.x5_c00296{left:222.106667pt;}
.x6_c00296{left:356.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_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_b4afbce4f73be568c8a71d8a.woff2')format("woff");}.ff1_c00297{font-family:ff1_c00297;line-height:0.666504;font-style:normal;font-weight:normal;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_b2cb4060aade1c41f3e7cead.woff2')format("woff");}.ff2_c00297{font-family:ff2_c00297;line-height:0.938965;font-style:normal;font-weight:normal;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_1c84e557915e5449690ed554.woff2')format("woff");}.ff3_c00297{font-family:ff3_c00297;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00297;src:url('chunks/assets/font_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff4_c00297{font-family:ff4_c00297;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00297{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00297{vertical-align:0.000000px;}
.ls1_c00297{letter-spacing:0.000000px;}
.ls0_c00297{letter-spacing:0.217313px;}
.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:-15.012033px;}
.ws1_c00297{word-spacing:0.000000px;}
._2_c00297{margin-left:-1.234280px;}
._3_c00297{width:1.110640px;}
._4_c00297{width:849.183552px;}
._1_c00297{width:997.561968px;}
._0_c00297{width:1345.983552px;}
.fc0_c00297{color:rgb(0,0,0);}
.fs1_c00297{font-size:54.000120px;}
.fs0_c00297{font-size:66.240000px;}
.y0_c00297{bottom:0.000000px;}
.y18_c00297{bottom:17.640000px;}
.y1b_c00297{bottom:17.641500px;}
.yf_c00297{bottom:24.481650px;}
.y21_c00297{bottom:25.019550px;}
.y1e_c00297{bottom:25.020000px;}
.yb_c00297{bottom:25.198500px;}
.y16_c00297{bottom:25.201500px;}
.y5_c00297{bottom:25.380000px;}
.y13_c00297{bottom:25.381500px;}
.y7_c00297{bottom:28.440000px;}
.y11_c00297{bottom:32.220000px;}
.y10_c00297{bottom:32.221500px;}
.y3_c00297{bottom:36.930000px;}
.ye_c00297{bottom:39.961500px;}
.y1_c00297{bottom:56.556450px;}
.y22_c00297{bottom:93.456450px;}
.y20_c00297{bottom:109.836900px;}
.y1f_c00297{bottom:170.130000px;}
.y1d_c00297{bottom:230.430000px;}
.y1c_c00297{bottom:290.775000px;}
.y1a_c00297{bottom:336.495000px;}
.y19_c00297{bottom:382.216500px;}
.y17_c00297{bottom:428.116500px;}
.y15_c00297{bottom:473.835000px;}
.y14_c00297{bottom:534.855000px;}
.y12_c00297{bottom:596.083500px;}
.y6_c00297{bottom:657.105000px;}
.yd_c00297{bottom:731.983500px;}
.yc_c00297{bottom:806.865000px;}
.ya_c00297{bottom:868.111500px;}
.y9_c00297{bottom:929.131500px;}
.y8_c00297{bottom:990.331500px;}
.y4_c00297{bottom:1051.351500px;}
.y2_c00297{bottom:1112.551500px;}
.h6_c00297{height:39.339931px;}
.h11_c00297{height:44.149219px;}
.hd_c00297{height:45.000000px;}
.h4_c00297{height:48.224531px;}
.h2_c00297{height:48.256875px;}
.h10_c00297{height:59.579850px;}
.hf_c00297{height:59.580450px;}
.he_c00297{height:59.616750px;}
.h8_c00297{height:60.300000px;}
.h5_c00297{height:60.478650px;}
.h9_c00297{height:60.479850px;}
.ha_c00297{height:60.515100px;}
.hc_c00297{height:60.516750px;}
.hb_c00297{height:74.160300px;}
.h3_c00297{height:85.715700px;}
.h7_c00297{height:454.708500px;}
.h0_c00297{height:1262.879850px;}
.h1_c00297{height:1263.000000px;}
.w3_c00297{width:105.119550px;}
.w4_c00297{width:149.976600px;}
.w6_c00297{width:255.808500px;}
.w5_c00297{width:441.795000px;}
.w7_c00297{width:442.155000px;}
.w2_c00297{width:698.325000px;}
.w0_c00297{width:892.979700px;}
.w1_c00297{width:893.250000px;}
.x0_c00297{left:0.000000px;}
.x4_c00297{left:4.859850px;}
.x2_c00297{left:144.036900px;}
.x1_c00297{left:148.896750px;}
.x8_c00297{left:196.779600px;}
.x3_c00297{left:201.999600px;}
.x7_c00297{left:220.890000px;}
.x5_c00297{left:249.870000px;}
.x6_c00297{left:400.575000px;}
@media print{
.v0_c00297{vertical-align:0.000000pt;}
.ls1_c00297{letter-spacing:0.000000pt;}
.ls0_c00297{letter-spacing:0.193167pt;}
.ws0_c00297{word-spacing:-13.344030pt;}
.ws1_c00297{word-spacing:0.000000pt;}
._2_c00297{margin-left:-1.097138pt;}
._3_c00297{width:0.987236pt;}
._4_c00297{width:754.829824pt;}
._1_c00297{width:886.721749pt;}
._0_c00297{width:1196.429824pt;}
.fs1_c00297{font-size:48.000107pt;}
.fs0_c00297{font-size:58.880000pt;}
.y0_c00297{bottom:0.000000pt;}
.y18_c00297{bottom:15.680000pt;}
.y1b_c00297{bottom:15.681333pt;}
.yf_c00297{bottom:21.761467pt;}
.y21_c00297{bottom:22.239600pt;}
.y1e_c00297{bottom:22.240000pt;}
.yb_c00297{bottom:22.398667pt;}
.y16_c00297{bottom:22.401333pt;}
.y5_c00297{bottom:22.560000pt;}
.y13_c00297{bottom:22.561333pt;}
.y7_c00297{bottom:25.280000pt;}
.y11_c00297{bottom:28.640000pt;}
.y10_c00297{bottom:28.641333pt;}
.y3_c00297{bottom:32.826667pt;}
.ye_c00297{bottom:35.521333pt;}
.y1_c00297{bottom:50.272400pt;}
.y22_c00297{bottom:83.072400pt;}
.y20_c00297{bottom:97.632800pt;}
.y1f_c00297{bottom:151.226667pt;}
.y1d_c00297{bottom:204.826667pt;}
.y1c_c00297{bottom:258.466667pt;}
.y1a_c00297{bottom:299.106667pt;}
.y19_c00297{bottom:339.748000pt;}
.y17_c00297{bottom:380.548000pt;}
.y15_c00297{bottom:421.186667pt;}
.y14_c00297{bottom:475.426667pt;}
.y12_c00297{bottom:529.852000pt;}
.y6_c00297{bottom:584.093333pt;}
.yd_c00297{bottom:650.652000pt;}
.yc_c00297{bottom:717.213333pt;}
.ya_c00297{bottom:771.654667pt;}
.y9_c00297{bottom:825.894667pt;}
.y8_c00297{bottom:880.294667pt;}
.y4_c00297{bottom:934.534667pt;}
.y2_c00297{bottom:988.934667pt;}
.h6_c00297{height:34.968828pt;}
.h11_c00297{height:39.243750pt;}
.hd_c00297{height:40.000000pt;}
.h4_c00297{height:42.866250pt;}
.h2_c00297{height:42.895000pt;}
.h10_c00297{height:52.959867pt;}
.hf_c00297{height:52.960400pt;}
.he_c00297{height:52.992667pt;}
.h8_c00297{height:53.600000pt;}
.h5_c00297{height:53.758800pt;}
.h9_c00297{height:53.759867pt;}
.ha_c00297{height:53.791200pt;}
.hc_c00297{height:53.792667pt;}
.hb_c00297{height:65.920267pt;}
.h3_c00297{height:76.191733pt;}
.h7_c00297{height:404.185333pt;}
.h0_c00297{height:1122.559867pt;}
.h1_c00297{height:1122.666667pt;}
.w3_c00297{width:93.439600pt;}
.w4_c00297{width:133.312533pt;}
.w6_c00297{width:227.385333pt;}
.w5_c00297{width:392.706667pt;}
.w7_c00297{width:393.026667pt;}
.w2_c00297{width:620.733333pt;}
.w0_c00297{width:793.759733pt;}
.w1_c00297{width:794.000000pt;}
.x0_c00297{left:0.000000pt;}
.x4_c00297{left:4.319867pt;}
.x2_c00297{left:128.032800pt;}
.x1_c00297{left:132.352667pt;}
.x8_c00297{left:174.915200pt;}
.x3_c00297{left:179.555200pt;}
.x7_c00297{left:196.346667pt;}
.x5_c00297{left:222.106667pt;}
.x6_c00297{left:356.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_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_b4afbce4f73be568c8a71d8a.woff2')format("woff");}.ff1_c00298{font-family:ff1_c00298;line-height:0.666504;font-style:normal;font-weight:normal;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_f6f17270aa6321496c2ced24.woff2')format("woff");}.ff2_c00298{font-family:ff2_c00298;line-height:0.938965;font-style:normal;font-weight:normal;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_1c84e557915e5449690ed554.woff2')format("woff");}.ff3_c00298{font-family:ff3_c00298;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00298;src:url('chunks/assets/font_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff4_c00298{font-family:ff4_c00298;line-height:0.666504;font-style: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;}
.ls2_c00298{letter-spacing:0.000000px;}
.ls0_c00298{letter-spacing:0.214966px;}
.ls1_c00298{letter-spacing:0.217313px;}
.sc__c00298{text-shadow:none;}
.sc0_c00298{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00298{-webkit-text-stroke:0px transparent;}
.sc0_c00298{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00298{word-spacing:-15.012033px;}
.ws1_c00298{word-spacing:0.000000px;}
._2_c00298{margin-left:-1.234280px;}
._3_c00298{width:1.110640px;}
._1_c00298{width:997.561968px;}
._0_c00298{width:1345.983552px;}
.fc0_c00298{color:rgb(0,0,0);}
.fs1_c00298{font-size:54.000120px;}
.fs0_c00298{font-size:66.240000px;}
.y0_c00298{bottom:0.000000px;}
.yd_c00298{bottom:17.458800px;}
.y1a_c00298{bottom:17.640000px;}
.y1d_c00298{bottom:17.641500px;}
.y7_c00298{bottom:20.700000px;}
.y11_c00298{bottom:24.481650px;}
.y23_c00298{bottom:25.019550px;}
.y20_c00298{bottom:25.020000px;}
.yb_c00298{bottom:25.198500px;}
.y18_c00298{bottom:25.201500px;}
.y5_c00298{bottom:25.380000px;}
.y15_c00298{bottom:25.381500px;}
.y13_c00298{bottom:32.220000px;}
.y12_c00298{bottom:32.221500px;}
.yc_c00298{bottom:33.118500px;}
.y3_c00298{bottom:36.930000px;}
.y10_c00298{bottom:39.961500px;}
.y1_c00298{bottom:56.556450px;}
.y24_c00298{bottom:93.456450px;}
.y22_c00298{bottom:109.836900px;}
.y21_c00298{bottom:170.130000px;}
.y1f_c00298{bottom:230.430000px;}
.y1e_c00298{bottom:290.775000px;}
.y1c_c00298{bottom:336.495000px;}
.y1b_c00298{bottom:382.216500px;}
.y19_c00298{bottom:428.116500px;}
.y17_c00298{bottom:473.835000px;}
.y16_c00298{bottom:534.855000px;}
.y14_c00298{bottom:596.083500px;}
.y6_c00298{bottom:657.105000px;}
.yf_c00298{bottom:731.983500px;}
.ye_c00298{bottom:806.865000px;}
.ya_c00298{bottom:868.111500px;}
.y9_c00298{bottom:929.131500px;}
.y8_c00298{bottom:990.331500px;}
.y4_c00298{bottom:1051.351500px;}
.y2_c00298{bottom:1112.551500px;}
.h6_c00298{height:39.339931px;}
.hd_c00298{height:45.000000px;}
.h4_c00298{height:48.224531px;}
.h2_c00298{height:48.256875px;}
.h10_c00298{height:59.579850px;}
.hf_c00298{height:59.580450px;}
.he_c00298{height:59.616750px;}
.h8_c00298{height:60.300000px;}
.h5_c00298{height:60.478650px;}
.h9_c00298{height:60.479850px;}
.ha_c00298{height:60.515100px;}
.hc_c00298{height:60.516750px;}
.hb_c00298{height:74.160300px;}
.h3_c00298{height:85.715700px;}
.h7_c00298{height:454.708500px;}
.h0_c00298{height:1262.879850px;}
.h1_c00298{height:1263.000000px;}
.w3_c00298{width:105.119550px;}
.w4_c00298{width:149.976600px;}
.w6_c00298{width:255.808500px;}
.w5_c00298{width:441.795000px;}
.w7_c00298{width:442.155000px;}
.w2_c00298{width:698.325000px;}
.w0_c00298{width:892.979700px;}
.w1_c00298{width:893.250000px;}
.x0_c00298{left:0.000000px;}
.x4_c00298{left:4.859850px;}
.x2_c00298{left:144.036900px;}
.x1_c00298{left:148.896750px;}
.x7_c00298{left:196.779600px;}
.x3_c00298{left:201.999600px;}
.x5_c00298{left:249.870000px;}
.x6_c00298{left:400.575000px;}
@media print{
.v0_c00298{vertical-align:0.000000pt;}
.ls2_c00298{letter-spacing:0.000000pt;}
.ls0_c00298{letter-spacing:0.191081pt;}
.ls1_c00298{letter-spacing:0.193167pt;}
.ws0_c00298{word-spacing:-13.344030pt;}
.ws1_c00298{word-spacing:0.000000pt;}
._2_c00298{margin-left:-1.097138pt;}
._3_c00298{width:0.987236pt;}
._1_c00298{width:886.721749pt;}
._0_c00298{width:1196.429824pt;}
.fs1_c00298{font-size:48.000107pt;}
.fs0_c00298{font-size:58.880000pt;}
.y0_c00298{bottom:0.000000pt;}
.yd_c00298{bottom:15.518933pt;}
.y1a_c00298{bottom:15.680000pt;}
.y1d_c00298{bottom:15.681333pt;}
.y7_c00298{bottom:18.400000pt;}
.y11_c00298{bottom:21.761467pt;}
.y23_c00298{bottom:22.239600pt;}
.y20_c00298{bottom:22.240000pt;}
.yb_c00298{bottom:22.398667pt;}
.y18_c00298{bottom:22.401333pt;}
.y5_c00298{bottom:22.560000pt;}
.y15_c00298{bottom:22.561333pt;}
.y13_c00298{bottom:28.640000pt;}
.y12_c00298{bottom:28.641333pt;}
.yc_c00298{bottom:29.438667pt;}
.y3_c00298{bottom:32.826667pt;}
.y10_c00298{bottom:35.521333pt;}
.y1_c00298{bottom:50.272400pt;}
.y24_c00298{bottom:83.072400pt;}
.y22_c00298{bottom:97.632800pt;}
.y21_c00298{bottom:151.226667pt;}
.y1f_c00298{bottom:204.826667pt;}
.y1e_c00298{bottom:258.466667pt;}
.y1c_c00298{bottom:299.106667pt;}
.y1b_c00298{bottom:339.748000pt;}
.y19_c00298{bottom:380.548000pt;}
.y17_c00298{bottom:421.186667pt;}
.y16_c00298{bottom:475.426667pt;}
.y14_c00298{bottom:529.852000pt;}
.y6_c00298{bottom:584.093333pt;}
.yf_c00298{bottom:650.652000pt;}
.ye_c00298{bottom:717.213333pt;}
.ya_c00298{bottom:771.654667pt;}
.y9_c00298{bottom:825.894667pt;}
.y8_c00298{bottom:880.294667pt;}
.y4_c00298{bottom:934.534667pt;}
.y2_c00298{bottom:988.934667pt;}
.h6_c00298{height:34.968828pt;}
.hd_c00298{height:40.000000pt;}
.h4_c00298{height:42.866250pt;}
.h2_c00298{height:42.895000pt;}
.h10_c00298{height:52.959867pt;}
.hf_c00298{height:52.960400pt;}
.he_c00298{height:52.992667pt;}
.h8_c00298{height:53.600000pt;}
.h5_c00298{height:53.758800pt;}
.h9_c00298{height:53.759867pt;}
.ha_c00298{height:53.791200pt;}
.hc_c00298{height:53.792667pt;}
.hb_c00298{height:65.920267pt;}
.h3_c00298{height:76.191733pt;}
.h7_c00298{height:404.185333pt;}
.h0_c00298{height:1122.559867pt;}
.h1_c00298{height:1122.666667pt;}
.w3_c00298{width:93.439600pt;}
.w4_c00298{width:133.312533pt;}
.w6_c00298{width:227.385333pt;}
.w5_c00298{width:392.706667pt;}
.w7_c00298{width:393.026667pt;}
.w2_c00298{width:620.733333pt;}
.w0_c00298{width:793.759733pt;}
.w1_c00298{width:794.000000pt;}
.x0_c00298{left:0.000000pt;}
.x4_c00298{left:4.319867pt;}
.x2_c00298{left:128.032800pt;}
.x1_c00298{left:132.352667pt;}
.x7_c00298{left:174.915200pt;}
.x3_c00298{left:179.555200pt;}
.x5_c00298{left:222.106667pt;}
.x6_c00298{left:356.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_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_b4afbce4f73be568c8a71d8a.woff2')format("woff");}.ff1_c00299{font-family:ff1_c00299;line-height:0.666504;font-style:normal;font-weight:normal;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_30244e6286eaa57611b28350.woff2')format("woff");}.ff2_c00299{font-family:ff2_c00299;line-height:0.938965;font-style:normal;font-weight:normal;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_1c84e557915e5449690ed554.woff2')format("woff");}.ff3_c00299{font-family:ff3_c00299;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00299;src:url('chunks/assets/font_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff4_c00299{font-family:ff4_c00299;line-height:0.666504;font-style: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;}
.ls1_c00299{letter-spacing:0.000000px;}
.ls0_c00299{letter-spacing:0.217313px;}
.sc__c00299{text-shadow:none;}
.sc0_c00299{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00299{-webkit-text-stroke:0px transparent;}
.sc0_c00299{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00299{word-spacing:-15.012033px;}
.ws1_c00299{word-spacing:0.000000px;}
._2_c00299{margin-left:-1.234280px;}
._3_c00299{width:1.110640px;}
._1_c00299{width:997.561968px;}
._0_c00299{width:1345.983552px;}
.fc0_c00299{color:rgb(0,0,0);}
.fs1_c00299{font-size:54.000120px;}
.fs0_c00299{font-size:66.240000px;}
.y0_c00299{bottom:0.000000px;}
.y7_c00299{bottom:5.220000px;}
.y18_c00299{bottom:17.640000px;}
.y1b_c00299{bottom:17.641500px;}
.yf_c00299{bottom:24.481650px;}
.y21_c00299{bottom:25.019550px;}
.y1e_c00299{bottom:25.020000px;}
.yb_c00299{bottom:25.198500px;}
.y16_c00299{bottom:25.201500px;}
.y5_c00299{bottom:25.380000px;}
.y13_c00299{bottom:25.381500px;}
.y11_c00299{bottom:32.220000px;}
.y10_c00299{bottom:32.221500px;}
.y3_c00299{bottom:36.930000px;}
.ye_c00299{bottom:39.961500px;}
.y1_c00299{bottom:56.556450px;}
.y22_c00299{bottom:93.456450px;}
.y20_c00299{bottom:109.836900px;}
.y1f_c00299{bottom:170.130000px;}
.y1d_c00299{bottom:230.430000px;}
.y1c_c00299{bottom:290.775000px;}
.y1a_c00299{bottom:336.495000px;}
.y19_c00299{bottom:382.216500px;}
.y17_c00299{bottom:428.116500px;}
.y15_c00299{bottom:473.835000px;}
.y14_c00299{bottom:534.855000px;}
.y12_c00299{bottom:596.083500px;}
.y6_c00299{bottom:657.105000px;}
.yd_c00299{bottom:731.983500px;}
.yc_c00299{bottom:806.865000px;}
.ya_c00299{bottom:868.111500px;}
.y9_c00299{bottom:929.131500px;}
.y8_c00299{bottom:990.331500px;}
.y4_c00299{bottom:1051.351500px;}
.y2_c00299{bottom:1112.551500px;}
.h6_c00299{height:39.339931px;}
.hd_c00299{height:45.000000px;}
.h4_c00299{height:48.224531px;}
.h2_c00299{height:48.256875px;}
.h10_c00299{height:59.579850px;}
.hf_c00299{height:59.580450px;}
.he_c00299{height:59.616750px;}
.h8_c00299{height:60.300000px;}
.h5_c00299{height:60.478650px;}
.h9_c00299{height:60.479850px;}
.ha_c00299{height:60.515100px;}
.hc_c00299{height:60.516750px;}
.hb_c00299{height:74.160300px;}
.h3_c00299{height:85.715700px;}
.h7_c00299{height:454.708500px;}
.h0_c00299{height:1262.879850px;}
.h1_c00299{height:1263.000000px;}
.w3_c00299{width:105.119550px;}
.w4_c00299{width:149.976600px;}
.w6_c00299{width:255.808500px;}
.w5_c00299{width:441.795000px;}
.w7_c00299{width:442.155000px;}
.w2_c00299{width:698.325000px;}
.w0_c00299{width:892.979700px;}
.w1_c00299{width:893.250000px;}
.x0_c00299{left:0.000000px;}
.x4_c00299{left:4.859850px;}
.x2_c00299{left:144.036900px;}
.x1_c00299{left:148.896750px;}
.x8_c00299{left:196.779600px;}
.x3_c00299{left:201.999600px;}
.x7_c00299{left:220.890000px;}
.x5_c00299{left:249.870000px;}
.x6_c00299{left:400.575000px;}
@media print{
.v0_c00299{vertical-align:0.000000pt;}
.ls1_c00299{letter-spacing:0.000000pt;}
.ls0_c00299{letter-spacing:0.193167pt;}
.ws0_c00299{word-spacing:-13.344030pt;}
.ws1_c00299{word-spacing:0.000000pt;}
._2_c00299{margin-left:-1.097138pt;}
._3_c00299{width:0.987236pt;}
._1_c00299{width:886.721749pt;}
._0_c00299{width:1196.429824pt;}
.fs1_c00299{font-size:48.000107pt;}
.fs0_c00299{font-size:58.880000pt;}
.y0_c00299{bottom:0.000000pt;}
.y7_c00299{bottom:4.640000pt;}
.y18_c00299{bottom:15.680000pt;}
.y1b_c00299{bottom:15.681333pt;}
.yf_c00299{bottom:21.761467pt;}
.y21_c00299{bottom:22.239600pt;}
.y1e_c00299{bottom:22.240000pt;}
.yb_c00299{bottom:22.398667pt;}
.y16_c00299{bottom:22.401333pt;}
.y5_c00299{bottom:22.560000pt;}
.y13_c00299{bottom:22.561333pt;}
.y11_c00299{bottom:28.640000pt;}
.y10_c00299{bottom:28.641333pt;}
.y3_c00299{bottom:32.826667pt;}
.ye_c00299{bottom:35.521333pt;}
.y1_c00299{bottom:50.272400pt;}
.y22_c00299{bottom:83.072400pt;}
.y20_c00299{bottom:97.632800pt;}
.y1f_c00299{bottom:151.226667pt;}
.y1d_c00299{bottom:204.826667pt;}
.y1c_c00299{bottom:258.466667pt;}
.y1a_c00299{bottom:299.106667pt;}
.y19_c00299{bottom:339.748000pt;}
.y17_c00299{bottom:380.548000pt;}
.y15_c00299{bottom:421.186667pt;}
.y14_c00299{bottom:475.426667pt;}
.y12_c00299{bottom:529.852000pt;}
.y6_c00299{bottom:584.093333pt;}
.yd_c00299{bottom:650.652000pt;}
.yc_c00299{bottom:717.213333pt;}
.ya_c00299{bottom:771.654667pt;}
.y9_c00299{bottom:825.894667pt;}
.y8_c00299{bottom:880.294667pt;}
.y4_c00299{bottom:934.534667pt;}
.y2_c00299{bottom:988.934667pt;}
.h6_c00299{height:34.968828pt;}
.hd_c00299{height:40.000000pt;}
.h4_c00299{height:42.866250pt;}
.h2_c00299{height:42.895000pt;}
.h10_c00299{height:52.959867pt;}
.hf_c00299{height:52.960400pt;}
.he_c00299{height:52.992667pt;}
.h8_c00299{height:53.600000pt;}
.h5_c00299{height:53.758800pt;}
.h9_c00299{height:53.759867pt;}
.ha_c00299{height:53.791200pt;}
.hc_c00299{height:53.792667pt;}
.hb_c00299{height:65.920267pt;}
.h3_c00299{height:76.191733pt;}
.h7_c00299{height:404.185333pt;}
.h0_c00299{height:1122.559867pt;}
.h1_c00299{height:1122.666667pt;}
.w3_c00299{width:93.439600pt;}
.w4_c00299{width:133.312533pt;}
.w6_c00299{width:227.385333pt;}
.w5_c00299{width:392.706667pt;}
.w7_c00299{width:393.026667pt;}
.w2_c00299{width:620.733333pt;}
.w0_c00299{width:793.759733pt;}
.w1_c00299{width:794.000000pt;}
.x0_c00299{left:0.000000pt;}
.x4_c00299{left:4.319867pt;}
.x2_c00299{left:128.032800pt;}
.x1_c00299{left:132.352667pt;}
.x8_c00299{left:174.915200pt;}
.x3_c00299{left:179.555200pt;}
.x7_c00299{left:196.346667pt;}
.x5_c00299{left:222.106667pt;}
.x6_c00299{left:356.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_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_b4afbce4f73be568c8a71d8a.woff2')format("woff");}.ff1_c00300{font-family:ff1_c00300;line-height:0.666504;font-style:normal;font-weight:normal;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_8fe54d3264bfd766d95420fb.woff2')format("woff");}.ff2_c00300{font-family:ff2_c00300;line-height:0.938965;font-style:normal;font-weight:normal;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_1c84e557915e5449690ed554.woff2')format("woff");}.ff3_c00300{font-family:ff3_c00300;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00300;src:url('chunks/assets/font_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff4_c00300{font-family:ff4_c00300;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00300{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00300{vertical-align:0.000000px;}
.ls1_c00300{letter-spacing:0.000000px;}
.ls0_c00300{letter-spacing:0.217313px;}
.sc__c00300{text-shadow:none;}
.sc0_c00300{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00300{-webkit-text-stroke:0px transparent;}
.sc0_c00300{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00300{word-spacing:-15.012033px;}
.ws1_c00300{word-spacing:0.000000px;}
._2_c00300{margin-left:-1.234280px;}
._3_c00300{width:1.110640px;}
._1_c00300{width:997.561968px;}
._0_c00300{width:1345.983552px;}
.fc0_c00300{color:rgb(0,0,0);}
.fs1_c00300{font-size:54.000120px;}
.fs0_c00300{font-size:66.240000px;}
.y0_c00300{bottom:0.000000px;}
.y7_c00300{bottom:2.880000px;}
.y1b_c00300{bottom:17.640000px;}
.y17_c00300{bottom:17.641500px;}
.y1d_c00300{bottom:17.685000px;}
.y19_c00300{bottom:17.821500px;}
.yf_c00300{bottom:24.481650px;}
.y1f_c00300{bottom:25.020000px;}
.y22_c00300{bottom:25.020150px;}
.yb_c00300{bottom:25.198500px;}
.y5_c00300{bottom:25.380000px;}
.y14_c00300{bottom:25.381500px;}
.y10_c00300{bottom:32.221500px;}
.y3_c00300{bottom:36.930000px;}
.y11_c00300{bottom:37.620000px;}
.ye_c00300{bottom:39.961500px;}
.y1_c00300{bottom:56.556450px;}
.y23_c00300{bottom:82.296750px;}
.y21_c00300{bottom:98.676600px;}
.y20_c00300{bottom:158.970000px;}
.y1e_c00300{bottom:219.270000px;}
.y1c_c00300{bottom:279.570000px;}
.y1a_c00300{bottom:325.335000px;}
.y18_c00300{bottom:371.055000px;}
.y16_c00300{bottom:416.955000px;}
.y15_c00300{bottom:462.675000px;}
.y13_c00300{bottom:523.695000px;}
.y12_c00300{bottom:584.925000px;}
.y6_c00300{bottom:646.125000px;}
.yd_c00300{bottom:731.983500px;}
.yc_c00300{bottom:806.865000px;}
.ya_c00300{bottom:868.111500px;}
.y9_c00300{bottom:929.131500px;}
.y8_c00300{bottom:990.331500px;}
.y4_c00300{bottom:1051.351500px;}
.y2_c00300{bottom:1112.551500px;}
.h6_c00300{height:39.339931px;}
.hf_c00300{height:44.999400px;}
.he_c00300{height:45.000000px;}
.h10_c00300{height:45.036900px;}
.h4_c00300{height:48.224531px;}
.h2_c00300{height:48.256875px;}
.h11_c00300{height:59.579850px;}
.h8_c00300{height:60.300000px;}
.h5_c00300{height:60.478650px;}
.h9_c00300{height:60.479850px;}
.ha_c00300{height:60.515100px;}
.hd_c00300{height:60.516750px;}
.hb_c00300{height:74.160300px;}
.hc_c00300{height:85.139700px;}
.h3_c00300{height:85.715700px;}
.h7_c00300{height:465.688500px;}
.h0_c00300{height:1262.879850px;}
.h1_c00300{height:1263.000000px;}
.w3_c00300{width:105.119550px;}
.w4_c00300{width:149.976600px;}
.w6_c00300{width:255.808500px;}
.w5_c00300{width:441.795000px;}
.w7_c00300{width:442.155000px;}
.w2_c00300{width:698.325000px;}
.w0_c00300{width:892.979700px;}
.w1_c00300{width:893.250000px;}
.x0_c00300{left:0.000000px;}
.x4_c00300{left:4.859850px;}
.x2_c00300{left:144.036900px;}
.x1_c00300{left:148.896750px;}
.x8_c00300{left:196.779600px;}
.x3_c00300{left:201.999600px;}
.x7_c00300{left:220.890000px;}
.x5_c00300{left:249.870000px;}
.x6_c00300{left:400.575000px;}
@media print{
.v0_c00300{vertical-align:0.000000pt;}
.ls1_c00300{letter-spacing:0.000000pt;}
.ls0_c00300{letter-spacing:0.193167pt;}
.ws0_c00300{word-spacing:-13.344030pt;}
.ws1_c00300{word-spacing:0.000000pt;}
._2_c00300{margin-left:-1.097138pt;}
._3_c00300{width:0.987236pt;}
._1_c00300{width:886.721749pt;}
._0_c00300{width:1196.429824pt;}
.fs1_c00300{font-size:48.000107pt;}
.fs0_c00300{font-size:58.880000pt;}
.y0_c00300{bottom:0.000000pt;}
.y7_c00300{bottom:2.560000pt;}
.y1b_c00300{bottom:15.680000pt;}
.y17_c00300{bottom:15.681333pt;}
.y1d_c00300{bottom:15.720000pt;}
.y19_c00300{bottom:15.841333pt;}
.yf_c00300{bottom:21.761467pt;}
.y1f_c00300{bottom:22.240000pt;}
.y22_c00300{bottom:22.240133pt;}
.yb_c00300{bottom:22.398667pt;}
.y5_c00300{bottom:22.560000pt;}
.y14_c00300{bottom:22.561333pt;}
.y10_c00300{bottom:28.641333pt;}
.y3_c00300{bottom:32.826667pt;}
.y11_c00300{bottom:33.440000pt;}
.ye_c00300{bottom:35.521333pt;}
.y1_c00300{bottom:50.272400pt;}
.y23_c00300{bottom:73.152667pt;}
.y21_c00300{bottom:87.712533pt;}
.y20_c00300{bottom:141.306667pt;}
.y1e_c00300{bottom:194.906667pt;}
.y1c_c00300{bottom:248.506667pt;}
.y1a_c00300{bottom:289.186667pt;}
.y18_c00300{bottom:329.826667pt;}
.y16_c00300{bottom:370.626667pt;}
.y15_c00300{bottom:411.266667pt;}
.y13_c00300{bottom:465.506667pt;}
.y12_c00300{bottom:519.933333pt;}
.y6_c00300{bottom:574.333333pt;}
.yd_c00300{bottom:650.652000pt;}
.yc_c00300{bottom:717.213333pt;}
.ya_c00300{bottom:771.654667pt;}
.y9_c00300{bottom:825.894667pt;}
.y8_c00300{bottom:880.294667pt;}
.y4_c00300{bottom:934.534667pt;}
.y2_c00300{bottom:988.934667pt;}
.h6_c00300{height:34.968828pt;}
.hf_c00300{height:39.999467pt;}
.he_c00300{height:40.000000pt;}
.h10_c00300{height:40.032800pt;}
.h4_c00300{height:42.866250pt;}
.h2_c00300{height:42.895000pt;}
.h11_c00300{height:52.959867pt;}
.h8_c00300{height:53.600000pt;}
.h5_c00300{height:53.758800pt;}
.h9_c00300{height:53.759867pt;}
.ha_c00300{height:53.791200pt;}
.hd_c00300{height:53.792667pt;}
.hb_c00300{height:65.920267pt;}
.hc_c00300{height:75.679733pt;}
.h3_c00300{height:76.191733pt;}
.h7_c00300{height:413.945333pt;}
.h0_c00300{height:1122.559867pt;}
.h1_c00300{height:1122.666667pt;}
.w3_c00300{width:93.439600pt;}
.w4_c00300{width:133.312533pt;}
.w6_c00300{width:227.385333pt;}
.w5_c00300{width:392.706667pt;}
.w7_c00300{width:393.026667pt;}
.w2_c00300{width:620.733333pt;}
.w0_c00300{width:793.759733pt;}
.w1_c00300{width:794.000000pt;}
.x0_c00300{left:0.000000pt;}
.x4_c00300{left:4.319867pt;}
.x2_c00300{left:128.032800pt;}
.x1_c00300{left:132.352667pt;}
.x8_c00300{left:174.915200pt;}
.x3_c00300{left:179.555200pt;}
.x7_c00300{left:196.346667pt;}
.x5_c00300{left:222.106667pt;}
.x6_c00300{left:356.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_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_b4afbce4f73be568c8a71d8a.woff2')format("woff");}.ff1_c00301{font-family:ff1_c00301;line-height:0.666504;font-style:normal;font-weight:normal;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_d58bf8e38304900b5a74d03d.woff2')format("woff");}.ff2_c00301{font-family:ff2_c00301;line-height:0.938965;font-style:normal;font-weight:normal;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_1c84e557915e5449690ed554.woff2')format("woff");}.ff3_c00301{font-family:ff3_c00301;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00301;src:url('chunks/assets/font_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff4_c00301{font-family:ff4_c00301;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00301{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00301{vertical-align:0.000000px;}
.ls2_c00301{letter-spacing:0.000000px;}
.ls1_c00301{letter-spacing:0.214973px;}
.ls0_c00301{letter-spacing:0.217313px;}
.sc__c00301{text-shadow:none;}
.sc0_c00301{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00301{-webkit-text-stroke:0px transparent;}
.sc0_c00301{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00301{word-spacing:-15.012033px;}
.ws1_c00301{word-spacing:0.000000px;}
._2_c00301{margin-left:-1.234280px;}
._3_c00301{width:1.030299px;}
._1_c00301{width:997.561968px;}
._0_c00301{width:1345.983552px;}
.fc0_c00301{color:rgb(0,0,0);}
.fs1_c00301{font-size:54.000120px;}
.fs0_c00301{font-size:66.240000px;}
.y0_c00301{bottom:0.000000px;}
.y17_c00301{bottom:17.640000px;}
.y1a_c00301{bottom:17.641500px;}
.yf_c00301{bottom:24.481650px;}
.y20_c00301{bottom:25.019550px;}
.y1d_c00301{bottom:25.020000px;}
.yb_c00301{bottom:25.198500px;}
.y15_c00301{bottom:25.201500px;}
.y5_c00301{bottom:25.380000px;}
.y12_c00301{bottom:25.381500px;}
.y7_c00301{bottom:28.440000px;}
.y10_c00301{bottom:32.220000px;}
.y3_c00301{bottom:36.930000px;}
.ye_c00301{bottom:39.961500px;}
.y1_c00301{bottom:56.556450px;}
.y21_c00301{bottom:93.456450px;}
.y1f_c00301{bottom:109.836900px;}
.y1e_c00301{bottom:170.130000px;}
.y1c_c00301{bottom:230.430000px;}
.y1b_c00301{bottom:290.775000px;}
.y19_c00301{bottom:336.495000px;}
.y18_c00301{bottom:382.216500px;}
.y16_c00301{bottom:428.116500px;}
.y14_c00301{bottom:473.835000px;}
.y13_c00301{bottom:534.855000px;}
.y11_c00301{bottom:596.083500px;}
.y6_c00301{bottom:657.105000px;}
.yd_c00301{bottom:731.983500px;}
.yc_c00301{bottom:806.865000px;}
.ya_c00301{bottom:868.111500px;}
.y9_c00301{bottom:929.131500px;}
.y8_c00301{bottom:990.331500px;}
.y4_c00301{bottom:1051.351500px;}
.y2_c00301{bottom:1112.551500px;}
.h6_c00301{height:39.339931px;}
.hd_c00301{height:45.000000px;}
.h4_c00301{height:48.224531px;}
.h2_c00301{height:48.256875px;}
.h10_c00301{height:59.579850px;}
.hf_c00301{height:59.580450px;}
.he_c00301{height:59.616750px;}
.h8_c00301{height:60.300000px;}
.h5_c00301{height:60.478650px;}
.h9_c00301{height:60.479850px;}
.ha_c00301{height:60.515100px;}
.hc_c00301{height:60.516750px;}
.hb_c00301{height:74.160300px;}
.h3_c00301{height:85.715700px;}
.h7_c00301{height:454.708500px;}
.h0_c00301{height:1262.879850px;}
.h1_c00301{height:1263.000000px;}
.w3_c00301{width:105.119550px;}
.w4_c00301{width:149.976600px;}
.w6_c00301{width:255.808500px;}
.w5_c00301{width:441.795000px;}
.w7_c00301{width:442.155000px;}
.w2_c00301{width:698.325000px;}
.w0_c00301{width:892.979700px;}
.w1_c00301{width:893.250000px;}
.x0_c00301{left:0.000000px;}
.x4_c00301{left:4.859850px;}
.x2_c00301{left:144.036900px;}
.x1_c00301{left:148.896750px;}
.x8_c00301{left:196.779600px;}
.x3_c00301{left:201.999600px;}
.x7_c00301{left:220.890000px;}
.x5_c00301{left:249.870000px;}
.x6_c00301{left:400.575000px;}
@media print{
.v0_c00301{vertical-align:0.000000pt;}
.ls2_c00301{letter-spacing:0.000000pt;}
.ls1_c00301{letter-spacing:0.191087pt;}
.ls0_c00301{letter-spacing:0.193167pt;}
.ws0_c00301{word-spacing:-13.344030pt;}
.ws1_c00301{word-spacing:0.000000pt;}
._2_c00301{margin-left:-1.097138pt;}
._3_c00301{width:0.915822pt;}
._1_c00301{width:886.721749pt;}
._0_c00301{width:1196.429824pt;}
.fs1_c00301{font-size:48.000107pt;}
.fs0_c00301{font-size:58.880000pt;}
.y0_c00301{bottom:0.000000pt;}
.y17_c00301{bottom:15.680000pt;}
.y1a_c00301{bottom:15.681333pt;}
.yf_c00301{bottom:21.761467pt;}
.y20_c00301{bottom:22.239600pt;}
.y1d_c00301{bottom:22.240000pt;}
.yb_c00301{bottom:22.398667pt;}
.y15_c00301{bottom:22.401333pt;}
.y5_c00301{bottom:22.560000pt;}
.y12_c00301{bottom:22.561333pt;}
.y7_c00301{bottom:25.280000pt;}
.y10_c00301{bottom:28.640000pt;}
.y3_c00301{bottom:32.826667pt;}
.ye_c00301{bottom:35.521333pt;}
.y1_c00301{bottom:50.272400pt;}
.y21_c00301{bottom:83.072400pt;}
.y1f_c00301{bottom:97.632800pt;}
.y1e_c00301{bottom:151.226667pt;}
.y1c_c00301{bottom:204.826667pt;}
.y1b_c00301{bottom:258.466667pt;}
.y19_c00301{bottom:299.106667pt;}
.y18_c00301{bottom:339.748000pt;}
.y16_c00301{bottom:380.548000pt;}
.y14_c00301{bottom:421.186667pt;}
.y13_c00301{bottom:475.426667pt;}
.y11_c00301{bottom:529.852000pt;}
.y6_c00301{bottom:584.093333pt;}
.yd_c00301{bottom:650.652000pt;}
.yc_c00301{bottom:717.213333pt;}
.ya_c00301{bottom:771.654667pt;}
.y9_c00301{bottom:825.894667pt;}
.y8_c00301{bottom:880.294667pt;}
.y4_c00301{bottom:934.534667pt;}
.y2_c00301{bottom:988.934667pt;}
.h6_c00301{height:34.968828pt;}
.hd_c00301{height:40.000000pt;}
.h4_c00301{height:42.866250pt;}
.h2_c00301{height:42.895000pt;}
.h10_c00301{height:52.959867pt;}
.hf_c00301{height:52.960400pt;}
.he_c00301{height:52.992667pt;}
.h8_c00301{height:53.600000pt;}
.h5_c00301{height:53.758800pt;}
.h9_c00301{height:53.759867pt;}
.ha_c00301{height:53.791200pt;}
.hc_c00301{height:53.792667pt;}
.hb_c00301{height:65.920267pt;}
.h3_c00301{height:76.191733pt;}
.h7_c00301{height:404.185333pt;}
.h0_c00301{height:1122.559867pt;}
.h1_c00301{height:1122.666667pt;}
.w3_c00301{width:93.439600pt;}
.w4_c00301{width:133.312533pt;}
.w6_c00301{width:227.385333pt;}
.w5_c00301{width:392.706667pt;}
.w7_c00301{width:393.026667pt;}
.w2_c00301{width:620.733333pt;}
.w0_c00301{width:793.759733pt;}
.w1_c00301{width:794.000000pt;}
.x0_c00301{left:0.000000pt;}
.x4_c00301{left:4.319867pt;}
.x2_c00301{left:128.032800pt;}
.x1_c00301{left:132.352667pt;}
.x8_c00301{left:174.915200pt;}
.x3_c00301{left:179.555200pt;}
.x7_c00301{left:196.346667pt;}
.x5_c00301{left:222.106667pt;}
.x6_c00301{left:356.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_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_b4afbce4f73be568c8a71d8a.woff2')format("woff");}.ff1_c00302{font-family:ff1_c00302;line-height:0.666504;font-style:normal;font-weight:normal;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_7ab3a9561827f15887f699bb.woff2')format("woff");}.ff2_c00302{font-family:ff2_c00302;line-height:0.938965;font-style:normal;font-weight:normal;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_1c84e557915e5449690ed554.woff2')format("woff");}.ff3_c00302{font-family:ff3_c00302;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00302;src:url('chunks/assets/font_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff4_c00302{font-family:ff4_c00302;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00302{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00302{vertical-align:0.000000px;}
.ls2_c00302{letter-spacing:0.000000px;}
.ls1_c00302{letter-spacing:0.214973px;}
.ls0_c00302{letter-spacing:0.217313px;}
.sc__c00302{text-shadow:none;}
.sc0_c00302{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00302{-webkit-text-stroke:0px transparent;}
.sc0_c00302{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00302{word-spacing:-15.012033px;}
.ws1_c00302{word-spacing:0.000000px;}
._2_c00302{margin-left:-1.234280px;}
._3_c00302{width:1.030299px;}
._1_c00302{width:997.561968px;}
._0_c00302{width:1345.983552px;}
.fc0_c00302{color:rgb(0,0,0);}
.fs1_c00302{font-size:54.000120px;}
.fs0_c00302{font-size:66.240000px;}
.y0_c00302{bottom:0.000000px;}
.y17_c00302{bottom:17.640000px;}
.y1a_c00302{bottom:17.641500px;}
.yf_c00302{bottom:24.481650px;}
.y20_c00302{bottom:25.019550px;}
.y1d_c00302{bottom:25.020000px;}
.yb_c00302{bottom:25.198500px;}
.y15_c00302{bottom:25.201500px;}
.y5_c00302{bottom:25.380000px;}
.y12_c00302{bottom:25.381500px;}
.y7_c00302{bottom:28.440000px;}
.y10_c00302{bottom:32.220000px;}
.y3_c00302{bottom:36.930000px;}
.ye_c00302{bottom:39.961500px;}
.y1_c00302{bottom:56.556450px;}
.y21_c00302{bottom:93.456450px;}
.y1f_c00302{bottom:109.836900px;}
.y1e_c00302{bottom:170.130000px;}
.y1c_c00302{bottom:230.430000px;}
.y1b_c00302{bottom:290.775000px;}
.y19_c00302{bottom:336.495000px;}
.y18_c00302{bottom:382.216500px;}
.y16_c00302{bottom:428.116500px;}
.y14_c00302{bottom:473.835000px;}
.y13_c00302{bottom:534.855000px;}
.y11_c00302{bottom:596.083500px;}
.y6_c00302{bottom:657.105000px;}
.yd_c00302{bottom:731.983500px;}
.yc_c00302{bottom:806.865000px;}
.ya_c00302{bottom:868.111500px;}
.y9_c00302{bottom:929.131500px;}
.y8_c00302{bottom:990.331500px;}
.y4_c00302{bottom:1051.351500px;}
.y2_c00302{bottom:1112.551500px;}
.h6_c00302{height:39.339931px;}
.hd_c00302{height:45.000000px;}
.h4_c00302{height:48.224531px;}
.h2_c00302{height:48.256875px;}
.h10_c00302{height:59.579850px;}
.hf_c00302{height:59.580450px;}
.he_c00302{height:59.616750px;}
.h8_c00302{height:60.300000px;}
.h5_c00302{height:60.478650px;}
.h9_c00302{height:60.479850px;}
.ha_c00302{height:60.515100px;}
.hc_c00302{height:60.516750px;}
.hb_c00302{height:74.160300px;}
.h3_c00302{height:85.715700px;}
.h7_c00302{height:454.708500px;}
.h0_c00302{height:1262.879850px;}
.h1_c00302{height:1263.000000px;}
.w3_c00302{width:105.119550px;}
.w4_c00302{width:149.976600px;}
.w6_c00302{width:255.808500px;}
.w5_c00302{width:441.795000px;}
.w7_c00302{width:442.155000px;}
.w2_c00302{width:698.325000px;}
.w0_c00302{width:892.979700px;}
.w1_c00302{width:893.250000px;}
.x0_c00302{left:0.000000px;}
.x4_c00302{left:4.859850px;}
.x2_c00302{left:144.036900px;}
.x1_c00302{left:148.896750px;}
.x8_c00302{left:196.779600px;}
.x3_c00302{left:201.999600px;}
.x7_c00302{left:220.890000px;}
.x5_c00302{left:249.870000px;}
.x6_c00302{left:400.575000px;}
@media print{
.v0_c00302{vertical-align:0.000000pt;}
.ls2_c00302{letter-spacing:0.000000pt;}
.ls1_c00302{letter-spacing:0.191087pt;}
.ls0_c00302{letter-spacing:0.193167pt;}
.ws0_c00302{word-spacing:-13.344030pt;}
.ws1_c00302{word-spacing:0.000000pt;}
._2_c00302{margin-left:-1.097138pt;}
._3_c00302{width:0.915822pt;}
._1_c00302{width:886.721749pt;}
._0_c00302{width:1196.429824pt;}
.fs1_c00302{font-size:48.000107pt;}
.fs0_c00302{font-size:58.880000pt;}
.y0_c00302{bottom:0.000000pt;}
.y17_c00302{bottom:15.680000pt;}
.y1a_c00302{bottom:15.681333pt;}
.yf_c00302{bottom:21.761467pt;}
.y20_c00302{bottom:22.239600pt;}
.y1d_c00302{bottom:22.240000pt;}
.yb_c00302{bottom:22.398667pt;}
.y15_c00302{bottom:22.401333pt;}
.y5_c00302{bottom:22.560000pt;}
.y12_c00302{bottom:22.561333pt;}
.y7_c00302{bottom:25.280000pt;}
.y10_c00302{bottom:28.640000pt;}
.y3_c00302{bottom:32.826667pt;}
.ye_c00302{bottom:35.521333pt;}
.y1_c00302{bottom:50.272400pt;}
.y21_c00302{bottom:83.072400pt;}
.y1f_c00302{bottom:97.632800pt;}
.y1e_c00302{bottom:151.226667pt;}
.y1c_c00302{bottom:204.826667pt;}
.y1b_c00302{bottom:258.466667pt;}
.y19_c00302{bottom:299.106667pt;}
.y18_c00302{bottom:339.748000pt;}
.y16_c00302{bottom:380.548000pt;}
.y14_c00302{bottom:421.186667pt;}
.y13_c00302{bottom:475.426667pt;}
.y11_c00302{bottom:529.852000pt;}
.y6_c00302{bottom:584.093333pt;}
.yd_c00302{bottom:650.652000pt;}
.yc_c00302{bottom:717.213333pt;}
.ya_c00302{bottom:771.654667pt;}
.y9_c00302{bottom:825.894667pt;}
.y8_c00302{bottom:880.294667pt;}
.y4_c00302{bottom:934.534667pt;}
.y2_c00302{bottom:988.934667pt;}
.h6_c00302{height:34.968828pt;}
.hd_c00302{height:40.000000pt;}
.h4_c00302{height:42.866250pt;}
.h2_c00302{height:42.895000pt;}
.h10_c00302{height:52.959867pt;}
.hf_c00302{height:52.960400pt;}
.he_c00302{height:52.992667pt;}
.h8_c00302{height:53.600000pt;}
.h5_c00302{height:53.758800pt;}
.h9_c00302{height:53.759867pt;}
.ha_c00302{height:53.791200pt;}
.hc_c00302{height:53.792667pt;}
.hb_c00302{height:65.920267pt;}
.h3_c00302{height:76.191733pt;}
.h7_c00302{height:404.185333pt;}
.h0_c00302{height:1122.559867pt;}
.h1_c00302{height:1122.666667pt;}
.w3_c00302{width:93.439600pt;}
.w4_c00302{width:133.312533pt;}
.w6_c00302{width:227.385333pt;}
.w5_c00302{width:392.706667pt;}
.w7_c00302{width:393.026667pt;}
.w2_c00302{width:620.733333pt;}
.w0_c00302{width:793.759733pt;}
.w1_c00302{width:794.000000pt;}
.x0_c00302{left:0.000000pt;}
.x4_c00302{left:4.319867pt;}
.x2_c00302{left:128.032800pt;}
.x1_c00302{left:132.352667pt;}
.x8_c00302{left:174.915200pt;}
.x3_c00302{left:179.555200pt;}
.x7_c00302{left:196.346667pt;}
.x5_c00302{left:222.106667pt;}
.x6_c00302{left:356.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_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_b4afbce4f73be568c8a71d8a.woff2')format("woff");}.ff1_c00303{font-family:ff1_c00303;line-height:0.666504;font-style:normal;font-weight:normal;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_25d72876d701846e1a437e24.woff2')format("woff");}.ff2_c00303{font-family:ff2_c00303;line-height:0.938965;font-style:normal;font-weight:normal;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_1c84e557915e5449690ed554.woff2')format("woff");}.ff3_c00303{font-family:ff3_c00303;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00303;src:url('chunks/assets/font_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff4_c00303{font-family:ff4_c00303;line-height:0.666504;font-style: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;}
.ls2_c00303{letter-spacing:0.000000px;}
.ls0_c00303{letter-spacing:0.214966px;}
.ls1_c00303{letter-spacing:0.217313px;}
.sc__c00303{text-shadow:none;}
.sc0_c00303{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00303{-webkit-text-stroke:0px transparent;}
.sc0_c00303{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00303{word-spacing:-15.012033px;}
.ws1_c00303{word-spacing:0.000000px;}
._2_c00303{margin-left:-1.234280px;}
._3_c00303{width:1.110640px;}
._1_c00303{width:997.561968px;}
._0_c00303{width:1345.983552px;}
.fc0_c00303{color:rgb(0,0,0);}
.fs1_c00303{font-size:54.000120px;}
.fs0_c00303{font-size:66.240000px;}
.y0_c00303{bottom:0.000000px;}
.yd_c00303{bottom:17.458800px;}
.y1a_c00303{bottom:17.640000px;}
.y1d_c00303{bottom:17.641500px;}
.y11_c00303{bottom:24.481650px;}
.y23_c00303{bottom:25.019550px;}
.y20_c00303{bottom:25.020000px;}
.yb_c00303{bottom:25.198500px;}
.y18_c00303{bottom:25.201500px;}
.y5_c00303{bottom:25.380000px;}
.y15_c00303{bottom:25.381500px;}
.y13_c00303{bottom:32.220000px;}
.y12_c00303{bottom:32.221500px;}
.yc_c00303{bottom:33.118500px;}
.y3_c00303{bottom:36.930000px;}
.y10_c00303{bottom:39.961500px;}
.y7_c00303{bottom:43.920000px;}
.y1_c00303{bottom:56.556450px;}
.y24_c00303{bottom:93.456450px;}
.y22_c00303{bottom:109.836900px;}
.y21_c00303{bottom:170.130000px;}
.y1f_c00303{bottom:230.430000px;}
.y1e_c00303{bottom:290.775000px;}
.y1c_c00303{bottom:336.495000px;}
.y1b_c00303{bottom:382.216500px;}
.y19_c00303{bottom:428.116500px;}
.y17_c00303{bottom:473.835000px;}
.y16_c00303{bottom:534.855000px;}
.y14_c00303{bottom:596.083500px;}
.y6_c00303{bottom:657.105000px;}
.yf_c00303{bottom:731.983500px;}
.ye_c00303{bottom:806.865000px;}
.ya_c00303{bottom:868.111500px;}
.y9_c00303{bottom:929.131500px;}
.y8_c00303{bottom:990.331500px;}
.y4_c00303{bottom:1051.351500px;}
.y2_c00303{bottom:1112.551500px;}
.h6_c00303{height:39.339931px;}
.hd_c00303{height:45.000000px;}
.h4_c00303{height:48.224531px;}
.h2_c00303{height:48.256875px;}
.h10_c00303{height:59.579850px;}
.hf_c00303{height:59.580450px;}
.he_c00303{height:59.616750px;}
.h8_c00303{height:60.300000px;}
.h5_c00303{height:60.478650px;}
.h9_c00303{height:60.479850px;}
.ha_c00303{height:60.515100px;}
.hc_c00303{height:60.516750px;}
.hb_c00303{height:74.160300px;}
.h3_c00303{height:85.715700px;}
.h7_c00303{height:454.708500px;}
.h0_c00303{height:1262.879850px;}
.h1_c00303{height:1263.000000px;}
.w3_c00303{width:105.119550px;}
.w4_c00303{width:149.976600px;}
.w6_c00303{width:255.808500px;}
.w5_c00303{width:441.795000px;}
.w7_c00303{width:442.155000px;}
.w2_c00303{width:698.325000px;}
.w0_c00303{width:892.979700px;}
.w1_c00303{width:893.250000px;}
.x0_c00303{left:0.000000px;}
.x4_c00303{left:4.859850px;}
.x2_c00303{left:144.036900px;}
.x1_c00303{left:148.896750px;}
.x8_c00303{left:196.779600px;}
.x3_c00303{left:201.999600px;}
.x7_c00303{left:220.890000px;}
.x5_c00303{left:249.870000px;}
.x6_c00303{left:400.575000px;}
@media print{
.v0_c00303{vertical-align:0.000000pt;}
.ls2_c00303{letter-spacing:0.000000pt;}
.ls0_c00303{letter-spacing:0.191081pt;}
.ls1_c00303{letter-spacing:0.193167pt;}
.ws0_c00303{word-spacing:-13.344030pt;}
.ws1_c00303{word-spacing:0.000000pt;}
._2_c00303{margin-left:-1.097138pt;}
._3_c00303{width:0.987236pt;}
._1_c00303{width:886.721749pt;}
._0_c00303{width:1196.429824pt;}
.fs1_c00303{font-size:48.000107pt;}
.fs0_c00303{font-size:58.880000pt;}
.y0_c00303{bottom:0.000000pt;}
.yd_c00303{bottom:15.518933pt;}
.y1a_c00303{bottom:15.680000pt;}
.y1d_c00303{bottom:15.681333pt;}
.y11_c00303{bottom:21.761467pt;}
.y23_c00303{bottom:22.239600pt;}
.y20_c00303{bottom:22.240000pt;}
.yb_c00303{bottom:22.398667pt;}
.y18_c00303{bottom:22.401333pt;}
.y5_c00303{bottom:22.560000pt;}
.y15_c00303{bottom:22.561333pt;}
.y13_c00303{bottom:28.640000pt;}
.y12_c00303{bottom:28.641333pt;}
.yc_c00303{bottom:29.438667pt;}
.y3_c00303{bottom:32.826667pt;}
.y10_c00303{bottom:35.521333pt;}
.y7_c00303{bottom:39.040000pt;}
.y1_c00303{bottom:50.272400pt;}
.y24_c00303{bottom:83.072400pt;}
.y22_c00303{bottom:97.632800pt;}
.y21_c00303{bottom:151.226667pt;}
.y1f_c00303{bottom:204.826667pt;}
.y1e_c00303{bottom:258.466667pt;}
.y1c_c00303{bottom:299.106667pt;}
.y1b_c00303{bottom:339.748000pt;}
.y19_c00303{bottom:380.548000pt;}
.y17_c00303{bottom:421.186667pt;}
.y16_c00303{bottom:475.426667pt;}
.y14_c00303{bottom:529.852000pt;}
.y6_c00303{bottom:584.093333pt;}
.yf_c00303{bottom:650.652000pt;}
.ye_c00303{bottom:717.213333pt;}
.ya_c00303{bottom:771.654667pt;}
.y9_c00303{bottom:825.894667pt;}
.y8_c00303{bottom:880.294667pt;}
.y4_c00303{bottom:934.534667pt;}
.y2_c00303{bottom:988.934667pt;}
.h6_c00303{height:34.968828pt;}
.hd_c00303{height:40.000000pt;}
.h4_c00303{height:42.866250pt;}
.h2_c00303{height:42.895000pt;}
.h10_c00303{height:52.959867pt;}
.hf_c00303{height:52.960400pt;}
.he_c00303{height:52.992667pt;}
.h8_c00303{height:53.600000pt;}
.h5_c00303{height:53.758800pt;}
.h9_c00303{height:53.759867pt;}
.ha_c00303{height:53.791200pt;}
.hc_c00303{height:53.792667pt;}
.hb_c00303{height:65.920267pt;}
.h3_c00303{height:76.191733pt;}
.h7_c00303{height:404.185333pt;}
.h0_c00303{height:1122.559867pt;}
.h1_c00303{height:1122.666667pt;}
.w3_c00303{width:93.439600pt;}
.w4_c00303{width:133.312533pt;}
.w6_c00303{width:227.385333pt;}
.w5_c00303{width:392.706667pt;}
.w7_c00303{width:393.026667pt;}
.w2_c00303{width:620.733333pt;}
.w0_c00303{width:793.759733pt;}
.w1_c00303{width:794.000000pt;}
.x0_c00303{left:0.000000pt;}
.x4_c00303{left:4.319867pt;}
.x2_c00303{left:128.032800pt;}
.x1_c00303{left:132.352667pt;}
.x8_c00303{left:174.915200pt;}
.x3_c00303{left:179.555200pt;}
.x7_c00303{left:196.346667pt;}
.x5_c00303{left:222.106667pt;}
.x6_c00303{left:356.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_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_b4afbce4f73be568c8a71d8a.woff2')format("woff");}.ff1_c00304{font-family:ff1_c00304;line-height:0.666504;font-style:normal;font-weight:normal;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_25d72876d701846e1a437e24.woff2')format("woff");}.ff2_c00304{font-family:ff2_c00304;line-height:0.938965;font-style:normal;font-weight:normal;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_1c84e557915e5449690ed554.woff2')format("woff");}.ff3_c00304{font-family:ff3_c00304;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00304;src:url('chunks/assets/font_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff4_c00304{font-family:ff4_c00304;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00304{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00304{vertical-align:0.000000px;}
.ls2_c00304{letter-spacing:0.000000px;}
.ls0_c00304{letter-spacing:0.214966px;}
.ls1_c00304{letter-spacing:0.217313px;}
.sc__c00304{text-shadow:none;}
.sc0_c00304{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00304{-webkit-text-stroke:0px transparent;}
.sc0_c00304{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00304{word-spacing:-15.012033px;}
.ws1_c00304{word-spacing:0.000000px;}
._2_c00304{margin-left:-1.234280px;}
._3_c00304{width:1.110640px;}
._1_c00304{width:997.561968px;}
._0_c00304{width:1345.983552px;}
.fc0_c00304{color:rgb(0,0,0);}
.fs1_c00304{font-size:54.000120px;}
.fs0_c00304{font-size:66.240000px;}
.y0_c00304{bottom:0.000000px;}
.yd_c00304{bottom:17.458800px;}
.y1a_c00304{bottom:17.640000px;}
.y1d_c00304{bottom:17.641500px;}
.y11_c00304{bottom:24.481650px;}
.y23_c00304{bottom:25.019550px;}
.y20_c00304{bottom:25.020000px;}
.yb_c00304{bottom:25.198500px;}
.y18_c00304{bottom:25.201500px;}
.y5_c00304{bottom:25.380000px;}
.y15_c00304{bottom:25.381500px;}
.y13_c00304{bottom:32.220000px;}
.y12_c00304{bottom:32.221500px;}
.yc_c00304{bottom:33.118500px;}
.y3_c00304{bottom:36.930000px;}
.y10_c00304{bottom:39.961500px;}
.y7_c00304{bottom:43.920000px;}
.y1_c00304{bottom:56.556450px;}
.y24_c00304{bottom:93.456450px;}
.y22_c00304{bottom:109.836900px;}
.y21_c00304{bottom:170.130000px;}
.y1f_c00304{bottom:230.430000px;}
.y1e_c00304{bottom:290.775000px;}
.y1c_c00304{bottom:336.495000px;}
.y1b_c00304{bottom:382.216500px;}
.y19_c00304{bottom:428.116500px;}
.y17_c00304{bottom:473.835000px;}
.y16_c00304{bottom:534.855000px;}
.y14_c00304{bottom:596.083500px;}
.y6_c00304{bottom:657.105000px;}
.yf_c00304{bottom:731.983500px;}
.ye_c00304{bottom:806.865000px;}
.ya_c00304{bottom:868.111500px;}
.y9_c00304{bottom:929.131500px;}
.y8_c00304{bottom:990.331500px;}
.y4_c00304{bottom:1051.351500px;}
.y2_c00304{bottom:1112.551500px;}
.h6_c00304{height:39.339931px;}
.hd_c00304{height:45.000000px;}
.h4_c00304{height:48.224531px;}
.h2_c00304{height:48.256875px;}
.h10_c00304{height:59.579850px;}
.hf_c00304{height:59.580450px;}
.he_c00304{height:59.616750px;}
.h8_c00304{height:60.300000px;}
.h5_c00304{height:60.478650px;}
.h9_c00304{height:60.479850px;}
.ha_c00304{height:60.515100px;}
.hc_c00304{height:60.516750px;}
.hb_c00304{height:74.160300px;}
.h3_c00304{height:85.715700px;}
.h7_c00304{height:454.708500px;}
.h0_c00304{height:1262.879850px;}
.h1_c00304{height:1263.000000px;}
.w3_c00304{width:105.119550px;}
.w4_c00304{width:149.976600px;}
.w6_c00304{width:255.808500px;}
.w5_c00304{width:441.795000px;}
.w7_c00304{width:442.155000px;}
.w2_c00304{width:698.325000px;}
.w0_c00304{width:892.979700px;}
.w1_c00304{width:893.250000px;}
.x0_c00304{left:0.000000px;}
.x4_c00304{left:4.859850px;}
.x2_c00304{left:144.036900px;}
.x1_c00304{left:148.896750px;}
.x8_c00304{left:196.779600px;}
.x3_c00304{left:201.999600px;}
.x7_c00304{left:220.890000px;}
.x5_c00304{left:249.870000px;}
.x6_c00304{left:400.575000px;}
@media print{
.v0_c00304{vertical-align:0.000000pt;}
.ls2_c00304{letter-spacing:0.000000pt;}
.ls0_c00304{letter-spacing:0.191081pt;}
.ls1_c00304{letter-spacing:0.193167pt;}
.ws0_c00304{word-spacing:-13.344030pt;}
.ws1_c00304{word-spacing:0.000000pt;}
._2_c00304{margin-left:-1.097138pt;}
._3_c00304{width:0.987236pt;}
._1_c00304{width:886.721749pt;}
._0_c00304{width:1196.429824pt;}
.fs1_c00304{font-size:48.000107pt;}
.fs0_c00304{font-size:58.880000pt;}
.y0_c00304{bottom:0.000000pt;}
.yd_c00304{bottom:15.518933pt;}
.y1a_c00304{bottom:15.680000pt;}
.y1d_c00304{bottom:15.681333pt;}
.y11_c00304{bottom:21.761467pt;}
.y23_c00304{bottom:22.239600pt;}
.y20_c00304{bottom:22.240000pt;}
.yb_c00304{bottom:22.398667pt;}
.y18_c00304{bottom:22.401333pt;}
.y5_c00304{bottom:22.560000pt;}
.y15_c00304{bottom:22.561333pt;}
.y13_c00304{bottom:28.640000pt;}
.y12_c00304{bottom:28.641333pt;}
.yc_c00304{bottom:29.438667pt;}
.y3_c00304{bottom:32.826667pt;}
.y10_c00304{bottom:35.521333pt;}
.y7_c00304{bottom:39.040000pt;}
.y1_c00304{bottom:50.272400pt;}
.y24_c00304{bottom:83.072400pt;}
.y22_c00304{bottom:97.632800pt;}
.y21_c00304{bottom:151.226667pt;}
.y1f_c00304{bottom:204.826667pt;}
.y1e_c00304{bottom:258.466667pt;}
.y1c_c00304{bottom:299.106667pt;}
.y1b_c00304{bottom:339.748000pt;}
.y19_c00304{bottom:380.548000pt;}
.y17_c00304{bottom:421.186667pt;}
.y16_c00304{bottom:475.426667pt;}
.y14_c00304{bottom:529.852000pt;}
.y6_c00304{bottom:584.093333pt;}
.yf_c00304{bottom:650.652000pt;}
.ye_c00304{bottom:717.213333pt;}
.ya_c00304{bottom:771.654667pt;}
.y9_c00304{bottom:825.894667pt;}
.y8_c00304{bottom:880.294667pt;}
.y4_c00304{bottom:934.534667pt;}
.y2_c00304{bottom:988.934667pt;}
.h6_c00304{height:34.968828pt;}
.hd_c00304{height:40.000000pt;}
.h4_c00304{height:42.866250pt;}
.h2_c00304{height:42.895000pt;}
.h10_c00304{height:52.959867pt;}
.hf_c00304{height:52.960400pt;}
.he_c00304{height:52.992667pt;}
.h8_c00304{height:53.600000pt;}
.h5_c00304{height:53.758800pt;}
.h9_c00304{height:53.759867pt;}
.ha_c00304{height:53.791200pt;}
.hc_c00304{height:53.792667pt;}
.hb_c00304{height:65.920267pt;}
.h3_c00304{height:76.191733pt;}
.h7_c00304{height:404.185333pt;}
.h0_c00304{height:1122.559867pt;}
.h1_c00304{height:1122.666667pt;}
.w3_c00304{width:93.439600pt;}
.w4_c00304{width:133.312533pt;}
.w6_c00304{width:227.385333pt;}
.w5_c00304{width:392.706667pt;}
.w7_c00304{width:393.026667pt;}
.w2_c00304{width:620.733333pt;}
.w0_c00304{width:793.759733pt;}
.w1_c00304{width:794.000000pt;}
.x0_c00304{left:0.000000pt;}
.x4_c00304{left:4.319867pt;}
.x2_c00304{left:128.032800pt;}
.x1_c00304{left:132.352667pt;}
.x8_c00304{left:174.915200pt;}
.x3_c00304{left:179.555200pt;}
.x7_c00304{left:196.346667pt;}
.x5_c00304{left:222.106667pt;}
.x6_c00304{left:356.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_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_b4afbce4f73be568c8a71d8a.woff2')format("woff");}.ff1_c00305{font-family:ff1_c00305;line-height:0.666504;font-style:normal;font-weight:normal;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_5206e3c698825e385b2c538c.woff2')format("woff");}.ff2_c00305{font-family:ff2_c00305;line-height:0.938965;font-style:normal;font-weight:normal;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_1c84e557915e5449690ed554.woff2')format("woff");}.ff3_c00305{font-family:ff3_c00305;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00305;src:url('chunks/assets/font_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff4_c00305{font-family:ff4_c00305;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00305{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00305{vertical-align:0.000000px;}
.ls2_c00305{letter-spacing:0.000000px;}
.ls0_c00305{letter-spacing:0.214966px;}
.ls1_c00305{letter-spacing:0.217313px;}
.sc__c00305{text-shadow:none;}
.sc0_c00305{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00305{-webkit-text-stroke:0px transparent;}
.sc0_c00305{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00305{word-spacing:-15.012033px;}
.ws1_c00305{word-spacing:0.000000px;}
._2_c00305{margin-left:-1.234280px;}
._3_c00305{width:1.110640px;}
._1_c00305{width:997.561968px;}
._0_c00305{width:1345.983552px;}
.fc0_c00305{color:rgb(0,0,0);}
.fs1_c00305{font-size:54.000120px;}
.fs0_c00305{font-size:66.240000px;}
.y0_c00305{bottom:0.000000px;}
.y7_c00305{bottom:5.220000px;}
.yd_c00305{bottom:17.458800px;}
.y1a_c00305{bottom:17.640000px;}
.y1d_c00305{bottom:17.641500px;}
.y11_c00305{bottom:24.481650px;}
.y23_c00305{bottom:25.019550px;}
.y20_c00305{bottom:25.020000px;}
.yb_c00305{bottom:25.198500px;}
.y18_c00305{bottom:25.201500px;}
.y5_c00305{bottom:25.380000px;}
.y15_c00305{bottom:25.381500px;}
.y13_c00305{bottom:32.220000px;}
.y12_c00305{bottom:32.221500px;}
.yc_c00305{bottom:33.118500px;}
.y3_c00305{bottom:36.930000px;}
.y10_c00305{bottom:39.961500px;}
.y1_c00305{bottom:56.556450px;}
.y24_c00305{bottom:93.456450px;}
.y22_c00305{bottom:109.836900px;}
.y21_c00305{bottom:170.130000px;}
.y1f_c00305{bottom:230.430000px;}
.y1e_c00305{bottom:290.775000px;}
.y1c_c00305{bottom:336.495000px;}
.y1b_c00305{bottom:382.216500px;}
.y19_c00305{bottom:428.116500px;}
.y17_c00305{bottom:473.835000px;}
.y16_c00305{bottom:534.855000px;}
.y14_c00305{bottom:596.083500px;}
.y6_c00305{bottom:657.105000px;}
.yf_c00305{bottom:731.983500px;}
.ye_c00305{bottom:806.865000px;}
.ya_c00305{bottom:868.111500px;}
.y9_c00305{bottom:929.131500px;}
.y8_c00305{bottom:990.331500px;}
.y4_c00305{bottom:1051.351500px;}
.y2_c00305{bottom:1112.551500px;}
.h6_c00305{height:39.339931px;}
.hd_c00305{height:45.000000px;}
.h4_c00305{height:48.224531px;}
.h2_c00305{height:48.256875px;}
.h10_c00305{height:59.579850px;}
.hf_c00305{height:59.580450px;}
.he_c00305{height:59.616750px;}
.h8_c00305{height:60.300000px;}
.h5_c00305{height:60.478650px;}
.h9_c00305{height:60.479850px;}
.ha_c00305{height:60.515100px;}
.hc_c00305{height:60.516750px;}
.hb_c00305{height:74.160300px;}
.h3_c00305{height:85.715700px;}
.h7_c00305{height:454.708500px;}
.h0_c00305{height:1262.879850px;}
.h1_c00305{height:1263.000000px;}
.w3_c00305{width:105.119550px;}
.w4_c00305{width:149.976600px;}
.w6_c00305{width:255.808500px;}
.w5_c00305{width:441.795000px;}
.w7_c00305{width:442.155000px;}
.w2_c00305{width:698.325000px;}
.w0_c00305{width:892.979700px;}
.w1_c00305{width:893.250000px;}
.x0_c00305{left:0.000000px;}
.x4_c00305{left:4.859850px;}
.x2_c00305{left:144.036900px;}
.x1_c00305{left:148.896750px;}
.x8_c00305{left:196.779600px;}
.x3_c00305{left:201.999600px;}
.x7_c00305{left:220.890000px;}
.x5_c00305{left:249.870000px;}
.x6_c00305{left:400.575000px;}
@media print{
.v0_c00305{vertical-align:0.000000pt;}
.ls2_c00305{letter-spacing:0.000000pt;}
.ls0_c00305{letter-spacing:0.191081pt;}
.ls1_c00305{letter-spacing:0.193167pt;}
.ws0_c00305{word-spacing:-13.344030pt;}
.ws1_c00305{word-spacing:0.000000pt;}
._2_c00305{margin-left:-1.097138pt;}
._3_c00305{width:0.987236pt;}
._1_c00305{width:886.721749pt;}
._0_c00305{width:1196.429824pt;}
.fs1_c00305{font-size:48.000107pt;}
.fs0_c00305{font-size:58.880000pt;}
.y0_c00305{bottom:0.000000pt;}
.y7_c00305{bottom:4.640000pt;}
.yd_c00305{bottom:15.518933pt;}
.y1a_c00305{bottom:15.680000pt;}
.y1d_c00305{bottom:15.681333pt;}
.y11_c00305{bottom:21.761467pt;}
.y23_c00305{bottom:22.239600pt;}
.y20_c00305{bottom:22.240000pt;}
.yb_c00305{bottom:22.398667pt;}
.y18_c00305{bottom:22.401333pt;}
.y5_c00305{bottom:22.560000pt;}
.y15_c00305{bottom:22.561333pt;}
.y13_c00305{bottom:28.640000pt;}
.y12_c00305{bottom:28.641333pt;}
.yc_c00305{bottom:29.438667pt;}
.y3_c00305{bottom:32.826667pt;}
.y10_c00305{bottom:35.521333pt;}
.y1_c00305{bottom:50.272400pt;}
.y24_c00305{bottom:83.072400pt;}
.y22_c00305{bottom:97.632800pt;}
.y21_c00305{bottom:151.226667pt;}
.y1f_c00305{bottom:204.826667pt;}
.y1e_c00305{bottom:258.466667pt;}
.y1c_c00305{bottom:299.106667pt;}
.y1b_c00305{bottom:339.748000pt;}
.y19_c00305{bottom:380.548000pt;}
.y17_c00305{bottom:421.186667pt;}
.y16_c00305{bottom:475.426667pt;}
.y14_c00305{bottom:529.852000pt;}
.y6_c00305{bottom:584.093333pt;}
.yf_c00305{bottom:650.652000pt;}
.ye_c00305{bottom:717.213333pt;}
.ya_c00305{bottom:771.654667pt;}
.y9_c00305{bottom:825.894667pt;}
.y8_c00305{bottom:880.294667pt;}
.y4_c00305{bottom:934.534667pt;}
.y2_c00305{bottom:988.934667pt;}
.h6_c00305{height:34.968828pt;}
.hd_c00305{height:40.000000pt;}
.h4_c00305{height:42.866250pt;}
.h2_c00305{height:42.895000pt;}
.h10_c00305{height:52.959867pt;}
.hf_c00305{height:52.960400pt;}
.he_c00305{height:52.992667pt;}
.h8_c00305{height:53.600000pt;}
.h5_c00305{height:53.758800pt;}
.h9_c00305{height:53.759867pt;}
.ha_c00305{height:53.791200pt;}
.hc_c00305{height:53.792667pt;}
.hb_c00305{height:65.920267pt;}
.h3_c00305{height:76.191733pt;}
.h7_c00305{height:404.185333pt;}
.h0_c00305{height:1122.559867pt;}
.h1_c00305{height:1122.666667pt;}
.w3_c00305{width:93.439600pt;}
.w4_c00305{width:133.312533pt;}
.w6_c00305{width:227.385333pt;}
.w5_c00305{width:392.706667pt;}
.w7_c00305{width:393.026667pt;}
.w2_c00305{width:620.733333pt;}
.w0_c00305{width:793.759733pt;}
.w1_c00305{width:794.000000pt;}
.x0_c00305{left:0.000000pt;}
.x4_c00305{left:4.319867pt;}
.x2_c00305{left:128.032800pt;}
.x1_c00305{left:132.352667pt;}
.x8_c00305{left:174.915200pt;}
.x3_c00305{left:179.555200pt;}
.x7_c00305{left:196.346667pt;}
.x5_c00305{left:222.106667pt;}
.x6_c00305{left:356.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_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_b4afbce4f73be568c8a71d8a.woff2')format("woff");}.ff1_c00306{font-family:ff1_c00306;line-height:0.666504;font-style:normal;font-weight:normal;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_a135fbac938323f32528b0ce.woff2')format("woff");}.ff2_c00306{font-family:ff2_c00306;line-height:0.938965;font-style:normal;font-weight:normal;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_1c84e557915e5449690ed554.woff2')format("woff");}.ff3_c00306{font-family:ff3_c00306;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00306;src:url('chunks/assets/font_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff4_c00306{font-family:ff4_c00306;line-height:0.666504;font-style: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;}
.ls1_c00306{letter-spacing:0.000000px;}
.ls0_c00306{letter-spacing:0.217313px;}
.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:-15.012033px;}
.ws1_c00306{word-spacing:0.000000px;}
._2_c00306{margin-left:-1.234280px;}
._3_c00306{width:1.012339px;}
._1_c00306{width:997.561968px;}
._0_c00306{width:1345.983552px;}
.fc0_c00306{color:rgb(0,0,0);}
.fs1_c00306{font-size:54.000120px;}
.fs0_c00306{font-size:66.240000px;}
.y0_c00306{bottom:0.000000px;}
.y18_c00306{bottom:17.640000px;}
.y1b_c00306{bottom:17.641500px;}
.yf_c00306{bottom:24.481650px;}
.y21_c00306{bottom:25.019550px;}
.y1e_c00306{bottom:25.020000px;}
.yb_c00306{bottom:25.198500px;}
.y16_c00306{bottom:25.201500px;}
.y5_c00306{bottom:25.380000px;}
.y13_c00306{bottom:25.381500px;}
.y11_c00306{bottom:32.220000px;}
.y10_c00306{bottom:32.221500px;}
.y7_c00306{bottom:36.180000px;}
.y3_c00306{bottom:36.930000px;}
.ye_c00306{bottom:39.961500px;}
.y1_c00306{bottom:56.556450px;}
.y22_c00306{bottom:93.456450px;}
.y20_c00306{bottom:109.836900px;}
.y1f_c00306{bottom:170.130000px;}
.y1d_c00306{bottom:230.430000px;}
.y1c_c00306{bottom:290.775000px;}
.y1a_c00306{bottom:336.495000px;}
.y19_c00306{bottom:382.216500px;}
.y17_c00306{bottom:428.116500px;}
.y15_c00306{bottom:473.835000px;}
.y14_c00306{bottom:534.855000px;}
.y12_c00306{bottom:596.083500px;}
.y6_c00306{bottom:657.105000px;}
.yd_c00306{bottom:731.983500px;}
.yc_c00306{bottom:806.865000px;}
.ya_c00306{bottom:868.111500px;}
.y9_c00306{bottom:929.131500px;}
.y8_c00306{bottom:990.331500px;}
.y4_c00306{bottom:1051.351500px;}
.y2_c00306{bottom:1112.551500px;}
.h6_c00306{height:39.339931px;}
.hd_c00306{height:45.000000px;}
.h4_c00306{height:48.224531px;}
.h2_c00306{height:48.256875px;}
.h10_c00306{height:59.579850px;}
.hf_c00306{height:59.580450px;}
.he_c00306{height:59.616750px;}
.h8_c00306{height:60.300000px;}
.h5_c00306{height:60.478650px;}
.h9_c00306{height:60.479850px;}
.ha_c00306{height:60.515100px;}
.hc_c00306{height:60.516750px;}
.hb_c00306{height:74.160300px;}
.h3_c00306{height:85.715700px;}
.h7_c00306{height:454.708500px;}
.h0_c00306{height:1262.879850px;}
.h1_c00306{height:1263.000000px;}
.w3_c00306{width:105.119550px;}
.w4_c00306{width:149.976600px;}
.w6_c00306{width:255.808500px;}
.w5_c00306{width:441.795000px;}
.w7_c00306{width:442.155000px;}
.w2_c00306{width:698.325000px;}
.w0_c00306{width:892.979700px;}
.w1_c00306{width:893.250000px;}
.x0_c00306{left:0.000000px;}
.x4_c00306{left:4.859850px;}
.x2_c00306{left:144.036900px;}
.x1_c00306{left:148.896750px;}
.x8_c00306{left:196.779600px;}
.x3_c00306{left:201.999600px;}
.x7_c00306{left:220.890000px;}
.x5_c00306{left:249.870000px;}
.x6_c00306{left:400.575000px;}
@media print{
.v0_c00306{vertical-align:0.000000pt;}
.ls1_c00306{letter-spacing:0.000000pt;}
.ls0_c00306{letter-spacing:0.193167pt;}
.ws0_c00306{word-spacing:-13.344030pt;}
.ws1_c00306{word-spacing:0.000000pt;}
._2_c00306{margin-left:-1.097138pt;}
._3_c00306{width:0.899857pt;}
._1_c00306{width:886.721749pt;}
._0_c00306{width:1196.429824pt;}
.fs1_c00306{font-size:48.000107pt;}
.fs0_c00306{font-size:58.880000pt;}
.y0_c00306{bottom:0.000000pt;}
.y18_c00306{bottom:15.680000pt;}
.y1b_c00306{bottom:15.681333pt;}
.yf_c00306{bottom:21.761467pt;}
.y21_c00306{bottom:22.239600pt;}
.y1e_c00306{bottom:22.240000pt;}
.yb_c00306{bottom:22.398667pt;}
.y16_c00306{bottom:22.401333pt;}
.y5_c00306{bottom:22.560000pt;}
.y13_c00306{bottom:22.561333pt;}
.y11_c00306{bottom:28.640000pt;}
.y10_c00306{bottom:28.641333pt;}
.y7_c00306{bottom:32.160000pt;}
.y3_c00306{bottom:32.826667pt;}
.ye_c00306{bottom:35.521333pt;}
.y1_c00306{bottom:50.272400pt;}
.y22_c00306{bottom:83.072400pt;}
.y20_c00306{bottom:97.632800pt;}
.y1f_c00306{bottom:151.226667pt;}
.y1d_c00306{bottom:204.826667pt;}
.y1c_c00306{bottom:258.466667pt;}
.y1a_c00306{bottom:299.106667pt;}
.y19_c00306{bottom:339.748000pt;}
.y17_c00306{bottom:380.548000pt;}
.y15_c00306{bottom:421.186667pt;}
.y14_c00306{bottom:475.426667pt;}
.y12_c00306{bottom:529.852000pt;}
.y6_c00306{bottom:584.093333pt;}
.yd_c00306{bottom:650.652000pt;}
.yc_c00306{bottom:717.213333pt;}
.ya_c00306{bottom:771.654667pt;}
.y9_c00306{bottom:825.894667pt;}
.y8_c00306{bottom:880.294667pt;}
.y4_c00306{bottom:934.534667pt;}
.y2_c00306{bottom:988.934667pt;}
.h6_c00306{height:34.968828pt;}
.hd_c00306{height:40.000000pt;}
.h4_c00306{height:42.866250pt;}
.h2_c00306{height:42.895000pt;}
.h10_c00306{height:52.959867pt;}
.hf_c00306{height:52.960400pt;}
.he_c00306{height:52.992667pt;}
.h8_c00306{height:53.600000pt;}
.h5_c00306{height:53.758800pt;}
.h9_c00306{height:53.759867pt;}
.ha_c00306{height:53.791200pt;}
.hc_c00306{height:53.792667pt;}
.hb_c00306{height:65.920267pt;}
.h3_c00306{height:76.191733pt;}
.h7_c00306{height:404.185333pt;}
.h0_c00306{height:1122.559867pt;}
.h1_c00306{height:1122.666667pt;}
.w3_c00306{width:93.439600pt;}
.w4_c00306{width:133.312533pt;}
.w6_c00306{width:227.385333pt;}
.w5_c00306{width:392.706667pt;}
.w7_c00306{width:393.026667pt;}
.w2_c00306{width:620.733333pt;}
.w0_c00306{width:793.759733pt;}
.w1_c00306{width:794.000000pt;}
.x0_c00306{left:0.000000pt;}
.x4_c00306{left:4.319867pt;}
.x2_c00306{left:128.032800pt;}
.x1_c00306{left:132.352667pt;}
.x8_c00306{left:174.915200pt;}
.x3_c00306{left:179.555200pt;}
.x7_c00306{left:196.346667pt;}
.x5_c00306{left:222.106667pt;}
.x6_c00306{left:356.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_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_b4afbce4f73be568c8a71d8a.woff2')format("woff");}.ff1_c00307{font-family:ff1_c00307;line-height:0.666504;font-style:normal;font-weight:normal;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_e317097b370989181f3ca79e.woff2')format("woff");}.ff2_c00307{font-family:ff2_c00307;line-height:0.938965;font-style:normal;font-weight:normal;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_1c84e557915e5449690ed554.woff2')format("woff");}.ff3_c00307{font-family:ff3_c00307;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00307;src:url('chunks/assets/font_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff4_c00307{font-family:ff4_c00307;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00307{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00307{vertical-align:0.000000px;}
.ls1_c00307{letter-spacing:0.000000px;}
.ls0_c00307{letter-spacing:0.217313px;}
.sc__c00307{text-shadow:none;}
.sc0_c00307{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00307{-webkit-text-stroke:0px transparent;}
.sc0_c00307{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00307{word-spacing:-15.012033px;}
.ws1_c00307{word-spacing:0.000000px;}
._2_c00307{margin-left:-1.234280px;}
._3_c00307{width:1.192386px;}
._1_c00307{width:997.561968px;}
._0_c00307{width:1345.983552px;}
.fc0_c00307{color:rgb(0,0,0);}
.fs1_c00307{font-size:54.000120px;}
.fs0_c00307{font-size:66.240000px;}
.y0_c00307{bottom:0.000000px;}
.y18_c00307{bottom:17.640000px;}
.y1b_c00307{bottom:17.641500px;}
.yf_c00307{bottom:24.481650px;}
.y21_c00307{bottom:25.019550px;}
.y1e_c00307{bottom:25.020000px;}
.yb_c00307{bottom:25.198500px;}
.y16_c00307{bottom:25.201500px;}
.y5_c00307{bottom:25.380000px;}
.y13_c00307{bottom:25.381500px;}
.y7_c00307{bottom:28.440000px;}
.y11_c00307{bottom:32.220000px;}
.y10_c00307{bottom:32.221500px;}
.y3_c00307{bottom:36.930000px;}
.ye_c00307{bottom:39.961500px;}
.y1_c00307{bottom:56.556450px;}
.y22_c00307{bottom:93.456450px;}
.y20_c00307{bottom:109.836900px;}
.y1f_c00307{bottom:170.130000px;}
.y1d_c00307{bottom:230.430000px;}
.y1c_c00307{bottom:290.775000px;}
.y1a_c00307{bottom:336.495000px;}
.y19_c00307{bottom:382.216500px;}
.y17_c00307{bottom:428.116500px;}
.y15_c00307{bottom:473.835000px;}
.y14_c00307{bottom:534.855000px;}
.y12_c00307{bottom:596.083500px;}
.y6_c00307{bottom:657.105000px;}
.yd_c00307{bottom:731.983500px;}
.yc_c00307{bottom:806.865000px;}
.ya_c00307{bottom:868.111500px;}
.y9_c00307{bottom:929.131500px;}
.y8_c00307{bottom:990.331500px;}
.y4_c00307{bottom:1051.351500px;}
.y2_c00307{bottom:1112.551500px;}
.h6_c00307{height:39.339931px;}
.hd_c00307{height:45.000000px;}
.h4_c00307{height:48.224531px;}
.h2_c00307{height:48.256875px;}
.h10_c00307{height:59.579850px;}
.hf_c00307{height:59.580450px;}
.he_c00307{height:59.616750px;}
.h8_c00307{height:60.300000px;}
.h5_c00307{height:60.478650px;}
.h9_c00307{height:60.479850px;}
.ha_c00307{height:60.515100px;}
.hc_c00307{height:60.516750px;}
.hb_c00307{height:74.160300px;}
.h3_c00307{height:85.715700px;}
.h7_c00307{height:454.708500px;}
.h0_c00307{height:1262.879850px;}
.h1_c00307{height:1263.000000px;}
.w3_c00307{width:105.119550px;}
.w4_c00307{width:149.976600px;}
.w6_c00307{width:255.808500px;}
.w5_c00307{width:441.795000px;}
.w7_c00307{width:442.155000px;}
.w2_c00307{width:698.325000px;}
.w0_c00307{width:892.979700px;}
.w1_c00307{width:893.250000px;}
.x0_c00307{left:0.000000px;}
.x4_c00307{left:4.859850px;}
.x2_c00307{left:144.036900px;}
.x1_c00307{left:148.896750px;}
.x8_c00307{left:196.779600px;}
.x3_c00307{left:201.999600px;}
.x7_c00307{left:220.890000px;}
.x5_c00307{left:249.870000px;}
.x6_c00307{left:400.575000px;}
@media print{
.v0_c00307{vertical-align:0.000000pt;}
.ls1_c00307{letter-spacing:0.000000pt;}
.ls0_c00307{letter-spacing:0.193167pt;}
.ws0_c00307{word-spacing:-13.344030pt;}
.ws1_c00307{word-spacing:0.000000pt;}
._2_c00307{margin-left:-1.097138pt;}
._3_c00307{width:1.059899pt;}
._1_c00307{width:886.721749pt;}
._0_c00307{width:1196.429824pt;}
.fs1_c00307{font-size:48.000107pt;}
.fs0_c00307{font-size:58.880000pt;}
.y0_c00307{bottom:0.000000pt;}
.y18_c00307{bottom:15.680000pt;}
.y1b_c00307{bottom:15.681333pt;}
.yf_c00307{bottom:21.761467pt;}
.y21_c00307{bottom:22.239600pt;}
.y1e_c00307{bottom:22.240000pt;}
.yb_c00307{bottom:22.398667pt;}
.y16_c00307{bottom:22.401333pt;}
.y5_c00307{bottom:22.560000pt;}
.y13_c00307{bottom:22.561333pt;}
.y7_c00307{bottom:25.280000pt;}
.y11_c00307{bottom:28.640000pt;}
.y10_c00307{bottom:28.641333pt;}
.y3_c00307{bottom:32.826667pt;}
.ye_c00307{bottom:35.521333pt;}
.y1_c00307{bottom:50.272400pt;}
.y22_c00307{bottom:83.072400pt;}
.y20_c00307{bottom:97.632800pt;}
.y1f_c00307{bottom:151.226667pt;}
.y1d_c00307{bottom:204.826667pt;}
.y1c_c00307{bottom:258.466667pt;}
.y1a_c00307{bottom:299.106667pt;}
.y19_c00307{bottom:339.748000pt;}
.y17_c00307{bottom:380.548000pt;}
.y15_c00307{bottom:421.186667pt;}
.y14_c00307{bottom:475.426667pt;}
.y12_c00307{bottom:529.852000pt;}
.y6_c00307{bottom:584.093333pt;}
.yd_c00307{bottom:650.652000pt;}
.yc_c00307{bottom:717.213333pt;}
.ya_c00307{bottom:771.654667pt;}
.y9_c00307{bottom:825.894667pt;}
.y8_c00307{bottom:880.294667pt;}
.y4_c00307{bottom:934.534667pt;}
.y2_c00307{bottom:988.934667pt;}
.h6_c00307{height:34.968828pt;}
.hd_c00307{height:40.000000pt;}
.h4_c00307{height:42.866250pt;}
.h2_c00307{height:42.895000pt;}
.h10_c00307{height:52.959867pt;}
.hf_c00307{height:52.960400pt;}
.he_c00307{height:52.992667pt;}
.h8_c00307{height:53.600000pt;}
.h5_c00307{height:53.758800pt;}
.h9_c00307{height:53.759867pt;}
.ha_c00307{height:53.791200pt;}
.hc_c00307{height:53.792667pt;}
.hb_c00307{height:65.920267pt;}
.h3_c00307{height:76.191733pt;}
.h7_c00307{height:404.185333pt;}
.h0_c00307{height:1122.559867pt;}
.h1_c00307{height:1122.666667pt;}
.w3_c00307{width:93.439600pt;}
.w4_c00307{width:133.312533pt;}
.w6_c00307{width:227.385333pt;}
.w5_c00307{width:392.706667pt;}
.w7_c00307{width:393.026667pt;}
.w2_c00307{width:620.733333pt;}
.w0_c00307{width:793.759733pt;}
.w1_c00307{width:794.000000pt;}
.x0_c00307{left:0.000000pt;}
.x4_c00307{left:4.319867pt;}
.x2_c00307{left:128.032800pt;}
.x1_c00307{left:132.352667pt;}
.x8_c00307{left:174.915200pt;}
.x3_c00307{left:179.555200pt;}
.x7_c00307{left:196.346667pt;}
.x5_c00307{left:222.106667pt;}
.x6_c00307{left:356.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_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_b4afbce4f73be568c8a71d8a.woff2')format("woff");}.ff1_c00308{font-family:ff1_c00308;line-height:0.666504;font-style:normal;font-weight:normal;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_045b1a02d41893a865acd1fe.woff2')format("woff");}.ff2_c00308{font-family:ff2_c00308;line-height:0.938965;font-style:normal;font-weight:normal;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_1c84e557915e5449690ed554.woff2')format("woff");}.ff3_c00308{font-family:ff3_c00308;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00308;src:url('chunks/assets/font_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff4_c00308{font-family:ff4_c00308;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00308{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00308{vertical-align:0.000000px;}
.ls2_c00308{letter-spacing:0.000000px;}
.ls0_c00308{letter-spacing:0.214966px;}
.ls1_c00308{letter-spacing:0.217313px;}
.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:-15.012033px;}
.ws1_c00308{word-spacing:0.000000px;}
._2_c00308{margin-left:-1.234280px;}
._3_c00308{width:1.110640px;}
._1_c00308{width:997.561968px;}
._0_c00308{width:1345.983552px;}
.fc0_c00308{color:rgb(0,0,0);}
.fs1_c00308{font-size:54.000120px;}
.fs0_c00308{font-size:66.240000px;}
.y0_c00308{bottom:0.000000px;}
.yd_c00308{bottom:17.458800px;}
.y1a_c00308{bottom:17.640000px;}
.y1d_c00308{bottom:17.641500px;}
.y11_c00308{bottom:24.481650px;}
.y23_c00308{bottom:25.019550px;}
.y20_c00308{bottom:25.020000px;}
.yb_c00308{bottom:25.198500px;}
.y18_c00308{bottom:25.201500px;}
.y5_c00308{bottom:25.380000px;}
.y15_c00308{bottom:25.381500px;}
.y7_c00308{bottom:28.440000px;}
.y13_c00308{bottom:32.220000px;}
.y12_c00308{bottom:32.221500px;}
.yc_c00308{bottom:33.118500px;}
.y3_c00308{bottom:36.930000px;}
.y10_c00308{bottom:39.961500px;}
.y1_c00308{bottom:56.556450px;}
.y24_c00308{bottom:93.456450px;}
.y22_c00308{bottom:109.836900px;}
.y21_c00308{bottom:170.130000px;}
.y1f_c00308{bottom:230.430000px;}
.y1e_c00308{bottom:290.775000px;}
.y1c_c00308{bottom:336.495000px;}
.y1b_c00308{bottom:382.216500px;}
.y19_c00308{bottom:428.116500px;}
.y17_c00308{bottom:473.835000px;}
.y16_c00308{bottom:534.855000px;}
.y14_c00308{bottom:596.083500px;}
.y6_c00308{bottom:657.105000px;}
.yf_c00308{bottom:731.983500px;}
.ye_c00308{bottom:806.865000px;}
.ya_c00308{bottom:868.111500px;}
.y9_c00308{bottom:929.131500px;}
.y8_c00308{bottom:990.331500px;}
.y4_c00308{bottom:1051.351500px;}
.y2_c00308{bottom:1112.551500px;}
.h6_c00308{height:39.339931px;}
.hd_c00308{height:45.000000px;}
.h4_c00308{height:48.224531px;}
.h2_c00308{height:48.256875px;}
.h10_c00308{height:59.579850px;}
.hf_c00308{height:59.580450px;}
.he_c00308{height:59.616750px;}
.h8_c00308{height:60.300000px;}
.h5_c00308{height:60.478650px;}
.h9_c00308{height:60.479850px;}
.ha_c00308{height:60.515100px;}
.hc_c00308{height:60.516750px;}
.hb_c00308{height:74.160300px;}
.h3_c00308{height:85.715700px;}
.h7_c00308{height:454.708500px;}
.h0_c00308{height:1262.879850px;}
.h1_c00308{height:1263.000000px;}
.w3_c00308{width:105.119550px;}
.w4_c00308{width:149.976600px;}
.w6_c00308{width:255.808500px;}
.w5_c00308{width:441.795000px;}
.w7_c00308{width:442.155000px;}
.w2_c00308{width:698.325000px;}
.w0_c00308{width:892.979700px;}
.w1_c00308{width:893.250000px;}
.x0_c00308{left:0.000000px;}
.x4_c00308{left:4.859850px;}
.x2_c00308{left:144.036900px;}
.x1_c00308{left:148.896750px;}
.x7_c00308{left:196.779600px;}
.x3_c00308{left:201.999600px;}
.x5_c00308{left:249.870000px;}
.x6_c00308{left:400.575000px;}
@media print{
.v0_c00308{vertical-align:0.000000pt;}
.ls2_c00308{letter-spacing:0.000000pt;}
.ls0_c00308{letter-spacing:0.191081pt;}
.ls1_c00308{letter-spacing:0.193167pt;}
.ws0_c00308{word-spacing:-13.344030pt;}
.ws1_c00308{word-spacing:0.000000pt;}
._2_c00308{margin-left:-1.097138pt;}
._3_c00308{width:0.987236pt;}
._1_c00308{width:886.721749pt;}
._0_c00308{width:1196.429824pt;}
.fs1_c00308{font-size:48.000107pt;}
.fs0_c00308{font-size:58.880000pt;}
.y0_c00308{bottom:0.000000pt;}
.yd_c00308{bottom:15.518933pt;}
.y1a_c00308{bottom:15.680000pt;}
.y1d_c00308{bottom:15.681333pt;}
.y11_c00308{bottom:21.761467pt;}
.y23_c00308{bottom:22.239600pt;}
.y20_c00308{bottom:22.240000pt;}
.yb_c00308{bottom:22.398667pt;}
.y18_c00308{bottom:22.401333pt;}
.y5_c00308{bottom:22.560000pt;}
.y15_c00308{bottom:22.561333pt;}
.y7_c00308{bottom:25.280000pt;}
.y13_c00308{bottom:28.640000pt;}
.y12_c00308{bottom:28.641333pt;}
.yc_c00308{bottom:29.438667pt;}
.y3_c00308{bottom:32.826667pt;}
.y10_c00308{bottom:35.521333pt;}
.y1_c00308{bottom:50.272400pt;}
.y24_c00308{bottom:83.072400pt;}
.y22_c00308{bottom:97.632800pt;}
.y21_c00308{bottom:151.226667pt;}
.y1f_c00308{bottom:204.826667pt;}
.y1e_c00308{bottom:258.466667pt;}
.y1c_c00308{bottom:299.106667pt;}
.y1b_c00308{bottom:339.748000pt;}
.y19_c00308{bottom:380.548000pt;}
.y17_c00308{bottom:421.186667pt;}
.y16_c00308{bottom:475.426667pt;}
.y14_c00308{bottom:529.852000pt;}
.y6_c00308{bottom:584.093333pt;}
.yf_c00308{bottom:650.652000pt;}
.ye_c00308{bottom:717.213333pt;}
.ya_c00308{bottom:771.654667pt;}
.y9_c00308{bottom:825.894667pt;}
.y8_c00308{bottom:880.294667pt;}
.y4_c00308{bottom:934.534667pt;}
.y2_c00308{bottom:988.934667pt;}
.h6_c00308{height:34.968828pt;}
.hd_c00308{height:40.000000pt;}
.h4_c00308{height:42.866250pt;}
.h2_c00308{height:42.895000pt;}
.h10_c00308{height:52.959867pt;}
.hf_c00308{height:52.960400pt;}
.he_c00308{height:52.992667pt;}
.h8_c00308{height:53.600000pt;}
.h5_c00308{height:53.758800pt;}
.h9_c00308{height:53.759867pt;}
.ha_c00308{height:53.791200pt;}
.hc_c00308{height:53.792667pt;}
.hb_c00308{height:65.920267pt;}
.h3_c00308{height:76.191733pt;}
.h7_c00308{height:404.185333pt;}
.h0_c00308{height:1122.559867pt;}
.h1_c00308{height:1122.666667pt;}
.w3_c00308{width:93.439600pt;}
.w4_c00308{width:133.312533pt;}
.w6_c00308{width:227.385333pt;}
.w5_c00308{width:392.706667pt;}
.w7_c00308{width:393.026667pt;}
.w2_c00308{width:620.733333pt;}
.w0_c00308{width:793.759733pt;}
.w1_c00308{width:794.000000pt;}
.x0_c00308{left:0.000000pt;}
.x4_c00308{left:4.319867pt;}
.x2_c00308{left:128.032800pt;}
.x1_c00308{left:132.352667pt;}
.x7_c00308{left:174.915200pt;}
.x3_c00308{left:179.555200pt;}
.x5_c00308{left:222.106667pt;}
.x6_c00308{left:356.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_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_b4afbce4f73be568c8a71d8a.woff2')format("woff");}.ff1_c00309{font-family:ff1_c00309;line-height:0.666504;font-style:normal;font-weight:normal;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_795a0063f1dd70ee9a24b2ab.woff2')format("woff");}.ff2_c00309{font-family:ff2_c00309;line-height:0.938965;font-style:normal;font-weight:normal;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_1c84e557915e5449690ed554.woff2')format("woff");}.ff3_c00309{font-family:ff3_c00309;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00309;src:url('chunks/assets/font_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff4_c00309{font-family:ff4_c00309;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00309{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00309{vertical-align:0.000000px;}
.ls2_c00309{letter-spacing:0.000000px;}
.ls0_c00309{letter-spacing:0.214966px;}
.ls1_c00309{letter-spacing:0.217313px;}
.sc__c00309{text-shadow:none;}
.sc0_c00309{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00309{-webkit-text-stroke:0px transparent;}
.sc0_c00309{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00309{word-spacing:-15.012033px;}
.ws1_c00309{word-spacing:0.000000px;}
._2_c00309{margin-left:-1.234280px;}
._3_c00309{width:1.110640px;}
._1_c00309{width:997.561968px;}
._0_c00309{width:1345.983552px;}
.fc0_c00309{color:rgb(0,0,0);}
.fs1_c00309{font-size:54.000120px;}
.fs0_c00309{font-size:66.240000px;}
.y0_c00309{bottom:0.000000px;}
.yd_c00309{bottom:17.458800px;}
.y1a_c00309{bottom:17.640000px;}
.y1d_c00309{bottom:17.641500px;}
.y11_c00309{bottom:24.481650px;}
.y23_c00309{bottom:25.019550px;}
.y20_c00309{bottom:25.020000px;}
.yb_c00309{bottom:25.198500px;}
.y18_c00309{bottom:25.201500px;}
.y5_c00309{bottom:25.380000px;}
.y15_c00309{bottom:25.381500px;}
.y13_c00309{bottom:32.220000px;}
.y12_c00309{bottom:32.221500px;}
.yc_c00309{bottom:33.118500px;}
.y3_c00309{bottom:36.930000px;}
.y10_c00309{bottom:39.961500px;}
.y7_c00309{bottom:51.840000px;}
.y1_c00309{bottom:56.556450px;}
.y24_c00309{bottom:93.456450px;}
.y22_c00309{bottom:109.836900px;}
.y21_c00309{bottom:170.130000px;}
.y1f_c00309{bottom:230.430000px;}
.y1e_c00309{bottom:290.775000px;}
.y1c_c00309{bottom:336.495000px;}
.y1b_c00309{bottom:382.216500px;}
.y19_c00309{bottom:428.116500px;}
.y17_c00309{bottom:473.835000px;}
.y16_c00309{bottom:534.855000px;}
.y14_c00309{bottom:596.083500px;}
.y6_c00309{bottom:657.105000px;}
.yf_c00309{bottom:731.983500px;}
.ye_c00309{bottom:806.865000px;}
.ya_c00309{bottom:868.111500px;}
.y9_c00309{bottom:929.131500px;}
.y8_c00309{bottom:990.331500px;}
.y4_c00309{bottom:1051.351500px;}
.y2_c00309{bottom:1112.551500px;}
.h6_c00309{height:39.339931px;}
.hd_c00309{height:45.000000px;}
.h4_c00309{height:48.224531px;}
.h2_c00309{height:48.256875px;}
.h10_c00309{height:59.579850px;}
.hf_c00309{height:59.580450px;}
.he_c00309{height:59.616750px;}
.h8_c00309{height:60.300000px;}
.h5_c00309{height:60.478650px;}
.h9_c00309{height:60.479850px;}
.ha_c00309{height:60.515100px;}
.hc_c00309{height:60.516750px;}
.hb_c00309{height:74.160300px;}
.h3_c00309{height:85.715700px;}
.h7_c00309{height:454.708500px;}
.h0_c00309{height:1262.879850px;}
.h1_c00309{height:1263.000000px;}
.w3_c00309{width:105.119550px;}
.w4_c00309{width:149.976600px;}
.w6_c00309{width:255.808500px;}
.w5_c00309{width:441.795000px;}
.w7_c00309{width:442.155000px;}
.w2_c00309{width:698.325000px;}
.w0_c00309{width:892.979700px;}
.w1_c00309{width:893.250000px;}
.x0_c00309{left:0.000000px;}
.x4_c00309{left:4.859850px;}
.x2_c00309{left:144.036900px;}
.x1_c00309{left:148.896750px;}
.x7_c00309{left:196.779600px;}
.x3_c00309{left:201.999600px;}
.x5_c00309{left:249.870000px;}
.x6_c00309{left:400.575000px;}
@media print{
.v0_c00309{vertical-align:0.000000pt;}
.ls2_c00309{letter-spacing:0.000000pt;}
.ls0_c00309{letter-spacing:0.191081pt;}
.ls1_c00309{letter-spacing:0.193167pt;}
.ws0_c00309{word-spacing:-13.344030pt;}
.ws1_c00309{word-spacing:0.000000pt;}
._2_c00309{margin-left:-1.097138pt;}
._3_c00309{width:0.987236pt;}
._1_c00309{width:886.721749pt;}
._0_c00309{width:1196.429824pt;}
.fs1_c00309{font-size:48.000107pt;}
.fs0_c00309{font-size:58.880000pt;}
.y0_c00309{bottom:0.000000pt;}
.yd_c00309{bottom:15.518933pt;}
.y1a_c00309{bottom:15.680000pt;}
.y1d_c00309{bottom:15.681333pt;}
.y11_c00309{bottom:21.761467pt;}
.y23_c00309{bottom:22.239600pt;}
.y20_c00309{bottom:22.240000pt;}
.yb_c00309{bottom:22.398667pt;}
.y18_c00309{bottom:22.401333pt;}
.y5_c00309{bottom:22.560000pt;}
.y15_c00309{bottom:22.561333pt;}
.y13_c00309{bottom:28.640000pt;}
.y12_c00309{bottom:28.641333pt;}
.yc_c00309{bottom:29.438667pt;}
.y3_c00309{bottom:32.826667pt;}
.y10_c00309{bottom:35.521333pt;}
.y7_c00309{bottom:46.080000pt;}
.y1_c00309{bottom:50.272400pt;}
.y24_c00309{bottom:83.072400pt;}
.y22_c00309{bottom:97.632800pt;}
.y21_c00309{bottom:151.226667pt;}
.y1f_c00309{bottom:204.826667pt;}
.y1e_c00309{bottom:258.466667pt;}
.y1c_c00309{bottom:299.106667pt;}
.y1b_c00309{bottom:339.748000pt;}
.y19_c00309{bottom:380.548000pt;}
.y17_c00309{bottom:421.186667pt;}
.y16_c00309{bottom:475.426667pt;}
.y14_c00309{bottom:529.852000pt;}
.y6_c00309{bottom:584.093333pt;}
.yf_c00309{bottom:650.652000pt;}
.ye_c00309{bottom:717.213333pt;}
.ya_c00309{bottom:771.654667pt;}
.y9_c00309{bottom:825.894667pt;}
.y8_c00309{bottom:880.294667pt;}
.y4_c00309{bottom:934.534667pt;}
.y2_c00309{bottom:988.934667pt;}
.h6_c00309{height:34.968828pt;}
.hd_c00309{height:40.000000pt;}
.h4_c00309{height:42.866250pt;}
.h2_c00309{height:42.895000pt;}
.h10_c00309{height:52.959867pt;}
.hf_c00309{height:52.960400pt;}
.he_c00309{height:52.992667pt;}
.h8_c00309{height:53.600000pt;}
.h5_c00309{height:53.758800pt;}
.h9_c00309{height:53.759867pt;}
.ha_c00309{height:53.791200pt;}
.hc_c00309{height:53.792667pt;}
.hb_c00309{height:65.920267pt;}
.h3_c00309{height:76.191733pt;}
.h7_c00309{height:404.185333pt;}
.h0_c00309{height:1122.559867pt;}
.h1_c00309{height:1122.666667pt;}
.w3_c00309{width:93.439600pt;}
.w4_c00309{width:133.312533pt;}
.w6_c00309{width:227.385333pt;}
.w5_c00309{width:392.706667pt;}
.w7_c00309{width:393.026667pt;}
.w2_c00309{width:620.733333pt;}
.w0_c00309{width:793.759733pt;}
.w1_c00309{width:794.000000pt;}
.x0_c00309{left:0.000000pt;}
.x4_c00309{left:4.319867pt;}
.x2_c00309{left:128.032800pt;}
.x1_c00309{left:132.352667pt;}
.x7_c00309{left:174.915200pt;}
.x3_c00309{left:179.555200pt;}
.x5_c00309{left:222.106667pt;}
.x6_c00309{left:356.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_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_b4afbce4f73be568c8a71d8a.woff2')format("woff");}.ff1_c00310{font-family:ff1_c00310;line-height:0.666504;font-style:normal;font-weight:normal;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_16418759dcd326390dff1907.woff2')format("woff");}.ff2_c00310{font-family:ff2_c00310;line-height:0.938965;font-style:normal;font-weight:normal;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_1c84e557915e5449690ed554.woff2')format("woff");}.ff3_c00310{font-family:ff3_c00310;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00310;src:url('chunks/assets/font_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff4_c00310{font-family:ff4_c00310;line-height:0.666504;font-style: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;}
.ls2_c00310{letter-spacing:0.000000px;}
.ls0_c00310{letter-spacing:0.214966px;}
.ls1_c00310{letter-spacing:0.217313px;}
.sc__c00310{text-shadow:none;}
.sc0_c00310{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00310{-webkit-text-stroke:0px transparent;}
.sc0_c00310{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00310{word-spacing:-15.012033px;}
.ws1_c00310{word-spacing:0.000000px;}
._2_c00310{margin-left:-1.234280px;}
._3_c00310{width:1.110640px;}
._1_c00310{width:997.561968px;}
._0_c00310{width:1345.983552px;}
.fc0_c00310{color:rgb(0,0,0);}
.fs1_c00310{font-size:54.000120px;}
.fs0_c00310{font-size:66.240000px;}
.y0_c00310{bottom:0.000000px;}
.yd_c00310{bottom:17.458800px;}
.y1a_c00310{bottom:17.640000px;}
.y1d_c00310{bottom:17.641500px;}
.y11_c00310{bottom:24.481650px;}
.y23_c00310{bottom:25.019550px;}
.y20_c00310{bottom:25.020000px;}
.yb_c00310{bottom:25.198500px;}
.y18_c00310{bottom:25.201500px;}
.y5_c00310{bottom:25.380000px;}
.y15_c00310{bottom:25.381500px;}
.y13_c00310{bottom:32.220000px;}
.y12_c00310{bottom:32.221500px;}
.yc_c00310{bottom:33.118500px;}
.y7_c00310{bottom:36.180000px;}
.y3_c00310{bottom:36.930000px;}
.y10_c00310{bottom:39.961500px;}
.y1_c00310{bottom:56.556450px;}
.y24_c00310{bottom:93.456450px;}
.y22_c00310{bottom:109.836900px;}
.y21_c00310{bottom:170.130000px;}
.y1f_c00310{bottom:230.430000px;}
.y1e_c00310{bottom:290.775000px;}
.y1c_c00310{bottom:336.495000px;}
.y1b_c00310{bottom:382.216500px;}
.y19_c00310{bottom:428.116500px;}
.y17_c00310{bottom:473.835000px;}
.y16_c00310{bottom:534.855000px;}
.y14_c00310{bottom:596.083500px;}
.y6_c00310{bottom:657.105000px;}
.yf_c00310{bottom:731.983500px;}
.ye_c00310{bottom:806.865000px;}
.ya_c00310{bottom:868.111500px;}
.y9_c00310{bottom:929.131500px;}
.y8_c00310{bottom:990.331500px;}
.y4_c00310{bottom:1051.351500px;}
.y2_c00310{bottom:1112.551500px;}
.h6_c00310{height:39.339931px;}
.hd_c00310{height:45.000000px;}
.h4_c00310{height:48.224531px;}
.h2_c00310{height:48.256875px;}
.h10_c00310{height:59.579850px;}
.hf_c00310{height:59.580450px;}
.he_c00310{height:59.616750px;}
.h8_c00310{height:60.300000px;}
.h5_c00310{height:60.478650px;}
.h9_c00310{height:60.479850px;}
.ha_c00310{height:60.515100px;}
.hc_c00310{height:60.516750px;}
.hb_c00310{height:74.160300px;}
.h3_c00310{height:85.715700px;}
.h7_c00310{height:454.708500px;}
.h0_c00310{height:1262.879850px;}
.h1_c00310{height:1263.000000px;}
.w3_c00310{width:105.119550px;}
.w4_c00310{width:149.976600px;}
.w6_c00310{width:255.808500px;}
.w5_c00310{width:441.795000px;}
.w7_c00310{width:442.155000px;}
.w2_c00310{width:698.325000px;}
.w0_c00310{width:892.979700px;}
.w1_c00310{width:893.250000px;}
.x0_c00310{left:0.000000px;}
.x4_c00310{left:4.859850px;}
.x2_c00310{left:144.036900px;}
.x1_c00310{left:148.896750px;}
.x7_c00310{left:196.779600px;}
.x3_c00310{left:201.999600px;}
.x5_c00310{left:249.870000px;}
.x6_c00310{left:400.575000px;}
@media print{
.v0_c00310{vertical-align:0.000000pt;}
.ls2_c00310{letter-spacing:0.000000pt;}
.ls0_c00310{letter-spacing:0.191081pt;}
.ls1_c00310{letter-spacing:0.193167pt;}
.ws0_c00310{word-spacing:-13.344030pt;}
.ws1_c00310{word-spacing:0.000000pt;}
._2_c00310{margin-left:-1.097138pt;}
._3_c00310{width:0.987236pt;}
._1_c00310{width:886.721749pt;}
._0_c00310{width:1196.429824pt;}
.fs1_c00310{font-size:48.000107pt;}
.fs0_c00310{font-size:58.880000pt;}
.y0_c00310{bottom:0.000000pt;}
.yd_c00310{bottom:15.518933pt;}
.y1a_c00310{bottom:15.680000pt;}
.y1d_c00310{bottom:15.681333pt;}
.y11_c00310{bottom:21.761467pt;}
.y23_c00310{bottom:22.239600pt;}
.y20_c00310{bottom:22.240000pt;}
.yb_c00310{bottom:22.398667pt;}
.y18_c00310{bottom:22.401333pt;}
.y5_c00310{bottom:22.560000pt;}
.y15_c00310{bottom:22.561333pt;}
.y13_c00310{bottom:28.640000pt;}
.y12_c00310{bottom:28.641333pt;}
.yc_c00310{bottom:29.438667pt;}
.y7_c00310{bottom:32.160000pt;}
.y3_c00310{bottom:32.826667pt;}
.y10_c00310{bottom:35.521333pt;}
.y1_c00310{bottom:50.272400pt;}
.y24_c00310{bottom:83.072400pt;}
.y22_c00310{bottom:97.632800pt;}
.y21_c00310{bottom:151.226667pt;}
.y1f_c00310{bottom:204.826667pt;}
.y1e_c00310{bottom:258.466667pt;}
.y1c_c00310{bottom:299.106667pt;}
.y1b_c00310{bottom:339.748000pt;}
.y19_c00310{bottom:380.548000pt;}
.y17_c00310{bottom:421.186667pt;}
.y16_c00310{bottom:475.426667pt;}
.y14_c00310{bottom:529.852000pt;}
.y6_c00310{bottom:584.093333pt;}
.yf_c00310{bottom:650.652000pt;}
.ye_c00310{bottom:717.213333pt;}
.ya_c00310{bottom:771.654667pt;}
.y9_c00310{bottom:825.894667pt;}
.y8_c00310{bottom:880.294667pt;}
.y4_c00310{bottom:934.534667pt;}
.y2_c00310{bottom:988.934667pt;}
.h6_c00310{height:34.968828pt;}
.hd_c00310{height:40.000000pt;}
.h4_c00310{height:42.866250pt;}
.h2_c00310{height:42.895000pt;}
.h10_c00310{height:52.959867pt;}
.hf_c00310{height:52.960400pt;}
.he_c00310{height:52.992667pt;}
.h8_c00310{height:53.600000pt;}
.h5_c00310{height:53.758800pt;}
.h9_c00310{height:53.759867pt;}
.ha_c00310{height:53.791200pt;}
.hc_c00310{height:53.792667pt;}
.hb_c00310{height:65.920267pt;}
.h3_c00310{height:76.191733pt;}
.h7_c00310{height:404.185333pt;}
.h0_c00310{height:1122.559867pt;}
.h1_c00310{height:1122.666667pt;}
.w3_c00310{width:93.439600pt;}
.w4_c00310{width:133.312533pt;}
.w6_c00310{width:227.385333pt;}
.w5_c00310{width:392.706667pt;}
.w7_c00310{width:393.026667pt;}
.w2_c00310{width:620.733333pt;}
.w0_c00310{width:793.759733pt;}
.w1_c00310{width:794.000000pt;}
.x0_c00310{left:0.000000pt;}
.x4_c00310{left:4.319867pt;}
.x2_c00310{left:128.032800pt;}
.x1_c00310{left:132.352667pt;}
.x7_c00310{left:174.915200pt;}
.x3_c00310{left:179.555200pt;}
.x5_c00310{left:222.106667pt;}
.x6_c00310{left:356.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_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_b4afbce4f73be568c8a71d8a.woff2')format("woff");}.ff1_c00311{font-family:ff1_c00311;line-height:0.666504;font-style:normal;font-weight:normal;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_88e6cd11851ab1e068743ab8.woff2')format("woff");}.ff2_c00311{font-family:ff2_c00311;line-height:0.938965;font-style:normal;font-weight:normal;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_1c84e557915e5449690ed554.woff2')format("woff");}.ff3_c00311{font-family:ff3_c00311;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00311;src:url('chunks/assets/font_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff4_c00311{font-family:ff4_c00311;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00311{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00311{vertical-align:0.000000px;}
.ls2_c00311{letter-spacing:0.000000px;}
.ls0_c00311{letter-spacing:0.214966px;}
.ls1_c00311{letter-spacing:0.217313px;}
.sc__c00311{text-shadow:none;}
.sc0_c00311{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00311{-webkit-text-stroke:0px transparent;}
.sc0_c00311{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00311{word-spacing:-15.012033px;}
.ws1_c00311{word-spacing:0.000000px;}
._2_c00311{margin-left:-1.234280px;}
._3_c00311{width:1.110640px;}
._1_c00311{width:997.561968px;}
._0_c00311{width:1345.983552px;}
.fc0_c00311{color:rgb(0,0,0);}
.fs1_c00311{font-size:54.000120px;}
.fs0_c00311{font-size:66.240000px;}
.y0_c00311{bottom:0.000000px;}
.yd_c00311{bottom:17.458800px;}
.y1a_c00311{bottom:17.640000px;}
.y1d_c00311{bottom:17.641500px;}
.y11_c00311{bottom:24.481650px;}
.y23_c00311{bottom:25.019550px;}
.y20_c00311{bottom:25.020000px;}
.yb_c00311{bottom:25.198500px;}
.y18_c00311{bottom:25.201500px;}
.y5_c00311{bottom:25.380000px;}
.y15_c00311{bottom:25.381500px;}
.y13_c00311{bottom:32.220000px;}
.y12_c00311{bottom:32.221500px;}
.yc_c00311{bottom:33.118500px;}
.y3_c00311{bottom:36.930000px;}
.y10_c00311{bottom:39.961500px;}
.y7_c00311{bottom:51.840000px;}
.y1_c00311{bottom:56.556450px;}
.y24_c00311{bottom:93.456450px;}
.y22_c00311{bottom:109.836900px;}
.y21_c00311{bottom:170.130000px;}
.y1f_c00311{bottom:230.430000px;}
.y1e_c00311{bottom:290.775000px;}
.y1c_c00311{bottom:336.495000px;}
.y1b_c00311{bottom:382.216500px;}
.y19_c00311{bottom:428.116500px;}
.y17_c00311{bottom:473.835000px;}
.y16_c00311{bottom:534.855000px;}
.y14_c00311{bottom:596.083500px;}
.y6_c00311{bottom:657.105000px;}
.yf_c00311{bottom:731.983500px;}
.ye_c00311{bottom:806.865000px;}
.ya_c00311{bottom:868.111500px;}
.y9_c00311{bottom:929.131500px;}
.y8_c00311{bottom:990.331500px;}
.y4_c00311{bottom:1051.351500px;}
.y2_c00311{bottom:1112.551500px;}
.h6_c00311{height:39.339931px;}
.hd_c00311{height:45.000000px;}
.h4_c00311{height:48.224531px;}
.h2_c00311{height:48.256875px;}
.h10_c00311{height:59.579850px;}
.hf_c00311{height:59.580450px;}
.he_c00311{height:59.616750px;}
.h8_c00311{height:60.300000px;}
.h5_c00311{height:60.478650px;}
.h9_c00311{height:60.479850px;}
.ha_c00311{height:60.515100px;}
.hc_c00311{height:60.516750px;}
.hb_c00311{height:74.160300px;}
.h3_c00311{height:85.715700px;}
.h7_c00311{height:454.708500px;}
.h0_c00311{height:1262.879850px;}
.h1_c00311{height:1263.000000px;}
.w3_c00311{width:105.119550px;}
.w4_c00311{width:149.976600px;}
.w6_c00311{width:255.808500px;}
.w5_c00311{width:441.795000px;}
.w7_c00311{width:442.155000px;}
.w2_c00311{width:698.325000px;}
.w0_c00311{width:892.979700px;}
.w1_c00311{width:893.250000px;}
.x0_c00311{left:0.000000px;}
.x4_c00311{left:4.859850px;}
.x2_c00311{left:144.036900px;}
.x1_c00311{left:148.896750px;}
.x7_c00311{left:196.779600px;}
.x3_c00311{left:201.999600px;}
.x5_c00311{left:249.870000px;}
.x6_c00311{left:400.575000px;}
@media print{
.v0_c00311{vertical-align:0.000000pt;}
.ls2_c00311{letter-spacing:0.000000pt;}
.ls0_c00311{letter-spacing:0.191081pt;}
.ls1_c00311{letter-spacing:0.193167pt;}
.ws0_c00311{word-spacing:-13.344030pt;}
.ws1_c00311{word-spacing:0.000000pt;}
._2_c00311{margin-left:-1.097138pt;}
._3_c00311{width:0.987236pt;}
._1_c00311{width:886.721749pt;}
._0_c00311{width:1196.429824pt;}
.fs1_c00311{font-size:48.000107pt;}
.fs0_c00311{font-size:58.880000pt;}
.y0_c00311{bottom:0.000000pt;}
.yd_c00311{bottom:15.518933pt;}
.y1a_c00311{bottom:15.680000pt;}
.y1d_c00311{bottom:15.681333pt;}
.y11_c00311{bottom:21.761467pt;}
.y23_c00311{bottom:22.239600pt;}
.y20_c00311{bottom:22.240000pt;}
.yb_c00311{bottom:22.398667pt;}
.y18_c00311{bottom:22.401333pt;}
.y5_c00311{bottom:22.560000pt;}
.y15_c00311{bottom:22.561333pt;}
.y13_c00311{bottom:28.640000pt;}
.y12_c00311{bottom:28.641333pt;}
.yc_c00311{bottom:29.438667pt;}
.y3_c00311{bottom:32.826667pt;}
.y10_c00311{bottom:35.521333pt;}
.y7_c00311{bottom:46.080000pt;}
.y1_c00311{bottom:50.272400pt;}
.y24_c00311{bottom:83.072400pt;}
.y22_c00311{bottom:97.632800pt;}
.y21_c00311{bottom:151.226667pt;}
.y1f_c00311{bottom:204.826667pt;}
.y1e_c00311{bottom:258.466667pt;}
.y1c_c00311{bottom:299.106667pt;}
.y1b_c00311{bottom:339.748000pt;}
.y19_c00311{bottom:380.548000pt;}
.y17_c00311{bottom:421.186667pt;}
.y16_c00311{bottom:475.426667pt;}
.y14_c00311{bottom:529.852000pt;}
.y6_c00311{bottom:584.093333pt;}
.yf_c00311{bottom:650.652000pt;}
.ye_c00311{bottom:717.213333pt;}
.ya_c00311{bottom:771.654667pt;}
.y9_c00311{bottom:825.894667pt;}
.y8_c00311{bottom:880.294667pt;}
.y4_c00311{bottom:934.534667pt;}
.y2_c00311{bottom:988.934667pt;}
.h6_c00311{height:34.968828pt;}
.hd_c00311{height:40.000000pt;}
.h4_c00311{height:42.866250pt;}
.h2_c00311{height:42.895000pt;}
.h10_c00311{height:52.959867pt;}
.hf_c00311{height:52.960400pt;}
.he_c00311{height:52.992667pt;}
.h8_c00311{height:53.600000pt;}
.h5_c00311{height:53.758800pt;}
.h9_c00311{height:53.759867pt;}
.ha_c00311{height:53.791200pt;}
.hc_c00311{height:53.792667pt;}
.hb_c00311{height:65.920267pt;}
.h3_c00311{height:76.191733pt;}
.h7_c00311{height:404.185333pt;}
.h0_c00311{height:1122.559867pt;}
.h1_c00311{height:1122.666667pt;}
.w3_c00311{width:93.439600pt;}
.w4_c00311{width:133.312533pt;}
.w6_c00311{width:227.385333pt;}
.w5_c00311{width:392.706667pt;}
.w7_c00311{width:393.026667pt;}
.w2_c00311{width:620.733333pt;}
.w0_c00311{width:793.759733pt;}
.w1_c00311{width:794.000000pt;}
.x0_c00311{left:0.000000pt;}
.x4_c00311{left:4.319867pt;}
.x2_c00311{left:128.032800pt;}
.x1_c00311{left:132.352667pt;}
.x7_c00311{left:174.915200pt;}
.x3_c00311{left:179.555200pt;}
.x5_c00311{left:222.106667pt;}
.x6_c00311{left:356.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_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_b4afbce4f73be568c8a71d8a.woff2')format("woff");}.ff1_c00312{font-family:ff1_c00312;line-height:0.666504;font-style:normal;font-weight:normal;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_b3e388cffd2c0102be48c2a6.woff2')format("woff");}.ff2_c00312{font-family:ff2_c00312;line-height:0.938965;font-style:normal;font-weight:normal;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_1c84e557915e5449690ed554.woff2')format("woff");}.ff3_c00312{font-family:ff3_c00312;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00312;src:url('chunks/assets/font_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff4_c00312{font-family:ff4_c00312;line-height:0.666504;font-style: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;}
.ls2_c00312{letter-spacing:0.000000px;}
.ls0_c00312{letter-spacing:0.214966px;}
.ls1_c00312{letter-spacing:0.217313px;}
.sc__c00312{text-shadow:none;}
.sc0_c00312{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00312{-webkit-text-stroke:0px transparent;}
.sc0_c00312{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00312{word-spacing:-15.012033px;}
.ws1_c00312{word-spacing:0.000000px;}
._2_c00312{margin-left:-1.234280px;}
._3_c00312{width:1.110640px;}
._1_c00312{width:997.561968px;}
._0_c00312{width:1345.983552px;}
.fc0_c00312{color:rgb(0,0,0);}
.fs1_c00312{font-size:54.000120px;}
.fs0_c00312{font-size:66.240000px;}
.y0_c00312{bottom:0.000000px;}
.yd_c00312{bottom:17.458800px;}
.y1a_c00312{bottom:17.640000px;}
.y1d_c00312{bottom:17.641500px;}
.y7_c00312{bottom:20.700000px;}
.y11_c00312{bottom:24.481650px;}
.y23_c00312{bottom:25.019550px;}
.y20_c00312{bottom:25.020000px;}
.yb_c00312{bottom:25.198500px;}
.y18_c00312{bottom:25.201500px;}
.y5_c00312{bottom:25.380000px;}
.y15_c00312{bottom:25.381500px;}
.y13_c00312{bottom:32.220000px;}
.y12_c00312{bottom:32.221500px;}
.yc_c00312{bottom:33.118500px;}
.y3_c00312{bottom:36.930000px;}
.y10_c00312{bottom:39.961500px;}
.y1_c00312{bottom:56.556450px;}
.y24_c00312{bottom:93.456450px;}
.y22_c00312{bottom:109.836900px;}
.y21_c00312{bottom:170.130000px;}
.y1f_c00312{bottom:230.430000px;}
.y1e_c00312{bottom:290.775000px;}
.y1c_c00312{bottom:336.495000px;}
.y1b_c00312{bottom:382.216500px;}
.y19_c00312{bottom:428.116500px;}
.y17_c00312{bottom:473.835000px;}
.y16_c00312{bottom:534.855000px;}
.y14_c00312{bottom:596.083500px;}
.y6_c00312{bottom:657.105000px;}
.yf_c00312{bottom:731.983500px;}
.ye_c00312{bottom:806.865000px;}
.ya_c00312{bottom:868.111500px;}
.y9_c00312{bottom:929.131500px;}
.y8_c00312{bottom:990.331500px;}
.y4_c00312{bottom:1051.351500px;}
.y2_c00312{bottom:1112.551500px;}
.h6_c00312{height:39.339931px;}
.hd_c00312{height:45.000000px;}
.h4_c00312{height:48.224531px;}
.h2_c00312{height:48.256875px;}
.h10_c00312{height:59.579850px;}
.hf_c00312{height:59.580450px;}
.he_c00312{height:59.616750px;}
.h8_c00312{height:60.300000px;}
.h5_c00312{height:60.478650px;}
.h9_c00312{height:60.479850px;}
.ha_c00312{height:60.515100px;}
.hc_c00312{height:60.516750px;}
.hb_c00312{height:74.160300px;}
.h3_c00312{height:85.715700px;}
.h7_c00312{height:454.708500px;}
.h0_c00312{height:1262.879850px;}
.h1_c00312{height:1263.000000px;}
.w3_c00312{width:105.119550px;}
.w4_c00312{width:149.976600px;}
.w6_c00312{width:255.808500px;}
.w5_c00312{width:441.795000px;}
.w7_c00312{width:442.155000px;}
.w2_c00312{width:698.325000px;}
.w0_c00312{width:892.979700px;}
.w1_c00312{width:893.250000px;}
.x0_c00312{left:0.000000px;}
.x4_c00312{left:4.859850px;}
.x2_c00312{left:144.036900px;}
.x1_c00312{left:148.896750px;}
.x7_c00312{left:196.779600px;}
.x3_c00312{left:201.999600px;}
.x5_c00312{left:249.870000px;}
.x6_c00312{left:400.575000px;}
@media print{
.v0_c00312{vertical-align:0.000000pt;}
.ls2_c00312{letter-spacing:0.000000pt;}
.ls0_c00312{letter-spacing:0.191081pt;}
.ls1_c00312{letter-spacing:0.193167pt;}
.ws0_c00312{word-spacing:-13.344030pt;}
.ws1_c00312{word-spacing:0.000000pt;}
._2_c00312{margin-left:-1.097138pt;}
._3_c00312{width:0.987236pt;}
._1_c00312{width:886.721749pt;}
._0_c00312{width:1196.429824pt;}
.fs1_c00312{font-size:48.000107pt;}
.fs0_c00312{font-size:58.880000pt;}
.y0_c00312{bottom:0.000000pt;}
.yd_c00312{bottom:15.518933pt;}
.y1a_c00312{bottom:15.680000pt;}
.y1d_c00312{bottom:15.681333pt;}
.y7_c00312{bottom:18.400000pt;}
.y11_c00312{bottom:21.761467pt;}
.y23_c00312{bottom:22.239600pt;}
.y20_c00312{bottom:22.240000pt;}
.yb_c00312{bottom:22.398667pt;}
.y18_c00312{bottom:22.401333pt;}
.y5_c00312{bottom:22.560000pt;}
.y15_c00312{bottom:22.561333pt;}
.y13_c00312{bottom:28.640000pt;}
.y12_c00312{bottom:28.641333pt;}
.yc_c00312{bottom:29.438667pt;}
.y3_c00312{bottom:32.826667pt;}
.y10_c00312{bottom:35.521333pt;}
.y1_c00312{bottom:50.272400pt;}
.y24_c00312{bottom:83.072400pt;}
.y22_c00312{bottom:97.632800pt;}
.y21_c00312{bottom:151.226667pt;}
.y1f_c00312{bottom:204.826667pt;}
.y1e_c00312{bottom:258.466667pt;}
.y1c_c00312{bottom:299.106667pt;}
.y1b_c00312{bottom:339.748000pt;}
.y19_c00312{bottom:380.548000pt;}
.y17_c00312{bottom:421.186667pt;}
.y16_c00312{bottom:475.426667pt;}
.y14_c00312{bottom:529.852000pt;}
.y6_c00312{bottom:584.093333pt;}
.yf_c00312{bottom:650.652000pt;}
.ye_c00312{bottom:717.213333pt;}
.ya_c00312{bottom:771.654667pt;}
.y9_c00312{bottom:825.894667pt;}
.y8_c00312{bottom:880.294667pt;}
.y4_c00312{bottom:934.534667pt;}
.y2_c00312{bottom:988.934667pt;}
.h6_c00312{height:34.968828pt;}
.hd_c00312{height:40.000000pt;}
.h4_c00312{height:42.866250pt;}
.h2_c00312{height:42.895000pt;}
.h10_c00312{height:52.959867pt;}
.hf_c00312{height:52.960400pt;}
.he_c00312{height:52.992667pt;}
.h8_c00312{height:53.600000pt;}
.h5_c00312{height:53.758800pt;}
.h9_c00312{height:53.759867pt;}
.ha_c00312{height:53.791200pt;}
.hc_c00312{height:53.792667pt;}
.hb_c00312{height:65.920267pt;}
.h3_c00312{height:76.191733pt;}
.h7_c00312{height:404.185333pt;}
.h0_c00312{height:1122.559867pt;}
.h1_c00312{height:1122.666667pt;}
.w3_c00312{width:93.439600pt;}
.w4_c00312{width:133.312533pt;}
.w6_c00312{width:227.385333pt;}
.w5_c00312{width:392.706667pt;}
.w7_c00312{width:393.026667pt;}
.w2_c00312{width:620.733333pt;}
.w0_c00312{width:793.759733pt;}
.w1_c00312{width:794.000000pt;}
.x0_c00312{left:0.000000pt;}
.x4_c00312{left:4.319867pt;}
.x2_c00312{left:128.032800pt;}
.x1_c00312{left:132.352667pt;}
.x7_c00312{left:174.915200pt;}
.x3_c00312{left:179.555200pt;}
.x5_c00312{left:222.106667pt;}
.x6_c00312{left:356.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_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_b4afbce4f73be568c8a71d8a.woff2')format("woff");}.ff1_c00313{font-family:ff1_c00313;line-height:0.666504;font-style:normal;font-weight:normal;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_07f32ae860cb8cb4691d1efa.woff2')format("woff");}.ff2_c00313{font-family:ff2_c00313;line-height:0.938965;font-style:normal;font-weight:normal;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_1c84e557915e5449690ed554.woff2')format("woff");}.ff3_c00313{font-family:ff3_c00313;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00313;src:url('chunks/assets/font_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff4_c00313{font-family:ff4_c00313;line-height:0.666504;font-style: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;}
.ls1_c00313{letter-spacing:0.000000px;}
.ls0_c00313{letter-spacing:0.217313px;}
.sc__c00313{text-shadow:none;}
.sc0_c00313{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00313{-webkit-text-stroke:0px transparent;}
.sc0_c00313{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00313{word-spacing:-15.012033px;}
.ws1_c00313{word-spacing:0.000000px;}
._2_c00313{margin-left:-1.234280px;}
._3_c00313{width:1.110640px;}
._1_c00313{width:997.561968px;}
._0_c00313{width:1345.983552px;}
.fc0_c00313{color:rgb(0,0,0);}
.fs1_c00313{font-size:54.000120px;}
.fs0_c00313{font-size:66.240000px;}
.y0_c00313{bottom:0.000000px;}
.y7_c00313{bottom:5.220000px;}
.y18_c00313{bottom:17.640000px;}
.y1b_c00313{bottom:17.641500px;}
.yf_c00313{bottom:24.481650px;}
.y21_c00313{bottom:25.019550px;}
.y1e_c00313{bottom:25.020000px;}
.yb_c00313{bottom:25.198500px;}
.y16_c00313{bottom:25.201500px;}
.y5_c00313{bottom:25.380000px;}
.y13_c00313{bottom:25.381500px;}
.y11_c00313{bottom:32.220000px;}
.y10_c00313{bottom:32.221500px;}
.y3_c00313{bottom:36.930000px;}
.ye_c00313{bottom:39.961500px;}
.y1_c00313{bottom:56.556450px;}
.y22_c00313{bottom:93.456450px;}
.y20_c00313{bottom:109.836900px;}
.y1f_c00313{bottom:170.130000px;}
.y1d_c00313{bottom:230.430000px;}
.y1c_c00313{bottom:290.775000px;}
.y1a_c00313{bottom:336.495000px;}
.y19_c00313{bottom:382.216500px;}
.y17_c00313{bottom:428.116500px;}
.y15_c00313{bottom:473.835000px;}
.y14_c00313{bottom:534.855000px;}
.y12_c00313{bottom:596.083500px;}
.y6_c00313{bottom:657.105000px;}
.yd_c00313{bottom:731.983500px;}
.yc_c00313{bottom:806.865000px;}
.ya_c00313{bottom:868.111500px;}
.y9_c00313{bottom:929.131500px;}
.y8_c00313{bottom:990.331500px;}
.y4_c00313{bottom:1051.351500px;}
.y2_c00313{bottom:1112.551500px;}
.h6_c00313{height:39.339931px;}
.hd_c00313{height:45.000000px;}
.h4_c00313{height:48.224531px;}
.h2_c00313{height:48.256875px;}
.h10_c00313{height:59.579850px;}
.hf_c00313{height:59.580450px;}
.he_c00313{height:59.616750px;}
.h8_c00313{height:60.300000px;}
.h5_c00313{height:60.478650px;}
.h9_c00313{height:60.479850px;}
.ha_c00313{height:60.515100px;}
.hc_c00313{height:60.516750px;}
.hb_c00313{height:74.160300px;}
.h3_c00313{height:85.715700px;}
.h7_c00313{height:454.708500px;}
.h0_c00313{height:1262.879850px;}
.h1_c00313{height:1263.000000px;}
.w3_c00313{width:105.119550px;}
.w4_c00313{width:149.976600px;}
.w6_c00313{width:255.808500px;}
.w5_c00313{width:441.795000px;}
.w7_c00313{width:442.155000px;}
.w2_c00313{width:698.325000px;}
.w0_c00313{width:892.979700px;}
.w1_c00313{width:893.250000px;}
.x0_c00313{left:0.000000px;}
.x4_c00313{left:4.859850px;}
.x2_c00313{left:144.036900px;}
.x1_c00313{left:148.896750px;}
.x7_c00313{left:196.779600px;}
.x3_c00313{left:201.999600px;}
.x5_c00313{left:249.870000px;}
.x6_c00313{left:400.575000px;}
@media print{
.v0_c00313{vertical-align:0.000000pt;}
.ls1_c00313{letter-spacing:0.000000pt;}
.ls0_c00313{letter-spacing:0.193167pt;}
.ws0_c00313{word-spacing:-13.344030pt;}
.ws1_c00313{word-spacing:0.000000pt;}
._2_c00313{margin-left:-1.097138pt;}
._3_c00313{width:0.987236pt;}
._1_c00313{width:886.721749pt;}
._0_c00313{width:1196.429824pt;}
.fs1_c00313{font-size:48.000107pt;}
.fs0_c00313{font-size:58.880000pt;}
.y0_c00313{bottom:0.000000pt;}
.y7_c00313{bottom:4.640000pt;}
.y18_c00313{bottom:15.680000pt;}
.y1b_c00313{bottom:15.681333pt;}
.yf_c00313{bottom:21.761467pt;}
.y21_c00313{bottom:22.239600pt;}
.y1e_c00313{bottom:22.240000pt;}
.yb_c00313{bottom:22.398667pt;}
.y16_c00313{bottom:22.401333pt;}
.y5_c00313{bottom:22.560000pt;}
.y13_c00313{bottom:22.561333pt;}
.y11_c00313{bottom:28.640000pt;}
.y10_c00313{bottom:28.641333pt;}
.y3_c00313{bottom:32.826667pt;}
.ye_c00313{bottom:35.521333pt;}
.y1_c00313{bottom:50.272400pt;}
.y22_c00313{bottom:83.072400pt;}
.y20_c00313{bottom:97.632800pt;}
.y1f_c00313{bottom:151.226667pt;}
.y1d_c00313{bottom:204.826667pt;}
.y1c_c00313{bottom:258.466667pt;}
.y1a_c00313{bottom:299.106667pt;}
.y19_c00313{bottom:339.748000pt;}
.y17_c00313{bottom:380.548000pt;}
.y15_c00313{bottom:421.186667pt;}
.y14_c00313{bottom:475.426667pt;}
.y12_c00313{bottom:529.852000pt;}
.y6_c00313{bottom:584.093333pt;}
.yd_c00313{bottom:650.652000pt;}
.yc_c00313{bottom:717.213333pt;}
.ya_c00313{bottom:771.654667pt;}
.y9_c00313{bottom:825.894667pt;}
.y8_c00313{bottom:880.294667pt;}
.y4_c00313{bottom:934.534667pt;}
.y2_c00313{bottom:988.934667pt;}
.h6_c00313{height:34.968828pt;}
.hd_c00313{height:40.000000pt;}
.h4_c00313{height:42.866250pt;}
.h2_c00313{height:42.895000pt;}
.h10_c00313{height:52.959867pt;}
.hf_c00313{height:52.960400pt;}
.he_c00313{height:52.992667pt;}
.h8_c00313{height:53.600000pt;}
.h5_c00313{height:53.758800pt;}
.h9_c00313{height:53.759867pt;}
.ha_c00313{height:53.791200pt;}
.hc_c00313{height:53.792667pt;}
.hb_c00313{height:65.920267pt;}
.h3_c00313{height:76.191733pt;}
.h7_c00313{height:404.185333pt;}
.h0_c00313{height:1122.559867pt;}
.h1_c00313{height:1122.666667pt;}
.w3_c00313{width:93.439600pt;}
.w4_c00313{width:133.312533pt;}
.w6_c00313{width:227.385333pt;}
.w5_c00313{width:392.706667pt;}
.w7_c00313{width:393.026667pt;}
.w2_c00313{width:620.733333pt;}
.w0_c00313{width:793.759733pt;}
.w1_c00313{width:794.000000pt;}
.x0_c00313{left:0.000000pt;}
.x4_c00313{left:4.319867pt;}
.x2_c00313{left:128.032800pt;}
.x1_c00313{left:132.352667pt;}
.x7_c00313{left:174.915200pt;}
.x3_c00313{left:179.555200pt;}
.x5_c00313{left:222.106667pt;}
.x6_c00313{left:356.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_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_b4afbce4f73be568c8a71d8a.woff2')format("woff");}.ff1_c00314{font-family:ff1_c00314;line-height:0.666504;font-style:normal;font-weight:normal;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_3583e5a4e45e071090acb39b.woff2')format("woff");}.ff2_c00314{font-family:ff2_c00314;line-height:0.938965;font-style:normal;font-weight:normal;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_1c84e557915e5449690ed554.woff2')format("woff");}.ff3_c00314{font-family:ff3_c00314;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00314;src:url('chunks/assets/font_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff4_c00314{font-family:ff4_c00314;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00314{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00314{vertical-align:0.000000px;}
.ls2_c00314{letter-spacing:0.000000px;}
.ls1_c00314{letter-spacing:0.214973px;}
.ls0_c00314{letter-spacing:0.217313px;}
.sc__c00314{text-shadow:none;}
.sc0_c00314{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00314{-webkit-text-stroke:0px transparent;}
.sc0_c00314{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00314{word-spacing:-15.012033px;}
.ws1_c00314{word-spacing:0.000000px;}
._2_c00314{margin-left:-1.234280px;}
._3_c00314{width:1.110640px;}
._1_c00314{width:997.561968px;}
._0_c00314{width:1345.983552px;}
.fc0_c00314{color:rgb(0,0,0);}
.fs1_c00314{font-size:54.000120px;}
.fs0_c00314{font-size:66.240000px;}
.y0_c00314{bottom:0.000000px;}
.y17_c00314{bottom:17.640000px;}
.y1a_c00314{bottom:17.641500px;}
.yf_c00314{bottom:24.481650px;}
.y20_c00314{bottom:25.019550px;}
.y1d_c00314{bottom:25.020000px;}
.yb_c00314{bottom:25.198500px;}
.y15_c00314{bottom:25.201500px;}
.y5_c00314{bottom:25.380000px;}
.y12_c00314{bottom:25.381500px;}
.y7_c00314{bottom:28.440000px;}
.y10_c00314{bottom:32.220000px;}
.y3_c00314{bottom:36.930000px;}
.ye_c00314{bottom:39.961500px;}
.y1_c00314{bottom:56.556450px;}
.y21_c00314{bottom:93.456450px;}
.y1f_c00314{bottom:109.836900px;}
.y1e_c00314{bottom:170.130000px;}
.y1c_c00314{bottom:230.430000px;}
.y1b_c00314{bottom:290.775000px;}
.y19_c00314{bottom:336.495000px;}
.y18_c00314{bottom:382.216500px;}
.y16_c00314{bottom:428.116500px;}
.y14_c00314{bottom:473.835000px;}
.y13_c00314{bottom:534.855000px;}
.y11_c00314{bottom:596.083500px;}
.y6_c00314{bottom:657.105000px;}
.yd_c00314{bottom:731.983500px;}
.yc_c00314{bottom:806.865000px;}
.ya_c00314{bottom:868.111500px;}
.y9_c00314{bottom:929.131500px;}
.y8_c00314{bottom:990.331500px;}
.y4_c00314{bottom:1051.351500px;}
.y2_c00314{bottom:1112.551500px;}
.h6_c00314{height:39.339931px;}
.hd_c00314{height:45.000000px;}
.h4_c00314{height:48.224531px;}
.h2_c00314{height:48.256875px;}
.h10_c00314{height:59.579850px;}
.hf_c00314{height:59.580450px;}
.he_c00314{height:59.616750px;}
.h8_c00314{height:60.300000px;}
.h5_c00314{height:60.478650px;}
.h9_c00314{height:60.479850px;}
.ha_c00314{height:60.515100px;}
.hc_c00314{height:60.516750px;}
.hb_c00314{height:74.160300px;}
.h3_c00314{height:85.715700px;}
.h7_c00314{height:454.708500px;}
.h0_c00314{height:1262.879850px;}
.h1_c00314{height:1263.000000px;}
.w3_c00314{width:105.119550px;}
.w4_c00314{width:149.976600px;}
.w6_c00314{width:255.808500px;}
.w5_c00314{width:441.795000px;}
.w7_c00314{width:442.155000px;}
.w2_c00314{width:698.325000px;}
.w0_c00314{width:892.979700px;}
.w1_c00314{width:893.250000px;}
.x0_c00314{left:0.000000px;}
.x4_c00314{left:4.859850px;}
.x2_c00314{left:144.036900px;}
.x1_c00314{left:148.896750px;}
.x8_c00314{left:196.779600px;}
.x3_c00314{left:201.999600px;}
.x7_c00314{left:220.890000px;}
.x5_c00314{left:249.870000px;}
.x6_c00314{left:400.575000px;}
@media print{
.v0_c00314{vertical-align:0.000000pt;}
.ls2_c00314{letter-spacing:0.000000pt;}
.ls1_c00314{letter-spacing:0.191087pt;}
.ls0_c00314{letter-spacing:0.193167pt;}
.ws0_c00314{word-spacing:-13.344030pt;}
.ws1_c00314{word-spacing:0.000000pt;}
._2_c00314{margin-left:-1.097138pt;}
._3_c00314{width:0.987236pt;}
._1_c00314{width:886.721749pt;}
._0_c00314{width:1196.429824pt;}
.fs1_c00314{font-size:48.000107pt;}
.fs0_c00314{font-size:58.880000pt;}
.y0_c00314{bottom:0.000000pt;}
.y17_c00314{bottom:15.680000pt;}
.y1a_c00314{bottom:15.681333pt;}
.yf_c00314{bottom:21.761467pt;}
.y20_c00314{bottom:22.239600pt;}
.y1d_c00314{bottom:22.240000pt;}
.yb_c00314{bottom:22.398667pt;}
.y15_c00314{bottom:22.401333pt;}
.y5_c00314{bottom:22.560000pt;}
.y12_c00314{bottom:22.561333pt;}
.y7_c00314{bottom:25.280000pt;}
.y10_c00314{bottom:28.640000pt;}
.y3_c00314{bottom:32.826667pt;}
.ye_c00314{bottom:35.521333pt;}
.y1_c00314{bottom:50.272400pt;}
.y21_c00314{bottom:83.072400pt;}
.y1f_c00314{bottom:97.632800pt;}
.y1e_c00314{bottom:151.226667pt;}
.y1c_c00314{bottom:204.826667pt;}
.y1b_c00314{bottom:258.466667pt;}
.y19_c00314{bottom:299.106667pt;}
.y18_c00314{bottom:339.748000pt;}
.y16_c00314{bottom:380.548000pt;}
.y14_c00314{bottom:421.186667pt;}
.y13_c00314{bottom:475.426667pt;}
.y11_c00314{bottom:529.852000pt;}
.y6_c00314{bottom:584.093333pt;}
.yd_c00314{bottom:650.652000pt;}
.yc_c00314{bottom:717.213333pt;}
.ya_c00314{bottom:771.654667pt;}
.y9_c00314{bottom:825.894667pt;}
.y8_c00314{bottom:880.294667pt;}
.y4_c00314{bottom:934.534667pt;}
.y2_c00314{bottom:988.934667pt;}
.h6_c00314{height:34.968828pt;}
.hd_c00314{height:40.000000pt;}
.h4_c00314{height:42.866250pt;}
.h2_c00314{height:42.895000pt;}
.h10_c00314{height:52.959867pt;}
.hf_c00314{height:52.960400pt;}
.he_c00314{height:52.992667pt;}
.h8_c00314{height:53.600000pt;}
.h5_c00314{height:53.758800pt;}
.h9_c00314{height:53.759867pt;}
.ha_c00314{height:53.791200pt;}
.hc_c00314{height:53.792667pt;}
.hb_c00314{height:65.920267pt;}
.h3_c00314{height:76.191733pt;}
.h7_c00314{height:404.185333pt;}
.h0_c00314{height:1122.559867pt;}
.h1_c00314{height:1122.666667pt;}
.w3_c00314{width:93.439600pt;}
.w4_c00314{width:133.312533pt;}
.w6_c00314{width:227.385333pt;}
.w5_c00314{width:392.706667pt;}
.w7_c00314{width:393.026667pt;}
.w2_c00314{width:620.733333pt;}
.w0_c00314{width:793.759733pt;}
.w1_c00314{width:794.000000pt;}
.x0_c00314{left:0.000000pt;}
.x4_c00314{left:4.319867pt;}
.x2_c00314{left:128.032800pt;}
.x1_c00314{left:132.352667pt;}
.x8_c00314{left:174.915200pt;}
.x3_c00314{left:179.555200pt;}
.x7_c00314{left:196.346667pt;}
.x5_c00314{left:222.106667pt;}
.x6_c00314{left:356.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_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_b4afbce4f73be568c8a71d8a.woff2')format("woff");}.ff1_c00315{font-family:ff1_c00315;line-height:0.666504;font-style:normal;font-weight:normal;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_acfb715e1bb709f53c30921c.woff2')format("woff");}.ff2_c00315{font-family:ff2_c00315;line-height:0.938965;font-style:normal;font-weight:normal;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_1c84e557915e5449690ed554.woff2')format("woff");}.ff3_c00315{font-family:ff3_c00315;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00315;src:url('chunks/assets/font_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff4_c00315{font-family:ff4_c00315;line-height:0.666504;font-style: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;}
.ls2_c00315{letter-spacing:0.000000px;}
.ls1_c00315{letter-spacing:0.214973px;}
.ls0_c00315{letter-spacing:0.217313px;}
.sc__c00315{text-shadow:none;}
.sc0_c00315{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00315{-webkit-text-stroke:0px transparent;}
.sc0_c00315{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00315{word-spacing:-15.012033px;}
.ws1_c00315{word-spacing:0.000000px;}
._2_c00315{margin-left:-1.234280px;}
._3_c00315{width:1.110640px;}
._1_c00315{width:997.561968px;}
._0_c00315{width:1345.983552px;}
.fc0_c00315{color:rgb(0,0,0);}
.fs1_c00315{font-size:54.000120px;}
.fs0_c00315{font-size:66.240000px;}
.y0_c00315{bottom:0.000000px;}
.y17_c00315{bottom:17.640000px;}
.y1a_c00315{bottom:17.641500px;}
.yf_c00315{bottom:24.481650px;}
.y20_c00315{bottom:25.019550px;}
.y1d_c00315{bottom:25.020000px;}
.yb_c00315{bottom:25.198500px;}
.y15_c00315{bottom:25.201500px;}
.y5_c00315{bottom:25.380000px;}
.y12_c00315{bottom:25.381500px;}
.y7_c00315{bottom:28.440000px;}
.y10_c00315{bottom:32.220000px;}
.y3_c00315{bottom:36.930000px;}
.ye_c00315{bottom:39.961500px;}
.y1_c00315{bottom:56.556450px;}
.y21_c00315{bottom:93.456450px;}
.y1f_c00315{bottom:109.836900px;}
.y1e_c00315{bottom:170.130000px;}
.y1c_c00315{bottom:230.430000px;}
.y1b_c00315{bottom:290.775000px;}
.y19_c00315{bottom:336.495000px;}
.y18_c00315{bottom:382.216500px;}
.y16_c00315{bottom:428.116500px;}
.y14_c00315{bottom:473.835000px;}
.y13_c00315{bottom:534.855000px;}
.y11_c00315{bottom:596.083500px;}
.y6_c00315{bottom:657.105000px;}
.yd_c00315{bottom:731.983500px;}
.yc_c00315{bottom:806.865000px;}
.ya_c00315{bottom:868.111500px;}
.y9_c00315{bottom:929.131500px;}
.y8_c00315{bottom:990.331500px;}
.y4_c00315{bottom:1051.351500px;}
.y2_c00315{bottom:1112.551500px;}
.h6_c00315{height:39.339931px;}
.hd_c00315{height:45.000000px;}
.h4_c00315{height:48.224531px;}
.h2_c00315{height:48.256875px;}
.h10_c00315{height:59.579850px;}
.hf_c00315{height:59.580450px;}
.he_c00315{height:59.616750px;}
.h8_c00315{height:60.300000px;}
.h5_c00315{height:60.478650px;}
.h9_c00315{height:60.479850px;}
.ha_c00315{height:60.515100px;}
.hc_c00315{height:60.516750px;}
.hb_c00315{height:74.160300px;}
.h3_c00315{height:85.715700px;}
.h7_c00315{height:454.708500px;}
.h0_c00315{height:1262.879850px;}
.h1_c00315{height:1263.000000px;}
.w3_c00315{width:105.119550px;}
.w4_c00315{width:149.976600px;}
.w6_c00315{width:255.808500px;}
.w5_c00315{width:441.795000px;}
.w7_c00315{width:442.155000px;}
.w2_c00315{width:698.325000px;}
.w0_c00315{width:892.979700px;}
.w1_c00315{width:893.250000px;}
.x0_c00315{left:0.000000px;}
.x4_c00315{left:4.859850px;}
.x2_c00315{left:144.036900px;}
.x1_c00315{left:148.896750px;}
.x8_c00315{left:196.779600px;}
.x3_c00315{left:201.999600px;}
.x7_c00315{left:220.890000px;}
.x5_c00315{left:249.870000px;}
.x6_c00315{left:400.575000px;}
@media print{
.v0_c00315{vertical-align:0.000000pt;}
.ls2_c00315{letter-spacing:0.000000pt;}
.ls1_c00315{letter-spacing:0.191087pt;}
.ls0_c00315{letter-spacing:0.193167pt;}
.ws0_c00315{word-spacing:-13.344030pt;}
.ws1_c00315{word-spacing:0.000000pt;}
._2_c00315{margin-left:-1.097138pt;}
._3_c00315{width:0.987236pt;}
._1_c00315{width:886.721749pt;}
._0_c00315{width:1196.429824pt;}
.fs1_c00315{font-size:48.000107pt;}
.fs0_c00315{font-size:58.880000pt;}
.y0_c00315{bottom:0.000000pt;}
.y17_c00315{bottom:15.680000pt;}
.y1a_c00315{bottom:15.681333pt;}
.yf_c00315{bottom:21.761467pt;}
.y20_c00315{bottom:22.239600pt;}
.y1d_c00315{bottom:22.240000pt;}
.yb_c00315{bottom:22.398667pt;}
.y15_c00315{bottom:22.401333pt;}
.y5_c00315{bottom:22.560000pt;}
.y12_c00315{bottom:22.561333pt;}
.y7_c00315{bottom:25.280000pt;}
.y10_c00315{bottom:28.640000pt;}
.y3_c00315{bottom:32.826667pt;}
.ye_c00315{bottom:35.521333pt;}
.y1_c00315{bottom:50.272400pt;}
.y21_c00315{bottom:83.072400pt;}
.y1f_c00315{bottom:97.632800pt;}
.y1e_c00315{bottom:151.226667pt;}
.y1c_c00315{bottom:204.826667pt;}
.y1b_c00315{bottom:258.466667pt;}
.y19_c00315{bottom:299.106667pt;}
.y18_c00315{bottom:339.748000pt;}
.y16_c00315{bottom:380.548000pt;}
.y14_c00315{bottom:421.186667pt;}
.y13_c00315{bottom:475.426667pt;}
.y11_c00315{bottom:529.852000pt;}
.y6_c00315{bottom:584.093333pt;}
.yd_c00315{bottom:650.652000pt;}
.yc_c00315{bottom:717.213333pt;}
.ya_c00315{bottom:771.654667pt;}
.y9_c00315{bottom:825.894667pt;}
.y8_c00315{bottom:880.294667pt;}
.y4_c00315{bottom:934.534667pt;}
.y2_c00315{bottom:988.934667pt;}
.h6_c00315{height:34.968828pt;}
.hd_c00315{height:40.000000pt;}
.h4_c00315{height:42.866250pt;}
.h2_c00315{height:42.895000pt;}
.h10_c00315{height:52.959867pt;}
.hf_c00315{height:52.960400pt;}
.he_c00315{height:52.992667pt;}
.h8_c00315{height:53.600000pt;}
.h5_c00315{height:53.758800pt;}
.h9_c00315{height:53.759867pt;}
.ha_c00315{height:53.791200pt;}
.hc_c00315{height:53.792667pt;}
.hb_c00315{height:65.920267pt;}
.h3_c00315{height:76.191733pt;}
.h7_c00315{height:404.185333pt;}
.h0_c00315{height:1122.559867pt;}
.h1_c00315{height:1122.666667pt;}
.w3_c00315{width:93.439600pt;}
.w4_c00315{width:133.312533pt;}
.w6_c00315{width:227.385333pt;}
.w5_c00315{width:392.706667pt;}
.w7_c00315{width:393.026667pt;}
.w2_c00315{width:620.733333pt;}
.w0_c00315{width:793.759733pt;}
.w1_c00315{width:794.000000pt;}
.x0_c00315{left:0.000000pt;}
.x4_c00315{left:4.319867pt;}
.x2_c00315{left:128.032800pt;}
.x1_c00315{left:132.352667pt;}
.x8_c00315{left:174.915200pt;}
.x3_c00315{left:179.555200pt;}
.x7_c00315{left:196.346667pt;}
.x5_c00315{left:222.106667pt;}
.x6_c00315{left:356.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_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_b4afbce4f73be568c8a71d8a.woff2')format("woff");}.ff1_c00316{font-family:ff1_c00316;line-height:0.666504;font-style:normal;font-weight:normal;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_8fe54d3264bfd766d95420fb.woff2')format("woff");}.ff2_c00316{font-family:ff2_c00316;line-height:0.938965;font-style:normal;font-weight:normal;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_1c84e557915e5449690ed554.woff2')format("woff");}.ff3_c00316{font-family:ff3_c00316;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00316;src:url('chunks/assets/font_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff4_c00316{font-family:ff4_c00316;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00316{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00316{vertical-align:0.000000px;}
.ls1_c00316{letter-spacing:0.000000px;}
.ls0_c00316{letter-spacing:0.217313px;}
.sc__c00316{text-shadow:none;}
.sc0_c00316{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00316{-webkit-text-stroke:0px transparent;}
.sc0_c00316{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00316{word-spacing:-15.012033px;}
.ws1_c00316{word-spacing:0.000000px;}
._2_c00316{margin-left:-1.234280px;}
._3_c00316{width:1.040185px;}
._1_c00316{width:997.561968px;}
._0_c00316{width:1345.983552px;}
.fc0_c00316{color:rgb(0,0,0);}
.fs1_c00316{font-size:54.000120px;}
.fs0_c00316{font-size:66.240000px;}
.y0_c00316{bottom:0.000000px;}
.y18_c00316{bottom:17.640000px;}
.y1b_c00316{bottom:17.641500px;}
.yf_c00316{bottom:24.481650px;}
.y21_c00316{bottom:25.019550px;}
.y1e_c00316{bottom:25.020000px;}
.yb_c00316{bottom:25.198500px;}
.y16_c00316{bottom:25.201500px;}
.y5_c00316{bottom:25.380000px;}
.y13_c00316{bottom:25.381500px;}
.y11_c00316{bottom:32.220000px;}
.y10_c00316{bottom:32.221500px;}
.y7_c00316{bottom:36.180000px;}
.y3_c00316{bottom:36.930000px;}
.ye_c00316{bottom:39.961500px;}
.y1_c00316{bottom:56.556450px;}
.y22_c00316{bottom:93.456450px;}
.y20_c00316{bottom:109.836900px;}
.y1f_c00316{bottom:170.130000px;}
.y1d_c00316{bottom:230.430000px;}
.y1c_c00316{bottom:290.775000px;}
.y1a_c00316{bottom:336.495000px;}
.y19_c00316{bottom:382.216500px;}
.y17_c00316{bottom:428.116500px;}
.y15_c00316{bottom:473.835000px;}
.y14_c00316{bottom:534.855000px;}
.y12_c00316{bottom:596.083500px;}
.y6_c00316{bottom:657.105000px;}
.yd_c00316{bottom:731.983500px;}
.yc_c00316{bottom:806.865000px;}
.ya_c00316{bottom:868.111500px;}
.y9_c00316{bottom:929.131500px;}
.y8_c00316{bottom:990.331500px;}
.y4_c00316{bottom:1051.351500px;}
.y2_c00316{bottom:1112.551500px;}
.h6_c00316{height:39.339931px;}
.hd_c00316{height:45.000000px;}
.h4_c00316{height:48.224531px;}
.h2_c00316{height:48.256875px;}
.h10_c00316{height:59.579850px;}
.hf_c00316{height:59.580450px;}
.he_c00316{height:59.616750px;}
.h8_c00316{height:60.300000px;}
.h5_c00316{height:60.478650px;}
.h9_c00316{height:60.479850px;}
.ha_c00316{height:60.515100px;}
.hc_c00316{height:60.516750px;}
.hb_c00316{height:74.160300px;}
.h3_c00316{height:85.715700px;}
.h7_c00316{height:454.708500px;}
.h0_c00316{height:1262.879850px;}
.h1_c00316{height:1263.000000px;}
.w3_c00316{width:100.259700px;}
.w4_c00316{width:149.976600px;}
.w6_c00316{width:250.950000px;}
.w5_c00316{width:441.795000px;}
.w7_c00316{width:442.155000px;}
.w2_c00316{width:693.465000px;}
.w0_c00316{width:892.979700px;}
.w1_c00316{width:893.250000px;}
.x0_c00316{left:0.000000px;}
.x3_c00316{left:4.853250px;}
.x1_c00316{left:148.896750px;}
.x7_c00316{left:194.259750px;}
.x2_c00316{left:199.479750px;}
.x6_c00316{left:220.890000px;}
.x4_c00316{left:249.870000px;}
.x5_c00316{left:400.575000px;}
@media print{
.v0_c00316{vertical-align:0.000000pt;}
.ls1_c00316{letter-spacing:0.000000pt;}
.ls0_c00316{letter-spacing:0.193167pt;}
.ws0_c00316{word-spacing:-13.344030pt;}
.ws1_c00316{word-spacing:0.000000pt;}
._2_c00316{margin-left:-1.097138pt;}
._3_c00316{width:0.924609pt;}
._1_c00316{width:886.721749pt;}
._0_c00316{width:1196.429824pt;}
.fs1_c00316{font-size:48.000107pt;}
.fs0_c00316{font-size:58.880000pt;}
.y0_c00316{bottom:0.000000pt;}
.y18_c00316{bottom:15.680000pt;}
.y1b_c00316{bottom:15.681333pt;}
.yf_c00316{bottom:21.761467pt;}
.y21_c00316{bottom:22.239600pt;}
.y1e_c00316{bottom:22.240000pt;}
.yb_c00316{bottom:22.398667pt;}
.y16_c00316{bottom:22.401333pt;}
.y5_c00316{bottom:22.560000pt;}
.y13_c00316{bottom:22.561333pt;}
.y11_c00316{bottom:28.640000pt;}
.y10_c00316{bottom:28.641333pt;}
.y7_c00316{bottom:32.160000pt;}
.y3_c00316{bottom:32.826667pt;}
.ye_c00316{bottom:35.521333pt;}
.y1_c00316{bottom:50.272400pt;}
.y22_c00316{bottom:83.072400pt;}
.y20_c00316{bottom:97.632800pt;}
.y1f_c00316{bottom:151.226667pt;}
.y1d_c00316{bottom:204.826667pt;}
.y1c_c00316{bottom:258.466667pt;}
.y1a_c00316{bottom:299.106667pt;}
.y19_c00316{bottom:339.748000pt;}
.y17_c00316{bottom:380.548000pt;}
.y15_c00316{bottom:421.186667pt;}
.y14_c00316{bottom:475.426667pt;}
.y12_c00316{bottom:529.852000pt;}
.y6_c00316{bottom:584.093333pt;}
.yd_c00316{bottom:650.652000pt;}
.yc_c00316{bottom:717.213333pt;}
.ya_c00316{bottom:771.654667pt;}
.y9_c00316{bottom:825.894667pt;}
.y8_c00316{bottom:880.294667pt;}
.y4_c00316{bottom:934.534667pt;}
.y2_c00316{bottom:988.934667pt;}
.h6_c00316{height:34.968828pt;}
.hd_c00316{height:40.000000pt;}
.h4_c00316{height:42.866250pt;}
.h2_c00316{height:42.895000pt;}
.h10_c00316{height:52.959867pt;}
.hf_c00316{height:52.960400pt;}
.he_c00316{height:52.992667pt;}
.h8_c00316{height:53.600000pt;}
.h5_c00316{height:53.758800pt;}
.h9_c00316{height:53.759867pt;}
.ha_c00316{height:53.791200pt;}
.hc_c00316{height:53.792667pt;}
.hb_c00316{height:65.920267pt;}
.h3_c00316{height:76.191733pt;}
.h7_c00316{height:404.185333pt;}
.h0_c00316{height:1122.559867pt;}
.h1_c00316{height:1122.666667pt;}
.w3_c00316{width:89.119733pt;}
.w4_c00316{width:133.312533pt;}
.w6_c00316{width:223.066667pt;}
.w5_c00316{width:392.706667pt;}
.w7_c00316{width:393.026667pt;}
.w2_c00316{width:616.413333pt;}
.w0_c00316{width:793.759733pt;}
.w1_c00316{width:794.000000pt;}
.x0_c00316{left:0.000000pt;}
.x3_c00316{left:4.314000pt;}
.x1_c00316{left:132.352667pt;}
.x7_c00316{left:172.675333pt;}
.x2_c00316{left:177.315333pt;}
.x6_c00316{left:196.346667pt;}
.x4_c00316{left:222.106667pt;}
.x5_c00316{left:356.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_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_b4afbce4f73be568c8a71d8a.woff2')format("woff");}.ff1_c00317{font-family:ff1_c00317;line-height:0.666504;font-style:normal;font-weight:normal;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_c7529c65b4f6f91bdc6bd3ac.woff2')format("woff");}.ff2_c00317{font-family:ff2_c00317;line-height:0.938965;font-style:normal;font-weight:normal;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_1c84e557915e5449690ed554.woff2')format("woff");}.ff3_c00317{font-family:ff3_c00317;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00317;src:url('chunks/assets/font_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff4_c00317{font-family:ff4_c00317;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00317{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00317{vertical-align:0.000000px;}
.ls1_c00317{letter-spacing:0.000000px;}
.ls0_c00317{letter-spacing:0.217313px;}
.sc__c00317{text-shadow:none;}
.sc0_c00317{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00317{-webkit-text-stroke:0px transparent;}
.sc0_c00317{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00317{word-spacing:-15.012033px;}
.ws1_c00317{word-spacing:0.000000px;}
._2_c00317{margin-left:-1.234280px;}
._3_c00317{width:1.110640px;}
._1_c00317{width:997.561968px;}
._0_c00317{width:1345.983552px;}
.fc0_c00317{color:rgb(0,0,0);}
.fs1_c00317{font-size:54.000120px;}
.fs0_c00317{font-size:66.240000px;}
.y0_c00317{bottom:0.000000px;}
.y18_c00317{bottom:17.640000px;}
.y1b_c00317{bottom:17.641500px;}
.yf_c00317{bottom:24.481650px;}
.y21_c00317{bottom:25.019550px;}
.y1e_c00317{bottom:25.020000px;}
.yb_c00317{bottom:25.198500px;}
.y16_c00317{bottom:25.201500px;}
.y5_c00317{bottom:25.380000px;}
.y13_c00317{bottom:25.381500px;}
.y11_c00317{bottom:32.220000px;}
.y10_c00317{bottom:32.221500px;}
.y7_c00317{bottom:36.180000px;}
.y3_c00317{bottom:36.930000px;}
.ye_c00317{bottom:39.961500px;}
.y1_c00317{bottom:56.556450px;}
.y22_c00317{bottom:93.456450px;}
.y20_c00317{bottom:109.836900px;}
.y1f_c00317{bottom:170.130000px;}
.y1d_c00317{bottom:230.430000px;}
.y1c_c00317{bottom:290.775000px;}
.y1a_c00317{bottom:336.495000px;}
.y19_c00317{bottom:382.216500px;}
.y17_c00317{bottom:428.116500px;}
.y15_c00317{bottom:473.835000px;}
.y14_c00317{bottom:534.855000px;}
.y12_c00317{bottom:596.083500px;}
.y6_c00317{bottom:657.105000px;}
.yd_c00317{bottom:731.983500px;}
.yc_c00317{bottom:806.865000px;}
.ya_c00317{bottom:868.111500px;}
.y9_c00317{bottom:929.131500px;}
.y8_c00317{bottom:990.331500px;}
.y4_c00317{bottom:1051.351500px;}
.y2_c00317{bottom:1112.551500px;}
.h6_c00317{height:39.339931px;}
.hd_c00317{height:45.000000px;}
.h4_c00317{height:48.224531px;}
.h2_c00317{height:48.256875px;}
.h10_c00317{height:59.579850px;}
.hf_c00317{height:59.580450px;}
.he_c00317{height:59.616750px;}
.h8_c00317{height:60.300000px;}
.h5_c00317{height:60.478650px;}
.h9_c00317{height:60.479850px;}
.ha_c00317{height:60.515100px;}
.hc_c00317{height:60.516750px;}
.hb_c00317{height:74.160300px;}
.h3_c00317{height:85.715700px;}
.h7_c00317{height:454.708500px;}
.h0_c00317{height:1262.879850px;}
.h1_c00317{height:1263.000000px;}
.w3_c00317{width:100.259700px;}
.w4_c00317{width:149.976600px;}
.w6_c00317{width:250.950000px;}
.w5_c00317{width:441.795000px;}
.w7_c00317{width:442.155000px;}
.w2_c00317{width:693.465000px;}
.w0_c00317{width:892.979700px;}
.w1_c00317{width:893.250000px;}
.x0_c00317{left:0.000000px;}
.x3_c00317{left:4.853250px;}
.x1_c00317{left:148.896750px;}
.x7_c00317{left:194.259750px;}
.x2_c00317{left:199.479750px;}
.x6_c00317{left:220.890000px;}
.x4_c00317{left:249.870000px;}
.x5_c00317{left:400.575000px;}
@media print{
.v0_c00317{vertical-align:0.000000pt;}
.ls1_c00317{letter-spacing:0.000000pt;}
.ls0_c00317{letter-spacing:0.193167pt;}
.ws0_c00317{word-spacing:-13.344030pt;}
.ws1_c00317{word-spacing:0.000000pt;}
._2_c00317{margin-left:-1.097138pt;}
._3_c00317{width:0.987236pt;}
._1_c00317{width:886.721749pt;}
._0_c00317{width:1196.429824pt;}
.fs1_c00317{font-size:48.000107pt;}
.fs0_c00317{font-size:58.880000pt;}
.y0_c00317{bottom:0.000000pt;}
.y18_c00317{bottom:15.680000pt;}
.y1b_c00317{bottom:15.681333pt;}
.yf_c00317{bottom:21.761467pt;}
.y21_c00317{bottom:22.239600pt;}
.y1e_c00317{bottom:22.240000pt;}
.yb_c00317{bottom:22.398667pt;}
.y16_c00317{bottom:22.401333pt;}
.y5_c00317{bottom:22.560000pt;}
.y13_c00317{bottom:22.561333pt;}
.y11_c00317{bottom:28.640000pt;}
.y10_c00317{bottom:28.641333pt;}
.y7_c00317{bottom:32.160000pt;}
.y3_c00317{bottom:32.826667pt;}
.ye_c00317{bottom:35.521333pt;}
.y1_c00317{bottom:50.272400pt;}
.y22_c00317{bottom:83.072400pt;}
.y20_c00317{bottom:97.632800pt;}
.y1f_c00317{bottom:151.226667pt;}
.y1d_c00317{bottom:204.826667pt;}
.y1c_c00317{bottom:258.466667pt;}
.y1a_c00317{bottom:299.106667pt;}
.y19_c00317{bottom:339.748000pt;}
.y17_c00317{bottom:380.548000pt;}
.y15_c00317{bottom:421.186667pt;}
.y14_c00317{bottom:475.426667pt;}
.y12_c00317{bottom:529.852000pt;}
.y6_c00317{bottom:584.093333pt;}
.yd_c00317{bottom:650.652000pt;}
.yc_c00317{bottom:717.213333pt;}
.ya_c00317{bottom:771.654667pt;}
.y9_c00317{bottom:825.894667pt;}
.y8_c00317{bottom:880.294667pt;}
.y4_c00317{bottom:934.534667pt;}
.y2_c00317{bottom:988.934667pt;}
.h6_c00317{height:34.968828pt;}
.hd_c00317{height:40.000000pt;}
.h4_c00317{height:42.866250pt;}
.h2_c00317{height:42.895000pt;}
.h10_c00317{height:52.959867pt;}
.hf_c00317{height:52.960400pt;}
.he_c00317{height:52.992667pt;}
.h8_c00317{height:53.600000pt;}
.h5_c00317{height:53.758800pt;}
.h9_c00317{height:53.759867pt;}
.ha_c00317{height:53.791200pt;}
.hc_c00317{height:53.792667pt;}
.hb_c00317{height:65.920267pt;}
.h3_c00317{height:76.191733pt;}
.h7_c00317{height:404.185333pt;}
.h0_c00317{height:1122.559867pt;}
.h1_c00317{height:1122.666667pt;}
.w3_c00317{width:89.119733pt;}
.w4_c00317{width:133.312533pt;}
.w6_c00317{width:223.066667pt;}
.w5_c00317{width:392.706667pt;}
.w7_c00317{width:393.026667pt;}
.w2_c00317{width:616.413333pt;}
.w0_c00317{width:793.759733pt;}
.w1_c00317{width:794.000000pt;}
.x0_c00317{left:0.000000pt;}
.x3_c00317{left:4.314000pt;}
.x1_c00317{left:132.352667pt;}
.x7_c00317{left:172.675333pt;}
.x2_c00317{left:177.315333pt;}
.x6_c00317{left:196.346667pt;}
.x4_c00317{left:222.106667pt;}
.x5_c00317{left:356.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_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_b4afbce4f73be568c8a71d8a.woff2')format("woff");}.ff1_c00318{font-family:ff1_c00318;line-height:0.666504;font-style:normal;font-weight:normal;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_9869e68f848c989a55b96ee1.woff2')format("woff");}.ff2_c00318{font-family:ff2_c00318;line-height:0.938965;font-style:normal;font-weight:normal;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_1c84e557915e5449690ed554.woff2')format("woff");}.ff3_c00318{font-family:ff3_c00318;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00318;src:url('chunks/assets/font_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff4_c00318{font-family:ff4_c00318;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00318{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00318{vertical-align:0.000000px;}
.ls1_c00318{letter-spacing:0.000000px;}
.ls0_c00318{letter-spacing:0.217313px;}
.sc__c00318{text-shadow:none;}
.sc0_c00318{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00318{-webkit-text-stroke:0px transparent;}
.sc0_c00318{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00318{word-spacing:-15.012033px;}
.ws1_c00318{word-spacing:0.000000px;}
._2_c00318{margin-left:-1.234280px;}
._3_c00318{width:1.110640px;}
._1_c00318{width:997.561968px;}
._0_c00318{width:1345.983552px;}
.fc0_c00318{color:rgb(0,0,0);}
.fs1_c00318{font-size:54.000120px;}
.fs0_c00318{font-size:66.240000px;}
.y0_c00318{bottom:0.000000px;}
.y18_c00318{bottom:17.640000px;}
.y1b_c00318{bottom:17.641500px;}
.yf_c00318{bottom:24.481650px;}
.y21_c00318{bottom:25.019550px;}
.y1e_c00318{bottom:25.020000px;}
.yb_c00318{bottom:25.198500px;}
.y16_c00318{bottom:25.201500px;}
.y5_c00318{bottom:25.380000px;}
.y13_c00318{bottom:25.381500px;}
.y11_c00318{bottom:32.220000px;}
.y10_c00318{bottom:32.221500px;}
.y7_c00318{bottom:36.180000px;}
.y3_c00318{bottom:36.930000px;}
.ye_c00318{bottom:39.961500px;}
.y1_c00318{bottom:56.556450px;}
.y22_c00318{bottom:93.456450px;}
.y20_c00318{bottom:109.836900px;}
.y1f_c00318{bottom:170.130000px;}
.y1d_c00318{bottom:230.430000px;}
.y1c_c00318{bottom:290.775000px;}
.y1a_c00318{bottom:336.495000px;}
.y19_c00318{bottom:382.216500px;}
.y17_c00318{bottom:428.116500px;}
.y15_c00318{bottom:473.835000px;}
.y14_c00318{bottom:534.855000px;}
.y12_c00318{bottom:596.083500px;}
.y6_c00318{bottom:657.105000px;}
.yd_c00318{bottom:731.983500px;}
.yc_c00318{bottom:806.865000px;}
.ya_c00318{bottom:868.111500px;}
.y9_c00318{bottom:929.131500px;}
.y8_c00318{bottom:990.331500px;}
.y4_c00318{bottom:1051.351500px;}
.y2_c00318{bottom:1112.551500px;}
.h6_c00318{height:39.339931px;}
.hd_c00318{height:45.000000px;}
.h4_c00318{height:48.224531px;}
.h2_c00318{height:48.256875px;}
.h10_c00318{height:59.579850px;}
.hf_c00318{height:59.580450px;}
.he_c00318{height:59.616750px;}
.h8_c00318{height:60.300000px;}
.h5_c00318{height:60.478650px;}
.h9_c00318{height:60.479850px;}
.ha_c00318{height:60.515100px;}
.hc_c00318{height:60.516750px;}
.hb_c00318{height:74.160300px;}
.h3_c00318{height:85.715700px;}
.h7_c00318{height:454.708500px;}
.h0_c00318{height:1262.879850px;}
.h1_c00318{height:1263.000000px;}
.w3_c00318{width:100.259700px;}
.w4_c00318{width:149.976600px;}
.w6_c00318{width:250.950000px;}
.w5_c00318{width:441.795000px;}
.w7_c00318{width:442.155000px;}
.w2_c00318{width:693.465000px;}
.w0_c00318{width:892.979700px;}
.w1_c00318{width:893.250000px;}
.x0_c00318{left:0.000000px;}
.x3_c00318{left:4.853250px;}
.x1_c00318{left:148.896750px;}
.x7_c00318{left:194.259750px;}
.x2_c00318{left:199.479750px;}
.x6_c00318{left:220.890000px;}
.x4_c00318{left:249.870000px;}
.x5_c00318{left:400.575000px;}
@media print{
.v0_c00318{vertical-align:0.000000pt;}
.ls1_c00318{letter-spacing:0.000000pt;}
.ls0_c00318{letter-spacing:0.193167pt;}
.ws0_c00318{word-spacing:-13.344030pt;}
.ws1_c00318{word-spacing:0.000000pt;}
._2_c00318{margin-left:-1.097138pt;}
._3_c00318{width:0.987236pt;}
._1_c00318{width:886.721749pt;}
._0_c00318{width:1196.429824pt;}
.fs1_c00318{font-size:48.000107pt;}
.fs0_c00318{font-size:58.880000pt;}
.y0_c00318{bottom:0.000000pt;}
.y18_c00318{bottom:15.680000pt;}
.y1b_c00318{bottom:15.681333pt;}
.yf_c00318{bottom:21.761467pt;}
.y21_c00318{bottom:22.239600pt;}
.y1e_c00318{bottom:22.240000pt;}
.yb_c00318{bottom:22.398667pt;}
.y16_c00318{bottom:22.401333pt;}
.y5_c00318{bottom:22.560000pt;}
.y13_c00318{bottom:22.561333pt;}
.y11_c00318{bottom:28.640000pt;}
.y10_c00318{bottom:28.641333pt;}
.y7_c00318{bottom:32.160000pt;}
.y3_c00318{bottom:32.826667pt;}
.ye_c00318{bottom:35.521333pt;}
.y1_c00318{bottom:50.272400pt;}
.y22_c00318{bottom:83.072400pt;}
.y20_c00318{bottom:97.632800pt;}
.y1f_c00318{bottom:151.226667pt;}
.y1d_c00318{bottom:204.826667pt;}
.y1c_c00318{bottom:258.466667pt;}
.y1a_c00318{bottom:299.106667pt;}
.y19_c00318{bottom:339.748000pt;}
.y17_c00318{bottom:380.548000pt;}
.y15_c00318{bottom:421.186667pt;}
.y14_c00318{bottom:475.426667pt;}
.y12_c00318{bottom:529.852000pt;}
.y6_c00318{bottom:584.093333pt;}
.yd_c00318{bottom:650.652000pt;}
.yc_c00318{bottom:717.213333pt;}
.ya_c00318{bottom:771.654667pt;}
.y9_c00318{bottom:825.894667pt;}
.y8_c00318{bottom:880.294667pt;}
.y4_c00318{bottom:934.534667pt;}
.y2_c00318{bottom:988.934667pt;}
.h6_c00318{height:34.968828pt;}
.hd_c00318{height:40.000000pt;}
.h4_c00318{height:42.866250pt;}
.h2_c00318{height:42.895000pt;}
.h10_c00318{height:52.959867pt;}
.hf_c00318{height:52.960400pt;}
.he_c00318{height:52.992667pt;}
.h8_c00318{height:53.600000pt;}
.h5_c00318{height:53.758800pt;}
.h9_c00318{height:53.759867pt;}
.ha_c00318{height:53.791200pt;}
.hc_c00318{height:53.792667pt;}
.hb_c00318{height:65.920267pt;}
.h3_c00318{height:76.191733pt;}
.h7_c00318{height:404.185333pt;}
.h0_c00318{height:1122.559867pt;}
.h1_c00318{height:1122.666667pt;}
.w3_c00318{width:89.119733pt;}
.w4_c00318{width:133.312533pt;}
.w6_c00318{width:223.066667pt;}
.w5_c00318{width:392.706667pt;}
.w7_c00318{width:393.026667pt;}
.w2_c00318{width:616.413333pt;}
.w0_c00318{width:793.759733pt;}
.w1_c00318{width:794.000000pt;}
.x0_c00318{left:0.000000pt;}
.x3_c00318{left:4.314000pt;}
.x1_c00318{left:132.352667pt;}
.x7_c00318{left:172.675333pt;}
.x2_c00318{left:177.315333pt;}
.x6_c00318{left:196.346667pt;}
.x4_c00318{left:222.106667pt;}
.x5_c00318{left:356.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_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_b4afbce4f73be568c8a71d8a.woff2')format("woff");}.ff1_c00319{font-family:ff1_c00319;line-height:0.666504;font-style:normal;font-weight:normal;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_d58bf8e38304900b5a74d03d.woff2')format("woff");}.ff2_c00319{font-family:ff2_c00319;line-height:0.938965;font-style:normal;font-weight:normal;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_1c84e557915e5449690ed554.woff2')format("woff");}.ff3_c00319{font-family:ff3_c00319;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00319;src:url('chunks/assets/font_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff4_c00319{font-family:ff4_c00319;line-height:0.666504;font-style: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;}
.ls1_c00319{letter-spacing:0.000000px;}
.ls0_c00319{letter-spacing:0.217313px;}
.sc__c00319{text-shadow:none;}
.sc0_c00319{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00319{-webkit-text-stroke:0px transparent;}
.sc0_c00319{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00319{word-spacing:-15.012033px;}
.ws1_c00319{word-spacing:0.000000px;}
._2_c00319{margin-left:-1.234280px;}
._3_c00319{width:1.110640px;}
._1_c00319{width:997.561968px;}
._0_c00319{width:1345.983552px;}
.fc0_c00319{color:rgb(0,0,0);}
.fs1_c00319{font-size:54.000120px;}
.fs0_c00319{font-size:66.240000px;}
.y0_c00319{bottom:0.000000px;}
.y18_c00319{bottom:17.640000px;}
.y1b_c00319{bottom:17.641500px;}
.yf_c00319{bottom:24.481650px;}
.y21_c00319{bottom:25.019550px;}
.y1e_c00319{bottom:25.020000px;}
.yb_c00319{bottom:25.198500px;}
.y16_c00319{bottom:25.201500px;}
.y5_c00319{bottom:25.380000px;}
.y13_c00319{bottom:25.381500px;}
.y11_c00319{bottom:32.220000px;}
.y10_c00319{bottom:32.221500px;}
.y7_c00319{bottom:36.180000px;}
.y3_c00319{bottom:36.930000px;}
.ye_c00319{bottom:39.961500px;}
.y1_c00319{bottom:56.556450px;}
.y22_c00319{bottom:93.456450px;}
.y20_c00319{bottom:109.836900px;}
.y1f_c00319{bottom:170.130000px;}
.y1d_c00319{bottom:230.430000px;}
.y1c_c00319{bottom:290.775000px;}
.y1a_c00319{bottom:336.495000px;}
.y19_c00319{bottom:382.216500px;}
.y17_c00319{bottom:428.116500px;}
.y15_c00319{bottom:473.835000px;}
.y14_c00319{bottom:534.855000px;}
.y12_c00319{bottom:596.083500px;}
.y6_c00319{bottom:657.105000px;}
.yd_c00319{bottom:731.983500px;}
.yc_c00319{bottom:806.865000px;}
.ya_c00319{bottom:868.111500px;}
.y9_c00319{bottom:929.131500px;}
.y8_c00319{bottom:990.331500px;}
.y4_c00319{bottom:1051.351500px;}
.y2_c00319{bottom:1112.551500px;}
.h6_c00319{height:39.339931px;}
.hd_c00319{height:45.000000px;}
.h4_c00319{height:48.224531px;}
.h2_c00319{height:48.256875px;}
.h10_c00319{height:59.579850px;}
.hf_c00319{height:59.580450px;}
.he_c00319{height:59.616750px;}
.h8_c00319{height:60.300000px;}
.h5_c00319{height:60.478650px;}
.h9_c00319{height:60.479850px;}
.ha_c00319{height:60.515100px;}
.hc_c00319{height:60.516750px;}
.hb_c00319{height:74.160300px;}
.h3_c00319{height:85.715700px;}
.h7_c00319{height:454.708500px;}
.h0_c00319{height:1262.879850px;}
.h1_c00319{height:1263.000000px;}
.w3_c00319{width:105.119550px;}
.w4_c00319{width:149.976600px;}
.w6_c00319{width:255.808500px;}
.w5_c00319{width:441.795000px;}
.w7_c00319{width:442.155000px;}
.w2_c00319{width:698.325000px;}
.w0_c00319{width:892.979700px;}
.w1_c00319{width:893.250000px;}
.x0_c00319{left:0.000000px;}
.x4_c00319{left:4.859850px;}
.x2_c00319{left:144.036900px;}
.x1_c00319{left:148.896750px;}
.x7_c00319{left:196.779600px;}
.x3_c00319{left:201.999600px;}
.x5_c00319{left:249.870000px;}
.x6_c00319{left:400.575000px;}
@media print{
.v0_c00319{vertical-align:0.000000pt;}
.ls1_c00319{letter-spacing:0.000000pt;}
.ls0_c00319{letter-spacing:0.193167pt;}
.ws0_c00319{word-spacing:-13.344030pt;}
.ws1_c00319{word-spacing:0.000000pt;}
._2_c00319{margin-left:-1.097138pt;}
._3_c00319{width:0.987236pt;}
._1_c00319{width:886.721749pt;}
._0_c00319{width:1196.429824pt;}
.fs1_c00319{font-size:48.000107pt;}
.fs0_c00319{font-size:58.880000pt;}
.y0_c00319{bottom:0.000000pt;}
.y18_c00319{bottom:15.680000pt;}
.y1b_c00319{bottom:15.681333pt;}
.yf_c00319{bottom:21.761467pt;}
.y21_c00319{bottom:22.239600pt;}
.y1e_c00319{bottom:22.240000pt;}
.yb_c00319{bottom:22.398667pt;}
.y16_c00319{bottom:22.401333pt;}
.y5_c00319{bottom:22.560000pt;}
.y13_c00319{bottom:22.561333pt;}
.y11_c00319{bottom:28.640000pt;}
.y10_c00319{bottom:28.641333pt;}
.y7_c00319{bottom:32.160000pt;}
.y3_c00319{bottom:32.826667pt;}
.ye_c00319{bottom:35.521333pt;}
.y1_c00319{bottom:50.272400pt;}
.y22_c00319{bottom:83.072400pt;}
.y20_c00319{bottom:97.632800pt;}
.y1f_c00319{bottom:151.226667pt;}
.y1d_c00319{bottom:204.826667pt;}
.y1c_c00319{bottom:258.466667pt;}
.y1a_c00319{bottom:299.106667pt;}
.y19_c00319{bottom:339.748000pt;}
.y17_c00319{bottom:380.548000pt;}
.y15_c00319{bottom:421.186667pt;}
.y14_c00319{bottom:475.426667pt;}
.y12_c00319{bottom:529.852000pt;}
.y6_c00319{bottom:584.093333pt;}
.yd_c00319{bottom:650.652000pt;}
.yc_c00319{bottom:717.213333pt;}
.ya_c00319{bottom:771.654667pt;}
.y9_c00319{bottom:825.894667pt;}
.y8_c00319{bottom:880.294667pt;}
.y4_c00319{bottom:934.534667pt;}
.y2_c00319{bottom:988.934667pt;}
.h6_c00319{height:34.968828pt;}
.hd_c00319{height:40.000000pt;}
.h4_c00319{height:42.866250pt;}
.h2_c00319{height:42.895000pt;}
.h10_c00319{height:52.959867pt;}
.hf_c00319{height:52.960400pt;}
.he_c00319{height:52.992667pt;}
.h8_c00319{height:53.600000pt;}
.h5_c00319{height:53.758800pt;}
.h9_c00319{height:53.759867pt;}
.ha_c00319{height:53.791200pt;}
.hc_c00319{height:53.792667pt;}
.hb_c00319{height:65.920267pt;}
.h3_c00319{height:76.191733pt;}
.h7_c00319{height:404.185333pt;}
.h0_c00319{height:1122.559867pt;}
.h1_c00319{height:1122.666667pt;}
.w3_c00319{width:93.439600pt;}
.w4_c00319{width:133.312533pt;}
.w6_c00319{width:227.385333pt;}
.w5_c00319{width:392.706667pt;}
.w7_c00319{width:393.026667pt;}
.w2_c00319{width:620.733333pt;}
.w0_c00319{width:793.759733pt;}
.w1_c00319{width:794.000000pt;}
.x0_c00319{left:0.000000pt;}
.x4_c00319{left:4.319867pt;}
.x2_c00319{left:128.032800pt;}
.x1_c00319{left:132.352667pt;}
.x7_c00319{left:174.915200pt;}
.x3_c00319{left:179.555200pt;}
.x5_c00319{left:222.106667pt;}
.x6_c00319{left:356.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_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_b4afbce4f73be568c8a71d8a.woff2')format("woff");}.ff1_c00320{font-family:ff1_c00320;line-height:0.666504;font-style:normal;font-weight:normal;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_9869e68f848c989a55b96ee1.woff2')format("woff");}.ff2_c00320{font-family:ff2_c00320;line-height:0.938965;font-style:normal;font-weight:normal;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_1c84e557915e5449690ed554.woff2')format("woff");}.ff3_c00320{font-family:ff3_c00320;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00320;src:url('chunks/assets/font_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff4_c00320{font-family:ff4_c00320;line-height:0.666504;font-style: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;}
.ls1_c00320{letter-spacing:0.000000px;}
.ls0_c00320{letter-spacing:0.217313px;}
.sc__c00320{text-shadow:none;}
.sc0_c00320{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00320{-webkit-text-stroke:0px transparent;}
.sc0_c00320{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00320{word-spacing:-15.012033px;}
.ws1_c00320{word-spacing:0.000000px;}
._2_c00320{margin-left:-1.234280px;}
._3_c00320{width:1.110640px;}
._1_c00320{width:997.561968px;}
._0_c00320{width:1345.983552px;}
.fc0_c00320{color:rgb(0,0,0);}
.fs1_c00320{font-size:54.000120px;}
.fs0_c00320{font-size:66.240000px;}
.y0_c00320{bottom:0.000000px;}
.y18_c00320{bottom:17.640000px;}
.y1b_c00320{bottom:17.641500px;}
.yf_c00320{bottom:24.481650px;}
.y21_c00320{bottom:25.019550px;}
.y1e_c00320{bottom:25.020000px;}
.yb_c00320{bottom:25.198500px;}
.y16_c00320{bottom:25.201500px;}
.y5_c00320{bottom:25.380000px;}
.y13_c00320{bottom:25.381500px;}
.y11_c00320{bottom:32.220000px;}
.y10_c00320{bottom:32.221500px;}
.y3_c00320{bottom:36.930000px;}
.ye_c00320{bottom:39.961500px;}
.y1_c00320{bottom:56.556450px;}
.y20_c00320{bottom:109.836900px;}
.y1f_c00320{bottom:170.130000px;}
.y1d_c00320{bottom:230.430000px;}
.y1c_c00320{bottom:290.775000px;}
.y1a_c00320{bottom:336.495000px;}
.y19_c00320{bottom:382.216500px;}
.y17_c00320{bottom:428.116500px;}
.y7_c00320{bottom:438.886500px;}
.y15_c00320{bottom:473.835000px;}
.y14_c00320{bottom:534.855000px;}
.y12_c00320{bottom:596.083500px;}
.y6_c00320{bottom:657.105000px;}
.yd_c00320{bottom:731.983500px;}
.yc_c00320{bottom:806.865000px;}
.ya_c00320{bottom:868.111500px;}
.y9_c00320{bottom:929.131500px;}
.y8_c00320{bottom:990.331500px;}
.y4_c00320{bottom:1051.351500px;}
.y2_c00320{bottom:1112.551500px;}
.h6_c00320{height:39.339931px;}
.hd_c00320{height:45.000000px;}
.h4_c00320{height:48.224531px;}
.h2_c00320{height:48.256875px;}
.h10_c00320{height:59.579850px;}
.hf_c00320{height:59.580450px;}
.he_c00320{height:59.616750px;}
.h8_c00320{height:60.300000px;}
.h5_c00320{height:60.478650px;}
.h9_c00320{height:60.479850px;}
.ha_c00320{height:60.515100px;}
.hc_c00320{height:60.516750px;}
.hb_c00320{height:74.160300px;}
.h3_c00320{height:85.715700px;}
.h7_c00320{height:454.708500px;}
.h0_c00320{height:1262.879850px;}
.h1_c00320{height:1263.000000px;}
.w3_c00320{width:105.119550px;}
.w4_c00320{width:149.976600px;}
.w6_c00320{width:255.808500px;}
.w5_c00320{width:455.295000px;}
.w7_c00320{width:455.655000px;}
.w2_c00320{width:711.825000px;}
.w0_c00320{width:892.979700px;}
.w1_c00320{width:893.250000px;}
.x0_c00320{left:0.000000px;}
.x4_c00320{left:4.859850px;}
.x2_c00320{left:144.036900px;}
.x1_c00320{left:148.896750px;}
.x7_c00320{left:203.438100px;}
.x3_c00320{left:208.659600px;}
.x5_c00320{left:249.870000px;}
.x6_c00320{left:400.575000px;}
@media print{
.v0_c00320{vertical-align:0.000000pt;}
.ls1_c00320{letter-spacing:0.000000pt;}
.ls0_c00320{letter-spacing:0.193167pt;}
.ws0_c00320{word-spacing:-13.344030pt;}
.ws1_c00320{word-spacing:0.000000pt;}
._2_c00320{margin-left:-1.097138pt;}
._3_c00320{width:0.987236pt;}
._1_c00320{width:886.721749pt;}
._0_c00320{width:1196.429824pt;}
.fs1_c00320{font-size:48.000107pt;}
.fs0_c00320{font-size:58.880000pt;}
.y0_c00320{bottom:0.000000pt;}
.y18_c00320{bottom:15.680000pt;}
.y1b_c00320{bottom:15.681333pt;}
.yf_c00320{bottom:21.761467pt;}
.y21_c00320{bottom:22.239600pt;}
.y1e_c00320{bottom:22.240000pt;}
.yb_c00320{bottom:22.398667pt;}
.y16_c00320{bottom:22.401333pt;}
.y5_c00320{bottom:22.560000pt;}
.y13_c00320{bottom:22.561333pt;}
.y11_c00320{bottom:28.640000pt;}
.y10_c00320{bottom:28.641333pt;}
.y3_c00320{bottom:32.826667pt;}
.ye_c00320{bottom:35.521333pt;}
.y1_c00320{bottom:50.272400pt;}
.y20_c00320{bottom:97.632800pt;}
.y1f_c00320{bottom:151.226667pt;}
.y1d_c00320{bottom:204.826667pt;}
.y1c_c00320{bottom:258.466667pt;}
.y1a_c00320{bottom:299.106667pt;}
.y19_c00320{bottom:339.748000pt;}
.y17_c00320{bottom:380.548000pt;}
.y7_c00320{bottom:390.121333pt;}
.y15_c00320{bottom:421.186667pt;}
.y14_c00320{bottom:475.426667pt;}
.y12_c00320{bottom:529.852000pt;}
.y6_c00320{bottom:584.093333pt;}
.yd_c00320{bottom:650.652000pt;}
.yc_c00320{bottom:717.213333pt;}
.ya_c00320{bottom:771.654667pt;}
.y9_c00320{bottom:825.894667pt;}
.y8_c00320{bottom:880.294667pt;}
.y4_c00320{bottom:934.534667pt;}
.y2_c00320{bottom:988.934667pt;}
.h6_c00320{height:34.968828pt;}
.hd_c00320{height:40.000000pt;}
.h4_c00320{height:42.866250pt;}
.h2_c00320{height:42.895000pt;}
.h10_c00320{height:52.959867pt;}
.hf_c00320{height:52.960400pt;}
.he_c00320{height:52.992667pt;}
.h8_c00320{height:53.600000pt;}
.h5_c00320{height:53.758800pt;}
.h9_c00320{height:53.759867pt;}
.ha_c00320{height:53.791200pt;}
.hc_c00320{height:53.792667pt;}
.hb_c00320{height:65.920267pt;}
.h3_c00320{height:76.191733pt;}
.h7_c00320{height:404.185333pt;}
.h0_c00320{height:1122.559867pt;}
.h1_c00320{height:1122.666667pt;}
.w3_c00320{width:93.439600pt;}
.w4_c00320{width:133.312533pt;}
.w6_c00320{width:227.385333pt;}
.w5_c00320{width:404.706667pt;}
.w7_c00320{width:405.026667pt;}
.w2_c00320{width:632.733333pt;}
.w0_c00320{width:793.759733pt;}
.w1_c00320{width:794.000000pt;}
.x0_c00320{left:0.000000pt;}
.x4_c00320{left:4.319867pt;}
.x2_c00320{left:128.032800pt;}
.x1_c00320{left:132.352667pt;}
.x7_c00320{left:180.833867pt;}
.x3_c00320{left:185.475200pt;}
.x5_c00320{left:222.106667pt;}
.x6_c00320{left:356.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_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_b4afbce4f73be568c8a71d8a.woff2')format("woff");}.ff1_c00321{font-family:ff1_c00321;line-height:0.666504;font-style:normal;font-weight:normal;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_8fe54d3264bfd766d95420fb.woff2')format("woff");}.ff2_c00321{font-family:ff2_c00321;line-height:0.938965;font-style:normal;font-weight:normal;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_1c84e557915e5449690ed554.woff2')format("woff");}.ff3_c00321{font-family:ff3_c00321;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00321;src:url('chunks/assets/font_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff4_c00321{font-family:ff4_c00321;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00321{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00321{vertical-align:0.000000px;}
.ls1_c00321{letter-spacing:0.000000px;}
.ls0_c00321{letter-spacing:0.217313px;}
.sc__c00321{text-shadow:none;}
.sc0_c00321{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00321{-webkit-text-stroke:0px transparent;}
.sc0_c00321{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00321{word-spacing:-15.012033px;}
.ws1_c00321{word-spacing:0.000000px;}
._2_c00321{margin-left:-1.234280px;}
._3_c00321{width:1.110640px;}
._1_c00321{width:997.561968px;}
._0_c00321{width:1345.983552px;}
.fc0_c00321{color:rgb(0,0,0);}
.fs1_c00321{font-size:54.000120px;}
.fs0_c00321{font-size:66.240000px;}
.y0_c00321{bottom:0.000000px;}
.y18_c00321{bottom:17.640000px;}
.y1b_c00321{bottom:17.641500px;}
.yf_c00321{bottom:24.481650px;}
.y21_c00321{bottom:25.019550px;}
.y1e_c00321{bottom:25.020000px;}
.yb_c00321{bottom:25.198500px;}
.y16_c00321{bottom:25.201500px;}
.y5_c00321{bottom:25.380000px;}
.y13_c00321{bottom:25.381500px;}
.y11_c00321{bottom:32.220000px;}
.y10_c00321{bottom:32.221500px;}
.y7_c00321{bottom:36.180000px;}
.y3_c00321{bottom:36.930000px;}
.ye_c00321{bottom:39.961500px;}
.y1_c00321{bottom:56.556450px;}
.y22_c00321{bottom:93.456450px;}
.y20_c00321{bottom:109.836900px;}
.y1f_c00321{bottom:170.130000px;}
.y1d_c00321{bottom:230.430000px;}
.y1c_c00321{bottom:290.775000px;}
.y1a_c00321{bottom:336.495000px;}
.y19_c00321{bottom:382.216500px;}
.y17_c00321{bottom:428.116500px;}
.y15_c00321{bottom:473.835000px;}
.y14_c00321{bottom:534.855000px;}
.y12_c00321{bottom:596.083500px;}
.y6_c00321{bottom:657.105000px;}
.yd_c00321{bottom:731.983500px;}
.yc_c00321{bottom:806.865000px;}
.ya_c00321{bottom:868.111500px;}
.y9_c00321{bottom:929.131500px;}
.y8_c00321{bottom:990.331500px;}
.y4_c00321{bottom:1051.351500px;}
.y2_c00321{bottom:1112.551500px;}
.h6_c00321{height:39.339931px;}
.hd_c00321{height:45.000000px;}
.h4_c00321{height:48.224531px;}
.h2_c00321{height:48.256875px;}
.h10_c00321{height:59.579850px;}
.hf_c00321{height:59.580450px;}
.he_c00321{height:59.616750px;}
.h8_c00321{height:60.300000px;}
.h5_c00321{height:60.478650px;}
.h9_c00321{height:60.479850px;}
.ha_c00321{height:60.515100px;}
.hc_c00321{height:60.516750px;}
.hb_c00321{height:74.160300px;}
.h3_c00321{height:85.715700px;}
.h7_c00321{height:454.708500px;}
.h0_c00321{height:1262.879850px;}
.h1_c00321{height:1263.000000px;}
.w3_c00321{width:105.119550px;}
.w4_c00321{width:149.976600px;}
.w6_c00321{width:255.808500px;}
.w5_c00321{width:455.295000px;}
.w7_c00321{width:455.655000px;}
.w2_c00321{width:711.825000px;}
.w0_c00321{width:892.979700px;}
.w1_c00321{width:893.250000px;}
.x0_c00321{left:0.000000px;}
.x4_c00321{left:4.859850px;}
.x2_c00321{left:144.036900px;}
.x1_c00321{left:148.896750px;}
.x7_c00321{left:203.438100px;}
.x3_c00321{left:208.659600px;}
.x5_c00321{left:249.870000px;}
.x6_c00321{left:400.575000px;}
@media print{
.v0_c00321{vertical-align:0.000000pt;}
.ls1_c00321{letter-spacing:0.000000pt;}
.ls0_c00321{letter-spacing:0.193167pt;}
.ws0_c00321{word-spacing:-13.344030pt;}
.ws1_c00321{word-spacing:0.000000pt;}
._2_c00321{margin-left:-1.097138pt;}
._3_c00321{width:0.987236pt;}
._1_c00321{width:886.721749pt;}
._0_c00321{width:1196.429824pt;}
.fs1_c00321{font-size:48.000107pt;}
.fs0_c00321{font-size:58.880000pt;}
.y0_c00321{bottom:0.000000pt;}
.y18_c00321{bottom:15.680000pt;}
.y1b_c00321{bottom:15.681333pt;}
.yf_c00321{bottom:21.761467pt;}
.y21_c00321{bottom:22.239600pt;}
.y1e_c00321{bottom:22.240000pt;}
.yb_c00321{bottom:22.398667pt;}
.y16_c00321{bottom:22.401333pt;}
.y5_c00321{bottom:22.560000pt;}
.y13_c00321{bottom:22.561333pt;}
.y11_c00321{bottom:28.640000pt;}
.y10_c00321{bottom:28.641333pt;}
.y7_c00321{bottom:32.160000pt;}
.y3_c00321{bottom:32.826667pt;}
.ye_c00321{bottom:35.521333pt;}
.y1_c00321{bottom:50.272400pt;}
.y22_c00321{bottom:83.072400pt;}
.y20_c00321{bottom:97.632800pt;}
.y1f_c00321{bottom:151.226667pt;}
.y1d_c00321{bottom:204.826667pt;}
.y1c_c00321{bottom:258.466667pt;}
.y1a_c00321{bottom:299.106667pt;}
.y19_c00321{bottom:339.748000pt;}
.y17_c00321{bottom:380.548000pt;}
.y15_c00321{bottom:421.186667pt;}
.y14_c00321{bottom:475.426667pt;}
.y12_c00321{bottom:529.852000pt;}
.y6_c00321{bottom:584.093333pt;}
.yd_c00321{bottom:650.652000pt;}
.yc_c00321{bottom:717.213333pt;}
.ya_c00321{bottom:771.654667pt;}
.y9_c00321{bottom:825.894667pt;}
.y8_c00321{bottom:880.294667pt;}
.y4_c00321{bottom:934.534667pt;}
.y2_c00321{bottom:988.934667pt;}
.h6_c00321{height:34.968828pt;}
.hd_c00321{height:40.000000pt;}
.h4_c00321{height:42.866250pt;}
.h2_c00321{height:42.895000pt;}
.h10_c00321{height:52.959867pt;}
.hf_c00321{height:52.960400pt;}
.he_c00321{height:52.992667pt;}
.h8_c00321{height:53.600000pt;}
.h5_c00321{height:53.758800pt;}
.h9_c00321{height:53.759867pt;}
.ha_c00321{height:53.791200pt;}
.hc_c00321{height:53.792667pt;}
.hb_c00321{height:65.920267pt;}
.h3_c00321{height:76.191733pt;}
.h7_c00321{height:404.185333pt;}
.h0_c00321{height:1122.559867pt;}
.h1_c00321{height:1122.666667pt;}
.w3_c00321{width:93.439600pt;}
.w4_c00321{width:133.312533pt;}
.w6_c00321{width:227.385333pt;}
.w5_c00321{width:404.706667pt;}
.w7_c00321{width:405.026667pt;}
.w2_c00321{width:632.733333pt;}
.w0_c00321{width:793.759733pt;}
.w1_c00321{width:794.000000pt;}
.x0_c00321{left:0.000000pt;}
.x4_c00321{left:4.319867pt;}
.x2_c00321{left:128.032800pt;}
.x1_c00321{left:132.352667pt;}
.x7_c00321{left:180.833867pt;}
.x3_c00321{left:185.475200pt;}
.x5_c00321{left:222.106667pt;}
.x6_c00321{left:356.066667pt;}
}





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

.ir_c00322:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00322{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00322;src:url('chunks/assets/font_b4afbce4f73be568c8a71d8a.woff2')format("woff");}.ff1_c00322{font-family:ff1_c00322;line-height:0.666504;font-style:normal;font-weight:normal;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_f3ae9cca6e9ba1b69874e702.woff2')format("woff");}.ff2_c00322{font-family:ff2_c00322;line-height:0.938965;font-style:normal;font-weight:normal;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_1c84e557915e5449690ed554.woff2')format("woff");}.ff3_c00322{font-family:ff3_c00322;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00322;src:url('chunks/assets/font_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff4_c00322{font-family:ff4_c00322;line-height:0.666504;font-style: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;}
.ls1_c00322{letter-spacing:0.000000px;}
.ls0_c00322{letter-spacing:0.217313px;}
.sc__c00322{text-shadow:none;}
.sc0_c00322{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00322{-webkit-text-stroke:0px transparent;}
.sc0_c00322{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00322{word-spacing:-15.012033px;}
.ws1_c00322{word-spacing:0.000000px;}
._2_c00322{margin-left:-1.234280px;}
._3_c00322{width:1.110640px;}
._1_c00322{width:997.561968px;}
._0_c00322{width:1345.983552px;}
.fc0_c00322{color:rgb(0,0,0);}
.fs1_c00322{font-size:54.000120px;}
.fs0_c00322{font-size:66.240000px;}
.y0_c00322{bottom:0.000000px;}
.y7_c00322{bottom:2.880000px;}
.yd_c00322{bottom:17.458800px;}
.y1d_c00322{bottom:17.640000px;}
.y19_c00322{bottom:17.641500px;}
.y1f_c00322{bottom:17.685000px;}
.y1b_c00322{bottom:17.821500px;}
.y11_c00322{bottom:24.481650px;}
.y21_c00322{bottom:25.020000px;}
.y24_c00322{bottom:25.020150px;}
.yb_c00322{bottom:25.198500px;}
.y5_c00322{bottom:25.380000px;}
.y16_c00322{bottom:25.381500px;}
.y12_c00322{bottom:32.221500px;}
.yc_c00322{bottom:33.118500px;}
.y3_c00322{bottom:36.930000px;}
.y13_c00322{bottom:37.620000px;}
.y10_c00322{bottom:39.961500px;}
.y1_c00322{bottom:56.556450px;}
.y25_c00322{bottom:82.296750px;}
.y23_c00322{bottom:98.676600px;}
.y22_c00322{bottom:158.970000px;}
.y20_c00322{bottom:219.270000px;}
.y1e_c00322{bottom:279.570000px;}
.y1c_c00322{bottom:325.335000px;}
.y1a_c00322{bottom:371.055000px;}
.y18_c00322{bottom:416.955000px;}
.y17_c00322{bottom:462.675000px;}
.y15_c00322{bottom:523.695000px;}
.y14_c00322{bottom:584.925000px;}
.y6_c00322{bottom:646.125000px;}
.yf_c00322{bottom:731.983500px;}
.ye_c00322{bottom:806.865000px;}
.ya_c00322{bottom:868.111500px;}
.y9_c00322{bottom:929.131500px;}
.y8_c00322{bottom:990.331500px;}
.y4_c00322{bottom:1051.351500px;}
.y2_c00322{bottom:1112.551500px;}
.h6_c00322{height:39.339931px;}
.hf_c00322{height:44.999400px;}
.he_c00322{height:45.000000px;}
.h10_c00322{height:45.036900px;}
.h4_c00322{height:48.224531px;}
.h2_c00322{height:48.256875px;}
.h11_c00322{height:59.579850px;}
.h8_c00322{height:60.300000px;}
.h5_c00322{height:60.478650px;}
.h9_c00322{height:60.479850px;}
.ha_c00322{height:60.515100px;}
.hd_c00322{height:60.516750px;}
.hb_c00322{height:74.160300px;}
.hc_c00322{height:85.139700px;}
.h3_c00322{height:85.715700px;}
.h7_c00322{height:465.688500px;}
.h0_c00322{height:1262.879850px;}
.h1_c00322{height:1263.000000px;}
.w3_c00322{width:105.119550px;}
.w4_c00322{width:149.976600px;}
.w6_c00322{width:255.808500px;}
.w5_c00322{width:441.795000px;}
.w7_c00322{width:442.155000px;}
.w2_c00322{width:698.325000px;}
.w0_c00322{width:892.979700px;}
.w1_c00322{width:893.250000px;}
.x0_c00322{left:0.000000px;}
.x4_c00322{left:4.859850px;}
.x2_c00322{left:144.036900px;}
.x1_c00322{left:148.896750px;}
.x7_c00322{left:196.779600px;}
.x3_c00322{left:201.999600px;}
.x5_c00322{left:249.870000px;}
.x6_c00322{left:400.575000px;}
@media print{
.v0_c00322{vertical-align:0.000000pt;}
.ls1_c00322{letter-spacing:0.000000pt;}
.ls0_c00322{letter-spacing:0.193167pt;}
.ws0_c00322{word-spacing:-13.344030pt;}
.ws1_c00322{word-spacing:0.000000pt;}
._2_c00322{margin-left:-1.097138pt;}
._3_c00322{width:0.987236pt;}
._1_c00322{width:886.721749pt;}
._0_c00322{width:1196.429824pt;}
.fs1_c00322{font-size:48.000107pt;}
.fs0_c00322{font-size:58.880000pt;}
.y0_c00322{bottom:0.000000pt;}
.y7_c00322{bottom:2.560000pt;}
.yd_c00322{bottom:15.518933pt;}
.y1d_c00322{bottom:15.680000pt;}
.y19_c00322{bottom:15.681333pt;}
.y1f_c00322{bottom:15.720000pt;}
.y1b_c00322{bottom:15.841333pt;}
.y11_c00322{bottom:21.761467pt;}
.y21_c00322{bottom:22.240000pt;}
.y24_c00322{bottom:22.240133pt;}
.yb_c00322{bottom:22.398667pt;}
.y5_c00322{bottom:22.560000pt;}
.y16_c00322{bottom:22.561333pt;}
.y12_c00322{bottom:28.641333pt;}
.yc_c00322{bottom:29.438667pt;}
.y3_c00322{bottom:32.826667pt;}
.y13_c00322{bottom:33.440000pt;}
.y10_c00322{bottom:35.521333pt;}
.y1_c00322{bottom:50.272400pt;}
.y25_c00322{bottom:73.152667pt;}
.y23_c00322{bottom:87.712533pt;}
.y22_c00322{bottom:141.306667pt;}
.y20_c00322{bottom:194.906667pt;}
.y1e_c00322{bottom:248.506667pt;}
.y1c_c00322{bottom:289.186667pt;}
.y1a_c00322{bottom:329.826667pt;}
.y18_c00322{bottom:370.626667pt;}
.y17_c00322{bottom:411.266667pt;}
.y15_c00322{bottom:465.506667pt;}
.y14_c00322{bottom:519.933333pt;}
.y6_c00322{bottom:574.333333pt;}
.yf_c00322{bottom:650.652000pt;}
.ye_c00322{bottom:717.213333pt;}
.ya_c00322{bottom:771.654667pt;}
.y9_c00322{bottom:825.894667pt;}
.y8_c00322{bottom:880.294667pt;}
.y4_c00322{bottom:934.534667pt;}
.y2_c00322{bottom:988.934667pt;}
.h6_c00322{height:34.968828pt;}
.hf_c00322{height:39.999467pt;}
.he_c00322{height:40.000000pt;}
.h10_c00322{height:40.032800pt;}
.h4_c00322{height:42.866250pt;}
.h2_c00322{height:42.895000pt;}
.h11_c00322{height:52.959867pt;}
.h8_c00322{height:53.600000pt;}
.h5_c00322{height:53.758800pt;}
.h9_c00322{height:53.759867pt;}
.ha_c00322{height:53.791200pt;}
.hd_c00322{height:53.792667pt;}
.hb_c00322{height:65.920267pt;}
.hc_c00322{height:75.679733pt;}
.h3_c00322{height:76.191733pt;}
.h7_c00322{height:413.945333pt;}
.h0_c00322{height:1122.559867pt;}
.h1_c00322{height:1122.666667pt;}
.w3_c00322{width:93.439600pt;}
.w4_c00322{width:133.312533pt;}
.w6_c00322{width:227.385333pt;}
.w5_c00322{width:392.706667pt;}
.w7_c00322{width:393.026667pt;}
.w2_c00322{width:620.733333pt;}
.w0_c00322{width:793.759733pt;}
.w1_c00322{width:794.000000pt;}
.x0_c00322{left:0.000000pt;}
.x4_c00322{left:4.319867pt;}
.x2_c00322{left:128.032800pt;}
.x1_c00322{left:132.352667pt;}
.x7_c00322{left:174.915200pt;}
.x3_c00322{left:179.555200pt;}
.x5_c00322{left:222.106667pt;}
.x6_c00322{left:356.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_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_b4afbce4f73be568c8a71d8a.woff2')format("woff");}.ff1_c00323{font-family:ff1_c00323;line-height:0.666504;font-style:normal;font-weight:normal;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_64f9ded82060aeba9a099c81.woff2')format("woff");}.ff2_c00323{font-family:ff2_c00323;line-height:0.938965;font-style:normal;font-weight:normal;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_1c84e557915e5449690ed554.woff2')format("woff");}.ff3_c00323{font-family:ff3_c00323;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00323;src:url('chunks/assets/font_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff4_c00323{font-family:ff4_c00323;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00323{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00323{vertical-align:0.000000px;}
.ls1_c00323{letter-spacing:0.000000px;}
.ls0_c00323{letter-spacing:0.217313px;}
.sc__c00323{text-shadow:none;}
.sc0_c00323{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00323{-webkit-text-stroke:0px transparent;}
.sc0_c00323{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00323{word-spacing:-15.012033px;}
.ws1_c00323{word-spacing:0.000000px;}
._2_c00323{margin-left:-1.234280px;}
._3_c00323{width:1.110640px;}
._1_c00323{width:997.561968px;}
._0_c00323{width:1345.983552px;}
.fc0_c00323{color:rgb(0,0,0);}
.fs1_c00323{font-size:54.000120px;}
.fs0_c00323{font-size:66.240000px;}
.y0_c00323{bottom:0.000000px;}
.y18_c00323{bottom:17.640000px;}
.y1b_c00323{bottom:17.641500px;}
.yf_c00323{bottom:24.481650px;}
.y21_c00323{bottom:25.019550px;}
.y1e_c00323{bottom:25.020000px;}
.yb_c00323{bottom:25.198500px;}
.y16_c00323{bottom:25.201500px;}
.y5_c00323{bottom:25.380000px;}
.y13_c00323{bottom:25.381500px;}
.y11_c00323{bottom:32.220000px;}
.y10_c00323{bottom:32.221500px;}
.y7_c00323{bottom:36.180000px;}
.y3_c00323{bottom:36.930000px;}
.ye_c00323{bottom:39.961500px;}
.y1_c00323{bottom:56.556450px;}
.y22_c00323{bottom:93.456450px;}
.y20_c00323{bottom:109.836900px;}
.y1f_c00323{bottom:170.130000px;}
.y1d_c00323{bottom:230.430000px;}
.y1c_c00323{bottom:290.775000px;}
.y1a_c00323{bottom:336.495000px;}
.y19_c00323{bottom:382.216500px;}
.y17_c00323{bottom:428.116500px;}
.y15_c00323{bottom:473.835000px;}
.y14_c00323{bottom:534.855000px;}
.y12_c00323{bottom:596.083500px;}
.y6_c00323{bottom:657.105000px;}
.yd_c00323{bottom:731.983500px;}
.yc_c00323{bottom:806.865000px;}
.ya_c00323{bottom:868.111500px;}
.y9_c00323{bottom:929.131500px;}
.y8_c00323{bottom:990.331500px;}
.y4_c00323{bottom:1051.351500px;}
.y2_c00323{bottom:1112.551500px;}
.h6_c00323{height:39.339931px;}
.hd_c00323{height:45.000000px;}
.h4_c00323{height:48.224531px;}
.h2_c00323{height:48.256875px;}
.h10_c00323{height:59.579850px;}
.hf_c00323{height:59.580450px;}
.he_c00323{height:59.616750px;}
.h8_c00323{height:60.300000px;}
.h5_c00323{height:60.478650px;}
.h9_c00323{height:60.479850px;}
.ha_c00323{height:60.515100px;}
.hc_c00323{height:60.516750px;}
.hb_c00323{height:74.160300px;}
.h3_c00323{height:85.715700px;}
.h7_c00323{height:454.708500px;}
.h0_c00323{height:1262.879850px;}
.h1_c00323{height:1263.000000px;}
.w3_c00323{width:105.119550px;}
.w4_c00323{width:149.976600px;}
.w6_c00323{width:255.808500px;}
.w5_c00323{width:441.795000px;}
.w7_c00323{width:442.155000px;}
.w2_c00323{width:698.325000px;}
.w0_c00323{width:892.979700px;}
.w1_c00323{width:893.250000px;}
.x0_c00323{left:0.000000px;}
.x4_c00323{left:4.859850px;}
.x2_c00323{left:144.036900px;}
.x1_c00323{left:148.896750px;}
.x8_c00323{left:196.779600px;}
.x3_c00323{left:201.999600px;}
.x7_c00323{left:220.890000px;}
.x5_c00323{left:249.870000px;}
.x6_c00323{left:400.575000px;}
@media print{
.v0_c00323{vertical-align:0.000000pt;}
.ls1_c00323{letter-spacing:0.000000pt;}
.ls0_c00323{letter-spacing:0.193167pt;}
.ws0_c00323{word-spacing:-13.344030pt;}
.ws1_c00323{word-spacing:0.000000pt;}
._2_c00323{margin-left:-1.097138pt;}
._3_c00323{width:0.987236pt;}
._1_c00323{width:886.721749pt;}
._0_c00323{width:1196.429824pt;}
.fs1_c00323{font-size:48.000107pt;}
.fs0_c00323{font-size:58.880000pt;}
.y0_c00323{bottom:0.000000pt;}
.y18_c00323{bottom:15.680000pt;}
.y1b_c00323{bottom:15.681333pt;}
.yf_c00323{bottom:21.761467pt;}
.y21_c00323{bottom:22.239600pt;}
.y1e_c00323{bottom:22.240000pt;}
.yb_c00323{bottom:22.398667pt;}
.y16_c00323{bottom:22.401333pt;}
.y5_c00323{bottom:22.560000pt;}
.y13_c00323{bottom:22.561333pt;}
.y11_c00323{bottom:28.640000pt;}
.y10_c00323{bottom:28.641333pt;}
.y7_c00323{bottom:32.160000pt;}
.y3_c00323{bottom:32.826667pt;}
.ye_c00323{bottom:35.521333pt;}
.y1_c00323{bottom:50.272400pt;}
.y22_c00323{bottom:83.072400pt;}
.y20_c00323{bottom:97.632800pt;}
.y1f_c00323{bottom:151.226667pt;}
.y1d_c00323{bottom:204.826667pt;}
.y1c_c00323{bottom:258.466667pt;}
.y1a_c00323{bottom:299.106667pt;}
.y19_c00323{bottom:339.748000pt;}
.y17_c00323{bottom:380.548000pt;}
.y15_c00323{bottom:421.186667pt;}
.y14_c00323{bottom:475.426667pt;}
.y12_c00323{bottom:529.852000pt;}
.y6_c00323{bottom:584.093333pt;}
.yd_c00323{bottom:650.652000pt;}
.yc_c00323{bottom:717.213333pt;}
.ya_c00323{bottom:771.654667pt;}
.y9_c00323{bottom:825.894667pt;}
.y8_c00323{bottom:880.294667pt;}
.y4_c00323{bottom:934.534667pt;}
.y2_c00323{bottom:988.934667pt;}
.h6_c00323{height:34.968828pt;}
.hd_c00323{height:40.000000pt;}
.h4_c00323{height:42.866250pt;}
.h2_c00323{height:42.895000pt;}
.h10_c00323{height:52.959867pt;}
.hf_c00323{height:52.960400pt;}
.he_c00323{height:52.992667pt;}
.h8_c00323{height:53.600000pt;}
.h5_c00323{height:53.758800pt;}
.h9_c00323{height:53.759867pt;}
.ha_c00323{height:53.791200pt;}
.hc_c00323{height:53.792667pt;}
.hb_c00323{height:65.920267pt;}
.h3_c00323{height:76.191733pt;}
.h7_c00323{height:404.185333pt;}
.h0_c00323{height:1122.559867pt;}
.h1_c00323{height:1122.666667pt;}
.w3_c00323{width:93.439600pt;}
.w4_c00323{width:133.312533pt;}
.w6_c00323{width:227.385333pt;}
.w5_c00323{width:392.706667pt;}
.w7_c00323{width:393.026667pt;}
.w2_c00323{width:620.733333pt;}
.w0_c00323{width:793.759733pt;}
.w1_c00323{width:794.000000pt;}
.x0_c00323{left:0.000000pt;}
.x4_c00323{left:4.319867pt;}
.x2_c00323{left:128.032800pt;}
.x1_c00323{left:132.352667pt;}
.x8_c00323{left:174.915200pt;}
.x3_c00323{left:179.555200pt;}
.x7_c00323{left:196.346667pt;}
.x5_c00323{left:222.106667pt;}
.x6_c00323{left:356.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_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_b4afbce4f73be568c8a71d8a.woff2')format("woff");}.ff1_c00324{font-family:ff1_c00324;line-height:0.666504;font-style:normal;font-weight:normal;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_2eb3266396f9c4ca6561380a.woff2')format("woff");}.ff2_c00324{font-family:ff2_c00324;line-height:0.938965;font-style:normal;font-weight:normal;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_1c84e557915e5449690ed554.woff2')format("woff");}.ff3_c00324{font-family:ff3_c00324;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00324;src:url('chunks/assets/font_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff4_c00324{font-family:ff4_c00324;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00324{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00324{vertical-align:0.000000px;}
.ls1_c00324{letter-spacing:0.000000px;}
.ls0_c00324{letter-spacing:0.217313px;}
.sc__c00324{text-shadow:none;}
.sc0_c00324{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00324{-webkit-text-stroke:0px transparent;}
.sc0_c00324{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00324{word-spacing:-15.012033px;}
.ws1_c00324{word-spacing:0.000000px;}
._2_c00324{margin-left:-1.234280px;}
._3_c00324{width:1.110640px;}
._1_c00324{width:997.561968px;}
._0_c00324{width:1345.983552px;}
.fc0_c00324{color:rgb(0,0,0);}
.fs1_c00324{font-size:54.000120px;}
.fs0_c00324{font-size:66.240000px;}
.y0_c00324{bottom:0.000000px;}
.y18_c00324{bottom:17.640000px;}
.y1b_c00324{bottom:17.641500px;}
.yf_c00324{bottom:24.481650px;}
.y21_c00324{bottom:25.019550px;}
.y1e_c00324{bottom:25.020000px;}
.yb_c00324{bottom:25.198500px;}
.y16_c00324{bottom:25.201500px;}
.y5_c00324{bottom:25.380000px;}
.y13_c00324{bottom:25.381500px;}
.y11_c00324{bottom:32.220000px;}
.y10_c00324{bottom:32.221500px;}
.y7_c00324{bottom:36.180000px;}
.y3_c00324{bottom:36.930000px;}
.ye_c00324{bottom:39.961500px;}
.y1_c00324{bottom:56.556450px;}
.y22_c00324{bottom:93.456450px;}
.y20_c00324{bottom:109.836900px;}
.y1f_c00324{bottom:170.130000px;}
.y1d_c00324{bottom:230.430000px;}
.y1c_c00324{bottom:290.775000px;}
.y1a_c00324{bottom:336.495000px;}
.y19_c00324{bottom:382.216500px;}
.y17_c00324{bottom:428.116500px;}
.y15_c00324{bottom:473.835000px;}
.y14_c00324{bottom:534.855000px;}
.y12_c00324{bottom:596.083500px;}
.y6_c00324{bottom:657.105000px;}
.yd_c00324{bottom:731.983500px;}
.yc_c00324{bottom:806.865000px;}
.ya_c00324{bottom:868.111500px;}
.y9_c00324{bottom:929.131500px;}
.y8_c00324{bottom:990.331500px;}
.y4_c00324{bottom:1051.351500px;}
.y2_c00324{bottom:1112.551500px;}
.h6_c00324{height:39.339931px;}
.hd_c00324{height:45.000000px;}
.h4_c00324{height:48.224531px;}
.h2_c00324{height:48.256875px;}
.h10_c00324{height:59.579850px;}
.hf_c00324{height:59.580450px;}
.he_c00324{height:59.616750px;}
.h8_c00324{height:60.300000px;}
.h5_c00324{height:60.478650px;}
.h9_c00324{height:60.479850px;}
.ha_c00324{height:60.515100px;}
.hc_c00324{height:60.516750px;}
.hb_c00324{height:74.160300px;}
.h3_c00324{height:85.715700px;}
.h7_c00324{height:454.708500px;}
.h0_c00324{height:1262.879850px;}
.h1_c00324{height:1263.000000px;}
.w3_c00324{width:105.119550px;}
.w4_c00324{width:149.976600px;}
.w6_c00324{width:255.808500px;}
.w5_c00324{width:441.795000px;}
.w7_c00324{width:442.155000px;}
.w2_c00324{width:698.325000px;}
.w0_c00324{width:892.979700px;}
.w1_c00324{width:893.250000px;}
.x0_c00324{left:0.000000px;}
.x4_c00324{left:4.859850px;}
.x2_c00324{left:144.036900px;}
.x1_c00324{left:148.896750px;}
.x8_c00324{left:196.779600px;}
.x3_c00324{left:201.999600px;}
.x7_c00324{left:220.890000px;}
.x5_c00324{left:249.870000px;}
.x6_c00324{left:400.575000px;}
@media print{
.v0_c00324{vertical-align:0.000000pt;}
.ls1_c00324{letter-spacing:0.000000pt;}
.ls0_c00324{letter-spacing:0.193167pt;}
.ws0_c00324{word-spacing:-13.344030pt;}
.ws1_c00324{word-spacing:0.000000pt;}
._2_c00324{margin-left:-1.097138pt;}
._3_c00324{width:0.987236pt;}
._1_c00324{width:886.721749pt;}
._0_c00324{width:1196.429824pt;}
.fs1_c00324{font-size:48.000107pt;}
.fs0_c00324{font-size:58.880000pt;}
.y0_c00324{bottom:0.000000pt;}
.y18_c00324{bottom:15.680000pt;}
.y1b_c00324{bottom:15.681333pt;}
.yf_c00324{bottom:21.761467pt;}
.y21_c00324{bottom:22.239600pt;}
.y1e_c00324{bottom:22.240000pt;}
.yb_c00324{bottom:22.398667pt;}
.y16_c00324{bottom:22.401333pt;}
.y5_c00324{bottom:22.560000pt;}
.y13_c00324{bottom:22.561333pt;}
.y11_c00324{bottom:28.640000pt;}
.y10_c00324{bottom:28.641333pt;}
.y7_c00324{bottom:32.160000pt;}
.y3_c00324{bottom:32.826667pt;}
.ye_c00324{bottom:35.521333pt;}
.y1_c00324{bottom:50.272400pt;}
.y22_c00324{bottom:83.072400pt;}
.y20_c00324{bottom:97.632800pt;}
.y1f_c00324{bottom:151.226667pt;}
.y1d_c00324{bottom:204.826667pt;}
.y1c_c00324{bottom:258.466667pt;}
.y1a_c00324{bottom:299.106667pt;}
.y19_c00324{bottom:339.748000pt;}
.y17_c00324{bottom:380.548000pt;}
.y15_c00324{bottom:421.186667pt;}
.y14_c00324{bottom:475.426667pt;}
.y12_c00324{bottom:529.852000pt;}
.y6_c00324{bottom:584.093333pt;}
.yd_c00324{bottom:650.652000pt;}
.yc_c00324{bottom:717.213333pt;}
.ya_c00324{bottom:771.654667pt;}
.y9_c00324{bottom:825.894667pt;}
.y8_c00324{bottom:880.294667pt;}
.y4_c00324{bottom:934.534667pt;}
.y2_c00324{bottom:988.934667pt;}
.h6_c00324{height:34.968828pt;}
.hd_c00324{height:40.000000pt;}
.h4_c00324{height:42.866250pt;}
.h2_c00324{height:42.895000pt;}
.h10_c00324{height:52.959867pt;}
.hf_c00324{height:52.960400pt;}
.he_c00324{height:52.992667pt;}
.h8_c00324{height:53.600000pt;}
.h5_c00324{height:53.758800pt;}
.h9_c00324{height:53.759867pt;}
.ha_c00324{height:53.791200pt;}
.hc_c00324{height:53.792667pt;}
.hb_c00324{height:65.920267pt;}
.h3_c00324{height:76.191733pt;}
.h7_c00324{height:404.185333pt;}
.h0_c00324{height:1122.559867pt;}
.h1_c00324{height:1122.666667pt;}
.w3_c00324{width:93.439600pt;}
.w4_c00324{width:133.312533pt;}
.w6_c00324{width:227.385333pt;}
.w5_c00324{width:392.706667pt;}
.w7_c00324{width:393.026667pt;}
.w2_c00324{width:620.733333pt;}
.w0_c00324{width:793.759733pt;}
.w1_c00324{width:794.000000pt;}
.x0_c00324{left:0.000000pt;}
.x4_c00324{left:4.319867pt;}
.x2_c00324{left:128.032800pt;}
.x1_c00324{left:132.352667pt;}
.x8_c00324{left:174.915200pt;}
.x3_c00324{left:179.555200pt;}
.x7_c00324{left:196.346667pt;}
.x5_c00324{left:222.106667pt;}
.x6_c00324{left:356.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_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_b4afbce4f73be568c8a71d8a.woff2')format("woff");}.ff1_c00325{font-family:ff1_c00325;line-height:0.666504;font-style:normal;font-weight:normal;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_7aa9c30852c4cfef6fbe2a9e.woff2')format("woff");}.ff2_c00325{font-family:ff2_c00325;line-height:0.938965;font-style:normal;font-weight:normal;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_1c84e557915e5449690ed554.woff2')format("woff");}.ff3_c00325{font-family:ff3_c00325;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00325;src:url('chunks/assets/font_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff4_c00325{font-family:ff4_c00325;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00325{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00325{vertical-align:0.000000px;}
.ls1_c00325{letter-spacing:0.000000px;}
.ls0_c00325{letter-spacing:0.217313px;}
.sc__c00325{text-shadow:none;}
.sc0_c00325{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00325{-webkit-text-stroke:0px transparent;}
.sc0_c00325{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00325{word-spacing:-15.012033px;}
.ws1_c00325{word-spacing:0.000000px;}
._2_c00325{margin-left:-1.234280px;}
._3_c00325{width:1.110640px;}
._1_c00325{width:997.561968px;}
._0_c00325{width:1345.983552px;}
.fc0_c00325{color:rgb(0,0,0);}
.fs1_c00325{font-size:54.000120px;}
.fs0_c00325{font-size:66.240000px;}
.y0_c00325{bottom:0.000000px;}
.y7_c00325{bottom:12.960000px;}
.y18_c00325{bottom:17.640000px;}
.y1b_c00325{bottom:17.641500px;}
.yf_c00325{bottom:24.481650px;}
.y21_c00325{bottom:25.019550px;}
.y1e_c00325{bottom:25.020000px;}
.yb_c00325{bottom:25.198500px;}
.y16_c00325{bottom:25.201500px;}
.y5_c00325{bottom:25.380000px;}
.y13_c00325{bottom:25.381500px;}
.y11_c00325{bottom:32.220000px;}
.y10_c00325{bottom:32.221500px;}
.y3_c00325{bottom:36.930000px;}
.ye_c00325{bottom:39.961500px;}
.y1_c00325{bottom:56.556450px;}
.y22_c00325{bottom:93.456450px;}
.y20_c00325{bottom:109.836900px;}
.y1f_c00325{bottom:170.130000px;}
.y1d_c00325{bottom:230.430000px;}
.y1c_c00325{bottom:290.775000px;}
.y1a_c00325{bottom:336.495000px;}
.y19_c00325{bottom:382.216500px;}
.y17_c00325{bottom:428.116500px;}
.y15_c00325{bottom:473.835000px;}
.y14_c00325{bottom:534.855000px;}
.y12_c00325{bottom:596.083500px;}
.y6_c00325{bottom:657.105000px;}
.yd_c00325{bottom:731.983500px;}
.yc_c00325{bottom:806.865000px;}
.ya_c00325{bottom:868.111500px;}
.y9_c00325{bottom:929.131500px;}
.y8_c00325{bottom:990.331500px;}
.y4_c00325{bottom:1051.351500px;}
.y2_c00325{bottom:1112.551500px;}
.h6_c00325{height:39.339931px;}
.hd_c00325{height:45.000000px;}
.h4_c00325{height:48.224531px;}
.h2_c00325{height:48.256875px;}
.h10_c00325{height:59.579850px;}
.hf_c00325{height:59.580450px;}
.he_c00325{height:59.616750px;}
.h8_c00325{height:60.300000px;}
.h5_c00325{height:60.478650px;}
.h9_c00325{height:60.479850px;}
.ha_c00325{height:60.515100px;}
.hc_c00325{height:60.516750px;}
.hb_c00325{height:74.160300px;}
.h3_c00325{height:85.715700px;}
.h7_c00325{height:454.708500px;}
.h0_c00325{height:1262.879850px;}
.h1_c00325{height:1263.000000px;}
.w3_c00325{width:105.119550px;}
.w4_c00325{width:149.976600px;}
.w6_c00325{width:255.808500px;}
.w5_c00325{width:441.795000px;}
.w7_c00325{width:442.155000px;}
.w2_c00325{width:698.325000px;}
.w0_c00325{width:892.979700px;}
.w1_c00325{width:893.250000px;}
.x0_c00325{left:0.000000px;}
.x4_c00325{left:4.859850px;}
.x2_c00325{left:144.036900px;}
.x1_c00325{left:148.896750px;}
.x8_c00325{left:196.779600px;}
.x3_c00325{left:201.999600px;}
.x7_c00325{left:220.890000px;}
.x5_c00325{left:249.870000px;}
.x6_c00325{left:400.575000px;}
@media print{
.v0_c00325{vertical-align:0.000000pt;}
.ls1_c00325{letter-spacing:0.000000pt;}
.ls0_c00325{letter-spacing:0.193167pt;}
.ws0_c00325{word-spacing:-13.344030pt;}
.ws1_c00325{word-spacing:0.000000pt;}
._2_c00325{margin-left:-1.097138pt;}
._3_c00325{width:0.987236pt;}
._1_c00325{width:886.721749pt;}
._0_c00325{width:1196.429824pt;}
.fs1_c00325{font-size:48.000107pt;}
.fs0_c00325{font-size:58.880000pt;}
.y0_c00325{bottom:0.000000pt;}
.y7_c00325{bottom:11.520000pt;}
.y18_c00325{bottom:15.680000pt;}
.y1b_c00325{bottom:15.681333pt;}
.yf_c00325{bottom:21.761467pt;}
.y21_c00325{bottom:22.239600pt;}
.y1e_c00325{bottom:22.240000pt;}
.yb_c00325{bottom:22.398667pt;}
.y16_c00325{bottom:22.401333pt;}
.y5_c00325{bottom:22.560000pt;}
.y13_c00325{bottom:22.561333pt;}
.y11_c00325{bottom:28.640000pt;}
.y10_c00325{bottom:28.641333pt;}
.y3_c00325{bottom:32.826667pt;}
.ye_c00325{bottom:35.521333pt;}
.y1_c00325{bottom:50.272400pt;}
.y22_c00325{bottom:83.072400pt;}
.y20_c00325{bottom:97.632800pt;}
.y1f_c00325{bottom:151.226667pt;}
.y1d_c00325{bottom:204.826667pt;}
.y1c_c00325{bottom:258.466667pt;}
.y1a_c00325{bottom:299.106667pt;}
.y19_c00325{bottom:339.748000pt;}
.y17_c00325{bottom:380.548000pt;}
.y15_c00325{bottom:421.186667pt;}
.y14_c00325{bottom:475.426667pt;}
.y12_c00325{bottom:529.852000pt;}
.y6_c00325{bottom:584.093333pt;}
.yd_c00325{bottom:650.652000pt;}
.yc_c00325{bottom:717.213333pt;}
.ya_c00325{bottom:771.654667pt;}
.y9_c00325{bottom:825.894667pt;}
.y8_c00325{bottom:880.294667pt;}
.y4_c00325{bottom:934.534667pt;}
.y2_c00325{bottom:988.934667pt;}
.h6_c00325{height:34.968828pt;}
.hd_c00325{height:40.000000pt;}
.h4_c00325{height:42.866250pt;}
.h2_c00325{height:42.895000pt;}
.h10_c00325{height:52.959867pt;}
.hf_c00325{height:52.960400pt;}
.he_c00325{height:52.992667pt;}
.h8_c00325{height:53.600000pt;}
.h5_c00325{height:53.758800pt;}
.h9_c00325{height:53.759867pt;}
.ha_c00325{height:53.791200pt;}
.hc_c00325{height:53.792667pt;}
.hb_c00325{height:65.920267pt;}
.h3_c00325{height:76.191733pt;}
.h7_c00325{height:404.185333pt;}
.h0_c00325{height:1122.559867pt;}
.h1_c00325{height:1122.666667pt;}
.w3_c00325{width:93.439600pt;}
.w4_c00325{width:133.312533pt;}
.w6_c00325{width:227.385333pt;}
.w5_c00325{width:392.706667pt;}
.w7_c00325{width:393.026667pt;}
.w2_c00325{width:620.733333pt;}
.w0_c00325{width:793.759733pt;}
.w1_c00325{width:794.000000pt;}
.x0_c00325{left:0.000000pt;}
.x4_c00325{left:4.319867pt;}
.x2_c00325{left:128.032800pt;}
.x1_c00325{left:132.352667pt;}
.x8_c00325{left:174.915200pt;}
.x3_c00325{left:179.555200pt;}
.x7_c00325{left:196.346667pt;}
.x5_c00325{left:222.106667pt;}
.x6_c00325{left:356.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_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_b4afbce4f73be568c8a71d8a.woff2')format("woff");}.ff1_c00326{font-family:ff1_c00326;line-height:0.666504;font-style:normal;font-weight:normal;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_f314096a0f58c854efcb7e84.woff2')format("woff");}.ff2_c00326{font-family:ff2_c00326;line-height:0.938965;font-style:normal;font-weight:normal;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_1c84e557915e5449690ed554.woff2')format("woff");}.ff3_c00326{font-family:ff3_c00326;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00326;src:url('chunks/assets/font_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff4_c00326{font-family:ff4_c00326;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00326{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00326{vertical-align:0.000000px;}
.ls1_c00326{letter-spacing:0.000000px;}
.ls0_c00326{letter-spacing:0.217313px;}
.sc__c00326{text-shadow:none;}
.sc0_c00326{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00326{-webkit-text-stroke:0px transparent;}
.sc0_c00326{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00326{word-spacing:-15.012033px;}
.ws1_c00326{word-spacing:0.000000px;}
._2_c00326{margin-left:-1.234280px;}
._3_c00326{width:1.110640px;}
._1_c00326{width:997.561968px;}
._0_c00326{width:1345.983552px;}
.fc0_c00326{color:rgb(0,0,0);}
.fs1_c00326{font-size:54.000120px;}
.fs0_c00326{font-size:66.240000px;}
.y0_c00326{bottom:0.000000px;}
.y7_c00326{bottom:12.960000px;}
.y18_c00326{bottom:17.640000px;}
.y1b_c00326{bottom:17.641500px;}
.yf_c00326{bottom:24.481650px;}
.y21_c00326{bottom:25.019550px;}
.y1e_c00326{bottom:25.020000px;}
.yb_c00326{bottom:25.198500px;}
.y16_c00326{bottom:25.201500px;}
.y5_c00326{bottom:25.380000px;}
.y13_c00326{bottom:25.381500px;}
.y11_c00326{bottom:32.220000px;}
.y10_c00326{bottom:32.221500px;}
.y3_c00326{bottom:36.930000px;}
.ye_c00326{bottom:39.961500px;}
.y1_c00326{bottom:56.556450px;}
.y22_c00326{bottom:93.456450px;}
.y20_c00326{bottom:109.836900px;}
.y1f_c00326{bottom:170.130000px;}
.y1d_c00326{bottom:230.430000px;}
.y1c_c00326{bottom:290.775000px;}
.y1a_c00326{bottom:336.495000px;}
.y19_c00326{bottom:382.216500px;}
.y17_c00326{bottom:428.116500px;}
.y15_c00326{bottom:473.835000px;}
.y14_c00326{bottom:534.855000px;}
.y12_c00326{bottom:596.083500px;}
.y6_c00326{bottom:657.105000px;}
.yd_c00326{bottom:731.983500px;}
.yc_c00326{bottom:806.865000px;}
.ya_c00326{bottom:868.111500px;}
.y9_c00326{bottom:929.131500px;}
.y8_c00326{bottom:990.331500px;}
.y4_c00326{bottom:1051.351500px;}
.y2_c00326{bottom:1112.551500px;}
.h6_c00326{height:39.339931px;}
.hd_c00326{height:45.000000px;}
.h4_c00326{height:48.224531px;}
.h2_c00326{height:48.256875px;}
.h10_c00326{height:59.579850px;}
.hf_c00326{height:59.580450px;}
.he_c00326{height:59.616750px;}
.h8_c00326{height:60.300000px;}
.h5_c00326{height:60.478650px;}
.h9_c00326{height:60.479850px;}
.ha_c00326{height:60.515100px;}
.hc_c00326{height:60.516750px;}
.hb_c00326{height:74.160300px;}
.h3_c00326{height:85.715700px;}
.h7_c00326{height:454.708500px;}
.h0_c00326{height:1262.879850px;}
.h1_c00326{height:1263.000000px;}
.w3_c00326{width:105.119550px;}
.w4_c00326{width:149.976600px;}
.w6_c00326{width:255.808500px;}
.w5_c00326{width:441.795000px;}
.w7_c00326{width:442.155000px;}
.w2_c00326{width:698.325000px;}
.w0_c00326{width:892.979700px;}
.w1_c00326{width:893.250000px;}
.x0_c00326{left:0.000000px;}
.x4_c00326{left:4.859850px;}
.x2_c00326{left:144.036900px;}
.x1_c00326{left:148.896750px;}
.x8_c00326{left:196.779600px;}
.x3_c00326{left:201.999600px;}
.x7_c00326{left:220.890000px;}
.x5_c00326{left:249.870000px;}
.x6_c00326{left:400.575000px;}
@media print{
.v0_c00326{vertical-align:0.000000pt;}
.ls1_c00326{letter-spacing:0.000000pt;}
.ls0_c00326{letter-spacing:0.193167pt;}
.ws0_c00326{word-spacing:-13.344030pt;}
.ws1_c00326{word-spacing:0.000000pt;}
._2_c00326{margin-left:-1.097138pt;}
._3_c00326{width:0.987236pt;}
._1_c00326{width:886.721749pt;}
._0_c00326{width:1196.429824pt;}
.fs1_c00326{font-size:48.000107pt;}
.fs0_c00326{font-size:58.880000pt;}
.y0_c00326{bottom:0.000000pt;}
.y7_c00326{bottom:11.520000pt;}
.y18_c00326{bottom:15.680000pt;}
.y1b_c00326{bottom:15.681333pt;}
.yf_c00326{bottom:21.761467pt;}
.y21_c00326{bottom:22.239600pt;}
.y1e_c00326{bottom:22.240000pt;}
.yb_c00326{bottom:22.398667pt;}
.y16_c00326{bottom:22.401333pt;}
.y5_c00326{bottom:22.560000pt;}
.y13_c00326{bottom:22.561333pt;}
.y11_c00326{bottom:28.640000pt;}
.y10_c00326{bottom:28.641333pt;}
.y3_c00326{bottom:32.826667pt;}
.ye_c00326{bottom:35.521333pt;}
.y1_c00326{bottom:50.272400pt;}
.y22_c00326{bottom:83.072400pt;}
.y20_c00326{bottom:97.632800pt;}
.y1f_c00326{bottom:151.226667pt;}
.y1d_c00326{bottom:204.826667pt;}
.y1c_c00326{bottom:258.466667pt;}
.y1a_c00326{bottom:299.106667pt;}
.y19_c00326{bottom:339.748000pt;}
.y17_c00326{bottom:380.548000pt;}
.y15_c00326{bottom:421.186667pt;}
.y14_c00326{bottom:475.426667pt;}
.y12_c00326{bottom:529.852000pt;}
.y6_c00326{bottom:584.093333pt;}
.yd_c00326{bottom:650.652000pt;}
.yc_c00326{bottom:717.213333pt;}
.ya_c00326{bottom:771.654667pt;}
.y9_c00326{bottom:825.894667pt;}
.y8_c00326{bottom:880.294667pt;}
.y4_c00326{bottom:934.534667pt;}
.y2_c00326{bottom:988.934667pt;}
.h6_c00326{height:34.968828pt;}
.hd_c00326{height:40.000000pt;}
.h4_c00326{height:42.866250pt;}
.h2_c00326{height:42.895000pt;}
.h10_c00326{height:52.959867pt;}
.hf_c00326{height:52.960400pt;}
.he_c00326{height:52.992667pt;}
.h8_c00326{height:53.600000pt;}
.h5_c00326{height:53.758800pt;}
.h9_c00326{height:53.759867pt;}
.ha_c00326{height:53.791200pt;}
.hc_c00326{height:53.792667pt;}
.hb_c00326{height:65.920267pt;}
.h3_c00326{height:76.191733pt;}
.h7_c00326{height:404.185333pt;}
.h0_c00326{height:1122.559867pt;}
.h1_c00326{height:1122.666667pt;}
.w3_c00326{width:93.439600pt;}
.w4_c00326{width:133.312533pt;}
.w6_c00326{width:227.385333pt;}
.w5_c00326{width:392.706667pt;}
.w7_c00326{width:393.026667pt;}
.w2_c00326{width:620.733333pt;}
.w0_c00326{width:793.759733pt;}
.w1_c00326{width:794.000000pt;}
.x0_c00326{left:0.000000pt;}
.x4_c00326{left:4.319867pt;}
.x2_c00326{left:128.032800pt;}
.x1_c00326{left:132.352667pt;}
.x8_c00326{left:174.915200pt;}
.x3_c00326{left:179.555200pt;}
.x7_c00326{left:196.346667pt;}
.x5_c00326{left:222.106667pt;}
.x6_c00326{left:356.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_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_b4afbce4f73be568c8a71d8a.woff2')format("woff");}.ff1_c00327{font-family:ff1_c00327;line-height:0.666504;font-style:normal;font-weight:normal;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_f6f17270aa6321496c2ced24.woff2')format("woff");}.ff2_c00327{font-family:ff2_c00327;line-height:0.938965;font-style:normal;font-weight:normal;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_1c84e557915e5449690ed554.woff2')format("woff");}.ff3_c00327{font-family:ff3_c00327;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00327;src:url('chunks/assets/font_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff4_c00327{font-family:ff4_c00327;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00327{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00327{vertical-align:0.000000px;}
.ls2_c00327{letter-spacing:0.000000px;}
.ls1_c00327{letter-spacing:0.214973px;}
.ls0_c00327{letter-spacing:0.217313px;}
.sc__c00327{text-shadow:none;}
.sc0_c00327{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00327{-webkit-text-stroke:0px transparent;}
.sc0_c00327{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00327{word-spacing:-15.012033px;}
.ws1_c00327{word-spacing:0.000000px;}
._2_c00327{margin-left:-1.234280px;}
._3_c00327{width:1.110640px;}
._1_c00327{width:997.561968px;}
._0_c00327{width:1345.983552px;}
.fc0_c00327{color:rgb(0,0,0);}
.fs1_c00327{font-size:54.000120px;}
.fs0_c00327{font-size:66.240000px;}
.y0_c00327{bottom:0.000000px;}
.y17_c00327{bottom:17.640000px;}
.y1a_c00327{bottom:17.641500px;}
.y7_c00327{bottom:20.700000px;}
.yf_c00327{bottom:24.481650px;}
.y20_c00327{bottom:25.019550px;}
.y1d_c00327{bottom:25.020000px;}
.yb_c00327{bottom:25.198500px;}
.y15_c00327{bottom:25.201500px;}
.y5_c00327{bottom:25.380000px;}
.y12_c00327{bottom:25.381500px;}
.y10_c00327{bottom:32.220000px;}
.y3_c00327{bottom:36.930000px;}
.ye_c00327{bottom:39.961500px;}
.y1_c00327{bottom:56.556450px;}
.y21_c00327{bottom:93.456450px;}
.y1f_c00327{bottom:109.836900px;}
.y1e_c00327{bottom:170.130000px;}
.y1c_c00327{bottom:230.430000px;}
.y1b_c00327{bottom:290.775000px;}
.y19_c00327{bottom:336.495000px;}
.y18_c00327{bottom:382.216500px;}
.y16_c00327{bottom:428.116500px;}
.y14_c00327{bottom:473.835000px;}
.y13_c00327{bottom:534.855000px;}
.y11_c00327{bottom:596.083500px;}
.y6_c00327{bottom:657.105000px;}
.yd_c00327{bottom:731.983500px;}
.yc_c00327{bottom:806.865000px;}
.ya_c00327{bottom:868.111500px;}
.y9_c00327{bottom:929.131500px;}
.y8_c00327{bottom:990.331500px;}
.y4_c00327{bottom:1051.351500px;}
.y2_c00327{bottom:1112.551500px;}
.h6_c00327{height:39.339931px;}
.hd_c00327{height:45.000000px;}
.h4_c00327{height:48.224531px;}
.h2_c00327{height:48.256875px;}
.h10_c00327{height:59.579850px;}
.hf_c00327{height:59.580450px;}
.he_c00327{height:59.616750px;}
.h8_c00327{height:60.300000px;}
.h5_c00327{height:60.478650px;}
.h9_c00327{height:60.479850px;}
.ha_c00327{height:60.515100px;}
.hc_c00327{height:60.516750px;}
.hb_c00327{height:74.160300px;}
.h3_c00327{height:85.715700px;}
.h7_c00327{height:454.708500px;}
.h0_c00327{height:1262.879850px;}
.h1_c00327{height:1263.000000px;}
.w3_c00327{width:105.119550px;}
.w4_c00327{width:149.976600px;}
.w6_c00327{width:255.808500px;}
.w5_c00327{width:441.795000px;}
.w7_c00327{width:442.155000px;}
.w2_c00327{width:698.325000px;}
.w0_c00327{width:892.979700px;}
.w1_c00327{width:893.250000px;}
.x0_c00327{left:0.000000px;}
.x4_c00327{left:4.859850px;}
.x2_c00327{left:144.036900px;}
.x1_c00327{left:148.896750px;}
.x8_c00327{left:196.779600px;}
.x3_c00327{left:201.999600px;}
.x7_c00327{left:220.890000px;}
.x5_c00327{left:249.870000px;}
.x6_c00327{left:400.575000px;}
@media print{
.v0_c00327{vertical-align:0.000000pt;}
.ls2_c00327{letter-spacing:0.000000pt;}
.ls1_c00327{letter-spacing:0.191087pt;}
.ls0_c00327{letter-spacing:0.193167pt;}
.ws0_c00327{word-spacing:-13.344030pt;}
.ws1_c00327{word-spacing:0.000000pt;}
._2_c00327{margin-left:-1.097138pt;}
._3_c00327{width:0.987236pt;}
._1_c00327{width:886.721749pt;}
._0_c00327{width:1196.429824pt;}
.fs1_c00327{font-size:48.000107pt;}
.fs0_c00327{font-size:58.880000pt;}
.y0_c00327{bottom:0.000000pt;}
.y17_c00327{bottom:15.680000pt;}
.y1a_c00327{bottom:15.681333pt;}
.y7_c00327{bottom:18.400000pt;}
.yf_c00327{bottom:21.761467pt;}
.y20_c00327{bottom:22.239600pt;}
.y1d_c00327{bottom:22.240000pt;}
.yb_c00327{bottom:22.398667pt;}
.y15_c00327{bottom:22.401333pt;}
.y5_c00327{bottom:22.560000pt;}
.y12_c00327{bottom:22.561333pt;}
.y10_c00327{bottom:28.640000pt;}
.y3_c00327{bottom:32.826667pt;}
.ye_c00327{bottom:35.521333pt;}
.y1_c00327{bottom:50.272400pt;}
.y21_c00327{bottom:83.072400pt;}
.y1f_c00327{bottom:97.632800pt;}
.y1e_c00327{bottom:151.226667pt;}
.y1c_c00327{bottom:204.826667pt;}
.y1b_c00327{bottom:258.466667pt;}
.y19_c00327{bottom:299.106667pt;}
.y18_c00327{bottom:339.748000pt;}
.y16_c00327{bottom:380.548000pt;}
.y14_c00327{bottom:421.186667pt;}
.y13_c00327{bottom:475.426667pt;}
.y11_c00327{bottom:529.852000pt;}
.y6_c00327{bottom:584.093333pt;}
.yd_c00327{bottom:650.652000pt;}
.yc_c00327{bottom:717.213333pt;}
.ya_c00327{bottom:771.654667pt;}
.y9_c00327{bottom:825.894667pt;}
.y8_c00327{bottom:880.294667pt;}
.y4_c00327{bottom:934.534667pt;}
.y2_c00327{bottom:988.934667pt;}
.h6_c00327{height:34.968828pt;}
.hd_c00327{height:40.000000pt;}
.h4_c00327{height:42.866250pt;}
.h2_c00327{height:42.895000pt;}
.h10_c00327{height:52.959867pt;}
.hf_c00327{height:52.960400pt;}
.he_c00327{height:52.992667pt;}
.h8_c00327{height:53.600000pt;}
.h5_c00327{height:53.758800pt;}
.h9_c00327{height:53.759867pt;}
.ha_c00327{height:53.791200pt;}
.hc_c00327{height:53.792667pt;}
.hb_c00327{height:65.920267pt;}
.h3_c00327{height:76.191733pt;}
.h7_c00327{height:404.185333pt;}
.h0_c00327{height:1122.559867pt;}
.h1_c00327{height:1122.666667pt;}
.w3_c00327{width:93.439600pt;}
.w4_c00327{width:133.312533pt;}
.w6_c00327{width:227.385333pt;}
.w5_c00327{width:392.706667pt;}
.w7_c00327{width:393.026667pt;}
.w2_c00327{width:620.733333pt;}
.w0_c00327{width:793.759733pt;}
.w1_c00327{width:794.000000pt;}
.x0_c00327{left:0.000000pt;}
.x4_c00327{left:4.319867pt;}
.x2_c00327{left:128.032800pt;}
.x1_c00327{left:132.352667pt;}
.x8_c00327{left:174.915200pt;}
.x3_c00327{left:179.555200pt;}
.x7_c00327{left:196.346667pt;}
.x5_c00327{left:222.106667pt;}
.x6_c00327{left:356.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_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_b4afbce4f73be568c8a71d8a.woff2')format("woff");}.ff1_c00328{font-family:ff1_c00328;line-height:0.666504;font-style:normal;font-weight:normal;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_b9bbe04e361a52c550eb243d.woff2')format("woff");}.ff2_c00328{font-family:ff2_c00328;line-height:0.938965;font-style:normal;font-weight:normal;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_1c84e557915e5449690ed554.woff2')format("woff");}.ff3_c00328{font-family:ff3_c00328;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00328;src:url('chunks/assets/font_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff4_c00328{font-family:ff4_c00328;line-height:0.666504;font-style: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;}
.ls2_c00328{letter-spacing:0.000000px;}
.ls1_c00328{letter-spacing:0.214973px;}
.ls0_c00328{letter-spacing:0.217313px;}
.sc__c00328{text-shadow:none;}
.sc0_c00328{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00328{-webkit-text-stroke:0px transparent;}
.sc0_c00328{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00328{word-spacing:-15.012033px;}
.ws1_c00328{word-spacing:0.000000px;}
._2_c00328{margin-left:-1.234280px;}
._3_c00328{width:1.110640px;}
._1_c00328{width:997.561968px;}
._0_c00328{width:1345.983552px;}
.fc0_c00328{color:rgb(0,0,0);}
.fs1_c00328{font-size:54.000120px;}
.fs0_c00328{font-size:66.240000px;}
.y0_c00328{bottom:0.000000px;}
.y17_c00328{bottom:17.640000px;}
.y1a_c00328{bottom:17.641500px;}
.y7_c00328{bottom:20.700000px;}
.yf_c00328{bottom:24.481650px;}
.y20_c00328{bottom:25.019550px;}
.y1d_c00328{bottom:25.020000px;}
.yb_c00328{bottom:25.198500px;}
.y15_c00328{bottom:25.201500px;}
.y5_c00328{bottom:25.380000px;}
.y12_c00328{bottom:25.381500px;}
.y10_c00328{bottom:32.220000px;}
.y3_c00328{bottom:36.930000px;}
.ye_c00328{bottom:39.961500px;}
.y1_c00328{bottom:56.556450px;}
.y21_c00328{bottom:93.456450px;}
.y1f_c00328{bottom:109.836900px;}
.y1e_c00328{bottom:170.130000px;}
.y1c_c00328{bottom:230.430000px;}
.y1b_c00328{bottom:290.775000px;}
.y19_c00328{bottom:336.495000px;}
.y18_c00328{bottom:382.216500px;}
.y16_c00328{bottom:428.116500px;}
.y14_c00328{bottom:473.835000px;}
.y13_c00328{bottom:534.855000px;}
.y11_c00328{bottom:596.083500px;}
.y6_c00328{bottom:657.105000px;}
.yd_c00328{bottom:731.983500px;}
.yc_c00328{bottom:806.865000px;}
.ya_c00328{bottom:868.111500px;}
.y9_c00328{bottom:929.131500px;}
.y8_c00328{bottom:990.331500px;}
.y4_c00328{bottom:1051.351500px;}
.y2_c00328{bottom:1112.551500px;}
.h6_c00328{height:39.339931px;}
.hd_c00328{height:45.000000px;}
.h4_c00328{height:48.224531px;}
.h2_c00328{height:48.256875px;}
.h10_c00328{height:59.579850px;}
.hf_c00328{height:59.580450px;}
.he_c00328{height:59.616750px;}
.h8_c00328{height:60.300000px;}
.h5_c00328{height:60.478650px;}
.h9_c00328{height:60.479850px;}
.ha_c00328{height:60.515100px;}
.hc_c00328{height:60.516750px;}
.hb_c00328{height:74.160300px;}
.h3_c00328{height:85.715700px;}
.h7_c00328{height:454.708500px;}
.h0_c00328{height:1262.879850px;}
.h1_c00328{height:1263.000000px;}
.w3_c00328{width:105.119550px;}
.w4_c00328{width:149.976600px;}
.w6_c00328{width:255.808500px;}
.w5_c00328{width:441.795000px;}
.w7_c00328{width:442.155000px;}
.w2_c00328{width:698.325000px;}
.w0_c00328{width:892.979700px;}
.w1_c00328{width:893.250000px;}
.x0_c00328{left:0.000000px;}
.x4_c00328{left:4.859850px;}
.x2_c00328{left:144.036900px;}
.x1_c00328{left:148.896750px;}
.x8_c00328{left:196.779600px;}
.x3_c00328{left:201.999600px;}
.x7_c00328{left:220.890000px;}
.x5_c00328{left:249.870000px;}
.x6_c00328{left:400.575000px;}
@media print{
.v0_c00328{vertical-align:0.000000pt;}
.ls2_c00328{letter-spacing:0.000000pt;}
.ls1_c00328{letter-spacing:0.191087pt;}
.ls0_c00328{letter-spacing:0.193167pt;}
.ws0_c00328{word-spacing:-13.344030pt;}
.ws1_c00328{word-spacing:0.000000pt;}
._2_c00328{margin-left:-1.097138pt;}
._3_c00328{width:0.987236pt;}
._1_c00328{width:886.721749pt;}
._0_c00328{width:1196.429824pt;}
.fs1_c00328{font-size:48.000107pt;}
.fs0_c00328{font-size:58.880000pt;}
.y0_c00328{bottom:0.000000pt;}
.y17_c00328{bottom:15.680000pt;}
.y1a_c00328{bottom:15.681333pt;}
.y7_c00328{bottom:18.400000pt;}
.yf_c00328{bottom:21.761467pt;}
.y20_c00328{bottom:22.239600pt;}
.y1d_c00328{bottom:22.240000pt;}
.yb_c00328{bottom:22.398667pt;}
.y15_c00328{bottom:22.401333pt;}
.y5_c00328{bottom:22.560000pt;}
.y12_c00328{bottom:22.561333pt;}
.y10_c00328{bottom:28.640000pt;}
.y3_c00328{bottom:32.826667pt;}
.ye_c00328{bottom:35.521333pt;}
.y1_c00328{bottom:50.272400pt;}
.y21_c00328{bottom:83.072400pt;}
.y1f_c00328{bottom:97.632800pt;}
.y1e_c00328{bottom:151.226667pt;}
.y1c_c00328{bottom:204.826667pt;}
.y1b_c00328{bottom:258.466667pt;}
.y19_c00328{bottom:299.106667pt;}
.y18_c00328{bottom:339.748000pt;}
.y16_c00328{bottom:380.548000pt;}
.y14_c00328{bottom:421.186667pt;}
.y13_c00328{bottom:475.426667pt;}
.y11_c00328{bottom:529.852000pt;}
.y6_c00328{bottom:584.093333pt;}
.yd_c00328{bottom:650.652000pt;}
.yc_c00328{bottom:717.213333pt;}
.ya_c00328{bottom:771.654667pt;}
.y9_c00328{bottom:825.894667pt;}
.y8_c00328{bottom:880.294667pt;}
.y4_c00328{bottom:934.534667pt;}
.y2_c00328{bottom:988.934667pt;}
.h6_c00328{height:34.968828pt;}
.hd_c00328{height:40.000000pt;}
.h4_c00328{height:42.866250pt;}
.h2_c00328{height:42.895000pt;}
.h10_c00328{height:52.959867pt;}
.hf_c00328{height:52.960400pt;}
.he_c00328{height:52.992667pt;}
.h8_c00328{height:53.600000pt;}
.h5_c00328{height:53.758800pt;}
.h9_c00328{height:53.759867pt;}
.ha_c00328{height:53.791200pt;}
.hc_c00328{height:53.792667pt;}
.hb_c00328{height:65.920267pt;}
.h3_c00328{height:76.191733pt;}
.h7_c00328{height:404.185333pt;}
.h0_c00328{height:1122.559867pt;}
.h1_c00328{height:1122.666667pt;}
.w3_c00328{width:93.439600pt;}
.w4_c00328{width:133.312533pt;}
.w6_c00328{width:227.385333pt;}
.w5_c00328{width:392.706667pt;}
.w7_c00328{width:393.026667pt;}
.w2_c00328{width:620.733333pt;}
.w0_c00328{width:793.759733pt;}
.w1_c00328{width:794.000000pt;}
.x0_c00328{left:0.000000pt;}
.x4_c00328{left:4.319867pt;}
.x2_c00328{left:128.032800pt;}
.x1_c00328{left:132.352667pt;}
.x8_c00328{left:174.915200pt;}
.x3_c00328{left:179.555200pt;}
.x7_c00328{left:196.346667pt;}
.x5_c00328{left:222.106667pt;}
.x6_c00328{left:356.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_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_b4afbce4f73be568c8a71d8a.woff2')format("woff");}.ff1_c00329{font-family:ff1_c00329;line-height:0.666504;font-style:normal;font-weight:normal;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_11ef1ce79c6881e1ac7e83bb.woff2')format("woff");}.ff2_c00329{font-family:ff2_c00329;line-height:0.938965;font-style:normal;font-weight:normal;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_1c84e557915e5449690ed554.woff2')format("woff");}.ff3_c00329{font-family:ff3_c00329;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00329;src:url('chunks/assets/font_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff4_c00329{font-family:ff4_c00329;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00329{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00329{vertical-align:0.000000px;}
.ls1_c00329{letter-spacing:0.000000px;}
.ls0_c00329{letter-spacing:0.217313px;}
.sc__c00329{text-shadow:none;}
.sc0_c00329{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00329{-webkit-text-stroke:0px transparent;}
.sc0_c00329{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00329{word-spacing:-15.012033px;}
.ws1_c00329{word-spacing:0.000000px;}
._2_c00329{margin-left:-1.234280px;}
._3_c00329{width:1.110640px;}
._1_c00329{width:997.561968px;}
._0_c00329{width:1345.983552px;}
.fc0_c00329{color:rgb(0,0,0);}
.fs1_c00329{font-size:54.000120px;}
.fs0_c00329{font-size:66.240000px;}
.y0_c00329{bottom:0.000000px;}
.y18_c00329{bottom:17.640000px;}
.y1b_c00329{bottom:17.641500px;}
.yf_c00329{bottom:24.481650px;}
.y21_c00329{bottom:25.019550px;}
.y1e_c00329{bottom:25.020000px;}
.yb_c00329{bottom:25.198500px;}
.y16_c00329{bottom:25.201500px;}
.y5_c00329{bottom:25.380000px;}
.y13_c00329{bottom:25.381500px;}
.y11_c00329{bottom:32.220000px;}
.y10_c00329{bottom:32.221500px;}
.y7_c00329{bottom:36.180000px;}
.y3_c00329{bottom:36.930000px;}
.ye_c00329{bottom:39.961500px;}
.y1_c00329{bottom:56.556450px;}
.y22_c00329{bottom:93.456450px;}
.y20_c00329{bottom:109.836900px;}
.y1f_c00329{bottom:170.130000px;}
.y1d_c00329{bottom:230.430000px;}
.y1c_c00329{bottom:290.775000px;}
.y1a_c00329{bottom:336.495000px;}
.y19_c00329{bottom:382.216500px;}
.y17_c00329{bottom:428.116500px;}
.y15_c00329{bottom:473.835000px;}
.y14_c00329{bottom:534.855000px;}
.y12_c00329{bottom:596.083500px;}
.y6_c00329{bottom:657.105000px;}
.yd_c00329{bottom:731.983500px;}
.yc_c00329{bottom:806.865000px;}
.ya_c00329{bottom:868.111500px;}
.y9_c00329{bottom:929.131500px;}
.y8_c00329{bottom:990.331500px;}
.y4_c00329{bottom:1051.351500px;}
.y2_c00329{bottom:1112.551500px;}
.h6_c00329{height:39.339931px;}
.hd_c00329{height:45.000000px;}
.h4_c00329{height:48.224531px;}
.h2_c00329{height:48.256875px;}
.h10_c00329{height:59.579850px;}
.hf_c00329{height:59.580450px;}
.he_c00329{height:59.616750px;}
.h8_c00329{height:60.300000px;}
.h5_c00329{height:60.478650px;}
.h9_c00329{height:60.479850px;}
.ha_c00329{height:60.515100px;}
.hc_c00329{height:60.516750px;}
.hb_c00329{height:74.160300px;}
.h3_c00329{height:85.715700px;}
.h7_c00329{height:454.708500px;}
.h0_c00329{height:1262.879850px;}
.h1_c00329{height:1263.000000px;}
.w3_c00329{width:105.119550px;}
.w4_c00329{width:149.976600px;}
.w6_c00329{width:255.808500px;}
.w5_c00329{width:441.795000px;}
.w7_c00329{width:442.155000px;}
.w2_c00329{width:698.325000px;}
.w0_c00329{width:892.979700px;}
.w1_c00329{width:893.250000px;}
.x0_c00329{left:0.000000px;}
.x4_c00329{left:4.859850px;}
.x2_c00329{left:144.036900px;}
.x1_c00329{left:148.896750px;}
.x8_c00329{left:196.779600px;}
.x3_c00329{left:201.999600px;}
.x7_c00329{left:220.890000px;}
.x5_c00329{left:249.870000px;}
.x6_c00329{left:400.575000px;}
@media print{
.v0_c00329{vertical-align:0.000000pt;}
.ls1_c00329{letter-spacing:0.000000pt;}
.ls0_c00329{letter-spacing:0.193167pt;}
.ws0_c00329{word-spacing:-13.344030pt;}
.ws1_c00329{word-spacing:0.000000pt;}
._2_c00329{margin-left:-1.097138pt;}
._3_c00329{width:0.987236pt;}
._1_c00329{width:886.721749pt;}
._0_c00329{width:1196.429824pt;}
.fs1_c00329{font-size:48.000107pt;}
.fs0_c00329{font-size:58.880000pt;}
.y0_c00329{bottom:0.000000pt;}
.y18_c00329{bottom:15.680000pt;}
.y1b_c00329{bottom:15.681333pt;}
.yf_c00329{bottom:21.761467pt;}
.y21_c00329{bottom:22.239600pt;}
.y1e_c00329{bottom:22.240000pt;}
.yb_c00329{bottom:22.398667pt;}
.y16_c00329{bottom:22.401333pt;}
.y5_c00329{bottom:22.560000pt;}
.y13_c00329{bottom:22.561333pt;}
.y11_c00329{bottom:28.640000pt;}
.y10_c00329{bottom:28.641333pt;}
.y7_c00329{bottom:32.160000pt;}
.y3_c00329{bottom:32.826667pt;}
.ye_c00329{bottom:35.521333pt;}
.y1_c00329{bottom:50.272400pt;}
.y22_c00329{bottom:83.072400pt;}
.y20_c00329{bottom:97.632800pt;}
.y1f_c00329{bottom:151.226667pt;}
.y1d_c00329{bottom:204.826667pt;}
.y1c_c00329{bottom:258.466667pt;}
.y1a_c00329{bottom:299.106667pt;}
.y19_c00329{bottom:339.748000pt;}
.y17_c00329{bottom:380.548000pt;}
.y15_c00329{bottom:421.186667pt;}
.y14_c00329{bottom:475.426667pt;}
.y12_c00329{bottom:529.852000pt;}
.y6_c00329{bottom:584.093333pt;}
.yd_c00329{bottom:650.652000pt;}
.yc_c00329{bottom:717.213333pt;}
.ya_c00329{bottom:771.654667pt;}
.y9_c00329{bottom:825.894667pt;}
.y8_c00329{bottom:880.294667pt;}
.y4_c00329{bottom:934.534667pt;}
.y2_c00329{bottom:988.934667pt;}
.h6_c00329{height:34.968828pt;}
.hd_c00329{height:40.000000pt;}
.h4_c00329{height:42.866250pt;}
.h2_c00329{height:42.895000pt;}
.h10_c00329{height:52.959867pt;}
.hf_c00329{height:52.960400pt;}
.he_c00329{height:52.992667pt;}
.h8_c00329{height:53.600000pt;}
.h5_c00329{height:53.758800pt;}
.h9_c00329{height:53.759867pt;}
.ha_c00329{height:53.791200pt;}
.hc_c00329{height:53.792667pt;}
.hb_c00329{height:65.920267pt;}
.h3_c00329{height:76.191733pt;}
.h7_c00329{height:404.185333pt;}
.h0_c00329{height:1122.559867pt;}
.h1_c00329{height:1122.666667pt;}
.w3_c00329{width:93.439600pt;}
.w4_c00329{width:133.312533pt;}
.w6_c00329{width:227.385333pt;}
.w5_c00329{width:392.706667pt;}
.w7_c00329{width:393.026667pt;}
.w2_c00329{width:620.733333pt;}
.w0_c00329{width:793.759733pt;}
.w1_c00329{width:794.000000pt;}
.x0_c00329{left:0.000000pt;}
.x4_c00329{left:4.319867pt;}
.x2_c00329{left:128.032800pt;}
.x1_c00329{left:132.352667pt;}
.x8_c00329{left:174.915200pt;}
.x3_c00329{left:179.555200pt;}
.x7_c00329{left:196.346667pt;}
.x5_c00329{left:222.106667pt;}
.x6_c00329{left:356.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_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_b4afbce4f73be568c8a71d8a.woff2')format("woff");}.ff1_c00330{font-family:ff1_c00330;line-height:0.666504;font-style:normal;font-weight:normal;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_11ef1ce79c6881e1ac7e83bb.woff2')format("woff");}.ff2_c00330{font-family:ff2_c00330;line-height:0.938965;font-style:normal;font-weight:normal;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_1c84e557915e5449690ed554.woff2')format("woff");}.ff3_c00330{font-family:ff3_c00330;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00330;src:url('chunks/assets/font_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff4_c00330{font-family:ff4_c00330;line-height:0.666504;font-style: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;}
.ls1_c00330{letter-spacing:0.000000px;}
.ls0_c00330{letter-spacing:0.217313px;}
.sc__c00330{text-shadow:none;}
.sc0_c00330{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00330{-webkit-text-stroke:0px transparent;}
.sc0_c00330{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00330{word-spacing:-15.012033px;}
.ws1_c00330{word-spacing:0.000000px;}
._2_c00330{margin-left:-1.234280px;}
._3_c00330{width:1.110640px;}
._1_c00330{width:997.561968px;}
._0_c00330{width:1345.983552px;}
.fc0_c00330{color:rgb(0,0,0);}
.fs1_c00330{font-size:54.000120px;}
.fs0_c00330{font-size:66.240000px;}
.y0_c00330{bottom:0.000000px;}
.y7_c00330{bottom:5.220000px;}
.y1a_c00330{bottom:17.640000px;}
.ye_c00330{bottom:17.640750px;}
.y1d_c00330{bottom:17.641500px;}
.y11_c00330{bottom:24.481650px;}
.y23_c00330{bottom:25.019550px;}
.y20_c00330{bottom:25.020000px;}
.yb_c00330{bottom:25.198500px;}
.y18_c00330{bottom:25.201500px;}
.y5_c00330{bottom:25.380000px;}
.y15_c00330{bottom:25.381500px;}
.y13_c00330{bottom:32.220000px;}
.y12_c00330{bottom:32.221500px;}
.yd_c00330{bottom:33.120000px;}
.y3_c00330{bottom:36.930000px;}
.y10_c00330{bottom:39.961500px;}
.y1_c00330{bottom:56.556450px;}
.y24_c00330{bottom:93.456450px;}
.y22_c00330{bottom:109.836900px;}
.y21_c00330{bottom:170.130000px;}
.y1f_c00330{bottom:230.430000px;}
.y1e_c00330{bottom:290.775000px;}
.y1c_c00330{bottom:336.495000px;}
.y1b_c00330{bottom:382.216500px;}
.y19_c00330{bottom:428.116500px;}
.y17_c00330{bottom:473.835000px;}
.y16_c00330{bottom:534.855000px;}
.y14_c00330{bottom:596.083500px;}
.y6_c00330{bottom:657.105000px;}
.yf_c00330{bottom:731.983500px;}
.yc_c00330{bottom:806.865000px;}
.ya_c00330{bottom:868.111500px;}
.y9_c00330{bottom:929.131500px;}
.y8_c00330{bottom:990.331500px;}
.y4_c00330{bottom:1051.351500px;}
.y2_c00330{bottom:1112.551500px;}
.h6_c00330{height:39.339931px;}
.hd_c00330{height:45.000000px;}
.h4_c00330{height:48.224531px;}
.h2_c00330{height:48.256875px;}
.h10_c00330{height:59.579850px;}
.hf_c00330{height:59.580450px;}
.he_c00330{height:59.616750px;}
.h8_c00330{height:60.300000px;}
.h5_c00330{height:60.478650px;}
.h9_c00330{height:60.479850px;}
.ha_c00330{height:60.515100px;}
.hc_c00330{height:60.516750px;}
.hb_c00330{height:74.160300px;}
.h3_c00330{height:85.715700px;}
.h7_c00330{height:454.708500px;}
.h0_c00330{height:1262.879850px;}
.h1_c00330{height:1263.000000px;}
.w3_c00330{width:105.119550px;}
.w4_c00330{width:149.976600px;}
.w6_c00330{width:255.808500px;}
.w5_c00330{width:455.295000px;}
.w7_c00330{width:455.655000px;}
.w2_c00330{width:711.825000px;}
.w0_c00330{width:892.979700px;}
.w1_c00330{width:893.250000px;}
.x0_c00330{left:0.000000px;}
.x4_c00330{left:4.859850px;}
.x2_c00330{left:144.036900px;}
.x1_c00330{left:148.896750px;}
.x8_c00330{left:203.438100px;}
.x3_c00330{left:208.659600px;}
.x7_c00330{left:227.550000px;}
.x5_c00330{left:249.870000px;}
.x6_c00330{left:400.575000px;}
@media print{
.v0_c00330{vertical-align:0.000000pt;}
.ls1_c00330{letter-spacing:0.000000pt;}
.ls0_c00330{letter-spacing:0.193167pt;}
.ws0_c00330{word-spacing:-13.344030pt;}
.ws1_c00330{word-spacing:0.000000pt;}
._2_c00330{margin-left:-1.097138pt;}
._3_c00330{width:0.987236pt;}
._1_c00330{width:886.721749pt;}
._0_c00330{width:1196.429824pt;}
.fs1_c00330{font-size:48.000107pt;}
.fs0_c00330{font-size:58.880000pt;}
.y0_c00330{bottom:0.000000pt;}
.y7_c00330{bottom:4.640000pt;}
.y1a_c00330{bottom:15.680000pt;}
.ye_c00330{bottom:15.680667pt;}
.y1d_c00330{bottom:15.681333pt;}
.y11_c00330{bottom:21.761467pt;}
.y23_c00330{bottom:22.239600pt;}
.y20_c00330{bottom:22.240000pt;}
.yb_c00330{bottom:22.398667pt;}
.y18_c00330{bottom:22.401333pt;}
.y5_c00330{bottom:22.560000pt;}
.y15_c00330{bottom:22.561333pt;}
.y13_c00330{bottom:28.640000pt;}
.y12_c00330{bottom:28.641333pt;}
.yd_c00330{bottom:29.440000pt;}
.y3_c00330{bottom:32.826667pt;}
.y10_c00330{bottom:35.521333pt;}
.y1_c00330{bottom:50.272400pt;}
.y24_c00330{bottom:83.072400pt;}
.y22_c00330{bottom:97.632800pt;}
.y21_c00330{bottom:151.226667pt;}
.y1f_c00330{bottom:204.826667pt;}
.y1e_c00330{bottom:258.466667pt;}
.y1c_c00330{bottom:299.106667pt;}
.y1b_c00330{bottom:339.748000pt;}
.y19_c00330{bottom:380.548000pt;}
.y17_c00330{bottom:421.186667pt;}
.y16_c00330{bottom:475.426667pt;}
.y14_c00330{bottom:529.852000pt;}
.y6_c00330{bottom:584.093333pt;}
.yf_c00330{bottom:650.652000pt;}
.yc_c00330{bottom:717.213333pt;}
.ya_c00330{bottom:771.654667pt;}
.y9_c00330{bottom:825.894667pt;}
.y8_c00330{bottom:880.294667pt;}
.y4_c00330{bottom:934.534667pt;}
.y2_c00330{bottom:988.934667pt;}
.h6_c00330{height:34.968828pt;}
.hd_c00330{height:40.000000pt;}
.h4_c00330{height:42.866250pt;}
.h2_c00330{height:42.895000pt;}
.h10_c00330{height:52.959867pt;}
.hf_c00330{height:52.960400pt;}
.he_c00330{height:52.992667pt;}
.h8_c00330{height:53.600000pt;}
.h5_c00330{height:53.758800pt;}
.h9_c00330{height:53.759867pt;}
.ha_c00330{height:53.791200pt;}
.hc_c00330{height:53.792667pt;}
.hb_c00330{height:65.920267pt;}
.h3_c00330{height:76.191733pt;}
.h7_c00330{height:404.185333pt;}
.h0_c00330{height:1122.559867pt;}
.h1_c00330{height:1122.666667pt;}
.w3_c00330{width:93.439600pt;}
.w4_c00330{width:133.312533pt;}
.w6_c00330{width:227.385333pt;}
.w5_c00330{width:404.706667pt;}
.w7_c00330{width:405.026667pt;}
.w2_c00330{width:632.733333pt;}
.w0_c00330{width:793.759733pt;}
.w1_c00330{width:794.000000pt;}
.x0_c00330{left:0.000000pt;}
.x4_c00330{left:4.319867pt;}
.x2_c00330{left:128.032800pt;}
.x1_c00330{left:132.352667pt;}
.x8_c00330{left:180.833867pt;}
.x3_c00330{left:185.475200pt;}
.x7_c00330{left:202.266667pt;}
.x5_c00330{left:222.106667pt;}
.x6_c00330{left:356.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_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_b4afbce4f73be568c8a71d8a.woff2')format("woff");}.ff1_c00331{font-family:ff1_c00331;line-height:0.666504;font-style:normal;font-weight:normal;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_1619a3d147bb4a673e058f8b.woff2')format("woff");}.ff2_c00331{font-family:ff2_c00331;line-height:0.938965;font-style:normal;font-weight:normal;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_1c84e557915e5449690ed554.woff2')format("woff");}.ff3_c00331{font-family:ff3_c00331;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00331;src:url('chunks/assets/font_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff4_c00331{font-family:ff4_c00331;line-height:0.666504;font-style: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;}
.ls1_c00331{letter-spacing:0.000000px;}
.ls0_c00331{letter-spacing:0.217313px;}
.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:-15.012033px;}
.ws1_c00331{word-spacing:0.000000px;}
._2_c00331{margin-left:-1.234280px;}
._3_c00331{width:1.110640px;}
._1_c00331{width:997.561968px;}
._0_c00331{width:1345.983552px;}
.fc0_c00331{color:rgb(0,0,0);}
.fs1_c00331{font-size:54.000120px;}
.fs0_c00331{font-size:66.240000px;}
.y0_c00331{bottom:0.000000px;}
.y7_c00331{bottom:5.220000px;}
.y1a_c00331{bottom:17.640000px;}
.ye_c00331{bottom:17.640750px;}
.y1d_c00331{bottom:17.641500px;}
.y11_c00331{bottom:24.481650px;}
.y23_c00331{bottom:25.019550px;}
.y20_c00331{bottom:25.020000px;}
.yb_c00331{bottom:25.198500px;}
.y18_c00331{bottom:25.201500px;}
.y5_c00331{bottom:25.380000px;}
.y15_c00331{bottom:25.381500px;}
.y13_c00331{bottom:32.220000px;}
.y12_c00331{bottom:32.221500px;}
.yd_c00331{bottom:33.120000px;}
.y3_c00331{bottom:36.930000px;}
.y10_c00331{bottom:39.961500px;}
.y1_c00331{bottom:56.556450px;}
.y24_c00331{bottom:93.456450px;}
.y22_c00331{bottom:109.836900px;}
.y21_c00331{bottom:170.130000px;}
.y1f_c00331{bottom:230.430000px;}
.y1e_c00331{bottom:290.775000px;}
.y1c_c00331{bottom:336.495000px;}
.y1b_c00331{bottom:382.216500px;}
.y19_c00331{bottom:428.116500px;}
.y17_c00331{bottom:473.835000px;}
.y16_c00331{bottom:534.855000px;}
.y14_c00331{bottom:596.083500px;}
.y6_c00331{bottom:657.105000px;}
.yf_c00331{bottom:731.983500px;}
.yc_c00331{bottom:806.865000px;}
.ya_c00331{bottom:868.111500px;}
.y9_c00331{bottom:929.131500px;}
.y8_c00331{bottom:990.331500px;}
.y4_c00331{bottom:1051.351500px;}
.y2_c00331{bottom:1112.551500px;}
.h6_c00331{height:39.339931px;}
.hd_c00331{height:45.000000px;}
.h4_c00331{height:48.224531px;}
.h2_c00331{height:48.256875px;}
.h10_c00331{height:59.579850px;}
.hf_c00331{height:59.580450px;}
.he_c00331{height:59.616750px;}
.h8_c00331{height:60.300000px;}
.h5_c00331{height:60.478650px;}
.h9_c00331{height:60.479850px;}
.ha_c00331{height:60.515100px;}
.hc_c00331{height:60.516750px;}
.hb_c00331{height:74.160300px;}
.h3_c00331{height:85.715700px;}
.h7_c00331{height:454.708500px;}
.h0_c00331{height:1262.879850px;}
.h1_c00331{height:1263.000000px;}
.w3_c00331{width:105.119550px;}
.w4_c00331{width:149.976600px;}
.w6_c00331{width:255.808500px;}
.w5_c00331{width:455.295000px;}
.w7_c00331{width:455.655000px;}
.w2_c00331{width:711.825000px;}
.w0_c00331{width:892.979700px;}
.w1_c00331{width:893.250000px;}
.x0_c00331{left:0.000000px;}
.x4_c00331{left:4.859850px;}
.x2_c00331{left:144.036900px;}
.x1_c00331{left:148.896750px;}
.x8_c00331{left:203.438100px;}
.x3_c00331{left:208.659600px;}
.x7_c00331{left:227.550000px;}
.x5_c00331{left:249.870000px;}
.x6_c00331{left:400.575000px;}
@media print{
.v0_c00331{vertical-align:0.000000pt;}
.ls1_c00331{letter-spacing:0.000000pt;}
.ls0_c00331{letter-spacing:0.193167pt;}
.ws0_c00331{word-spacing:-13.344030pt;}
.ws1_c00331{word-spacing:0.000000pt;}
._2_c00331{margin-left:-1.097138pt;}
._3_c00331{width:0.987236pt;}
._1_c00331{width:886.721749pt;}
._0_c00331{width:1196.429824pt;}
.fs1_c00331{font-size:48.000107pt;}
.fs0_c00331{font-size:58.880000pt;}
.y0_c00331{bottom:0.000000pt;}
.y7_c00331{bottom:4.640000pt;}
.y1a_c00331{bottom:15.680000pt;}
.ye_c00331{bottom:15.680667pt;}
.y1d_c00331{bottom:15.681333pt;}
.y11_c00331{bottom:21.761467pt;}
.y23_c00331{bottom:22.239600pt;}
.y20_c00331{bottom:22.240000pt;}
.yb_c00331{bottom:22.398667pt;}
.y18_c00331{bottom:22.401333pt;}
.y5_c00331{bottom:22.560000pt;}
.y15_c00331{bottom:22.561333pt;}
.y13_c00331{bottom:28.640000pt;}
.y12_c00331{bottom:28.641333pt;}
.yd_c00331{bottom:29.440000pt;}
.y3_c00331{bottom:32.826667pt;}
.y10_c00331{bottom:35.521333pt;}
.y1_c00331{bottom:50.272400pt;}
.y24_c00331{bottom:83.072400pt;}
.y22_c00331{bottom:97.632800pt;}
.y21_c00331{bottom:151.226667pt;}
.y1f_c00331{bottom:204.826667pt;}
.y1e_c00331{bottom:258.466667pt;}
.y1c_c00331{bottom:299.106667pt;}
.y1b_c00331{bottom:339.748000pt;}
.y19_c00331{bottom:380.548000pt;}
.y17_c00331{bottom:421.186667pt;}
.y16_c00331{bottom:475.426667pt;}
.y14_c00331{bottom:529.852000pt;}
.y6_c00331{bottom:584.093333pt;}
.yf_c00331{bottom:650.652000pt;}
.yc_c00331{bottom:717.213333pt;}
.ya_c00331{bottom:771.654667pt;}
.y9_c00331{bottom:825.894667pt;}
.y8_c00331{bottom:880.294667pt;}
.y4_c00331{bottom:934.534667pt;}
.y2_c00331{bottom:988.934667pt;}
.h6_c00331{height:34.968828pt;}
.hd_c00331{height:40.000000pt;}
.h4_c00331{height:42.866250pt;}
.h2_c00331{height:42.895000pt;}
.h10_c00331{height:52.959867pt;}
.hf_c00331{height:52.960400pt;}
.he_c00331{height:52.992667pt;}
.h8_c00331{height:53.600000pt;}
.h5_c00331{height:53.758800pt;}
.h9_c00331{height:53.759867pt;}
.ha_c00331{height:53.791200pt;}
.hc_c00331{height:53.792667pt;}
.hb_c00331{height:65.920267pt;}
.h3_c00331{height:76.191733pt;}
.h7_c00331{height:404.185333pt;}
.h0_c00331{height:1122.559867pt;}
.h1_c00331{height:1122.666667pt;}
.w3_c00331{width:93.439600pt;}
.w4_c00331{width:133.312533pt;}
.w6_c00331{width:227.385333pt;}
.w5_c00331{width:404.706667pt;}
.w7_c00331{width:405.026667pt;}
.w2_c00331{width:632.733333pt;}
.w0_c00331{width:793.759733pt;}
.w1_c00331{width:794.000000pt;}
.x0_c00331{left:0.000000pt;}
.x4_c00331{left:4.319867pt;}
.x2_c00331{left:128.032800pt;}
.x1_c00331{left:132.352667pt;}
.x8_c00331{left:180.833867pt;}
.x3_c00331{left:185.475200pt;}
.x7_c00331{left:202.266667pt;}
.x5_c00331{left:222.106667pt;}
.x6_c00331{left:356.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_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_b4afbce4f73be568c8a71d8a.woff2')format("woff");}.ff1_c00332{font-family:ff1_c00332;line-height:0.666504;font-style:normal;font-weight:normal;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_253b057722ba98f531c9e334.woff2')format("woff");}.ff2_c00332{font-family:ff2_c00332;line-height:0.938965;font-style:normal;font-weight:normal;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_1c84e557915e5449690ed554.woff2')format("woff");}.ff3_c00332{font-family:ff3_c00332;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00332;src:url('chunks/assets/font_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff4_c00332{font-family:ff4_c00332;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00332{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00332{vertical-align:0.000000px;}
.ls1_c00332{letter-spacing:0.000000px;}
.ls0_c00332{letter-spacing:0.217313px;}
.sc__c00332{text-shadow:none;}
.sc0_c00332{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00332{-webkit-text-stroke:0px transparent;}
.sc0_c00332{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00332{word-spacing:-15.012033px;}
.ws1_c00332{word-spacing:0.000000px;}
._2_c00332{margin-left:-1.234280px;}
._3_c00332{width:1.001734px;}
._1_c00332{width:997.561968px;}
._0_c00332{width:1345.983552px;}
.fc0_c00332{color:rgb(0,0,0);}
.fs1_c00332{font-size:54.000120px;}
.fs0_c00332{font-size:66.240000px;}
.y0_c00332{bottom:0.000000px;}
.y1a_c00332{bottom:17.640000px;}
.ye_c00332{bottom:17.640750px;}
.y1d_c00332{bottom:17.641500px;}
.y11_c00332{bottom:24.481650px;}
.y23_c00332{bottom:25.019550px;}
.y20_c00332{bottom:25.020000px;}
.yb_c00332{bottom:25.198500px;}
.y18_c00332{bottom:25.201500px;}
.y5_c00332{bottom:25.380000px;}
.y15_c00332{bottom:25.381500px;}
.y13_c00332{bottom:32.220000px;}
.y12_c00332{bottom:32.221500px;}
.yd_c00332{bottom:33.120000px;}
.y3_c00332{bottom:36.930000px;}
.y10_c00332{bottom:39.961500px;}
.y1_c00332{bottom:56.556450px;}
.y24_c00332{bottom:93.456450px;}
.y22_c00332{bottom:109.836900px;}
.y21_c00332{bottom:170.130000px;}
.y1f_c00332{bottom:230.430000px;}
.y1e_c00332{bottom:290.775000px;}
.y1c_c00332{bottom:336.495000px;}
.y1b_c00332{bottom:382.216500px;}
.y19_c00332{bottom:428.116500px;}
.y7_c00332{bottom:441.225000px;}
.y17_c00332{bottom:473.835000px;}
.y16_c00332{bottom:534.855000px;}
.y14_c00332{bottom:596.083500px;}
.y6_c00332{bottom:657.105000px;}
.yf_c00332{bottom:731.983500px;}
.yc_c00332{bottom:806.865000px;}
.ya_c00332{bottom:868.111500px;}
.y9_c00332{bottom:929.131500px;}
.y8_c00332{bottom:990.331500px;}
.y4_c00332{bottom:1051.351500px;}
.y2_c00332{bottom:1112.551500px;}
.h6_c00332{height:39.339931px;}
.hd_c00332{height:45.000000px;}
.h4_c00332{height:48.224531px;}
.h2_c00332{height:48.256875px;}
.h10_c00332{height:59.579850px;}
.hf_c00332{height:59.580450px;}
.he_c00332{height:59.616750px;}
.h8_c00332{height:60.300000px;}
.h5_c00332{height:60.478650px;}
.h9_c00332{height:60.479850px;}
.ha_c00332{height:60.515100px;}
.hc_c00332{height:60.516750px;}
.hb_c00332{height:74.160300px;}
.h3_c00332{height:85.715700px;}
.h7_c00332{height:454.708500px;}
.h0_c00332{height:1262.879850px;}
.h1_c00332{height:1263.000000px;}
.w3_c00332{width:105.119550px;}
.w4_c00332{width:149.976600px;}
.w6_c00332{width:255.808500px;}
.w5_c00332{width:459.795000px;}
.w7_c00332{width:460.155000px;}
.w2_c00332{width:716.325000px;}
.w0_c00332{width:892.979700px;}
.w1_c00332{width:893.250000px;}
.x0_c00332{left:0.000000px;}
.x4_c00332{left:4.859850px;}
.x2_c00332{left:144.036900px;}
.x1_c00332{left:148.896750px;}
.x8_c00332{left:205.779600px;}
.x3_c00332{left:210.999600px;}
.x7_c00332{left:229.890000px;}
.x5_c00332{left:249.870000px;}
.x6_c00332{left:400.575000px;}
@media print{
.v0_c00332{vertical-align:0.000000pt;}
.ls1_c00332{letter-spacing:0.000000pt;}
.ls0_c00332{letter-spacing:0.193167pt;}
.ws0_c00332{word-spacing:-13.344030pt;}
.ws1_c00332{word-spacing:0.000000pt;}
._2_c00332{margin-left:-1.097138pt;}
._3_c00332{width:0.890430pt;}
._1_c00332{width:886.721749pt;}
._0_c00332{width:1196.429824pt;}
.fs1_c00332{font-size:48.000107pt;}
.fs0_c00332{font-size:58.880000pt;}
.y0_c00332{bottom:0.000000pt;}
.y1a_c00332{bottom:15.680000pt;}
.ye_c00332{bottom:15.680667pt;}
.y1d_c00332{bottom:15.681333pt;}
.y11_c00332{bottom:21.761467pt;}
.y23_c00332{bottom:22.239600pt;}
.y20_c00332{bottom:22.240000pt;}
.yb_c00332{bottom:22.398667pt;}
.y18_c00332{bottom:22.401333pt;}
.y5_c00332{bottom:22.560000pt;}
.y15_c00332{bottom:22.561333pt;}
.y13_c00332{bottom:28.640000pt;}
.y12_c00332{bottom:28.641333pt;}
.yd_c00332{bottom:29.440000pt;}
.y3_c00332{bottom:32.826667pt;}
.y10_c00332{bottom:35.521333pt;}
.y1_c00332{bottom:50.272400pt;}
.y24_c00332{bottom:83.072400pt;}
.y22_c00332{bottom:97.632800pt;}
.y21_c00332{bottom:151.226667pt;}
.y1f_c00332{bottom:204.826667pt;}
.y1e_c00332{bottom:258.466667pt;}
.y1c_c00332{bottom:299.106667pt;}
.y1b_c00332{bottom:339.748000pt;}
.y19_c00332{bottom:380.548000pt;}
.y7_c00332{bottom:392.200000pt;}
.y17_c00332{bottom:421.186667pt;}
.y16_c00332{bottom:475.426667pt;}
.y14_c00332{bottom:529.852000pt;}
.y6_c00332{bottom:584.093333pt;}
.yf_c00332{bottom:650.652000pt;}
.yc_c00332{bottom:717.213333pt;}
.ya_c00332{bottom:771.654667pt;}
.y9_c00332{bottom:825.894667pt;}
.y8_c00332{bottom:880.294667pt;}
.y4_c00332{bottom:934.534667pt;}
.y2_c00332{bottom:988.934667pt;}
.h6_c00332{height:34.968828pt;}
.hd_c00332{height:40.000000pt;}
.h4_c00332{height:42.866250pt;}
.h2_c00332{height:42.895000pt;}
.h10_c00332{height:52.959867pt;}
.hf_c00332{height:52.960400pt;}
.he_c00332{height:52.992667pt;}
.h8_c00332{height:53.600000pt;}
.h5_c00332{height:53.758800pt;}
.h9_c00332{height:53.759867pt;}
.ha_c00332{height:53.791200pt;}
.hc_c00332{height:53.792667pt;}
.hb_c00332{height:65.920267pt;}
.h3_c00332{height:76.191733pt;}
.h7_c00332{height:404.185333pt;}
.h0_c00332{height:1122.559867pt;}
.h1_c00332{height:1122.666667pt;}
.w3_c00332{width:93.439600pt;}
.w4_c00332{width:133.312533pt;}
.w6_c00332{width:227.385333pt;}
.w5_c00332{width:408.706667pt;}
.w7_c00332{width:409.026667pt;}
.w2_c00332{width:636.733333pt;}
.w0_c00332{width:793.759733pt;}
.w1_c00332{width:794.000000pt;}
.x0_c00332{left:0.000000pt;}
.x4_c00332{left:4.319867pt;}
.x2_c00332{left:128.032800pt;}
.x1_c00332{left:132.352667pt;}
.x8_c00332{left:182.915200pt;}
.x3_c00332{left:187.555200pt;}
.x7_c00332{left:204.346667pt;}
.x5_c00332{left:222.106667pt;}
.x6_c00332{left:356.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_b4afbce4f73be568c8a71d8a.woff2')format("woff");}.ff1_c00333{font-family:ff1_c00333;line-height:0.666504;font-style:normal;font-weight:normal;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_e1cf8d21ef1ef74a83c9d01e.woff2')format("woff");}.ff2_c00333{font-family:ff2_c00333;line-height:0.938965;font-style:normal;font-weight:normal;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_1c84e557915e5449690ed554.woff2')format("woff");}.ff3_c00333{font-family:ff3_c00333;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00333;src:url('chunks/assets/font_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff4_c00333{font-family:ff4_c00333;line-height:0.666504;font-style: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;}
.ls1_c00333{letter-spacing:0.000000px;}
.ls0_c00333{letter-spacing:0.217313px;}
.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:-15.012033px;}
.ws1_c00333{word-spacing:0.000000px;}
._2_c00333{margin-left:-1.234280px;}
._3_c00333{width:1.110640px;}
._1_c00333{width:997.561968px;}
._0_c00333{width:1345.983552px;}
.fc0_c00333{color:rgb(0,0,0);}
.fs1_c00333{font-size:54.000120px;}
.fs0_c00333{font-size:66.240000px;}
.y0_c00333{bottom:0.000000px;}
.y18_c00333{bottom:17.640000px;}
.y1b_c00333{bottom:17.641500px;}
.y7_c00333{bottom:20.700000px;}
.yf_c00333{bottom:24.481650px;}
.y21_c00333{bottom:25.019550px;}
.y1e_c00333{bottom:25.020000px;}
.yb_c00333{bottom:25.198500px;}
.y16_c00333{bottom:25.201500px;}
.y5_c00333{bottom:25.380000px;}
.y13_c00333{bottom:25.381500px;}
.y11_c00333{bottom:32.220000px;}
.y10_c00333{bottom:32.221500px;}
.y3_c00333{bottom:36.930000px;}
.ye_c00333{bottom:39.961500px;}
.y1_c00333{bottom:56.556450px;}
.y22_c00333{bottom:93.456450px;}
.y20_c00333{bottom:109.836900px;}
.y1f_c00333{bottom:170.130000px;}
.y1d_c00333{bottom:230.430000px;}
.y1c_c00333{bottom:290.775000px;}
.y1a_c00333{bottom:336.495000px;}
.y19_c00333{bottom:382.216500px;}
.y17_c00333{bottom:428.116500px;}
.y15_c00333{bottom:473.835000px;}
.y14_c00333{bottom:534.855000px;}
.y12_c00333{bottom:596.083500px;}
.y6_c00333{bottom:657.105000px;}
.yd_c00333{bottom:731.983500px;}
.yc_c00333{bottom:806.865000px;}
.ya_c00333{bottom:868.111500px;}
.y9_c00333{bottom:929.131500px;}
.y8_c00333{bottom:990.331500px;}
.y4_c00333{bottom:1051.351500px;}
.y2_c00333{bottom:1112.551500px;}
.h6_c00333{height:39.339931px;}
.hd_c00333{height:45.000000px;}
.h4_c00333{height:48.224531px;}
.h2_c00333{height:48.256875px;}
.h10_c00333{height:59.579850px;}
.hf_c00333{height:59.580450px;}
.he_c00333{height:59.616750px;}
.h8_c00333{height:60.300000px;}
.h5_c00333{height:60.478650px;}
.h9_c00333{height:60.479850px;}
.ha_c00333{height:60.515100px;}
.hc_c00333{height:60.516750px;}
.hb_c00333{height:74.160300px;}
.h3_c00333{height:85.715700px;}
.h7_c00333{height:454.708500px;}
.h0_c00333{height:1262.879850px;}
.h1_c00333{height:1263.000000px;}
.w3_c00333{width:105.119550px;}
.w4_c00333{width:149.976600px;}
.w6_c00333{width:255.808500px;}
.w5_c00333{width:441.795000px;}
.w7_c00333{width:442.155000px;}
.w2_c00333{width:698.325000px;}
.w0_c00333{width:892.979700px;}
.w1_c00333{width:893.250000px;}
.x0_c00333{left:0.000000px;}
.x4_c00333{left:4.859850px;}
.x2_c00333{left:144.036900px;}
.x1_c00333{left:148.896750px;}
.x8_c00333{left:196.779600px;}
.x3_c00333{left:201.999600px;}
.x7_c00333{left:220.890000px;}
.x5_c00333{left:249.870000px;}
.x6_c00333{left:400.575000px;}
@media print{
.v0_c00333{vertical-align:0.000000pt;}
.ls1_c00333{letter-spacing:0.000000pt;}
.ls0_c00333{letter-spacing:0.193167pt;}
.ws0_c00333{word-spacing:-13.344030pt;}
.ws1_c00333{word-spacing:0.000000pt;}
._2_c00333{margin-left:-1.097138pt;}
._3_c00333{width:0.987236pt;}
._1_c00333{width:886.721749pt;}
._0_c00333{width:1196.429824pt;}
.fs1_c00333{font-size:48.000107pt;}
.fs0_c00333{font-size:58.880000pt;}
.y0_c00333{bottom:0.000000pt;}
.y18_c00333{bottom:15.680000pt;}
.y1b_c00333{bottom:15.681333pt;}
.y7_c00333{bottom:18.400000pt;}
.yf_c00333{bottom:21.761467pt;}
.y21_c00333{bottom:22.239600pt;}
.y1e_c00333{bottom:22.240000pt;}
.yb_c00333{bottom:22.398667pt;}
.y16_c00333{bottom:22.401333pt;}
.y5_c00333{bottom:22.560000pt;}
.y13_c00333{bottom:22.561333pt;}
.y11_c00333{bottom:28.640000pt;}
.y10_c00333{bottom:28.641333pt;}
.y3_c00333{bottom:32.826667pt;}
.ye_c00333{bottom:35.521333pt;}
.y1_c00333{bottom:50.272400pt;}
.y22_c00333{bottom:83.072400pt;}
.y20_c00333{bottom:97.632800pt;}
.y1f_c00333{bottom:151.226667pt;}
.y1d_c00333{bottom:204.826667pt;}
.y1c_c00333{bottom:258.466667pt;}
.y1a_c00333{bottom:299.106667pt;}
.y19_c00333{bottom:339.748000pt;}
.y17_c00333{bottom:380.548000pt;}
.y15_c00333{bottom:421.186667pt;}
.y14_c00333{bottom:475.426667pt;}
.y12_c00333{bottom:529.852000pt;}
.y6_c00333{bottom:584.093333pt;}
.yd_c00333{bottom:650.652000pt;}
.yc_c00333{bottom:717.213333pt;}
.ya_c00333{bottom:771.654667pt;}
.y9_c00333{bottom:825.894667pt;}
.y8_c00333{bottom:880.294667pt;}
.y4_c00333{bottom:934.534667pt;}
.y2_c00333{bottom:988.934667pt;}
.h6_c00333{height:34.968828pt;}
.hd_c00333{height:40.000000pt;}
.h4_c00333{height:42.866250pt;}
.h2_c00333{height:42.895000pt;}
.h10_c00333{height:52.959867pt;}
.hf_c00333{height:52.960400pt;}
.he_c00333{height:52.992667pt;}
.h8_c00333{height:53.600000pt;}
.h5_c00333{height:53.758800pt;}
.h9_c00333{height:53.759867pt;}
.ha_c00333{height:53.791200pt;}
.hc_c00333{height:53.792667pt;}
.hb_c00333{height:65.920267pt;}
.h3_c00333{height:76.191733pt;}
.h7_c00333{height:404.185333pt;}
.h0_c00333{height:1122.559867pt;}
.h1_c00333{height:1122.666667pt;}
.w3_c00333{width:93.439600pt;}
.w4_c00333{width:133.312533pt;}
.w6_c00333{width:227.385333pt;}
.w5_c00333{width:392.706667pt;}
.w7_c00333{width:393.026667pt;}
.w2_c00333{width:620.733333pt;}
.w0_c00333{width:793.759733pt;}
.w1_c00333{width:794.000000pt;}
.x0_c00333{left:0.000000pt;}
.x4_c00333{left:4.319867pt;}
.x2_c00333{left:128.032800pt;}
.x1_c00333{left:132.352667pt;}
.x8_c00333{left:174.915200pt;}
.x3_c00333{left:179.555200pt;}
.x7_c00333{left:196.346667pt;}
.x5_c00333{left:222.106667pt;}
.x6_c00333{left:356.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_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_b4afbce4f73be568c8a71d8a.woff2')format("woff");}.ff1_c00334{font-family:ff1_c00334;line-height:0.666504;font-style:normal;font-weight:normal;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_f752b4746ec011dde1a8af89.woff2')format("woff");}.ff2_c00334{font-family:ff2_c00334;line-height:0.938965;font-style:normal;font-weight:normal;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_1c84e557915e5449690ed554.woff2')format("woff");}.ff3_c00334{font-family:ff3_c00334;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00334;src:url('chunks/assets/font_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff4_c00334{font-family:ff4_c00334;line-height:0.666504;font-style: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;}
.ls1_c00334{letter-spacing:0.000000px;}
.ls0_c00334{letter-spacing:0.217313px;}
.sc__c00334{text-shadow:none;}
.sc0_c00334{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00334{-webkit-text-stroke:0px transparent;}
.sc0_c00334{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00334{word-spacing:-15.012033px;}
.ws1_c00334{word-spacing:0.000000px;}
._2_c00334{margin-left:-1.234280px;}
._3_c00334{width:1.110640px;}
._1_c00334{width:997.561968px;}
._0_c00334{width:1345.983552px;}
.fc0_c00334{color:rgb(0,0,0);}
.fs1_c00334{font-size:54.000120px;}
.fs0_c00334{font-size:66.240000px;}
.y0_c00334{bottom:0.000000px;}
.y19_c00334{bottom:17.640000px;}
.y1c_c00334{bottom:17.641500px;}
.y10_c00334{bottom:24.481650px;}
.y22_c00334{bottom:25.019550px;}
.y1f_c00334{bottom:25.020000px;}
.yc_c00334{bottom:25.198500px;}
.y17_c00334{bottom:25.201500px;}
.y6_c00334{bottom:25.380000px;}
.y14_c00334{bottom:25.381500px;}
.y4_c00334{bottom:29.191500px;}
.y12_c00334{bottom:32.220000px;}
.y11_c00334{bottom:32.221500px;}
.yf_c00334{bottom:39.961500px;}
.y3_c00334{bottom:47.551500px;}
.y1_c00334{bottom:56.556450px;}
.y23_c00334{bottom:93.456450px;}
.y21_c00334{bottom:109.836900px;}
.y20_c00334{bottom:170.130000px;}
.y1e_c00334{bottom:230.430000px;}
.y1d_c00334{bottom:290.775000px;}
.y1b_c00334{bottom:336.495000px;}
.y1a_c00334{bottom:382.216500px;}
.y18_c00334{bottom:428.116500px;}
.y8_c00334{bottom:441.225000px;}
.y16_c00334{bottom:473.835000px;}
.y15_c00334{bottom:534.855000px;}
.y13_c00334{bottom:596.083500px;}
.y7_c00334{bottom:657.105000px;}
.ye_c00334{bottom:731.983500px;}
.yd_c00334{bottom:806.865000px;}
.yb_c00334{bottom:868.111500px;}
.ya_c00334{bottom:929.131500px;}
.y9_c00334{bottom:990.331500px;}
.y5_c00334{bottom:1051.351500px;}
.y2_c00334{bottom:1112.551500px;}
.h4_c00334{height:39.339931px;}
.hd_c00334{height:45.000000px;}
.h5_c00334{height:48.224531px;}
.h2_c00334{height:48.256875px;}
.h10_c00334{height:59.579850px;}
.hf_c00334{height:59.580450px;}
.he_c00334{height:59.616750px;}
.h8_c00334{height:60.300000px;}
.h6_c00334{height:60.478650px;}
.h9_c00334{height:60.479850px;}
.ha_c00334{height:60.515100px;}
.hc_c00334{height:60.516750px;}
.hb_c00334{height:74.160300px;}
.h3_c00334{height:85.715700px;}
.h7_c00334{height:454.708500px;}
.h0_c00334{height:1262.879850px;}
.h1_c00334{height:1263.000000px;}
.w3_c00334{width:105.119550px;}
.w4_c00334{width:149.976600px;}
.w6_c00334{width:255.808500px;}
.w5_c00334{width:450.795000px;}
.w7_c00334{width:451.155000px;}
.w2_c00334{width:707.325000px;}
.w0_c00334{width:892.979700px;}
.w1_c00334{width:893.250000px;}
.x0_c00334{left:0.000000px;}
.x5_c00334{left:4.859850px;}
.x2_c00334{left:144.036900px;}
.x1_c00334{left:148.896750px;}
.x9_c00334{left:201.279600px;}
.x4_c00334{left:206.499600px;}
.x8_c00334{left:225.390000px;}
.x6_c00334{left:249.870000px;}
.x3_c00334{left:353.588100px;}
.x7_c00334{left:400.575000px;}
@media print{
.v0_c00334{vertical-align:0.000000pt;}
.ls1_c00334{letter-spacing:0.000000pt;}
.ls0_c00334{letter-spacing:0.193167pt;}
.ws0_c00334{word-spacing:-13.344030pt;}
.ws1_c00334{word-spacing:0.000000pt;}
._2_c00334{margin-left:-1.097138pt;}
._3_c00334{width:0.987236pt;}
._1_c00334{width:886.721749pt;}
._0_c00334{width:1196.429824pt;}
.fs1_c00334{font-size:48.000107pt;}
.fs0_c00334{font-size:58.880000pt;}
.y0_c00334{bottom:0.000000pt;}
.y19_c00334{bottom:15.680000pt;}
.y1c_c00334{bottom:15.681333pt;}
.y10_c00334{bottom:21.761467pt;}
.y22_c00334{bottom:22.239600pt;}
.y1f_c00334{bottom:22.240000pt;}
.yc_c00334{bottom:22.398667pt;}
.y17_c00334{bottom:22.401333pt;}
.y6_c00334{bottom:22.560000pt;}
.y14_c00334{bottom:22.561333pt;}
.y4_c00334{bottom:25.948000pt;}
.y12_c00334{bottom:28.640000pt;}
.y11_c00334{bottom:28.641333pt;}
.yf_c00334{bottom:35.521333pt;}
.y3_c00334{bottom:42.268000pt;}
.y1_c00334{bottom:50.272400pt;}
.y23_c00334{bottom:83.072400pt;}
.y21_c00334{bottom:97.632800pt;}
.y20_c00334{bottom:151.226667pt;}
.y1e_c00334{bottom:204.826667pt;}
.y1d_c00334{bottom:258.466667pt;}
.y1b_c00334{bottom:299.106667pt;}
.y1a_c00334{bottom:339.748000pt;}
.y18_c00334{bottom:380.548000pt;}
.y8_c00334{bottom:392.200000pt;}
.y16_c00334{bottom:421.186667pt;}
.y15_c00334{bottom:475.426667pt;}
.y13_c00334{bottom:529.852000pt;}
.y7_c00334{bottom:584.093333pt;}
.ye_c00334{bottom:650.652000pt;}
.yd_c00334{bottom:717.213333pt;}
.yb_c00334{bottom:771.654667pt;}
.ya_c00334{bottom:825.894667pt;}
.y9_c00334{bottom:880.294667pt;}
.y5_c00334{bottom:934.534667pt;}
.y2_c00334{bottom:988.934667pt;}
.h4_c00334{height:34.968828pt;}
.hd_c00334{height:40.000000pt;}
.h5_c00334{height:42.866250pt;}
.h2_c00334{height:42.895000pt;}
.h10_c00334{height:52.959867pt;}
.hf_c00334{height:52.960400pt;}
.he_c00334{height:52.992667pt;}
.h8_c00334{height:53.600000pt;}
.h6_c00334{height:53.758800pt;}
.h9_c00334{height:53.759867pt;}
.ha_c00334{height:53.791200pt;}
.hc_c00334{height:53.792667pt;}
.hb_c00334{height:65.920267pt;}
.h3_c00334{height:76.191733pt;}
.h7_c00334{height:404.185333pt;}
.h0_c00334{height:1122.559867pt;}
.h1_c00334{height:1122.666667pt;}
.w3_c00334{width:93.439600pt;}
.w4_c00334{width:133.312533pt;}
.w6_c00334{width:227.385333pt;}
.w5_c00334{width:400.706667pt;}
.w7_c00334{width:401.026667pt;}
.w2_c00334{width:628.733333pt;}
.w0_c00334{width:793.759733pt;}
.w1_c00334{width:794.000000pt;}
.x0_c00334{left:0.000000pt;}
.x5_c00334{left:4.319867pt;}
.x2_c00334{left:128.032800pt;}
.x1_c00334{left:132.352667pt;}
.x9_c00334{left:178.915200pt;}
.x4_c00334{left:183.555200pt;}
.x8_c00334{left:200.346667pt;}
.x6_c00334{left:222.106667pt;}
.x3_c00334{left:314.300533pt;}
.x7_c00334{left:356.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_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_b4afbce4f73be568c8a71d8a.woff2')format("woff");}.ff1_c00335{font-family:ff1_c00335;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00335;src:url('chunks/assets/font_08b8a31a09025163e60fb850.woff2')format("woff");}.ff2_c00335{font-family:ff2_c00335;line-height:0.938965;font-style:normal;font-weight:normal;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_1c84e557915e5449690ed554.woff2')format("woff");}.ff3_c00335{font-family:ff3_c00335;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00335;src:url('chunks/assets/font_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff4_c00335{font-family:ff4_c00335;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00335{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00335{vertical-align:0.000000px;}
.ls1_c00335{letter-spacing:0.000000px;}
.ls0_c00335{letter-spacing:0.217313px;}
.sc__c00335{text-shadow:none;}
.sc0_c00335{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00335{-webkit-text-stroke:0px transparent;}
.sc0_c00335{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00335{word-spacing:-15.012033px;}
.ws1_c00335{word-spacing:0.000000px;}
._2_c00335{margin-left:-1.234280px;}
._3_c00335{width:1.110640px;}
._1_c00335{width:997.561968px;}
._0_c00335{width:1345.983552px;}
.fc0_c00335{color:rgb(0,0,0);}
.fs1_c00335{font-size:54.000120px;}
.fs0_c00335{font-size:66.240000px;}
.y0_c00335{bottom:0.000000px;}
.y8_c00335{bottom:5.220000px;}
.y19_c00335{bottom:17.640000px;}
.y1c_c00335{bottom:17.641500px;}
.y10_c00335{bottom:24.481650px;}
.y22_c00335{bottom:25.019550px;}
.y1f_c00335{bottom:25.020000px;}
.yc_c00335{bottom:25.198500px;}
.y17_c00335{bottom:25.201500px;}
.y6_c00335{bottom:25.380000px;}
.y14_c00335{bottom:25.381500px;}
.y4_c00335{bottom:29.191500px;}
.y12_c00335{bottom:32.220000px;}
.y11_c00335{bottom:32.221500px;}
.yf_c00335{bottom:39.961500px;}
.y3_c00335{bottom:47.551500px;}
.y1_c00335{bottom:56.556450px;}
.y23_c00335{bottom:93.456450px;}
.y21_c00335{bottom:109.836900px;}
.y20_c00335{bottom:170.130000px;}
.y1e_c00335{bottom:230.430000px;}
.y1d_c00335{bottom:290.775000px;}
.y1b_c00335{bottom:336.495000px;}
.y1a_c00335{bottom:382.216500px;}
.y18_c00335{bottom:428.116500px;}
.y16_c00335{bottom:473.835000px;}
.y15_c00335{bottom:534.855000px;}
.y13_c00335{bottom:596.083500px;}
.y7_c00335{bottom:657.105000px;}
.ye_c00335{bottom:731.983500px;}
.yd_c00335{bottom:806.865000px;}
.yb_c00335{bottom:868.111500px;}
.ya_c00335{bottom:929.131500px;}
.y9_c00335{bottom:990.331500px;}
.y5_c00335{bottom:1051.351500px;}
.y2_c00335{bottom:1112.551500px;}
.h4_c00335{height:39.339931px;}
.hd_c00335{height:45.000000px;}
.h5_c00335{height:48.224531px;}
.h2_c00335{height:48.256875px;}
.h10_c00335{height:59.579850px;}
.hf_c00335{height:59.580450px;}
.he_c00335{height:59.616750px;}
.h8_c00335{height:60.300000px;}
.h6_c00335{height:60.478650px;}
.h9_c00335{height:60.479850px;}
.ha_c00335{height:60.515100px;}
.hc_c00335{height:60.516750px;}
.hb_c00335{height:74.160300px;}
.h3_c00335{height:85.715700px;}
.h7_c00335{height:454.708500px;}
.h0_c00335{height:1262.879850px;}
.h1_c00335{height:1263.000000px;}
.w3_c00335{width:105.119550px;}
.w4_c00335{width:149.976600px;}
.w6_c00335{width:255.808500px;}
.w5_c00335{width:441.795000px;}
.w7_c00335{width:442.155000px;}
.w2_c00335{width:698.325000px;}
.w0_c00335{width:892.979700px;}
.w1_c00335{width:893.250000px;}
.x0_c00335{left:0.000000px;}
.x5_c00335{left:4.859850px;}
.x2_c00335{left:144.036900px;}
.x1_c00335{left:148.896750px;}
.x8_c00335{left:196.779600px;}
.x4_c00335{left:201.999600px;}
.x6_c00335{left:249.870000px;}
.x3_c00335{left:349.059600px;}
.x7_c00335{left:400.575000px;}
@media print{
.v0_c00335{vertical-align:0.000000pt;}
.ls1_c00335{letter-spacing:0.000000pt;}
.ls0_c00335{letter-spacing:0.193167pt;}
.ws0_c00335{word-spacing:-13.344030pt;}
.ws1_c00335{word-spacing:0.000000pt;}
._2_c00335{margin-left:-1.097138pt;}
._3_c00335{width:0.987236pt;}
._1_c00335{width:886.721749pt;}
._0_c00335{width:1196.429824pt;}
.fs1_c00335{font-size:48.000107pt;}
.fs0_c00335{font-size:58.880000pt;}
.y0_c00335{bottom:0.000000pt;}
.y8_c00335{bottom:4.640000pt;}
.y19_c00335{bottom:15.680000pt;}
.y1c_c00335{bottom:15.681333pt;}
.y10_c00335{bottom:21.761467pt;}
.y22_c00335{bottom:22.239600pt;}
.y1f_c00335{bottom:22.240000pt;}
.yc_c00335{bottom:22.398667pt;}
.y17_c00335{bottom:22.401333pt;}
.y6_c00335{bottom:22.560000pt;}
.y14_c00335{bottom:22.561333pt;}
.y4_c00335{bottom:25.948000pt;}
.y12_c00335{bottom:28.640000pt;}
.y11_c00335{bottom:28.641333pt;}
.yf_c00335{bottom:35.521333pt;}
.y3_c00335{bottom:42.268000pt;}
.y1_c00335{bottom:50.272400pt;}
.y23_c00335{bottom:83.072400pt;}
.y21_c00335{bottom:97.632800pt;}
.y20_c00335{bottom:151.226667pt;}
.y1e_c00335{bottom:204.826667pt;}
.y1d_c00335{bottom:258.466667pt;}
.y1b_c00335{bottom:299.106667pt;}
.y1a_c00335{bottom:339.748000pt;}
.y18_c00335{bottom:380.548000pt;}
.y16_c00335{bottom:421.186667pt;}
.y15_c00335{bottom:475.426667pt;}
.y13_c00335{bottom:529.852000pt;}
.y7_c00335{bottom:584.093333pt;}
.ye_c00335{bottom:650.652000pt;}
.yd_c00335{bottom:717.213333pt;}
.yb_c00335{bottom:771.654667pt;}
.ya_c00335{bottom:825.894667pt;}
.y9_c00335{bottom:880.294667pt;}
.y5_c00335{bottom:934.534667pt;}
.y2_c00335{bottom:988.934667pt;}
.h4_c00335{height:34.968828pt;}
.hd_c00335{height:40.000000pt;}
.h5_c00335{height:42.866250pt;}
.h2_c00335{height:42.895000pt;}
.h10_c00335{height:52.959867pt;}
.hf_c00335{height:52.960400pt;}
.he_c00335{height:52.992667pt;}
.h8_c00335{height:53.600000pt;}
.h6_c00335{height:53.758800pt;}
.h9_c00335{height:53.759867pt;}
.ha_c00335{height:53.791200pt;}
.hc_c00335{height:53.792667pt;}
.hb_c00335{height:65.920267pt;}
.h3_c00335{height:76.191733pt;}
.h7_c00335{height:404.185333pt;}
.h0_c00335{height:1122.559867pt;}
.h1_c00335{height:1122.666667pt;}
.w3_c00335{width:93.439600pt;}
.w4_c00335{width:133.312533pt;}
.w6_c00335{width:227.385333pt;}
.w5_c00335{width:392.706667pt;}
.w7_c00335{width:393.026667pt;}
.w2_c00335{width:620.733333pt;}
.w0_c00335{width:793.759733pt;}
.w1_c00335{width:794.000000pt;}
.x0_c00335{left:0.000000pt;}
.x5_c00335{left:4.319867pt;}
.x2_c00335{left:128.032800pt;}
.x1_c00335{left:132.352667pt;}
.x8_c00335{left:174.915200pt;}
.x4_c00335{left:179.555200pt;}
.x6_c00335{left:222.106667pt;}
.x3_c00335{left:310.275200pt;}
.x7_c00335{left:356.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_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_b4afbce4f73be568c8a71d8a.woff2')format("woff");}.ff1_c00336{font-family:ff1_c00336;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00336;src:url('chunks/assets/font_fc5f6c1a594059c1efa83d1e.woff2')format("woff");}.ff2_c00336{font-family:ff2_c00336;line-height:0.938965;font-style:normal;font-weight:normal;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_1c84e557915e5449690ed554.woff2')format("woff");}.ff3_c00336{font-family:ff3_c00336;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00336;src:url('chunks/assets/font_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff4_c00336{font-family:ff4_c00336;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00336{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00336{vertical-align:0.000000px;}
.ls1_c00336{letter-spacing:0.000000px;}
.ls0_c00336{letter-spacing:0.217313px;}
.sc__c00336{text-shadow:none;}
.sc0_c00336{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00336{-webkit-text-stroke:0px transparent;}
.sc0_c00336{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00336{word-spacing:-15.012033px;}
.ws1_c00336{word-spacing:0.000000px;}
._2_c00336{margin-left:-1.234280px;}
._3_c00336{width:1.110640px;}
._1_c00336{width:997.561968px;}
._0_c00336{width:1345.983552px;}
.fc0_c00336{color:rgb(0,0,0);}
.fs1_c00336{font-size:54.000120px;}
.fs0_c00336{font-size:66.240000px;}
.y0_c00336{bottom:0.000000px;}
.y19_c00336{bottom:17.640000px;}
.y1c_c00336{bottom:17.641500px;}
.y10_c00336{bottom:24.481650px;}
.y22_c00336{bottom:25.019550px;}
.y1f_c00336{bottom:25.020000px;}
.yc_c00336{bottom:25.198500px;}
.y17_c00336{bottom:25.201500px;}
.y6_c00336{bottom:25.380000px;}
.y14_c00336{bottom:25.381500px;}
.y4_c00336{bottom:29.191500px;}
.y12_c00336{bottom:32.220000px;}
.y11_c00336{bottom:32.221500px;}
.yf_c00336{bottom:39.961500px;}
.y3_c00336{bottom:47.551500px;}
.y1_c00336{bottom:56.556450px;}
.y23_c00336{bottom:93.456450px;}
.y21_c00336{bottom:109.836900px;}
.y20_c00336{bottom:170.130000px;}
.y1e_c00336{bottom:230.430000px;}
.y1d_c00336{bottom:290.775000px;}
.y1b_c00336{bottom:336.495000px;}
.y1a_c00336{bottom:382.216500px;}
.y18_c00336{bottom:428.116500px;}
.y8_c00336{bottom:441.225000px;}
.y16_c00336{bottom:473.835000px;}
.y15_c00336{bottom:534.855000px;}
.y13_c00336{bottom:596.083500px;}
.y7_c00336{bottom:657.105000px;}
.ye_c00336{bottom:731.983500px;}
.yd_c00336{bottom:806.865000px;}
.yb_c00336{bottom:868.111500px;}
.ya_c00336{bottom:929.131500px;}
.y9_c00336{bottom:990.331500px;}
.y5_c00336{bottom:1051.351500px;}
.y2_c00336{bottom:1112.551500px;}
.h4_c00336{height:39.339931px;}
.hd_c00336{height:45.000000px;}
.h5_c00336{height:48.224531px;}
.h2_c00336{height:48.256875px;}
.h10_c00336{height:59.579850px;}
.hf_c00336{height:59.580450px;}
.he_c00336{height:59.616750px;}
.h8_c00336{height:60.300000px;}
.h6_c00336{height:60.478650px;}
.h9_c00336{height:60.479850px;}
.ha_c00336{height:60.515100px;}
.hc_c00336{height:60.516750px;}
.hb_c00336{height:74.160300px;}
.h3_c00336{height:85.715700px;}
.h7_c00336{height:454.708500px;}
.h0_c00336{height:1262.879850px;}
.h1_c00336{height:1263.000000px;}
.w3_c00336{width:105.119550px;}
.w4_c00336{width:149.976600px;}
.w6_c00336{width:255.808500px;}
.w5_c00336{width:441.795000px;}
.w7_c00336{width:442.155000px;}
.w2_c00336{width:698.325000px;}
.w0_c00336{width:892.979700px;}
.w1_c00336{width:893.250000px;}
.x0_c00336{left:0.000000px;}
.x5_c00336{left:4.859850px;}
.x2_c00336{left:144.036900px;}
.x1_c00336{left:148.896750px;}
.x8_c00336{left:196.779600px;}
.x4_c00336{left:201.999600px;}
.x6_c00336{left:249.870000px;}
.x3_c00336{left:349.059600px;}
.x7_c00336{left:400.575000px;}
@media print{
.v0_c00336{vertical-align:0.000000pt;}
.ls1_c00336{letter-spacing:0.000000pt;}
.ls0_c00336{letter-spacing:0.193167pt;}
.ws0_c00336{word-spacing:-13.344030pt;}
.ws1_c00336{word-spacing:0.000000pt;}
._2_c00336{margin-left:-1.097138pt;}
._3_c00336{width:0.987236pt;}
._1_c00336{width:886.721749pt;}
._0_c00336{width:1196.429824pt;}
.fs1_c00336{font-size:48.000107pt;}
.fs0_c00336{font-size:58.880000pt;}
.y0_c00336{bottom:0.000000pt;}
.y19_c00336{bottom:15.680000pt;}
.y1c_c00336{bottom:15.681333pt;}
.y10_c00336{bottom:21.761467pt;}
.y22_c00336{bottom:22.239600pt;}
.y1f_c00336{bottom:22.240000pt;}
.yc_c00336{bottom:22.398667pt;}
.y17_c00336{bottom:22.401333pt;}
.y6_c00336{bottom:22.560000pt;}
.y14_c00336{bottom:22.561333pt;}
.y4_c00336{bottom:25.948000pt;}
.y12_c00336{bottom:28.640000pt;}
.y11_c00336{bottom:28.641333pt;}
.yf_c00336{bottom:35.521333pt;}
.y3_c00336{bottom:42.268000pt;}
.y1_c00336{bottom:50.272400pt;}
.y23_c00336{bottom:83.072400pt;}
.y21_c00336{bottom:97.632800pt;}
.y20_c00336{bottom:151.226667pt;}
.y1e_c00336{bottom:204.826667pt;}
.y1d_c00336{bottom:258.466667pt;}
.y1b_c00336{bottom:299.106667pt;}
.y1a_c00336{bottom:339.748000pt;}
.y18_c00336{bottom:380.548000pt;}
.y8_c00336{bottom:392.200000pt;}
.y16_c00336{bottom:421.186667pt;}
.y15_c00336{bottom:475.426667pt;}
.y13_c00336{bottom:529.852000pt;}
.y7_c00336{bottom:584.093333pt;}
.ye_c00336{bottom:650.652000pt;}
.yd_c00336{bottom:717.213333pt;}
.yb_c00336{bottom:771.654667pt;}
.ya_c00336{bottom:825.894667pt;}
.y9_c00336{bottom:880.294667pt;}
.y5_c00336{bottom:934.534667pt;}
.y2_c00336{bottom:988.934667pt;}
.h4_c00336{height:34.968828pt;}
.hd_c00336{height:40.000000pt;}
.h5_c00336{height:42.866250pt;}
.h2_c00336{height:42.895000pt;}
.h10_c00336{height:52.959867pt;}
.hf_c00336{height:52.960400pt;}
.he_c00336{height:52.992667pt;}
.h8_c00336{height:53.600000pt;}
.h6_c00336{height:53.758800pt;}
.h9_c00336{height:53.759867pt;}
.ha_c00336{height:53.791200pt;}
.hc_c00336{height:53.792667pt;}
.hb_c00336{height:65.920267pt;}
.h3_c00336{height:76.191733pt;}
.h7_c00336{height:404.185333pt;}
.h0_c00336{height:1122.559867pt;}
.h1_c00336{height:1122.666667pt;}
.w3_c00336{width:93.439600pt;}
.w4_c00336{width:133.312533pt;}
.w6_c00336{width:227.385333pt;}
.w5_c00336{width:392.706667pt;}
.w7_c00336{width:393.026667pt;}
.w2_c00336{width:620.733333pt;}
.w0_c00336{width:793.759733pt;}
.w1_c00336{width:794.000000pt;}
.x0_c00336{left:0.000000pt;}
.x5_c00336{left:4.319867pt;}
.x2_c00336{left:128.032800pt;}
.x1_c00336{left:132.352667pt;}
.x8_c00336{left:174.915200pt;}
.x4_c00336{left:179.555200pt;}
.x6_c00336{left:222.106667pt;}
.x3_c00336{left:310.275200pt;}
.x7_c00336{left:356.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_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_b4afbce4f73be568c8a71d8a.woff2')format("woff");}.ff1_c00337{font-family:ff1_c00337;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00337;src:url('chunks/assets/font_0a882b6efd7c3eab5a090bc7.woff2')format("woff");}.ff2_c00337{font-family:ff2_c00337;line-height:0.938965;font-style:normal;font-weight:normal;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_1c84e557915e5449690ed554.woff2')format("woff");}.ff3_c00337{font-family:ff3_c00337;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00337;src:url('chunks/assets/font_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff4_c00337{font-family:ff4_c00337;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls1_c00337{letter-spacing:0.000000px;}
.ls0_c00337{letter-spacing:0.217313px;}
.sc__c00337{text-shadow:none;}
.sc0_c00337{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00337{-webkit-text-stroke:0px transparent;}
.sc0_c00337{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00337{word-spacing:-15.012033px;}
.ws1_c00337{word-spacing:0.000000px;}
._2_c00337{margin-left:-1.234280px;}
._3_c00337{width:1.110640px;}
._1_c00337{width:997.561968px;}
._0_c00337{width:1345.983552px;}
.fc0_c00337{color:rgb(0,0,0);}
.fs1_c00337{font-size:54.000120px;}
.fs0_c00337{font-size:66.240000px;}
.y0_c00337{bottom:0.000000px;}
.y19_c00337{bottom:17.640000px;}
.y1c_c00337{bottom:17.641500px;}
.y10_c00337{bottom:24.481650px;}
.y22_c00337{bottom:25.019550px;}
.y1f_c00337{bottom:25.020000px;}
.yc_c00337{bottom:25.198500px;}
.y17_c00337{bottom:25.201500px;}
.y6_c00337{bottom:25.380000px;}
.y14_c00337{bottom:25.381500px;}
.y4_c00337{bottom:29.191500px;}
.y12_c00337{bottom:32.220000px;}
.y11_c00337{bottom:32.221500px;}
.yf_c00337{bottom:39.961500px;}
.y3_c00337{bottom:47.551500px;}
.y1_c00337{bottom:56.556450px;}
.y23_c00337{bottom:93.456450px;}
.y21_c00337{bottom:109.836900px;}
.y20_c00337{bottom:170.130000px;}
.y1e_c00337{bottom:230.430000px;}
.y1d_c00337{bottom:290.775000px;}
.y1b_c00337{bottom:336.495000px;}
.y1a_c00337{bottom:382.216500px;}
.y18_c00337{bottom:428.116500px;}
.y8_c00337{bottom:430.426500px;}
.y16_c00337{bottom:473.835000px;}
.y15_c00337{bottom:534.855000px;}
.y13_c00337{bottom:596.083500px;}
.y7_c00337{bottom:657.105000px;}
.ye_c00337{bottom:731.983500px;}
.yd_c00337{bottom:806.865000px;}
.yb_c00337{bottom:868.111500px;}
.ya_c00337{bottom:929.131500px;}
.y9_c00337{bottom:990.331500px;}
.y5_c00337{bottom:1051.351500px;}
.y2_c00337{bottom:1112.551500px;}
.h4_c00337{height:39.339931px;}
.hd_c00337{height:45.000000px;}
.h5_c00337{height:48.224531px;}
.h2_c00337{height:48.256875px;}
.h10_c00337{height:59.579850px;}
.hf_c00337{height:59.580450px;}
.he_c00337{height:59.616750px;}
.h8_c00337{height:60.300000px;}
.h6_c00337{height:60.478650px;}
.h9_c00337{height:60.479850px;}
.ha_c00337{height:60.515100px;}
.hc_c00337{height:60.516750px;}
.hb_c00337{height:74.160300px;}
.h3_c00337{height:85.715700px;}
.h7_c00337{height:454.708500px;}
.h0_c00337{height:1262.879850px;}
.h1_c00337{height:1263.000000px;}
.w3_c00337{width:105.119550px;}
.w4_c00337{width:149.976600px;}
.w6_c00337{width:255.808500px;}
.w5_c00337{width:441.795000px;}
.w7_c00337{width:442.155000px;}
.w2_c00337{width:698.325000px;}
.w0_c00337{width:892.979700px;}
.w1_c00337{width:893.250000px;}
.x0_c00337{left:0.000000px;}
.x5_c00337{left:4.859850px;}
.x2_c00337{left:144.036900px;}
.x1_c00337{left:148.896750px;}
.x8_c00337{left:196.779600px;}
.x4_c00337{left:201.999600px;}
.x6_c00337{left:249.870000px;}
.x3_c00337{left:349.059600px;}
.x7_c00337{left:400.575000px;}
@media print{
.v0_c00337{vertical-align:0.000000pt;}
.ls1_c00337{letter-spacing:0.000000pt;}
.ls0_c00337{letter-spacing:0.193167pt;}
.ws0_c00337{word-spacing:-13.344030pt;}
.ws1_c00337{word-spacing:0.000000pt;}
._2_c00337{margin-left:-1.097138pt;}
._3_c00337{width:0.987236pt;}
._1_c00337{width:886.721749pt;}
._0_c00337{width:1196.429824pt;}
.fs1_c00337{font-size:48.000107pt;}
.fs0_c00337{font-size:58.880000pt;}
.y0_c00337{bottom:0.000000pt;}
.y19_c00337{bottom:15.680000pt;}
.y1c_c00337{bottom:15.681333pt;}
.y10_c00337{bottom:21.761467pt;}
.y22_c00337{bottom:22.239600pt;}
.y1f_c00337{bottom:22.240000pt;}
.yc_c00337{bottom:22.398667pt;}
.y17_c00337{bottom:22.401333pt;}
.y6_c00337{bottom:22.560000pt;}
.y14_c00337{bottom:22.561333pt;}
.y4_c00337{bottom:25.948000pt;}
.y12_c00337{bottom:28.640000pt;}
.y11_c00337{bottom:28.641333pt;}
.yf_c00337{bottom:35.521333pt;}
.y3_c00337{bottom:42.268000pt;}
.y1_c00337{bottom:50.272400pt;}
.y23_c00337{bottom:83.072400pt;}
.y21_c00337{bottom:97.632800pt;}
.y20_c00337{bottom:151.226667pt;}
.y1e_c00337{bottom:204.826667pt;}
.y1d_c00337{bottom:258.466667pt;}
.y1b_c00337{bottom:299.106667pt;}
.y1a_c00337{bottom:339.748000pt;}
.y18_c00337{bottom:380.548000pt;}
.y8_c00337{bottom:382.601333pt;}
.y16_c00337{bottom:421.186667pt;}
.y15_c00337{bottom:475.426667pt;}
.y13_c00337{bottom:529.852000pt;}
.y7_c00337{bottom:584.093333pt;}
.ye_c00337{bottom:650.652000pt;}
.yd_c00337{bottom:717.213333pt;}
.yb_c00337{bottom:771.654667pt;}
.ya_c00337{bottom:825.894667pt;}
.y9_c00337{bottom:880.294667pt;}
.y5_c00337{bottom:934.534667pt;}
.y2_c00337{bottom:988.934667pt;}
.h4_c00337{height:34.968828pt;}
.hd_c00337{height:40.000000pt;}
.h5_c00337{height:42.866250pt;}
.h2_c00337{height:42.895000pt;}
.h10_c00337{height:52.959867pt;}
.hf_c00337{height:52.960400pt;}
.he_c00337{height:52.992667pt;}
.h8_c00337{height:53.600000pt;}
.h6_c00337{height:53.758800pt;}
.h9_c00337{height:53.759867pt;}
.ha_c00337{height:53.791200pt;}
.hc_c00337{height:53.792667pt;}
.hb_c00337{height:65.920267pt;}
.h3_c00337{height:76.191733pt;}
.h7_c00337{height:404.185333pt;}
.h0_c00337{height:1122.559867pt;}
.h1_c00337{height:1122.666667pt;}
.w3_c00337{width:93.439600pt;}
.w4_c00337{width:133.312533pt;}
.w6_c00337{width:227.385333pt;}
.w5_c00337{width:392.706667pt;}
.w7_c00337{width:393.026667pt;}
.w2_c00337{width:620.733333pt;}
.w0_c00337{width:793.759733pt;}
.w1_c00337{width:794.000000pt;}
.x0_c00337{left:0.000000pt;}
.x5_c00337{left:4.319867pt;}
.x2_c00337{left:128.032800pt;}
.x1_c00337{left:132.352667pt;}
.x8_c00337{left:174.915200pt;}
.x4_c00337{left:179.555200pt;}
.x6_c00337{left:222.106667pt;}
.x3_c00337{left:310.275200pt;}
.x7_c00337{left:356.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_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_b4afbce4f73be568c8a71d8a.woff2')format("woff");}.ff1_c00338{font-family:ff1_c00338;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00338;src:url('chunks/assets/font_0a882b6efd7c3eab5a090bc7.woff2')format("woff");}.ff2_c00338{font-family:ff2_c00338;line-height:0.938965;font-style:normal;font-weight:normal;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_1c84e557915e5449690ed554.woff2')format("woff");}.ff3_c00338{font-family:ff3_c00338;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00338;src:url('chunks/assets/font_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff4_c00338{font-family:ff4_c00338;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00338{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00338{vertical-align:0.000000px;}
.ls1_c00338{letter-spacing:0.000000px;}
.ls0_c00338{letter-spacing:0.217313px;}
.sc__c00338{text-shadow:none;}
.sc0_c00338{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00338{-webkit-text-stroke:0px transparent;}
.sc0_c00338{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00338{word-spacing:-15.012033px;}
.ws1_c00338{word-spacing:0.000000px;}
._2_c00338{margin-left:-1.234280px;}
._3_c00338{width:1.110640px;}
._1_c00338{width:997.561968px;}
._0_c00338{width:1345.983552px;}
.fc0_c00338{color:rgb(0,0,0);}
.fs1_c00338{font-size:54.000120px;}
.fs0_c00338{font-size:66.240000px;}
.y0_c00338{bottom:0.000000px;}
.y19_c00338{bottom:17.640000px;}
.y1c_c00338{bottom:17.641500px;}
.y10_c00338{bottom:24.481650px;}
.y22_c00338{bottom:25.019550px;}
.y1f_c00338{bottom:25.020000px;}
.yc_c00338{bottom:25.198500px;}
.y17_c00338{bottom:25.201500px;}
.y6_c00338{bottom:25.380000px;}
.y14_c00338{bottom:25.381500px;}
.y4_c00338{bottom:29.191500px;}
.y12_c00338{bottom:32.220000px;}
.y11_c00338{bottom:32.221500px;}
.yf_c00338{bottom:39.961500px;}
.y3_c00338{bottom:47.551500px;}
.y1_c00338{bottom:56.556450px;}
.y23_c00338{bottom:93.456450px;}
.y21_c00338{bottom:109.836900px;}
.y20_c00338{bottom:170.130000px;}
.y1e_c00338{bottom:230.430000px;}
.y1d_c00338{bottom:290.775000px;}
.y1b_c00338{bottom:336.495000px;}
.y1a_c00338{bottom:382.216500px;}
.y18_c00338{bottom:428.116500px;}
.y8_c00338{bottom:430.426500px;}
.y16_c00338{bottom:473.835000px;}
.y15_c00338{bottom:534.855000px;}
.y13_c00338{bottom:596.083500px;}
.y7_c00338{bottom:657.105000px;}
.ye_c00338{bottom:731.983500px;}
.yd_c00338{bottom:806.865000px;}
.yb_c00338{bottom:868.111500px;}
.ya_c00338{bottom:929.131500px;}
.y9_c00338{bottom:990.331500px;}
.y5_c00338{bottom:1051.351500px;}
.y2_c00338{bottom:1112.551500px;}
.h4_c00338{height:39.339931px;}
.hd_c00338{height:45.000000px;}
.h5_c00338{height:48.224531px;}
.h2_c00338{height:48.256875px;}
.h10_c00338{height:59.579850px;}
.hf_c00338{height:59.580450px;}
.he_c00338{height:59.616750px;}
.h8_c00338{height:60.300000px;}
.h6_c00338{height:60.478650px;}
.h9_c00338{height:60.479850px;}
.ha_c00338{height:60.515100px;}
.hc_c00338{height:60.516750px;}
.hb_c00338{height:74.160300px;}
.h3_c00338{height:85.715700px;}
.h7_c00338{height:454.708500px;}
.h0_c00338{height:1262.879850px;}
.h1_c00338{height:1263.000000px;}
.w3_c00338{width:105.119550px;}
.w4_c00338{width:149.976600px;}
.w6_c00338{width:255.808500px;}
.w5_c00338{width:441.795000px;}
.w7_c00338{width:442.155000px;}
.w2_c00338{width:698.325000px;}
.w0_c00338{width:892.979700px;}
.w1_c00338{width:893.250000px;}
.x0_c00338{left:0.000000px;}
.x5_c00338{left:4.859850px;}
.x2_c00338{left:144.036900px;}
.x1_c00338{left:148.896750px;}
.x8_c00338{left:196.779600px;}
.x4_c00338{left:201.999600px;}
.x6_c00338{left:249.870000px;}
.x3_c00338{left:349.059600px;}
.x7_c00338{left:400.575000px;}
@media print{
.v0_c00338{vertical-align:0.000000pt;}
.ls1_c00338{letter-spacing:0.000000pt;}
.ls0_c00338{letter-spacing:0.193167pt;}
.ws0_c00338{word-spacing:-13.344030pt;}
.ws1_c00338{word-spacing:0.000000pt;}
._2_c00338{margin-left:-1.097138pt;}
._3_c00338{width:0.987236pt;}
._1_c00338{width:886.721749pt;}
._0_c00338{width:1196.429824pt;}
.fs1_c00338{font-size:48.000107pt;}
.fs0_c00338{font-size:58.880000pt;}
.y0_c00338{bottom:0.000000pt;}
.y19_c00338{bottom:15.680000pt;}
.y1c_c00338{bottom:15.681333pt;}
.y10_c00338{bottom:21.761467pt;}
.y22_c00338{bottom:22.239600pt;}
.y1f_c00338{bottom:22.240000pt;}
.yc_c00338{bottom:22.398667pt;}
.y17_c00338{bottom:22.401333pt;}
.y6_c00338{bottom:22.560000pt;}
.y14_c00338{bottom:22.561333pt;}
.y4_c00338{bottom:25.948000pt;}
.y12_c00338{bottom:28.640000pt;}
.y11_c00338{bottom:28.641333pt;}
.yf_c00338{bottom:35.521333pt;}
.y3_c00338{bottom:42.268000pt;}
.y1_c00338{bottom:50.272400pt;}
.y23_c00338{bottom:83.072400pt;}
.y21_c00338{bottom:97.632800pt;}
.y20_c00338{bottom:151.226667pt;}
.y1e_c00338{bottom:204.826667pt;}
.y1d_c00338{bottom:258.466667pt;}
.y1b_c00338{bottom:299.106667pt;}
.y1a_c00338{bottom:339.748000pt;}
.y18_c00338{bottom:380.548000pt;}
.y8_c00338{bottom:382.601333pt;}
.y16_c00338{bottom:421.186667pt;}
.y15_c00338{bottom:475.426667pt;}
.y13_c00338{bottom:529.852000pt;}
.y7_c00338{bottom:584.093333pt;}
.ye_c00338{bottom:650.652000pt;}
.yd_c00338{bottom:717.213333pt;}
.yb_c00338{bottom:771.654667pt;}
.ya_c00338{bottom:825.894667pt;}
.y9_c00338{bottom:880.294667pt;}
.y5_c00338{bottom:934.534667pt;}
.y2_c00338{bottom:988.934667pt;}
.h4_c00338{height:34.968828pt;}
.hd_c00338{height:40.000000pt;}
.h5_c00338{height:42.866250pt;}
.h2_c00338{height:42.895000pt;}
.h10_c00338{height:52.959867pt;}
.hf_c00338{height:52.960400pt;}
.he_c00338{height:52.992667pt;}
.h8_c00338{height:53.600000pt;}
.h6_c00338{height:53.758800pt;}
.h9_c00338{height:53.759867pt;}
.ha_c00338{height:53.791200pt;}
.hc_c00338{height:53.792667pt;}
.hb_c00338{height:65.920267pt;}
.h3_c00338{height:76.191733pt;}
.h7_c00338{height:404.185333pt;}
.h0_c00338{height:1122.559867pt;}
.h1_c00338{height:1122.666667pt;}
.w3_c00338{width:93.439600pt;}
.w4_c00338{width:133.312533pt;}
.w6_c00338{width:227.385333pt;}
.w5_c00338{width:392.706667pt;}
.w7_c00338{width:393.026667pt;}
.w2_c00338{width:620.733333pt;}
.w0_c00338{width:793.759733pt;}
.w1_c00338{width:794.000000pt;}
.x0_c00338{left:0.000000pt;}
.x5_c00338{left:4.319867pt;}
.x2_c00338{left:128.032800pt;}
.x1_c00338{left:132.352667pt;}
.x8_c00338{left:174.915200pt;}
.x4_c00338{left:179.555200pt;}
.x6_c00338{left:222.106667pt;}
.x3_c00338{left:310.275200pt;}
.x7_c00338{left:356.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_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_b4afbce4f73be568c8a71d8a.woff2')format("woff");}.ff1_c00339{font-family:ff1_c00339;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00339;src:url('chunks/assets/font_e1cf8d21ef1ef74a83c9d01e.woff2')format("woff");}.ff2_c00339{font-family:ff2_c00339;line-height:0.938965;font-style:normal;font-weight:normal;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_1c84e557915e5449690ed554.woff2')format("woff");}.ff3_c00339{font-family:ff3_c00339;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00339;src:url('chunks/assets/font_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff4_c00339{font-family:ff4_c00339;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00339{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00339{vertical-align:0.000000px;}
.ls1_c00339{letter-spacing:0.000000px;}
.ls0_c00339{letter-spacing:0.217313px;}
.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:-15.012033px;}
.ws1_c00339{word-spacing:0.000000px;}
._2_c00339{margin-left:-1.234280px;}
._3_c00339{width:1.110640px;}
._1_c00339{width:997.561968px;}
._0_c00339{width:1345.983552px;}
.fc0_c00339{color:rgb(0,0,0);}
.fs1_c00339{font-size:54.000120px;}
.fs0_c00339{font-size:66.240000px;}
.y0_c00339{bottom:0.000000px;}
.y19_c00339{bottom:17.640000px;}
.y1c_c00339{bottom:17.641500px;}
.y10_c00339{bottom:24.481650px;}
.y22_c00339{bottom:25.019550px;}
.y1f_c00339{bottom:25.020000px;}
.yc_c00339{bottom:25.198500px;}
.y17_c00339{bottom:25.201500px;}
.y6_c00339{bottom:25.380000px;}
.y14_c00339{bottom:25.381500px;}
.y4_c00339{bottom:29.191500px;}
.y12_c00339{bottom:32.220000px;}
.y11_c00339{bottom:32.221500px;}
.yf_c00339{bottom:39.961500px;}
.y3_c00339{bottom:47.551500px;}
.y1_c00339{bottom:56.556450px;}
.y23_c00339{bottom:93.456450px;}
.y21_c00339{bottom:109.836900px;}
.y20_c00339{bottom:170.130000px;}
.y1e_c00339{bottom:230.430000px;}
.y1d_c00339{bottom:290.775000px;}
.y1b_c00339{bottom:336.495000px;}
.y1a_c00339{bottom:382.216500px;}
.y18_c00339{bottom:428.116500px;}
.y8_c00339{bottom:430.426500px;}
.y16_c00339{bottom:473.835000px;}
.y15_c00339{bottom:534.855000px;}
.y13_c00339{bottom:596.083500px;}
.y7_c00339{bottom:657.105000px;}
.ye_c00339{bottom:731.983500px;}
.yd_c00339{bottom:806.865000px;}
.yb_c00339{bottom:868.111500px;}
.ya_c00339{bottom:929.131500px;}
.y9_c00339{bottom:990.331500px;}
.y5_c00339{bottom:1051.351500px;}
.y2_c00339{bottom:1112.551500px;}
.h4_c00339{height:39.339931px;}
.hd_c00339{height:45.000000px;}
.h5_c00339{height:48.224531px;}
.h2_c00339{height:48.256875px;}
.h10_c00339{height:59.579850px;}
.hf_c00339{height:59.580450px;}
.he_c00339{height:59.616750px;}
.h8_c00339{height:60.300000px;}
.h6_c00339{height:60.478650px;}
.h9_c00339{height:60.479850px;}
.ha_c00339{height:60.515100px;}
.hc_c00339{height:60.516750px;}
.hb_c00339{height:74.160300px;}
.h3_c00339{height:85.715700px;}
.h7_c00339{height:454.708500px;}
.h0_c00339{height:1262.879850px;}
.h1_c00339{height:1263.000000px;}
.w3_c00339{width:105.119550px;}
.w4_c00339{width:149.976600px;}
.w6_c00339{width:255.808500px;}
.w5_c00339{width:441.795000px;}
.w7_c00339{width:442.155000px;}
.w2_c00339{width:698.325000px;}
.w0_c00339{width:892.979700px;}
.w1_c00339{width:893.250000px;}
.x0_c00339{left:0.000000px;}
.x5_c00339{left:4.859850px;}
.x2_c00339{left:144.036900px;}
.x1_c00339{left:148.896750px;}
.x8_c00339{left:196.779600px;}
.x4_c00339{left:201.999600px;}
.x6_c00339{left:249.870000px;}
.x3_c00339{left:349.059600px;}
.x7_c00339{left:400.575000px;}
@media print{
.v0_c00339{vertical-align:0.000000pt;}
.ls1_c00339{letter-spacing:0.000000pt;}
.ls0_c00339{letter-spacing:0.193167pt;}
.ws0_c00339{word-spacing:-13.344030pt;}
.ws1_c00339{word-spacing:0.000000pt;}
._2_c00339{margin-left:-1.097138pt;}
._3_c00339{width:0.987236pt;}
._1_c00339{width:886.721749pt;}
._0_c00339{width:1196.429824pt;}
.fs1_c00339{font-size:48.000107pt;}
.fs0_c00339{font-size:58.880000pt;}
.y0_c00339{bottom:0.000000pt;}
.y19_c00339{bottom:15.680000pt;}
.y1c_c00339{bottom:15.681333pt;}
.y10_c00339{bottom:21.761467pt;}
.y22_c00339{bottom:22.239600pt;}
.y1f_c00339{bottom:22.240000pt;}
.yc_c00339{bottom:22.398667pt;}
.y17_c00339{bottom:22.401333pt;}
.y6_c00339{bottom:22.560000pt;}
.y14_c00339{bottom:22.561333pt;}
.y4_c00339{bottom:25.948000pt;}
.y12_c00339{bottom:28.640000pt;}
.y11_c00339{bottom:28.641333pt;}
.yf_c00339{bottom:35.521333pt;}
.y3_c00339{bottom:42.268000pt;}
.y1_c00339{bottom:50.272400pt;}
.y23_c00339{bottom:83.072400pt;}
.y21_c00339{bottom:97.632800pt;}
.y20_c00339{bottom:151.226667pt;}
.y1e_c00339{bottom:204.826667pt;}
.y1d_c00339{bottom:258.466667pt;}
.y1b_c00339{bottom:299.106667pt;}
.y1a_c00339{bottom:339.748000pt;}
.y18_c00339{bottom:380.548000pt;}
.y8_c00339{bottom:382.601333pt;}
.y16_c00339{bottom:421.186667pt;}
.y15_c00339{bottom:475.426667pt;}
.y13_c00339{bottom:529.852000pt;}
.y7_c00339{bottom:584.093333pt;}
.ye_c00339{bottom:650.652000pt;}
.yd_c00339{bottom:717.213333pt;}
.yb_c00339{bottom:771.654667pt;}
.ya_c00339{bottom:825.894667pt;}
.y9_c00339{bottom:880.294667pt;}
.y5_c00339{bottom:934.534667pt;}
.y2_c00339{bottom:988.934667pt;}
.h4_c00339{height:34.968828pt;}
.hd_c00339{height:40.000000pt;}
.h5_c00339{height:42.866250pt;}
.h2_c00339{height:42.895000pt;}
.h10_c00339{height:52.959867pt;}
.hf_c00339{height:52.960400pt;}
.he_c00339{height:52.992667pt;}
.h8_c00339{height:53.600000pt;}
.h6_c00339{height:53.758800pt;}
.h9_c00339{height:53.759867pt;}
.ha_c00339{height:53.791200pt;}
.hc_c00339{height:53.792667pt;}
.hb_c00339{height:65.920267pt;}
.h3_c00339{height:76.191733pt;}
.h7_c00339{height:404.185333pt;}
.h0_c00339{height:1122.559867pt;}
.h1_c00339{height:1122.666667pt;}
.w3_c00339{width:93.439600pt;}
.w4_c00339{width:133.312533pt;}
.w6_c00339{width:227.385333pt;}
.w5_c00339{width:392.706667pt;}
.w7_c00339{width:393.026667pt;}
.w2_c00339{width:620.733333pt;}
.w0_c00339{width:793.759733pt;}
.w1_c00339{width:794.000000pt;}
.x0_c00339{left:0.000000pt;}
.x5_c00339{left:4.319867pt;}
.x2_c00339{left:128.032800pt;}
.x1_c00339{left:132.352667pt;}
.x8_c00339{left:174.915200pt;}
.x4_c00339{left:179.555200pt;}
.x6_c00339{left:222.106667pt;}
.x3_c00339{left:310.275200pt;}
.x7_c00339{left:356.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_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_b4afbce4f73be568c8a71d8a.woff2')format("woff");}.ff1_c00340{font-family:ff1_c00340;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00340;src:url('chunks/assets/font_795a0063f1dd70ee9a24b2ab.woff2')format("woff");}.ff2_c00340{font-family:ff2_c00340;line-height:0.938965;font-style:normal;font-weight:normal;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_1c84e557915e5449690ed554.woff2')format("woff");}.ff3_c00340{font-family:ff3_c00340;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00340;src:url('chunks/assets/font_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff4_c00340{font-family:ff4_c00340;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00340{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00340{vertical-align:0.000000px;}
.ls2_c00340{letter-spacing:0.000000px;}
.ls1_c00340{letter-spacing:0.214973px;}
.ls0_c00340{letter-spacing:0.217313px;}
.sc__c00340{text-shadow:none;}
.sc0_c00340{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00340{-webkit-text-stroke:0px transparent;}
.sc0_c00340{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00340{word-spacing:-15.012033px;}
.ws1_c00340{word-spacing:0.000000px;}
._2_c00340{margin-left:-1.234280px;}
._3_c00340{width:1.110640px;}
._1_c00340{width:997.561968px;}
._0_c00340{width:1345.983552px;}
.fc0_c00340{color:rgb(0,0,0);}
.fs1_c00340{font-size:54.000120px;}
.fs0_c00340{font-size:66.240000px;}
.y0_c00340{bottom:0.000000px;}
.y8_c00340{bottom:5.220000px;}
.y18_c00340{bottom:17.640000px;}
.y1b_c00340{bottom:17.641500px;}
.y10_c00340{bottom:24.481650px;}
.y21_c00340{bottom:25.019550px;}
.y1e_c00340{bottom:25.020000px;}
.yc_c00340{bottom:25.198500px;}
.y16_c00340{bottom:25.201500px;}
.y6_c00340{bottom:25.380000px;}
.y13_c00340{bottom:25.381500px;}
.y4_c00340{bottom:29.191500px;}
.y11_c00340{bottom:32.220000px;}
.yf_c00340{bottom:39.961500px;}
.y3_c00340{bottom:47.551500px;}
.y1_c00340{bottom:56.556450px;}
.y22_c00340{bottom:93.456450px;}
.y20_c00340{bottom:109.836900px;}
.y1f_c00340{bottom:170.130000px;}
.y1d_c00340{bottom:230.430000px;}
.y1c_c00340{bottom:290.775000px;}
.y1a_c00340{bottom:336.495000px;}
.y19_c00340{bottom:382.216500px;}
.y17_c00340{bottom:428.116500px;}
.y15_c00340{bottom:473.835000px;}
.y14_c00340{bottom:534.855000px;}
.y12_c00340{bottom:596.083500px;}
.y7_c00340{bottom:657.105000px;}
.ye_c00340{bottom:731.983500px;}
.yd_c00340{bottom:806.865000px;}
.yb_c00340{bottom:868.111500px;}
.ya_c00340{bottom:929.131500px;}
.y9_c00340{bottom:990.331500px;}
.y5_c00340{bottom:1051.351500px;}
.y2_c00340{bottom:1112.551500px;}
.h4_c00340{height:39.339931px;}
.hd_c00340{height:45.000000px;}
.h5_c00340{height:48.224531px;}
.h2_c00340{height:48.256875px;}
.h10_c00340{height:59.579850px;}
.hf_c00340{height:59.580450px;}
.he_c00340{height:59.616750px;}
.h8_c00340{height:60.300000px;}
.h6_c00340{height:60.478650px;}
.h9_c00340{height:60.479850px;}
.ha_c00340{height:60.515100px;}
.hc_c00340{height:60.516750px;}
.hb_c00340{height:74.160300px;}
.h3_c00340{height:85.715700px;}
.h7_c00340{height:454.708500px;}
.h0_c00340{height:1262.879850px;}
.h1_c00340{height:1263.000000px;}
.w3_c00340{width:105.119550px;}
.w4_c00340{width:149.976600px;}
.w6_c00340{width:255.808500px;}
.w5_c00340{width:441.795000px;}
.w7_c00340{width:442.155000px;}
.w2_c00340{width:698.325000px;}
.w0_c00340{width:892.979700px;}
.w1_c00340{width:893.250000px;}
.x0_c00340{left:0.000000px;}
.x5_c00340{left:4.859850px;}
.x2_c00340{left:144.036900px;}
.x1_c00340{left:148.896750px;}
.x8_c00340{left:196.779600px;}
.x4_c00340{left:201.999600px;}
.x6_c00340{left:249.870000px;}
.x3_c00340{left:349.059600px;}
.x7_c00340{left:400.575000px;}
@media print{
.v0_c00340{vertical-align:0.000000pt;}
.ls2_c00340{letter-spacing:0.000000pt;}
.ls1_c00340{letter-spacing:0.191087pt;}
.ls0_c00340{letter-spacing:0.193167pt;}
.ws0_c00340{word-spacing:-13.344030pt;}
.ws1_c00340{word-spacing:0.000000pt;}
._2_c00340{margin-left:-1.097138pt;}
._3_c00340{width:0.987236pt;}
._1_c00340{width:886.721749pt;}
._0_c00340{width:1196.429824pt;}
.fs1_c00340{font-size:48.000107pt;}
.fs0_c00340{font-size:58.880000pt;}
.y0_c00340{bottom:0.000000pt;}
.y8_c00340{bottom:4.640000pt;}
.y18_c00340{bottom:15.680000pt;}
.y1b_c00340{bottom:15.681333pt;}
.y10_c00340{bottom:21.761467pt;}
.y21_c00340{bottom:22.239600pt;}
.y1e_c00340{bottom:22.240000pt;}
.yc_c00340{bottom:22.398667pt;}
.y16_c00340{bottom:22.401333pt;}
.y6_c00340{bottom:22.560000pt;}
.y13_c00340{bottom:22.561333pt;}
.y4_c00340{bottom:25.948000pt;}
.y11_c00340{bottom:28.640000pt;}
.yf_c00340{bottom:35.521333pt;}
.y3_c00340{bottom:42.268000pt;}
.y1_c00340{bottom:50.272400pt;}
.y22_c00340{bottom:83.072400pt;}
.y20_c00340{bottom:97.632800pt;}
.y1f_c00340{bottom:151.226667pt;}
.y1d_c00340{bottom:204.826667pt;}
.y1c_c00340{bottom:258.466667pt;}
.y1a_c00340{bottom:299.106667pt;}
.y19_c00340{bottom:339.748000pt;}
.y17_c00340{bottom:380.548000pt;}
.y15_c00340{bottom:421.186667pt;}
.y14_c00340{bottom:475.426667pt;}
.y12_c00340{bottom:529.852000pt;}
.y7_c00340{bottom:584.093333pt;}
.ye_c00340{bottom:650.652000pt;}
.yd_c00340{bottom:717.213333pt;}
.yb_c00340{bottom:771.654667pt;}
.ya_c00340{bottom:825.894667pt;}
.y9_c00340{bottom:880.294667pt;}
.y5_c00340{bottom:934.534667pt;}
.y2_c00340{bottom:988.934667pt;}
.h4_c00340{height:34.968828pt;}
.hd_c00340{height:40.000000pt;}
.h5_c00340{height:42.866250pt;}
.h2_c00340{height:42.895000pt;}
.h10_c00340{height:52.959867pt;}
.hf_c00340{height:52.960400pt;}
.he_c00340{height:52.992667pt;}
.h8_c00340{height:53.600000pt;}
.h6_c00340{height:53.758800pt;}
.h9_c00340{height:53.759867pt;}
.ha_c00340{height:53.791200pt;}
.hc_c00340{height:53.792667pt;}
.hb_c00340{height:65.920267pt;}
.h3_c00340{height:76.191733pt;}
.h7_c00340{height:404.185333pt;}
.h0_c00340{height:1122.559867pt;}
.h1_c00340{height:1122.666667pt;}
.w3_c00340{width:93.439600pt;}
.w4_c00340{width:133.312533pt;}
.w6_c00340{width:227.385333pt;}
.w5_c00340{width:392.706667pt;}
.w7_c00340{width:393.026667pt;}
.w2_c00340{width:620.733333pt;}
.w0_c00340{width:793.759733pt;}
.w1_c00340{width:794.000000pt;}
.x0_c00340{left:0.000000pt;}
.x5_c00340{left:4.319867pt;}
.x2_c00340{left:128.032800pt;}
.x1_c00340{left:132.352667pt;}
.x8_c00340{left:174.915200pt;}
.x4_c00340{left:179.555200pt;}
.x6_c00340{left:222.106667pt;}
.x3_c00340{left:310.275200pt;}
.x7_c00340{left:356.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_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_b4afbce4f73be568c8a71d8a.woff2')format("woff");}.ff1_c00341{font-family:ff1_c00341;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00341;src:url('chunks/assets/font_045b1a02d41893a865acd1fe.woff2')format("woff");}.ff2_c00341{font-family:ff2_c00341;line-height:0.938965;font-style:normal;font-weight:normal;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_1c84e557915e5449690ed554.woff2')format("woff");}.ff3_c00341{font-family:ff3_c00341;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00341;src:url('chunks/assets/font_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff4_c00341{font-family:ff4_c00341;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls2_c00341{letter-spacing:0.000000px;}
.ls1_c00341{letter-spacing:0.214973px;}
.ls0_c00341{letter-spacing:0.217313px;}
.sc__c00341{text-shadow:none;}
.sc0_c00341{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00341{-webkit-text-stroke:0px transparent;}
.sc0_c00341{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00341{word-spacing:-15.012033px;}
.ws1_c00341{word-spacing:0.000000px;}
._2_c00341{margin-left:-1.234280px;}
._3_c00341{width:1.110640px;}
._1_c00341{width:997.561968px;}
._0_c00341{width:1345.983552px;}
.fc0_c00341{color:rgb(0,0,0);}
.fs1_c00341{font-size:54.000120px;}
.fs0_c00341{font-size:66.240000px;}
.y0_c00341{bottom:0.000000px;}
.y8_c00341{bottom:5.220000px;}
.y18_c00341{bottom:17.640000px;}
.y1b_c00341{bottom:17.641500px;}
.y10_c00341{bottom:24.481650px;}
.y21_c00341{bottom:25.019550px;}
.y1e_c00341{bottom:25.020000px;}
.yc_c00341{bottom:25.198500px;}
.y16_c00341{bottom:25.201500px;}
.y6_c00341{bottom:25.380000px;}
.y13_c00341{bottom:25.381500px;}
.y4_c00341{bottom:29.191500px;}
.y11_c00341{bottom:32.220000px;}
.yf_c00341{bottom:39.961500px;}
.y3_c00341{bottom:47.551500px;}
.y1_c00341{bottom:56.556450px;}
.y22_c00341{bottom:93.456450px;}
.y20_c00341{bottom:109.836900px;}
.y1f_c00341{bottom:170.130000px;}
.y1d_c00341{bottom:230.430000px;}
.y1c_c00341{bottom:290.775000px;}
.y1a_c00341{bottom:336.495000px;}
.y19_c00341{bottom:382.216500px;}
.y17_c00341{bottom:428.116500px;}
.y15_c00341{bottom:473.835000px;}
.y14_c00341{bottom:534.855000px;}
.y12_c00341{bottom:596.083500px;}
.y7_c00341{bottom:657.105000px;}
.ye_c00341{bottom:731.983500px;}
.yd_c00341{bottom:806.865000px;}
.yb_c00341{bottom:868.111500px;}
.ya_c00341{bottom:929.131500px;}
.y9_c00341{bottom:990.331500px;}
.y5_c00341{bottom:1051.351500px;}
.y2_c00341{bottom:1112.551500px;}
.h4_c00341{height:39.339931px;}
.hd_c00341{height:45.000000px;}
.h5_c00341{height:48.224531px;}
.h2_c00341{height:48.256875px;}
.h10_c00341{height:59.579850px;}
.hf_c00341{height:59.580450px;}
.he_c00341{height:59.616750px;}
.h8_c00341{height:60.300000px;}
.h6_c00341{height:60.478650px;}
.h9_c00341{height:60.479850px;}
.ha_c00341{height:60.515100px;}
.hc_c00341{height:60.516750px;}
.hb_c00341{height:74.160300px;}
.h3_c00341{height:85.715700px;}
.h7_c00341{height:454.708500px;}
.h0_c00341{height:1262.879850px;}
.h1_c00341{height:1263.000000px;}
.w3_c00341{width:105.119550px;}
.w4_c00341{width:149.976600px;}
.w6_c00341{width:255.808500px;}
.w5_c00341{width:441.795000px;}
.w7_c00341{width:442.155000px;}
.w2_c00341{width:698.325000px;}
.w0_c00341{width:892.979700px;}
.w1_c00341{width:893.250000px;}
.x0_c00341{left:0.000000px;}
.x5_c00341{left:4.859850px;}
.x2_c00341{left:144.036900px;}
.x1_c00341{left:148.896750px;}
.x8_c00341{left:196.779600px;}
.x4_c00341{left:201.999600px;}
.x6_c00341{left:249.870000px;}
.x3_c00341{left:349.059600px;}
.x7_c00341{left:400.575000px;}
@media print{
.v0_c00341{vertical-align:0.000000pt;}
.ls2_c00341{letter-spacing:0.000000pt;}
.ls1_c00341{letter-spacing:0.191087pt;}
.ls0_c00341{letter-spacing:0.193167pt;}
.ws0_c00341{word-spacing:-13.344030pt;}
.ws1_c00341{word-spacing:0.000000pt;}
._2_c00341{margin-left:-1.097138pt;}
._3_c00341{width:0.987236pt;}
._1_c00341{width:886.721749pt;}
._0_c00341{width:1196.429824pt;}
.fs1_c00341{font-size:48.000107pt;}
.fs0_c00341{font-size:58.880000pt;}
.y0_c00341{bottom:0.000000pt;}
.y8_c00341{bottom:4.640000pt;}
.y18_c00341{bottom:15.680000pt;}
.y1b_c00341{bottom:15.681333pt;}
.y10_c00341{bottom:21.761467pt;}
.y21_c00341{bottom:22.239600pt;}
.y1e_c00341{bottom:22.240000pt;}
.yc_c00341{bottom:22.398667pt;}
.y16_c00341{bottom:22.401333pt;}
.y6_c00341{bottom:22.560000pt;}
.y13_c00341{bottom:22.561333pt;}
.y4_c00341{bottom:25.948000pt;}
.y11_c00341{bottom:28.640000pt;}
.yf_c00341{bottom:35.521333pt;}
.y3_c00341{bottom:42.268000pt;}
.y1_c00341{bottom:50.272400pt;}
.y22_c00341{bottom:83.072400pt;}
.y20_c00341{bottom:97.632800pt;}
.y1f_c00341{bottom:151.226667pt;}
.y1d_c00341{bottom:204.826667pt;}
.y1c_c00341{bottom:258.466667pt;}
.y1a_c00341{bottom:299.106667pt;}
.y19_c00341{bottom:339.748000pt;}
.y17_c00341{bottom:380.548000pt;}
.y15_c00341{bottom:421.186667pt;}
.y14_c00341{bottom:475.426667pt;}
.y12_c00341{bottom:529.852000pt;}
.y7_c00341{bottom:584.093333pt;}
.ye_c00341{bottom:650.652000pt;}
.yd_c00341{bottom:717.213333pt;}
.yb_c00341{bottom:771.654667pt;}
.ya_c00341{bottom:825.894667pt;}
.y9_c00341{bottom:880.294667pt;}
.y5_c00341{bottom:934.534667pt;}
.y2_c00341{bottom:988.934667pt;}
.h4_c00341{height:34.968828pt;}
.hd_c00341{height:40.000000pt;}
.h5_c00341{height:42.866250pt;}
.h2_c00341{height:42.895000pt;}
.h10_c00341{height:52.959867pt;}
.hf_c00341{height:52.960400pt;}
.he_c00341{height:52.992667pt;}
.h8_c00341{height:53.600000pt;}
.h6_c00341{height:53.758800pt;}
.h9_c00341{height:53.759867pt;}
.ha_c00341{height:53.791200pt;}
.hc_c00341{height:53.792667pt;}
.hb_c00341{height:65.920267pt;}
.h3_c00341{height:76.191733pt;}
.h7_c00341{height:404.185333pt;}
.h0_c00341{height:1122.559867pt;}
.h1_c00341{height:1122.666667pt;}
.w3_c00341{width:93.439600pt;}
.w4_c00341{width:133.312533pt;}
.w6_c00341{width:227.385333pt;}
.w5_c00341{width:392.706667pt;}
.w7_c00341{width:393.026667pt;}
.w2_c00341{width:620.733333pt;}
.w0_c00341{width:793.759733pt;}
.w1_c00341{width:794.000000pt;}
.x0_c00341{left:0.000000pt;}
.x5_c00341{left:4.319867pt;}
.x2_c00341{left:128.032800pt;}
.x1_c00341{left:132.352667pt;}
.x8_c00341{left:174.915200pt;}
.x4_c00341{left:179.555200pt;}
.x6_c00341{left:222.106667pt;}
.x3_c00341{left:310.275200pt;}
.x7_c00341{left:356.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_6765282bbc8b255b20e9bcac.woff2')format("woff");}.ff1_c00342{font-family:ff1_c00342;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00342;src:url('chunks/assets/font_b62fa636f2e82f7fbcc00cbd.woff2')format("woff");}.ff2_c00342{font-family:ff2_c00342;line-height:1.058594;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00342{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00342{vertical-align:0.000000px;}
.ls1_c00342{letter-spacing:0.000000px;}
.ls0_c00342{letter-spacing:845.705280px;}
.sc__c00342{text-shadow:none;}
.sc0_c00342{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00342{-webkit-text-stroke:0px transparent;}
.sc0_c00342{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00342{word-spacing:0.000000px;}
._0_c00342{margin-left:-1.383324px;}
.fc1_c00342{color:rgb(64,64,64);}
.fc0_c00342{color:rgb(0,0,0);}
.fs1_c00342{font-size:66.240000px;}
.fs0_c00342{font-size:95.760000px;}
.y0_c00342{bottom:0.000000px;}
.y3_c00342{bottom:752.145000px;}
.y2_c00342{bottom:780.766500px;}
.y1_c00342{bottom:814.966500px;}
.h3_c00342{height:56.957344px;}
.h2_c00342{height:69.715898px;}
.h0_c00342{height:1262.879850px;}
.h1_c00342{height:1263.000000px;}
.w0_c00342{width:892.979850px;}
.w1_c00342{width:893.250000px;}
.x0_c00342{left:0.000000px;}
.x2_c00342{left:276.330000px;}
.x1_c00342{left:427.755000px;}
.x3_c00342{left:446.475000px;}
@media print{
.v0_c00342{vertical-align:0.000000pt;}
.ls1_c00342{letter-spacing:0.000000pt;}
.ls0_c00342{letter-spacing:751.738027pt;}
.ws0_c00342{word-spacing:0.000000pt;}
._0_c00342{margin-left:-1.229621pt;}
.fs1_c00342{font-size:58.880000pt;}
.fs0_c00342{font-size:85.120000pt;}
.y0_c00342{bottom:0.000000pt;}
.y3_c00342{bottom:668.573333pt;}
.y2_c00342{bottom:694.014667pt;}
.y1_c00342{bottom:724.414667pt;}
.h3_c00342{height:50.628750pt;}
.h2_c00342{height:61.969688pt;}
.h0_c00342{height:1122.559867pt;}
.h1_c00342{height:1122.666667pt;}
.w0_c00342{width:793.759867pt;}
.w1_c00342{width:794.000000pt;}
.x0_c00342{left:0.000000pt;}
.x2_c00342{left:245.626667pt;}
.x1_c00342{left:380.226667pt;}
.x3_c00342{left:396.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_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_b4afbce4f73be568c8a71d8a.woff2')format("woff");}.ff1_c00343{font-family:ff1_c00343;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00343;src:url('chunks/assets/font_8564a760f7b5bacd3a2d1fd4.woff2')format("woff");}.ff2_c00343{font-family:ff2_c00343;line-height:0.938965;font-style:normal;font-weight:normal;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_fa753244bff2b27c06b508e3.woff2')format("woff");}.ff3_c00343{font-family:ff3_c00343;line-height:0.925293;font-style: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;}
.ls0_c00343{letter-spacing:0.000000px;}
.sc__c00343{text-shadow:none;}
.sc0_c00343{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00343{-webkit-text-stroke:0px transparent;}
.sc0_c00343{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00343{word-spacing:-15.012017px;}
.ws1_c00343{word-spacing:0.000000px;}
._2_c00343{margin-left:-1.234280px;}
._3_c00343{width:1.065088px;}
._1_c00343{width:997.561968px;}
._0_c00343{width:1345.983552px;}
.fc0_c00343{color:rgb(0,0,0);}
.fs1_c00343{font-size:54.000060px;}
.fs0_c00343{font-size:66.240000px;}
.y0_c00343{bottom:0.000000px;}
.y19_c00343{bottom:17.640000px;}
.yf_c00343{bottom:24.301200px;}
.y1e_c00343{bottom:24.840000px;}
.y21_c00343{bottom:24.840300px;}
.y13_c00343{bottom:25.200000px;}
.y17_c00343{bottom:25.380000px;}
.y15_c00343{bottom:25.410000px;}
.y5_c00343{bottom:32.218500px;}
.yd_c00343{bottom:32.220000px;}
.y3_c00343{bottom:36.930000px;}
.ye_c00343{bottom:39.961500px;}
.y11_c00343{bottom:40.680000px;}
.y1_c00343{bottom:56.556450px;}
.y7_c00343{bottom:69.478500px;}
.y22_c00343{bottom:100.476600px;}
.y20_c00343{bottom:116.856450px;}
.yb_c00343{bottom:166.546200px;}
.y1f_c00343{bottom:177.150000px;}
.ya_c00343{bottom:182.206500px;}
.y1d_c00343{bottom:237.450000px;}
.y1c_c00343{bottom:297.795000px;}
.y1b_c00343{bottom:343.515000px;}
.y1a_c00343{bottom:389.235000px;}
.y18_c00343{bottom:434.955000px;}
.y16_c00343{bottom:480.675000px;}
.y14_c00343{bottom:541.875000px;}
.y12_c00343{bottom:603.105000px;}
.y10_c00343{bottom:664.125000px;}
.y9_c00343{bottom:739.005000px;}
.yc_c00343{bottom:813.705000px;}
.y8_c00343{bottom:888.451500px;}
.y6_c00343{bottom:963.151500px;}
.y4_c00343{bottom:1037.851500px;}
.y2_c00343{bottom:1112.551500px;}
.h6_c00343{height:39.339887px;}
.hf_c00343{height:45.000000px;}
.h4_c00343{height:48.224531px;}
.h2_c00343{height:48.256875px;}
.h11_c00343{height:59.579850px;}
.h12_c00343{height:59.580450px;}
.h10_c00343{height:59.616750px;}
.hc_c00343{height:60.300000px;}
.hd_c00343{height:60.336900px;}
.he_c00343{height:60.479850px;}
.h5_c00343{height:73.978650px;}
.ha_c00343{height:73.979850px;}
.h9_c00343{height:74.015700px;}
.hb_c00343{height:74.159700px;}
.h3_c00343{height:85.715100px;}
.h7_c00343{height:148.678650px;}
.h8_c00343{height:223.410000px;}
.h0_c00343{height:1262.879850px;}
.h1_c00343{height:1263.000000px;}
.w4_c00343{width:120.096750px;}
.w3_c00343{width:133.740300px;}
.w6_c00343{width:254.550000px;}
.w5_c00343{width:441.975000px;}
.w7_c00343{width:442.335000px;}
.w2_c00343{width:697.245000px;}
.w0_c00343{width:892.979850px;}
.w1_c00343{width:893.250000px;}
.x0_c00343{left:0.000000px;}
.x3_c00343{left:4.853250px;}
.x1_c00343{left:148.896750px;}
.x2_c00343{left:186.158250px;}
.x7_c00343{left:200.198250px;}
.x6_c00343{left:220.890000px;}
.x4_c00343{left:283.350000px;}
.x5_c00343{left:404.175000px;}
@media print{
.v0_c00343{vertical-align:0.000000pt;}
.ls0_c00343{letter-spacing:0.000000pt;}
.ws0_c00343{word-spacing:-13.344015pt;}
.ws1_c00343{word-spacing:0.000000pt;}
._2_c00343{margin-left:-1.097138pt;}
._3_c00343{width:0.946745pt;}
._1_c00343{width:886.721749pt;}
._0_c00343{width:1196.429824pt;}
.fs1_c00343{font-size:48.000053pt;}
.fs0_c00343{font-size:58.880000pt;}
.y0_c00343{bottom:0.000000pt;}
.y19_c00343{bottom:15.680000pt;}
.yf_c00343{bottom:21.601067pt;}
.y1e_c00343{bottom:22.080000pt;}
.y21_c00343{bottom:22.080267pt;}
.y13_c00343{bottom:22.400000pt;}
.y17_c00343{bottom:22.560000pt;}
.y15_c00343{bottom:22.586667pt;}
.y5_c00343{bottom:28.638667pt;}
.yd_c00343{bottom:28.640000pt;}
.y3_c00343{bottom:32.826667pt;}
.ye_c00343{bottom:35.521333pt;}
.y11_c00343{bottom:36.160000pt;}
.y1_c00343{bottom:50.272400pt;}
.y7_c00343{bottom:61.758667pt;}
.y22_c00343{bottom:89.312533pt;}
.y20_c00343{bottom:103.872400pt;}
.yb_c00343{bottom:148.041067pt;}
.y1f_c00343{bottom:157.466667pt;}
.ya_c00343{bottom:161.961333pt;}
.y1d_c00343{bottom:211.066667pt;}
.y1c_c00343{bottom:264.706667pt;}
.y1b_c00343{bottom:305.346667pt;}
.y1a_c00343{bottom:345.986667pt;}
.y18_c00343{bottom:386.626667pt;}
.y16_c00343{bottom:427.266667pt;}
.y14_c00343{bottom:481.666667pt;}
.y12_c00343{bottom:536.093333pt;}
.y10_c00343{bottom:590.333333pt;}
.y9_c00343{bottom:656.893333pt;}
.yc_c00343{bottom:723.293333pt;}
.y8_c00343{bottom:789.734667pt;}
.y6_c00343{bottom:856.134667pt;}
.y4_c00343{bottom:922.534667pt;}
.y2_c00343{bottom:988.934667pt;}
.h6_c00343{height:34.968789pt;}
.hf_c00343{height:40.000000pt;}
.h4_c00343{height:42.866250pt;}
.h2_c00343{height:42.895000pt;}
.h11_c00343{height:52.959867pt;}
.h12_c00343{height:52.960400pt;}
.h10_c00343{height:52.992667pt;}
.hc_c00343{height:53.600000pt;}
.hd_c00343{height:53.632800pt;}
.he_c00343{height:53.759867pt;}
.h5_c00343{height:65.758800pt;}
.ha_c00343{height:65.759867pt;}
.h9_c00343{height:65.791733pt;}
.hb_c00343{height:65.919733pt;}
.h3_c00343{height:76.191200pt;}
.h7_c00343{height:132.158800pt;}
.h8_c00343{height:198.586667pt;}
.h0_c00343{height:1122.559867pt;}
.h1_c00343{height:1122.666667pt;}
.w4_c00343{width:106.752667pt;}
.w3_c00343{width:118.880267pt;}
.w6_c00343{width:226.266667pt;}
.w5_c00343{width:392.866667pt;}
.w7_c00343{width:393.186667pt;}
.w2_c00343{width:619.773333pt;}
.w0_c00343{width:793.759867pt;}
.w1_c00343{width:794.000000pt;}
.x0_c00343{left:0.000000pt;}
.x3_c00343{left:4.314000pt;}
.x1_c00343{left:132.352667pt;}
.x2_c00343{left:165.474000pt;}
.x7_c00343{left:177.954000pt;}
.x6_c00343{left:196.346667pt;}
.x4_c00343{left:251.866667pt;}
.x5_c00343{left:359.266667pt;}
}





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

.ir_c00344:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00344{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00344;src:url('chunks/assets/font_b4afbce4f73be568c8a71d8a.woff2')format("woff");}.ff1_c00344{font-family:ff1_c00344;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00344;src:url('chunks/assets/font_7d80f19991064fd8c9c7c102.woff2')format("woff");}.ff2_c00344{font-family:ff2_c00344;line-height:0.938965;font-style:normal;font-weight:normal;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_fa753244bff2b27c06b508e3.woff2')format("woff");}.ff3_c00344{font-family:ff3_c00344;line-height:0.925293;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00344{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00344{vertical-align:0.000000px;}
.ls0_c00344{letter-spacing:0.000000px;}
.sc__c00344{text-shadow:none;}
.sc0_c00344{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00344{-webkit-text-stroke:0px transparent;}
.sc0_c00344{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00344{word-spacing:-15.012017px;}
.ws1_c00344{word-spacing:0.000000px;}
._2_c00344{margin-left:-1.234280px;}
._3_c00344{width:1.065088px;}
._1_c00344{width:997.561968px;}
._0_c00344{width:1345.983552px;}
.fc0_c00344{color:rgb(0,0,0);}
.fs1_c00344{font-size:54.000060px;}
.fs0_c00344{font-size:66.240000px;}
.y0_c00344{bottom:0.000000px;}
.y19_c00344{bottom:17.640000px;}
.yf_c00344{bottom:24.301200px;}
.y1e_c00344{bottom:24.840000px;}
.y21_c00344{bottom:24.840300px;}
.y13_c00344{bottom:25.200000px;}
.y17_c00344{bottom:25.380000px;}
.y15_c00344{bottom:25.410000px;}
.y5_c00344{bottom:32.218500px;}
.yd_c00344{bottom:32.220000px;}
.y3_c00344{bottom:36.930000px;}
.ye_c00344{bottom:39.961500px;}
.y11_c00344{bottom:40.680000px;}
.y1_c00344{bottom:56.556450px;}
.y7_c00344{bottom:69.478500px;}
.y22_c00344{bottom:100.476600px;}
.y20_c00344{bottom:116.856450px;}
.yb_c00344{bottom:166.546200px;}
.y1f_c00344{bottom:177.150000px;}
.ya_c00344{bottom:182.206500px;}
.y1d_c00344{bottom:237.450000px;}
.y1c_c00344{bottom:297.795000px;}
.y1b_c00344{bottom:343.515000px;}
.y1a_c00344{bottom:389.235000px;}
.y18_c00344{bottom:434.955000px;}
.y16_c00344{bottom:480.675000px;}
.y14_c00344{bottom:541.875000px;}
.y12_c00344{bottom:603.105000px;}
.y10_c00344{bottom:664.125000px;}
.y9_c00344{bottom:739.005000px;}
.yc_c00344{bottom:813.705000px;}
.y8_c00344{bottom:888.451500px;}
.y6_c00344{bottom:963.151500px;}
.y4_c00344{bottom:1037.851500px;}
.y2_c00344{bottom:1112.551500px;}
.h6_c00344{height:39.339887px;}
.hf_c00344{height:45.000000px;}
.h4_c00344{height:48.224531px;}
.h2_c00344{height:48.256875px;}
.h11_c00344{height:59.579850px;}
.h12_c00344{height:59.580450px;}
.h10_c00344{height:59.616750px;}
.hc_c00344{height:60.300000px;}
.hd_c00344{height:60.336900px;}
.he_c00344{height:60.479850px;}
.h5_c00344{height:73.978650px;}
.ha_c00344{height:73.979850px;}
.h9_c00344{height:74.015700px;}
.hb_c00344{height:74.159700px;}
.h3_c00344{height:85.715100px;}
.h7_c00344{height:148.678650px;}
.h8_c00344{height:223.410000px;}
.h0_c00344{height:1262.879850px;}
.h1_c00344{height:1263.000000px;}
.w4_c00344{width:120.096750px;}
.w3_c00344{width:133.740300px;}
.w6_c00344{width:254.550000px;}
.w5_c00344{width:441.975000px;}
.w8_c00344{width:442.335000px;}
.w2_c00344{width:693.465000px;}
.w7_c00344{width:697.245000px;}
.w0_c00344{width:892.979850px;}
.w1_c00344{width:893.250000px;}
.x0_c00344{left:0.000000px;}
.x3_c00344{left:4.853250px;}
.x1_c00344{left:148.896750px;}
.x2_c00344{left:184.358250px;}
.x7_c00344{left:200.198250px;}
.x6_c00344{left:220.890000px;}
.x4_c00344{left:283.350000px;}
.x5_c00344{left:404.175000px;}
@media print{
.v0_c00344{vertical-align:0.000000pt;}
.ls0_c00344{letter-spacing:0.000000pt;}
.ws0_c00344{word-spacing:-13.344015pt;}
.ws1_c00344{word-spacing:0.000000pt;}
._2_c00344{margin-left:-1.097138pt;}
._3_c00344{width:0.946745pt;}
._1_c00344{width:886.721749pt;}
._0_c00344{width:1196.429824pt;}
.fs1_c00344{font-size:48.000053pt;}
.fs0_c00344{font-size:58.880000pt;}
.y0_c00344{bottom:0.000000pt;}
.y19_c00344{bottom:15.680000pt;}
.yf_c00344{bottom:21.601067pt;}
.y1e_c00344{bottom:22.080000pt;}
.y21_c00344{bottom:22.080267pt;}
.y13_c00344{bottom:22.400000pt;}
.y17_c00344{bottom:22.560000pt;}
.y15_c00344{bottom:22.586667pt;}
.y5_c00344{bottom:28.638667pt;}
.yd_c00344{bottom:28.640000pt;}
.y3_c00344{bottom:32.826667pt;}
.ye_c00344{bottom:35.521333pt;}
.y11_c00344{bottom:36.160000pt;}
.y1_c00344{bottom:50.272400pt;}
.y7_c00344{bottom:61.758667pt;}
.y22_c00344{bottom:89.312533pt;}
.y20_c00344{bottom:103.872400pt;}
.yb_c00344{bottom:148.041067pt;}
.y1f_c00344{bottom:157.466667pt;}
.ya_c00344{bottom:161.961333pt;}
.y1d_c00344{bottom:211.066667pt;}
.y1c_c00344{bottom:264.706667pt;}
.y1b_c00344{bottom:305.346667pt;}
.y1a_c00344{bottom:345.986667pt;}
.y18_c00344{bottom:386.626667pt;}
.y16_c00344{bottom:427.266667pt;}
.y14_c00344{bottom:481.666667pt;}
.y12_c00344{bottom:536.093333pt;}
.y10_c00344{bottom:590.333333pt;}
.y9_c00344{bottom:656.893333pt;}
.yc_c00344{bottom:723.293333pt;}
.y8_c00344{bottom:789.734667pt;}
.y6_c00344{bottom:856.134667pt;}
.y4_c00344{bottom:922.534667pt;}
.y2_c00344{bottom:988.934667pt;}
.h6_c00344{height:34.968789pt;}
.hf_c00344{height:40.000000pt;}
.h4_c00344{height:42.866250pt;}
.h2_c00344{height:42.895000pt;}
.h11_c00344{height:52.959867pt;}
.h12_c00344{height:52.960400pt;}
.h10_c00344{height:52.992667pt;}
.hc_c00344{height:53.600000pt;}
.hd_c00344{height:53.632800pt;}
.he_c00344{height:53.759867pt;}
.h5_c00344{height:65.758800pt;}
.ha_c00344{height:65.759867pt;}
.h9_c00344{height:65.791733pt;}
.hb_c00344{height:65.919733pt;}
.h3_c00344{height:76.191200pt;}
.h7_c00344{height:132.158800pt;}
.h8_c00344{height:198.586667pt;}
.h0_c00344{height:1122.559867pt;}
.h1_c00344{height:1122.666667pt;}
.w4_c00344{width:106.752667pt;}
.w3_c00344{width:118.880267pt;}
.w6_c00344{width:226.266667pt;}
.w5_c00344{width:392.866667pt;}
.w8_c00344{width:393.186667pt;}
.w2_c00344{width:616.413333pt;}
.w7_c00344{width:619.773333pt;}
.w0_c00344{width:793.759867pt;}
.w1_c00344{width:794.000000pt;}
.x0_c00344{left:0.000000pt;}
.x3_c00344{left:4.314000pt;}
.x1_c00344{left:132.352667pt;}
.x2_c00344{left:163.874000pt;}
.x7_c00344{left:177.954000pt;}
.x6_c00344{left:196.346667pt;}
.x4_c00344{left:251.866667pt;}
.x5_c00344{left:359.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_b4afbce4f73be568c8a71d8a.woff2')format("woff");}.ff1_c00345{font-family:ff1_c00345;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00345;src:url('chunks/assets/font_1ef4485bb3fdccba41d25a49.woff2')format("woff");}.ff2_c00345{font-family:ff2_c00345;line-height:0.938965;font-style:normal;font-weight:normal;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_fa753244bff2b27c06b508e3.woff2')format("woff");}.ff3_c00345{font-family:ff3_c00345;line-height:0.925293;font-style: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;}
.ls0_c00345{letter-spacing:0.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:-15.012017px;}
.ws1_c00345{word-spacing:0.000000px;}
._2_c00345{margin-left:-1.234280px;}
._3_c00345{width:1.065088px;}
._1_c00345{width:997.561968px;}
._0_c00345{width:1345.983552px;}
.fc0_c00345{color:rgb(0,0,0);}
.fs1_c00345{font-size:54.000060px;}
.fs0_c00345{font-size:66.240000px;}
.y0_c00345{bottom:0.000000px;}
.y1a_c00345{bottom:17.640000px;}
.y10_c00345{bottom:24.301200px;}
.y1f_c00345{bottom:24.840000px;}
.y22_c00345{bottom:24.840300px;}
.y14_c00345{bottom:25.200000px;}
.y18_c00345{bottom:25.380000px;}
.y16_c00345{bottom:25.410000px;}
.y5_c00345{bottom:32.218500px;}
.ye_c00345{bottom:32.220000px;}
.y3_c00345{bottom:36.930000px;}
.yf_c00345{bottom:39.961500px;}
.y12_c00345{bottom:40.680000px;}
.y1_c00345{bottom:56.556450px;}
.yc_c00345{bottom:91.260300px;}
.y23_c00345{bottom:100.476600px;}
.yb_c00345{bottom:106.920000px;}
.y21_c00345{bottom:116.856450px;}
.ya_c00345{bottom:122.445000px;}
.y7_c00345{bottom:136.080000px;}
.y20_c00345{bottom:177.150000px;}
.y1e_c00345{bottom:237.450000px;}
.y1d_c00345{bottom:297.795000px;}
.y1c_c00345{bottom:343.515000px;}
.y1b_c00345{bottom:389.235000px;}
.y19_c00345{bottom:434.955000px;}
.y17_c00345{bottom:480.675000px;}
.y15_c00345{bottom:541.875000px;}
.y13_c00345{bottom:603.105000px;}
.y11_c00345{bottom:664.125000px;}
.y9_c00345{bottom:739.005000px;}
.yd_c00345{bottom:813.705000px;}
.y8_c00345{bottom:888.451500px;}
.y6_c00345{bottom:963.151500px;}
.y4_c00345{bottom:1037.851500px;}
.y2_c00345{bottom:1112.551500px;}
.h6_c00345{height:39.339887px;}
.hf_c00345{height:45.000000px;}
.h4_c00345{height:48.224531px;}
.h2_c00345{height:48.256875px;}
.h11_c00345{height:59.579850px;}
.h12_c00345{height:59.580450px;}
.h10_c00345{height:59.616750px;}
.hc_c00345{height:60.300000px;}
.hd_c00345{height:60.336900px;}
.he_c00345{height:60.479850px;}
.h5_c00345{height:73.978650px;}
.ha_c00345{height:73.979850px;}
.h9_c00345{height:74.015700px;}
.hb_c00345{height:74.159700px;}
.h3_c00345{height:85.715100px;}
.h7_c00345{height:148.678650px;}
.h8_c00345{height:223.410000px;}
.h0_c00345{height:1262.879850px;}
.h1_c00345{height:1263.000000px;}
.w4_c00345{width:120.096750px;}
.w3_c00345{width:133.740300px;}
.w6_c00345{width:254.550000px;}
.w5_c00345{width:441.975000px;}
.w8_c00345{width:442.335000px;}
.w2_c00345{width:693.465000px;}
.w7_c00345{width:697.245000px;}
.w0_c00345{width:892.979850px;}
.w1_c00345{width:893.250000px;}
.x0_c00345{left:0.000000px;}
.x3_c00345{left:4.853250px;}
.x1_c00345{left:148.896750px;}
.x2_c00345{left:184.358250px;}
.x7_c00345{left:200.198250px;}
.x6_c00345{left:220.890000px;}
.x4_c00345{left:283.350000px;}
.x5_c00345{left:404.175000px;}
@media print{
.v0_c00345{vertical-align:0.000000pt;}
.ls0_c00345{letter-spacing:0.000000pt;}
.ws0_c00345{word-spacing:-13.344015pt;}
.ws1_c00345{word-spacing:0.000000pt;}
._2_c00345{margin-left:-1.097138pt;}
._3_c00345{width:0.946745pt;}
._1_c00345{width:886.721749pt;}
._0_c00345{width:1196.429824pt;}
.fs1_c00345{font-size:48.000053pt;}
.fs0_c00345{font-size:58.880000pt;}
.y0_c00345{bottom:0.000000pt;}
.y1a_c00345{bottom:15.680000pt;}
.y10_c00345{bottom:21.601067pt;}
.y1f_c00345{bottom:22.080000pt;}
.y22_c00345{bottom:22.080267pt;}
.y14_c00345{bottom:22.400000pt;}
.y18_c00345{bottom:22.560000pt;}
.y16_c00345{bottom:22.586667pt;}
.y5_c00345{bottom:28.638667pt;}
.ye_c00345{bottom:28.640000pt;}
.y3_c00345{bottom:32.826667pt;}
.yf_c00345{bottom:35.521333pt;}
.y12_c00345{bottom:36.160000pt;}
.y1_c00345{bottom:50.272400pt;}
.yc_c00345{bottom:81.120267pt;}
.y23_c00345{bottom:89.312533pt;}
.yb_c00345{bottom:95.040000pt;}
.y21_c00345{bottom:103.872400pt;}
.ya_c00345{bottom:108.840000pt;}
.y7_c00345{bottom:120.960000pt;}
.y20_c00345{bottom:157.466667pt;}
.y1e_c00345{bottom:211.066667pt;}
.y1d_c00345{bottom:264.706667pt;}
.y1c_c00345{bottom:305.346667pt;}
.y1b_c00345{bottom:345.986667pt;}
.y19_c00345{bottom:386.626667pt;}
.y17_c00345{bottom:427.266667pt;}
.y15_c00345{bottom:481.666667pt;}
.y13_c00345{bottom:536.093333pt;}
.y11_c00345{bottom:590.333333pt;}
.y9_c00345{bottom:656.893333pt;}
.yd_c00345{bottom:723.293333pt;}
.y8_c00345{bottom:789.734667pt;}
.y6_c00345{bottom:856.134667pt;}
.y4_c00345{bottom:922.534667pt;}
.y2_c00345{bottom:988.934667pt;}
.h6_c00345{height:34.968789pt;}
.hf_c00345{height:40.000000pt;}
.h4_c00345{height:42.866250pt;}
.h2_c00345{height:42.895000pt;}
.h11_c00345{height:52.959867pt;}
.h12_c00345{height:52.960400pt;}
.h10_c00345{height:52.992667pt;}
.hc_c00345{height:53.600000pt;}
.hd_c00345{height:53.632800pt;}
.he_c00345{height:53.759867pt;}
.h5_c00345{height:65.758800pt;}
.ha_c00345{height:65.759867pt;}
.h9_c00345{height:65.791733pt;}
.hb_c00345{height:65.919733pt;}
.h3_c00345{height:76.191200pt;}
.h7_c00345{height:132.158800pt;}
.h8_c00345{height:198.586667pt;}
.h0_c00345{height:1122.559867pt;}
.h1_c00345{height:1122.666667pt;}
.w4_c00345{width:106.752667pt;}
.w3_c00345{width:118.880267pt;}
.w6_c00345{width:226.266667pt;}
.w5_c00345{width:392.866667pt;}
.w8_c00345{width:393.186667pt;}
.w2_c00345{width:616.413333pt;}
.w7_c00345{width:619.773333pt;}
.w0_c00345{width:793.759867pt;}
.w1_c00345{width:794.000000pt;}
.x0_c00345{left:0.000000pt;}
.x3_c00345{left:4.314000pt;}
.x1_c00345{left:132.352667pt;}
.x2_c00345{left:163.874000pt;}
.x7_c00345{left:177.954000pt;}
.x6_c00345{left:196.346667pt;}
.x4_c00345{left:251.866667pt;}
.x5_c00345{left:359.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_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_b4afbce4f73be568c8a71d8a.woff2')format("woff");}.ff1_c00346{font-family:ff1_c00346;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00346;src:url('chunks/assets/font_e3b817a01bbdcb8a6e7ea1a8.woff2')format("woff");}.ff2_c00346{font-family:ff2_c00346;line-height:0.938965;font-style:normal;font-weight:normal;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_fa753244bff2b27c06b508e3.woff2')format("woff");}.ff3_c00346{font-family:ff3_c00346;line-height:0.925293;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00346{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00346{vertical-align:0.000000px;}
.ls0_c00346{letter-spacing:0.000000px;}
.sc__c00346{text-shadow:none;}
.sc0_c00346{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00346{-webkit-text-stroke:0px transparent;}
.sc0_c00346{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00346{word-spacing:-15.012017px;}
.ws1_c00346{word-spacing:0.000000px;}
._2_c00346{margin-left:-1.234280px;}
._3_c00346{width:1.065088px;}
._1_c00346{width:997.561968px;}
._0_c00346{width:1345.983552px;}
.fc0_c00346{color:rgb(0,0,0);}
.fs1_c00346{font-size:54.000060px;}
.fs0_c00346{font-size:66.240000px;}
.y0_c00346{bottom:0.000000px;}
.y1a_c00346{bottom:17.640000px;}
.y10_c00346{bottom:24.301200px;}
.y1f_c00346{bottom:24.840000px;}
.y22_c00346{bottom:24.840300px;}
.y14_c00346{bottom:25.200000px;}
.y18_c00346{bottom:25.380000px;}
.y16_c00346{bottom:25.410000px;}
.y5_c00346{bottom:32.218500px;}
.ye_c00346{bottom:32.220000px;}
.y3_c00346{bottom:36.930000px;}
.yf_c00346{bottom:39.961500px;}
.y12_c00346{bottom:40.680000px;}
.y1_c00346{bottom:56.556450px;}
.yc_c00346{bottom:91.260300px;}
.y23_c00346{bottom:100.476600px;}
.yb_c00346{bottom:106.920000px;}
.y21_c00346{bottom:116.856450px;}
.ya_c00346{bottom:122.445000px;}
.y7_c00346{bottom:136.080000px;}
.y20_c00346{bottom:177.150000px;}
.y1e_c00346{bottom:237.450000px;}
.y1d_c00346{bottom:297.795000px;}
.y1c_c00346{bottom:343.515000px;}
.y1b_c00346{bottom:389.235000px;}
.y19_c00346{bottom:434.955000px;}
.y17_c00346{bottom:480.675000px;}
.y15_c00346{bottom:541.875000px;}
.y13_c00346{bottom:603.105000px;}
.y11_c00346{bottom:664.125000px;}
.y9_c00346{bottom:739.005000px;}
.yd_c00346{bottom:813.705000px;}
.y8_c00346{bottom:888.451500px;}
.y6_c00346{bottom:963.151500px;}
.y4_c00346{bottom:1037.851500px;}
.y2_c00346{bottom:1112.551500px;}
.h6_c00346{height:39.339887px;}
.hf_c00346{height:45.000000px;}
.h4_c00346{height:48.224531px;}
.h2_c00346{height:48.256875px;}
.h11_c00346{height:59.579850px;}
.h12_c00346{height:59.580450px;}
.h10_c00346{height:59.616750px;}
.hc_c00346{height:60.300000px;}
.hd_c00346{height:60.336900px;}
.he_c00346{height:60.479850px;}
.h5_c00346{height:73.978650px;}
.ha_c00346{height:73.979850px;}
.h9_c00346{height:74.015700px;}
.hb_c00346{height:74.159700px;}
.h3_c00346{height:85.715100px;}
.h7_c00346{height:148.678650px;}
.h8_c00346{height:223.410000px;}
.h0_c00346{height:1262.879850px;}
.h1_c00346{height:1263.000000px;}
.w4_c00346{width:120.096750px;}
.w3_c00346{width:133.740300px;}
.w6_c00346{width:254.550000px;}
.w5_c00346{width:441.975000px;}
.w8_c00346{width:442.335000px;}
.w2_c00346{width:693.465000px;}
.w7_c00346{width:697.245000px;}
.w0_c00346{width:892.979850px;}
.w1_c00346{width:893.250000px;}
.x0_c00346{left:0.000000px;}
.x3_c00346{left:4.853250px;}
.x1_c00346{left:148.896750px;}
.x2_c00346{left:184.358250px;}
.x7_c00346{left:200.198250px;}
.x6_c00346{left:220.890000px;}
.x4_c00346{left:283.350000px;}
.x5_c00346{left:404.175000px;}
@media print{
.v0_c00346{vertical-align:0.000000pt;}
.ls0_c00346{letter-spacing:0.000000pt;}
.ws0_c00346{word-spacing:-13.344015pt;}
.ws1_c00346{word-spacing:0.000000pt;}
._2_c00346{margin-left:-1.097138pt;}
._3_c00346{width:0.946745pt;}
._1_c00346{width:886.721749pt;}
._0_c00346{width:1196.429824pt;}
.fs1_c00346{font-size:48.000053pt;}
.fs0_c00346{font-size:58.880000pt;}
.y0_c00346{bottom:0.000000pt;}
.y1a_c00346{bottom:15.680000pt;}
.y10_c00346{bottom:21.601067pt;}
.y1f_c00346{bottom:22.080000pt;}
.y22_c00346{bottom:22.080267pt;}
.y14_c00346{bottom:22.400000pt;}
.y18_c00346{bottom:22.560000pt;}
.y16_c00346{bottom:22.586667pt;}
.y5_c00346{bottom:28.638667pt;}
.ye_c00346{bottom:28.640000pt;}
.y3_c00346{bottom:32.826667pt;}
.yf_c00346{bottom:35.521333pt;}
.y12_c00346{bottom:36.160000pt;}
.y1_c00346{bottom:50.272400pt;}
.yc_c00346{bottom:81.120267pt;}
.y23_c00346{bottom:89.312533pt;}
.yb_c00346{bottom:95.040000pt;}
.y21_c00346{bottom:103.872400pt;}
.ya_c00346{bottom:108.840000pt;}
.y7_c00346{bottom:120.960000pt;}
.y20_c00346{bottom:157.466667pt;}
.y1e_c00346{bottom:211.066667pt;}
.y1d_c00346{bottom:264.706667pt;}
.y1c_c00346{bottom:305.346667pt;}
.y1b_c00346{bottom:345.986667pt;}
.y19_c00346{bottom:386.626667pt;}
.y17_c00346{bottom:427.266667pt;}
.y15_c00346{bottom:481.666667pt;}
.y13_c00346{bottom:536.093333pt;}
.y11_c00346{bottom:590.333333pt;}
.y9_c00346{bottom:656.893333pt;}
.yd_c00346{bottom:723.293333pt;}
.y8_c00346{bottom:789.734667pt;}
.y6_c00346{bottom:856.134667pt;}
.y4_c00346{bottom:922.534667pt;}
.y2_c00346{bottom:988.934667pt;}
.h6_c00346{height:34.968789pt;}
.hf_c00346{height:40.000000pt;}
.h4_c00346{height:42.866250pt;}
.h2_c00346{height:42.895000pt;}
.h11_c00346{height:52.959867pt;}
.h12_c00346{height:52.960400pt;}
.h10_c00346{height:52.992667pt;}
.hc_c00346{height:53.600000pt;}
.hd_c00346{height:53.632800pt;}
.he_c00346{height:53.759867pt;}
.h5_c00346{height:65.758800pt;}
.ha_c00346{height:65.759867pt;}
.h9_c00346{height:65.791733pt;}
.hb_c00346{height:65.919733pt;}
.h3_c00346{height:76.191200pt;}
.h7_c00346{height:132.158800pt;}
.h8_c00346{height:198.586667pt;}
.h0_c00346{height:1122.559867pt;}
.h1_c00346{height:1122.666667pt;}
.w4_c00346{width:106.752667pt;}
.w3_c00346{width:118.880267pt;}
.w6_c00346{width:226.266667pt;}
.w5_c00346{width:392.866667pt;}
.w8_c00346{width:393.186667pt;}
.w2_c00346{width:616.413333pt;}
.w7_c00346{width:619.773333pt;}
.w0_c00346{width:793.759867pt;}
.w1_c00346{width:794.000000pt;}
.x0_c00346{left:0.000000pt;}
.x3_c00346{left:4.314000pt;}
.x1_c00346{left:132.352667pt;}
.x2_c00346{left:163.874000pt;}
.x7_c00346{left:177.954000pt;}
.x6_c00346{left:196.346667pt;}
.x4_c00346{left:251.866667pt;}
.x5_c00346{left:359.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_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_4ff0ad5eceefd80d0cc12fd2.woff2')format("woff");}.ff1_c00347{font-family:ff1_c00347;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00347;src:url('chunks/assets/font_bfd48366a53483b290d67fe4.woff2')format("woff");}.ff2_c00347{font-family:ff2_c00347;line-height:1.058594;font-style: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;}
.ls0_c00347{letter-spacing:0.000000px;}
.sc__c00347{text-shadow:none;}
.sc0_c00347{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00347{-webkit-text-stroke:0px transparent;}
.sc0_c00347{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00347{word-spacing:0.000000px;}
._0_c00347{margin-left:-1.383178px;}
.fc1_c00347{color:rgb(64,64,64);}
.fc0_c00347{color:rgb(0,0,0);}
.fs1_c00347{font-size:66.240000px;}
.fs0_c00347{font-size:95.760000px;}
.y0_c00347{bottom:0.000000px;}
.y2_c00347{bottom:780.766500px;}
.y1_c00347{bottom:814.966500px;}
.h3_c00347{height:56.957344px;}
.h2_c00347{height:69.715898px;}
.h0_c00347{height:1262.879850px;}
.h1_c00347{height:1263.000000px;}
.w0_c00347{width:892.979850px;}
.w1_c00347{width:893.250000px;}
.x0_c00347{left:0.000000px;}
.x2_c00347{left:246.990000px;}
.x1_c00347{left:427.755000px;}
@media print{
.v0_c00347{vertical-align:0.000000pt;}
.ls0_c00347{letter-spacing:0.000000pt;}
.ws0_c00347{word-spacing:0.000000pt;}
._0_c00347{margin-left:-1.229492pt;}
.fs1_c00347{font-size:58.880000pt;}
.fs0_c00347{font-size:85.120000pt;}
.y0_c00347{bottom:0.000000pt;}
.y2_c00347{bottom:694.014667pt;}
.y1_c00347{bottom:724.414667pt;}
.h3_c00347{height:50.628750pt;}
.h2_c00347{height:61.969688pt;}
.h0_c00347{height:1122.559867pt;}
.h1_c00347{height:1122.666667pt;}
.w0_c00347{width:793.759867pt;}
.w1_c00347{width:794.000000pt;}
.x0_c00347{left:0.000000pt;}
.x2_c00347{left:219.546667pt;}
.x1_c00347{left:380.226667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b4afbce4f73be568c8a71d8a.woff2')format("woff");}.ff1_c00348{font-family:ff1_c00348;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00348;src:url('chunks/assets/font_405cc1f299384c03f92923e2.woff2')format("woff");}.ff2_c00348{font-family:ff2_c00348;line-height:0.938965;font-style:normal;font-weight:normal;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_3d5386a17fccbe870b8aaed6.woff2')format("woff");}.ff3_c00348{font-family:ff3_c00348;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00348;src:url('chunks/assets/font_d4494a770853cae0294effa5.woff2')format("woff");}.ff4_c00348{font-family:ff4_c00348;line-height:0.888184;font-style: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;}
.ls0_c00348{letter-spacing:0.000000px;}
.sc__c00348{text-shadow:none;}
.sc0_c00348{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00348{-webkit-text-stroke:0px transparent;}
.sc0_c00348{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00348{word-spacing:-15.012000px;}
.ws1_c00348{word-spacing:0.000000px;}
._2_c00348{margin-left:-1.270022px;}
._3_c00348{width:1.045019px;}
._1_c00348{width:997.591968px;}
._0_c00348{width:1345.983552px;}
.fc0_c00348{color:rgb(0,0,0);}
.fs1_c00348{font-size:54.000000px;}
.fs0_c00348{font-size:66.240000px;}
.y0_c00348{bottom:0.000000px;}
.y10_c00348{bottom:16.560450px;}
.y1a_c00348{bottom:17.640000px;}
.yd_c00348{bottom:24.299700px;}
.y1f_c00348{bottom:24.840000px;}
.y22_c00348{bottom:24.840300px;}
.y14_c00348{bottom:25.200000px;}
.y18_c00348{bottom:25.380000px;}
.y16_c00348{bottom:25.410000px;}
.y5_c00348{bottom:32.220000px;}
.yf_c00348{bottom:32.220150px;}
.y3_c00348{bottom:36.930000px;}
.yc_c00348{bottom:39.960000px;}
.y12_c00348{bottom:40.680000px;}
.ye_c00348{bottom:47.700000px;}
.y1_c00348{bottom:56.555850px;}
.y23_c00348{bottom:100.476000px;}
.ya_c00348{bottom:106.920000px;}
.y21_c00348{bottom:116.855850px;}
.y7_c00348{bottom:136.080000px;}
.y20_c00348{bottom:177.150000px;}
.y1e_c00348{bottom:237.450000px;}
.y1d_c00348{bottom:297.795000px;}
.y1c_c00348{bottom:343.515000px;}
.y1b_c00348{bottom:389.235000px;}
.y19_c00348{bottom:434.955000px;}
.y17_c00348{bottom:480.675000px;}
.y15_c00348{bottom:541.875000px;}
.y13_c00348{bottom:603.105000px;}
.y11_c00348{bottom:664.125000px;}
.y9_c00348{bottom:739.005000px;}
.yb_c00348{bottom:813.705000px;}
.y8_c00348{bottom:888.450000px;}
.y6_c00348{bottom:963.150000px;}
.y4_c00348{bottom:1037.850000px;}
.y2_c00348{bottom:1112.550000px;}
.h6_c00348{height:39.339844px;}
.he_c00348{height:45.000000px;}
.h4_c00348{height:48.224531px;}
.h2_c00348{height:48.256875px;}
.h10_c00348{height:59.579850px;}
.hf_c00348{height:59.616150px;}
.hb_c00348{height:60.300000px;}
.hc_c00348{height:60.335700px;}
.hd_c00348{height:60.479850px;}
.h5_c00348{height:73.979850px;}
.h9_c00348{height:74.016150px;}
.ha_c00348{height:74.159700px;}
.h3_c00348{height:85.716150px;}
.h7_c00348{height:148.679850px;}
.h8_c00348{height:223.410000px;}
.h0_c00348{height:1262.880000px;}
.h1_c00348{height:1263.000000px;}
.w4_c00348{width:116.496150px;}
.w3_c00348{width:133.739700px;}
.w6_c00348{width:250.950000px;}
.w5_c00348{width:441.795000px;}
.w7_c00348{width:442.155000px;}
.w2_c00348{width:693.465000px;}
.w0_c00348{width:892.980000px;}
.w1_c00348{width:893.250000px;}
.x0_c00348{left:0.000000px;}
.x3_c00348{left:4.853850px;}
.x2_c00348{left:17.813850px;}
.x1_c00348{left:148.896150px;}
.x7_c00348{left:198.398850px;}
.x6_c00348{left:220.890000px;}
.x4_c00348{left:283.350000px;}
.x5_c00348{left:400.575000px;}
@media print{
.v0_c00348{vertical-align:0.000000pt;}
.ls0_c00348{letter-spacing:0.000000pt;}
.ws0_c00348{word-spacing:-13.344000pt;}
.ws1_c00348{word-spacing:0.000000pt;}
._2_c00348{margin-left:-1.128909pt;}
._3_c00348{width:0.928906pt;}
._1_c00348{width:886.748416pt;}
._0_c00348{width:1196.429824pt;}
.fs1_c00348{font-size:48.000000pt;}
.fs0_c00348{font-size:58.880000pt;}
.y0_c00348{bottom:0.000000pt;}
.y10_c00348{bottom:14.720400pt;}
.y1a_c00348{bottom:15.680000pt;}
.yd_c00348{bottom:21.599733pt;}
.y1f_c00348{bottom:22.080000pt;}
.y22_c00348{bottom:22.080267pt;}
.y14_c00348{bottom:22.400000pt;}
.y18_c00348{bottom:22.560000pt;}
.y16_c00348{bottom:22.586667pt;}
.y5_c00348{bottom:28.640000pt;}
.yf_c00348{bottom:28.640133pt;}
.y3_c00348{bottom:32.826667pt;}
.yc_c00348{bottom:35.520000pt;}
.y12_c00348{bottom:36.160000pt;}
.ye_c00348{bottom:42.400000pt;}
.y1_c00348{bottom:50.271867pt;}
.y23_c00348{bottom:89.312000pt;}
.ya_c00348{bottom:95.040000pt;}
.y21_c00348{bottom:103.871867pt;}
.y7_c00348{bottom:120.960000pt;}
.y20_c00348{bottom:157.466667pt;}
.y1e_c00348{bottom:211.066667pt;}
.y1d_c00348{bottom:264.706667pt;}
.y1c_c00348{bottom:305.346667pt;}
.y1b_c00348{bottom:345.986667pt;}
.y19_c00348{bottom:386.626667pt;}
.y17_c00348{bottom:427.266667pt;}
.y15_c00348{bottom:481.666667pt;}
.y13_c00348{bottom:536.093333pt;}
.y11_c00348{bottom:590.333333pt;}
.y9_c00348{bottom:656.893333pt;}
.yb_c00348{bottom:723.293333pt;}
.y8_c00348{bottom:789.733333pt;}
.y6_c00348{bottom:856.133333pt;}
.y4_c00348{bottom:922.533333pt;}
.y2_c00348{bottom:988.933333pt;}
.h6_c00348{height:34.968750pt;}
.he_c00348{height:40.000000pt;}
.h4_c00348{height:42.866250pt;}
.h2_c00348{height:42.895000pt;}
.h10_c00348{height:52.959867pt;}
.hf_c00348{height:52.992133pt;}
.hb_c00348{height:53.600000pt;}
.hc_c00348{height:53.631733pt;}
.hd_c00348{height:53.759867pt;}
.h5_c00348{height:65.759867pt;}
.h9_c00348{height:65.792133pt;}
.ha_c00348{height:65.919733pt;}
.h3_c00348{height:76.192133pt;}
.h7_c00348{height:132.159867pt;}
.h8_c00348{height:198.586667pt;}
.h0_c00348{height:1122.560000pt;}
.h1_c00348{height:1122.666667pt;}
.w4_c00348{width:103.552133pt;}
.w3_c00348{width:118.879733pt;}
.w6_c00348{width:223.066667pt;}
.w5_c00348{width:392.706667pt;}
.w7_c00348{width:393.026667pt;}
.w2_c00348{width:616.413333pt;}
.w0_c00348{width:793.760000pt;}
.w1_c00348{width:794.000000pt;}
.x0_c00348{left:0.000000pt;}
.x3_c00348{left:4.314533pt;}
.x2_c00348{left:15.834533pt;}
.x1_c00348{left:132.352133pt;}
.x7_c00348{left:176.354533pt;}
.x6_c00348{left:196.346667pt;}
.x4_c00348{left:251.866667pt;}
.x5_c00348{left:356.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_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_b4afbce4f73be568c8a71d8a.woff2')format("woff");}.ff1_c00349{font-family:ff1_c00349;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00349;src:url('chunks/assets/font_6de4ef15f8117835c05febdb.woff2')format("woff");}.ff2_c00349{font-family:ff2_c00349;line-height:0.938965;font-style:normal;font-weight:normal;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_3d5386a17fccbe870b8aaed6.woff2')format("woff");}.ff3_c00349{font-family:ff3_c00349;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00349;src:url('chunks/assets/font_d4494a770853cae0294effa5.woff2')format("woff");}.ff4_c00349{font-family:ff4_c00349;line-height:0.888184;font-style: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;}
.ls0_c00349{letter-spacing:0.000000px;}
.sc__c00349{text-shadow:none;}
.sc0_c00349{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00349{-webkit-text-stroke:0px transparent;}
.sc0_c00349{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00349{word-spacing:-15.012017px;}
.ws1_c00349{word-spacing:0.000000px;}
._2_c00349{margin-left:-1.234280px;}
._3_c00349{width:1.037989px;}
._1_c00349{width:997.561968px;}
._0_c00349{width:1345.983552px;}
.fc0_c00349{color:rgb(0,0,0);}
.fs1_c00349{font-size:54.000060px;}
.fs0_c00349{font-size:66.240000px;}
.y0_c00349{bottom:0.000000px;}
.y1c_c00349{bottom:17.640000px;}
.y1a_c00349{bottom:17.640150px;}
.ya_c00349{bottom:24.299700px;}
.y10_c00349{bottom:24.301200px;}
.y21_c00349{bottom:24.840000px;}
.y24_c00349{bottom:24.840300px;}
.y14_c00349{bottom:25.200000px;}
.y18_c00349{bottom:25.380000px;}
.y16_c00349{bottom:25.410000px;}
.y5_c00349{bottom:32.218500px;}
.ye_c00349{bottom:32.220000px;}
.y19_c00349{bottom:33.120000px;}
.y3_c00349{bottom:36.930000px;}
.y9_c00349{bottom:39.960000px;}
.yf_c00349{bottom:39.961500px;}
.y12_c00349{bottom:40.680000px;}
.y1_c00349{bottom:56.556450px;}
.y25_c00349{bottom:100.476600px;}
.yc_c00349{bottom:106.920000px;}
.y23_c00349{bottom:116.856450px;}
.y7_c00349{bottom:136.080000px;}
.y22_c00349{bottom:177.150000px;}
.y20_c00349{bottom:237.450000px;}
.y1f_c00349{bottom:297.795000px;}
.y1e_c00349{bottom:343.515000px;}
.y1d_c00349{bottom:389.235000px;}
.y1b_c00349{bottom:434.955000px;}
.y17_c00349{bottom:480.675000px;}
.y15_c00349{bottom:541.875000px;}
.y13_c00349{bottom:603.105000px;}
.y11_c00349{bottom:664.125000px;}
.yb_c00349{bottom:739.005000px;}
.yd_c00349{bottom:813.705000px;}
.y8_c00349{bottom:888.451500px;}
.y6_c00349{bottom:963.151500px;}
.y4_c00349{bottom:1037.851500px;}
.y2_c00349{bottom:1112.551500px;}
.h6_c00349{height:39.339887px;}
.hf_c00349{height:45.000000px;}
.h4_c00349{height:48.224531px;}
.h2_c00349{height:48.256875px;}
.h11_c00349{height:59.579850px;}
.h12_c00349{height:59.580450px;}
.h10_c00349{height:59.616750px;}
.hc_c00349{height:60.300000px;}
.hd_c00349{height:60.336900px;}
.he_c00349{height:60.479850px;}
.h5_c00349{height:73.978650px;}
.ha_c00349{height:73.979850px;}
.h9_c00349{height:74.015700px;}
.hb_c00349{height:74.159700px;}
.h3_c00349{height:85.715100px;}
.h7_c00349{height:148.678650px;}
.h8_c00349{height:223.410000px;}
.h0_c00349{height:1262.879850px;}
.h1_c00349{height:1263.000000px;}
.w4_c00349{width:116.496750px;}
.w3_c00349{width:133.740300px;}
.w6_c00349{width:250.950000px;}
.w5_c00349{width:441.795000px;}
.w7_c00349{width:442.155000px;}
.w2_c00349{width:693.465000px;}
.w0_c00349{width:892.979850px;}
.w1_c00349{width:893.250000px;}
.x0_c00349{left:0.000000px;}
.x3_c00349{left:4.853250px;}
.x2_c00349{left:17.813250px;}
.x1_c00349{left:148.896750px;}
.x7_c00349{left:198.398250px;}
.x6_c00349{left:220.890000px;}
.x4_c00349{left:283.350000px;}
.x5_c00349{left:400.575000px;}
@media print{
.v0_c00349{vertical-align:0.000000pt;}
.ls0_c00349{letter-spacing:0.000000pt;}
.ws0_c00349{word-spacing:-13.344015pt;}
.ws1_c00349{word-spacing:0.000000pt;}
._2_c00349{margin-left:-1.097138pt;}
._3_c00349{width:0.922657pt;}
._1_c00349{width:886.721749pt;}
._0_c00349{width:1196.429824pt;}
.fs1_c00349{font-size:48.000053pt;}
.fs0_c00349{font-size:58.880000pt;}
.y0_c00349{bottom:0.000000pt;}
.y1c_c00349{bottom:15.680000pt;}
.y1a_c00349{bottom:15.680133pt;}
.ya_c00349{bottom:21.599733pt;}
.y10_c00349{bottom:21.601067pt;}
.y21_c00349{bottom:22.080000pt;}
.y24_c00349{bottom:22.080267pt;}
.y14_c00349{bottom:22.400000pt;}
.y18_c00349{bottom:22.560000pt;}
.y16_c00349{bottom:22.586667pt;}
.y5_c00349{bottom:28.638667pt;}
.ye_c00349{bottom:28.640000pt;}
.y19_c00349{bottom:29.440000pt;}
.y3_c00349{bottom:32.826667pt;}
.y9_c00349{bottom:35.520000pt;}
.yf_c00349{bottom:35.521333pt;}
.y12_c00349{bottom:36.160000pt;}
.y1_c00349{bottom:50.272400pt;}
.y25_c00349{bottom:89.312533pt;}
.yc_c00349{bottom:95.040000pt;}
.y23_c00349{bottom:103.872400pt;}
.y7_c00349{bottom:120.960000pt;}
.y22_c00349{bottom:157.466667pt;}
.y20_c00349{bottom:211.066667pt;}
.y1f_c00349{bottom:264.706667pt;}
.y1e_c00349{bottom:305.346667pt;}
.y1d_c00349{bottom:345.986667pt;}
.y1b_c00349{bottom:386.626667pt;}
.y17_c00349{bottom:427.266667pt;}
.y15_c00349{bottom:481.666667pt;}
.y13_c00349{bottom:536.093333pt;}
.y11_c00349{bottom:590.333333pt;}
.yb_c00349{bottom:656.893333pt;}
.yd_c00349{bottom:723.293333pt;}
.y8_c00349{bottom:789.734667pt;}
.y6_c00349{bottom:856.134667pt;}
.y4_c00349{bottom:922.534667pt;}
.y2_c00349{bottom:988.934667pt;}
.h6_c00349{height:34.968789pt;}
.hf_c00349{height:40.000000pt;}
.h4_c00349{height:42.866250pt;}
.h2_c00349{height:42.895000pt;}
.h11_c00349{height:52.959867pt;}
.h12_c00349{height:52.960400pt;}
.h10_c00349{height:52.992667pt;}
.hc_c00349{height:53.600000pt;}
.hd_c00349{height:53.632800pt;}
.he_c00349{height:53.759867pt;}
.h5_c00349{height:65.758800pt;}
.ha_c00349{height:65.759867pt;}
.h9_c00349{height:65.791733pt;}
.hb_c00349{height:65.919733pt;}
.h3_c00349{height:76.191200pt;}
.h7_c00349{height:132.158800pt;}
.h8_c00349{height:198.586667pt;}
.h0_c00349{height:1122.559867pt;}
.h1_c00349{height:1122.666667pt;}
.w4_c00349{width:103.552667pt;}
.w3_c00349{width:118.880267pt;}
.w6_c00349{width:223.066667pt;}
.w5_c00349{width:392.706667pt;}
.w7_c00349{width:393.026667pt;}
.w2_c00349{width:616.413333pt;}
.w0_c00349{width:793.759867pt;}
.w1_c00349{width:794.000000pt;}
.x0_c00349{left:0.000000pt;}
.x3_c00349{left:4.314000pt;}
.x2_c00349{left:15.834000pt;}
.x1_c00349{left:132.352667pt;}
.x7_c00349{left:176.354000pt;}
.x6_c00349{left:196.346667pt;}
.x4_c00349{left:251.866667pt;}
.x5_c00349{left:356.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_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_9aa664a77bc1ac683e50ef2c.woff2')format("woff");}.ff1_c00350{font-family:ff1_c00350;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00350;src:url('chunks/assets/font_f1dc192f4effd87cb4a59338.woff2')format("woff");}.ff2_c00350{font-family:ff2_c00350;line-height:1.058594;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00350{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00350{vertical-align:0.000000px;}
.ls1_c00350{letter-spacing:0.000000px;}
.ls0_c00350{letter-spacing:845.705280px;}
.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:0.000000px;}
._0_c00350{margin-left:-1.383251px;}
.fc1_c00350{color:rgb(64,64,64);}
.fc0_c00350{color:rgb(0,0,0);}
.fs1_c00350{font-size:66.240000px;}
.fs0_c00350{font-size:95.760000px;}
.y0_c00350{bottom:0.000000px;}
.y3_c00350{bottom:752.145000px;}
.y2_c00350{bottom:780.766500px;}
.y1_c00350{bottom:814.966500px;}
.h3_c00350{height:56.957344px;}
.h2_c00350{height:69.715898px;}
.h0_c00350{height:1262.879850px;}
.h1_c00350{height:1263.000000px;}
.w0_c00350{width:892.979850px;}
.w1_c00350{width:893.250000px;}
.x0_c00350{left:0.000000px;}
.x2_c00350{left:296.894700px;}
.x1_c00350{left:427.755000px;}
.x3_c00350{left:446.475000px;}
@media print{
.v0_c00350{vertical-align:0.000000pt;}
.ls1_c00350{letter-spacing:0.000000pt;}
.ls0_c00350{letter-spacing:751.738027pt;}
.ws0_c00350{word-spacing:0.000000pt;}
._0_c00350{margin-left:-1.229556pt;}
.fs1_c00350{font-size:58.880000pt;}
.fs0_c00350{font-size:85.120000pt;}
.y0_c00350{bottom:0.000000pt;}
.y3_c00350{bottom:668.573333pt;}
.y2_c00350{bottom:694.014667pt;}
.y1_c00350{bottom:724.414667pt;}
.h3_c00350{height:50.628750pt;}
.h2_c00350{height:61.969688pt;}
.h0_c00350{height:1122.559867pt;}
.h1_c00350{height:1122.666667pt;}
.w0_c00350{width:793.759867pt;}
.w1_c00350{width:794.000000pt;}
.x0_c00350{left:0.000000pt;}
.x2_c00350{left:263.906400pt;}
.x1_c00350{left:380.226667pt;}
.x3_c00350{left:396.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_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_b4afbce4f73be568c8a71d8a.woff2')format("woff");}.ff1_c00351{font-family:ff1_c00351;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00351;src:url('chunks/assets/font_83b99b53d14bfdf886d007f3.woff2')format("woff");}.ff2_c00351{font-family:ff2_c00351;line-height:0.938965;font-style:normal;font-weight:normal;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_2a0268eeb5e3e20d3cafbbfd.woff2')format("woff");}.ff3_c00351{font-family:ff3_c00351;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00351;src:url('chunks/assets/font_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff4_c00351{font-family:ff4_c00351;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00351{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00351{vertical-align:0.000000px;}
.ls1_c00351{letter-spacing:0.000000px;}
.ls0_c00351{letter-spacing:0.217347px;}
.sc__c00351{text-shadow:none;}
.sc0_c00351{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00351{-webkit-text-stroke:0px transparent;}
.sc0_c00351{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00351{word-spacing:-30.024033px;}
.ws0_c00351{word-spacing:-15.012017px;}
.ws2_c00351{word-spacing:0.000000px;}
._2_c00351{margin-left:-1.234280px;}
._3_c00351{width:1.035645px;}
._1_c00351{width:997.561968px;}
._0_c00351{width:1345.983552px;}
.fc0_c00351{color:rgb(0,0,0);}
.fs1_c00351{font-size:54.000060px;}
.fs0_c00351{font-size:66.240000px;}
.y0_c00351{bottom:0.000000px;}
.y19_c00351{bottom:17.640000px;}
.yf_c00351{bottom:24.301200px;}
.y1e_c00351{bottom:24.840000px;}
.y21_c00351{bottom:24.840300px;}
.y13_c00351{bottom:25.200000px;}
.y17_c00351{bottom:25.380000px;}
.y15_c00351{bottom:25.410000px;}
.y5_c00351{bottom:32.218500px;}
.yd_c00351{bottom:32.220000px;}
.y3_c00351{bottom:36.930000px;}
.ye_c00351{bottom:39.961500px;}
.y11_c00351{bottom:40.680000px;}
.y1_c00351{bottom:56.556450px;}
.yb_c00351{bottom:99.000150px;}
.y22_c00351{bottom:100.476600px;}
.ya_c00351{bottom:114.705000px;}
.y20_c00351{bottom:116.856450px;}
.y7_c00351{bottom:136.080000px;}
.y1f_c00351{bottom:177.150000px;}
.y1d_c00351{bottom:237.450000px;}
.y1c_c00351{bottom:297.795000px;}
.y1b_c00351{bottom:343.515000px;}
.y1a_c00351{bottom:389.235000px;}
.y18_c00351{bottom:434.955000px;}
.y16_c00351{bottom:480.675000px;}
.y14_c00351{bottom:541.875000px;}
.y12_c00351{bottom:603.105000px;}
.y10_c00351{bottom:664.125000px;}
.y9_c00351{bottom:739.005000px;}
.yc_c00351{bottom:813.705000px;}
.y8_c00351{bottom:888.451500px;}
.y6_c00351{bottom:963.151500px;}
.y4_c00351{bottom:1037.851500px;}
.y2_c00351{bottom:1112.551500px;}
.h6_c00351{height:39.339887px;}
.hf_c00351{height:45.000000px;}
.h4_c00351{height:48.224531px;}
.h2_c00351{height:48.256875px;}
.h11_c00351{height:59.579850px;}
.h12_c00351{height:59.580450px;}
.h10_c00351{height:59.616750px;}
.hc_c00351{height:60.300000px;}
.hd_c00351{height:60.336900px;}
.he_c00351{height:60.479850px;}
.h5_c00351{height:73.978650px;}
.ha_c00351{height:73.979850px;}
.h9_c00351{height:74.015700px;}
.hb_c00351{height:74.159700px;}
.h3_c00351{height:85.715100px;}
.h7_c00351{height:148.678650px;}
.h8_c00351{height:223.410000px;}
.h0_c00351{height:1262.879850px;}
.h1_c00351{height:1263.000000px;}
.w4_c00351{width:116.496750px;}
.w3_c00351{width:133.740300px;}
.w6_c00351{width:250.950000px;}
.w5_c00351{width:441.795000px;}
.w7_c00351{width:442.155000px;}
.w2_c00351{width:693.465000px;}
.w0_c00351{width:892.979850px;}
.w1_c00351{width:893.250000px;}
.x0_c00351{left:0.000000px;}
.x3_c00351{left:4.853250px;}
.x1_c00351{left:148.896750px;}
.x2_c00351{left:161.498250px;}
.x7_c00351{left:198.398250px;}
.x6_c00351{left:220.890000px;}
.x4_c00351{left:283.350000px;}
.x5_c00351{left:400.575000px;}
@media print{
.v0_c00351{vertical-align:0.000000pt;}
.ls1_c00351{letter-spacing:0.000000pt;}
.ls0_c00351{letter-spacing:0.193197pt;}
.ws1_c00351{word-spacing:-26.688030pt;}
.ws0_c00351{word-spacing:-13.344015pt;}
.ws2_c00351{word-spacing:0.000000pt;}
._2_c00351{margin-left:-1.097138pt;}
._3_c00351{width:0.920573pt;}
._1_c00351{width:886.721749pt;}
._0_c00351{width:1196.429824pt;}
.fs1_c00351{font-size:48.000053pt;}
.fs0_c00351{font-size:58.880000pt;}
.y0_c00351{bottom:0.000000pt;}
.y19_c00351{bottom:15.680000pt;}
.yf_c00351{bottom:21.601067pt;}
.y1e_c00351{bottom:22.080000pt;}
.y21_c00351{bottom:22.080267pt;}
.y13_c00351{bottom:22.400000pt;}
.y17_c00351{bottom:22.560000pt;}
.y15_c00351{bottom:22.586667pt;}
.y5_c00351{bottom:28.638667pt;}
.yd_c00351{bottom:28.640000pt;}
.y3_c00351{bottom:32.826667pt;}
.ye_c00351{bottom:35.521333pt;}
.y11_c00351{bottom:36.160000pt;}
.y1_c00351{bottom:50.272400pt;}
.yb_c00351{bottom:88.000133pt;}
.y22_c00351{bottom:89.312533pt;}
.ya_c00351{bottom:101.960000pt;}
.y20_c00351{bottom:103.872400pt;}
.y7_c00351{bottom:120.960000pt;}
.y1f_c00351{bottom:157.466667pt;}
.y1d_c00351{bottom:211.066667pt;}
.y1c_c00351{bottom:264.706667pt;}
.y1b_c00351{bottom:305.346667pt;}
.y1a_c00351{bottom:345.986667pt;}
.y18_c00351{bottom:386.626667pt;}
.y16_c00351{bottom:427.266667pt;}
.y14_c00351{bottom:481.666667pt;}
.y12_c00351{bottom:536.093333pt;}
.y10_c00351{bottom:590.333333pt;}
.y9_c00351{bottom:656.893333pt;}
.yc_c00351{bottom:723.293333pt;}
.y8_c00351{bottom:789.734667pt;}
.y6_c00351{bottom:856.134667pt;}
.y4_c00351{bottom:922.534667pt;}
.y2_c00351{bottom:988.934667pt;}
.h6_c00351{height:34.968789pt;}
.hf_c00351{height:40.000000pt;}
.h4_c00351{height:42.866250pt;}
.h2_c00351{height:42.895000pt;}
.h11_c00351{height:52.959867pt;}
.h12_c00351{height:52.960400pt;}
.h10_c00351{height:52.992667pt;}
.hc_c00351{height:53.600000pt;}
.hd_c00351{height:53.632800pt;}
.he_c00351{height:53.759867pt;}
.h5_c00351{height:65.758800pt;}
.ha_c00351{height:65.759867pt;}
.h9_c00351{height:65.791733pt;}
.hb_c00351{height:65.919733pt;}
.h3_c00351{height:76.191200pt;}
.h7_c00351{height:132.158800pt;}
.h8_c00351{height:198.586667pt;}
.h0_c00351{height:1122.559867pt;}
.h1_c00351{height:1122.666667pt;}
.w4_c00351{width:103.552667pt;}
.w3_c00351{width:118.880267pt;}
.w6_c00351{width:223.066667pt;}
.w5_c00351{width:392.706667pt;}
.w7_c00351{width:393.026667pt;}
.w2_c00351{width:616.413333pt;}
.w0_c00351{width:793.759867pt;}
.w1_c00351{width:794.000000pt;}
.x0_c00351{left:0.000000pt;}
.x3_c00351{left:4.314000pt;}
.x1_c00351{left:132.352667pt;}
.x2_c00351{left:143.554000pt;}
.x7_c00351{left:176.354000pt;}
.x6_c00351{left:196.346667pt;}
.x4_c00351{left:251.866667pt;}
.x5_c00351{left:356.066667pt;}
}





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

.ir_c00352:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00352{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00352;src:url('chunks/assets/font_b4afbce4f73be568c8a71d8a.woff2')format("woff");}.ff1_c00352{font-family:ff1_c00352;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00352;src:url('chunks/assets/font_3ae406d9fc592f27f8dc8387.woff2')format("woff");}.ff2_c00352{font-family:ff2_c00352;line-height:0.938965;font-style:normal;font-weight:normal;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_2a0268eeb5e3e20d3cafbbfd.woff2')format("woff");}.ff3_c00352{font-family:ff3_c00352;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00352;src:url('chunks/assets/font_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff4_c00352{font-family:ff4_c00352;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls1_c00352{letter-spacing:0.000000px;}
.ls0_c00352{letter-spacing:0.217347px;}
.sc__c00352{text-shadow:none;}
.sc0_c00352{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00352{-webkit-text-stroke:0px transparent;}
.sc0_c00352{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00352{word-spacing:-30.024033px;}
.ws0_c00352{word-spacing:-15.012017px;}
.ws2_c00352{word-spacing:0.000000px;}
._2_c00352{margin-left:-1.234280px;}
._3_c00352{width:1.035645px;}
._1_c00352{width:997.561968px;}
._0_c00352{width:1345.983552px;}
.fc0_c00352{color:rgb(0,0,0);}
.fs1_c00352{font-size:54.000060px;}
.fs0_c00352{font-size:66.240000px;}
.y0_c00352{bottom:0.000000px;}
.y19_c00352{bottom:17.640000px;}
.yf_c00352{bottom:24.301200px;}
.y1e_c00352{bottom:24.840000px;}
.y21_c00352{bottom:24.840300px;}
.y13_c00352{bottom:25.200000px;}
.y17_c00352{bottom:25.380000px;}
.y15_c00352{bottom:25.410000px;}
.y5_c00352{bottom:32.218500px;}
.yd_c00352{bottom:32.220000px;}
.y3_c00352{bottom:36.930000px;}
.ye_c00352{bottom:39.961500px;}
.y11_c00352{bottom:40.680000px;}
.y1_c00352{bottom:56.556450px;}
.yb_c00352{bottom:99.000150px;}
.ya_c00352{bottom:114.705000px;}
.y20_c00352{bottom:116.856450px;}
.y7_c00352{bottom:136.080000px;}
.y1f_c00352{bottom:177.150000px;}
.y1d_c00352{bottom:237.450000px;}
.y1c_c00352{bottom:297.795000px;}
.y1b_c00352{bottom:343.515000px;}
.y1a_c00352{bottom:389.235000px;}
.y18_c00352{bottom:434.955000px;}
.y16_c00352{bottom:480.675000px;}
.y14_c00352{bottom:541.875000px;}
.y12_c00352{bottom:603.105000px;}
.y10_c00352{bottom:664.125000px;}
.y9_c00352{bottom:739.005000px;}
.yc_c00352{bottom:813.705000px;}
.y8_c00352{bottom:888.451500px;}
.y6_c00352{bottom:963.151500px;}
.y4_c00352{bottom:1037.851500px;}
.y2_c00352{bottom:1112.551500px;}
.h6_c00352{height:39.339887px;}
.hf_c00352{height:45.000000px;}
.h4_c00352{height:48.224531px;}
.h2_c00352{height:48.256875px;}
.h11_c00352{height:59.579850px;}
.h12_c00352{height:59.580450px;}
.h10_c00352{height:59.616750px;}
.hc_c00352{height:60.300000px;}
.hd_c00352{height:60.336900px;}
.he_c00352{height:60.479850px;}
.h5_c00352{height:73.978650px;}
.ha_c00352{height:73.979850px;}
.h9_c00352{height:74.015700px;}
.hb_c00352{height:74.159700px;}
.h3_c00352{height:85.715100px;}
.h7_c00352{height:148.678650px;}
.h8_c00352{height:223.410000px;}
.h0_c00352{height:1262.879850px;}
.h1_c00352{height:1263.000000px;}
.w4_c00352{width:116.496750px;}
.w3_c00352{width:133.740300px;}
.w6_c00352{width:250.950000px;}
.w5_c00352{width:441.795000px;}
.w7_c00352{width:442.155000px;}
.w2_c00352{width:693.465000px;}
.w0_c00352{width:892.979850px;}
.w1_c00352{width:893.250000px;}
.x0_c00352{left:0.000000px;}
.x3_c00352{left:4.853250px;}
.x1_c00352{left:148.896750px;}
.x2_c00352{left:161.498250px;}
.x7_c00352{left:198.398250px;}
.x6_c00352{left:220.890000px;}
.x4_c00352{left:283.350000px;}
.x5_c00352{left:400.575000px;}
@media print{
.v0_c00352{vertical-align:0.000000pt;}
.ls1_c00352{letter-spacing:0.000000pt;}
.ls0_c00352{letter-spacing:0.193197pt;}
.ws1_c00352{word-spacing:-26.688030pt;}
.ws0_c00352{word-spacing:-13.344015pt;}
.ws2_c00352{word-spacing:0.000000pt;}
._2_c00352{margin-left:-1.097138pt;}
._3_c00352{width:0.920573pt;}
._1_c00352{width:886.721749pt;}
._0_c00352{width:1196.429824pt;}
.fs1_c00352{font-size:48.000053pt;}
.fs0_c00352{font-size:58.880000pt;}
.y0_c00352{bottom:0.000000pt;}
.y19_c00352{bottom:15.680000pt;}
.yf_c00352{bottom:21.601067pt;}
.y1e_c00352{bottom:22.080000pt;}
.y21_c00352{bottom:22.080267pt;}
.y13_c00352{bottom:22.400000pt;}
.y17_c00352{bottom:22.560000pt;}
.y15_c00352{bottom:22.586667pt;}
.y5_c00352{bottom:28.638667pt;}
.yd_c00352{bottom:28.640000pt;}
.y3_c00352{bottom:32.826667pt;}
.ye_c00352{bottom:35.521333pt;}
.y11_c00352{bottom:36.160000pt;}
.y1_c00352{bottom:50.272400pt;}
.yb_c00352{bottom:88.000133pt;}
.ya_c00352{bottom:101.960000pt;}
.y20_c00352{bottom:103.872400pt;}
.y7_c00352{bottom:120.960000pt;}
.y1f_c00352{bottom:157.466667pt;}
.y1d_c00352{bottom:211.066667pt;}
.y1c_c00352{bottom:264.706667pt;}
.y1b_c00352{bottom:305.346667pt;}
.y1a_c00352{bottom:345.986667pt;}
.y18_c00352{bottom:386.626667pt;}
.y16_c00352{bottom:427.266667pt;}
.y14_c00352{bottom:481.666667pt;}
.y12_c00352{bottom:536.093333pt;}
.y10_c00352{bottom:590.333333pt;}
.y9_c00352{bottom:656.893333pt;}
.yc_c00352{bottom:723.293333pt;}
.y8_c00352{bottom:789.734667pt;}
.y6_c00352{bottom:856.134667pt;}
.y4_c00352{bottom:922.534667pt;}
.y2_c00352{bottom:988.934667pt;}
.h6_c00352{height:34.968789pt;}
.hf_c00352{height:40.000000pt;}
.h4_c00352{height:42.866250pt;}
.h2_c00352{height:42.895000pt;}
.h11_c00352{height:52.959867pt;}
.h12_c00352{height:52.960400pt;}
.h10_c00352{height:52.992667pt;}
.hc_c00352{height:53.600000pt;}
.hd_c00352{height:53.632800pt;}
.he_c00352{height:53.759867pt;}
.h5_c00352{height:65.758800pt;}
.ha_c00352{height:65.759867pt;}
.h9_c00352{height:65.791733pt;}
.hb_c00352{height:65.919733pt;}
.h3_c00352{height:76.191200pt;}
.h7_c00352{height:132.158800pt;}
.h8_c00352{height:198.586667pt;}
.h0_c00352{height:1122.559867pt;}
.h1_c00352{height:1122.666667pt;}
.w4_c00352{width:103.552667pt;}
.w3_c00352{width:118.880267pt;}
.w6_c00352{width:223.066667pt;}
.w5_c00352{width:392.706667pt;}
.w7_c00352{width:393.026667pt;}
.w2_c00352{width:616.413333pt;}
.w0_c00352{width:793.759867pt;}
.w1_c00352{width:794.000000pt;}
.x0_c00352{left:0.000000pt;}
.x3_c00352{left:4.314000pt;}
.x1_c00352{left:132.352667pt;}
.x2_c00352{left:143.554000pt;}
.x7_c00352{left:176.354000pt;}
.x6_c00352{left:196.346667pt;}
.x4_c00352{left:251.866667pt;}
.x5_c00352{left:356.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_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_b4afbce4f73be568c8a71d8a.woff2')format("woff");}.ff1_c00353{font-family:ff1_c00353;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00353;src:url('chunks/assets/font_4bd1fe508df0743a1005660b.woff2')format("woff");}.ff2_c00353{font-family:ff2_c00353;line-height:0.938965;font-style:normal;font-weight:normal;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_2a0268eeb5e3e20d3cafbbfd.woff2')format("woff");}.ff3_c00353{font-family:ff3_c00353;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00353;src:url('chunks/assets/font_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff4_c00353{font-family:ff4_c00353;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls1_c00353{letter-spacing:0.000000px;}
.ls0_c00353{letter-spacing:0.215007px;}
.sc__c00353{text-shadow:none;}
.sc0_c00353{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00353{-webkit-text-stroke:0px transparent;}
.sc0_c00353{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00353{word-spacing:-15.012017px;}
.ws1_c00353{word-spacing:0.000000px;}
._2_c00353{margin-left:-1.234280px;}
._3_c00353{width:1.148144px;}
._1_c00353{width:997.561968px;}
._0_c00353{width:1345.983552px;}
.fc0_c00353{color:rgb(0,0,0);}
.fs1_c00353{font-size:54.000060px;}
.fs0_c00353{font-size:66.240000px;}
.y0_c00353{bottom:0.000000px;}
.y19_c00353{bottom:17.640000px;}
.yf_c00353{bottom:24.301200px;}
.y1e_c00353{bottom:24.840000px;}
.y21_c00353{bottom:24.840300px;}
.y13_c00353{bottom:25.200000px;}
.y17_c00353{bottom:25.380000px;}
.y15_c00353{bottom:25.410000px;}
.y5_c00353{bottom:32.218500px;}
.yd_c00353{bottom:32.220000px;}
.y3_c00353{bottom:36.930000px;}
.ye_c00353{bottom:39.961500px;}
.y11_c00353{bottom:40.680000px;}
.y1_c00353{bottom:56.556450px;}
.yb_c00353{bottom:99.000150px;}
.y22_c00353{bottom:100.476600px;}
.ya_c00353{bottom:114.705000px;}
.y20_c00353{bottom:116.856450px;}
.y7_c00353{bottom:136.080000px;}
.y1f_c00353{bottom:177.150000px;}
.y1d_c00353{bottom:237.450000px;}
.y1c_c00353{bottom:297.795000px;}
.y1b_c00353{bottom:343.515000px;}
.y1a_c00353{bottom:389.235000px;}
.y18_c00353{bottom:434.955000px;}
.y16_c00353{bottom:480.675000px;}
.y14_c00353{bottom:541.875000px;}
.y12_c00353{bottom:603.105000px;}
.y10_c00353{bottom:664.125000px;}
.y9_c00353{bottom:739.005000px;}
.yc_c00353{bottom:813.705000px;}
.y8_c00353{bottom:888.451500px;}
.y6_c00353{bottom:963.151500px;}
.y4_c00353{bottom:1037.851500px;}
.y2_c00353{bottom:1112.551500px;}
.h6_c00353{height:39.339887px;}
.hf_c00353{height:45.000000px;}
.h4_c00353{height:48.224531px;}
.h2_c00353{height:48.256875px;}
.h11_c00353{height:59.579850px;}
.h12_c00353{height:59.580450px;}
.h10_c00353{height:59.616750px;}
.hc_c00353{height:60.300000px;}
.hd_c00353{height:60.336900px;}
.he_c00353{height:60.479850px;}
.h5_c00353{height:73.978650px;}
.ha_c00353{height:73.979850px;}
.h9_c00353{height:74.015700px;}
.hb_c00353{height:74.159700px;}
.h3_c00353{height:85.715100px;}
.h7_c00353{height:148.678650px;}
.h8_c00353{height:223.410000px;}
.h0_c00353{height:1262.879850px;}
.h1_c00353{height:1263.000000px;}
.w4_c00353{width:116.496750px;}
.w3_c00353{width:133.740300px;}
.w6_c00353{width:250.950000px;}
.w5_c00353{width:441.795000px;}
.w7_c00353{width:442.155000px;}
.w2_c00353{width:693.465000px;}
.w0_c00353{width:892.979850px;}
.w1_c00353{width:893.250000px;}
.x0_c00353{left:0.000000px;}
.x3_c00353{left:4.853250px;}
.x1_c00353{left:148.896750px;}
.x2_c00353{left:161.498250px;}
.x7_c00353{left:198.398250px;}
.x6_c00353{left:220.890000px;}
.x4_c00353{left:283.350000px;}
.x5_c00353{left:400.575000px;}
@media print{
.v0_c00353{vertical-align:0.000000pt;}
.ls1_c00353{letter-spacing:0.000000pt;}
.ls0_c00353{letter-spacing:0.191117pt;}
.ws0_c00353{word-spacing:-13.344015pt;}
.ws1_c00353{word-spacing:0.000000pt;}
._2_c00353{margin-left:-1.097138pt;}
._3_c00353{width:1.020573pt;}
._1_c00353{width:886.721749pt;}
._0_c00353{width:1196.429824pt;}
.fs1_c00353{font-size:48.000053pt;}
.fs0_c00353{font-size:58.880000pt;}
.y0_c00353{bottom:0.000000pt;}
.y19_c00353{bottom:15.680000pt;}
.yf_c00353{bottom:21.601067pt;}
.y1e_c00353{bottom:22.080000pt;}
.y21_c00353{bottom:22.080267pt;}
.y13_c00353{bottom:22.400000pt;}
.y17_c00353{bottom:22.560000pt;}
.y15_c00353{bottom:22.586667pt;}
.y5_c00353{bottom:28.638667pt;}
.yd_c00353{bottom:28.640000pt;}
.y3_c00353{bottom:32.826667pt;}
.ye_c00353{bottom:35.521333pt;}
.y11_c00353{bottom:36.160000pt;}
.y1_c00353{bottom:50.272400pt;}
.yb_c00353{bottom:88.000133pt;}
.y22_c00353{bottom:89.312533pt;}
.ya_c00353{bottom:101.960000pt;}
.y20_c00353{bottom:103.872400pt;}
.y7_c00353{bottom:120.960000pt;}
.y1f_c00353{bottom:157.466667pt;}
.y1d_c00353{bottom:211.066667pt;}
.y1c_c00353{bottom:264.706667pt;}
.y1b_c00353{bottom:305.346667pt;}
.y1a_c00353{bottom:345.986667pt;}
.y18_c00353{bottom:386.626667pt;}
.y16_c00353{bottom:427.266667pt;}
.y14_c00353{bottom:481.666667pt;}
.y12_c00353{bottom:536.093333pt;}
.y10_c00353{bottom:590.333333pt;}
.y9_c00353{bottom:656.893333pt;}
.yc_c00353{bottom:723.293333pt;}
.y8_c00353{bottom:789.734667pt;}
.y6_c00353{bottom:856.134667pt;}
.y4_c00353{bottom:922.534667pt;}
.y2_c00353{bottom:988.934667pt;}
.h6_c00353{height:34.968789pt;}
.hf_c00353{height:40.000000pt;}
.h4_c00353{height:42.866250pt;}
.h2_c00353{height:42.895000pt;}
.h11_c00353{height:52.959867pt;}
.h12_c00353{height:52.960400pt;}
.h10_c00353{height:52.992667pt;}
.hc_c00353{height:53.600000pt;}
.hd_c00353{height:53.632800pt;}
.he_c00353{height:53.759867pt;}
.h5_c00353{height:65.758800pt;}
.ha_c00353{height:65.759867pt;}
.h9_c00353{height:65.791733pt;}
.hb_c00353{height:65.919733pt;}
.h3_c00353{height:76.191200pt;}
.h7_c00353{height:132.158800pt;}
.h8_c00353{height:198.586667pt;}
.h0_c00353{height:1122.559867pt;}
.h1_c00353{height:1122.666667pt;}
.w4_c00353{width:103.552667pt;}
.w3_c00353{width:118.880267pt;}
.w6_c00353{width:223.066667pt;}
.w5_c00353{width:392.706667pt;}
.w7_c00353{width:393.026667pt;}
.w2_c00353{width:616.413333pt;}
.w0_c00353{width:793.759867pt;}
.w1_c00353{width:794.000000pt;}
.x0_c00353{left:0.000000pt;}
.x3_c00353{left:4.314000pt;}
.x1_c00353{left:132.352667pt;}
.x2_c00353{left:143.554000pt;}
.x7_c00353{left:176.354000pt;}
.x6_c00353{left:196.346667pt;}
.x4_c00353{left:251.866667pt;}
.x5_c00353{left:356.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_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_b4afbce4f73be568c8a71d8a.woff2')format("woff");}.ff1_c00354{font-family:ff1_c00354;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00354;src:url('chunks/assets/font_4bd1fe508df0743a1005660b.woff2')format("woff");}.ff2_c00354{font-family:ff2_c00354;line-height:0.938965;font-style:normal;font-weight:normal;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_2a0268eeb5e3e20d3cafbbfd.woff2')format("woff");}.ff3_c00354{font-family:ff3_c00354;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00354;src:url('chunks/assets/font_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff4_c00354{font-family:ff4_c00354;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls1_c00354{letter-spacing:0.000000px;}
.ls0_c00354{letter-spacing:0.215007px;}
.sc__c00354{text-shadow:none;}
.sc0_c00354{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00354{-webkit-text-stroke:0px transparent;}
.sc0_c00354{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00354{word-spacing:-15.012017px;}
.ws1_c00354{word-spacing:0.000000px;}
._2_c00354{margin-left:-1.234280px;}
._3_c00354{width:1.148144px;}
._1_c00354{width:997.561968px;}
._0_c00354{width:1345.983552px;}
.fc0_c00354{color:rgb(0,0,0);}
.fs1_c00354{font-size:54.000060px;}
.fs0_c00354{font-size:66.240000px;}
.y0_c00354{bottom:0.000000px;}
.y19_c00354{bottom:17.640000px;}
.yf_c00354{bottom:24.301200px;}
.y1e_c00354{bottom:24.840000px;}
.y21_c00354{bottom:24.840300px;}
.y13_c00354{bottom:25.200000px;}
.y17_c00354{bottom:25.380000px;}
.y15_c00354{bottom:25.410000px;}
.y5_c00354{bottom:32.218500px;}
.yd_c00354{bottom:32.220000px;}
.y3_c00354{bottom:36.930000px;}
.ye_c00354{bottom:39.961500px;}
.y11_c00354{bottom:40.680000px;}
.y1_c00354{bottom:56.556450px;}
.yb_c00354{bottom:99.000150px;}
.y22_c00354{bottom:100.476600px;}
.ya_c00354{bottom:114.705000px;}
.y20_c00354{bottom:116.856450px;}
.y7_c00354{bottom:136.080000px;}
.y1f_c00354{bottom:177.150000px;}
.y1d_c00354{bottom:237.450000px;}
.y1c_c00354{bottom:297.795000px;}
.y1b_c00354{bottom:343.515000px;}
.y1a_c00354{bottom:389.235000px;}
.y18_c00354{bottom:434.955000px;}
.y16_c00354{bottom:480.675000px;}
.y14_c00354{bottom:541.875000px;}
.y12_c00354{bottom:603.105000px;}
.y10_c00354{bottom:664.125000px;}
.y9_c00354{bottom:739.005000px;}
.yc_c00354{bottom:813.705000px;}
.y8_c00354{bottom:888.451500px;}
.y6_c00354{bottom:963.151500px;}
.y4_c00354{bottom:1037.851500px;}
.y2_c00354{bottom:1112.551500px;}
.h6_c00354{height:39.339887px;}
.hf_c00354{height:45.000000px;}
.h4_c00354{height:48.224531px;}
.h2_c00354{height:48.256875px;}
.h11_c00354{height:59.579850px;}
.h12_c00354{height:59.580450px;}
.h10_c00354{height:59.616750px;}
.hc_c00354{height:60.300000px;}
.hd_c00354{height:60.336900px;}
.he_c00354{height:60.479850px;}
.h5_c00354{height:73.978650px;}
.ha_c00354{height:73.979850px;}
.h9_c00354{height:74.015700px;}
.hb_c00354{height:74.159700px;}
.h3_c00354{height:85.715100px;}
.h7_c00354{height:148.678650px;}
.h8_c00354{height:223.410000px;}
.h0_c00354{height:1262.879850px;}
.h1_c00354{height:1263.000000px;}
.w4_c00354{width:116.496750px;}
.w3_c00354{width:133.740300px;}
.w6_c00354{width:250.950000px;}
.w5_c00354{width:441.795000px;}
.w7_c00354{width:442.155000px;}
.w2_c00354{width:693.465000px;}
.w0_c00354{width:892.979850px;}
.w1_c00354{width:893.250000px;}
.x0_c00354{left:0.000000px;}
.x3_c00354{left:4.853250px;}
.x1_c00354{left:148.896750px;}
.x2_c00354{left:161.498250px;}
.x7_c00354{left:198.398250px;}
.x6_c00354{left:220.890000px;}
.x4_c00354{left:283.350000px;}
.x5_c00354{left:400.575000px;}
@media print{
.v0_c00354{vertical-align:0.000000pt;}
.ls1_c00354{letter-spacing:0.000000pt;}
.ls0_c00354{letter-spacing:0.191117pt;}
.ws0_c00354{word-spacing:-13.344015pt;}
.ws1_c00354{word-spacing:0.000000pt;}
._2_c00354{margin-left:-1.097138pt;}
._3_c00354{width:1.020573pt;}
._1_c00354{width:886.721749pt;}
._0_c00354{width:1196.429824pt;}
.fs1_c00354{font-size:48.000053pt;}
.fs0_c00354{font-size:58.880000pt;}
.y0_c00354{bottom:0.000000pt;}
.y19_c00354{bottom:15.680000pt;}
.yf_c00354{bottom:21.601067pt;}
.y1e_c00354{bottom:22.080000pt;}
.y21_c00354{bottom:22.080267pt;}
.y13_c00354{bottom:22.400000pt;}
.y17_c00354{bottom:22.560000pt;}
.y15_c00354{bottom:22.586667pt;}
.y5_c00354{bottom:28.638667pt;}
.yd_c00354{bottom:28.640000pt;}
.y3_c00354{bottom:32.826667pt;}
.ye_c00354{bottom:35.521333pt;}
.y11_c00354{bottom:36.160000pt;}
.y1_c00354{bottom:50.272400pt;}
.yb_c00354{bottom:88.000133pt;}
.y22_c00354{bottom:89.312533pt;}
.ya_c00354{bottom:101.960000pt;}
.y20_c00354{bottom:103.872400pt;}
.y7_c00354{bottom:120.960000pt;}
.y1f_c00354{bottom:157.466667pt;}
.y1d_c00354{bottom:211.066667pt;}
.y1c_c00354{bottom:264.706667pt;}
.y1b_c00354{bottom:305.346667pt;}
.y1a_c00354{bottom:345.986667pt;}
.y18_c00354{bottom:386.626667pt;}
.y16_c00354{bottom:427.266667pt;}
.y14_c00354{bottom:481.666667pt;}
.y12_c00354{bottom:536.093333pt;}
.y10_c00354{bottom:590.333333pt;}
.y9_c00354{bottom:656.893333pt;}
.yc_c00354{bottom:723.293333pt;}
.y8_c00354{bottom:789.734667pt;}
.y6_c00354{bottom:856.134667pt;}
.y4_c00354{bottom:922.534667pt;}
.y2_c00354{bottom:988.934667pt;}
.h6_c00354{height:34.968789pt;}
.hf_c00354{height:40.000000pt;}
.h4_c00354{height:42.866250pt;}
.h2_c00354{height:42.895000pt;}
.h11_c00354{height:52.959867pt;}
.h12_c00354{height:52.960400pt;}
.h10_c00354{height:52.992667pt;}
.hc_c00354{height:53.600000pt;}
.hd_c00354{height:53.632800pt;}
.he_c00354{height:53.759867pt;}
.h5_c00354{height:65.758800pt;}
.ha_c00354{height:65.759867pt;}
.h9_c00354{height:65.791733pt;}
.hb_c00354{height:65.919733pt;}
.h3_c00354{height:76.191200pt;}
.h7_c00354{height:132.158800pt;}
.h8_c00354{height:198.586667pt;}
.h0_c00354{height:1122.559867pt;}
.h1_c00354{height:1122.666667pt;}
.w4_c00354{width:103.552667pt;}
.w3_c00354{width:118.880267pt;}
.w6_c00354{width:223.066667pt;}
.w5_c00354{width:392.706667pt;}
.w7_c00354{width:393.026667pt;}
.w2_c00354{width:616.413333pt;}
.w0_c00354{width:793.759867pt;}
.w1_c00354{width:794.000000pt;}
.x0_c00354{left:0.000000pt;}
.x3_c00354{left:4.314000pt;}
.x1_c00354{left:132.352667pt;}
.x2_c00354{left:143.554000pt;}
.x7_c00354{left:176.354000pt;}
.x6_c00354{left:196.346667pt;}
.x4_c00354{left:251.866667pt;}
.x5_c00354{left:356.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_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_b4afbce4f73be568c8a71d8a.woff2')format("woff");}.ff1_c00355{font-family:ff1_c00355;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00355;src:url('chunks/assets/font_56aaa88bad11a02654a66835.woff2')format("woff");}.ff2_c00355{font-family:ff2_c00355;line-height:0.938965;font-style:normal;font-weight:normal;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_2a0268eeb5e3e20d3cafbbfd.woff2')format("woff");}.ff3_c00355{font-family:ff3_c00355;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00355;src:url('chunks/assets/font_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff4_c00355{font-family:ff4_c00355;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls1_c00355{letter-spacing:0.000000px;}
.ls0_c00355{letter-spacing:0.215007px;}
.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:-15.012017px;}
.ws1_c00355{word-spacing:0.000000px;}
._2_c00355{margin-left:-1.234280px;}
._3_c00355{width:1.148144px;}
._1_c00355{width:997.561968px;}
._0_c00355{width:1345.983552px;}
.fc0_c00355{color:rgb(0,0,0);}
.fs1_c00355{font-size:54.000060px;}
.fs0_c00355{font-size:66.240000px;}
.y0_c00355{bottom:0.000000px;}
.y19_c00355{bottom:17.640000px;}
.yf_c00355{bottom:24.301200px;}
.y1e_c00355{bottom:24.840000px;}
.y21_c00355{bottom:24.840300px;}
.y13_c00355{bottom:25.200000px;}
.y17_c00355{bottom:25.380000px;}
.y15_c00355{bottom:25.410000px;}
.y5_c00355{bottom:32.218500px;}
.yd_c00355{bottom:32.220000px;}
.y3_c00355{bottom:36.930000px;}
.ye_c00355{bottom:39.961500px;}
.y11_c00355{bottom:40.680000px;}
.y1_c00355{bottom:56.556450px;}
.yb_c00355{bottom:99.000150px;}
.y22_c00355{bottom:100.476600px;}
.ya_c00355{bottom:114.705000px;}
.y20_c00355{bottom:116.856450px;}
.y7_c00355{bottom:136.080000px;}
.y1f_c00355{bottom:177.150000px;}
.y1d_c00355{bottom:237.450000px;}
.y1c_c00355{bottom:297.795000px;}
.y1b_c00355{bottom:343.515000px;}
.y1a_c00355{bottom:389.235000px;}
.y18_c00355{bottom:434.955000px;}
.y16_c00355{bottom:480.675000px;}
.y14_c00355{bottom:541.875000px;}
.y12_c00355{bottom:603.105000px;}
.y10_c00355{bottom:664.125000px;}
.y9_c00355{bottom:739.005000px;}
.yc_c00355{bottom:813.705000px;}
.y8_c00355{bottom:888.451500px;}
.y6_c00355{bottom:963.151500px;}
.y4_c00355{bottom:1037.851500px;}
.y2_c00355{bottom:1112.551500px;}
.h6_c00355{height:39.339887px;}
.hf_c00355{height:45.000000px;}
.h4_c00355{height:48.224531px;}
.h2_c00355{height:48.256875px;}
.h11_c00355{height:59.579850px;}
.h12_c00355{height:59.580450px;}
.h10_c00355{height:59.616750px;}
.hc_c00355{height:60.300000px;}
.hd_c00355{height:60.336900px;}
.he_c00355{height:60.479850px;}
.h5_c00355{height:73.978650px;}
.ha_c00355{height:73.979850px;}
.h9_c00355{height:74.015700px;}
.hb_c00355{height:74.159700px;}
.h3_c00355{height:85.715100px;}
.h7_c00355{height:148.678650px;}
.h8_c00355{height:223.410000px;}
.h0_c00355{height:1262.879850px;}
.h1_c00355{height:1263.000000px;}
.w4_c00355{width:116.496750px;}
.w3_c00355{width:133.740300px;}
.w6_c00355{width:250.950000px;}
.w5_c00355{width:441.795000px;}
.w7_c00355{width:442.155000px;}
.w2_c00355{width:693.465000px;}
.w0_c00355{width:892.979850px;}
.w1_c00355{width:893.250000px;}
.x0_c00355{left:0.000000px;}
.x3_c00355{left:4.853250px;}
.x1_c00355{left:148.896750px;}
.x2_c00355{left:161.498250px;}
.x7_c00355{left:198.398250px;}
.x6_c00355{left:220.890000px;}
.x4_c00355{left:283.350000px;}
.x5_c00355{left:400.575000px;}
@media print{
.v0_c00355{vertical-align:0.000000pt;}
.ls1_c00355{letter-spacing:0.000000pt;}
.ls0_c00355{letter-spacing:0.191117pt;}
.ws0_c00355{word-spacing:-13.344015pt;}
.ws1_c00355{word-spacing:0.000000pt;}
._2_c00355{margin-left:-1.097138pt;}
._3_c00355{width:1.020573pt;}
._1_c00355{width:886.721749pt;}
._0_c00355{width:1196.429824pt;}
.fs1_c00355{font-size:48.000053pt;}
.fs0_c00355{font-size:58.880000pt;}
.y0_c00355{bottom:0.000000pt;}
.y19_c00355{bottom:15.680000pt;}
.yf_c00355{bottom:21.601067pt;}
.y1e_c00355{bottom:22.080000pt;}
.y21_c00355{bottom:22.080267pt;}
.y13_c00355{bottom:22.400000pt;}
.y17_c00355{bottom:22.560000pt;}
.y15_c00355{bottom:22.586667pt;}
.y5_c00355{bottom:28.638667pt;}
.yd_c00355{bottom:28.640000pt;}
.y3_c00355{bottom:32.826667pt;}
.ye_c00355{bottom:35.521333pt;}
.y11_c00355{bottom:36.160000pt;}
.y1_c00355{bottom:50.272400pt;}
.yb_c00355{bottom:88.000133pt;}
.y22_c00355{bottom:89.312533pt;}
.ya_c00355{bottom:101.960000pt;}
.y20_c00355{bottom:103.872400pt;}
.y7_c00355{bottom:120.960000pt;}
.y1f_c00355{bottom:157.466667pt;}
.y1d_c00355{bottom:211.066667pt;}
.y1c_c00355{bottom:264.706667pt;}
.y1b_c00355{bottom:305.346667pt;}
.y1a_c00355{bottom:345.986667pt;}
.y18_c00355{bottom:386.626667pt;}
.y16_c00355{bottom:427.266667pt;}
.y14_c00355{bottom:481.666667pt;}
.y12_c00355{bottom:536.093333pt;}
.y10_c00355{bottom:590.333333pt;}
.y9_c00355{bottom:656.893333pt;}
.yc_c00355{bottom:723.293333pt;}
.y8_c00355{bottom:789.734667pt;}
.y6_c00355{bottom:856.134667pt;}
.y4_c00355{bottom:922.534667pt;}
.y2_c00355{bottom:988.934667pt;}
.h6_c00355{height:34.968789pt;}
.hf_c00355{height:40.000000pt;}
.h4_c00355{height:42.866250pt;}
.h2_c00355{height:42.895000pt;}
.h11_c00355{height:52.959867pt;}
.h12_c00355{height:52.960400pt;}
.h10_c00355{height:52.992667pt;}
.hc_c00355{height:53.600000pt;}
.hd_c00355{height:53.632800pt;}
.he_c00355{height:53.759867pt;}
.h5_c00355{height:65.758800pt;}
.ha_c00355{height:65.759867pt;}
.h9_c00355{height:65.791733pt;}
.hb_c00355{height:65.919733pt;}
.h3_c00355{height:76.191200pt;}
.h7_c00355{height:132.158800pt;}
.h8_c00355{height:198.586667pt;}
.h0_c00355{height:1122.559867pt;}
.h1_c00355{height:1122.666667pt;}
.w4_c00355{width:103.552667pt;}
.w3_c00355{width:118.880267pt;}
.w6_c00355{width:223.066667pt;}
.w5_c00355{width:392.706667pt;}
.w7_c00355{width:393.026667pt;}
.w2_c00355{width:616.413333pt;}
.w0_c00355{width:793.759867pt;}
.w1_c00355{width:794.000000pt;}
.x0_c00355{left:0.000000pt;}
.x3_c00355{left:4.314000pt;}
.x1_c00355{left:132.352667pt;}
.x2_c00355{left:143.554000pt;}
.x7_c00355{left:176.354000pt;}
.x6_c00355{left:196.346667pt;}
.x4_c00355{left:251.866667pt;}
.x5_c00355{left:356.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_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_b4afbce4f73be568c8a71d8a.woff2')format("woff");}.ff1_c00356{font-family:ff1_c00356;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00356;src:url('chunks/assets/font_dcb9edd9a2bdfa18adb3ace5.woff2')format("woff");}.ff2_c00356{font-family:ff2_c00356;line-height:0.938965;font-style:normal;font-weight:normal;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_2a0268eeb5e3e20d3cafbbfd.woff2')format("woff");}.ff3_c00356{font-family:ff3_c00356;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00356;src:url('chunks/assets/font_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff4_c00356{font-family:ff4_c00356;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls1_c00356{letter-spacing:0.000000px;}
.ls0_c00356{letter-spacing:0.215007px;}
.sc__c00356{text-shadow:none;}
.sc0_c00356{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00356{-webkit-text-stroke:0px transparent;}
.sc0_c00356{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00356{word-spacing:-15.012017px;}
.ws1_c00356{word-spacing:0.000000px;}
._2_c00356{margin-left:-1.234280px;}
._3_c00356{width:1.148144px;}
._1_c00356{width:997.561968px;}
._0_c00356{width:1345.983552px;}
.fc0_c00356{color:rgb(0,0,0);}
.fs1_c00356{font-size:54.000060px;}
.fs0_c00356{font-size:66.240000px;}
.y0_c00356{bottom:0.000000px;}
.y19_c00356{bottom:17.640000px;}
.yf_c00356{bottom:24.301200px;}
.y1e_c00356{bottom:24.840000px;}
.y21_c00356{bottom:24.840300px;}
.y13_c00356{bottom:25.200000px;}
.y17_c00356{bottom:25.380000px;}
.y15_c00356{bottom:25.410000px;}
.y5_c00356{bottom:32.218500px;}
.yd_c00356{bottom:32.220000px;}
.y3_c00356{bottom:36.930000px;}
.ye_c00356{bottom:39.961500px;}
.y11_c00356{bottom:40.680000px;}
.y1_c00356{bottom:56.556450px;}
.yb_c00356{bottom:99.000150px;}
.y22_c00356{bottom:100.476600px;}
.ya_c00356{bottom:114.705000px;}
.y20_c00356{bottom:116.856450px;}
.y7_c00356{bottom:136.080000px;}
.y1f_c00356{bottom:177.150000px;}
.y1d_c00356{bottom:237.450000px;}
.y1c_c00356{bottom:297.795000px;}
.y1b_c00356{bottom:343.515000px;}
.y1a_c00356{bottom:389.235000px;}
.y18_c00356{bottom:434.955000px;}
.y16_c00356{bottom:480.675000px;}
.y14_c00356{bottom:541.875000px;}
.y12_c00356{bottom:603.105000px;}
.y10_c00356{bottom:664.125000px;}
.y9_c00356{bottom:739.005000px;}
.yc_c00356{bottom:813.705000px;}
.y8_c00356{bottom:888.451500px;}
.y6_c00356{bottom:963.151500px;}
.y4_c00356{bottom:1037.851500px;}
.y2_c00356{bottom:1112.551500px;}
.h6_c00356{height:39.339887px;}
.hf_c00356{height:45.000000px;}
.h4_c00356{height:48.224531px;}
.h2_c00356{height:48.256875px;}
.h11_c00356{height:59.579850px;}
.h12_c00356{height:59.580450px;}
.h10_c00356{height:59.616750px;}
.hc_c00356{height:60.300000px;}
.hd_c00356{height:60.336900px;}
.he_c00356{height:60.479850px;}
.h5_c00356{height:73.978650px;}
.ha_c00356{height:73.979850px;}
.h9_c00356{height:74.015700px;}
.hb_c00356{height:74.159700px;}
.h3_c00356{height:85.715100px;}
.h7_c00356{height:148.678650px;}
.h8_c00356{height:223.410000px;}
.h0_c00356{height:1262.879850px;}
.h1_c00356{height:1263.000000px;}
.w4_c00356{width:116.496750px;}
.w3_c00356{width:133.740300px;}
.w6_c00356{width:250.950000px;}
.w5_c00356{width:441.795000px;}
.w7_c00356{width:442.155000px;}
.w2_c00356{width:693.465000px;}
.w0_c00356{width:892.979850px;}
.w1_c00356{width:893.250000px;}
.x0_c00356{left:0.000000px;}
.x3_c00356{left:4.853250px;}
.x1_c00356{left:148.896750px;}
.x2_c00356{left:161.498250px;}
.x7_c00356{left:198.398250px;}
.x6_c00356{left:220.890000px;}
.x4_c00356{left:283.350000px;}
.x5_c00356{left:400.575000px;}
@media print{
.v0_c00356{vertical-align:0.000000pt;}
.ls1_c00356{letter-spacing:0.000000pt;}
.ls0_c00356{letter-spacing:0.191117pt;}
.ws0_c00356{word-spacing:-13.344015pt;}
.ws1_c00356{word-spacing:0.000000pt;}
._2_c00356{margin-left:-1.097138pt;}
._3_c00356{width:1.020573pt;}
._1_c00356{width:886.721749pt;}
._0_c00356{width:1196.429824pt;}
.fs1_c00356{font-size:48.000053pt;}
.fs0_c00356{font-size:58.880000pt;}
.y0_c00356{bottom:0.000000pt;}
.y19_c00356{bottom:15.680000pt;}
.yf_c00356{bottom:21.601067pt;}
.y1e_c00356{bottom:22.080000pt;}
.y21_c00356{bottom:22.080267pt;}
.y13_c00356{bottom:22.400000pt;}
.y17_c00356{bottom:22.560000pt;}
.y15_c00356{bottom:22.586667pt;}
.y5_c00356{bottom:28.638667pt;}
.yd_c00356{bottom:28.640000pt;}
.y3_c00356{bottom:32.826667pt;}
.ye_c00356{bottom:35.521333pt;}
.y11_c00356{bottom:36.160000pt;}
.y1_c00356{bottom:50.272400pt;}
.yb_c00356{bottom:88.000133pt;}
.y22_c00356{bottom:89.312533pt;}
.ya_c00356{bottom:101.960000pt;}
.y20_c00356{bottom:103.872400pt;}
.y7_c00356{bottom:120.960000pt;}
.y1f_c00356{bottom:157.466667pt;}
.y1d_c00356{bottom:211.066667pt;}
.y1c_c00356{bottom:264.706667pt;}
.y1b_c00356{bottom:305.346667pt;}
.y1a_c00356{bottom:345.986667pt;}
.y18_c00356{bottom:386.626667pt;}
.y16_c00356{bottom:427.266667pt;}
.y14_c00356{bottom:481.666667pt;}
.y12_c00356{bottom:536.093333pt;}
.y10_c00356{bottom:590.333333pt;}
.y9_c00356{bottom:656.893333pt;}
.yc_c00356{bottom:723.293333pt;}
.y8_c00356{bottom:789.734667pt;}
.y6_c00356{bottom:856.134667pt;}
.y4_c00356{bottom:922.534667pt;}
.y2_c00356{bottom:988.934667pt;}
.h6_c00356{height:34.968789pt;}
.hf_c00356{height:40.000000pt;}
.h4_c00356{height:42.866250pt;}
.h2_c00356{height:42.895000pt;}
.h11_c00356{height:52.959867pt;}
.h12_c00356{height:52.960400pt;}
.h10_c00356{height:52.992667pt;}
.hc_c00356{height:53.600000pt;}
.hd_c00356{height:53.632800pt;}
.he_c00356{height:53.759867pt;}
.h5_c00356{height:65.758800pt;}
.ha_c00356{height:65.759867pt;}
.h9_c00356{height:65.791733pt;}
.hb_c00356{height:65.919733pt;}
.h3_c00356{height:76.191200pt;}
.h7_c00356{height:132.158800pt;}
.h8_c00356{height:198.586667pt;}
.h0_c00356{height:1122.559867pt;}
.h1_c00356{height:1122.666667pt;}
.w4_c00356{width:103.552667pt;}
.w3_c00356{width:118.880267pt;}
.w6_c00356{width:223.066667pt;}
.w5_c00356{width:392.706667pt;}
.w7_c00356{width:393.026667pt;}
.w2_c00356{width:616.413333pt;}
.w0_c00356{width:793.759867pt;}
.w1_c00356{width:794.000000pt;}
.x0_c00356{left:0.000000pt;}
.x3_c00356{left:4.314000pt;}
.x1_c00356{left:132.352667pt;}
.x2_c00356{left:143.554000pt;}
.x7_c00356{left:176.354000pt;}
.x6_c00356{left:196.346667pt;}
.x4_c00356{left:251.866667pt;}
.x5_c00356{left:356.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_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_b4afbce4f73be568c8a71d8a.woff2')format("woff");}.ff1_c00357{font-family:ff1_c00357;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00357;src:url('chunks/assets/font_26c28fa9b018e8e4b8d2129a.woff2')format("woff");}.ff2_c00357{font-family:ff2_c00357;line-height:0.938965;font-style:normal;font-weight:normal;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_2a0268eeb5e3e20d3cafbbfd.woff2')format("woff");}.ff3_c00357{font-family:ff3_c00357;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00357;src:url('chunks/assets/font_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff4_c00357{font-family:ff4_c00357;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00357{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00357{vertical-align:0.000000px;}
.ls1_c00357{letter-spacing:0.000000px;}
.ls0_c00357{letter-spacing:0.217347px;}
.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;}
}
.ws1_c00357{word-spacing:-30.024033px;}
.ws0_c00357{word-spacing:-15.012017px;}
.ws2_c00357{word-spacing:0.000000px;}
._2_c00357{margin-left:-1.234280px;}
._3_c00357{width:1.148144px;}
._1_c00357{width:997.561968px;}
._0_c00357{width:1345.983552px;}
.fc0_c00357{color:rgb(0,0,0);}
.fs1_c00357{font-size:54.000060px;}
.fs0_c00357{font-size:66.240000px;}
.y0_c00357{bottom:0.000000px;}
.y25_c00357{bottom:17.100000px;}
.y1b_c00357{bottom:17.640000px;}
.y19_c00357{bottom:17.640150px;}
.yf_c00357{bottom:24.301200px;}
.y20_c00357{bottom:24.840000px;}
.y23_c00357{bottom:24.840300px;}
.y13_c00357{bottom:25.200000px;}
.y17_c00357{bottom:25.380000px;}
.y15_c00357{bottom:25.410000px;}
.y5_c00357{bottom:32.218500px;}
.yd_c00357{bottom:32.220000px;}
.y24_c00357{bottom:32.580450px;}
.y18_c00357{bottom:33.120000px;}
.y3_c00357{bottom:36.930000px;}
.ye_c00357{bottom:39.961500px;}
.y11_c00357{bottom:40.680000px;}
.y1_c00357{bottom:56.556450px;}
.yb_c00357{bottom:99.000150px;}
.y26_c00357{bottom:100.476600px;}
.ya_c00357{bottom:114.705000px;}
.y22_c00357{bottom:116.856450px;}
.y7_c00357{bottom:136.080000px;}
.y21_c00357{bottom:177.150000px;}
.y1f_c00357{bottom:237.450000px;}
.y1e_c00357{bottom:297.795000px;}
.y1d_c00357{bottom:343.515000px;}
.y1c_c00357{bottom:389.235000px;}
.y1a_c00357{bottom:434.955000px;}
.y16_c00357{bottom:480.675000px;}
.y14_c00357{bottom:541.875000px;}
.y12_c00357{bottom:603.105000px;}
.y10_c00357{bottom:664.125000px;}
.y9_c00357{bottom:739.005000px;}
.yc_c00357{bottom:813.705000px;}
.y8_c00357{bottom:888.451500px;}
.y6_c00357{bottom:963.151500px;}
.y4_c00357{bottom:1037.851500px;}
.y2_c00357{bottom:1112.551500px;}
.h6_c00357{height:39.339887px;}
.h13_c00357{height:44.149219px;}
.hf_c00357{height:45.000000px;}
.h4_c00357{height:48.224531px;}
.h2_c00357{height:48.256875px;}
.h11_c00357{height:59.579850px;}
.h12_c00357{height:59.580450px;}
.h10_c00357{height:59.616750px;}
.hc_c00357{height:60.300000px;}
.hd_c00357{height:60.336900px;}
.he_c00357{height:60.479850px;}
.h5_c00357{height:73.978650px;}
.ha_c00357{height:73.979850px;}
.h9_c00357{height:74.015700px;}
.hb_c00357{height:74.159700px;}
.h3_c00357{height:85.715100px;}
.h7_c00357{height:148.678650px;}
.h8_c00357{height:223.410000px;}
.h0_c00357{height:1262.879850px;}
.h1_c00357{height:1263.000000px;}
.w4_c00357{width:116.496750px;}
.w3_c00357{width:133.740300px;}
.w6_c00357{width:250.950000px;}
.w5_c00357{width:441.795000px;}
.w7_c00357{width:442.155000px;}
.w2_c00357{width:693.465000px;}
.w0_c00357{width:892.979850px;}
.w1_c00357{width:893.250000px;}
.x0_c00357{left:0.000000px;}
.x3_c00357{left:4.853250px;}
.x1_c00357{left:148.896750px;}
.x2_c00357{left:161.498250px;}
.x7_c00357{left:198.398250px;}
.x6_c00357{left:220.890000px;}
.x4_c00357{left:283.350000px;}
.x5_c00357{left:400.575000px;}
@media print{
.v0_c00357{vertical-align:0.000000pt;}
.ls1_c00357{letter-spacing:0.000000pt;}
.ls0_c00357{letter-spacing:0.193197pt;}
.ws1_c00357{word-spacing:-26.688030pt;}
.ws0_c00357{word-spacing:-13.344015pt;}
.ws2_c00357{word-spacing:0.000000pt;}
._2_c00357{margin-left:-1.097138pt;}
._3_c00357{width:1.020573pt;}
._1_c00357{width:886.721749pt;}
._0_c00357{width:1196.429824pt;}
.fs1_c00357{font-size:48.000053pt;}
.fs0_c00357{font-size:58.880000pt;}
.y0_c00357{bottom:0.000000pt;}
.y25_c00357{bottom:15.200000pt;}
.y1b_c00357{bottom:15.680000pt;}
.y19_c00357{bottom:15.680133pt;}
.yf_c00357{bottom:21.601067pt;}
.y20_c00357{bottom:22.080000pt;}
.y23_c00357{bottom:22.080267pt;}
.y13_c00357{bottom:22.400000pt;}
.y17_c00357{bottom:22.560000pt;}
.y15_c00357{bottom:22.586667pt;}
.y5_c00357{bottom:28.638667pt;}
.yd_c00357{bottom:28.640000pt;}
.y24_c00357{bottom:28.960400pt;}
.y18_c00357{bottom:29.440000pt;}
.y3_c00357{bottom:32.826667pt;}
.ye_c00357{bottom:35.521333pt;}
.y11_c00357{bottom:36.160000pt;}
.y1_c00357{bottom:50.272400pt;}
.yb_c00357{bottom:88.000133pt;}
.y26_c00357{bottom:89.312533pt;}
.ya_c00357{bottom:101.960000pt;}
.y22_c00357{bottom:103.872400pt;}
.y7_c00357{bottom:120.960000pt;}
.y21_c00357{bottom:157.466667pt;}
.y1f_c00357{bottom:211.066667pt;}
.y1e_c00357{bottom:264.706667pt;}
.y1d_c00357{bottom:305.346667pt;}
.y1c_c00357{bottom:345.986667pt;}
.y1a_c00357{bottom:386.626667pt;}
.y16_c00357{bottom:427.266667pt;}
.y14_c00357{bottom:481.666667pt;}
.y12_c00357{bottom:536.093333pt;}
.y10_c00357{bottom:590.333333pt;}
.y9_c00357{bottom:656.893333pt;}
.yc_c00357{bottom:723.293333pt;}
.y8_c00357{bottom:789.734667pt;}
.y6_c00357{bottom:856.134667pt;}
.y4_c00357{bottom:922.534667pt;}
.y2_c00357{bottom:988.934667pt;}
.h6_c00357{height:34.968789pt;}
.h13_c00357{height:39.243750pt;}
.hf_c00357{height:40.000000pt;}
.h4_c00357{height:42.866250pt;}
.h2_c00357{height:42.895000pt;}
.h11_c00357{height:52.959867pt;}
.h12_c00357{height:52.960400pt;}
.h10_c00357{height:52.992667pt;}
.hc_c00357{height:53.600000pt;}
.hd_c00357{height:53.632800pt;}
.he_c00357{height:53.759867pt;}
.h5_c00357{height:65.758800pt;}
.ha_c00357{height:65.759867pt;}
.h9_c00357{height:65.791733pt;}
.hb_c00357{height:65.919733pt;}
.h3_c00357{height:76.191200pt;}
.h7_c00357{height:132.158800pt;}
.h8_c00357{height:198.586667pt;}
.h0_c00357{height:1122.559867pt;}
.h1_c00357{height:1122.666667pt;}
.w4_c00357{width:103.552667pt;}
.w3_c00357{width:118.880267pt;}
.w6_c00357{width:223.066667pt;}
.w5_c00357{width:392.706667pt;}
.w7_c00357{width:393.026667pt;}
.w2_c00357{width:616.413333pt;}
.w0_c00357{width:793.759867pt;}
.w1_c00357{width:794.000000pt;}
.x0_c00357{left:0.000000pt;}
.x3_c00357{left:4.314000pt;}
.x1_c00357{left:132.352667pt;}
.x2_c00357{left:143.554000pt;}
.x7_c00357{left:176.354000pt;}
.x6_c00357{left:196.346667pt;}
.x4_c00357{left:251.866667pt;}
.x5_c00357{left:356.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_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_b4afbce4f73be568c8a71d8a.woff2')format("woff");}.ff1_c00358{font-family:ff1_c00358;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00358;src:url('chunks/assets/font_246921a0b884a294f6ade9dc.woff2')format("woff");}.ff2_c00358{font-family:ff2_c00358;line-height:0.938965;font-style:normal;font-weight:normal;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_2a0268eeb5e3e20d3cafbbfd.woff2')format("woff");}.ff3_c00358{font-family:ff3_c00358;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00358;src:url('chunks/assets/font_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff4_c00358{font-family:ff4_c00358;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00358{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00358{vertical-align:0.000000px;}
.ls1_c00358{letter-spacing:0.000000px;}
.ls0_c00358{letter-spacing:0.217347px;}
.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:-30.024033px;}
.ws0_c00358{word-spacing:-15.012017px;}
.ws2_c00358{word-spacing:0.000000px;}
._2_c00358{margin-left:-1.234280px;}
._3_c00358{width:1.148144px;}
._1_c00358{width:997.561968px;}
._0_c00358{width:1345.983552px;}
.fc0_c00358{color:rgb(0,0,0);}
.fs1_c00358{font-size:54.000060px;}
.fs0_c00358{font-size:66.240000px;}
.y0_c00358{bottom:0.000000px;}
.y25_c00358{bottom:17.100000px;}
.y1b_c00358{bottom:17.640000px;}
.y19_c00358{bottom:17.640150px;}
.yf_c00358{bottom:24.301200px;}
.y20_c00358{bottom:24.840000px;}
.y23_c00358{bottom:24.840300px;}
.y13_c00358{bottom:25.200000px;}
.y17_c00358{bottom:25.380000px;}
.y15_c00358{bottom:25.410000px;}
.y5_c00358{bottom:32.218500px;}
.yd_c00358{bottom:32.220000px;}
.y24_c00358{bottom:32.580450px;}
.y18_c00358{bottom:33.120000px;}
.y3_c00358{bottom:36.930000px;}
.ye_c00358{bottom:39.961500px;}
.y11_c00358{bottom:40.680000px;}
.y1_c00358{bottom:56.556450px;}
.yb_c00358{bottom:99.000150px;}
.ya_c00358{bottom:114.705000px;}
.y22_c00358{bottom:116.856450px;}
.y7_c00358{bottom:136.080000px;}
.y21_c00358{bottom:177.150000px;}
.y1f_c00358{bottom:237.450000px;}
.y1e_c00358{bottom:297.795000px;}
.y1d_c00358{bottom:343.515000px;}
.y1c_c00358{bottom:389.235000px;}
.y1a_c00358{bottom:434.955000px;}
.y16_c00358{bottom:480.675000px;}
.y14_c00358{bottom:541.875000px;}
.y12_c00358{bottom:603.105000px;}
.y10_c00358{bottom:664.125000px;}
.y9_c00358{bottom:739.005000px;}
.yc_c00358{bottom:813.705000px;}
.y8_c00358{bottom:888.451500px;}
.y6_c00358{bottom:963.151500px;}
.y4_c00358{bottom:1037.851500px;}
.y2_c00358{bottom:1112.551500px;}
.h6_c00358{height:39.339887px;}
.hf_c00358{height:45.000000px;}
.h4_c00358{height:48.224531px;}
.h2_c00358{height:48.256875px;}
.h11_c00358{height:59.579850px;}
.h12_c00358{height:59.580450px;}
.h10_c00358{height:59.616750px;}
.hc_c00358{height:60.300000px;}
.hd_c00358{height:60.336900px;}
.he_c00358{height:60.479850px;}
.h5_c00358{height:73.978650px;}
.ha_c00358{height:73.979850px;}
.h9_c00358{height:74.015700px;}
.hb_c00358{height:74.159700px;}
.h3_c00358{height:85.715100px;}
.h7_c00358{height:148.678650px;}
.h8_c00358{height:223.410000px;}
.h0_c00358{height:1262.879850px;}
.h1_c00358{height:1263.000000px;}
.w4_c00358{width:116.496750px;}
.w3_c00358{width:133.740300px;}
.w6_c00358{width:250.950000px;}
.w5_c00358{width:441.795000px;}
.w7_c00358{width:442.155000px;}
.w2_c00358{width:693.465000px;}
.w0_c00358{width:892.979850px;}
.w1_c00358{width:893.250000px;}
.x0_c00358{left:0.000000px;}
.x3_c00358{left:4.853250px;}
.x1_c00358{left:148.896750px;}
.x2_c00358{left:161.498250px;}
.x7_c00358{left:198.398250px;}
.x6_c00358{left:220.890000px;}
.x4_c00358{left:283.350000px;}
.x5_c00358{left:400.575000px;}
@media print{
.v0_c00358{vertical-align:0.000000pt;}
.ls1_c00358{letter-spacing:0.000000pt;}
.ls0_c00358{letter-spacing:0.193197pt;}
.ws1_c00358{word-spacing:-26.688030pt;}
.ws0_c00358{word-spacing:-13.344015pt;}
.ws2_c00358{word-spacing:0.000000pt;}
._2_c00358{margin-left:-1.097138pt;}
._3_c00358{width:1.020573pt;}
._1_c00358{width:886.721749pt;}
._0_c00358{width:1196.429824pt;}
.fs1_c00358{font-size:48.000053pt;}
.fs0_c00358{font-size:58.880000pt;}
.y0_c00358{bottom:0.000000pt;}
.y25_c00358{bottom:15.200000pt;}
.y1b_c00358{bottom:15.680000pt;}
.y19_c00358{bottom:15.680133pt;}
.yf_c00358{bottom:21.601067pt;}
.y20_c00358{bottom:22.080000pt;}
.y23_c00358{bottom:22.080267pt;}
.y13_c00358{bottom:22.400000pt;}
.y17_c00358{bottom:22.560000pt;}
.y15_c00358{bottom:22.586667pt;}
.y5_c00358{bottom:28.638667pt;}
.yd_c00358{bottom:28.640000pt;}
.y24_c00358{bottom:28.960400pt;}
.y18_c00358{bottom:29.440000pt;}
.y3_c00358{bottom:32.826667pt;}
.ye_c00358{bottom:35.521333pt;}
.y11_c00358{bottom:36.160000pt;}
.y1_c00358{bottom:50.272400pt;}
.yb_c00358{bottom:88.000133pt;}
.ya_c00358{bottom:101.960000pt;}
.y22_c00358{bottom:103.872400pt;}
.y7_c00358{bottom:120.960000pt;}
.y21_c00358{bottom:157.466667pt;}
.y1f_c00358{bottom:211.066667pt;}
.y1e_c00358{bottom:264.706667pt;}
.y1d_c00358{bottom:305.346667pt;}
.y1c_c00358{bottom:345.986667pt;}
.y1a_c00358{bottom:386.626667pt;}
.y16_c00358{bottom:427.266667pt;}
.y14_c00358{bottom:481.666667pt;}
.y12_c00358{bottom:536.093333pt;}
.y10_c00358{bottom:590.333333pt;}
.y9_c00358{bottom:656.893333pt;}
.yc_c00358{bottom:723.293333pt;}
.y8_c00358{bottom:789.734667pt;}
.y6_c00358{bottom:856.134667pt;}
.y4_c00358{bottom:922.534667pt;}
.y2_c00358{bottom:988.934667pt;}
.h6_c00358{height:34.968789pt;}
.hf_c00358{height:40.000000pt;}
.h4_c00358{height:42.866250pt;}
.h2_c00358{height:42.895000pt;}
.h11_c00358{height:52.959867pt;}
.h12_c00358{height:52.960400pt;}
.h10_c00358{height:52.992667pt;}
.hc_c00358{height:53.600000pt;}
.hd_c00358{height:53.632800pt;}
.he_c00358{height:53.759867pt;}
.h5_c00358{height:65.758800pt;}
.ha_c00358{height:65.759867pt;}
.h9_c00358{height:65.791733pt;}
.hb_c00358{height:65.919733pt;}
.h3_c00358{height:76.191200pt;}
.h7_c00358{height:132.158800pt;}
.h8_c00358{height:198.586667pt;}
.h0_c00358{height:1122.559867pt;}
.h1_c00358{height:1122.666667pt;}
.w4_c00358{width:103.552667pt;}
.w3_c00358{width:118.880267pt;}
.w6_c00358{width:223.066667pt;}
.w5_c00358{width:392.706667pt;}
.w7_c00358{width:393.026667pt;}
.w2_c00358{width:616.413333pt;}
.w0_c00358{width:793.759867pt;}
.w1_c00358{width:794.000000pt;}
.x0_c00358{left:0.000000pt;}
.x3_c00358{left:4.314000pt;}
.x1_c00358{left:132.352667pt;}
.x2_c00358{left:143.554000pt;}
.x7_c00358{left:176.354000pt;}
.x6_c00358{left:196.346667pt;}
.x4_c00358{left:251.866667pt;}
.x5_c00358{left:356.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_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_b4afbce4f73be568c8a71d8a.woff2')format("woff");}.ff1_c00359{font-family:ff1_c00359;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00359;src:url('chunks/assets/font_3d456babdb817778cd9a83f3.woff2')format("woff");}.ff2_c00359{font-family:ff2_c00359;line-height:0.938965;font-style:normal;font-weight:normal;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_2a0268eeb5e3e20d3cafbbfd.woff2')format("woff");}.ff3_c00359{font-family:ff3_c00359;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00359;src:url('chunks/assets/font_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff4_c00359{font-family:ff4_c00359;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls1_c00359{letter-spacing:0.000000px;}
.ls0_c00359{letter-spacing:0.397827px;}
.sc__c00359{text-shadow:none;}
.sc0_c00359{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00359{-webkit-text-stroke:0px transparent;}
.sc0_c00359{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00359{word-spacing:-30.024033px;}
.ws0_c00359{word-spacing:-15.012017px;}
.ws2_c00359{word-spacing:0.000000px;}
._2_c00359{margin-left:-1.234280px;}
._3_c00359{width:1.148144px;}
._1_c00359{width:997.561968px;}
._0_c00359{width:1345.983552px;}
.fc0_c00359{color:rgb(0,0,0);}
.fs1_c00359{font-size:54.000060px;}
.fs0_c00359{font-size:66.240000px;}
.y0_c00359{bottom:0.000000px;}
.y1b_c00359{bottom:17.640000px;}
.y19_c00359{bottom:17.640150px;}
.yf_c00359{bottom:24.301200px;}
.y20_c00359{bottom:24.840000px;}
.y23_c00359{bottom:24.840300px;}
.y13_c00359{bottom:25.200000px;}
.y17_c00359{bottom:25.380000px;}
.y15_c00359{bottom:25.410000px;}
.y5_c00359{bottom:32.218500px;}
.yd_c00359{bottom:32.220000px;}
.y18_c00359{bottom:33.120000px;}
.y3_c00359{bottom:36.930000px;}
.ye_c00359{bottom:39.961500px;}
.y11_c00359{bottom:40.680000px;}
.y1_c00359{bottom:56.556450px;}
.yb_c00359{bottom:99.000150px;}
.y24_c00359{bottom:100.476600px;}
.ya_c00359{bottom:114.705000px;}
.y22_c00359{bottom:116.856450px;}
.y7_c00359{bottom:136.080000px;}
.y21_c00359{bottom:177.150000px;}
.y1f_c00359{bottom:237.450000px;}
.y1e_c00359{bottom:297.795000px;}
.y1d_c00359{bottom:343.515000px;}
.y1c_c00359{bottom:389.235000px;}
.y1a_c00359{bottom:434.955000px;}
.y16_c00359{bottom:480.675000px;}
.y14_c00359{bottom:541.875000px;}
.y12_c00359{bottom:603.105000px;}
.y10_c00359{bottom:664.125000px;}
.y9_c00359{bottom:739.005000px;}
.yc_c00359{bottom:813.705000px;}
.y8_c00359{bottom:888.451500px;}
.y6_c00359{bottom:963.151500px;}
.y4_c00359{bottom:1037.851500px;}
.y2_c00359{bottom:1112.551500px;}
.h6_c00359{height:39.339887px;}
.h13_c00359{height:44.149219px;}
.hf_c00359{height:45.000000px;}
.h4_c00359{height:48.224531px;}
.h2_c00359{height:48.256875px;}
.h11_c00359{height:59.579850px;}
.h12_c00359{height:59.580450px;}
.h10_c00359{height:59.616750px;}
.hc_c00359{height:60.300000px;}
.hd_c00359{height:60.336900px;}
.he_c00359{height:60.479850px;}
.h5_c00359{height:73.978650px;}
.ha_c00359{height:73.979850px;}
.h9_c00359{height:74.015700px;}
.hb_c00359{height:74.159700px;}
.h3_c00359{height:85.715100px;}
.h7_c00359{height:148.678650px;}
.h8_c00359{height:223.410000px;}
.h0_c00359{height:1262.879850px;}
.h1_c00359{height:1263.000000px;}
.w4_c00359{width:116.496750px;}
.w3_c00359{width:133.740300px;}
.w6_c00359{width:250.950000px;}
.w5_c00359{width:441.795000px;}
.w7_c00359{width:442.155000px;}
.w2_c00359{width:693.465000px;}
.w0_c00359{width:892.979850px;}
.w1_c00359{width:893.250000px;}
.x0_c00359{left:0.000000px;}
.x3_c00359{left:4.853250px;}
.x1_c00359{left:148.896750px;}
.x2_c00359{left:161.498250px;}
.x7_c00359{left:198.398250px;}
.x6_c00359{left:220.890000px;}
.x4_c00359{left:283.350000px;}
.x5_c00359{left:400.575000px;}
@media print{
.v0_c00359{vertical-align:0.000000pt;}
.ls1_c00359{letter-spacing:0.000000pt;}
.ls0_c00359{letter-spacing:0.353624pt;}
.ws1_c00359{word-spacing:-26.688030pt;}
.ws0_c00359{word-spacing:-13.344015pt;}
.ws2_c00359{word-spacing:0.000000pt;}
._2_c00359{margin-left:-1.097138pt;}
._3_c00359{width:1.020573pt;}
._1_c00359{width:886.721749pt;}
._0_c00359{width:1196.429824pt;}
.fs1_c00359{font-size:48.000053pt;}
.fs0_c00359{font-size:58.880000pt;}
.y0_c00359{bottom:0.000000pt;}
.y1b_c00359{bottom:15.680000pt;}
.y19_c00359{bottom:15.680133pt;}
.yf_c00359{bottom:21.601067pt;}
.y20_c00359{bottom:22.080000pt;}
.y23_c00359{bottom:22.080267pt;}
.y13_c00359{bottom:22.400000pt;}
.y17_c00359{bottom:22.560000pt;}
.y15_c00359{bottom:22.586667pt;}
.y5_c00359{bottom:28.638667pt;}
.yd_c00359{bottom:28.640000pt;}
.y18_c00359{bottom:29.440000pt;}
.y3_c00359{bottom:32.826667pt;}
.ye_c00359{bottom:35.521333pt;}
.y11_c00359{bottom:36.160000pt;}
.y1_c00359{bottom:50.272400pt;}
.yb_c00359{bottom:88.000133pt;}
.y24_c00359{bottom:89.312533pt;}
.ya_c00359{bottom:101.960000pt;}
.y22_c00359{bottom:103.872400pt;}
.y7_c00359{bottom:120.960000pt;}
.y21_c00359{bottom:157.466667pt;}
.y1f_c00359{bottom:211.066667pt;}
.y1e_c00359{bottom:264.706667pt;}
.y1d_c00359{bottom:305.346667pt;}
.y1c_c00359{bottom:345.986667pt;}
.y1a_c00359{bottom:386.626667pt;}
.y16_c00359{bottom:427.266667pt;}
.y14_c00359{bottom:481.666667pt;}
.y12_c00359{bottom:536.093333pt;}
.y10_c00359{bottom:590.333333pt;}
.y9_c00359{bottom:656.893333pt;}
.yc_c00359{bottom:723.293333pt;}
.y8_c00359{bottom:789.734667pt;}
.y6_c00359{bottom:856.134667pt;}
.y4_c00359{bottom:922.534667pt;}
.y2_c00359{bottom:988.934667pt;}
.h6_c00359{height:34.968789pt;}
.h13_c00359{height:39.243750pt;}
.hf_c00359{height:40.000000pt;}
.h4_c00359{height:42.866250pt;}
.h2_c00359{height:42.895000pt;}
.h11_c00359{height:52.959867pt;}
.h12_c00359{height:52.960400pt;}
.h10_c00359{height:52.992667pt;}
.hc_c00359{height:53.600000pt;}
.hd_c00359{height:53.632800pt;}
.he_c00359{height:53.759867pt;}
.h5_c00359{height:65.758800pt;}
.ha_c00359{height:65.759867pt;}
.h9_c00359{height:65.791733pt;}
.hb_c00359{height:65.919733pt;}
.h3_c00359{height:76.191200pt;}
.h7_c00359{height:132.158800pt;}
.h8_c00359{height:198.586667pt;}
.h0_c00359{height:1122.559867pt;}
.h1_c00359{height:1122.666667pt;}
.w4_c00359{width:103.552667pt;}
.w3_c00359{width:118.880267pt;}
.w6_c00359{width:223.066667pt;}
.w5_c00359{width:392.706667pt;}
.w7_c00359{width:393.026667pt;}
.w2_c00359{width:616.413333pt;}
.w0_c00359{width:793.759867pt;}
.w1_c00359{width:794.000000pt;}
.x0_c00359{left:0.000000pt;}
.x3_c00359{left:4.314000pt;}
.x1_c00359{left:132.352667pt;}
.x2_c00359{left:143.554000pt;}
.x7_c00359{left:176.354000pt;}
.x6_c00359{left:196.346667pt;}
.x4_c00359{left:251.866667pt;}
.x5_c00359{left:356.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_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_b4afbce4f73be568c8a71d8a.woff2')format("woff");}.ff1_c00360{font-family:ff1_c00360;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00360;src:url('chunks/assets/font_a6c6f4a919f432a49e908b5d.woff2')format("woff");}.ff2_c00360{font-family:ff2_c00360;line-height:0.938965;font-style:normal;font-weight:normal;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_2a0268eeb5e3e20d3cafbbfd.woff2')format("woff");}.ff3_c00360{font-family:ff3_c00360;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00360;src:url('chunks/assets/font_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff4_c00360{font-family:ff4_c00360;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00360{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00360{vertical-align:0.000000px;}
.ls1_c00360{letter-spacing:0.000000px;}
.ls0_c00360{letter-spacing:0.397827px;}
.sc__c00360{text-shadow:none;}
.sc0_c00360{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00360{-webkit-text-stroke:0px transparent;}
.sc0_c00360{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00360{word-spacing:-30.024033px;}
.ws0_c00360{word-spacing:-15.012017px;}
.ws2_c00360{word-spacing:0.000000px;}
._2_c00360{margin-left:-1.234280px;}
._3_c00360{width:1.148144px;}
._1_c00360{width:997.561968px;}
._0_c00360{width:1345.983552px;}
.fc0_c00360{color:rgb(0,0,0);}
.fs1_c00360{font-size:54.000060px;}
.fs0_c00360{font-size:66.240000px;}
.y0_c00360{bottom:0.000000px;}
.y1b_c00360{bottom:17.640000px;}
.y19_c00360{bottom:17.640150px;}
.yf_c00360{bottom:24.301200px;}
.y20_c00360{bottom:24.840000px;}
.y23_c00360{bottom:24.840300px;}
.y13_c00360{bottom:25.200000px;}
.y17_c00360{bottom:25.380000px;}
.y15_c00360{bottom:25.410000px;}
.y5_c00360{bottom:32.218500px;}
.yd_c00360{bottom:32.220000px;}
.y18_c00360{bottom:33.120000px;}
.y3_c00360{bottom:36.930000px;}
.ye_c00360{bottom:39.961500px;}
.y11_c00360{bottom:40.680000px;}
.y1_c00360{bottom:56.556450px;}
.yb_c00360{bottom:99.000150px;}
.y24_c00360{bottom:100.476600px;}
.ya_c00360{bottom:114.705000px;}
.y22_c00360{bottom:116.856450px;}
.y7_c00360{bottom:136.080000px;}
.y21_c00360{bottom:177.150000px;}
.y1f_c00360{bottom:237.450000px;}
.y1e_c00360{bottom:297.795000px;}
.y1d_c00360{bottom:343.515000px;}
.y1c_c00360{bottom:389.235000px;}
.y1a_c00360{bottom:434.955000px;}
.y16_c00360{bottom:480.675000px;}
.y14_c00360{bottom:541.875000px;}
.y12_c00360{bottom:603.105000px;}
.y10_c00360{bottom:664.125000px;}
.y9_c00360{bottom:739.005000px;}
.yc_c00360{bottom:813.705000px;}
.y8_c00360{bottom:888.451500px;}
.y6_c00360{bottom:963.151500px;}
.y4_c00360{bottom:1037.851500px;}
.y2_c00360{bottom:1112.551500px;}
.h6_c00360{height:39.339887px;}
.h13_c00360{height:44.149219px;}
.hf_c00360{height:45.000000px;}
.h4_c00360{height:48.224531px;}
.h2_c00360{height:48.256875px;}
.h11_c00360{height:59.579850px;}
.h12_c00360{height:59.580450px;}
.h10_c00360{height:59.616750px;}
.hc_c00360{height:60.300000px;}
.hd_c00360{height:60.336900px;}
.he_c00360{height:60.479850px;}
.h5_c00360{height:73.978650px;}
.ha_c00360{height:73.979850px;}
.h9_c00360{height:74.015700px;}
.hb_c00360{height:74.159700px;}
.h3_c00360{height:85.715100px;}
.h7_c00360{height:148.678650px;}
.h8_c00360{height:223.410000px;}
.h0_c00360{height:1262.879850px;}
.h1_c00360{height:1263.000000px;}
.w4_c00360{width:116.496750px;}
.w3_c00360{width:133.740300px;}
.w6_c00360{width:250.950000px;}
.w5_c00360{width:441.795000px;}
.w7_c00360{width:442.155000px;}
.w2_c00360{width:693.465000px;}
.w0_c00360{width:892.979850px;}
.w1_c00360{width:893.250000px;}
.x0_c00360{left:0.000000px;}
.x3_c00360{left:4.853250px;}
.x1_c00360{left:148.896750px;}
.x2_c00360{left:161.498250px;}
.x7_c00360{left:198.398250px;}
.x6_c00360{left:220.890000px;}
.x4_c00360{left:283.350000px;}
.x5_c00360{left:400.575000px;}
@media print{
.v0_c00360{vertical-align:0.000000pt;}
.ls1_c00360{letter-spacing:0.000000pt;}
.ls0_c00360{letter-spacing:0.353624pt;}
.ws1_c00360{word-spacing:-26.688030pt;}
.ws0_c00360{word-spacing:-13.344015pt;}
.ws2_c00360{word-spacing:0.000000pt;}
._2_c00360{margin-left:-1.097138pt;}
._3_c00360{width:1.020573pt;}
._1_c00360{width:886.721749pt;}
._0_c00360{width:1196.429824pt;}
.fs1_c00360{font-size:48.000053pt;}
.fs0_c00360{font-size:58.880000pt;}
.y0_c00360{bottom:0.000000pt;}
.y1b_c00360{bottom:15.680000pt;}
.y19_c00360{bottom:15.680133pt;}
.yf_c00360{bottom:21.601067pt;}
.y20_c00360{bottom:22.080000pt;}
.y23_c00360{bottom:22.080267pt;}
.y13_c00360{bottom:22.400000pt;}
.y17_c00360{bottom:22.560000pt;}
.y15_c00360{bottom:22.586667pt;}
.y5_c00360{bottom:28.638667pt;}
.yd_c00360{bottom:28.640000pt;}
.y18_c00360{bottom:29.440000pt;}
.y3_c00360{bottom:32.826667pt;}
.ye_c00360{bottom:35.521333pt;}
.y11_c00360{bottom:36.160000pt;}
.y1_c00360{bottom:50.272400pt;}
.yb_c00360{bottom:88.000133pt;}
.y24_c00360{bottom:89.312533pt;}
.ya_c00360{bottom:101.960000pt;}
.y22_c00360{bottom:103.872400pt;}
.y7_c00360{bottom:120.960000pt;}
.y21_c00360{bottom:157.466667pt;}
.y1f_c00360{bottom:211.066667pt;}
.y1e_c00360{bottom:264.706667pt;}
.y1d_c00360{bottom:305.346667pt;}
.y1c_c00360{bottom:345.986667pt;}
.y1a_c00360{bottom:386.626667pt;}
.y16_c00360{bottom:427.266667pt;}
.y14_c00360{bottom:481.666667pt;}
.y12_c00360{bottom:536.093333pt;}
.y10_c00360{bottom:590.333333pt;}
.y9_c00360{bottom:656.893333pt;}
.yc_c00360{bottom:723.293333pt;}
.y8_c00360{bottom:789.734667pt;}
.y6_c00360{bottom:856.134667pt;}
.y4_c00360{bottom:922.534667pt;}
.y2_c00360{bottom:988.934667pt;}
.h6_c00360{height:34.968789pt;}
.h13_c00360{height:39.243750pt;}
.hf_c00360{height:40.000000pt;}
.h4_c00360{height:42.866250pt;}
.h2_c00360{height:42.895000pt;}
.h11_c00360{height:52.959867pt;}
.h12_c00360{height:52.960400pt;}
.h10_c00360{height:52.992667pt;}
.hc_c00360{height:53.600000pt;}
.hd_c00360{height:53.632800pt;}
.he_c00360{height:53.759867pt;}
.h5_c00360{height:65.758800pt;}
.ha_c00360{height:65.759867pt;}
.h9_c00360{height:65.791733pt;}
.hb_c00360{height:65.919733pt;}
.h3_c00360{height:76.191200pt;}
.h7_c00360{height:132.158800pt;}
.h8_c00360{height:198.586667pt;}
.h0_c00360{height:1122.559867pt;}
.h1_c00360{height:1122.666667pt;}
.w4_c00360{width:103.552667pt;}
.w3_c00360{width:118.880267pt;}
.w6_c00360{width:223.066667pt;}
.w5_c00360{width:392.706667pt;}
.w7_c00360{width:393.026667pt;}
.w2_c00360{width:616.413333pt;}
.w0_c00360{width:793.759867pt;}
.w1_c00360{width:794.000000pt;}
.x0_c00360{left:0.000000pt;}
.x3_c00360{left:4.314000pt;}
.x1_c00360{left:132.352667pt;}
.x2_c00360{left:143.554000pt;}
.x7_c00360{left:176.354000pt;}
.x6_c00360{left:196.346667pt;}
.x4_c00360{left:251.866667pt;}
.x5_c00360{left:356.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_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_b4afbce4f73be568c8a71d8a.woff2')format("woff");}.ff1_c00361{font-family:ff1_c00361;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00361;src:url('chunks/assets/font_5e1db45cac2114b3f3155aad.woff2')format("woff");}.ff2_c00361{font-family:ff2_c00361;line-height:0.938965;font-style:normal;font-weight:normal;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_2a0268eeb5e3e20d3cafbbfd.woff2')format("woff");}.ff3_c00361{font-family:ff3_c00361;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00361;src:url('chunks/assets/font_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff4_c00361{font-family:ff4_c00361;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls2_c00361{letter-spacing:0.000000px;}
.ls0_c00361{letter-spacing:0.212667px;}
.ls1_c00361{letter-spacing:0.339267px;}
.sc__c00361{text-shadow:none;}
.sc0_c00361{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00361{-webkit-text-stroke:0px transparent;}
.sc0_c00361{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00361{word-spacing:-15.012017px;}
.ws1_c00361{word-spacing:0.000000px;}
._2_c00361{margin-left:-1.234280px;}
._3_c00361{width:1.148144px;}
._1_c00361{width:997.561968px;}
._0_c00361{width:1345.983552px;}
.fc0_c00361{color:rgb(0,0,0);}
.fs1_c00361{font-size:54.000060px;}
.fs0_c00361{font-size:66.240000px;}
.y0_c00361{bottom:0.000000px;}
.y1b_c00361{bottom:17.640000px;}
.y19_c00361{bottom:17.640150px;}
.yf_c00361{bottom:24.301200px;}
.y20_c00361{bottom:24.840000px;}
.y23_c00361{bottom:24.840300px;}
.y13_c00361{bottom:25.200000px;}
.y17_c00361{bottom:25.380000px;}
.y15_c00361{bottom:25.410000px;}
.y5_c00361{bottom:32.218500px;}
.yd_c00361{bottom:32.220000px;}
.y18_c00361{bottom:33.120000px;}
.y3_c00361{bottom:36.930000px;}
.ye_c00361{bottom:39.961500px;}
.y11_c00361{bottom:40.680000px;}
.y1_c00361{bottom:56.556450px;}
.yb_c00361{bottom:99.000150px;}
.y24_c00361{bottom:100.476600px;}
.ya_c00361{bottom:114.705000px;}
.y22_c00361{bottom:116.856450px;}
.y7_c00361{bottom:136.080000px;}
.y21_c00361{bottom:177.150000px;}
.y1f_c00361{bottom:237.450000px;}
.y1e_c00361{bottom:297.795000px;}
.y1d_c00361{bottom:343.515000px;}
.y1c_c00361{bottom:389.235000px;}
.y1a_c00361{bottom:434.955000px;}
.y16_c00361{bottom:480.675000px;}
.y14_c00361{bottom:541.875000px;}
.y12_c00361{bottom:603.105000px;}
.y10_c00361{bottom:664.125000px;}
.y9_c00361{bottom:739.005000px;}
.yc_c00361{bottom:813.705000px;}
.y8_c00361{bottom:888.451500px;}
.y6_c00361{bottom:963.151500px;}
.y4_c00361{bottom:1037.851500px;}
.y2_c00361{bottom:1112.551500px;}
.h6_c00361{height:39.339887px;}
.h13_c00361{height:44.149219px;}
.hf_c00361{height:45.000000px;}
.h4_c00361{height:48.224531px;}
.h2_c00361{height:48.256875px;}
.h11_c00361{height:59.579850px;}
.h12_c00361{height:59.580450px;}
.h10_c00361{height:59.616750px;}
.hc_c00361{height:60.300000px;}
.hd_c00361{height:60.336900px;}
.he_c00361{height:60.479850px;}
.h5_c00361{height:73.978650px;}
.ha_c00361{height:73.979850px;}
.h9_c00361{height:74.015700px;}
.hb_c00361{height:74.159700px;}
.h3_c00361{height:85.715100px;}
.h7_c00361{height:148.678650px;}
.h8_c00361{height:223.410000px;}
.h0_c00361{height:1262.879850px;}
.h1_c00361{height:1263.000000px;}
.w4_c00361{width:116.496750px;}
.w3_c00361{width:133.740300px;}
.w6_c00361{width:250.950000px;}
.w5_c00361{width:441.795000px;}
.w7_c00361{width:442.155000px;}
.w2_c00361{width:693.465000px;}
.w0_c00361{width:892.979850px;}
.w1_c00361{width:893.250000px;}
.x0_c00361{left:0.000000px;}
.x3_c00361{left:4.853250px;}
.x1_c00361{left:148.896750px;}
.x2_c00361{left:161.498250px;}
.x7_c00361{left:198.398250px;}
.x6_c00361{left:220.890000px;}
.x4_c00361{left:283.350000px;}
.x5_c00361{left:400.575000px;}
@media print{
.v0_c00361{vertical-align:0.000000pt;}
.ls2_c00361{letter-spacing:0.000000pt;}
.ls0_c00361{letter-spacing:0.189037pt;}
.ls1_c00361{letter-spacing:0.301570pt;}
.ws0_c00361{word-spacing:-13.344015pt;}
.ws1_c00361{word-spacing:0.000000pt;}
._2_c00361{margin-left:-1.097138pt;}
._3_c00361{width:1.020573pt;}
._1_c00361{width:886.721749pt;}
._0_c00361{width:1196.429824pt;}
.fs1_c00361{font-size:48.000053pt;}
.fs0_c00361{font-size:58.880000pt;}
.y0_c00361{bottom:0.000000pt;}
.y1b_c00361{bottom:15.680000pt;}
.y19_c00361{bottom:15.680133pt;}
.yf_c00361{bottom:21.601067pt;}
.y20_c00361{bottom:22.080000pt;}
.y23_c00361{bottom:22.080267pt;}
.y13_c00361{bottom:22.400000pt;}
.y17_c00361{bottom:22.560000pt;}
.y15_c00361{bottom:22.586667pt;}
.y5_c00361{bottom:28.638667pt;}
.yd_c00361{bottom:28.640000pt;}
.y18_c00361{bottom:29.440000pt;}
.y3_c00361{bottom:32.826667pt;}
.ye_c00361{bottom:35.521333pt;}
.y11_c00361{bottom:36.160000pt;}
.y1_c00361{bottom:50.272400pt;}
.yb_c00361{bottom:88.000133pt;}
.y24_c00361{bottom:89.312533pt;}
.ya_c00361{bottom:101.960000pt;}
.y22_c00361{bottom:103.872400pt;}
.y7_c00361{bottom:120.960000pt;}
.y21_c00361{bottom:157.466667pt;}
.y1f_c00361{bottom:211.066667pt;}
.y1e_c00361{bottom:264.706667pt;}
.y1d_c00361{bottom:305.346667pt;}
.y1c_c00361{bottom:345.986667pt;}
.y1a_c00361{bottom:386.626667pt;}
.y16_c00361{bottom:427.266667pt;}
.y14_c00361{bottom:481.666667pt;}
.y12_c00361{bottom:536.093333pt;}
.y10_c00361{bottom:590.333333pt;}
.y9_c00361{bottom:656.893333pt;}
.yc_c00361{bottom:723.293333pt;}
.y8_c00361{bottom:789.734667pt;}
.y6_c00361{bottom:856.134667pt;}
.y4_c00361{bottom:922.534667pt;}
.y2_c00361{bottom:988.934667pt;}
.h6_c00361{height:34.968789pt;}
.h13_c00361{height:39.243750pt;}
.hf_c00361{height:40.000000pt;}
.h4_c00361{height:42.866250pt;}
.h2_c00361{height:42.895000pt;}
.h11_c00361{height:52.959867pt;}
.h12_c00361{height:52.960400pt;}
.h10_c00361{height:52.992667pt;}
.hc_c00361{height:53.600000pt;}
.hd_c00361{height:53.632800pt;}
.he_c00361{height:53.759867pt;}
.h5_c00361{height:65.758800pt;}
.ha_c00361{height:65.759867pt;}
.h9_c00361{height:65.791733pt;}
.hb_c00361{height:65.919733pt;}
.h3_c00361{height:76.191200pt;}
.h7_c00361{height:132.158800pt;}
.h8_c00361{height:198.586667pt;}
.h0_c00361{height:1122.559867pt;}
.h1_c00361{height:1122.666667pt;}
.w4_c00361{width:103.552667pt;}
.w3_c00361{width:118.880267pt;}
.w6_c00361{width:223.066667pt;}
.w5_c00361{width:392.706667pt;}
.w7_c00361{width:393.026667pt;}
.w2_c00361{width:616.413333pt;}
.w0_c00361{width:793.759867pt;}
.w1_c00361{width:794.000000pt;}
.x0_c00361{left:0.000000pt;}
.x3_c00361{left:4.314000pt;}
.x1_c00361{left:132.352667pt;}
.x2_c00361{left:143.554000pt;}
.x7_c00361{left:176.354000pt;}
.x6_c00361{left:196.346667pt;}
.x4_c00361{left:251.866667pt;}
.x5_c00361{left:356.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_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_b4afbce4f73be568c8a71d8a.woff2')format("woff");}.ff1_c00362{font-family:ff1_c00362;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00362;src:url('chunks/assets/font_a760f18703d317a1b107b10b.woff2')format("woff");}.ff2_c00362{font-family:ff2_c00362;line-height:0.938965;font-style:normal;font-weight:normal;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_2a0268eeb5e3e20d3cafbbfd.woff2')format("woff");}.ff3_c00362{font-family:ff3_c00362;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00362;src:url('chunks/assets/font_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff4_c00362{font-family:ff4_c00362;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls2_c00362{letter-spacing:0.000000px;}
.ls0_c00362{letter-spacing:0.212667px;}
.ls1_c00362{letter-spacing:0.339267px;}
.sc__c00362{text-shadow:none;}
.sc0_c00362{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00362{-webkit-text-stroke:0px transparent;}
.sc0_c00362{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00362{word-spacing:-15.012017px;}
.ws1_c00362{word-spacing:0.000000px;}
._2_c00362{margin-left:-1.234280px;}
._3_c00362{width:1.148144px;}
._1_c00362{width:997.561968px;}
._0_c00362{width:1345.983552px;}
.fc0_c00362{color:rgb(0,0,0);}
.fs1_c00362{font-size:54.000060px;}
.fs0_c00362{font-size:66.240000px;}
.y0_c00362{bottom:0.000000px;}
.y1b_c00362{bottom:17.640000px;}
.y19_c00362{bottom:17.640150px;}
.yf_c00362{bottom:24.301200px;}
.y20_c00362{bottom:24.840000px;}
.y23_c00362{bottom:24.840300px;}
.y13_c00362{bottom:25.200000px;}
.y17_c00362{bottom:25.380000px;}
.y15_c00362{bottom:25.410000px;}
.y5_c00362{bottom:32.218500px;}
.yd_c00362{bottom:32.220000px;}
.y18_c00362{bottom:33.120000px;}
.y3_c00362{bottom:36.930000px;}
.ye_c00362{bottom:39.961500px;}
.y11_c00362{bottom:40.680000px;}
.y1_c00362{bottom:56.556450px;}
.yb_c00362{bottom:99.000150px;}
.y24_c00362{bottom:100.476600px;}
.ya_c00362{bottom:114.705000px;}
.y22_c00362{bottom:116.856450px;}
.y7_c00362{bottom:136.080000px;}
.y21_c00362{bottom:177.150000px;}
.y1f_c00362{bottom:237.450000px;}
.y1e_c00362{bottom:297.795000px;}
.y1d_c00362{bottom:343.515000px;}
.y1c_c00362{bottom:389.235000px;}
.y1a_c00362{bottom:434.955000px;}
.y16_c00362{bottom:480.675000px;}
.y14_c00362{bottom:541.875000px;}
.y12_c00362{bottom:603.105000px;}
.y10_c00362{bottom:664.125000px;}
.y9_c00362{bottom:739.005000px;}
.yc_c00362{bottom:813.705000px;}
.y8_c00362{bottom:888.451500px;}
.y6_c00362{bottom:963.151500px;}
.y4_c00362{bottom:1037.851500px;}
.y2_c00362{bottom:1112.551500px;}
.h6_c00362{height:39.339887px;}
.h13_c00362{height:44.149219px;}
.hf_c00362{height:45.000000px;}
.h4_c00362{height:48.224531px;}
.h2_c00362{height:48.256875px;}
.h11_c00362{height:59.579850px;}
.h12_c00362{height:59.580450px;}
.h10_c00362{height:59.616750px;}
.hc_c00362{height:60.300000px;}
.hd_c00362{height:60.336900px;}
.he_c00362{height:60.479850px;}
.h5_c00362{height:73.978650px;}
.ha_c00362{height:73.979850px;}
.h9_c00362{height:74.015700px;}
.hb_c00362{height:74.159700px;}
.h3_c00362{height:85.715100px;}
.h7_c00362{height:148.678650px;}
.h8_c00362{height:223.410000px;}
.h0_c00362{height:1262.879850px;}
.h1_c00362{height:1263.000000px;}
.w4_c00362{width:116.496750px;}
.w3_c00362{width:133.740300px;}
.w6_c00362{width:250.950000px;}
.w5_c00362{width:441.795000px;}
.w7_c00362{width:442.155000px;}
.w2_c00362{width:693.465000px;}
.w0_c00362{width:892.979850px;}
.w1_c00362{width:893.250000px;}
.x0_c00362{left:0.000000px;}
.x3_c00362{left:4.853250px;}
.x1_c00362{left:148.896750px;}
.x2_c00362{left:161.498250px;}
.x7_c00362{left:198.398250px;}
.x6_c00362{left:220.890000px;}
.x4_c00362{left:283.350000px;}
.x5_c00362{left:400.575000px;}
@media print{
.v0_c00362{vertical-align:0.000000pt;}
.ls2_c00362{letter-spacing:0.000000pt;}
.ls0_c00362{letter-spacing:0.189037pt;}
.ls1_c00362{letter-spacing:0.301570pt;}
.ws0_c00362{word-spacing:-13.344015pt;}
.ws1_c00362{word-spacing:0.000000pt;}
._2_c00362{margin-left:-1.097138pt;}
._3_c00362{width:1.020573pt;}
._1_c00362{width:886.721749pt;}
._0_c00362{width:1196.429824pt;}
.fs1_c00362{font-size:48.000053pt;}
.fs0_c00362{font-size:58.880000pt;}
.y0_c00362{bottom:0.000000pt;}
.y1b_c00362{bottom:15.680000pt;}
.y19_c00362{bottom:15.680133pt;}
.yf_c00362{bottom:21.601067pt;}
.y20_c00362{bottom:22.080000pt;}
.y23_c00362{bottom:22.080267pt;}
.y13_c00362{bottom:22.400000pt;}
.y17_c00362{bottom:22.560000pt;}
.y15_c00362{bottom:22.586667pt;}
.y5_c00362{bottom:28.638667pt;}
.yd_c00362{bottom:28.640000pt;}
.y18_c00362{bottom:29.440000pt;}
.y3_c00362{bottom:32.826667pt;}
.ye_c00362{bottom:35.521333pt;}
.y11_c00362{bottom:36.160000pt;}
.y1_c00362{bottom:50.272400pt;}
.yb_c00362{bottom:88.000133pt;}
.y24_c00362{bottom:89.312533pt;}
.ya_c00362{bottom:101.960000pt;}
.y22_c00362{bottom:103.872400pt;}
.y7_c00362{bottom:120.960000pt;}
.y21_c00362{bottom:157.466667pt;}
.y1f_c00362{bottom:211.066667pt;}
.y1e_c00362{bottom:264.706667pt;}
.y1d_c00362{bottom:305.346667pt;}
.y1c_c00362{bottom:345.986667pt;}
.y1a_c00362{bottom:386.626667pt;}
.y16_c00362{bottom:427.266667pt;}
.y14_c00362{bottom:481.666667pt;}
.y12_c00362{bottom:536.093333pt;}
.y10_c00362{bottom:590.333333pt;}
.y9_c00362{bottom:656.893333pt;}
.yc_c00362{bottom:723.293333pt;}
.y8_c00362{bottom:789.734667pt;}
.y6_c00362{bottom:856.134667pt;}
.y4_c00362{bottom:922.534667pt;}
.y2_c00362{bottom:988.934667pt;}
.h6_c00362{height:34.968789pt;}
.h13_c00362{height:39.243750pt;}
.hf_c00362{height:40.000000pt;}
.h4_c00362{height:42.866250pt;}
.h2_c00362{height:42.895000pt;}
.h11_c00362{height:52.959867pt;}
.h12_c00362{height:52.960400pt;}
.h10_c00362{height:52.992667pt;}
.hc_c00362{height:53.600000pt;}
.hd_c00362{height:53.632800pt;}
.he_c00362{height:53.759867pt;}
.h5_c00362{height:65.758800pt;}
.ha_c00362{height:65.759867pt;}
.h9_c00362{height:65.791733pt;}
.hb_c00362{height:65.919733pt;}
.h3_c00362{height:76.191200pt;}
.h7_c00362{height:132.158800pt;}
.h8_c00362{height:198.586667pt;}
.h0_c00362{height:1122.559867pt;}
.h1_c00362{height:1122.666667pt;}
.w4_c00362{width:103.552667pt;}
.w3_c00362{width:118.880267pt;}
.w6_c00362{width:223.066667pt;}
.w5_c00362{width:392.706667pt;}
.w7_c00362{width:393.026667pt;}
.w2_c00362{width:616.413333pt;}
.w0_c00362{width:793.759867pt;}
.w1_c00362{width:794.000000pt;}
.x0_c00362{left:0.000000pt;}
.x3_c00362{left:4.314000pt;}
.x1_c00362{left:132.352667pt;}
.x2_c00362{left:143.554000pt;}
.x7_c00362{left:176.354000pt;}
.x6_c00362{left:196.346667pt;}
.x4_c00362{left:251.866667pt;}
.x5_c00362{left:356.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_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_b4afbce4f73be568c8a71d8a.woff2')format("woff");}.ff1_c00363{font-family:ff1_c00363;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00363;src:url('chunks/assets/font_878ab9264c68eeb4ba57873c.woff2')format("woff");}.ff2_c00363{font-family:ff2_c00363;line-height:0.938965;font-style:normal;font-weight:normal;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_4d394fd834fdb720c7b136ad.woff2')format("woff");}.ff3_c00363{font-family:ff3_c00363;line-height:0.925293;font-style:normal;font-weight:normal;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_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff4_c00363{font-family:ff4_c00363;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00363{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00363{vertical-align:0.000000px;}
.ls1_c00363{letter-spacing:0.000000px;}
.ls0_c00363{letter-spacing:0.215007px;}
.sc__c00363{text-shadow:none;}
.sc0_c00363{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00363{-webkit-text-stroke:0px transparent;}
.sc0_c00363{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00363{word-spacing:-15.012017px;}
.ws1_c00363{word-spacing:0.000000px;}
._2_c00363{margin-left:-1.234280px;}
._3_c00363{width:1.035645px;}
._1_c00363{width:997.561968px;}
._0_c00363{width:1345.983552px;}
.fc0_c00363{color:rgb(0,0,0);}
.fs1_c00363{font-size:54.000060px;}
.fs0_c00363{font-size:66.240000px;}
.y0_c00363{bottom:0.000000px;}
.y1b_c00363{bottom:17.640000px;}
.yf_c00363{bottom:24.300150px;}
.y11_c00363{bottom:24.301200px;}
.y20_c00363{bottom:24.840000px;}
.y23_c00363{bottom:24.840300px;}
.y15_c00363{bottom:25.200000px;}
.y19_c00363{bottom:25.380000px;}
.y17_c00363{bottom:25.410000px;}
.y5_c00363{bottom:32.218500px;}
.yd_c00363{bottom:32.220000px;}
.y3_c00363{bottom:36.930000px;}
.y10_c00363{bottom:39.961500px;}
.ye_c00363{bottom:40.005000px;}
.y13_c00363{bottom:40.680000px;}
.y1_c00363{bottom:56.556450px;}
.yb_c00363{bottom:99.000150px;}
.y24_c00363{bottom:100.476600px;}
.ya_c00363{bottom:114.705000px;}
.y22_c00363{bottom:116.856450px;}
.y7_c00363{bottom:136.080000px;}
.y21_c00363{bottom:177.150000px;}
.y1f_c00363{bottom:237.450000px;}
.y1e_c00363{bottom:297.795000px;}
.y1d_c00363{bottom:343.515000px;}
.y1c_c00363{bottom:389.235000px;}
.y1a_c00363{bottom:434.955000px;}
.y18_c00363{bottom:480.675000px;}
.y16_c00363{bottom:541.875000px;}
.y14_c00363{bottom:603.105000px;}
.y12_c00363{bottom:664.125000px;}
.y9_c00363{bottom:739.005000px;}
.yc_c00363{bottom:813.705000px;}
.y8_c00363{bottom:888.451500px;}
.y6_c00363{bottom:963.151500px;}
.y4_c00363{bottom:1037.851500px;}
.y2_c00363{bottom:1112.551500px;}
.h6_c00363{height:39.339887px;}
.hf_c00363{height:45.000000px;}
.h4_c00363{height:48.224531px;}
.h2_c00363{height:48.256875px;}
.h11_c00363{height:59.579850px;}
.h12_c00363{height:59.580450px;}
.h10_c00363{height:59.616750px;}
.hc_c00363{height:60.300000px;}
.hd_c00363{height:60.336900px;}
.he_c00363{height:60.479850px;}
.h5_c00363{height:73.978650px;}
.ha_c00363{height:73.979850px;}
.h9_c00363{height:74.015700px;}
.hb_c00363{height:74.159700px;}
.h3_c00363{height:85.715100px;}
.h7_c00363{height:148.678650px;}
.h8_c00363{height:223.410000px;}
.h0_c00363{height:1262.879850px;}
.h1_c00363{height:1263.000000px;}
.w4_c00363{width:116.496750px;}
.w3_c00363{width:133.740300px;}
.w6_c00363{width:250.950000px;}
.w5_c00363{width:441.795000px;}
.w7_c00363{width:442.155000px;}
.w2_c00363{width:693.465000px;}
.w0_c00363{width:892.979850px;}
.w1_c00363{width:893.250000px;}
.x0_c00363{left:0.000000px;}
.x3_c00363{left:4.853250px;}
.x1_c00363{left:148.896750px;}
.x2_c00363{left:171.578250px;}
.x7_c00363{left:198.398250px;}
.x6_c00363{left:220.890000px;}
.x4_c00363{left:283.350000px;}
.x5_c00363{left:400.575000px;}
@media print{
.v0_c00363{vertical-align:0.000000pt;}
.ls1_c00363{letter-spacing:0.000000pt;}
.ls0_c00363{letter-spacing:0.191117pt;}
.ws0_c00363{word-spacing:-13.344015pt;}
.ws1_c00363{word-spacing:0.000000pt;}
._2_c00363{margin-left:-1.097138pt;}
._3_c00363{width:0.920573pt;}
._1_c00363{width:886.721749pt;}
._0_c00363{width:1196.429824pt;}
.fs1_c00363{font-size:48.000053pt;}
.fs0_c00363{font-size:58.880000pt;}
.y0_c00363{bottom:0.000000pt;}
.y1b_c00363{bottom:15.680000pt;}
.yf_c00363{bottom:21.600133pt;}
.y11_c00363{bottom:21.601067pt;}
.y20_c00363{bottom:22.080000pt;}
.y23_c00363{bottom:22.080267pt;}
.y15_c00363{bottom:22.400000pt;}
.y19_c00363{bottom:22.560000pt;}
.y17_c00363{bottom:22.586667pt;}
.y5_c00363{bottom:28.638667pt;}
.yd_c00363{bottom:28.640000pt;}
.y3_c00363{bottom:32.826667pt;}
.y10_c00363{bottom:35.521333pt;}
.ye_c00363{bottom:35.560000pt;}
.y13_c00363{bottom:36.160000pt;}
.y1_c00363{bottom:50.272400pt;}
.yb_c00363{bottom:88.000133pt;}
.y24_c00363{bottom:89.312533pt;}
.ya_c00363{bottom:101.960000pt;}
.y22_c00363{bottom:103.872400pt;}
.y7_c00363{bottom:120.960000pt;}
.y21_c00363{bottom:157.466667pt;}
.y1f_c00363{bottom:211.066667pt;}
.y1e_c00363{bottom:264.706667pt;}
.y1d_c00363{bottom:305.346667pt;}
.y1c_c00363{bottom:345.986667pt;}
.y1a_c00363{bottom:386.626667pt;}
.y18_c00363{bottom:427.266667pt;}
.y16_c00363{bottom:481.666667pt;}
.y14_c00363{bottom:536.093333pt;}
.y12_c00363{bottom:590.333333pt;}
.y9_c00363{bottom:656.893333pt;}
.yc_c00363{bottom:723.293333pt;}
.y8_c00363{bottom:789.734667pt;}
.y6_c00363{bottom:856.134667pt;}
.y4_c00363{bottom:922.534667pt;}
.y2_c00363{bottom:988.934667pt;}
.h6_c00363{height:34.968789pt;}
.hf_c00363{height:40.000000pt;}
.h4_c00363{height:42.866250pt;}
.h2_c00363{height:42.895000pt;}
.h11_c00363{height:52.959867pt;}
.h12_c00363{height:52.960400pt;}
.h10_c00363{height:52.992667pt;}
.hc_c00363{height:53.600000pt;}
.hd_c00363{height:53.632800pt;}
.he_c00363{height:53.759867pt;}
.h5_c00363{height:65.758800pt;}
.ha_c00363{height:65.759867pt;}
.h9_c00363{height:65.791733pt;}
.hb_c00363{height:65.919733pt;}
.h3_c00363{height:76.191200pt;}
.h7_c00363{height:132.158800pt;}
.h8_c00363{height:198.586667pt;}
.h0_c00363{height:1122.559867pt;}
.h1_c00363{height:1122.666667pt;}
.w4_c00363{width:103.552667pt;}
.w3_c00363{width:118.880267pt;}
.w6_c00363{width:223.066667pt;}
.w5_c00363{width:392.706667pt;}
.w7_c00363{width:393.026667pt;}
.w2_c00363{width:616.413333pt;}
.w0_c00363{width:793.759867pt;}
.w1_c00363{width:794.000000pt;}
.x0_c00363{left:0.000000pt;}
.x3_c00363{left:4.314000pt;}
.x1_c00363{left:132.352667pt;}
.x2_c00363{left:152.514000pt;}
.x7_c00363{left:176.354000pt;}
.x6_c00363{left:196.346667pt;}
.x4_c00363{left:251.866667pt;}
.x5_c00363{left:356.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_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_b4afbce4f73be568c8a71d8a.woff2')format("woff");}.ff1_c00364{font-family:ff1_c00364;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00364;src:url('chunks/assets/font_4cd098884a0c5651ed195d8b.woff2')format("woff");}.ff2_c00364{font-family:ff2_c00364;line-height:0.938965;font-style:normal;font-weight:normal;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_4d394fd834fdb720c7b136ad.woff2')format("woff");}.ff3_c00364{font-family:ff3_c00364;line-height:0.925293;font-style:normal;font-weight:normal;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_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff4_c00364{font-family:ff4_c00364;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00364{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00364{vertical-align:0.000000px;}
.ls1_c00364{letter-spacing:0.000000px;}
.ls0_c00364{letter-spacing:0.215007px;}
.sc__c00364{text-shadow:none;}
.sc0_c00364{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00364{-webkit-text-stroke:0px transparent;}
.sc0_c00364{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00364{word-spacing:-15.012017px;}
.ws1_c00364{word-spacing:0.000000px;}
._2_c00364{margin-left:-1.234280px;}
._3_c00364{width:1.035645px;}
._1_c00364{width:997.561968px;}
._0_c00364{width:1345.983552px;}
.fc0_c00364{color:rgb(0,0,0);}
.fs1_c00364{font-size:54.000060px;}
.fs0_c00364{font-size:66.240000px;}
.y0_c00364{bottom:0.000000px;}
.y1b_c00364{bottom:17.640000px;}
.yf_c00364{bottom:24.300150px;}
.y11_c00364{bottom:24.301200px;}
.y20_c00364{bottom:24.840000px;}
.y23_c00364{bottom:24.840300px;}
.y15_c00364{bottom:25.200000px;}
.y19_c00364{bottom:25.380000px;}
.y17_c00364{bottom:25.410000px;}
.y5_c00364{bottom:32.218500px;}
.yd_c00364{bottom:32.220000px;}
.y3_c00364{bottom:36.930000px;}
.y10_c00364{bottom:39.961500px;}
.ye_c00364{bottom:40.005000px;}
.y13_c00364{bottom:40.680000px;}
.y1_c00364{bottom:56.556450px;}
.yb_c00364{bottom:99.000150px;}
.y24_c00364{bottom:100.476600px;}
.ya_c00364{bottom:114.705000px;}
.y22_c00364{bottom:116.856450px;}
.y7_c00364{bottom:136.080000px;}
.y21_c00364{bottom:177.150000px;}
.y1f_c00364{bottom:237.450000px;}
.y1e_c00364{bottom:297.795000px;}
.y1d_c00364{bottom:343.515000px;}
.y1c_c00364{bottom:389.235000px;}
.y1a_c00364{bottom:434.955000px;}
.y18_c00364{bottom:480.675000px;}
.y16_c00364{bottom:541.875000px;}
.y14_c00364{bottom:603.105000px;}
.y12_c00364{bottom:664.125000px;}
.y9_c00364{bottom:739.005000px;}
.yc_c00364{bottom:813.705000px;}
.y8_c00364{bottom:888.451500px;}
.y6_c00364{bottom:963.151500px;}
.y4_c00364{bottom:1037.851500px;}
.y2_c00364{bottom:1112.551500px;}
.h6_c00364{height:39.339887px;}
.h13_c00364{height:44.149219px;}
.hf_c00364{height:45.000000px;}
.h4_c00364{height:48.224531px;}
.h2_c00364{height:48.256875px;}
.h11_c00364{height:59.579850px;}
.h12_c00364{height:59.580450px;}
.h10_c00364{height:59.616750px;}
.hc_c00364{height:60.300000px;}
.hd_c00364{height:60.336900px;}
.he_c00364{height:60.479850px;}
.h5_c00364{height:73.978650px;}
.ha_c00364{height:73.979850px;}
.h9_c00364{height:74.015700px;}
.hb_c00364{height:74.159700px;}
.h3_c00364{height:85.715100px;}
.h7_c00364{height:148.678650px;}
.h8_c00364{height:223.410000px;}
.h0_c00364{height:1262.879850px;}
.h1_c00364{height:1263.000000px;}
.w4_c00364{width:116.496750px;}
.w3_c00364{width:133.740300px;}
.w6_c00364{width:250.950000px;}
.w5_c00364{width:441.795000px;}
.w7_c00364{width:442.155000px;}
.w2_c00364{width:693.465000px;}
.w0_c00364{width:892.979850px;}
.w1_c00364{width:893.250000px;}
.x0_c00364{left:0.000000px;}
.x3_c00364{left:4.853250px;}
.x1_c00364{left:148.896750px;}
.x2_c00364{left:171.578250px;}
.x7_c00364{left:198.398250px;}
.x6_c00364{left:220.890000px;}
.x4_c00364{left:283.350000px;}
.x5_c00364{left:400.575000px;}
@media print{
.v0_c00364{vertical-align:0.000000pt;}
.ls1_c00364{letter-spacing:0.000000pt;}
.ls0_c00364{letter-spacing:0.191117pt;}
.ws0_c00364{word-spacing:-13.344015pt;}
.ws1_c00364{word-spacing:0.000000pt;}
._2_c00364{margin-left:-1.097138pt;}
._3_c00364{width:0.920573pt;}
._1_c00364{width:886.721749pt;}
._0_c00364{width:1196.429824pt;}
.fs1_c00364{font-size:48.000053pt;}
.fs0_c00364{font-size:58.880000pt;}
.y0_c00364{bottom:0.000000pt;}
.y1b_c00364{bottom:15.680000pt;}
.yf_c00364{bottom:21.600133pt;}
.y11_c00364{bottom:21.601067pt;}
.y20_c00364{bottom:22.080000pt;}
.y23_c00364{bottom:22.080267pt;}
.y15_c00364{bottom:22.400000pt;}
.y19_c00364{bottom:22.560000pt;}
.y17_c00364{bottom:22.586667pt;}
.y5_c00364{bottom:28.638667pt;}
.yd_c00364{bottom:28.640000pt;}
.y3_c00364{bottom:32.826667pt;}
.y10_c00364{bottom:35.521333pt;}
.ye_c00364{bottom:35.560000pt;}
.y13_c00364{bottom:36.160000pt;}
.y1_c00364{bottom:50.272400pt;}
.yb_c00364{bottom:88.000133pt;}
.y24_c00364{bottom:89.312533pt;}
.ya_c00364{bottom:101.960000pt;}
.y22_c00364{bottom:103.872400pt;}
.y7_c00364{bottom:120.960000pt;}
.y21_c00364{bottom:157.466667pt;}
.y1f_c00364{bottom:211.066667pt;}
.y1e_c00364{bottom:264.706667pt;}
.y1d_c00364{bottom:305.346667pt;}
.y1c_c00364{bottom:345.986667pt;}
.y1a_c00364{bottom:386.626667pt;}
.y18_c00364{bottom:427.266667pt;}
.y16_c00364{bottom:481.666667pt;}
.y14_c00364{bottom:536.093333pt;}
.y12_c00364{bottom:590.333333pt;}
.y9_c00364{bottom:656.893333pt;}
.yc_c00364{bottom:723.293333pt;}
.y8_c00364{bottom:789.734667pt;}
.y6_c00364{bottom:856.134667pt;}
.y4_c00364{bottom:922.534667pt;}
.y2_c00364{bottom:988.934667pt;}
.h6_c00364{height:34.968789pt;}
.h13_c00364{height:39.243750pt;}
.hf_c00364{height:40.000000pt;}
.h4_c00364{height:42.866250pt;}
.h2_c00364{height:42.895000pt;}
.h11_c00364{height:52.959867pt;}
.h12_c00364{height:52.960400pt;}
.h10_c00364{height:52.992667pt;}
.hc_c00364{height:53.600000pt;}
.hd_c00364{height:53.632800pt;}
.he_c00364{height:53.759867pt;}
.h5_c00364{height:65.758800pt;}
.ha_c00364{height:65.759867pt;}
.h9_c00364{height:65.791733pt;}
.hb_c00364{height:65.919733pt;}
.h3_c00364{height:76.191200pt;}
.h7_c00364{height:132.158800pt;}
.h8_c00364{height:198.586667pt;}
.h0_c00364{height:1122.559867pt;}
.h1_c00364{height:1122.666667pt;}
.w4_c00364{width:103.552667pt;}
.w3_c00364{width:118.880267pt;}
.w6_c00364{width:223.066667pt;}
.w5_c00364{width:392.706667pt;}
.w7_c00364{width:393.026667pt;}
.w2_c00364{width:616.413333pt;}
.w0_c00364{width:793.759867pt;}
.w1_c00364{width:794.000000pt;}
.x0_c00364{left:0.000000pt;}
.x3_c00364{left:4.314000pt;}
.x1_c00364{left:132.352667pt;}
.x2_c00364{left:152.514000pt;}
.x7_c00364{left:176.354000pt;}
.x6_c00364{left:196.346667pt;}
.x4_c00364{left:251.866667pt;}
.x5_c00364{left:356.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_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_b4afbce4f73be568c8a71d8a.woff2')format("woff");}.ff1_c00365{font-family:ff1_c00365;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00365;src:url('chunks/assets/font_6cebb0831b06d30729a6f338.woff2')format("woff");}.ff2_c00365{font-family:ff2_c00365;line-height:0.938965;font-style:normal;font-weight:normal;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_4d394fd834fdb720c7b136ad.woff2')format("woff");}.ff3_c00365{font-family:ff3_c00365;line-height:0.925293;font-style:normal;font-weight:normal;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_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff4_c00365{font-family:ff4_c00365;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls2_c00365{letter-spacing:0.000000px;}
.ls0_c00365{letter-spacing:0.212667px;}
.ls1_c00365{letter-spacing:0.341607px;}
.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:-15.012017px;}
.ws1_c00365{word-spacing:0.000000px;}
._2_c00365{margin-left:-1.234280px;}
._3_c00365{width:1.035645px;}
._1_c00365{width:997.561968px;}
._0_c00365{width:1345.983552px;}
.fc0_c00365{color:rgb(0,0,0);}
.fs1_c00365{font-size:54.000060px;}
.fs0_c00365{font-size:66.240000px;}
.y0_c00365{bottom:0.000000px;}
.y1b_c00365{bottom:17.640000px;}
.yf_c00365{bottom:24.300150px;}
.y11_c00365{bottom:24.301200px;}
.y20_c00365{bottom:24.840000px;}
.y23_c00365{bottom:24.840300px;}
.y15_c00365{bottom:25.200000px;}
.y19_c00365{bottom:25.380000px;}
.y17_c00365{bottom:25.410000px;}
.y5_c00365{bottom:32.218500px;}
.yd_c00365{bottom:32.220000px;}
.y3_c00365{bottom:36.930000px;}
.y10_c00365{bottom:39.961500px;}
.ye_c00365{bottom:40.005000px;}
.y13_c00365{bottom:40.680000px;}
.y1_c00365{bottom:56.556450px;}
.yb_c00365{bottom:99.000150px;}
.y24_c00365{bottom:100.476600px;}
.ya_c00365{bottom:114.705000px;}
.y22_c00365{bottom:116.856450px;}
.y7_c00365{bottom:136.080000px;}
.y21_c00365{bottom:177.150000px;}
.y1f_c00365{bottom:237.450000px;}
.y1e_c00365{bottom:297.795000px;}
.y1d_c00365{bottom:343.515000px;}
.y1c_c00365{bottom:389.235000px;}
.y1a_c00365{bottom:434.955000px;}
.y18_c00365{bottom:480.675000px;}
.y16_c00365{bottom:541.875000px;}
.y14_c00365{bottom:603.105000px;}
.y12_c00365{bottom:664.125000px;}
.y9_c00365{bottom:739.005000px;}
.yc_c00365{bottom:813.705000px;}
.y8_c00365{bottom:888.451500px;}
.y6_c00365{bottom:963.151500px;}
.y4_c00365{bottom:1037.851500px;}
.y2_c00365{bottom:1112.551500px;}
.h6_c00365{height:39.339887px;}
.h13_c00365{height:44.149219px;}
.hf_c00365{height:45.000000px;}
.h4_c00365{height:48.224531px;}
.h2_c00365{height:48.256875px;}
.h11_c00365{height:59.579850px;}
.h12_c00365{height:59.580450px;}
.h10_c00365{height:59.616750px;}
.hc_c00365{height:60.300000px;}
.hd_c00365{height:60.336900px;}
.he_c00365{height:60.479850px;}
.h5_c00365{height:73.978650px;}
.ha_c00365{height:73.979850px;}
.h9_c00365{height:74.015700px;}
.hb_c00365{height:74.159700px;}
.h3_c00365{height:85.715100px;}
.h7_c00365{height:148.678650px;}
.h8_c00365{height:223.410000px;}
.h0_c00365{height:1262.879850px;}
.h1_c00365{height:1263.000000px;}
.w4_c00365{width:116.496750px;}
.w3_c00365{width:133.740300px;}
.w6_c00365{width:250.950000px;}
.w5_c00365{width:441.795000px;}
.w7_c00365{width:442.155000px;}
.w2_c00365{width:693.465000px;}
.w0_c00365{width:892.979850px;}
.w1_c00365{width:893.250000px;}
.x0_c00365{left:0.000000px;}
.x3_c00365{left:4.853250px;}
.x1_c00365{left:148.896750px;}
.x2_c00365{left:171.578250px;}
.x7_c00365{left:198.398250px;}
.x6_c00365{left:220.890000px;}
.x4_c00365{left:283.350000px;}
.x5_c00365{left:400.575000px;}
@media print{
.v0_c00365{vertical-align:0.000000pt;}
.ls2_c00365{letter-spacing:0.000000pt;}
.ls0_c00365{letter-spacing:0.189037pt;}
.ls1_c00365{letter-spacing:0.303650pt;}
.ws0_c00365{word-spacing:-13.344015pt;}
.ws1_c00365{word-spacing:0.000000pt;}
._2_c00365{margin-left:-1.097138pt;}
._3_c00365{width:0.920573pt;}
._1_c00365{width:886.721749pt;}
._0_c00365{width:1196.429824pt;}
.fs1_c00365{font-size:48.000053pt;}
.fs0_c00365{font-size:58.880000pt;}
.y0_c00365{bottom:0.000000pt;}
.y1b_c00365{bottom:15.680000pt;}
.yf_c00365{bottom:21.600133pt;}
.y11_c00365{bottom:21.601067pt;}
.y20_c00365{bottom:22.080000pt;}
.y23_c00365{bottom:22.080267pt;}
.y15_c00365{bottom:22.400000pt;}
.y19_c00365{bottom:22.560000pt;}
.y17_c00365{bottom:22.586667pt;}
.y5_c00365{bottom:28.638667pt;}
.yd_c00365{bottom:28.640000pt;}
.y3_c00365{bottom:32.826667pt;}
.y10_c00365{bottom:35.521333pt;}
.ye_c00365{bottom:35.560000pt;}
.y13_c00365{bottom:36.160000pt;}
.y1_c00365{bottom:50.272400pt;}
.yb_c00365{bottom:88.000133pt;}
.y24_c00365{bottom:89.312533pt;}
.ya_c00365{bottom:101.960000pt;}
.y22_c00365{bottom:103.872400pt;}
.y7_c00365{bottom:120.960000pt;}
.y21_c00365{bottom:157.466667pt;}
.y1f_c00365{bottom:211.066667pt;}
.y1e_c00365{bottom:264.706667pt;}
.y1d_c00365{bottom:305.346667pt;}
.y1c_c00365{bottom:345.986667pt;}
.y1a_c00365{bottom:386.626667pt;}
.y18_c00365{bottom:427.266667pt;}
.y16_c00365{bottom:481.666667pt;}
.y14_c00365{bottom:536.093333pt;}
.y12_c00365{bottom:590.333333pt;}
.y9_c00365{bottom:656.893333pt;}
.yc_c00365{bottom:723.293333pt;}
.y8_c00365{bottom:789.734667pt;}
.y6_c00365{bottom:856.134667pt;}
.y4_c00365{bottom:922.534667pt;}
.y2_c00365{bottom:988.934667pt;}
.h6_c00365{height:34.968789pt;}
.h13_c00365{height:39.243750pt;}
.hf_c00365{height:40.000000pt;}
.h4_c00365{height:42.866250pt;}
.h2_c00365{height:42.895000pt;}
.h11_c00365{height:52.959867pt;}
.h12_c00365{height:52.960400pt;}
.h10_c00365{height:52.992667pt;}
.hc_c00365{height:53.600000pt;}
.hd_c00365{height:53.632800pt;}
.he_c00365{height:53.759867pt;}
.h5_c00365{height:65.758800pt;}
.ha_c00365{height:65.759867pt;}
.h9_c00365{height:65.791733pt;}
.hb_c00365{height:65.919733pt;}
.h3_c00365{height:76.191200pt;}
.h7_c00365{height:132.158800pt;}
.h8_c00365{height:198.586667pt;}
.h0_c00365{height:1122.559867pt;}
.h1_c00365{height:1122.666667pt;}
.w4_c00365{width:103.552667pt;}
.w3_c00365{width:118.880267pt;}
.w6_c00365{width:223.066667pt;}
.w5_c00365{width:392.706667pt;}
.w7_c00365{width:393.026667pt;}
.w2_c00365{width:616.413333pt;}
.w0_c00365{width:793.759867pt;}
.w1_c00365{width:794.000000pt;}
.x0_c00365{left:0.000000pt;}
.x3_c00365{left:4.314000pt;}
.x1_c00365{left:132.352667pt;}
.x2_c00365{left:152.514000pt;}
.x7_c00365{left:176.354000pt;}
.x6_c00365{left:196.346667pt;}
.x4_c00365{left:251.866667pt;}
.x5_c00365{left:356.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_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_b4afbce4f73be568c8a71d8a.woff2')format("woff");}.ff1_c00366{font-family:ff1_c00366;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00366;src:url('chunks/assets/font_9f74d6a81ddbcc116ac6a256.woff2')format("woff");}.ff2_c00366{font-family:ff2_c00366;line-height:0.938965;font-style:normal;font-weight:normal;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_4d394fd834fdb720c7b136ad.woff2')format("woff");}.ff3_c00366{font-family:ff3_c00366;line-height:0.925293;font-style:normal;font-weight:normal;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_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff4_c00366{font-family:ff4_c00366;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls2_c00366{letter-spacing:0.000000px;}
.ls0_c00366{letter-spacing:0.212667px;}
.ls1_c00366{letter-spacing:0.341607px;}
.sc__c00366{text-shadow:none;}
.sc0_c00366{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00366{-webkit-text-stroke:0px transparent;}
.sc0_c00366{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00366{word-spacing:-15.012017px;}
.ws1_c00366{word-spacing:0.000000px;}
._2_c00366{margin-left:-1.234280px;}
._3_c00366{width:1.035645px;}
._1_c00366{width:997.561968px;}
._0_c00366{width:1345.983552px;}
.fc0_c00366{color:rgb(0,0,0);}
.fs1_c00366{font-size:54.000060px;}
.fs0_c00366{font-size:66.240000px;}
.y0_c00366{bottom:0.000000px;}
.y1b_c00366{bottom:17.640000px;}
.yf_c00366{bottom:24.300150px;}
.y11_c00366{bottom:24.301200px;}
.y20_c00366{bottom:24.840000px;}
.y23_c00366{bottom:24.840300px;}
.y15_c00366{bottom:25.200000px;}
.y19_c00366{bottom:25.380000px;}
.y17_c00366{bottom:25.410000px;}
.y5_c00366{bottom:32.218500px;}
.yd_c00366{bottom:32.220000px;}
.y3_c00366{bottom:36.930000px;}
.y10_c00366{bottom:39.961500px;}
.ye_c00366{bottom:40.005000px;}
.y13_c00366{bottom:40.680000px;}
.y1_c00366{bottom:56.556450px;}
.yb_c00366{bottom:99.000150px;}
.y24_c00366{bottom:100.476600px;}
.ya_c00366{bottom:114.705000px;}
.y22_c00366{bottom:116.856450px;}
.y7_c00366{bottom:136.080000px;}
.y21_c00366{bottom:177.150000px;}
.y1f_c00366{bottom:237.450000px;}
.y1e_c00366{bottom:297.795000px;}
.y1d_c00366{bottom:343.515000px;}
.y1c_c00366{bottom:389.235000px;}
.y1a_c00366{bottom:434.955000px;}
.y18_c00366{bottom:480.675000px;}
.y16_c00366{bottom:541.875000px;}
.y14_c00366{bottom:603.105000px;}
.y12_c00366{bottom:664.125000px;}
.y9_c00366{bottom:739.005000px;}
.yc_c00366{bottom:813.705000px;}
.y8_c00366{bottom:888.451500px;}
.y6_c00366{bottom:963.151500px;}
.y4_c00366{bottom:1037.851500px;}
.y2_c00366{bottom:1112.551500px;}
.h6_c00366{height:39.339887px;}
.h13_c00366{height:44.149219px;}
.hf_c00366{height:45.000000px;}
.h4_c00366{height:48.224531px;}
.h2_c00366{height:48.256875px;}
.h11_c00366{height:59.579850px;}
.h12_c00366{height:59.580450px;}
.h10_c00366{height:59.616750px;}
.hc_c00366{height:60.300000px;}
.hd_c00366{height:60.336900px;}
.he_c00366{height:60.479850px;}
.h5_c00366{height:73.978650px;}
.ha_c00366{height:73.979850px;}
.h9_c00366{height:74.015700px;}
.hb_c00366{height:74.159700px;}
.h3_c00366{height:85.715100px;}
.h7_c00366{height:148.678650px;}
.h8_c00366{height:223.410000px;}
.h0_c00366{height:1262.879850px;}
.h1_c00366{height:1263.000000px;}
.w4_c00366{width:116.496750px;}
.w3_c00366{width:133.740300px;}
.w6_c00366{width:250.950000px;}
.w5_c00366{width:441.795000px;}
.w7_c00366{width:442.155000px;}
.w2_c00366{width:693.465000px;}
.w0_c00366{width:892.979850px;}
.w1_c00366{width:893.250000px;}
.x0_c00366{left:0.000000px;}
.x3_c00366{left:4.853250px;}
.x1_c00366{left:148.896750px;}
.x2_c00366{left:171.578250px;}
.x7_c00366{left:198.398250px;}
.x6_c00366{left:220.890000px;}
.x4_c00366{left:283.350000px;}
.x5_c00366{left:400.575000px;}
@media print{
.v0_c00366{vertical-align:0.000000pt;}
.ls2_c00366{letter-spacing:0.000000pt;}
.ls0_c00366{letter-spacing:0.189037pt;}
.ls1_c00366{letter-spacing:0.303650pt;}
.ws0_c00366{word-spacing:-13.344015pt;}
.ws1_c00366{word-spacing:0.000000pt;}
._2_c00366{margin-left:-1.097138pt;}
._3_c00366{width:0.920573pt;}
._1_c00366{width:886.721749pt;}
._0_c00366{width:1196.429824pt;}
.fs1_c00366{font-size:48.000053pt;}
.fs0_c00366{font-size:58.880000pt;}
.y0_c00366{bottom:0.000000pt;}
.y1b_c00366{bottom:15.680000pt;}
.yf_c00366{bottom:21.600133pt;}
.y11_c00366{bottom:21.601067pt;}
.y20_c00366{bottom:22.080000pt;}
.y23_c00366{bottom:22.080267pt;}
.y15_c00366{bottom:22.400000pt;}
.y19_c00366{bottom:22.560000pt;}
.y17_c00366{bottom:22.586667pt;}
.y5_c00366{bottom:28.638667pt;}
.yd_c00366{bottom:28.640000pt;}
.y3_c00366{bottom:32.826667pt;}
.y10_c00366{bottom:35.521333pt;}
.ye_c00366{bottom:35.560000pt;}
.y13_c00366{bottom:36.160000pt;}
.y1_c00366{bottom:50.272400pt;}
.yb_c00366{bottom:88.000133pt;}
.y24_c00366{bottom:89.312533pt;}
.ya_c00366{bottom:101.960000pt;}
.y22_c00366{bottom:103.872400pt;}
.y7_c00366{bottom:120.960000pt;}
.y21_c00366{bottom:157.466667pt;}
.y1f_c00366{bottom:211.066667pt;}
.y1e_c00366{bottom:264.706667pt;}
.y1d_c00366{bottom:305.346667pt;}
.y1c_c00366{bottom:345.986667pt;}
.y1a_c00366{bottom:386.626667pt;}
.y18_c00366{bottom:427.266667pt;}
.y16_c00366{bottom:481.666667pt;}
.y14_c00366{bottom:536.093333pt;}
.y12_c00366{bottom:590.333333pt;}
.y9_c00366{bottom:656.893333pt;}
.yc_c00366{bottom:723.293333pt;}
.y8_c00366{bottom:789.734667pt;}
.y6_c00366{bottom:856.134667pt;}
.y4_c00366{bottom:922.534667pt;}
.y2_c00366{bottom:988.934667pt;}
.h6_c00366{height:34.968789pt;}
.h13_c00366{height:39.243750pt;}
.hf_c00366{height:40.000000pt;}
.h4_c00366{height:42.866250pt;}
.h2_c00366{height:42.895000pt;}
.h11_c00366{height:52.959867pt;}
.h12_c00366{height:52.960400pt;}
.h10_c00366{height:52.992667pt;}
.hc_c00366{height:53.600000pt;}
.hd_c00366{height:53.632800pt;}
.he_c00366{height:53.759867pt;}
.h5_c00366{height:65.758800pt;}
.ha_c00366{height:65.759867pt;}
.h9_c00366{height:65.791733pt;}
.hb_c00366{height:65.919733pt;}
.h3_c00366{height:76.191200pt;}
.h7_c00366{height:132.158800pt;}
.h8_c00366{height:198.586667pt;}
.h0_c00366{height:1122.559867pt;}
.h1_c00366{height:1122.666667pt;}
.w4_c00366{width:103.552667pt;}
.w3_c00366{width:118.880267pt;}
.w6_c00366{width:223.066667pt;}
.w5_c00366{width:392.706667pt;}
.w7_c00366{width:393.026667pt;}
.w2_c00366{width:616.413333pt;}
.w0_c00366{width:793.759867pt;}
.w1_c00366{width:794.000000pt;}
.x0_c00366{left:0.000000pt;}
.x3_c00366{left:4.314000pt;}
.x1_c00366{left:132.352667pt;}
.x2_c00366{left:152.514000pt;}
.x7_c00366{left:176.354000pt;}
.x6_c00366{left:196.346667pt;}
.x4_c00366{left:251.866667pt;}
.x5_c00366{left:356.066667pt;}
}





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

.ir_c00367:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00367{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00367;src:url('chunks/assets/font_b4afbce4f73be568c8a71d8a.woff2')format("woff");}.ff1_c00367{font-family:ff1_c00367;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00367;src:url('chunks/assets/font_bf8eb73d7f7c0487f4aee66e.woff2')format("woff");}.ff2_c00367{font-family:ff2_c00367;line-height:0.938965;font-style:normal;font-weight:normal;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_4d394fd834fdb720c7b136ad.woff2')format("woff");}.ff3_c00367{font-family:ff3_c00367;line-height:0.925293;font-style:normal;font-weight:normal;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_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff4_c00367{font-family:ff4_c00367;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00367{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00367{vertical-align:0.000000px;}
.ls1_c00367{letter-spacing:0.000000px;}
.ls0_c00367{letter-spacing:0.217347px;}
.sc__c00367{text-shadow:none;}
.sc0_c00367{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00367{-webkit-text-stroke:0px transparent;}
.sc0_c00367{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00367{word-spacing:-15.012017px;}
.ws1_c00367{word-spacing:0.000000px;}
._2_c00367{margin-left:-1.234280px;}
._3_c00367{width:1.035645px;}
._1_c00367{width:997.561968px;}
._0_c00367{width:1345.983552px;}
.fc0_c00367{color:rgb(0,0,0);}
.fs1_c00367{font-size:54.000060px;}
.fs0_c00367{font-size:66.240000px;}
.y0_c00367{bottom:0.000000px;}
.y1b_c00367{bottom:17.640000px;}
.yf_c00367{bottom:24.300150px;}
.y11_c00367{bottom:24.301200px;}
.y20_c00367{bottom:24.840000px;}
.y23_c00367{bottom:24.840300px;}
.y15_c00367{bottom:25.200000px;}
.y19_c00367{bottom:25.380000px;}
.y17_c00367{bottom:25.410000px;}
.y5_c00367{bottom:32.218500px;}
.yd_c00367{bottom:32.220000px;}
.y3_c00367{bottom:36.930000px;}
.y10_c00367{bottom:39.961500px;}
.ye_c00367{bottom:40.005000px;}
.y13_c00367{bottom:40.680000px;}
.y1_c00367{bottom:56.556450px;}
.yb_c00367{bottom:99.000150px;}
.y24_c00367{bottom:100.476600px;}
.ya_c00367{bottom:114.705000px;}
.y22_c00367{bottom:116.856450px;}
.y7_c00367{bottom:136.080000px;}
.y21_c00367{bottom:177.150000px;}
.y1f_c00367{bottom:237.450000px;}
.y1e_c00367{bottom:297.795000px;}
.y1d_c00367{bottom:343.515000px;}
.y1c_c00367{bottom:389.235000px;}
.y1a_c00367{bottom:434.955000px;}
.y18_c00367{bottom:480.675000px;}
.y16_c00367{bottom:541.875000px;}
.y14_c00367{bottom:603.105000px;}
.y12_c00367{bottom:664.125000px;}
.y9_c00367{bottom:739.005000px;}
.yc_c00367{bottom:813.705000px;}
.y8_c00367{bottom:888.451500px;}
.y6_c00367{bottom:963.151500px;}
.y4_c00367{bottom:1037.851500px;}
.y2_c00367{bottom:1112.551500px;}
.h6_c00367{height:39.339887px;}
.h13_c00367{height:44.149219px;}
.hf_c00367{height:45.000000px;}
.h4_c00367{height:48.224531px;}
.h2_c00367{height:48.256875px;}
.h11_c00367{height:59.579850px;}
.h12_c00367{height:59.580450px;}
.h10_c00367{height:59.616750px;}
.hc_c00367{height:60.300000px;}
.hd_c00367{height:60.336900px;}
.he_c00367{height:60.479850px;}
.h5_c00367{height:73.978650px;}
.ha_c00367{height:73.979850px;}
.h9_c00367{height:74.015700px;}
.hb_c00367{height:74.159700px;}
.h3_c00367{height:85.715100px;}
.h7_c00367{height:148.678650px;}
.h8_c00367{height:223.410000px;}
.h0_c00367{height:1262.879850px;}
.h1_c00367{height:1263.000000px;}
.w4_c00367{width:116.496750px;}
.w3_c00367{width:133.740300px;}
.w6_c00367{width:250.950000px;}
.w5_c00367{width:441.795000px;}
.w7_c00367{width:442.155000px;}
.w2_c00367{width:693.465000px;}
.w0_c00367{width:892.979850px;}
.w1_c00367{width:893.250000px;}
.x0_c00367{left:0.000000px;}
.x3_c00367{left:4.853250px;}
.x1_c00367{left:148.896750px;}
.x2_c00367{left:171.578250px;}
.x7_c00367{left:198.398250px;}
.x6_c00367{left:220.890000px;}
.x4_c00367{left:283.350000px;}
.x5_c00367{left:400.575000px;}
@media print{
.v0_c00367{vertical-align:0.000000pt;}
.ls1_c00367{letter-spacing:0.000000pt;}
.ls0_c00367{letter-spacing:0.193197pt;}
.ws0_c00367{word-spacing:-13.344015pt;}
.ws1_c00367{word-spacing:0.000000pt;}
._2_c00367{margin-left:-1.097138pt;}
._3_c00367{width:0.920573pt;}
._1_c00367{width:886.721749pt;}
._0_c00367{width:1196.429824pt;}
.fs1_c00367{font-size:48.000053pt;}
.fs0_c00367{font-size:58.880000pt;}
.y0_c00367{bottom:0.000000pt;}
.y1b_c00367{bottom:15.680000pt;}
.yf_c00367{bottom:21.600133pt;}
.y11_c00367{bottom:21.601067pt;}
.y20_c00367{bottom:22.080000pt;}
.y23_c00367{bottom:22.080267pt;}
.y15_c00367{bottom:22.400000pt;}
.y19_c00367{bottom:22.560000pt;}
.y17_c00367{bottom:22.586667pt;}
.y5_c00367{bottom:28.638667pt;}
.yd_c00367{bottom:28.640000pt;}
.y3_c00367{bottom:32.826667pt;}
.y10_c00367{bottom:35.521333pt;}
.ye_c00367{bottom:35.560000pt;}
.y13_c00367{bottom:36.160000pt;}
.y1_c00367{bottom:50.272400pt;}
.yb_c00367{bottom:88.000133pt;}
.y24_c00367{bottom:89.312533pt;}
.ya_c00367{bottom:101.960000pt;}
.y22_c00367{bottom:103.872400pt;}
.y7_c00367{bottom:120.960000pt;}
.y21_c00367{bottom:157.466667pt;}
.y1f_c00367{bottom:211.066667pt;}
.y1e_c00367{bottom:264.706667pt;}
.y1d_c00367{bottom:305.346667pt;}
.y1c_c00367{bottom:345.986667pt;}
.y1a_c00367{bottom:386.626667pt;}
.y18_c00367{bottom:427.266667pt;}
.y16_c00367{bottom:481.666667pt;}
.y14_c00367{bottom:536.093333pt;}
.y12_c00367{bottom:590.333333pt;}
.y9_c00367{bottom:656.893333pt;}
.yc_c00367{bottom:723.293333pt;}
.y8_c00367{bottom:789.734667pt;}
.y6_c00367{bottom:856.134667pt;}
.y4_c00367{bottom:922.534667pt;}
.y2_c00367{bottom:988.934667pt;}
.h6_c00367{height:34.968789pt;}
.h13_c00367{height:39.243750pt;}
.hf_c00367{height:40.000000pt;}
.h4_c00367{height:42.866250pt;}
.h2_c00367{height:42.895000pt;}
.h11_c00367{height:52.959867pt;}
.h12_c00367{height:52.960400pt;}
.h10_c00367{height:52.992667pt;}
.hc_c00367{height:53.600000pt;}
.hd_c00367{height:53.632800pt;}
.he_c00367{height:53.759867pt;}
.h5_c00367{height:65.758800pt;}
.ha_c00367{height:65.759867pt;}
.h9_c00367{height:65.791733pt;}
.hb_c00367{height:65.919733pt;}
.h3_c00367{height:76.191200pt;}
.h7_c00367{height:132.158800pt;}
.h8_c00367{height:198.586667pt;}
.h0_c00367{height:1122.559867pt;}
.h1_c00367{height:1122.666667pt;}
.w4_c00367{width:103.552667pt;}
.w3_c00367{width:118.880267pt;}
.w6_c00367{width:223.066667pt;}
.w5_c00367{width:392.706667pt;}
.w7_c00367{width:393.026667pt;}
.w2_c00367{width:616.413333pt;}
.w0_c00367{width:793.759867pt;}
.w1_c00367{width:794.000000pt;}
.x0_c00367{left:0.000000pt;}
.x3_c00367{left:4.314000pt;}
.x1_c00367{left:132.352667pt;}
.x2_c00367{left:152.514000pt;}
.x7_c00367{left:176.354000pt;}
.x6_c00367{left:196.346667pt;}
.x4_c00367{left:251.866667pt;}
.x5_c00367{left:356.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_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_b4afbce4f73be568c8a71d8a.woff2')format("woff");}.ff1_c00368{font-family:ff1_c00368;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00368;src:url('chunks/assets/font_711c652fa5a0f2739fcde450.woff2')format("woff");}.ff2_c00368{font-family:ff2_c00368;line-height:0.938965;font-style:normal;font-weight:normal;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_4d394fd834fdb720c7b136ad.woff2')format("woff");}.ff3_c00368{font-family:ff3_c00368;line-height:0.925293;font-style:normal;font-weight:normal;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_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff4_c00368{font-family:ff4_c00368;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00368{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00368{vertical-align:0.000000px;}
.ls1_c00368{letter-spacing:0.000000px;}
.ls0_c00368{letter-spacing:0.217347px;}
.sc__c00368{text-shadow:none;}
.sc0_c00368{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00368{-webkit-text-stroke:0px transparent;}
.sc0_c00368{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00368{word-spacing:-15.012017px;}
.ws1_c00368{word-spacing:0.000000px;}
._2_c00368{margin-left:-1.234280px;}
._3_c00368{width:1.035645px;}
._1_c00368{width:997.561968px;}
._0_c00368{width:1345.983552px;}
.fc0_c00368{color:rgb(0,0,0);}
.fs1_c00368{font-size:54.000060px;}
.fs0_c00368{font-size:66.240000px;}
.y0_c00368{bottom:0.000000px;}
.y1b_c00368{bottom:17.640000px;}
.yf_c00368{bottom:24.300150px;}
.y11_c00368{bottom:24.301200px;}
.y20_c00368{bottom:24.840000px;}
.y23_c00368{bottom:24.840300px;}
.y15_c00368{bottom:25.200000px;}
.y19_c00368{bottom:25.380000px;}
.y17_c00368{bottom:25.410000px;}
.y5_c00368{bottom:32.218500px;}
.yd_c00368{bottom:32.220000px;}
.y3_c00368{bottom:36.930000px;}
.y10_c00368{bottom:39.961500px;}
.ye_c00368{bottom:40.005000px;}
.y13_c00368{bottom:40.680000px;}
.y1_c00368{bottom:56.556450px;}
.yb_c00368{bottom:99.000150px;}
.y24_c00368{bottom:100.476600px;}
.ya_c00368{bottom:114.705000px;}
.y22_c00368{bottom:116.856450px;}
.y7_c00368{bottom:136.080000px;}
.y21_c00368{bottom:177.150000px;}
.y1f_c00368{bottom:237.450000px;}
.y1e_c00368{bottom:297.795000px;}
.y1d_c00368{bottom:343.515000px;}
.y1c_c00368{bottom:389.235000px;}
.y1a_c00368{bottom:434.955000px;}
.y18_c00368{bottom:480.675000px;}
.y16_c00368{bottom:541.875000px;}
.y14_c00368{bottom:603.105000px;}
.y12_c00368{bottom:664.125000px;}
.y9_c00368{bottom:739.005000px;}
.yc_c00368{bottom:813.705000px;}
.y8_c00368{bottom:888.451500px;}
.y6_c00368{bottom:963.151500px;}
.y4_c00368{bottom:1037.851500px;}
.y2_c00368{bottom:1112.551500px;}
.h6_c00368{height:39.339887px;}
.h13_c00368{height:44.149219px;}
.hf_c00368{height:45.000000px;}
.h4_c00368{height:48.224531px;}
.h2_c00368{height:48.256875px;}
.h11_c00368{height:59.579850px;}
.h12_c00368{height:59.580450px;}
.h10_c00368{height:59.616750px;}
.hc_c00368{height:60.300000px;}
.hd_c00368{height:60.336900px;}
.he_c00368{height:60.479850px;}
.h5_c00368{height:73.978650px;}
.ha_c00368{height:73.979850px;}
.h9_c00368{height:74.015700px;}
.hb_c00368{height:74.159700px;}
.h3_c00368{height:85.715100px;}
.h7_c00368{height:148.678650px;}
.h8_c00368{height:223.410000px;}
.h0_c00368{height:1262.879850px;}
.h1_c00368{height:1263.000000px;}
.w4_c00368{width:116.496750px;}
.w3_c00368{width:133.740300px;}
.w6_c00368{width:250.950000px;}
.w5_c00368{width:441.795000px;}
.w7_c00368{width:442.155000px;}
.w2_c00368{width:693.465000px;}
.w0_c00368{width:892.979850px;}
.w1_c00368{width:893.250000px;}
.x0_c00368{left:0.000000px;}
.x3_c00368{left:4.853250px;}
.x1_c00368{left:148.896750px;}
.x2_c00368{left:171.578250px;}
.x7_c00368{left:198.398250px;}
.x6_c00368{left:220.890000px;}
.x4_c00368{left:283.350000px;}
.x5_c00368{left:400.575000px;}
@media print{
.v0_c00368{vertical-align:0.000000pt;}
.ls1_c00368{letter-spacing:0.000000pt;}
.ls0_c00368{letter-spacing:0.193197pt;}
.ws0_c00368{word-spacing:-13.344015pt;}
.ws1_c00368{word-spacing:0.000000pt;}
._2_c00368{margin-left:-1.097138pt;}
._3_c00368{width:0.920573pt;}
._1_c00368{width:886.721749pt;}
._0_c00368{width:1196.429824pt;}
.fs1_c00368{font-size:48.000053pt;}
.fs0_c00368{font-size:58.880000pt;}
.y0_c00368{bottom:0.000000pt;}
.y1b_c00368{bottom:15.680000pt;}
.yf_c00368{bottom:21.600133pt;}
.y11_c00368{bottom:21.601067pt;}
.y20_c00368{bottom:22.080000pt;}
.y23_c00368{bottom:22.080267pt;}
.y15_c00368{bottom:22.400000pt;}
.y19_c00368{bottom:22.560000pt;}
.y17_c00368{bottom:22.586667pt;}
.y5_c00368{bottom:28.638667pt;}
.yd_c00368{bottom:28.640000pt;}
.y3_c00368{bottom:32.826667pt;}
.y10_c00368{bottom:35.521333pt;}
.ye_c00368{bottom:35.560000pt;}
.y13_c00368{bottom:36.160000pt;}
.y1_c00368{bottom:50.272400pt;}
.yb_c00368{bottom:88.000133pt;}
.y24_c00368{bottom:89.312533pt;}
.ya_c00368{bottom:101.960000pt;}
.y22_c00368{bottom:103.872400pt;}
.y7_c00368{bottom:120.960000pt;}
.y21_c00368{bottom:157.466667pt;}
.y1f_c00368{bottom:211.066667pt;}
.y1e_c00368{bottom:264.706667pt;}
.y1d_c00368{bottom:305.346667pt;}
.y1c_c00368{bottom:345.986667pt;}
.y1a_c00368{bottom:386.626667pt;}
.y18_c00368{bottom:427.266667pt;}
.y16_c00368{bottom:481.666667pt;}
.y14_c00368{bottom:536.093333pt;}
.y12_c00368{bottom:590.333333pt;}
.y9_c00368{bottom:656.893333pt;}
.yc_c00368{bottom:723.293333pt;}
.y8_c00368{bottom:789.734667pt;}
.y6_c00368{bottom:856.134667pt;}
.y4_c00368{bottom:922.534667pt;}
.y2_c00368{bottom:988.934667pt;}
.h6_c00368{height:34.968789pt;}
.h13_c00368{height:39.243750pt;}
.hf_c00368{height:40.000000pt;}
.h4_c00368{height:42.866250pt;}
.h2_c00368{height:42.895000pt;}
.h11_c00368{height:52.959867pt;}
.h12_c00368{height:52.960400pt;}
.h10_c00368{height:52.992667pt;}
.hc_c00368{height:53.600000pt;}
.hd_c00368{height:53.632800pt;}
.he_c00368{height:53.759867pt;}
.h5_c00368{height:65.758800pt;}
.ha_c00368{height:65.759867pt;}
.h9_c00368{height:65.791733pt;}
.hb_c00368{height:65.919733pt;}
.h3_c00368{height:76.191200pt;}
.h7_c00368{height:132.158800pt;}
.h8_c00368{height:198.586667pt;}
.h0_c00368{height:1122.559867pt;}
.h1_c00368{height:1122.666667pt;}
.w4_c00368{width:103.552667pt;}
.w3_c00368{width:118.880267pt;}
.w6_c00368{width:223.066667pt;}
.w5_c00368{width:392.706667pt;}
.w7_c00368{width:393.026667pt;}
.w2_c00368{width:616.413333pt;}
.w0_c00368{width:793.759867pt;}
.w1_c00368{width:794.000000pt;}
.x0_c00368{left:0.000000pt;}
.x3_c00368{left:4.314000pt;}
.x1_c00368{left:132.352667pt;}
.x2_c00368{left:152.514000pt;}
.x7_c00368{left:176.354000pt;}
.x6_c00368{left:196.346667pt;}
.x4_c00368{left:251.866667pt;}
.x5_c00368{left:356.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_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_b4afbce4f73be568c8a71d8a.woff2')format("woff");}.ff1_c00369{font-family:ff1_c00369;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00369;src:url('chunks/assets/font_12aa5136b1d56e7682785ff3.woff2')format("woff");}.ff2_c00369{font-family:ff2_c00369;line-height:0.938965;font-style:normal;font-weight:normal;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_0a28ff37f8cacf4c97a403b5.woff2')format("woff");}.ff3_c00369{font-family:ff3_c00369;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00369;src:url('chunks/assets/font_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff4_c00369{font-family:ff4_c00369;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00369{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00369{vertical-align:0.000000px;}
.ls1_c00369{letter-spacing:0.000000px;}
.ls0_c00369{letter-spacing:0.217347px;}
.sc__c00369{text-shadow:none;}
.sc0_c00369{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00369{-webkit-text-stroke:0px transparent;}
.sc0_c00369{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00369{word-spacing:-30.024033px;}
.ws0_c00369{word-spacing:-15.012017px;}
.ws2_c00369{word-spacing:0.000000px;}
._2_c00369{margin-left:-1.234280px;}
._3_c00369{width:1.035645px;}
._1_c00369{width:997.561968px;}
._0_c00369{width:1345.983552px;}
.fc0_c00369{color:rgb(0,0,0);}
.fs1_c00369{font-size:54.000060px;}
.fs0_c00369{font-size:66.240000px;}
.y0_c00369{bottom:0.000000px;}
.yf_c00369{bottom:16.560300px;}
.y1b_c00369{bottom:17.640000px;}
.y11_c00369{bottom:24.301200px;}
.y20_c00369{bottom:24.840000px;}
.y23_c00369{bottom:24.840300px;}
.y15_c00369{bottom:25.200000px;}
.y19_c00369{bottom:25.380000px;}
.y17_c00369{bottom:25.410000px;}
.y5_c00369{bottom:32.218500px;}
.yd_c00369{bottom:32.220000px;}
.y3_c00369{bottom:36.930000px;}
.y10_c00369{bottom:39.961500px;}
.y13_c00369{bottom:40.680000px;}
.ye_c00369{bottom:47.745000px;}
.y1_c00369{bottom:56.556450px;}
.yb_c00369{bottom:99.000150px;}
.y24_c00369{bottom:100.476600px;}
.ya_c00369{bottom:114.705000px;}
.y22_c00369{bottom:116.856450px;}
.y7_c00369{bottom:136.080000px;}
.y21_c00369{bottom:177.150000px;}
.y1f_c00369{bottom:237.450000px;}
.y1e_c00369{bottom:297.795000px;}
.y1d_c00369{bottom:343.515000px;}
.y1c_c00369{bottom:389.235000px;}
.y1a_c00369{bottom:434.955000px;}
.y18_c00369{bottom:480.675000px;}
.y16_c00369{bottom:541.875000px;}
.y14_c00369{bottom:603.105000px;}
.y12_c00369{bottom:664.125000px;}
.y9_c00369{bottom:739.005000px;}
.yc_c00369{bottom:813.705000px;}
.y8_c00369{bottom:888.451500px;}
.y6_c00369{bottom:963.151500px;}
.y4_c00369{bottom:1037.851500px;}
.y2_c00369{bottom:1112.551500px;}
.h6_c00369{height:39.339887px;}
.hf_c00369{height:45.000000px;}
.h4_c00369{height:48.224531px;}
.h2_c00369{height:48.256875px;}
.h11_c00369{height:59.579850px;}
.h12_c00369{height:59.580450px;}
.h10_c00369{height:59.616750px;}
.hc_c00369{height:60.300000px;}
.hd_c00369{height:60.336900px;}
.he_c00369{height:60.479850px;}
.h5_c00369{height:73.978650px;}
.ha_c00369{height:73.979850px;}
.h9_c00369{height:74.015700px;}
.hb_c00369{height:74.159700px;}
.h3_c00369{height:85.715100px;}
.h7_c00369{height:148.678650px;}
.h8_c00369{height:223.410000px;}
.h0_c00369{height:1262.879850px;}
.h1_c00369{height:1263.000000px;}
.w4_c00369{width:116.496750px;}
.w3_c00369{width:133.740300px;}
.w6_c00369{width:250.950000px;}
.w5_c00369{width:441.795000px;}
.w7_c00369{width:442.155000px;}
.w2_c00369{width:693.465000px;}
.w0_c00369{width:892.979850px;}
.w1_c00369{width:893.250000px;}
.x0_c00369{left:0.000000px;}
.x3_c00369{left:4.853250px;}
.x1_c00369{left:148.896750px;}
.x2_c00369{left:163.298250px;}
.x7_c00369{left:198.398250px;}
.x6_c00369{left:220.890000px;}
.x4_c00369{left:283.350000px;}
.x5_c00369{left:400.575000px;}
@media print{
.v0_c00369{vertical-align:0.000000pt;}
.ls1_c00369{letter-spacing:0.000000pt;}
.ls0_c00369{letter-spacing:0.193197pt;}
.ws1_c00369{word-spacing:-26.688030pt;}
.ws0_c00369{word-spacing:-13.344015pt;}
.ws2_c00369{word-spacing:0.000000pt;}
._2_c00369{margin-left:-1.097138pt;}
._3_c00369{width:0.920573pt;}
._1_c00369{width:886.721749pt;}
._0_c00369{width:1196.429824pt;}
.fs1_c00369{font-size:48.000053pt;}
.fs0_c00369{font-size:58.880000pt;}
.y0_c00369{bottom:0.000000pt;}
.yf_c00369{bottom:14.720267pt;}
.y1b_c00369{bottom:15.680000pt;}
.y11_c00369{bottom:21.601067pt;}
.y20_c00369{bottom:22.080000pt;}
.y23_c00369{bottom:22.080267pt;}
.y15_c00369{bottom:22.400000pt;}
.y19_c00369{bottom:22.560000pt;}
.y17_c00369{bottom:22.586667pt;}
.y5_c00369{bottom:28.638667pt;}
.yd_c00369{bottom:28.640000pt;}
.y3_c00369{bottom:32.826667pt;}
.y10_c00369{bottom:35.521333pt;}
.y13_c00369{bottom:36.160000pt;}
.ye_c00369{bottom:42.440000pt;}
.y1_c00369{bottom:50.272400pt;}
.yb_c00369{bottom:88.000133pt;}
.y24_c00369{bottom:89.312533pt;}
.ya_c00369{bottom:101.960000pt;}
.y22_c00369{bottom:103.872400pt;}
.y7_c00369{bottom:120.960000pt;}
.y21_c00369{bottom:157.466667pt;}
.y1f_c00369{bottom:211.066667pt;}
.y1e_c00369{bottom:264.706667pt;}
.y1d_c00369{bottom:305.346667pt;}
.y1c_c00369{bottom:345.986667pt;}
.y1a_c00369{bottom:386.626667pt;}
.y18_c00369{bottom:427.266667pt;}
.y16_c00369{bottom:481.666667pt;}
.y14_c00369{bottom:536.093333pt;}
.y12_c00369{bottom:590.333333pt;}
.y9_c00369{bottom:656.893333pt;}
.yc_c00369{bottom:723.293333pt;}
.y8_c00369{bottom:789.734667pt;}
.y6_c00369{bottom:856.134667pt;}
.y4_c00369{bottom:922.534667pt;}
.y2_c00369{bottom:988.934667pt;}
.h6_c00369{height:34.968789pt;}
.hf_c00369{height:40.000000pt;}
.h4_c00369{height:42.866250pt;}
.h2_c00369{height:42.895000pt;}
.h11_c00369{height:52.959867pt;}
.h12_c00369{height:52.960400pt;}
.h10_c00369{height:52.992667pt;}
.hc_c00369{height:53.600000pt;}
.hd_c00369{height:53.632800pt;}
.he_c00369{height:53.759867pt;}
.h5_c00369{height:65.758800pt;}
.ha_c00369{height:65.759867pt;}
.h9_c00369{height:65.791733pt;}
.hb_c00369{height:65.919733pt;}
.h3_c00369{height:76.191200pt;}
.h7_c00369{height:132.158800pt;}
.h8_c00369{height:198.586667pt;}
.h0_c00369{height:1122.559867pt;}
.h1_c00369{height:1122.666667pt;}
.w4_c00369{width:103.552667pt;}
.w3_c00369{width:118.880267pt;}
.w6_c00369{width:223.066667pt;}
.w5_c00369{width:392.706667pt;}
.w7_c00369{width:393.026667pt;}
.w2_c00369{width:616.413333pt;}
.w0_c00369{width:793.759867pt;}
.w1_c00369{width:794.000000pt;}
.x0_c00369{left:0.000000pt;}
.x3_c00369{left:4.314000pt;}
.x1_c00369{left:132.352667pt;}
.x2_c00369{left:145.154000pt;}
.x7_c00369{left:176.354000pt;}
.x6_c00369{left:196.346667pt;}
.x4_c00369{left:251.866667pt;}
.x5_c00369{left:356.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_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_b4afbce4f73be568c8a71d8a.woff2')format("woff");}.ff1_c00370{font-family:ff1_c00370;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00370;src:url('chunks/assets/font_ede4fd2fca26ed1a4260a65b.woff2')format("woff");}.ff2_c00370{font-family:ff2_c00370;line-height:0.938965;font-style:normal;font-weight:normal;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_0a28ff37f8cacf4c97a403b5.woff2')format("woff");}.ff3_c00370{font-family:ff3_c00370;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00370;src:url('chunks/assets/font_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff4_c00370{font-family:ff4_c00370;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00370{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00370{vertical-align:0.000000px;}
.ls1_c00370{letter-spacing:0.000000px;}
.ls0_c00370{letter-spacing:0.217347px;}
.sc__c00370{text-shadow:none;}
.sc0_c00370{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00370{-webkit-text-stroke:0px transparent;}
.sc0_c00370{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00370{word-spacing:-30.024033px;}
.ws0_c00370{word-spacing:-15.012017px;}
.ws2_c00370{word-spacing:0.000000px;}
._2_c00370{margin-left:-1.234280px;}
._3_c00370{width:1.035645px;}
._1_c00370{width:997.561968px;}
._0_c00370{width:1345.983552px;}
.fc0_c00370{color:rgb(0,0,0);}
.fs1_c00370{font-size:54.000060px;}
.fs0_c00370{font-size:66.240000px;}
.y0_c00370{bottom:0.000000px;}
.yf_c00370{bottom:16.560300px;}
.y1b_c00370{bottom:17.640000px;}
.y11_c00370{bottom:24.301200px;}
.y20_c00370{bottom:24.840000px;}
.y23_c00370{bottom:24.840300px;}
.y15_c00370{bottom:25.200000px;}
.y19_c00370{bottom:25.380000px;}
.y17_c00370{bottom:25.410000px;}
.y5_c00370{bottom:32.218500px;}
.yd_c00370{bottom:32.220000px;}
.y3_c00370{bottom:36.930000px;}
.y10_c00370{bottom:39.961500px;}
.y13_c00370{bottom:40.680000px;}
.ye_c00370{bottom:47.745000px;}
.y1_c00370{bottom:56.556450px;}
.yb_c00370{bottom:99.000150px;}
.y24_c00370{bottom:100.476600px;}
.ya_c00370{bottom:114.705000px;}
.y22_c00370{bottom:116.856450px;}
.y7_c00370{bottom:136.080000px;}
.y21_c00370{bottom:177.150000px;}
.y1f_c00370{bottom:237.450000px;}
.y1e_c00370{bottom:297.795000px;}
.y1d_c00370{bottom:343.515000px;}
.y1c_c00370{bottom:389.235000px;}
.y1a_c00370{bottom:434.955000px;}
.y18_c00370{bottom:480.675000px;}
.y16_c00370{bottom:541.875000px;}
.y14_c00370{bottom:603.105000px;}
.y12_c00370{bottom:664.125000px;}
.y9_c00370{bottom:739.005000px;}
.yc_c00370{bottom:813.705000px;}
.y8_c00370{bottom:888.451500px;}
.y6_c00370{bottom:963.151500px;}
.y4_c00370{bottom:1037.851500px;}
.y2_c00370{bottom:1112.551500px;}
.h6_c00370{height:39.339887px;}
.hf_c00370{height:45.000000px;}
.h4_c00370{height:48.224531px;}
.h2_c00370{height:48.256875px;}
.h11_c00370{height:59.579850px;}
.h12_c00370{height:59.580450px;}
.h10_c00370{height:59.616750px;}
.hc_c00370{height:60.300000px;}
.hd_c00370{height:60.336900px;}
.he_c00370{height:60.479850px;}
.h5_c00370{height:73.978650px;}
.ha_c00370{height:73.979850px;}
.h9_c00370{height:74.015700px;}
.hb_c00370{height:74.159700px;}
.h3_c00370{height:85.715100px;}
.h7_c00370{height:148.678650px;}
.h8_c00370{height:223.410000px;}
.h0_c00370{height:1262.879850px;}
.h1_c00370{height:1263.000000px;}
.w4_c00370{width:116.496750px;}
.w3_c00370{width:133.740300px;}
.w6_c00370{width:250.950000px;}
.w5_c00370{width:441.795000px;}
.w7_c00370{width:442.155000px;}
.w2_c00370{width:693.465000px;}
.w0_c00370{width:892.979850px;}
.w1_c00370{width:893.250000px;}
.x0_c00370{left:0.000000px;}
.x3_c00370{left:4.853250px;}
.x1_c00370{left:148.896750px;}
.x2_c00370{left:163.298250px;}
.x7_c00370{left:198.398250px;}
.x6_c00370{left:220.890000px;}
.x4_c00370{left:283.350000px;}
.x5_c00370{left:400.575000px;}
@media print{
.v0_c00370{vertical-align:0.000000pt;}
.ls1_c00370{letter-spacing:0.000000pt;}
.ls0_c00370{letter-spacing:0.193197pt;}
.ws1_c00370{word-spacing:-26.688030pt;}
.ws0_c00370{word-spacing:-13.344015pt;}
.ws2_c00370{word-spacing:0.000000pt;}
._2_c00370{margin-left:-1.097138pt;}
._3_c00370{width:0.920573pt;}
._1_c00370{width:886.721749pt;}
._0_c00370{width:1196.429824pt;}
.fs1_c00370{font-size:48.000053pt;}
.fs0_c00370{font-size:58.880000pt;}
.y0_c00370{bottom:0.000000pt;}
.yf_c00370{bottom:14.720267pt;}
.y1b_c00370{bottom:15.680000pt;}
.y11_c00370{bottom:21.601067pt;}
.y20_c00370{bottom:22.080000pt;}
.y23_c00370{bottom:22.080267pt;}
.y15_c00370{bottom:22.400000pt;}
.y19_c00370{bottom:22.560000pt;}
.y17_c00370{bottom:22.586667pt;}
.y5_c00370{bottom:28.638667pt;}
.yd_c00370{bottom:28.640000pt;}
.y3_c00370{bottom:32.826667pt;}
.y10_c00370{bottom:35.521333pt;}
.y13_c00370{bottom:36.160000pt;}
.ye_c00370{bottom:42.440000pt;}
.y1_c00370{bottom:50.272400pt;}
.yb_c00370{bottom:88.000133pt;}
.y24_c00370{bottom:89.312533pt;}
.ya_c00370{bottom:101.960000pt;}
.y22_c00370{bottom:103.872400pt;}
.y7_c00370{bottom:120.960000pt;}
.y21_c00370{bottom:157.466667pt;}
.y1f_c00370{bottom:211.066667pt;}
.y1e_c00370{bottom:264.706667pt;}
.y1d_c00370{bottom:305.346667pt;}
.y1c_c00370{bottom:345.986667pt;}
.y1a_c00370{bottom:386.626667pt;}
.y18_c00370{bottom:427.266667pt;}
.y16_c00370{bottom:481.666667pt;}
.y14_c00370{bottom:536.093333pt;}
.y12_c00370{bottom:590.333333pt;}
.y9_c00370{bottom:656.893333pt;}
.yc_c00370{bottom:723.293333pt;}
.y8_c00370{bottom:789.734667pt;}
.y6_c00370{bottom:856.134667pt;}
.y4_c00370{bottom:922.534667pt;}
.y2_c00370{bottom:988.934667pt;}
.h6_c00370{height:34.968789pt;}
.hf_c00370{height:40.000000pt;}
.h4_c00370{height:42.866250pt;}
.h2_c00370{height:42.895000pt;}
.h11_c00370{height:52.959867pt;}
.h12_c00370{height:52.960400pt;}
.h10_c00370{height:52.992667pt;}
.hc_c00370{height:53.600000pt;}
.hd_c00370{height:53.632800pt;}
.he_c00370{height:53.759867pt;}
.h5_c00370{height:65.758800pt;}
.ha_c00370{height:65.759867pt;}
.h9_c00370{height:65.791733pt;}
.hb_c00370{height:65.919733pt;}
.h3_c00370{height:76.191200pt;}
.h7_c00370{height:132.158800pt;}
.h8_c00370{height:198.586667pt;}
.h0_c00370{height:1122.559867pt;}
.h1_c00370{height:1122.666667pt;}
.w4_c00370{width:103.552667pt;}
.w3_c00370{width:118.880267pt;}
.w6_c00370{width:223.066667pt;}
.w5_c00370{width:392.706667pt;}
.w7_c00370{width:393.026667pt;}
.w2_c00370{width:616.413333pt;}
.w0_c00370{width:793.759867pt;}
.w1_c00370{width:794.000000pt;}
.x0_c00370{left:0.000000pt;}
.x3_c00370{left:4.314000pt;}
.x1_c00370{left:132.352667pt;}
.x2_c00370{left:145.154000pt;}
.x7_c00370{left:176.354000pt;}
.x6_c00370{left:196.346667pt;}
.x4_c00370{left:251.866667pt;}
.x5_c00370{left:356.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_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_b4afbce4f73be568c8a71d8a.woff2')format("woff");}.ff1_c00371{font-family:ff1_c00371;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00371;src:url('chunks/assets/font_6c2d343975e29ae2e9835490.woff2')format("woff");}.ff2_c00371{font-family:ff2_c00371;line-height:0.938965;font-style:normal;font-weight:normal;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_0a28ff37f8cacf4c97a403b5.woff2')format("woff");}.ff3_c00371{font-family:ff3_c00371;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00371;src:url('chunks/assets/font_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff4_c00371{font-family:ff4_c00371;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00371{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00371{vertical-align:0.000000px;}
.ls1_c00371{letter-spacing:0.000000px;}
.ls0_c00371{letter-spacing:0.217347px;}
.sc__c00371{text-shadow:none;}
.sc0_c00371{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00371{-webkit-text-stroke:0px transparent;}
.sc0_c00371{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00371{word-spacing:-30.024033px;}
.ws0_c00371{word-spacing:-15.012017px;}
.ws2_c00371{word-spacing:0.000000px;}
._2_c00371{margin-left:-1.234280px;}
._3_c00371{width:1.035645px;}
._1_c00371{width:997.561968px;}
._0_c00371{width:1345.983552px;}
.fc0_c00371{color:rgb(0,0,0);}
.fs1_c00371{font-size:54.000060px;}
.fs0_c00371{font-size:66.240000px;}
.y0_c00371{bottom:0.000000px;}
.yf_c00371{bottom:16.560300px;}
.y1b_c00371{bottom:17.640000px;}
.y11_c00371{bottom:24.301200px;}
.y20_c00371{bottom:24.840000px;}
.y23_c00371{bottom:24.840300px;}
.y15_c00371{bottom:25.200000px;}
.y19_c00371{bottom:25.380000px;}
.y17_c00371{bottom:25.410000px;}
.y5_c00371{bottom:32.218500px;}
.yd_c00371{bottom:32.220000px;}
.y10_c00371{bottom:39.961500px;}
.y13_c00371{bottom:40.680000px;}
.ye_c00371{bottom:47.745000px;}
.y1_c00371{bottom:56.556450px;}
.y7_c00371{bottom:69.478500px;}
.y3_c00371{bottom:70.230000px;}
.yb_c00371{bottom:99.000150px;}
.y24_c00371{bottom:100.476600px;}
.ya_c00371{bottom:114.705000px;}
.y22_c00371{bottom:116.856450px;}
.y21_c00371{bottom:177.150000px;}
.y1f_c00371{bottom:237.450000px;}
.y1e_c00371{bottom:297.795000px;}
.y1d_c00371{bottom:343.515000px;}
.y1c_c00371{bottom:389.235000px;}
.y1a_c00371{bottom:434.955000px;}
.y18_c00371{bottom:480.675000px;}
.y16_c00371{bottom:541.875000px;}
.y14_c00371{bottom:603.105000px;}
.y12_c00371{bottom:664.125000px;}
.y9_c00371{bottom:739.005000px;}
.yc_c00371{bottom:813.705000px;}
.y8_c00371{bottom:888.451500px;}
.y6_c00371{bottom:963.151500px;}
.y4_c00371{bottom:1037.851500px;}
.y2_c00371{bottom:1112.551500px;}
.h6_c00371{height:39.339887px;}
.hf_c00371{height:45.000000px;}
.h4_c00371{height:48.224531px;}
.h2_c00371{height:48.256875px;}
.h11_c00371{height:59.579850px;}
.h12_c00371{height:59.580450px;}
.h10_c00371{height:59.616750px;}
.hc_c00371{height:60.300000px;}
.hd_c00371{height:60.336900px;}
.he_c00371{height:60.479850px;}
.h5_c00371{height:73.978650px;}
.ha_c00371{height:73.979850px;}
.h9_c00371{height:74.015700px;}
.hb_c00371{height:74.159700px;}
.h3_c00371{height:85.715100px;}
.h7_c00371{height:148.678650px;}
.h8_c00371{height:223.410000px;}
.h0_c00371{height:1262.879850px;}
.h1_c00371{height:1263.000000px;}
.w4_c00371{width:116.496750px;}
.w3_c00371{width:133.740300px;}
.w6_c00371{width:250.950000px;}
.w5_c00371{width:441.795000px;}
.w7_c00371{width:442.155000px;}
.w2_c00371{width:693.465000px;}
.w0_c00371{width:892.979850px;}
.w1_c00371{width:893.250000px;}
.x0_c00371{left:0.000000px;}
.x3_c00371{left:4.853250px;}
.x1_c00371{left:148.896750px;}
.x2_c00371{left:163.298250px;}
.x7_c00371{left:198.398250px;}
.x6_c00371{left:220.890000px;}
.x4_c00371{left:283.350000px;}
.x5_c00371{left:400.575000px;}
@media print{
.v0_c00371{vertical-align:0.000000pt;}
.ls1_c00371{letter-spacing:0.000000pt;}
.ls0_c00371{letter-spacing:0.193197pt;}
.ws1_c00371{word-spacing:-26.688030pt;}
.ws0_c00371{word-spacing:-13.344015pt;}
.ws2_c00371{word-spacing:0.000000pt;}
._2_c00371{margin-left:-1.097138pt;}
._3_c00371{width:0.920573pt;}
._1_c00371{width:886.721749pt;}
._0_c00371{width:1196.429824pt;}
.fs1_c00371{font-size:48.000053pt;}
.fs0_c00371{font-size:58.880000pt;}
.y0_c00371{bottom:0.000000pt;}
.yf_c00371{bottom:14.720267pt;}
.y1b_c00371{bottom:15.680000pt;}
.y11_c00371{bottom:21.601067pt;}
.y20_c00371{bottom:22.080000pt;}
.y23_c00371{bottom:22.080267pt;}
.y15_c00371{bottom:22.400000pt;}
.y19_c00371{bottom:22.560000pt;}
.y17_c00371{bottom:22.586667pt;}
.y5_c00371{bottom:28.638667pt;}
.yd_c00371{bottom:28.640000pt;}
.y10_c00371{bottom:35.521333pt;}
.y13_c00371{bottom:36.160000pt;}
.ye_c00371{bottom:42.440000pt;}
.y1_c00371{bottom:50.272400pt;}
.y7_c00371{bottom:61.758667pt;}
.y3_c00371{bottom:62.426667pt;}
.yb_c00371{bottom:88.000133pt;}
.y24_c00371{bottom:89.312533pt;}
.ya_c00371{bottom:101.960000pt;}
.y22_c00371{bottom:103.872400pt;}
.y21_c00371{bottom:157.466667pt;}
.y1f_c00371{bottom:211.066667pt;}
.y1e_c00371{bottom:264.706667pt;}
.y1d_c00371{bottom:305.346667pt;}
.y1c_c00371{bottom:345.986667pt;}
.y1a_c00371{bottom:386.626667pt;}
.y18_c00371{bottom:427.266667pt;}
.y16_c00371{bottom:481.666667pt;}
.y14_c00371{bottom:536.093333pt;}
.y12_c00371{bottom:590.333333pt;}
.y9_c00371{bottom:656.893333pt;}
.yc_c00371{bottom:723.293333pt;}
.y8_c00371{bottom:789.734667pt;}
.y6_c00371{bottom:856.134667pt;}
.y4_c00371{bottom:922.534667pt;}
.y2_c00371{bottom:988.934667pt;}
.h6_c00371{height:34.968789pt;}
.hf_c00371{height:40.000000pt;}
.h4_c00371{height:42.866250pt;}
.h2_c00371{height:42.895000pt;}
.h11_c00371{height:52.959867pt;}
.h12_c00371{height:52.960400pt;}
.h10_c00371{height:52.992667pt;}
.hc_c00371{height:53.600000pt;}
.hd_c00371{height:53.632800pt;}
.he_c00371{height:53.759867pt;}
.h5_c00371{height:65.758800pt;}
.ha_c00371{height:65.759867pt;}
.h9_c00371{height:65.791733pt;}
.hb_c00371{height:65.919733pt;}
.h3_c00371{height:76.191200pt;}
.h7_c00371{height:132.158800pt;}
.h8_c00371{height:198.586667pt;}
.h0_c00371{height:1122.559867pt;}
.h1_c00371{height:1122.666667pt;}
.w4_c00371{width:103.552667pt;}
.w3_c00371{width:118.880267pt;}
.w6_c00371{width:223.066667pt;}
.w5_c00371{width:392.706667pt;}
.w7_c00371{width:393.026667pt;}
.w2_c00371{width:616.413333pt;}
.w0_c00371{width:793.759867pt;}
.w1_c00371{width:794.000000pt;}
.x0_c00371{left:0.000000pt;}
.x3_c00371{left:4.314000pt;}
.x1_c00371{left:132.352667pt;}
.x2_c00371{left:145.154000pt;}
.x7_c00371{left:176.354000pt;}
.x6_c00371{left:196.346667pt;}
.x4_c00371{left:251.866667pt;}
.x5_c00371{left:356.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_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_b4afbce4f73be568c8a71d8a.woff2')format("woff");}.ff1_c00372{font-family:ff1_c00372;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00372;src:url('chunks/assets/font_7c9330a18b264d668cf70eeb.woff2')format("woff");}.ff2_c00372{font-family:ff2_c00372;line-height:0.938965;font-style:normal;font-weight:normal;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_0a28ff37f8cacf4c97a403b5.woff2')format("woff");}.ff3_c00372{font-family:ff3_c00372;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00372;src:url('chunks/assets/font_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff4_c00372{font-family:ff4_c00372;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00372{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00372{vertical-align:0.000000px;}
.ls1_c00372{letter-spacing:0.000000px;}
.ls0_c00372{letter-spacing:0.217347px;}
.sc__c00372{text-shadow:none;}
.sc0_c00372{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00372{-webkit-text-stroke:0px transparent;}
.sc0_c00372{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00372{word-spacing:-30.024033px;}
.ws0_c00372{word-spacing:-15.012017px;}
.ws2_c00372{word-spacing:0.000000px;}
._2_c00372{margin-left:-1.234280px;}
._3_c00372{width:1.035645px;}
._1_c00372{width:997.561968px;}
._0_c00372{width:1345.983552px;}
.fc0_c00372{color:rgb(0,0,0);}
.fs1_c00372{font-size:54.000060px;}
.fs0_c00372{font-size:66.240000px;}
.y0_c00372{bottom:0.000000px;}
.yf_c00372{bottom:16.560300px;}
.y1b_c00372{bottom:17.640000px;}
.y11_c00372{bottom:24.301200px;}
.y20_c00372{bottom:24.840000px;}
.y23_c00372{bottom:24.840300px;}
.y15_c00372{bottom:25.200000px;}
.y19_c00372{bottom:25.380000px;}
.y17_c00372{bottom:25.410000px;}
.y5_c00372{bottom:32.218500px;}
.yd_c00372{bottom:32.220000px;}
.y10_c00372{bottom:39.961500px;}
.y13_c00372{bottom:40.680000px;}
.ye_c00372{bottom:47.745000px;}
.y1_c00372{bottom:56.556450px;}
.y7_c00372{bottom:69.478500px;}
.y3_c00372{bottom:70.230000px;}
.yb_c00372{bottom:99.000150px;}
.y24_c00372{bottom:100.476600px;}
.ya_c00372{bottom:114.705000px;}
.y22_c00372{bottom:116.856450px;}
.y21_c00372{bottom:177.150000px;}
.y1f_c00372{bottom:237.450000px;}
.y1e_c00372{bottom:297.795000px;}
.y1d_c00372{bottom:343.515000px;}
.y1c_c00372{bottom:389.235000px;}
.y1a_c00372{bottom:434.955000px;}
.y18_c00372{bottom:480.675000px;}
.y16_c00372{bottom:541.875000px;}
.y14_c00372{bottom:603.105000px;}
.y12_c00372{bottom:664.125000px;}
.y9_c00372{bottom:739.005000px;}
.yc_c00372{bottom:813.705000px;}
.y8_c00372{bottom:888.451500px;}
.y6_c00372{bottom:963.151500px;}
.y4_c00372{bottom:1037.851500px;}
.y2_c00372{bottom:1112.551500px;}
.h6_c00372{height:39.339887px;}
.hf_c00372{height:45.000000px;}
.h4_c00372{height:48.224531px;}
.h2_c00372{height:48.256875px;}
.h11_c00372{height:59.579850px;}
.h12_c00372{height:59.580450px;}
.h10_c00372{height:59.616750px;}
.hc_c00372{height:60.300000px;}
.hd_c00372{height:60.336900px;}
.he_c00372{height:60.479850px;}
.h5_c00372{height:73.978650px;}
.ha_c00372{height:73.979850px;}
.h9_c00372{height:74.015700px;}
.hb_c00372{height:74.159700px;}
.h3_c00372{height:85.715100px;}
.h7_c00372{height:148.678650px;}
.h8_c00372{height:223.410000px;}
.h0_c00372{height:1262.879850px;}
.h1_c00372{height:1263.000000px;}
.w4_c00372{width:116.496750px;}
.w3_c00372{width:133.740300px;}
.w6_c00372{width:250.950000px;}
.w5_c00372{width:441.795000px;}
.w7_c00372{width:442.155000px;}
.w2_c00372{width:693.465000px;}
.w0_c00372{width:892.979850px;}
.w1_c00372{width:893.250000px;}
.x0_c00372{left:0.000000px;}
.x3_c00372{left:4.853250px;}
.x1_c00372{left:148.896750px;}
.x2_c00372{left:163.298250px;}
.x7_c00372{left:198.398250px;}
.x6_c00372{left:220.890000px;}
.x4_c00372{left:283.350000px;}
.x5_c00372{left:400.575000px;}
@media print{
.v0_c00372{vertical-align:0.000000pt;}
.ls1_c00372{letter-spacing:0.000000pt;}
.ls0_c00372{letter-spacing:0.193197pt;}
.ws1_c00372{word-spacing:-26.688030pt;}
.ws0_c00372{word-spacing:-13.344015pt;}
.ws2_c00372{word-spacing:0.000000pt;}
._2_c00372{margin-left:-1.097138pt;}
._3_c00372{width:0.920573pt;}
._1_c00372{width:886.721749pt;}
._0_c00372{width:1196.429824pt;}
.fs1_c00372{font-size:48.000053pt;}
.fs0_c00372{font-size:58.880000pt;}
.y0_c00372{bottom:0.000000pt;}
.yf_c00372{bottom:14.720267pt;}
.y1b_c00372{bottom:15.680000pt;}
.y11_c00372{bottom:21.601067pt;}
.y20_c00372{bottom:22.080000pt;}
.y23_c00372{bottom:22.080267pt;}
.y15_c00372{bottom:22.400000pt;}
.y19_c00372{bottom:22.560000pt;}
.y17_c00372{bottom:22.586667pt;}
.y5_c00372{bottom:28.638667pt;}
.yd_c00372{bottom:28.640000pt;}
.y10_c00372{bottom:35.521333pt;}
.y13_c00372{bottom:36.160000pt;}
.ye_c00372{bottom:42.440000pt;}
.y1_c00372{bottom:50.272400pt;}
.y7_c00372{bottom:61.758667pt;}
.y3_c00372{bottom:62.426667pt;}
.yb_c00372{bottom:88.000133pt;}
.y24_c00372{bottom:89.312533pt;}
.ya_c00372{bottom:101.960000pt;}
.y22_c00372{bottom:103.872400pt;}
.y21_c00372{bottom:157.466667pt;}
.y1f_c00372{bottom:211.066667pt;}
.y1e_c00372{bottom:264.706667pt;}
.y1d_c00372{bottom:305.346667pt;}
.y1c_c00372{bottom:345.986667pt;}
.y1a_c00372{bottom:386.626667pt;}
.y18_c00372{bottom:427.266667pt;}
.y16_c00372{bottom:481.666667pt;}
.y14_c00372{bottom:536.093333pt;}
.y12_c00372{bottom:590.333333pt;}
.y9_c00372{bottom:656.893333pt;}
.yc_c00372{bottom:723.293333pt;}
.y8_c00372{bottom:789.734667pt;}
.y6_c00372{bottom:856.134667pt;}
.y4_c00372{bottom:922.534667pt;}
.y2_c00372{bottom:988.934667pt;}
.h6_c00372{height:34.968789pt;}
.hf_c00372{height:40.000000pt;}
.h4_c00372{height:42.866250pt;}
.h2_c00372{height:42.895000pt;}
.h11_c00372{height:52.959867pt;}
.h12_c00372{height:52.960400pt;}
.h10_c00372{height:52.992667pt;}
.hc_c00372{height:53.600000pt;}
.hd_c00372{height:53.632800pt;}
.he_c00372{height:53.759867pt;}
.h5_c00372{height:65.758800pt;}
.ha_c00372{height:65.759867pt;}
.h9_c00372{height:65.791733pt;}
.hb_c00372{height:65.919733pt;}
.h3_c00372{height:76.191200pt;}
.h7_c00372{height:132.158800pt;}
.h8_c00372{height:198.586667pt;}
.h0_c00372{height:1122.559867pt;}
.h1_c00372{height:1122.666667pt;}
.w4_c00372{width:103.552667pt;}
.w3_c00372{width:118.880267pt;}
.w6_c00372{width:223.066667pt;}
.w5_c00372{width:392.706667pt;}
.w7_c00372{width:393.026667pt;}
.w2_c00372{width:616.413333pt;}
.w0_c00372{width:793.759867pt;}
.w1_c00372{width:794.000000pt;}
.x0_c00372{left:0.000000pt;}
.x3_c00372{left:4.314000pt;}
.x1_c00372{left:132.352667pt;}
.x2_c00372{left:145.154000pt;}
.x7_c00372{left:176.354000pt;}
.x6_c00372{left:196.346667pt;}
.x4_c00372{left:251.866667pt;}
.x5_c00372{left:356.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_b4afbce4f73be568c8a71d8a.woff2')format("woff");}.ff1_c00373{font-family:ff1_c00373;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00373;src:url('chunks/assets/font_d012d1280148ba2db47f7bb6.woff2')format("woff");}.ff2_c00373{font-family:ff2_c00373;line-height:0.938965;font-style:normal;font-weight:normal;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_0a28ff37f8cacf4c97a403b5.woff2')format("woff");}.ff3_c00373{font-family:ff3_c00373;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00373;src:url('chunks/assets/font_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff4_c00373{font-family:ff4_c00373;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00373{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00373{vertical-align:0.000000px;}
.ls1_c00373{letter-spacing:0.000000px;}
.ls0_c00373{letter-spacing:0.217347px;}
.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:-30.024033px;}
.ws0_c00373{word-spacing:-15.012017px;}
.ws2_c00373{word-spacing:0.000000px;}
._2_c00373{margin-left:-1.234280px;}
._3_c00373{width:1.035645px;}
._1_c00373{width:997.561968px;}
._0_c00373{width:1345.983552px;}
.fc0_c00373{color:rgb(0,0,0);}
.fs1_c00373{font-size:54.000060px;}
.fs0_c00373{font-size:66.240000px;}
.y0_c00373{bottom:0.000000px;}
.yf_c00373{bottom:16.560300px;}
.y1b_c00373{bottom:17.640000px;}
.y11_c00373{bottom:24.301200px;}
.y20_c00373{bottom:24.840000px;}
.y23_c00373{bottom:24.840300px;}
.y15_c00373{bottom:25.200000px;}
.y19_c00373{bottom:25.380000px;}
.y17_c00373{bottom:25.410000px;}
.y5_c00373{bottom:32.218500px;}
.yd_c00373{bottom:32.220000px;}
.y3_c00373{bottom:36.930000px;}
.y10_c00373{bottom:39.961500px;}
.y13_c00373{bottom:40.680000px;}
.ye_c00373{bottom:47.745000px;}
.y1_c00373{bottom:56.556450px;}
.yb_c00373{bottom:99.000150px;}
.y24_c00373{bottom:100.476600px;}
.ya_c00373{bottom:114.705000px;}
.y22_c00373{bottom:116.856450px;}
.y7_c00373{bottom:136.080000px;}
.y21_c00373{bottom:177.150000px;}
.y1f_c00373{bottom:237.450000px;}
.y1e_c00373{bottom:297.795000px;}
.y1d_c00373{bottom:343.515000px;}
.y1c_c00373{bottom:389.235000px;}
.y1a_c00373{bottom:434.955000px;}
.y18_c00373{bottom:480.675000px;}
.y16_c00373{bottom:541.875000px;}
.y14_c00373{bottom:603.105000px;}
.y12_c00373{bottom:664.125000px;}
.y9_c00373{bottom:739.005000px;}
.yc_c00373{bottom:813.705000px;}
.y8_c00373{bottom:888.451500px;}
.y6_c00373{bottom:963.151500px;}
.y4_c00373{bottom:1037.851500px;}
.y2_c00373{bottom:1112.551500px;}
.h6_c00373{height:39.339887px;}
.hf_c00373{height:45.000000px;}
.h4_c00373{height:48.224531px;}
.h2_c00373{height:48.256875px;}
.h11_c00373{height:59.579850px;}
.h12_c00373{height:59.580450px;}
.h10_c00373{height:59.616750px;}
.hc_c00373{height:60.300000px;}
.hd_c00373{height:60.336900px;}
.he_c00373{height:60.479850px;}
.h5_c00373{height:73.978650px;}
.ha_c00373{height:73.979850px;}
.h9_c00373{height:74.015700px;}
.hb_c00373{height:74.159700px;}
.h3_c00373{height:85.715100px;}
.h7_c00373{height:148.678650px;}
.h8_c00373{height:223.410000px;}
.h0_c00373{height:1262.879850px;}
.h1_c00373{height:1263.000000px;}
.w4_c00373{width:116.496750px;}
.w3_c00373{width:133.740300px;}
.w6_c00373{width:250.950000px;}
.w5_c00373{width:441.795000px;}
.w7_c00373{width:442.155000px;}
.w2_c00373{width:693.465000px;}
.w0_c00373{width:892.979850px;}
.w1_c00373{width:893.250000px;}
.x0_c00373{left:0.000000px;}
.x3_c00373{left:4.853250px;}
.x1_c00373{left:148.896750px;}
.x2_c00373{left:163.298250px;}
.x7_c00373{left:198.398250px;}
.x6_c00373{left:220.890000px;}
.x4_c00373{left:283.350000px;}
.x5_c00373{left:400.575000px;}
@media print{
.v0_c00373{vertical-align:0.000000pt;}
.ls1_c00373{letter-spacing:0.000000pt;}
.ls0_c00373{letter-spacing:0.193197pt;}
.ws1_c00373{word-spacing:-26.688030pt;}
.ws0_c00373{word-spacing:-13.344015pt;}
.ws2_c00373{word-spacing:0.000000pt;}
._2_c00373{margin-left:-1.097138pt;}
._3_c00373{width:0.920573pt;}
._1_c00373{width:886.721749pt;}
._0_c00373{width:1196.429824pt;}
.fs1_c00373{font-size:48.000053pt;}
.fs0_c00373{font-size:58.880000pt;}
.y0_c00373{bottom:0.000000pt;}
.yf_c00373{bottom:14.720267pt;}
.y1b_c00373{bottom:15.680000pt;}
.y11_c00373{bottom:21.601067pt;}
.y20_c00373{bottom:22.080000pt;}
.y23_c00373{bottom:22.080267pt;}
.y15_c00373{bottom:22.400000pt;}
.y19_c00373{bottom:22.560000pt;}
.y17_c00373{bottom:22.586667pt;}
.y5_c00373{bottom:28.638667pt;}
.yd_c00373{bottom:28.640000pt;}
.y3_c00373{bottom:32.826667pt;}
.y10_c00373{bottom:35.521333pt;}
.y13_c00373{bottom:36.160000pt;}
.ye_c00373{bottom:42.440000pt;}
.y1_c00373{bottom:50.272400pt;}
.yb_c00373{bottom:88.000133pt;}
.y24_c00373{bottom:89.312533pt;}
.ya_c00373{bottom:101.960000pt;}
.y22_c00373{bottom:103.872400pt;}
.y7_c00373{bottom:120.960000pt;}
.y21_c00373{bottom:157.466667pt;}
.y1f_c00373{bottom:211.066667pt;}
.y1e_c00373{bottom:264.706667pt;}
.y1d_c00373{bottom:305.346667pt;}
.y1c_c00373{bottom:345.986667pt;}
.y1a_c00373{bottom:386.626667pt;}
.y18_c00373{bottom:427.266667pt;}
.y16_c00373{bottom:481.666667pt;}
.y14_c00373{bottom:536.093333pt;}
.y12_c00373{bottom:590.333333pt;}
.y9_c00373{bottom:656.893333pt;}
.yc_c00373{bottom:723.293333pt;}
.y8_c00373{bottom:789.734667pt;}
.y6_c00373{bottom:856.134667pt;}
.y4_c00373{bottom:922.534667pt;}
.y2_c00373{bottom:988.934667pt;}
.h6_c00373{height:34.968789pt;}
.hf_c00373{height:40.000000pt;}
.h4_c00373{height:42.866250pt;}
.h2_c00373{height:42.895000pt;}
.h11_c00373{height:52.959867pt;}
.h12_c00373{height:52.960400pt;}
.h10_c00373{height:52.992667pt;}
.hc_c00373{height:53.600000pt;}
.hd_c00373{height:53.632800pt;}
.he_c00373{height:53.759867pt;}
.h5_c00373{height:65.758800pt;}
.ha_c00373{height:65.759867pt;}
.h9_c00373{height:65.791733pt;}
.hb_c00373{height:65.919733pt;}
.h3_c00373{height:76.191200pt;}
.h7_c00373{height:132.158800pt;}
.h8_c00373{height:198.586667pt;}
.h0_c00373{height:1122.559867pt;}
.h1_c00373{height:1122.666667pt;}
.w4_c00373{width:103.552667pt;}
.w3_c00373{width:118.880267pt;}
.w6_c00373{width:223.066667pt;}
.w5_c00373{width:392.706667pt;}
.w7_c00373{width:393.026667pt;}
.w2_c00373{width:616.413333pt;}
.w0_c00373{width:793.759867pt;}
.w1_c00373{width:794.000000pt;}
.x0_c00373{left:0.000000pt;}
.x3_c00373{left:4.314000pt;}
.x1_c00373{left:132.352667pt;}
.x2_c00373{left:145.154000pt;}
.x7_c00373{left:176.354000pt;}
.x6_c00373{left:196.346667pt;}
.x4_c00373{left:251.866667pt;}
.x5_c00373{left:356.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_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_b4afbce4f73be568c8a71d8a.woff2')format("woff");}.ff1_c00374{font-family:ff1_c00374;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00374;src:url('chunks/assets/font_fd8691ba644ebb2db7f9dbe8.woff2')format("woff");}.ff2_c00374{font-family:ff2_c00374;line-height:0.938965;font-style:normal;font-weight:normal;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_0a28ff37f8cacf4c97a403b5.woff2')format("woff");}.ff3_c00374{font-family:ff3_c00374;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00374;src:url('chunks/assets/font_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff4_c00374{font-family:ff4_c00374;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00374{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00374{vertical-align:0.000000px;}
.ls1_c00374{letter-spacing:0.000000px;}
.ls0_c00374{letter-spacing:0.217347px;}
.sc__c00374{text-shadow:none;}
.sc0_c00374{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00374{-webkit-text-stroke:0px transparent;}
.sc0_c00374{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00374{word-spacing:-30.024033px;}
.ws0_c00374{word-spacing:-15.012017px;}
.ws2_c00374{word-spacing:0.000000px;}
._2_c00374{margin-left:-1.234280px;}
._3_c00374{width:1.035645px;}
._1_c00374{width:997.561968px;}
._0_c00374{width:1345.983552px;}
.fc0_c00374{color:rgb(0,0,0);}
.fs1_c00374{font-size:54.000060px;}
.fs0_c00374{font-size:66.240000px;}
.y0_c00374{bottom:0.000000px;}
.yf_c00374{bottom:16.560300px;}
.y1b_c00374{bottom:17.640000px;}
.y11_c00374{bottom:24.301200px;}
.y20_c00374{bottom:24.840000px;}
.y23_c00374{bottom:24.840300px;}
.y15_c00374{bottom:25.200000px;}
.y19_c00374{bottom:25.380000px;}
.y17_c00374{bottom:25.410000px;}
.y5_c00374{bottom:32.218500px;}
.yd_c00374{bottom:32.220000px;}
.y3_c00374{bottom:36.930000px;}
.y10_c00374{bottom:39.961500px;}
.y13_c00374{bottom:40.680000px;}
.ye_c00374{bottom:47.745000px;}
.y1_c00374{bottom:56.556450px;}
.yb_c00374{bottom:99.000150px;}
.y24_c00374{bottom:100.476600px;}
.ya_c00374{bottom:114.705000px;}
.y22_c00374{bottom:116.856450px;}
.y7_c00374{bottom:136.080000px;}
.y21_c00374{bottom:177.150000px;}
.y1f_c00374{bottom:237.450000px;}
.y1e_c00374{bottom:297.795000px;}
.y1d_c00374{bottom:343.515000px;}
.y1c_c00374{bottom:389.235000px;}
.y1a_c00374{bottom:434.955000px;}
.y18_c00374{bottom:480.675000px;}
.y16_c00374{bottom:541.875000px;}
.y14_c00374{bottom:603.105000px;}
.y12_c00374{bottom:664.125000px;}
.y9_c00374{bottom:739.005000px;}
.yc_c00374{bottom:813.705000px;}
.y8_c00374{bottom:888.451500px;}
.y6_c00374{bottom:963.151500px;}
.y4_c00374{bottom:1037.851500px;}
.y2_c00374{bottom:1112.551500px;}
.h6_c00374{height:39.339887px;}
.hf_c00374{height:45.000000px;}
.h4_c00374{height:48.224531px;}
.h2_c00374{height:48.256875px;}
.h11_c00374{height:59.579850px;}
.h12_c00374{height:59.580450px;}
.h10_c00374{height:59.616750px;}
.hc_c00374{height:60.300000px;}
.hd_c00374{height:60.336900px;}
.he_c00374{height:60.479850px;}
.h5_c00374{height:73.978650px;}
.ha_c00374{height:73.979850px;}
.h9_c00374{height:74.015700px;}
.hb_c00374{height:74.159700px;}
.h3_c00374{height:85.715100px;}
.h7_c00374{height:148.678650px;}
.h8_c00374{height:223.410000px;}
.h0_c00374{height:1262.879850px;}
.h1_c00374{height:1263.000000px;}
.w4_c00374{width:116.496750px;}
.w3_c00374{width:133.740300px;}
.w6_c00374{width:250.950000px;}
.w5_c00374{width:441.795000px;}
.w7_c00374{width:442.155000px;}
.w2_c00374{width:693.465000px;}
.w0_c00374{width:892.979850px;}
.w1_c00374{width:893.250000px;}
.x0_c00374{left:0.000000px;}
.x3_c00374{left:4.853250px;}
.x1_c00374{left:148.896750px;}
.x2_c00374{left:163.298250px;}
.x7_c00374{left:198.398250px;}
.x6_c00374{left:220.890000px;}
.x4_c00374{left:283.350000px;}
.x5_c00374{left:400.575000px;}
@media print{
.v0_c00374{vertical-align:0.000000pt;}
.ls1_c00374{letter-spacing:0.000000pt;}
.ls0_c00374{letter-spacing:0.193197pt;}
.ws1_c00374{word-spacing:-26.688030pt;}
.ws0_c00374{word-spacing:-13.344015pt;}
.ws2_c00374{word-spacing:0.000000pt;}
._2_c00374{margin-left:-1.097138pt;}
._3_c00374{width:0.920573pt;}
._1_c00374{width:886.721749pt;}
._0_c00374{width:1196.429824pt;}
.fs1_c00374{font-size:48.000053pt;}
.fs0_c00374{font-size:58.880000pt;}
.y0_c00374{bottom:0.000000pt;}
.yf_c00374{bottom:14.720267pt;}
.y1b_c00374{bottom:15.680000pt;}
.y11_c00374{bottom:21.601067pt;}
.y20_c00374{bottom:22.080000pt;}
.y23_c00374{bottom:22.080267pt;}
.y15_c00374{bottom:22.400000pt;}
.y19_c00374{bottom:22.560000pt;}
.y17_c00374{bottom:22.586667pt;}
.y5_c00374{bottom:28.638667pt;}
.yd_c00374{bottom:28.640000pt;}
.y3_c00374{bottom:32.826667pt;}
.y10_c00374{bottom:35.521333pt;}
.y13_c00374{bottom:36.160000pt;}
.ye_c00374{bottom:42.440000pt;}
.y1_c00374{bottom:50.272400pt;}
.yb_c00374{bottom:88.000133pt;}
.y24_c00374{bottom:89.312533pt;}
.ya_c00374{bottom:101.960000pt;}
.y22_c00374{bottom:103.872400pt;}
.y7_c00374{bottom:120.960000pt;}
.y21_c00374{bottom:157.466667pt;}
.y1f_c00374{bottom:211.066667pt;}
.y1e_c00374{bottom:264.706667pt;}
.y1d_c00374{bottom:305.346667pt;}
.y1c_c00374{bottom:345.986667pt;}
.y1a_c00374{bottom:386.626667pt;}
.y18_c00374{bottom:427.266667pt;}
.y16_c00374{bottom:481.666667pt;}
.y14_c00374{bottom:536.093333pt;}
.y12_c00374{bottom:590.333333pt;}
.y9_c00374{bottom:656.893333pt;}
.yc_c00374{bottom:723.293333pt;}
.y8_c00374{bottom:789.734667pt;}
.y6_c00374{bottom:856.134667pt;}
.y4_c00374{bottom:922.534667pt;}
.y2_c00374{bottom:988.934667pt;}
.h6_c00374{height:34.968789pt;}
.hf_c00374{height:40.000000pt;}
.h4_c00374{height:42.866250pt;}
.h2_c00374{height:42.895000pt;}
.h11_c00374{height:52.959867pt;}
.h12_c00374{height:52.960400pt;}
.h10_c00374{height:52.992667pt;}
.hc_c00374{height:53.600000pt;}
.hd_c00374{height:53.632800pt;}
.he_c00374{height:53.759867pt;}
.h5_c00374{height:65.758800pt;}
.ha_c00374{height:65.759867pt;}
.h9_c00374{height:65.791733pt;}
.hb_c00374{height:65.919733pt;}
.h3_c00374{height:76.191200pt;}
.h7_c00374{height:132.158800pt;}
.h8_c00374{height:198.586667pt;}
.h0_c00374{height:1122.559867pt;}
.h1_c00374{height:1122.666667pt;}
.w4_c00374{width:103.552667pt;}
.w3_c00374{width:118.880267pt;}
.w6_c00374{width:223.066667pt;}
.w5_c00374{width:392.706667pt;}
.w7_c00374{width:393.026667pt;}
.w2_c00374{width:616.413333pt;}
.w0_c00374{width:793.759867pt;}
.w1_c00374{width:794.000000pt;}
.x0_c00374{left:0.000000pt;}
.x3_c00374{left:4.314000pt;}
.x1_c00374{left:132.352667pt;}
.x2_c00374{left:145.154000pt;}
.x7_c00374{left:176.354000pt;}
.x6_c00374{left:196.346667pt;}
.x4_c00374{left:251.866667pt;}
.x5_c00374{left:356.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_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_b4afbce4f73be568c8a71d8a.woff2')format("woff");}.ff1_c00375{font-family:ff1_c00375;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00375;src:url('chunks/assets/font_b23f82fb7b7e934433c397a4.woff2')format("woff");}.ff2_c00375{font-family:ff2_c00375;line-height:0.938965;font-style:normal;font-weight:normal;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_0a28ff37f8cacf4c97a403b5.woff2')format("woff");}.ff3_c00375{font-family:ff3_c00375;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00375;src:url('chunks/assets/font_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff4_c00375{font-family:ff4_c00375;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00375{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00375{vertical-align:0.000000px;}
.ls1_c00375{letter-spacing:0.000000px;}
.ls0_c00375{letter-spacing:0.217347px;}
.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;}
}
.ws1_c00375{word-spacing:-30.024033px;}
.ws0_c00375{word-spacing:-15.012017px;}
.ws2_c00375{word-spacing:0.000000px;}
._2_c00375{margin-left:-1.234280px;}
._3_c00375{width:1.035645px;}
._1_c00375{width:997.561968px;}
._0_c00375{width:1345.983552px;}
.fc0_c00375{color:rgb(0,0,0);}
.fs1_c00375{font-size:54.000060px;}
.fs0_c00375{font-size:66.240000px;}
.y0_c00375{bottom:0.000000px;}
.yf_c00375{bottom:16.560300px;}
.y1b_c00375{bottom:17.640000px;}
.y11_c00375{bottom:24.301200px;}
.y20_c00375{bottom:24.840000px;}
.y23_c00375{bottom:24.840300px;}
.y15_c00375{bottom:25.200000px;}
.y19_c00375{bottom:25.380000px;}
.y17_c00375{bottom:25.410000px;}
.y5_c00375{bottom:32.218500px;}
.yd_c00375{bottom:32.220000px;}
.y3_c00375{bottom:36.930000px;}
.y10_c00375{bottom:39.961500px;}
.y13_c00375{bottom:40.680000px;}
.ye_c00375{bottom:47.745000px;}
.y1_c00375{bottom:56.556450px;}
.yb_c00375{bottom:99.000150px;}
.y24_c00375{bottom:100.476600px;}
.ya_c00375{bottom:114.705000px;}
.y22_c00375{bottom:116.856450px;}
.y7_c00375{bottom:136.080000px;}
.y21_c00375{bottom:177.150000px;}
.y1f_c00375{bottom:237.450000px;}
.y1e_c00375{bottom:297.795000px;}
.y1d_c00375{bottom:343.515000px;}
.y1c_c00375{bottom:389.235000px;}
.y1a_c00375{bottom:434.955000px;}
.y18_c00375{bottom:480.675000px;}
.y16_c00375{bottom:541.875000px;}
.y14_c00375{bottom:603.105000px;}
.y12_c00375{bottom:664.125000px;}
.y9_c00375{bottom:739.005000px;}
.yc_c00375{bottom:813.705000px;}
.y8_c00375{bottom:888.451500px;}
.y6_c00375{bottom:963.151500px;}
.y4_c00375{bottom:1037.851500px;}
.y2_c00375{bottom:1112.551500px;}
.h6_c00375{height:39.339887px;}
.hf_c00375{height:45.000000px;}
.h4_c00375{height:48.224531px;}
.h2_c00375{height:48.256875px;}
.h11_c00375{height:59.579850px;}
.h12_c00375{height:59.580450px;}
.h10_c00375{height:59.616750px;}
.hc_c00375{height:60.300000px;}
.hd_c00375{height:60.336900px;}
.he_c00375{height:60.479850px;}
.h5_c00375{height:73.978650px;}
.ha_c00375{height:73.979850px;}
.h9_c00375{height:74.015700px;}
.hb_c00375{height:74.159700px;}
.h3_c00375{height:85.715100px;}
.h7_c00375{height:148.678650px;}
.h8_c00375{height:223.410000px;}
.h0_c00375{height:1262.879850px;}
.h1_c00375{height:1263.000000px;}
.w4_c00375{width:116.496750px;}
.w3_c00375{width:133.740300px;}
.w6_c00375{width:250.950000px;}
.w5_c00375{width:441.795000px;}
.w7_c00375{width:442.155000px;}
.w2_c00375{width:693.465000px;}
.w0_c00375{width:892.979850px;}
.w1_c00375{width:893.250000px;}
.x0_c00375{left:0.000000px;}
.x3_c00375{left:4.853250px;}
.x1_c00375{left:148.896750px;}
.x2_c00375{left:163.298250px;}
.x7_c00375{left:198.398250px;}
.x6_c00375{left:220.890000px;}
.x4_c00375{left:283.350000px;}
.x5_c00375{left:400.575000px;}
@media print{
.v0_c00375{vertical-align:0.000000pt;}
.ls1_c00375{letter-spacing:0.000000pt;}
.ls0_c00375{letter-spacing:0.193197pt;}
.ws1_c00375{word-spacing:-26.688030pt;}
.ws0_c00375{word-spacing:-13.344015pt;}
.ws2_c00375{word-spacing:0.000000pt;}
._2_c00375{margin-left:-1.097138pt;}
._3_c00375{width:0.920573pt;}
._1_c00375{width:886.721749pt;}
._0_c00375{width:1196.429824pt;}
.fs1_c00375{font-size:48.000053pt;}
.fs0_c00375{font-size:58.880000pt;}
.y0_c00375{bottom:0.000000pt;}
.yf_c00375{bottom:14.720267pt;}
.y1b_c00375{bottom:15.680000pt;}
.y11_c00375{bottom:21.601067pt;}
.y20_c00375{bottom:22.080000pt;}
.y23_c00375{bottom:22.080267pt;}
.y15_c00375{bottom:22.400000pt;}
.y19_c00375{bottom:22.560000pt;}
.y17_c00375{bottom:22.586667pt;}
.y5_c00375{bottom:28.638667pt;}
.yd_c00375{bottom:28.640000pt;}
.y3_c00375{bottom:32.826667pt;}
.y10_c00375{bottom:35.521333pt;}
.y13_c00375{bottom:36.160000pt;}
.ye_c00375{bottom:42.440000pt;}
.y1_c00375{bottom:50.272400pt;}
.yb_c00375{bottom:88.000133pt;}
.y24_c00375{bottom:89.312533pt;}
.ya_c00375{bottom:101.960000pt;}
.y22_c00375{bottom:103.872400pt;}
.y7_c00375{bottom:120.960000pt;}
.y21_c00375{bottom:157.466667pt;}
.y1f_c00375{bottom:211.066667pt;}
.y1e_c00375{bottom:264.706667pt;}
.y1d_c00375{bottom:305.346667pt;}
.y1c_c00375{bottom:345.986667pt;}
.y1a_c00375{bottom:386.626667pt;}
.y18_c00375{bottom:427.266667pt;}
.y16_c00375{bottom:481.666667pt;}
.y14_c00375{bottom:536.093333pt;}
.y12_c00375{bottom:590.333333pt;}
.y9_c00375{bottom:656.893333pt;}
.yc_c00375{bottom:723.293333pt;}
.y8_c00375{bottom:789.734667pt;}
.y6_c00375{bottom:856.134667pt;}
.y4_c00375{bottom:922.534667pt;}
.y2_c00375{bottom:988.934667pt;}
.h6_c00375{height:34.968789pt;}
.hf_c00375{height:40.000000pt;}
.h4_c00375{height:42.866250pt;}
.h2_c00375{height:42.895000pt;}
.h11_c00375{height:52.959867pt;}
.h12_c00375{height:52.960400pt;}
.h10_c00375{height:52.992667pt;}
.hc_c00375{height:53.600000pt;}
.hd_c00375{height:53.632800pt;}
.he_c00375{height:53.759867pt;}
.h5_c00375{height:65.758800pt;}
.ha_c00375{height:65.759867pt;}
.h9_c00375{height:65.791733pt;}
.hb_c00375{height:65.919733pt;}
.h3_c00375{height:76.191200pt;}
.h7_c00375{height:132.158800pt;}
.h8_c00375{height:198.586667pt;}
.h0_c00375{height:1122.559867pt;}
.h1_c00375{height:1122.666667pt;}
.w4_c00375{width:103.552667pt;}
.w3_c00375{width:118.880267pt;}
.w6_c00375{width:223.066667pt;}
.w5_c00375{width:392.706667pt;}
.w7_c00375{width:393.026667pt;}
.w2_c00375{width:616.413333pt;}
.w0_c00375{width:793.759867pt;}
.w1_c00375{width:794.000000pt;}
.x0_c00375{left:0.000000pt;}
.x3_c00375{left:4.314000pt;}
.x1_c00375{left:132.352667pt;}
.x2_c00375{left:145.154000pt;}
.x7_c00375{left:176.354000pt;}
.x6_c00375{left:196.346667pt;}
.x4_c00375{left:251.866667pt;}
.x5_c00375{left:356.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_b4afbce4f73be568c8a71d8a.woff2')format("woff");}.ff1_c00376{font-family:ff1_c00376;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00376;src:url('chunks/assets/font_a4174aa4ad5ce57c30a4bb06.woff2')format("woff");}.ff2_c00376{font-family:ff2_c00376;line-height:0.938965;font-style:normal;font-weight:normal;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_0a28ff37f8cacf4c97a403b5.woff2')format("woff");}.ff3_c00376{font-family:ff3_c00376;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00376;src:url('chunks/assets/font_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff4_c00376{font-family:ff4_c00376;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00376{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00376{vertical-align:0.000000px;}
.ls1_c00376{letter-spacing:0.000000px;}
.ls0_c00376{letter-spacing:0.217347px;}
.sc__c00376{text-shadow:none;}
.sc0_c00376{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00376{-webkit-text-stroke:0px transparent;}
.sc0_c00376{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00376{word-spacing:-30.024033px;}
.ws0_c00376{word-spacing:-15.012017px;}
.ws2_c00376{word-spacing:0.000000px;}
._2_c00376{margin-left:-1.234280px;}
._3_c00376{width:1.035645px;}
._1_c00376{width:997.561968px;}
._0_c00376{width:1345.983552px;}
.fc0_c00376{color:rgb(0,0,0);}
.fs1_c00376{font-size:54.000060px;}
.fs0_c00376{font-size:66.240000px;}
.y0_c00376{bottom:0.000000px;}
.yf_c00376{bottom:16.560300px;}
.y1b_c00376{bottom:17.640000px;}
.y11_c00376{bottom:24.301200px;}
.y20_c00376{bottom:24.840000px;}
.y23_c00376{bottom:24.840300px;}
.y15_c00376{bottom:25.200000px;}
.y19_c00376{bottom:25.380000px;}
.y17_c00376{bottom:25.410000px;}
.y5_c00376{bottom:32.218500px;}
.yd_c00376{bottom:32.220000px;}
.y3_c00376{bottom:36.930000px;}
.y10_c00376{bottom:39.961500px;}
.y13_c00376{bottom:40.680000px;}
.ye_c00376{bottom:47.745000px;}
.y1_c00376{bottom:56.556450px;}
.yb_c00376{bottom:99.000150px;}
.y24_c00376{bottom:100.476600px;}
.ya_c00376{bottom:114.705000px;}
.y22_c00376{bottom:116.856450px;}
.y7_c00376{bottom:136.080000px;}
.y21_c00376{bottom:177.150000px;}
.y1f_c00376{bottom:237.450000px;}
.y1e_c00376{bottom:297.795000px;}
.y1d_c00376{bottom:343.515000px;}
.y1c_c00376{bottom:389.235000px;}
.y1a_c00376{bottom:434.955000px;}
.y18_c00376{bottom:480.675000px;}
.y16_c00376{bottom:541.875000px;}
.y14_c00376{bottom:603.105000px;}
.y12_c00376{bottom:664.125000px;}
.y9_c00376{bottom:739.005000px;}
.yc_c00376{bottom:813.705000px;}
.y8_c00376{bottom:888.451500px;}
.y6_c00376{bottom:963.151500px;}
.y4_c00376{bottom:1037.851500px;}
.y2_c00376{bottom:1112.551500px;}
.h6_c00376{height:39.339887px;}
.hf_c00376{height:45.000000px;}
.h4_c00376{height:48.224531px;}
.h2_c00376{height:48.256875px;}
.h11_c00376{height:59.579850px;}
.h12_c00376{height:59.580450px;}
.h10_c00376{height:59.616750px;}
.hc_c00376{height:60.300000px;}
.hd_c00376{height:60.336900px;}
.he_c00376{height:60.479850px;}
.h5_c00376{height:73.978650px;}
.ha_c00376{height:73.979850px;}
.h9_c00376{height:74.015700px;}
.hb_c00376{height:74.159700px;}
.h3_c00376{height:85.715100px;}
.h7_c00376{height:148.678650px;}
.h8_c00376{height:223.410000px;}
.h0_c00376{height:1262.879850px;}
.h1_c00376{height:1263.000000px;}
.w4_c00376{width:116.496750px;}
.w3_c00376{width:133.740300px;}
.w6_c00376{width:250.950000px;}
.w5_c00376{width:441.795000px;}
.w7_c00376{width:442.155000px;}
.w2_c00376{width:693.465000px;}
.w0_c00376{width:892.979850px;}
.w1_c00376{width:893.250000px;}
.x0_c00376{left:0.000000px;}
.x3_c00376{left:4.853250px;}
.x1_c00376{left:148.896750px;}
.x2_c00376{left:163.298250px;}
.x7_c00376{left:198.398250px;}
.x6_c00376{left:220.890000px;}
.x4_c00376{left:283.350000px;}
.x5_c00376{left:400.575000px;}
@media print{
.v0_c00376{vertical-align:0.000000pt;}
.ls1_c00376{letter-spacing:0.000000pt;}
.ls0_c00376{letter-spacing:0.193197pt;}
.ws1_c00376{word-spacing:-26.688030pt;}
.ws0_c00376{word-spacing:-13.344015pt;}
.ws2_c00376{word-spacing:0.000000pt;}
._2_c00376{margin-left:-1.097138pt;}
._3_c00376{width:0.920573pt;}
._1_c00376{width:886.721749pt;}
._0_c00376{width:1196.429824pt;}
.fs1_c00376{font-size:48.000053pt;}
.fs0_c00376{font-size:58.880000pt;}
.y0_c00376{bottom:0.000000pt;}
.yf_c00376{bottom:14.720267pt;}
.y1b_c00376{bottom:15.680000pt;}
.y11_c00376{bottom:21.601067pt;}
.y20_c00376{bottom:22.080000pt;}
.y23_c00376{bottom:22.080267pt;}
.y15_c00376{bottom:22.400000pt;}
.y19_c00376{bottom:22.560000pt;}
.y17_c00376{bottom:22.586667pt;}
.y5_c00376{bottom:28.638667pt;}
.yd_c00376{bottom:28.640000pt;}
.y3_c00376{bottom:32.826667pt;}
.y10_c00376{bottom:35.521333pt;}
.y13_c00376{bottom:36.160000pt;}
.ye_c00376{bottom:42.440000pt;}
.y1_c00376{bottom:50.272400pt;}
.yb_c00376{bottom:88.000133pt;}
.y24_c00376{bottom:89.312533pt;}
.ya_c00376{bottom:101.960000pt;}
.y22_c00376{bottom:103.872400pt;}
.y7_c00376{bottom:120.960000pt;}
.y21_c00376{bottom:157.466667pt;}
.y1f_c00376{bottom:211.066667pt;}
.y1e_c00376{bottom:264.706667pt;}
.y1d_c00376{bottom:305.346667pt;}
.y1c_c00376{bottom:345.986667pt;}
.y1a_c00376{bottom:386.626667pt;}
.y18_c00376{bottom:427.266667pt;}
.y16_c00376{bottom:481.666667pt;}
.y14_c00376{bottom:536.093333pt;}
.y12_c00376{bottom:590.333333pt;}
.y9_c00376{bottom:656.893333pt;}
.yc_c00376{bottom:723.293333pt;}
.y8_c00376{bottom:789.734667pt;}
.y6_c00376{bottom:856.134667pt;}
.y4_c00376{bottom:922.534667pt;}
.y2_c00376{bottom:988.934667pt;}
.h6_c00376{height:34.968789pt;}
.hf_c00376{height:40.000000pt;}
.h4_c00376{height:42.866250pt;}
.h2_c00376{height:42.895000pt;}
.h11_c00376{height:52.959867pt;}
.h12_c00376{height:52.960400pt;}
.h10_c00376{height:52.992667pt;}
.hc_c00376{height:53.600000pt;}
.hd_c00376{height:53.632800pt;}
.he_c00376{height:53.759867pt;}
.h5_c00376{height:65.758800pt;}
.ha_c00376{height:65.759867pt;}
.h9_c00376{height:65.791733pt;}
.hb_c00376{height:65.919733pt;}
.h3_c00376{height:76.191200pt;}
.h7_c00376{height:132.158800pt;}
.h8_c00376{height:198.586667pt;}
.h0_c00376{height:1122.559867pt;}
.h1_c00376{height:1122.666667pt;}
.w4_c00376{width:103.552667pt;}
.w3_c00376{width:118.880267pt;}
.w6_c00376{width:223.066667pt;}
.w5_c00376{width:392.706667pt;}
.w7_c00376{width:393.026667pt;}
.w2_c00376{width:616.413333pt;}
.w0_c00376{width:793.759867pt;}
.w1_c00376{width:794.000000pt;}
.x0_c00376{left:0.000000pt;}
.x3_c00376{left:4.314000pt;}
.x1_c00376{left:132.352667pt;}
.x2_c00376{left:145.154000pt;}
.x7_c00376{left:176.354000pt;}
.x6_c00376{left:196.346667pt;}
.x4_c00376{left:251.866667pt;}
.x5_c00376{left:356.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_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_b4afbce4f73be568c8a71d8a.woff2')format("woff");}.ff1_c00377{font-family:ff1_c00377;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00377;src:url('chunks/assets/font_2cf26416131d8de04f00ecc3.woff2')format("woff");}.ff2_c00377{font-family:ff2_c00377;line-height:0.938965;font-style:normal;font-weight:normal;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_0a28ff37f8cacf4c97a403b5.woff2')format("woff");}.ff3_c00377{font-family:ff3_c00377;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00377;src:url('chunks/assets/font_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff4_c00377{font-family:ff4_c00377;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00377{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00377{vertical-align:0.000000px;}
.ls2_c00377{letter-spacing:0.000000px;}
.ls0_c00377{letter-spacing:0.212667px;}
.ls1_c00377{letter-spacing:0.217347px;}
.sc__c00377{text-shadow:none;}
.sc0_c00377{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00377{-webkit-text-stroke:0px transparent;}
.sc0_c00377{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00377{word-spacing:-15.012017px;}
.ws1_c00377{word-spacing:0.000000px;}
._2_c00377{margin-left:-1.234280px;}
._3_c00377{width:1.035645px;}
._1_c00377{width:997.561968px;}
._0_c00377{width:1345.983552px;}
.fc0_c00377{color:rgb(0,0,0);}
.fs1_c00377{font-size:54.000060px;}
.fs0_c00377{font-size:66.240000px;}
.y0_c00377{bottom:0.000000px;}
.yf_c00377{bottom:16.560300px;}
.y1b_c00377{bottom:17.640000px;}
.y11_c00377{bottom:24.301200px;}
.y20_c00377{bottom:24.840000px;}
.y23_c00377{bottom:24.840300px;}
.y15_c00377{bottom:25.200000px;}
.y19_c00377{bottom:25.380000px;}
.y17_c00377{bottom:25.410000px;}
.y5_c00377{bottom:32.218500px;}
.yd_c00377{bottom:32.220000px;}
.y10_c00377{bottom:39.961500px;}
.y13_c00377{bottom:40.680000px;}
.ye_c00377{bottom:47.745000px;}
.y1_c00377{bottom:56.556450px;}
.y7_c00377{bottom:69.478500px;}
.y3_c00377{bottom:70.230000px;}
.yb_c00377{bottom:99.000150px;}
.y24_c00377{bottom:100.476600px;}
.ya_c00377{bottom:114.705000px;}
.y22_c00377{bottom:116.856450px;}
.y21_c00377{bottom:177.150000px;}
.y1f_c00377{bottom:237.450000px;}
.y1e_c00377{bottom:297.795000px;}
.y1d_c00377{bottom:343.515000px;}
.y1c_c00377{bottom:389.235000px;}
.y1a_c00377{bottom:434.955000px;}
.y18_c00377{bottom:480.675000px;}
.y16_c00377{bottom:541.875000px;}
.y14_c00377{bottom:603.105000px;}
.y12_c00377{bottom:664.125000px;}
.y9_c00377{bottom:739.005000px;}
.yc_c00377{bottom:813.705000px;}
.y8_c00377{bottom:888.451500px;}
.y6_c00377{bottom:963.151500px;}
.y4_c00377{bottom:1037.851500px;}
.y2_c00377{bottom:1112.551500px;}
.h6_c00377{height:39.339887px;}
.hf_c00377{height:45.000000px;}
.h4_c00377{height:48.224531px;}
.h2_c00377{height:48.256875px;}
.h11_c00377{height:59.579850px;}
.h12_c00377{height:59.580450px;}
.h10_c00377{height:59.616750px;}
.hc_c00377{height:60.300000px;}
.hd_c00377{height:60.336900px;}
.he_c00377{height:60.479850px;}
.h5_c00377{height:73.978650px;}
.ha_c00377{height:73.979850px;}
.h9_c00377{height:74.015700px;}
.hb_c00377{height:74.159700px;}
.h3_c00377{height:85.715100px;}
.h7_c00377{height:148.678650px;}
.h8_c00377{height:223.410000px;}
.h0_c00377{height:1262.879850px;}
.h1_c00377{height:1263.000000px;}
.w4_c00377{width:116.496750px;}
.w3_c00377{width:133.740300px;}
.w6_c00377{width:250.950000px;}
.w5_c00377{width:441.795000px;}
.w7_c00377{width:442.155000px;}
.w2_c00377{width:693.465000px;}
.w0_c00377{width:892.979850px;}
.w1_c00377{width:893.250000px;}
.x0_c00377{left:0.000000px;}
.x3_c00377{left:4.853250px;}
.x1_c00377{left:148.896750px;}
.x2_c00377{left:163.298250px;}
.x7_c00377{left:198.398250px;}
.x6_c00377{left:220.890000px;}
.x4_c00377{left:283.350000px;}
.x5_c00377{left:400.575000px;}
@media print{
.v0_c00377{vertical-align:0.000000pt;}
.ls2_c00377{letter-spacing:0.000000pt;}
.ls0_c00377{letter-spacing:0.189037pt;}
.ls1_c00377{letter-spacing:0.193197pt;}
.ws0_c00377{word-spacing:-13.344015pt;}
.ws1_c00377{word-spacing:0.000000pt;}
._2_c00377{margin-left:-1.097138pt;}
._3_c00377{width:0.920573pt;}
._1_c00377{width:886.721749pt;}
._0_c00377{width:1196.429824pt;}
.fs1_c00377{font-size:48.000053pt;}
.fs0_c00377{font-size:58.880000pt;}
.y0_c00377{bottom:0.000000pt;}
.yf_c00377{bottom:14.720267pt;}
.y1b_c00377{bottom:15.680000pt;}
.y11_c00377{bottom:21.601067pt;}
.y20_c00377{bottom:22.080000pt;}
.y23_c00377{bottom:22.080267pt;}
.y15_c00377{bottom:22.400000pt;}
.y19_c00377{bottom:22.560000pt;}
.y17_c00377{bottom:22.586667pt;}
.y5_c00377{bottom:28.638667pt;}
.yd_c00377{bottom:28.640000pt;}
.y10_c00377{bottom:35.521333pt;}
.y13_c00377{bottom:36.160000pt;}
.ye_c00377{bottom:42.440000pt;}
.y1_c00377{bottom:50.272400pt;}
.y7_c00377{bottom:61.758667pt;}
.y3_c00377{bottom:62.426667pt;}
.yb_c00377{bottom:88.000133pt;}
.y24_c00377{bottom:89.312533pt;}
.ya_c00377{bottom:101.960000pt;}
.y22_c00377{bottom:103.872400pt;}
.y21_c00377{bottom:157.466667pt;}
.y1f_c00377{bottom:211.066667pt;}
.y1e_c00377{bottom:264.706667pt;}
.y1d_c00377{bottom:305.346667pt;}
.y1c_c00377{bottom:345.986667pt;}
.y1a_c00377{bottom:386.626667pt;}
.y18_c00377{bottom:427.266667pt;}
.y16_c00377{bottom:481.666667pt;}
.y14_c00377{bottom:536.093333pt;}
.y12_c00377{bottom:590.333333pt;}
.y9_c00377{bottom:656.893333pt;}
.yc_c00377{bottom:723.293333pt;}
.y8_c00377{bottom:789.734667pt;}
.y6_c00377{bottom:856.134667pt;}
.y4_c00377{bottom:922.534667pt;}
.y2_c00377{bottom:988.934667pt;}
.h6_c00377{height:34.968789pt;}
.hf_c00377{height:40.000000pt;}
.h4_c00377{height:42.866250pt;}
.h2_c00377{height:42.895000pt;}
.h11_c00377{height:52.959867pt;}
.h12_c00377{height:52.960400pt;}
.h10_c00377{height:52.992667pt;}
.hc_c00377{height:53.600000pt;}
.hd_c00377{height:53.632800pt;}
.he_c00377{height:53.759867pt;}
.h5_c00377{height:65.758800pt;}
.ha_c00377{height:65.759867pt;}
.h9_c00377{height:65.791733pt;}
.hb_c00377{height:65.919733pt;}
.h3_c00377{height:76.191200pt;}
.h7_c00377{height:132.158800pt;}
.h8_c00377{height:198.586667pt;}
.h0_c00377{height:1122.559867pt;}
.h1_c00377{height:1122.666667pt;}
.w4_c00377{width:103.552667pt;}
.w3_c00377{width:118.880267pt;}
.w6_c00377{width:223.066667pt;}
.w5_c00377{width:392.706667pt;}
.w7_c00377{width:393.026667pt;}
.w2_c00377{width:616.413333pt;}
.w0_c00377{width:793.759867pt;}
.w1_c00377{width:794.000000pt;}
.x0_c00377{left:0.000000pt;}
.x3_c00377{left:4.314000pt;}
.x1_c00377{left:132.352667pt;}
.x2_c00377{left:145.154000pt;}
.x7_c00377{left:176.354000pt;}
.x6_c00377{left:196.346667pt;}
.x4_c00377{left:251.866667pt;}
.x5_c00377{left:356.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_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_b4afbce4f73be568c8a71d8a.woff2')format("woff");}.ff1_c00378{font-family:ff1_c00378;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00378;src:url('chunks/assets/font_acaf7f8bc9257e2cee26a0a4.woff2')format("woff");}.ff2_c00378{font-family:ff2_c00378;line-height:0.938965;font-style:normal;font-weight:normal;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_0a28ff37f8cacf4c97a403b5.woff2')format("woff");}.ff3_c00378{font-family:ff3_c00378;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00378;src:url('chunks/assets/font_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff4_c00378{font-family:ff4_c00378;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00378{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00378{vertical-align:0.000000px;}
.ls2_c00378{letter-spacing:0.000000px;}
.ls0_c00378{letter-spacing:0.212667px;}
.ls1_c00378{letter-spacing:0.217347px;}
.sc__c00378{text-shadow:none;}
.sc0_c00378{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00378{-webkit-text-stroke:0px transparent;}
.sc0_c00378{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00378{word-spacing:-15.012017px;}
.ws1_c00378{word-spacing:0.000000px;}
._2_c00378{margin-left:-1.234280px;}
._3_c00378{width:1.035645px;}
._1_c00378{width:997.561968px;}
._0_c00378{width:1345.983552px;}
.fc0_c00378{color:rgb(0,0,0);}
.fs1_c00378{font-size:54.000060px;}
.fs0_c00378{font-size:66.240000px;}
.y0_c00378{bottom:0.000000px;}
.yf_c00378{bottom:16.560300px;}
.y1b_c00378{bottom:17.640000px;}
.y11_c00378{bottom:24.301200px;}
.y20_c00378{bottom:24.840000px;}
.y23_c00378{bottom:24.840300px;}
.y15_c00378{bottom:25.200000px;}
.y19_c00378{bottom:25.380000px;}
.y17_c00378{bottom:25.410000px;}
.y5_c00378{bottom:32.218500px;}
.yd_c00378{bottom:32.220000px;}
.y10_c00378{bottom:39.961500px;}
.y13_c00378{bottom:40.680000px;}
.ye_c00378{bottom:47.745000px;}
.y1_c00378{bottom:56.556450px;}
.y7_c00378{bottom:69.478500px;}
.y3_c00378{bottom:70.230000px;}
.yb_c00378{bottom:99.000150px;}
.y24_c00378{bottom:100.476600px;}
.ya_c00378{bottom:114.705000px;}
.y22_c00378{bottom:116.856450px;}
.y21_c00378{bottom:177.150000px;}
.y1f_c00378{bottom:237.450000px;}
.y1e_c00378{bottom:297.795000px;}
.y1d_c00378{bottom:343.515000px;}
.y1c_c00378{bottom:389.235000px;}
.y1a_c00378{bottom:434.955000px;}
.y18_c00378{bottom:480.675000px;}
.y16_c00378{bottom:541.875000px;}
.y14_c00378{bottom:603.105000px;}
.y12_c00378{bottom:664.125000px;}
.y9_c00378{bottom:739.005000px;}
.yc_c00378{bottom:813.705000px;}
.y8_c00378{bottom:888.451500px;}
.y6_c00378{bottom:963.151500px;}
.y4_c00378{bottom:1037.851500px;}
.y2_c00378{bottom:1112.551500px;}
.h6_c00378{height:39.339887px;}
.hf_c00378{height:45.000000px;}
.h4_c00378{height:48.224531px;}
.h2_c00378{height:48.256875px;}
.h11_c00378{height:59.579850px;}
.h12_c00378{height:59.580450px;}
.h10_c00378{height:59.616750px;}
.hc_c00378{height:60.300000px;}
.hd_c00378{height:60.336900px;}
.he_c00378{height:60.479850px;}
.h5_c00378{height:73.978650px;}
.ha_c00378{height:73.979850px;}
.h9_c00378{height:74.015700px;}
.hb_c00378{height:74.159700px;}
.h3_c00378{height:85.715100px;}
.h7_c00378{height:148.678650px;}
.h8_c00378{height:223.410000px;}
.h0_c00378{height:1262.879850px;}
.h1_c00378{height:1263.000000px;}
.w4_c00378{width:116.496750px;}
.w3_c00378{width:133.740300px;}
.w6_c00378{width:250.950000px;}
.w5_c00378{width:441.795000px;}
.w7_c00378{width:442.155000px;}
.w2_c00378{width:693.465000px;}
.w0_c00378{width:892.979850px;}
.w1_c00378{width:893.250000px;}
.x0_c00378{left:0.000000px;}
.x3_c00378{left:4.853250px;}
.x1_c00378{left:148.896750px;}
.x2_c00378{left:163.298250px;}
.x7_c00378{left:198.398250px;}
.x6_c00378{left:220.890000px;}
.x4_c00378{left:283.350000px;}
.x5_c00378{left:400.575000px;}
@media print{
.v0_c00378{vertical-align:0.000000pt;}
.ls2_c00378{letter-spacing:0.000000pt;}
.ls0_c00378{letter-spacing:0.189037pt;}
.ls1_c00378{letter-spacing:0.193197pt;}
.ws0_c00378{word-spacing:-13.344015pt;}
.ws1_c00378{word-spacing:0.000000pt;}
._2_c00378{margin-left:-1.097138pt;}
._3_c00378{width:0.920573pt;}
._1_c00378{width:886.721749pt;}
._0_c00378{width:1196.429824pt;}
.fs1_c00378{font-size:48.000053pt;}
.fs0_c00378{font-size:58.880000pt;}
.y0_c00378{bottom:0.000000pt;}
.yf_c00378{bottom:14.720267pt;}
.y1b_c00378{bottom:15.680000pt;}
.y11_c00378{bottom:21.601067pt;}
.y20_c00378{bottom:22.080000pt;}
.y23_c00378{bottom:22.080267pt;}
.y15_c00378{bottom:22.400000pt;}
.y19_c00378{bottom:22.560000pt;}
.y17_c00378{bottom:22.586667pt;}
.y5_c00378{bottom:28.638667pt;}
.yd_c00378{bottom:28.640000pt;}
.y10_c00378{bottom:35.521333pt;}
.y13_c00378{bottom:36.160000pt;}
.ye_c00378{bottom:42.440000pt;}
.y1_c00378{bottom:50.272400pt;}
.y7_c00378{bottom:61.758667pt;}
.y3_c00378{bottom:62.426667pt;}
.yb_c00378{bottom:88.000133pt;}
.y24_c00378{bottom:89.312533pt;}
.ya_c00378{bottom:101.960000pt;}
.y22_c00378{bottom:103.872400pt;}
.y21_c00378{bottom:157.466667pt;}
.y1f_c00378{bottom:211.066667pt;}
.y1e_c00378{bottom:264.706667pt;}
.y1d_c00378{bottom:305.346667pt;}
.y1c_c00378{bottom:345.986667pt;}
.y1a_c00378{bottom:386.626667pt;}
.y18_c00378{bottom:427.266667pt;}
.y16_c00378{bottom:481.666667pt;}
.y14_c00378{bottom:536.093333pt;}
.y12_c00378{bottom:590.333333pt;}
.y9_c00378{bottom:656.893333pt;}
.yc_c00378{bottom:723.293333pt;}
.y8_c00378{bottom:789.734667pt;}
.y6_c00378{bottom:856.134667pt;}
.y4_c00378{bottom:922.534667pt;}
.y2_c00378{bottom:988.934667pt;}
.h6_c00378{height:34.968789pt;}
.hf_c00378{height:40.000000pt;}
.h4_c00378{height:42.866250pt;}
.h2_c00378{height:42.895000pt;}
.h11_c00378{height:52.959867pt;}
.h12_c00378{height:52.960400pt;}
.h10_c00378{height:52.992667pt;}
.hc_c00378{height:53.600000pt;}
.hd_c00378{height:53.632800pt;}
.he_c00378{height:53.759867pt;}
.h5_c00378{height:65.758800pt;}
.ha_c00378{height:65.759867pt;}
.h9_c00378{height:65.791733pt;}
.hb_c00378{height:65.919733pt;}
.h3_c00378{height:76.191200pt;}
.h7_c00378{height:132.158800pt;}
.h8_c00378{height:198.586667pt;}
.h0_c00378{height:1122.559867pt;}
.h1_c00378{height:1122.666667pt;}
.w4_c00378{width:103.552667pt;}
.w3_c00378{width:118.880267pt;}
.w6_c00378{width:223.066667pt;}
.w5_c00378{width:392.706667pt;}
.w7_c00378{width:393.026667pt;}
.w2_c00378{width:616.413333pt;}
.w0_c00378{width:793.759867pt;}
.w1_c00378{width:794.000000pt;}
.x0_c00378{left:0.000000pt;}
.x3_c00378{left:4.314000pt;}
.x1_c00378{left:132.352667pt;}
.x2_c00378{left:145.154000pt;}
.x7_c00378{left:176.354000pt;}
.x6_c00378{left:196.346667pt;}
.x4_c00378{left:251.866667pt;}
.x5_c00378{left:356.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_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_b4afbce4f73be568c8a71d8a.woff2')format("woff");}.ff1_c00379{font-family:ff1_c00379;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00379;src:url('chunks/assets/font_e24a646a16638ea56d431b97.woff2')format("woff");}.ff2_c00379{font-family:ff2_c00379;line-height:0.938965;font-style:normal;font-weight:normal;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_0a28ff37f8cacf4c97a403b5.woff2')format("woff");}.ff3_c00379{font-family:ff3_c00379;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00379;src:url('chunks/assets/font_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff4_c00379{font-family:ff4_c00379;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls1_c00379{letter-spacing:0.000000px;}
.ls0_c00379{letter-spacing:0.212667px;}
.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;}
}
.ws1_c00379{word-spacing:-30.024033px;}
.ws0_c00379{word-spacing:-15.012017px;}
.ws2_c00379{word-spacing:0.000000px;}
._2_c00379{margin-left:-1.234280px;}
._3_c00379{width:1.035645px;}
._1_c00379{width:997.561968px;}
._0_c00379{width:1345.983552px;}
.fc0_c00379{color:rgb(0,0,0);}
.fs1_c00379{font-size:54.000060px;}
.fs0_c00379{font-size:66.240000px;}
.y0_c00379{bottom:0.000000px;}
.yf_c00379{bottom:16.560300px;}
.y1b_c00379{bottom:17.640000px;}
.y11_c00379{bottom:24.301200px;}
.y20_c00379{bottom:24.840000px;}
.y23_c00379{bottom:24.840300px;}
.y15_c00379{bottom:25.200000px;}
.y19_c00379{bottom:25.380000px;}
.y17_c00379{bottom:25.410000px;}
.y5_c00379{bottom:32.218500px;}
.yd_c00379{bottom:32.220000px;}
.y3_c00379{bottom:36.930000px;}
.y10_c00379{bottom:39.961500px;}
.y13_c00379{bottom:40.680000px;}
.ye_c00379{bottom:47.745000px;}
.y1_c00379{bottom:56.556450px;}
.yb_c00379{bottom:99.000150px;}
.y24_c00379{bottom:100.476600px;}
.ya_c00379{bottom:114.705000px;}
.y22_c00379{bottom:116.856450px;}
.y7_c00379{bottom:136.080000px;}
.y21_c00379{bottom:177.150000px;}
.y1f_c00379{bottom:237.450000px;}
.y1e_c00379{bottom:297.795000px;}
.y1d_c00379{bottom:343.515000px;}
.y1c_c00379{bottom:389.235000px;}
.y1a_c00379{bottom:434.955000px;}
.y18_c00379{bottom:480.675000px;}
.y16_c00379{bottom:541.875000px;}
.y14_c00379{bottom:603.105000px;}
.y12_c00379{bottom:664.125000px;}
.y9_c00379{bottom:739.005000px;}
.yc_c00379{bottom:813.705000px;}
.y8_c00379{bottom:888.451500px;}
.y6_c00379{bottom:963.151500px;}
.y4_c00379{bottom:1037.851500px;}
.y2_c00379{bottom:1112.551500px;}
.h6_c00379{height:39.339887px;}
.hf_c00379{height:45.000000px;}
.h4_c00379{height:48.224531px;}
.h2_c00379{height:48.256875px;}
.h11_c00379{height:59.579850px;}
.h12_c00379{height:59.580450px;}
.h10_c00379{height:59.616750px;}
.hc_c00379{height:60.300000px;}
.hd_c00379{height:60.336900px;}
.he_c00379{height:60.479850px;}
.h5_c00379{height:73.978650px;}
.ha_c00379{height:73.979850px;}
.h9_c00379{height:74.015700px;}
.hb_c00379{height:74.159700px;}
.h3_c00379{height:85.715100px;}
.h7_c00379{height:148.678650px;}
.h8_c00379{height:223.410000px;}
.h0_c00379{height:1262.879850px;}
.h1_c00379{height:1263.000000px;}
.w4_c00379{width:116.496750px;}
.w3_c00379{width:133.740300px;}
.w6_c00379{width:250.950000px;}
.w5_c00379{width:441.795000px;}
.w7_c00379{width:442.155000px;}
.w2_c00379{width:693.465000px;}
.w0_c00379{width:892.979850px;}
.w1_c00379{width:893.250000px;}
.x0_c00379{left:0.000000px;}
.x3_c00379{left:4.853250px;}
.x1_c00379{left:148.896750px;}
.x2_c00379{left:163.298250px;}
.x7_c00379{left:198.398250px;}
.x6_c00379{left:220.890000px;}
.x4_c00379{left:283.350000px;}
.x5_c00379{left:400.575000px;}
@media print{
.v0_c00379{vertical-align:0.000000pt;}
.ls1_c00379{letter-spacing:0.000000pt;}
.ls0_c00379{letter-spacing:0.189037pt;}
.ws1_c00379{word-spacing:-26.688030pt;}
.ws0_c00379{word-spacing:-13.344015pt;}
.ws2_c00379{word-spacing:0.000000pt;}
._2_c00379{margin-left:-1.097138pt;}
._3_c00379{width:0.920573pt;}
._1_c00379{width:886.721749pt;}
._0_c00379{width:1196.429824pt;}
.fs1_c00379{font-size:48.000053pt;}
.fs0_c00379{font-size:58.880000pt;}
.y0_c00379{bottom:0.000000pt;}
.yf_c00379{bottom:14.720267pt;}
.y1b_c00379{bottom:15.680000pt;}
.y11_c00379{bottom:21.601067pt;}
.y20_c00379{bottom:22.080000pt;}
.y23_c00379{bottom:22.080267pt;}
.y15_c00379{bottom:22.400000pt;}
.y19_c00379{bottom:22.560000pt;}
.y17_c00379{bottom:22.586667pt;}
.y5_c00379{bottom:28.638667pt;}
.yd_c00379{bottom:28.640000pt;}
.y3_c00379{bottom:32.826667pt;}
.y10_c00379{bottom:35.521333pt;}
.y13_c00379{bottom:36.160000pt;}
.ye_c00379{bottom:42.440000pt;}
.y1_c00379{bottom:50.272400pt;}
.yb_c00379{bottom:88.000133pt;}
.y24_c00379{bottom:89.312533pt;}
.ya_c00379{bottom:101.960000pt;}
.y22_c00379{bottom:103.872400pt;}
.y7_c00379{bottom:120.960000pt;}
.y21_c00379{bottom:157.466667pt;}
.y1f_c00379{bottom:211.066667pt;}
.y1e_c00379{bottom:264.706667pt;}
.y1d_c00379{bottom:305.346667pt;}
.y1c_c00379{bottom:345.986667pt;}
.y1a_c00379{bottom:386.626667pt;}
.y18_c00379{bottom:427.266667pt;}
.y16_c00379{bottom:481.666667pt;}
.y14_c00379{bottom:536.093333pt;}
.y12_c00379{bottom:590.333333pt;}
.y9_c00379{bottom:656.893333pt;}
.yc_c00379{bottom:723.293333pt;}
.y8_c00379{bottom:789.734667pt;}
.y6_c00379{bottom:856.134667pt;}
.y4_c00379{bottom:922.534667pt;}
.y2_c00379{bottom:988.934667pt;}
.h6_c00379{height:34.968789pt;}
.hf_c00379{height:40.000000pt;}
.h4_c00379{height:42.866250pt;}
.h2_c00379{height:42.895000pt;}
.h11_c00379{height:52.959867pt;}
.h12_c00379{height:52.960400pt;}
.h10_c00379{height:52.992667pt;}
.hc_c00379{height:53.600000pt;}
.hd_c00379{height:53.632800pt;}
.he_c00379{height:53.759867pt;}
.h5_c00379{height:65.758800pt;}
.ha_c00379{height:65.759867pt;}
.h9_c00379{height:65.791733pt;}
.hb_c00379{height:65.919733pt;}
.h3_c00379{height:76.191200pt;}
.h7_c00379{height:132.158800pt;}
.h8_c00379{height:198.586667pt;}
.h0_c00379{height:1122.559867pt;}
.h1_c00379{height:1122.666667pt;}
.w4_c00379{width:103.552667pt;}
.w3_c00379{width:118.880267pt;}
.w6_c00379{width:223.066667pt;}
.w5_c00379{width:392.706667pt;}
.w7_c00379{width:393.026667pt;}
.w2_c00379{width:616.413333pt;}
.w0_c00379{width:793.759867pt;}
.w1_c00379{width:794.000000pt;}
.x0_c00379{left:0.000000pt;}
.x3_c00379{left:4.314000pt;}
.x1_c00379{left:132.352667pt;}
.x2_c00379{left:145.154000pt;}
.x7_c00379{left:176.354000pt;}
.x6_c00379{left:196.346667pt;}
.x4_c00379{left:251.866667pt;}
.x5_c00379{left:356.066667pt;}
}





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

.ir_c00380:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00380{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00380;src:url('chunks/assets/font_b4afbce4f73be568c8a71d8a.woff2')format("woff");}.ff1_c00380{font-family:ff1_c00380;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00380;src:url('chunks/assets/font_7cbf7a4ddd4368afbc5db029.woff2')format("woff");}.ff2_c00380{font-family:ff2_c00380;line-height:0.938965;font-style:normal;font-weight:normal;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_0a28ff37f8cacf4c97a403b5.woff2')format("woff");}.ff3_c00380{font-family:ff3_c00380;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00380;src:url('chunks/assets/font_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff4_c00380{font-family:ff4_c00380;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00380{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00380{vertical-align:0.000000px;}
.ls1_c00380{letter-spacing:0.000000px;}
.ls0_c00380{letter-spacing:0.212667px;}
.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;}
}
.ws1_c00380{word-spacing:-30.024033px;}
.ws0_c00380{word-spacing:-15.012017px;}
.ws2_c00380{word-spacing:0.000000px;}
._2_c00380{margin-left:-1.234280px;}
._3_c00380{width:1.035645px;}
._1_c00380{width:997.561968px;}
._0_c00380{width:1345.983552px;}
.fc0_c00380{color:rgb(0,0,0);}
.fs1_c00380{font-size:54.000060px;}
.fs0_c00380{font-size:66.240000px;}
.y0_c00380{bottom:0.000000px;}
.yf_c00380{bottom:16.560300px;}
.y1b_c00380{bottom:17.640000px;}
.y11_c00380{bottom:24.301200px;}
.y20_c00380{bottom:24.840000px;}
.y23_c00380{bottom:24.840300px;}
.y15_c00380{bottom:25.200000px;}
.y19_c00380{bottom:25.380000px;}
.y17_c00380{bottom:25.410000px;}
.y5_c00380{bottom:32.218500px;}
.yd_c00380{bottom:32.220000px;}
.y3_c00380{bottom:36.930000px;}
.y10_c00380{bottom:39.961500px;}
.y13_c00380{bottom:40.680000px;}
.ye_c00380{bottom:47.745000px;}
.y1_c00380{bottom:56.556450px;}
.yb_c00380{bottom:99.000150px;}
.y24_c00380{bottom:100.476600px;}
.ya_c00380{bottom:114.705000px;}
.y22_c00380{bottom:116.856450px;}
.y7_c00380{bottom:136.080000px;}
.y21_c00380{bottom:177.150000px;}
.y1f_c00380{bottom:237.450000px;}
.y1e_c00380{bottom:297.795000px;}
.y1d_c00380{bottom:343.515000px;}
.y1c_c00380{bottom:389.235000px;}
.y1a_c00380{bottom:434.955000px;}
.y18_c00380{bottom:480.675000px;}
.y16_c00380{bottom:541.875000px;}
.y14_c00380{bottom:603.105000px;}
.y12_c00380{bottom:664.125000px;}
.y9_c00380{bottom:739.005000px;}
.yc_c00380{bottom:813.705000px;}
.y8_c00380{bottom:888.451500px;}
.y6_c00380{bottom:963.151500px;}
.y4_c00380{bottom:1037.851500px;}
.y2_c00380{bottom:1112.551500px;}
.h6_c00380{height:39.339887px;}
.hf_c00380{height:45.000000px;}
.h4_c00380{height:48.224531px;}
.h2_c00380{height:48.256875px;}
.h11_c00380{height:59.579850px;}
.h12_c00380{height:59.580450px;}
.h10_c00380{height:59.616750px;}
.hc_c00380{height:60.300000px;}
.hd_c00380{height:60.336900px;}
.he_c00380{height:60.479850px;}
.h5_c00380{height:73.978650px;}
.ha_c00380{height:73.979850px;}
.h9_c00380{height:74.015700px;}
.hb_c00380{height:74.159700px;}
.h3_c00380{height:85.715100px;}
.h7_c00380{height:148.678650px;}
.h8_c00380{height:223.410000px;}
.h0_c00380{height:1262.879850px;}
.h1_c00380{height:1263.000000px;}
.w4_c00380{width:116.496750px;}
.w3_c00380{width:133.740300px;}
.w6_c00380{width:250.950000px;}
.w5_c00380{width:441.795000px;}
.w7_c00380{width:442.155000px;}
.w2_c00380{width:693.465000px;}
.w0_c00380{width:892.979850px;}
.w1_c00380{width:893.250000px;}
.x0_c00380{left:0.000000px;}
.x3_c00380{left:4.853250px;}
.x1_c00380{left:148.896750px;}
.x2_c00380{left:163.298250px;}
.x7_c00380{left:198.398250px;}
.x6_c00380{left:220.890000px;}
.x4_c00380{left:283.350000px;}
.x5_c00380{left:400.575000px;}
@media print{
.v0_c00380{vertical-align:0.000000pt;}
.ls1_c00380{letter-spacing:0.000000pt;}
.ls0_c00380{letter-spacing:0.189037pt;}
.ws1_c00380{word-spacing:-26.688030pt;}
.ws0_c00380{word-spacing:-13.344015pt;}
.ws2_c00380{word-spacing:0.000000pt;}
._2_c00380{margin-left:-1.097138pt;}
._3_c00380{width:0.920573pt;}
._1_c00380{width:886.721749pt;}
._0_c00380{width:1196.429824pt;}
.fs1_c00380{font-size:48.000053pt;}
.fs0_c00380{font-size:58.880000pt;}
.y0_c00380{bottom:0.000000pt;}
.yf_c00380{bottom:14.720267pt;}
.y1b_c00380{bottom:15.680000pt;}
.y11_c00380{bottom:21.601067pt;}
.y20_c00380{bottom:22.080000pt;}
.y23_c00380{bottom:22.080267pt;}
.y15_c00380{bottom:22.400000pt;}
.y19_c00380{bottom:22.560000pt;}
.y17_c00380{bottom:22.586667pt;}
.y5_c00380{bottom:28.638667pt;}
.yd_c00380{bottom:28.640000pt;}
.y3_c00380{bottom:32.826667pt;}
.y10_c00380{bottom:35.521333pt;}
.y13_c00380{bottom:36.160000pt;}
.ye_c00380{bottom:42.440000pt;}
.y1_c00380{bottom:50.272400pt;}
.yb_c00380{bottom:88.000133pt;}
.y24_c00380{bottom:89.312533pt;}
.ya_c00380{bottom:101.960000pt;}
.y22_c00380{bottom:103.872400pt;}
.y7_c00380{bottom:120.960000pt;}
.y21_c00380{bottom:157.466667pt;}
.y1f_c00380{bottom:211.066667pt;}
.y1e_c00380{bottom:264.706667pt;}
.y1d_c00380{bottom:305.346667pt;}
.y1c_c00380{bottom:345.986667pt;}
.y1a_c00380{bottom:386.626667pt;}
.y18_c00380{bottom:427.266667pt;}
.y16_c00380{bottom:481.666667pt;}
.y14_c00380{bottom:536.093333pt;}
.y12_c00380{bottom:590.333333pt;}
.y9_c00380{bottom:656.893333pt;}
.yc_c00380{bottom:723.293333pt;}
.y8_c00380{bottom:789.734667pt;}
.y6_c00380{bottom:856.134667pt;}
.y4_c00380{bottom:922.534667pt;}
.y2_c00380{bottom:988.934667pt;}
.h6_c00380{height:34.968789pt;}
.hf_c00380{height:40.000000pt;}
.h4_c00380{height:42.866250pt;}
.h2_c00380{height:42.895000pt;}
.h11_c00380{height:52.959867pt;}
.h12_c00380{height:52.960400pt;}
.h10_c00380{height:52.992667pt;}
.hc_c00380{height:53.600000pt;}
.hd_c00380{height:53.632800pt;}
.he_c00380{height:53.759867pt;}
.h5_c00380{height:65.758800pt;}
.ha_c00380{height:65.759867pt;}
.h9_c00380{height:65.791733pt;}
.hb_c00380{height:65.919733pt;}
.h3_c00380{height:76.191200pt;}
.h7_c00380{height:132.158800pt;}
.h8_c00380{height:198.586667pt;}
.h0_c00380{height:1122.559867pt;}
.h1_c00380{height:1122.666667pt;}
.w4_c00380{width:103.552667pt;}
.w3_c00380{width:118.880267pt;}
.w6_c00380{width:223.066667pt;}
.w5_c00380{width:392.706667pt;}
.w7_c00380{width:393.026667pt;}
.w2_c00380{width:616.413333pt;}
.w0_c00380{width:793.759867pt;}
.w1_c00380{width:794.000000pt;}
.x0_c00380{left:0.000000pt;}
.x3_c00380{left:4.314000pt;}
.x1_c00380{left:132.352667pt;}
.x2_c00380{left:145.154000pt;}
.x7_c00380{left:176.354000pt;}
.x6_c00380{left:196.346667pt;}
.x4_c00380{left:251.866667pt;}
.x5_c00380{left:356.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_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_2074642c14fbb327a313d6a6.woff2')format("woff");}.ff1_c00381{font-family:ff1_c00381;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00381;src:url('chunks/assets/font_5fa3e4a4413c64b0f279b890.woff2')format("woff");}.ff2_c00381{font-family:ff2_c00381;line-height:1.058594;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00381{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00381{vertical-align:0.000000px;}
.ls0_c00381{letter-spacing:0.000000px;}
.sc__c00381{text-shadow:none;}
.sc0_c00381{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00381{-webkit-text-stroke:0px transparent;}
.sc0_c00381{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00381{word-spacing:0.000000px;}
._0_c00381{margin-left:-1.092480px;}
._1_c00381{width:845.705952px;}
.fc0_c00381{color:rgb(0,0,0);}
.fs1_c00381{font-size:66.240000px;}
.fs0_c00381{font-size:95.760000px;}
.y0_c00381{bottom:0.000000px;}
.y3_c00381{bottom:743.146350px;}
.y2_c00381{bottom:780.766500px;}
.y1_c00381{bottom:814.966500px;}
.h3_c00381{height:56.957344px;}
.h2_c00381{height:69.715898px;}
.h0_c00381{height:1262.879850px;}
.h1_c00381{height:1263.000000px;}
.w0_c00381{width:892.979850px;}
.w1_c00381{width:893.250000px;}
.x0_c00381{left:0.000000px;}
.x2_c00381{left:411.734850px;}
.x1_c00381{left:427.755000px;}
.x3_c00381{left:446.475150px;}
@media print{
.v0_c00381{vertical-align:0.000000pt;}
.ls0_c00381{letter-spacing:0.000000pt;}
.ws0_c00381{word-spacing:0.000000pt;}
._0_c00381{margin-left:-0.971094pt;}
._1_c00381{width:751.738624pt;}
.fs1_c00381{font-size:58.880000pt;}
.fs0_c00381{font-size:85.120000pt;}
.y0_c00381{bottom:0.000000pt;}
.y3_c00381{bottom:660.574533pt;}
.y2_c00381{bottom:694.014667pt;}
.y1_c00381{bottom:724.414667pt;}
.h3_c00381{height:50.628750pt;}
.h2_c00381{height:61.969688pt;}
.h0_c00381{height:1122.559867pt;}
.h1_c00381{height:1122.666667pt;}
.w0_c00381{width:793.759867pt;}
.w1_c00381{width:794.000000pt;}
.x0_c00381{left:0.000000pt;}
.x2_c00381{left:365.986533pt;}
.x1_c00381{left:380.226667pt;}
.x3_c00381{left:396.866800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_582da0669025ee9f7e211635.woff2')format("woff");}.ff1_c00382{font-family:ff1_c00382;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00382;src:url('chunks/assets/font_4ac59fb8c22d2cf0b9b4fd7c.woff2')format("woff");}.ff2_c00382{font-family:ff2_c00382;line-height:0.895996;font-style: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.250280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250280,0.000000,0.000000,0.250000,0,0);}
.v0_c00382{vertical-align:0.000000px;}
.v1_c00382{vertical-align:1.439064px;}
.v3_c00382{vertical-align:34.560924px;}
.v2_c00382{vertical-align:36.000000px;}
.v4_c00382{vertical-align:37.441380px;}
.ls4_c00382{letter-spacing:0.000000px;}
.ls2_c00382{letter-spacing:512.167493px;}
.ls1_c00382{letter-spacing:512.169293px;}
.ls0_c00382{letter-spacing:512.171693px;}
.ls3_c00382{letter-spacing:512.174093px;}
.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;}
}
.ws8_c00382{word-spacing:-15.412353px;}
.wse_c00382{word-spacing:0.000000px;}
.ws6_c00382{word-spacing:40.827768px;}
.ws0_c00382{word-spacing:157.884037px;}
.wsb_c00382{word-spacing:169.597813px;}
.ws7_c00382{word-spacing:238.713200px;}
.wsd_c00382{word-spacing:240.158000px;}
.ws5_c00382{word-spacing:293.870297px;}
.ws1_c00382{word-spacing:315.010804px;}
.ws2_c00382{word-spacing:315.016804px;}
.ws4_c00382{word-spacing:343.594191px;}
.ws3_c00382{word-spacing:481.751233px;}
.ws9_c00382{word-spacing:481.753633px;}
.wsc_c00382{word-spacing:481.756033px;}
.wsa_c00382{word-spacing:481.758433px;}
._2c_c00382{margin-left:-1212.835785px;}
._12_c00382{width:45.146041px;}
._1_c00382{width:56.240121px;}
._25_c00382{width:76.528433px;}
._26_c00382{width:83.315847px;}
._14_c00382{width:157.692917px;}
._4_c00382{width:166.221122px;}
._22_c00382{width:167.872129px;}
._13_c00382{width:169.816968px;}
._2a_c00382{width:171.467975px;}
._23_c00382{width:173.760305px;}
._9_c00382{width:177.375776px;}
._8_c00382{width:183.482404px;}
._f_c00382{width:212.968786px;}
._a_c00382{width:215.834937px;}
._5_c00382{width:226.252445px;}
._15_c00382{width:231.768917px;}
._17_c00382{width:233.090223px;}
._28_c00382{width:245.315878px;}
._2_c00382{width:260.420539px;}
._18_c00382{width:264.880697px;}
._2b_c00382{width:270.443103px;}
._10_c00382{width:271.923461px;}
._b_c00382{width:276.242040px;}
._29_c00382{width:277.258812px;}
._1c_c00382{width:282.224584px;}
._11_c00382{width:286.324935px;}
._3_c00382{width:291.552938px;}
._21_c00382{width:292.992718px;}
._c_c00382{width:306.563351px;}
._d_c00382{width:307.903893px;}
._19_c00382{width:317.462878px;}
._24_c00382{width:326.041009px;}
._2e_c00382{width:332.549798px;}
._1d_c00382{width:339.885841px;}
._e_c00382{width:368.035008px;}
._1a_c00382{width:378.549226px;}
._1f_c00382{width:419.590232px;}
._1b_c00382{width:421.054580px;}
._1e_c00382{width:432.497346px;}
._16_c00382{width:443.275553px;}
._20_c00382{width:479.831673px;}
._6_c00382{width:488.421359px;}
._27_c00382{width:490.072366px;}
._7_c00382{width:547.989202px;}
._0_c00382{width:568.255686px;}
._2d_c00382{width:2065.970528px;}
.fc0_c00382{color:rgb(0,0,0);}
.fs0_c00382{font-size:55.440120px;}
.y0_c00382{bottom:0.000000px;}
.y1e_c00382{bottom:2.881500px;}
.y1b_c00382{bottom:2.883000px;}
.y14_c00382{bottom:3.061500px;}
.y9_c00382{bottom:3.063000px;}
.y44_c00382{bottom:26.759700px;}
.y37_c00382{bottom:411.420000px;}
.y38_c00382{bottom:411.420051px;}
.y35_c00382{bottom:420.237978px;}
.y36_c00382{bottom:425.818500px;}
.y34_c00382{bottom:447.417927px;}
.y33_c00382{bottom:465.598461px;}
.y32_c00382{bottom:483.778395px;}
.y31_c00382{bottom:501.958929px;}
.y3c_c00382{bottom:511.680351px;}
.y30_c00382{bottom:520.138878px;}
.y2f_c00382{bottom:538.319862px;}
.y2e_c00382{bottom:556.499796px;}
.y2d_c00382{bottom:574.679730px;}
.y2b_c00382{bottom:593.220000px;}
.y2c_c00382{bottom:593.220030px;}
.y29_c00382{bottom:602.039610px;}
.y2a_c00382{bottom:607.618500px;}
.y28_c00382{bottom:629.579910px;}
.y27_c00382{bottom:638.400000px;}
.y26_c00382{bottom:665.939700px;}
.y25_c00382{bottom:674.759805px;}
.y39_c00382{bottom:675.300051px;}
.y24_c00382{bottom:702.300105px;}
.y23_c00382{bottom:711.120195px;}
.y22_c00382{bottom:738.659895px;}
.y21_c00382{bottom:747.480000px;}
.y20_c00382{bottom:771.238500px;}
.y1f_c00382{bottom:782.941500px;}
.y1d_c00382{bottom:805.798500px;}
.y1c_c00382{bottom:817.500000px;}
.y1a_c00382{bottom:840.358500px;}
.y19_c00382{bottom:852.059736px;}
.y18_c00382{bottom:878.700000px;}
.y16_c00382{bottom:887.520321px;}
.y17_c00382{bottom:893.098500px;}
.y3b_c00382{bottom:897.600351px;}
.y15_c00382{bottom:915.060000px;}
.y3a_c00382{bottom:915.060051px;}
.y12_c00382{bottom:923.879067px;}
.y13_c00382{bottom:929.458500px;}
.y11_c00382{bottom:951.060051px;}
.y10_c00382{bottom:969.239985px;}
.yf_c00382{bottom:987.419919px;}
.y3e_c00382{bottom:997.140351px;}
.ye_c00382{bottom:1005.599868px;}
.yd_c00382{bottom:1023.779817px;}
.yc_c00382{bottom:1041.960351px;}
.ya_c00382{bottom:1060.500000px;}
.yb_c00382{bottom:1060.500051px;}
.y7_c00382{bottom:1060.500399px;}
.y6_c00382{bottom:1069.320483px;}
.y8_c00382{bottom:1074.898500px;}
.y5_c00382{bottom:1096.500432px;}
.y4_c00382{bottom:1114.681416px;}
.y3f_c00382{bottom:1115.400051px;}
.y3_c00382{bottom:1132.861350px;}
.y2_c00382{bottom:1150.681500px;}
.y40_c00382{bottom:1159.859751px;}
.y3d_c00382{bottom:1159.860351px;}
.y42_c00382{bottom:1159.861500px;}
.y43_c00382{bottom:1160.221266px;}
.y41_c00382{bottom:1165.438500px;}
.y1_c00382{bottom:1194.600000px;}
.he_c00382{height:15.478650px;}
.h10_c00382{height:15.479850px;}
.hd_c00382{height:15.480450px;}
.h7_c00382{height:15.659250px;}
.h14_c00382{height:15.659700px;}
.h9_c00382{height:15.660300px;}
.h12_c00382{height:39.793446px;}
.h2_c00382{height:40.361923px;}
.h3_c00382{height:41.232510px;}
.h4_c00382{height:41.234850px;}
.hf_c00382{height:74.920507px;}
.hc_c00382{height:74.922847px;}
.h6_c00382{height:75.642403px;}
.hb_c00382{height:76.512990px;}
.ha_c00382{height:76.515330px;}
.h13_c00382{height:77.232486px;}
.h5_c00382{height:77.232510px;}
.h11_c00382{height:77.234826px;}
.h8_c00382{height:110.203327px;}
.h15_c00382{height:112.512966px;}
.h0_c00382{height:1262.999850px;}
.h1_c00382{height:1263.000000px;}
.w7_c00382{width:63.360300px;}
.w6_c00382{width:135.540300px;}
.w2_c00382{width:136.620150px;}
.w3_c00382{width:158.220000px;}
.w5_c00382{width:162.180000px;}
.w4_c00382{width:163.980000px;}
.w0_c00382{width:1786.499850px;}
.w1_c00382{width:1786.500000px;}
.x0_c00382{left:0.000000px;}
.x1_c00382{left:140.172000px;}
.x14_c00382{left:143.412300px;}
.xb_c00382{left:179.052000px;}
.xd_c00382{left:181.572000px;}
.x9_c00382{left:184.270199px;}
.x4_c00382{left:197.772621px;}
.x3_c00382{left:201.730899px;}
.x15_c00382{left:312.612592px;}
.x5_c00382{left:499.814079px;}
.x2_c00382{left:607.632000px;}
.x6_c00382{left:740.473500px;}
.xf_c00382{left:741.553500px;}
.x10_c00382{left:768.732000px;}
.x7_c00382{left:786.552000px;}
.xe_c00382{left:1358.956206px;}
.x12_c00382{left:1370.113625px;}
.x11_c00382{left:1462.994718px;}
.x13_c00382{left:1469.835584px;}
.xc_c00382{left:1485.673500px;}
.xa_c00382{left:1488.553500px;}
.x8_c00382{left:1504.380869px;}
.x16_c00382{left:1635.435000px;}
@media print{
.v0_c00382{vertical-align:0.000000pt;}
.v1_c00382{vertical-align:1.279168pt;}
.v3_c00382{vertical-align:30.720821pt;}
.v2_c00382{vertical-align:32.000000pt;}
.v4_c00382{vertical-align:33.281227pt;}
.ls4_c00382{letter-spacing:0.000000pt;}
.ls2_c00382{letter-spacing:455.259994pt;}
.ls1_c00382{letter-spacing:455.261594pt;}
.ls0_c00382{letter-spacing:455.263727pt;}
.ls3_c00382{letter-spacing:455.265861pt;}
.ws8_c00382{word-spacing:-13.699870pt;}
.wse_c00382{word-spacing:0.000000pt;}
.ws6_c00382{word-spacing:36.291349pt;}
.ws0_c00382{word-spacing:140.341366pt;}
.wsb_c00382{word-spacing:150.753612pt;}
.ws7_c00382{word-spacing:212.189511pt;}
.wsd_c00382{word-spacing:213.473778pt;}
.ws5_c00382{word-spacing:261.218042pt;}
.ws1_c00382{word-spacing:280.009604pt;}
.ws2_c00382{word-spacing:280.014937pt;}
.ws4_c00382{word-spacing:305.417058pt;}
.ws3_c00382{word-spacing:428.223318pt;}
.ws9_c00382{word-spacing:428.225452pt;}
.wsc_c00382{word-spacing:428.227585pt;}
.wsa_c00382{word-spacing:428.229718pt;}
._2c_c00382{margin-left:-1078.076253pt;}
._12_c00382{width:40.129814pt;}
._1_c00382{width:49.991219pt;}
._25_c00382{width:68.025274pt;}
._26_c00382{width:74.058531pt;}
._14_c00382{width:140.171482pt;}
._4_c00382{width:147.752109pt;}
._22_c00382{width:149.219670pt;}
._13_c00382{width:150.948416pt;}
._2a_c00382{width:152.415978pt;}
._23_c00382{width:154.453604pt;}
._9_c00382{width:157.667356pt;}
._8_c00382{width:163.095470pt;}
._f_c00382{width:189.305587pt;}
._a_c00382{width:191.853277pt;}
._5_c00382{width:201.113284pt;}
._15_c00382{width:206.016815pt;}
._17_c00382{width:207.191309pt;}
._28_c00382{width:218.058558pt;}
._2_c00382{width:231.484923pt;}
._18_c00382{width:235.449508pt;}
._2b_c00382{width:240.393870pt;}
._10_c00382{width:241.709743pt;}
._b_c00382{width:245.548480pt;}
._29_c00382{width:246.452277pt;}
._1c_c00382{width:250.866297pt;}
._11_c00382{width:254.511053pt;}
._3_c00382{width:259.158167pt;}
._21_c00382{width:260.437972pt;}
._c_c00382{width:272.500756pt;}
._d_c00382{width:273.692349pt;}
._19_c00382{width:282.189225pt;}
._24_c00382{width:289.814230pt;}
._2e_c00382{width:295.599821pt;}
._1d_c00382{width:302.120748pt;}
._e_c00382{width:327.142229pt;}
._1a_c00382{width:336.488201pt;}
._1f_c00382{width:372.969095pt;}
._1b_c00382{width:374.270738pt;}
._1e_c00382{width:384.442086pt;}
._16_c00382{width:394.022714pt;}
._20_c00382{width:426.517042pt;}
._6_c00382{width:434.152319pt;}
._27_c00382{width:435.619880pt;}
._7_c00382{width:487.101513pt;}
._0_c00382{width:505.116165pt;}
._2d_c00382{width:1836.418247pt;}
.fs0_c00382{font-size:49.280107pt;}
.y0_c00382{bottom:0.000000pt;}
.y1e_c00382{bottom:2.561333pt;}
.y1b_c00382{bottom:2.562667pt;}
.y14_c00382{bottom:2.721333pt;}
.y9_c00382{bottom:2.722667pt;}
.y44_c00382{bottom:23.786400pt;}
.y37_c00382{bottom:365.706667pt;}
.y38_c00382{bottom:365.706712pt;}
.y35_c00382{bottom:373.544869pt;}
.y36_c00382{bottom:378.505333pt;}
.y34_c00382{bottom:397.704824pt;}
.y33_c00382{bottom:413.865299pt;}
.y32_c00382{bottom:430.025240pt;}
.y31_c00382{bottom:446.185715pt;}
.y3c_c00382{bottom:454.826979pt;}
.y30_c00382{bottom:462.345669pt;}
.y2f_c00382{bottom:478.506544pt;}
.y2e_c00382{bottom:494.666485pt;}
.y2d_c00382{bottom:510.826427pt;}
.y2b_c00382{bottom:527.306667pt;}
.y2c_c00382{bottom:527.306693pt;}
.y29_c00382{bottom:535.146320pt;}
.y2a_c00382{bottom:540.105333pt;}
.y28_c00382{bottom:559.626587pt;}
.y27_c00382{bottom:567.466667pt;}
.y26_c00382{bottom:591.946400pt;}
.y25_c00382{bottom:599.786493pt;}
.y39_c00382{bottom:600.266712pt;}
.y24_c00382{bottom:624.266760pt;}
.y23_c00382{bottom:632.106840pt;}
.y22_c00382{bottom:656.586573pt;}
.y21_c00382{bottom:664.426667pt;}
.y20_c00382{bottom:685.545333pt;}
.y1f_c00382{bottom:695.948000pt;}
.y1d_c00382{bottom:716.265333pt;}
.y1c_c00382{bottom:726.666667pt;}
.y1a_c00382{bottom:746.985333pt;}
.y19_c00382{bottom:757.386432pt;}
.y18_c00382{bottom:781.066667pt;}
.y16_c00382{bottom:788.906952pt;}
.y17_c00382{bottom:793.865333pt;}
.y3b_c00382{bottom:797.866979pt;}
.y15_c00382{bottom:813.386667pt;}
.y3a_c00382{bottom:813.386712pt;}
.y12_c00382{bottom:821.225837pt;}
.y13_c00382{bottom:826.185333pt;}
.y11_c00382{bottom:845.386712pt;}
.y10_c00382{bottom:861.546653pt;}
.yf_c00382{bottom:877.706595pt;}
.y3e_c00382{bottom:886.346979pt;}
.ye_c00382{bottom:893.866549pt;}
.yd_c00382{bottom:910.026504pt;}
.yc_c00382{bottom:926.186979pt;}
.ya_c00382{bottom:942.666667pt;}
.yb_c00382{bottom:942.666712pt;}
.y7_c00382{bottom:942.667021pt;}
.y6_c00382{bottom:950.507096pt;}
.y8_c00382{bottom:955.465333pt;}
.y5_c00382{bottom:974.667051pt;}
.y4_c00382{bottom:990.827925pt;}
.y3f_c00382{bottom:991.466712pt;}
.y3_c00382{bottom:1006.987867pt;}
.y2_c00382{bottom:1022.828000pt;}
.y40_c00382{bottom:1030.986445pt;}
.y3d_c00382{bottom:1030.986979pt;}
.y42_c00382{bottom:1030.988000pt;}
.y43_c00382{bottom:1031.307792pt;}
.y41_c00382{bottom:1035.945333pt;}
.y1_c00382{bottom:1061.866667pt;}
.he_c00382{height:13.758800pt;}
.h10_c00382{height:13.759867pt;}
.hd_c00382{height:13.760400pt;}
.h7_c00382{height:13.919333pt;}
.h14_c00382{height:13.919733pt;}
.h9_c00382{height:13.920267pt;}
.h12_c00382{height:35.371952pt;}
.h2_c00382{height:35.877265pt;}
.h3_c00382{height:36.651120pt;}
.h4_c00382{height:36.653200pt;}
.hf_c00382{height:66.596006pt;}
.hc_c00382{height:66.598086pt;}
.h6_c00382{height:67.237692pt;}
.hb_c00382{height:68.011546pt;}
.ha_c00382{height:68.013626pt;}
.h13_c00382{height:68.651098pt;}
.h5_c00382{height:68.651120pt;}
.h11_c00382{height:68.653178pt;}
.h8_c00382{height:97.958513pt;}
.h15_c00382{height:100.011525pt;}
.h0_c00382{height:1122.666533pt;}
.h1_c00382{height:1122.666667pt;}
.w7_c00382{width:56.320267pt;}
.w6_c00382{width:120.480267pt;}
.w2_c00382{width:121.440133pt;}
.w3_c00382{width:140.640000pt;}
.w5_c00382{width:144.160000pt;}
.w4_c00382{width:145.760000pt;}
.w0_c00382{width:1587.999867pt;}
.w1_c00382{width:1588.000000pt;}
.x0_c00382{left:0.000000pt;}
.x1_c00382{left:124.597333pt;}
.x14_c00382{left:127.477600pt;}
.xb_c00382{left:159.157333pt;}
.xd_c00382{left:161.397333pt;}
.x9_c00382{left:163.795732pt;}
.x4_c00382{left:175.797885pt;}
.x3_c00382{left:179.316355pt;}
.x15_c00382{left:277.877860pt;}
.x5_c00382{left:444.279181pt;}
.x2_c00382{left:540.117333pt;}
.x6_c00382{left:658.198667pt;}
.xf_c00382{left:659.158667pt;}
.x10_c00382{left:683.317333pt;}
.x7_c00382{left:699.157333pt;}
.xe_c00382{left:1207.961072pt;}
.x12_c00382{left:1217.878778pt;}
.x11_c00382{left:1300.439750pt;}
.x13_c00382{left:1306.520519pt;}
.xc_c00382{left:1320.598667pt;}
.xa_c00382{left:1323.158667pt;}
.x8_c00382{left:1337.227439pt;}
.x16_c00382{left:1453.720000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_58ef2c7cf83f63114e734a7f.woff2')format("woff");}.ff1_c00383{font-family:ff1_c00383;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00383{transform:matrix(0.250220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250220,0.000000,0.000000,0.250000,0,0);}
.v2_c00383{vertical-align:-1.439064px;}
.v0_c00383{vertical-align:0.000000px;}
.v1_c00383{vertical-align:30.239040px;}
.ls0_c00383{letter-spacing:0.000000px;}
.sc__c00383{text-shadow:none;}
.sc0_c00383{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00383{-webkit-text-stroke:0px transparent;}
.sc0_c00383{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c00383{word-spacing:0.000000px;}
.ws6_c00383{word-spacing:70.954696px;}
.ws7_c00383{word-spacing:112.678696px;}
.wsc_c00383{word-spacing:152.426060px;}
.ws8_c00383{word-spacing:153.864260px;}
.ws0_c00383{word-spacing:194.117760px;}
.wsa_c00383{word-spacing:260.443987px;}
.ws3_c00383{word-spacing:260.449987px;}
.ws4_c00383{word-spacing:358.501400px;}
.ws1_c00383{word-spacing:358.503800px;}
.ws2_c00383{word-spacing:358.505600px;}
.wsb_c00383{word-spacing:358.508000px;}
.ws9_c00383{word-spacing:384.124315px;}
.ws5_c00383{word-spacing:384.130315px;}
._3d_c00383{margin-left:-4216.393921px;}
._3c_c00383{margin-left:-1125.340695px;}
._10_c00383{width:98.113168px;}
._24_c00383{width:103.342879px;}
._33_c00383{width:104.737084px;}
._17_c00383{width:107.320277px;}
._28_c00383{width:127.045180px;}
._18_c00383{width:128.482736px;}
._35_c00383{width:133.936281px;}
._32_c00383{width:147.604637px;}
._1a_c00383{width:149.042192px;}
._c_c00383{width:152.060577px;}
._13_c00383{width:155.516981px;}
._26_c00383{width:156.957431px;}
._d_c00383{width:159.258967px;}
._37_c00383{width:160.554215px;}
._2a_c00383{width:165.809011px;}
._1b_c00383{width:167.246566px;}
._21_c00383{width:168.466559px;}
._8_c00383{width:170.625787px;}
._27_c00383{width:173.957732px;}
._36_c00383{width:175.398182px;}
._14_c00383{width:176.835737px;}
._3_c00383{width:183.707060px;}
._1f_c00383{width:187.118119px;}
._9_c00383{width:188.555675px;}
._2c_c00383{width:190.714902px;}
._1c_c00383{width:200.862694px;}
._4_c00383{width:202.300732px;}
._31_c00383{width:206.728210px;}
._1d_c00383{width:211.966605px;}
._5_c00383{width:213.211682px;}
._25_c00383{width:237.007086px;}
._23_c00383{width:243.233439px;}
._16_c00383{width:273.929630px;}
._29_c00383{width:291.991175px;}
._19_c00383{width:293.428731px;}
._11_c00383{width:304.897337px;}
._34_c00383{width:311.821724px;}
._15_c00383{width:313.076376px;}
._1e_c00383{width:318.606697px;}
._7_c00383{width:320.046664px;}
._2e_c00383{width:355.211300px;}
._e_c00383{width:364.397183px;}
._38_c00383{width:371.932547px;}
._30_c00383{width:382.255193px;}
._2_c00383{width:397.485082px;}
._6_c00383{width:417.689973px;}
._1_c00383{width:460.912639px;}
._20_c00383{width:491.079598px;}
._a_c00383{width:492.319369px;}
._b_c00383{width:529.169996px;}
._39_c00383{width:579.720818px;}
._12_c00383{width:602.408147px;}
._0_c00383{width:615.568051px;}
._22_c00383{width:624.125849px;}
._2b_c00383{width:672.322552px;}
._f_c00383{width:698.941451px;}
._2d_c00383{width:733.471729px;}
._2f_c00383{width:760.085803px;}
._3b_c00383{width:1127.140052px;}
._3a_c00383{width:1202.746792px;}
._3e_c00383{width:1447.762804px;}
.fc0_c00383{color:rgb(0,0,0);}
.fs0_c00383{font-size:48.240120px;}
.y0_c00383{bottom:0.000000px;}
.y41_c00383{bottom:2.520000px;}
.y2f_c00383{bottom:2.521500px;}
.y47_c00383{bottom:26.039700px;}
.y44_c00383{bottom:219.539805px;}
.y43_c00383{bottom:226.919700px;}
.y40_c00383{bottom:246.720000px;}
.y3f_c00383{bottom:249.599169px;}
.y3e_c00383{bottom:256.979064px;}
.y42_c00383{bottom:256.980000px;}
.y3d_c00383{bottom:279.479064px;}
.y3c_c00383{bottom:294.418719px;}
.y3b_c00383{bottom:309.359544px;}
.y3a_c00383{bottom:324.299784px;}
.y39_c00383{bottom:339.240024px;}
.y38_c00383{bottom:354.180264px;}
.y37_c00383{bottom:369.119919px;}
.y36_c00383{bottom:384.060159px;}
.y35_c00383{bottom:399.000399px;}
.y34_c00383{bottom:413.940054px;}
.y33_c00383{bottom:428.880294px;}
.y32_c00383{bottom:444.000405px;}
.y31_c00383{bottom:451.380300px;}
.y2e_c00383{bottom:471.178500px;}
.y2d_c00383{bottom:474.066600px;}
.y30_c00383{bottom:481.440000px;}
.y2c_c00383{bottom:481.446495px;}
.y2b_c00383{bottom:503.946495px;}
.y2a_c00383{bottom:518.886735px;}
.y29_c00383{bottom:533.826975px;}
.y28_c00383{bottom:548.766630px;}
.y27_c00383{bottom:563.706870px;}
.y26_c00383{bottom:578.646525px;}
.y25_c00383{bottom:593.586180px;}
.y24_c00383{bottom:608.525835px;}
.y23_c00383{bottom:623.465490px;}
.y22_c00383{bottom:638.405145px;}
.y21_c00383{bottom:653.344800px;}
.y20_c00383{bottom:668.464920px;}
.y1f_c00383{bottom:675.845400px;}
.y1e_c00383{bottom:698.524635px;}
.y1d_c00383{bottom:705.905700px;}
.y1c_c00383{bottom:728.405700px;}
.y1b_c00383{bottom:743.345355px;}
.y1a_c00383{bottom:758.285010px;}
.y19_c00383{bottom:773.224665px;}
.y18_c00383{bottom:788.164320px;}
.y17_c00383{bottom:803.103975px;}
.y16_c00383{bottom:818.043630px;}
.y15_c00383{bottom:832.983285px;}
.y14_c00383{bottom:847.922940px;}
.y13_c00383{bottom:862.862595px;}
.y12_c00383{bottom:877.802250px;}
.y11_c00383{bottom:907.862670px;}
.y10_c00383{bottom:915.242565px;}
.yf_c00383{bottom:937.922385px;}
.ye_c00383{bottom:945.302865px;}
.yd_c00383{bottom:967.802865px;}
.yc_c00383{bottom:982.742520px;}
.yb_c00383{bottom:997.682760px;}
.ya_c00383{bottom:1012.622415px;}
.y9_c00383{bottom:1027.562070px;}
.y8_c00383{bottom:1042.501725px;}
.y7_c00383{bottom:1057.441380px;}
.y6_c00383{bottom:1072.381035px;}
.y5_c00383{bottom:1087.320690px;}
.y4_c00383{bottom:1102.260345px;}
.y3_c00383{bottom:1117.200000px;}
.y2_c00383{bottom:1143.300000px;}
.y45_c00383{bottom:1151.761194px;}
.y46_c00383{bottom:1170.300894px;}
.y1_c00383{bottom:1195.500000px;}
.h9_c00383{height:13.320120px;}
.h2_c00383{height:35.120126px;}
.h4_c00383{height:64.639646px;}
.h8_c00383{height:64.639682px;}
.h6_c00383{height:64.641986px;}
.h5_c00383{height:65.356826px;}
.h3_c00383{height:65.359166px;}
.h7_c00383{height:65.361506px;}
.h0_c00383{height:1262.999850px;}
.h1_c00383{height:1263.000000px;}
.w2_c00383{width:81.900000px;}
.w3_c00383{width:82.619550px;}
.w0_c00383{width:1786.499850px;}
.w1_c00383{width:1786.500000px;}
.x0_c00383{left:0.000000px;}
.x1_c00383{left:141.252600px;}
.xb_c00383{left:143.048811px;}
.x5_c00383{left:165.553221px;}
.x7_c00383{left:167.173896px;}
.x4_c00383{left:238.093401px;}
.x3_c00383{left:241.512927px;}
.x6_c00383{left:536.713155px;}
.xc_c00383{left:630.848697px;}
.x2_c00383{left:678.912000px;}
.x8_c00383{left:913.273500px;}
.xa_c00383{left:1088.413500px;}
.xd_c00383{left:1112.709362px;}
.x9_c00383{left:1118.293500px;}
.xe_c00383{left:1645.335000px;}
@media print{
.v2_c00383{vertical-align:-1.279168pt;}
.v0_c00383{vertical-align:0.000000pt;}
.v1_c00383{vertical-align:26.879147pt;}
.ls0_c00383{letter-spacing:0.000000pt;}
.wsd_c00383{word-spacing:0.000000pt;}
.ws6_c00383{word-spacing:63.070841pt;}
.ws7_c00383{word-spacing:100.158841pt;}
.wsc_c00383{word-spacing:135.489831pt;}
.ws8_c00383{word-spacing:136.768231pt;}
.ws0_c00383{word-spacing:172.549120pt;}
.wsa_c00383{word-spacing:231.505766pt;}
.ws3_c00383{word-spacing:231.511099pt;}
.ws4_c00383{word-spacing:318.667911pt;}
.ws1_c00383{word-spacing:318.670044pt;}
.ws2_c00383{word-spacing:318.671644pt;}
.wsb_c00383{word-spacing:318.673778pt;}
.ws9_c00383{word-spacing:341.443835pt;}
.ws5_c00383{word-spacing:341.449169pt;}
._3d_c00383{margin-left:-3747.905707pt;}
._3c_c00383{margin-left:-1000.302840pt;}
._10_c00383{width:87.211705pt;}
._24_c00383{width:91.860337pt;}
._33_c00383{width:93.099630pt;}
._17_c00383{width:95.395802pt;}
._28_c00383{width:112.929049pt;}
._18_c00383{width:114.206876pt;}
._35_c00383{width:119.054472pt;}
._32_c00383{width:131.204122pt;}
._1a_c00383{width:132.481949pt;}
._c_c00383{width:135.164957pt;}
._13_c00383{width:138.237317pt;}
._26_c00383{width:139.517717pt;}
._d_c00383{width:141.563527pt;}
._37_c00383{width:142.714857pt;}
._2a_c00383{width:147.385787pt;}
._1b_c00383{width:148.663615pt;}
._21_c00383{width:149.748053pt;}
._8_c00383{width:151.667366pt;}
._27_c00383{width:154.629095pt;}
._36_c00383{width:155.909495pt;}
._14_c00383{width:157.187322pt;}
._3_c00383{width:163.295165pt;}
._1f_c00383{width:166.327217pt;}
._9_c00383{width:167.605044pt;}
._2c_c00383{width:169.524358pt;}
._1c_c00383{width:178.544617pt;}
._4_c00383{width:179.822873pt;}
._31_c00383{width:183.758409pt;}
._1d_c00383{width:188.414760pt;}
._5_c00383{width:189.521495pt;}
._25_c00383{width:210.672966pt;}
._23_c00383{width:216.207501pt;}
._16_c00383{width:243.493004pt;}
._29_c00383{width:259.547711pt;}
._19_c00383{width:260.825538pt;}
._11_c00383{width:271.019855pt;}
._34_c00383{width:277.174865pt;}
._15_c00383{width:278.290112pt;}
._1e_c00383{width:283.205952pt;}
._7_c00383{width:284.485924pt;}
._2e_c00383{width:315.743377pt;}
._e_c00383{width:323.908607pt;}
._38_c00383{width:330.606708pt;}
._30_c00383{width:339.782394pt;}
._2_c00383{width:353.320073pt;}
._6_c00383{width:371.279976pt;}
._1_c00383{width:409.700123pt;}
._20_c00383{width:436.515198pt;}
._a_c00383{width:437.617217pt;}
._b_c00383{width:470.373330pt;}
._39_c00383{width:515.307394pt;}
._12_c00383{width:535.473908pt;}
._0_c00383{width:547.171601pt;}
._22_c00383{width:554.778532pt;}
._2b_c00383{width:597.620047pt;}
._f_c00383{width:621.281289pt;}
._2d_c00383{width:651.974870pt;}
._2f_c00383{width:675.631825pt;}
._3b_c00383{width:1001.902268pt;}
._3a_c00383{width:1069.108259pt;}
._3e_c00383{width:1286.900270pt;}
.fs0_c00383{font-size:42.880107pt;}
.y0_c00383{bottom:0.000000pt;}
.y41_c00383{bottom:2.240000pt;}
.y2f_c00383{bottom:2.241333pt;}
.y47_c00383{bottom:23.146400pt;}
.y44_c00383{bottom:195.146493pt;}
.y43_c00383{bottom:201.706400pt;}
.y40_c00383{bottom:219.306667pt;}
.y3f_c00383{bottom:221.865928pt;}
.y3e_c00383{bottom:228.425835pt;}
.y42_c00383{bottom:228.426667pt;}
.y3d_c00383{bottom:248.425835pt;}
.y3c_c00383{bottom:261.705528pt;}
.y3b_c00383{bottom:274.986261pt;}
.y3a_c00383{bottom:288.266475pt;}
.y39_c00383{bottom:301.546688pt;}
.y38_c00383{bottom:314.826901pt;}
.y37_c00383{bottom:328.106595pt;}
.y36_c00383{bottom:341.386808pt;}
.y35_c00383{bottom:354.667021pt;}
.y34_c00383{bottom:367.946715pt;}
.y33_c00383{bottom:381.226928pt;}
.y32_c00383{bottom:394.667027pt;}
.y31_c00383{bottom:401.226933pt;}
.y2e_c00383{bottom:418.825333pt;}
.y2d_c00383{bottom:421.392533pt;}
.y30_c00383{bottom:427.946667pt;}
.y2c_c00383{bottom:427.952440pt;}
.y2b_c00383{bottom:447.952440pt;}
.y2a_c00383{bottom:461.232653pt;}
.y29_c00383{bottom:474.512867pt;}
.y28_c00383{bottom:487.792560pt;}
.y27_c00383{bottom:501.072773pt;}
.y26_c00383{bottom:514.352467pt;}
.y25_c00383{bottom:527.632160pt;}
.y24_c00383{bottom:540.911853pt;}
.y23_c00383{bottom:554.191547pt;}
.y22_c00383{bottom:567.471240pt;}
.y21_c00383{bottom:580.750933pt;}
.y20_c00383{bottom:594.191040pt;}
.y1f_c00383{bottom:600.751467pt;}
.y1e_c00383{bottom:620.910787pt;}
.y1d_c00383{bottom:627.471733pt;}
.y1c_c00383{bottom:647.471733pt;}
.y1b_c00383{bottom:660.751427pt;}
.y1a_c00383{bottom:674.031120pt;}
.y19_c00383{bottom:687.310813pt;}
.y18_c00383{bottom:700.590507pt;}
.y17_c00383{bottom:713.870200pt;}
.y16_c00383{bottom:727.149893pt;}
.y15_c00383{bottom:740.429587pt;}
.y14_c00383{bottom:753.709280pt;}
.y13_c00383{bottom:766.988973pt;}
.y12_c00383{bottom:780.268667pt;}
.y11_c00383{bottom:806.989040pt;}
.y10_c00383{bottom:813.548947pt;}
.yf_c00383{bottom:833.708787pt;}
.ye_c00383{bottom:840.269213pt;}
.yd_c00383{bottom:860.269213pt;}
.yc_c00383{bottom:873.548907pt;}
.yb_c00383{bottom:886.829120pt;}
.ya_c00383{bottom:900.108813pt;}
.y9_c00383{bottom:913.388507pt;}
.y8_c00383{bottom:926.668200pt;}
.y7_c00383{bottom:939.947893pt;}
.y6_c00383{bottom:953.227587pt;}
.y5_c00383{bottom:966.507280pt;}
.y4_c00383{bottom:979.786973pt;}
.y3_c00383{bottom:993.066667pt;}
.y2_c00383{bottom:1016.266667pt;}
.y45_c00383{bottom:1023.787728pt;}
.y46_c00383{bottom:1040.267461pt;}
.y1_c00383{bottom:1062.666667pt;}
.h9_c00383{height:11.840107pt;}
.h2_c00383{height:31.217890pt;}
.h4_c00383{height:57.457463pt;}
.h8_c00383{height:57.457495pt;}
.h6_c00383{height:57.459543pt;}
.h5_c00383{height:58.094957pt;}
.h3_c00383{height:58.097037pt;}
.h7_c00383{height:58.099117pt;}
.h0_c00383{height:1122.666533pt;}
.h1_c00383{height:1122.666667pt;}
.w2_c00383{width:72.800000pt;}
.w3_c00383{width:73.439600pt;}
.w0_c00383{width:1587.999867pt;}
.w1_c00383{width:1588.000000pt;}
.x0_c00383{left:0.000000pt;}
.x1_c00383{left:125.557867pt;}
.xb_c00383{left:127.154498pt;}
.x5_c00383{left:147.158419pt;}
.x7_c00383{left:148.599019pt;}
.x4_c00383{left:211.638578pt;}
.x3_c00383{left:214.678158pt;}
.x6_c00383{left:477.078360pt;}
.xc_c00383{left:560.754397pt;}
.x2_c00383{left:603.477333pt;}
.x8_c00383{left:811.798667pt;}
.xa_c00383{left:967.478667pt;}
.xd_c00383{left:989.074988pt;}
.x9_c00383{left:994.038667pt;}
.xe_c00383{left:1462.520000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e37935e653c7bb1148a783a1.woff2')format("woff");}.ff1_c00384{font-family:ff1_c00384;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00384{transform:matrix(0.249978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249978,0.000000,0.000000,0.250000,0,0);}
.v0_c00384{vertical-align:0.000000px;}
.v1_c00384{vertical-align:41.041380px;}
.v2_c00384{vertical-align:46.080480px;}
.ls0_c00384{letter-spacing:0.000000px;}
.sc__c00384{text-shadow:none;}
.sc0_c00384{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00384{-webkit-text-stroke:0px transparent;}
.sc0_c00384{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00384{word-spacing:-18.414720px;}
.ws6_c00384{word-spacing:0.000000px;}
.ws2_c00384{word-spacing:47.651520px;}
.ws3_c00384{word-spacing:88.339440px;}
.ws4_c00384{word-spacing:134.415533px;}
.ws0_c00384{word-spacing:284.769734px;}
.ws5_c00384{word-spacing:882.885360px;}
._e_c00384{margin-left:-5283.560736px;}
._f_c00384{margin-left:-3841.761024px;}
._b_c00384{width:134.506944px;}
._c_c00384{width:143.896464px;}
._7_c00384{width:145.158998px;}
._0_c00384{width:162.123725px;}
._6_c00384{width:166.217357px;}
._10_c00384{width:186.841891px;}
._d_c00384{width:195.449731px;}
._5_c00384{width:206.201146px;}
._a_c00384{width:311.379005px;}
._4_c00384{width:336.458794px;}
._3_c00384{width:374.695834px;}
._8_c00384{width:472.933728px;}
._9_c00384{width:486.465235px;}
._2_c00384{width:508.786790px;}
._1_c00384{width:544.632566px;}
.fc0_c00384{color:rgb(0,0,0);}
.fs0_c00384{font-size:66.240000px;}
.y0_c00384{bottom:0.000000px;}
.y5_c00384{bottom:3.601500px;}
.yb_c00384{bottom:3.603000px;}
.y23_c00384{bottom:40.259700px;}
.y1a_c00384{bottom:569.101200px;}
.y19_c00384{bottom:589.621350px;}
.y18_c00384{bottom:610.141500px;}
.y17_c00384{bottom:641.281050px;}
.y16_c00384{bottom:661.801200px;}
.y15_c00384{bottom:682.321350px;}
.y14_c00384{bottom:704.281050px;}
.y20_c00384{bottom:715.261050px;}
.y13_c00384{bottom:746.581650px;}
.y12_c00384{bottom:871.501155px;}
.y11_c00384{bottom:892.021305px;}
.y21_c00384{bottom:903.181050px;}
.y10_c00384{bottom:913.441395px;}
.yf_c00384{bottom:933.961545px;}
.yc_c00384{bottom:954.841500px;}
.ye_c00384{bottom:965.101200px;}
.ya_c00384{bottom:971.758500px;}
.yd_c00384{bottom:985.621350px;}
.y9_c00384{bottom:995.881545px;}
.y1f_c00384{bottom:996.781050px;}
.y6_c00384{bottom:1016.761500px;}
.y1e_c00384{bottom:1017.301200px;}
.y8_c00384{bottom:1027.021200px;}
.y4_c00384{bottom:1033.678500px;}
.y7_c00384{bottom:1047.541350px;}
.y3_c00384{bottom:1057.801200px;}
.y2_c00384{bottom:1079.761500px;}
.y22_c00384{bottom:1090.741050px;}
.y1b_c00384{bottom:1090.741350px;}
.y1d_c00384{bottom:1090.741500px;}
.y1c_c00384{bottom:1098.658500px;}
.y1_c00384{bottom:1128.541500px;}
.h6_c00384{height:18.360300px;}
.h3_c00384{height:18.540300px;}
.h2_c00384{height:48.224531px;}
.h5_c00384{height:89.263571px;}
.h4_c00384{height:89.265911px;}
.h7_c00384{height:94.305011px;}
.h0_c00384{height:1262.999850px;}
.h1_c00384{height:1263.000000px;}
.w3_c00384{width:75.420150px;}
.w2_c00384{width:129.059700px;}
.w0_c00384{width:1786.499850px;}
.w1_c00384{width:1786.500000px;}
.x0_c00384{left:0.000000px;}
.x1_c00384{left:76.452000px;}
.x4_c00384{left:80.412300px;}
.x11_c00384{left:83.653147px;}
.x3_c00384{left:91.392413px;}
.x8_c00384{left:97.871490px;}
.x5_c00384{left:102.355650px;}
.xb_c00384{left:105.250968px;}
.x10_c00384{left:110.112945px;}
.xa_c00384{left:131.530872px;}
.xd_c00384{left:217.031442px;}
.x7_c00384{left:219.552453px;}
.x9_c00384{left:229.631906px;}
.x6_c00384{left:237.192118px;}
.xc_c00384{left:239.170566px;}
.xe_c00384{left:271.931466px;}
.x2_c00384{left:354.732000px;}
.xf_c00384{left:373.271048px;}
.x13_c00384{left:655.512000px;}
.x18_c00384{left:997.333999px;}
.x14_c00384{left:1133.233935px;}
.x17_c00384{left:1155.013780px;}
.x16_c00384{left:1165.273547px;}
.x12_c00384{left:1168.153138px;}
.x15_c00384{left:1231.873602px;}
.x19_c00384{left:1621.035000px;}
@media print{
.v0_c00384{vertical-align:0.000000pt;}
.v1_c00384{vertical-align:36.481227pt;}
.v2_c00384{vertical-align:40.960427pt;}
.ls0_c00384{letter-spacing:0.000000pt;}
.ws1_c00384{word-spacing:-16.368640pt;}
.ws6_c00384{word-spacing:0.000000pt;}
.ws2_c00384{word-spacing:42.356907pt;}
.ws3_c00384{word-spacing:78.523947pt;}
.ws4_c00384{word-spacing:119.480474pt;}
.ws0_c00384{word-spacing:253.128653pt;}
.ws5_c00384{word-spacing:784.786987pt;}
._e_c00384{margin-left:-4696.498432pt;}
._f_c00384{margin-left:-3414.898688pt;}
._b_c00384{width:119.561728pt;}
._c_c00384{width:127.907968pt;}
._7_c00384{width:129.030221pt;}
._0_c00384{width:144.109978pt;}
._6_c00384{width:147.748762pt;}
._10_c00384{width:166.081681pt;}
._d_c00384{width:173.733094pt;}
._5_c00384{width:183.289907pt;}
._a_c00384{width:276.781338pt;}
._4_c00384{width:299.074483pt;}
._3_c00384{width:333.062963pt;}
._8_c00384{width:420.385536pt;}
._9_c00384{width:432.413542pt;}
._2_c00384{width:452.254925pt;}
._1_c00384{width:484.117837pt;}
.fs0_c00384{font-size:58.880000pt;}
.y0_c00384{bottom:0.000000pt;}
.y5_c00384{bottom:3.201333pt;}
.yb_c00384{bottom:3.202667pt;}
.y23_c00384{bottom:35.786400pt;}
.y1a_c00384{bottom:505.867733pt;}
.y19_c00384{bottom:524.107867pt;}
.y18_c00384{bottom:542.348000pt;}
.y17_c00384{bottom:570.027600pt;}
.y16_c00384{bottom:588.267733pt;}
.y15_c00384{bottom:606.507867pt;}
.y14_c00384{bottom:626.027600pt;}
.y20_c00384{bottom:635.787600pt;}
.y13_c00384{bottom:663.628133pt;}
.y12_c00384{bottom:774.667693pt;}
.y11_c00384{bottom:792.907827pt;}
.y21_c00384{bottom:802.827600pt;}
.y10_c00384{bottom:811.947907pt;}
.yf_c00384{bottom:830.188040pt;}
.yc_c00384{bottom:848.748000pt;}
.ye_c00384{bottom:857.867733pt;}
.ya_c00384{bottom:863.785333pt;}
.yd_c00384{bottom:876.107867pt;}
.y9_c00384{bottom:885.228040pt;}
.y1f_c00384{bottom:886.027600pt;}
.y6_c00384{bottom:903.788000pt;}
.y1e_c00384{bottom:904.267733pt;}
.y8_c00384{bottom:912.907733pt;}
.y4_c00384{bottom:918.825333pt;}
.y7_c00384{bottom:931.147867pt;}
.y3_c00384{bottom:940.267733pt;}
.y2_c00384{bottom:959.788000pt;}
.y22_c00384{bottom:969.547600pt;}
.y1b_c00384{bottom:969.547867pt;}
.y1d_c00384{bottom:969.548000pt;}
.y1c_c00384{bottom:976.585333pt;}
.y1_c00384{bottom:1003.148000pt;}
.h6_c00384{height:16.320267pt;}
.h3_c00384{height:16.480267pt;}
.h2_c00384{height:42.866250pt;}
.h5_c00384{height:79.345397pt;}
.h4_c00384{height:79.347477pt;}
.h7_c00384{height:83.826677pt;}
.h0_c00384{height:1122.666533pt;}
.h1_c00384{height:1122.666667pt;}
.w3_c00384{width:67.040133pt;}
.w2_c00384{width:114.719733pt;}
.w0_c00384{width:1587.999867pt;}
.w1_c00384{width:1588.000000pt;}
.x0_c00384{left:0.000000pt;}
.x1_c00384{left:67.957333pt;}
.x4_c00384{left:71.477600pt;}
.x11_c00384{left:74.358353pt;}
.x3_c00384{left:81.237700pt;}
.x8_c00384{left:86.996880pt;}
.x5_c00384{left:90.982800pt;}
.xb_c00384{left:93.556416pt;}
.x10_c00384{left:97.878173pt;}
.xa_c00384{left:116.916330pt;}
.xd_c00384{left:192.916838pt;}
.x7_c00384{left:195.157736pt;}
.x9_c00384{left:204.117250pt;}
.x6_c00384{left:210.837438pt;}
.xc_c00384{left:212.596059pt;}
.xe_c00384{left:241.716858pt;}
.x2_c00384{left:315.317333pt;}
.xf_c00384{left:331.796487pt;}
.x13_c00384{left:582.677333pt;}
.x18_c00384{left:886.519110pt;}
.x14_c00384{left:1007.319053pt;}
.x17_c00384{left:1026.678915pt;}
.x16_c00384{left:1035.798708pt;}
.x12_c00384{left:1038.358344pt;}
.x15_c00384{left:1094.998757pt;}
.x19_c00384{left:1440.920000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_6a8b014dccde31f24ee2d310.woff2')format("woff");}.ff1_c00385{font-family:ff1_c00385;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00385;src:url('chunks/assets/font_fbdcc93de28019f4efdff6b6.woff2')format("woff");}.ff2_c00385{font-family:ff2_c00385;line-height:0.895996;font-style: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.249951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249951,0.000000,0.000000,0.250000,0,0);}
.v4_c00385{vertical-align:-27.360960px;}
.v3_c00385{vertical-align:-2.160936px;}
.v0_c00385{vertical-align:0.000000px;}
.v2_c00385{vertical-align:1.439064px;}
.v1_c00385{vertical-align:28.080480px;}
.ls0_c00385{letter-spacing:0.000000px;}
.sc__c00385{text-shadow:none;}
.sc0_c00385{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00385{-webkit-text-stroke:0px transparent;}
.sc0_c00385{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00385{word-spacing:-9.925920px;}
.ws7_c00385{word-spacing:0.000000px;}
.ws1_c00385{word-spacing:194.782320px;}
.ws3_c00385{word-spacing:216.111360px;}
.ws5_c00385{word-spacing:221.839320px;}
.ws4_c00385{word-spacing:221.841720px;}
.ws2_c00385{word-spacing:222.793320px;}
.ws6_c00385{word-spacing:222.795720px;}
._10_c00385{margin-left:-2548.260360px;}
._f_c00385{margin-left:-1790.187984px;}
._1_c00385{width:44.589341px;}
._e_c00385{width:105.815453px;}
._4_c00385{width:157.053089px;}
._a_c00385{width:164.055694px;}
._2_c00385{width:174.493282px;}
._d_c00385{width:180.285890px;}
._6_c00385{width:202.584514px;}
._0_c00385{width:207.470614px;}
._7_c00385{width:216.990713px;}
._8_c00385{width:228.607687px;}
._12_c00385{width:264.090960px;}
._3_c00385{width:288.907956px;}
._9_c00385{width:291.769783px;}
._5_c00385{width:311.734058px;}
._c_c00385{width:320.101697px;}
._11_c00385{width:335.094228px;}
._b_c00385{width:419.457521px;}
._13_c00385{width:816.274320px;}
.fc0_c00385{color:rgb(0,0,0);}
.fs0_c00385{font-size:43.920000px;}
.y0_c00385{bottom:0.000000px;}
.y13_c00385{bottom:2.877000px;}
.y20_c00385{bottom:2.878500px;}
.y24_c00385{bottom:38.579250px;}
.y1d_c00385{bottom:424.678497px;}
.y1b_c00385{bottom:430.978497px;}
.y1c_c00385{bottom:438.178497px;}
.y1a_c00385{bottom:459.418737px;}
.y17_c00385{bottom:480.658380px;}
.y19_c00385{bottom:481.558386px;}
.y15_c00385{bottom:494.878500px;}
.y18_c00385{bottom:495.058386px;}
.y16_c00385{bottom:509.098620px;}
.y11_c00385{bottom:523.320291px;}
.y14_c00385{bottom:523.678500px;}
.y12_c00385{bottom:535.021500px;}
.yf_c00385{bottom:537.540411px;}
.y10_c00385{bottom:551.760531px;}
.yc_c00385{bottom:565.980639px;}
.ye_c00385{bottom:566.880645px;}
.yb_c00385{bottom:573.180639px;}
.yd_c00385{bottom:580.380645px;}
.ya_c00385{bottom:594.420288px;}
.y9_c00385{bottom:601.620288px;}
.y6_c00385{bottom:622.860516px;}
.y8_c00385{bottom:623.760522px;}
.y5_c00385{bottom:630.060516px;}
.y7_c00385{bottom:637.260522px;}
.y4_c00385{bottom:651.300750px;}
.y3_c00385{bottom:658.500750px;}
.y2_c00385{bottom:701.160000px;}
.y23_c00385{bottom:701.520000px;}
.y1e_c00385{bottom:708.719763px;}
.y21_c00385{bottom:708.720000px;}
.y22_c00385{bottom:712.861500px;}
.y1f_c00385{bottom:734.281500px;}
.y1_c00385{bottom:763.260000px;}
.h8_c00385{height:12.779880px;}
.h7_c00385{height:13.320120px;}
.h3_c00385{height:31.524609px;}
.h2_c00385{height:31.974961px;}
.h5_c00385{height:32.963673px;}
.h6_c00385{height:32.966013px;}
.h4_c00385{height:59.605089px;}
.h9_c00385{height:60.324609px;}
.h0_c00385{height:892.499850px;}
.h1_c00385{height:892.500000px;}
.w3_c00385{width:45.720150px;}
.w4_c00385{width:78.300000px;}
.w2_c00385{width:281.520000px;}
.w0_c00385{width:1262.999850px;}
.w1_c00385{width:1263.000000px;}
.x0_c00385{left:0.000000px;}
.x1_c00385{left:76.485900px;}
.xa_c00385{left:78.830891px;}
.x5_c00385{left:88.548857px;}
.x3_c00385{left:89.808309px;}
.x8_c00385{left:92.330647px;}
.xf_c00385{left:118.066095px;}
.xc_c00385{left:299.150080px;}
.xb_c00385{left:324.710444px;}
.x4_c00385{left:327.048663px;}
.x9_c00385{left:331.730725px;}
.xd_c00385{left:333.350091px;}
.x2_c00385{left:411.108000px;}
.x11_c00385{left:483.648000px;}
.x6_c00385{left:497.150096px;}
.x7_c00385{left:505.790329px;}
.x12_c00385{left:564.285000px;}
.x13_c00385{left:592.728000px;}
.xe_c00385{left:725.025000px;}
.x10_c00385{left:1072.605814px;}
.x14_c00385{left:1134.889500px;}
@media print{
.v4_c00385{vertical-align:-24.320853pt;}
.v3_c00385{vertical-align:-1.920832pt;}
.v0_c00385{vertical-align:0.000000pt;}
.v2_c00385{vertical-align:1.279168pt;}
.v1_c00385{vertical-align:24.960427pt;}
.ls0_c00385{letter-spacing:0.000000pt;}
.ws0_c00385{word-spacing:-8.823040pt;}
.ws7_c00385{word-spacing:0.000000pt;}
.ws1_c00385{word-spacing:173.139840pt;}
.ws3_c00385{word-spacing:192.098987pt;}
.ws5_c00385{word-spacing:197.190507pt;}
.ws4_c00385{word-spacing:197.192640pt;}
.ws2_c00385{word-spacing:198.038507pt;}
.ws6_c00385{word-spacing:198.040640pt;}
._10_c00385{margin-left:-2265.120320pt;}
._f_c00385{margin-left:-1591.278208pt;}
._1_c00385{width:39.634970pt;}
._e_c00385{width:94.058180pt;}
._4_c00385{width:139.602746pt;}
._a_c00385{width:145.827283pt;}
._2_c00385{width:155.105139pt;}
._d_c00385{width:160.254125pt;}
._6_c00385{width:180.075123pt;}
._0_c00385{width:184.418323pt;}
._7_c00385{width:192.880634pt;}
._8_c00385{width:203.206833pt;}
._12_c00385{width:234.747520pt;}
._3_c00385{width:256.807072pt;}
._9_c00385{width:259.350918pt;}
._5_c00385{width:277.096941pt;}
._c_c00385{width:284.534842pt;}
._11_c00385{width:297.861536pt;}
._b_c00385{width:372.851130pt;}
._13_c00385{width:725.577173pt;}
.fs0_c00385{font-size:39.040000pt;}
.y0_c00385{bottom:0.000000pt;}
.y13_c00385{bottom:2.557333pt;}
.y20_c00385{bottom:2.558667pt;}
.y24_c00385{bottom:34.292667pt;}
.y1d_c00385{bottom:377.491997pt;}
.y1b_c00385{bottom:383.091997pt;}
.y1c_c00385{bottom:389.491997pt;}
.y1a_c00385{bottom:408.372211pt;}
.y17_c00385{bottom:427.251893pt;}
.y19_c00385{bottom:428.051899pt;}
.y15_c00385{bottom:439.892000pt;}
.y18_c00385{bottom:440.051899pt;}
.y16_c00385{bottom:452.532107pt;}
.y11_c00385{bottom:465.173592pt;}
.y14_c00385{bottom:465.492000pt;}
.y12_c00385{bottom:475.574667pt;}
.yf_c00385{bottom:477.813699pt;}
.y10_c00385{bottom:490.453805pt;}
.yc_c00385{bottom:503.093901pt;}
.ye_c00385{bottom:503.893907pt;}
.yb_c00385{bottom:509.493901pt;}
.yd_c00385{bottom:515.893907pt;}
.ya_c00385{bottom:528.373589pt;}
.y9_c00385{bottom:534.773589pt;}
.y6_c00385{bottom:553.653792pt;}
.y8_c00385{bottom:554.453797pt;}
.y5_c00385{bottom:560.053792pt;}
.y7_c00385{bottom:566.453797pt;}
.y4_c00385{bottom:578.934000pt;}
.y3_c00385{bottom:585.334000pt;}
.y2_c00385{bottom:623.253333pt;}
.y23_c00385{bottom:623.573333pt;}
.y1e_c00385{bottom:629.973123pt;}
.y21_c00385{bottom:629.973333pt;}
.y22_c00385{bottom:633.654667pt;}
.y1f_c00385{bottom:652.694667pt;}
.y1_c00385{bottom:678.453333pt;}
.h8_c00385{height:11.359893pt;}
.h7_c00385{height:11.840107pt;}
.h3_c00385{height:28.021875pt;}
.h2_c00385{height:28.422187pt;}
.h5_c00385{height:29.301043pt;}
.h6_c00385{height:29.303123pt;}
.h4_c00385{height:52.982302pt;}
.h9_c00385{height:53.621875pt;}
.h0_c00385{height:793.333200pt;}
.h1_c00385{height:793.333333pt;}
.w3_c00385{width:40.640133pt;}
.w4_c00385{width:69.600000pt;}
.w2_c00385{width:250.240000pt;}
.w0_c00385{width:1122.666533pt;}
.w1_c00385{width:1122.666667pt;}
.x0_c00385{left:0.000000pt;}
.x1_c00385{left:67.987467pt;}
.xa_c00385{left:70.071904pt;}
.x5_c00385{left:78.710095pt;}
.x3_c00385{left:79.829608pt;}
.x8_c00385{left:82.071686pt;}
.xf_c00385{left:104.947640pt;}
.xc_c00385{left:265.911182pt;}
.xb_c00385{left:288.631505pt;}
.x4_c00385{left:290.709923pt;}
.x9_c00385{left:294.871756pt;}
.xd_c00385{left:296.311192pt;}
.x2_c00385{left:365.429333pt;}
.x11_c00385{left:429.909333pt;}
.x6_c00385{left:441.911197pt;}
.x7_c00385{left:449.591403pt;}
.x12_c00385{left:501.586667pt;}
.x13_c00385{left:526.869333pt;}
.xe_c00385{left:644.466667pt;}
.x10_c00385{left:953.427390pt;}
.x14_c00385{left:1008.790667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1e1cd259a103af623ade696f.woff2')format("woff");}.ff1_c00386{font-family:ff1_c00386;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00386;src:url('chunks/assets/font_45773f7121152b9b0cb8fe18.woff2')format("woff");}.ff2_c00386{font-family:ff2_c00386;line-height:0.895996;font-style: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);}
.v3_c00386{vertical-align:-33.841380px;}
.v0_c00386{vertical-align:0.000000px;}
.v1_c00386{vertical-align:33.119520px;}
.v2_c00386{vertical-align:65.519520px;}
.ls0_c00386{letter-spacing:0.000000px;}
.sc__c00386{text-shadow:none;}
.sc0_c00386{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00386{-webkit-text-stroke:0px transparent;}
.sc0_c00386{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8_c00386{word-spacing:0.000000px;}
.ws6_c00386{word-spacing:137.246269px;}
.ws1_c00386{word-spacing:165.288814px;}
.ws5_c00386{word-spacing:165.294814px;}
.ws2_c00386{word-spacing:166.227139px;}
.ws4_c00386{word-spacing:221.152840px;}
.ws0_c00386{word-spacing:240.375360px;}
.ws3_c00386{word-spacing:298.765836px;}
.ws7_c00386{word-spacing:349.827027px;}
._7_c00386{margin-left:-3754.473289px;}
._0_c00386{width:178.228231px;}
._5_c00386{width:181.439332px;}
._6_c00386{width:218.860547px;}
._4_c00386{width:220.187744px;}
._2_c00386{width:231.621007px;}
._1_c00386{width:302.544260px;}
._3_c00386{width:345.215557px;}
.fc0_c00386{color:rgb(0,0,0);}
.fs0_c00386{font-size:54.720120px;}
.y0_c00386{bottom:0.000000px;}
.y24_c00386{bottom:2.878500px;}
.y29_c00386{bottom:39.659250px;}
.y1d_c00386{bottom:483.184125px;}
.y1f_c00386{bottom:483.185175px;}
.y21_c00386{bottom:483.185625px;}
.y1c_c00386{bottom:483.364545px;}
.y1e_c00386{bottom:499.744425px;}
.y20_c00386{bottom:499.744875px;}
.y1b_c00386{bottom:499.923795px;}
.y1a_c00386{bottom:516.665145px;}
.y18_c00386{bottom:516.843405px;}
.y19_c00386{bottom:533.224395px;}
.y17_c00386{bottom:533.403105px;}
.y12_c00386{bottom:550.143555px;}
.y14_c00386{bottom:550.144005px;}
.y16_c00386{bottom:550.144455px;}
.y11_c00386{bottom:558.603255px;}
.y13_c00386{bottom:566.703255px;}
.y15_c00386{bottom:566.703705px;}
.ye_c00386{bottom:583.622355px;}
.y10_c00386{bottom:583.623405px;}
.yc_c00386{bottom:592.081650px;}
.yd_c00386{bottom:600.181605px;}
.yf_c00386{bottom:600.182655px;}
.y9_c00386{bottom:617.101350px;}
.yb_c00386{bottom:617.101800px;}
.y8_c00386{bottom:617.281170px;}
.ya_c00386{bottom:633.661050px;}
.y7_c00386{bottom:633.840870px;}
.y6_c00386{bottom:650.581170px;}
.y4_c00386{bottom:650.761050px;}
.y5_c00386{bottom:667.140420px;}
.y3_c00386{bottom:667.320300px;}
.y2_c00386{bottom:700.980000px;}
.y27_c00386{bottom:701.520000px;}
.y25_c00386{bottom:709.800000px;}
.y22_c00386{bottom:709.807125px;}
.y26_c00386{bottom:715.201500px;}
.y28_c00386{bottom:718.079700px;}
.y23_c00386{bottom:732.121500px;}
.y1_c00386{bottom:760.920000px;}
.h7_c00386{height:14.939655px;}
.h8_c00386{height:15.120150px;}
.h9_c00386{height:39.276649px;}
.h2_c00386{height:39.837744px;}
.h5_c00386{height:72.237744px;}
.h3_c00386{height:72.957264px;}
.h6_c00386{height:72.961944px;}
.h4_c00386{height:105.357264px;}
.h0_c00386{height:892.499850px;}
.h1_c00386{height:892.500000px;}
.w2_c00386{width:62.100000px;}
.w3_c00386{width:103.860300px;}
.w0_c00386{width:1262.999850px;}
.w1_c00386{width:1263.000000px;}
.x0_c00386{left:0.000000px;}
.x1_c00386{left:76.485900px;}
.x8_c00386{left:89.086890px;}
.x3_c00386{left:91.066500px;}
.xa_c00386{left:93.406590px;}
.x4_c00386{left:97.726845px;}
.x9_c00386{left:109.966890px;}
.x2_c00386{left:292.128000px;}
.xc_c00386{left:398.508000px;}
.x7_c00386{left:429.288390px;}
.xd_c00386{left:504.885000px;}
.xe_c00386{left:542.868000px;}
.xf_c00386{left:620.974650px;}
.x10_c00386{left:643.308300px;}
.x5_c00386{left:700.548195px;}
.x6_c00386{left:949.308195px;}
.xb_c00386{left:982.248690px;}
.x11_c00386{left:1122.109500px;}
@media print{
.v3_c00386{vertical-align:-30.081227pt;}
.v0_c00386{vertical-align:0.000000pt;}
.v1_c00386{vertical-align:29.439573pt;}
.v2_c00386{vertical-align:58.239573pt;}
.ls0_c00386{letter-spacing:0.000000pt;}
.ws8_c00386{word-spacing:0.000000pt;}
.ws6_c00386{word-spacing:121.996684pt;}
.ws1_c00386{word-spacing:146.923390pt;}
.ws5_c00386{word-spacing:146.928723pt;}
.ws2_c00386{word-spacing:147.757457pt;}
.ws4_c00386{word-spacing:196.580302pt;}
.ws0_c00386{word-spacing:213.666986pt;}
.ws3_c00386{word-spacing:265.569632pt;}
.ws7_c00386{word-spacing:310.957357pt;}
._7_c00386{margin-left:-3337.309591pt;}
._0_c00386{width:158.425094pt;}
._5_c00386{width:161.279406pt;}
._6_c00386{width:194.542709pt;}
._4_c00386{width:195.722439pt;}
._2_c00386{width:205.885340pt;}
._1_c00386{width:268.928231pt;}
._3_c00386{width:306.858273pt;}
.fs0_c00386{font-size:48.640107pt;}
.y0_c00386{bottom:0.000000pt;}
.y24_c00386{bottom:2.558667pt;}
.y29_c00386{bottom:35.252667pt;}
.y1d_c00386{bottom:429.497000pt;}
.y1f_c00386{bottom:429.497933pt;}
.y21_c00386{bottom:429.498333pt;}
.y1c_c00386{bottom:429.657373pt;}
.y1e_c00386{bottom:444.217267pt;}
.y20_c00386{bottom:444.217667pt;}
.y1b_c00386{bottom:444.376707pt;}
.y1a_c00386{bottom:459.257907pt;}
.y18_c00386{bottom:459.416360pt;}
.y19_c00386{bottom:473.977240pt;}
.y17_c00386{bottom:474.136093pt;}
.y12_c00386{bottom:489.016493pt;}
.y14_c00386{bottom:489.016893pt;}
.y16_c00386{bottom:489.017293pt;}
.y11_c00386{bottom:496.536227pt;}
.y13_c00386{bottom:503.736227pt;}
.y15_c00386{bottom:503.736627pt;}
.ye_c00386{bottom:518.775427pt;}
.y10_c00386{bottom:518.776360pt;}
.yc_c00386{bottom:526.294800pt;}
.yd_c00386{bottom:533.494760pt;}
.yf_c00386{bottom:533.495693pt;}
.y9_c00386{bottom:548.534533pt;}
.yb_c00386{bottom:548.534933pt;}
.y8_c00386{bottom:548.694373pt;}
.ya_c00386{bottom:563.254267pt;}
.y7_c00386{bottom:563.414107pt;}
.y6_c00386{bottom:578.294373pt;}
.y4_c00386{bottom:578.454267pt;}
.y5_c00386{bottom:593.013707pt;}
.y3_c00386{bottom:593.173600pt;}
.y2_c00386{bottom:623.093333pt;}
.y27_c00386{bottom:623.573333pt;}
.y25_c00386{bottom:630.933333pt;}
.y22_c00386{bottom:630.939667pt;}
.y26_c00386{bottom:635.734667pt;}
.y28_c00386{bottom:638.293067pt;}
.y23_c00386{bottom:650.774667pt;}
.y1_c00386{bottom:676.373333pt;}
.h7_c00386{height:13.279693pt;}
.h8_c00386{height:13.440133pt;}
.h9_c00386{height:34.912577pt;}
.h2_c00386{height:35.411328pt;}
.h5_c00386{height:64.211328pt;}
.h3_c00386{height:64.850901pt;}
.h6_c00386{height:64.855061pt;}
.h4_c00386{height:93.650901pt;}
.h0_c00386{height:793.333200pt;}
.h1_c00386{height:793.333333pt;}
.w2_c00386{width:55.200000pt;}
.w3_c00386{width:92.320267pt;}
.w0_c00386{width:1122.666533pt;}
.w1_c00386{width:1122.666667pt;}
.x0_c00386{left:0.000000pt;}
.x1_c00386{left:67.987467pt;}
.x8_c00386{left:79.188347pt;}
.x3_c00386{left:80.948000pt;}
.xa_c00386{left:83.028080pt;}
.x4_c00386{left:86.868307pt;}
.x9_c00386{left:97.748347pt;}
.x2_c00386{left:259.669333pt;}
.xc_c00386{left:354.229333pt;}
.x7_c00386{left:381.589680pt;}
.xd_c00386{left:448.786667pt;}
.xe_c00386{left:482.549333pt;}
.xf_c00386{left:551.977467pt;}
.x10_c00386{left:571.829600pt;}
.x5_c00386{left:622.709507pt;}
.x6_c00386{left:843.829507pt;}
.xb_c00386{left:873.109947pt;}
.x11_c00386{left:997.430667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e048ab60f724fcb7d331f194.woff2')format("woff");}.ff1_c00387{font-family:ff1_c00387;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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:33.119520px;}
.ls1_c00387{letter-spacing:0.000000px;}
.ls0_c00387{letter-spacing:360.092073px;}
.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:-15.212193px;}
.ws5_c00387{word-spacing:0.000000px;}
.ws2_c00387{word-spacing:130.768501px;}
.ws3_c00387{word-spacing:198.538413px;}
.ws1_c00387{word-spacing:245.758366px;}
.ws0_c00387{word-spacing:245.762566px;}
._7_c00387{margin-left:-3819.272856px;}
._4_c00387{width:94.050753px;}
._0_c00387{width:130.770143px;}
._6_c00387{width:184.355367px;}
._8_c00387{width:188.031880px;}
._9_c00387{width:193.405438px;}
._5_c00387{width:265.573706px;}
._1_c00387{width:301.850956px;}
._2_c00387{width:375.454443px;}
._3_c00387{width:393.516460px;}
.fc0_c00387{color:rgb(0,0,0);}
.fs0_c00387{font-size:54.720120px;}
.y0_c00387{bottom:0.000000px;}
.y9_c00387{bottom:2.877000px;}
.y4_c00387{bottom:2.878500px;}
.y21_c00387{bottom:38.939100px;}
.y1b_c00387{bottom:255.659325px;}
.y1c_c00387{bottom:272.219025px;}
.y1a_c00387{bottom:292.019625px;}
.y17_c00387{bottom:344.758725px;}
.y19_c00387{bottom:344.759325px;}
.y18_c00387{bottom:361.319025px;}
.y16_c00387{bottom:369.958725px;}
.y14_c00387{bottom:411.719025px;}
.y15_c00387{bottom:428.278725px;}
.y13_c00387{bottom:428.638560px;}
.y12_c00387{bottom:445.198860px;}
.yf_c00387{bottom:478.678110px;}
.y11_c00387{bottom:478.678710px;}
.y10_c00387{bottom:495.238410px;}
.ye_c00387{bottom:495.598230px;}
.yd_c00387{bottom:512.157930px;}
.yb_c00387{bottom:545.638380px;}
.yc_c00387{bottom:562.198080px;}
.ya_c00387{bottom:562.558500px;}
.y8_c00387{bottom:576.241500px;}
.y6_c00387{bottom:612.599880px;}
.y7_c00387{bottom:629.159580px;}
.y5_c00387{bottom:629.520000px;}
.y3_c00387{bottom:643.201500px;}
.y2_c00387{bottom:696.480000px;}
.y20_c00387{bottom:697.020180px;}
.y1f_c00387{bottom:705.300000px;}
.y1d_c00387{bottom:705.300825px;}
.y1e_c00387{bottom:727.621500px;}
.y1_c00387{bottom:760.920000px;}
.h7_c00387{height:14.939655px;}
.h5_c00387{height:15.119550px;}
.h3_c00387{height:15.120150px;}
.h2_c00387{height:39.837744px;}
.h4_c00387{height:72.957264px;}
.h6_c00387{height:72.959604px;}
.h0_c00387{height:892.499850px;}
.h1_c00387{height:892.500000px;}
.w3_c00387{width:62.100000px;}
.w2_c00387{width:102.060300px;}
.w0_c00387{width:1262.999850px;}
.w1_c00387{width:1263.000000px;}
.x0_c00387{left:0.000000px;}
.x1_c00387{left:76.485900px;}
.x3_c00387{left:79.545750px;}
.x8_c00387{left:88.546500px;}
.x9_c00387{left:100.066620px;}
.x4_c00387{left:124.726200px;}
.x2_c00387{left:289.968000px;}
.x5_c00387{left:322.366500px;}
.xb_c00387{left:395.268000px;}
.xc_c00387{left:543.768563px;}
.x6_c00387{left:754.366500px;}
.x7_c00387{left:966.046500px;}
.xa_c00387{left:998.446740px;}
.xd_c00387{left:1113.454500px;}
@media print{
.v0_c00387{vertical-align:0.000000pt;}
.v1_c00387{vertical-align:29.439573pt;}
.ls1_c00387{letter-spacing:0.000000pt;}
.ls0_c00387{letter-spacing:320.081843pt;}
.ws4_c00387{word-spacing:-13.521950pt;}
.ws5_c00387{word-spacing:0.000000pt;}
.ws2_c00387{word-spacing:116.238668pt;}
.ws3_c00387{word-spacing:176.478589pt;}
.ws1_c00387{word-spacing:218.451881pt;}
.ws0_c00387{word-spacing:218.455615pt;}
._7_c00387{margin-left:-3394.909205pt;}
._4_c00387{width:83.600670pt;}
._0_c00387{width:116.240127pt;}
._6_c00387{width:163.871438pt;}
._8_c00387{width:167.139449pt;}
._9_c00387{width:171.915945pt;}
._5_c00387{width:236.065516pt;}
._1_c00387{width:268.311961pt;}
._2_c00387{width:333.737282pt;}
._3_c00387{width:349.792409pt;}
.fs0_c00387{font-size:48.640107pt;}
.y0_c00387{bottom:0.000000pt;}
.y9_c00387{bottom:2.557333pt;}
.y4_c00387{bottom:2.558667pt;}
.y21_c00387{bottom:34.612533pt;}
.y1b_c00387{bottom:227.252733pt;}
.y1c_c00387{bottom:241.972467pt;}
.y1a_c00387{bottom:259.573000pt;}
.y17_c00387{bottom:306.452200pt;}
.y19_c00387{bottom:306.452733pt;}
.y18_c00387{bottom:321.172467pt;}
.y16_c00387{bottom:328.852200pt;}
.y14_c00387{bottom:365.972467pt;}
.y15_c00387{bottom:380.692200pt;}
.y13_c00387{bottom:381.012053pt;}
.y12_c00387{bottom:395.732320pt;}
.yf_c00387{bottom:425.491653pt;}
.y11_c00387{bottom:425.492187pt;}
.y10_c00387{bottom:440.211920pt;}
.ye_c00387{bottom:440.531760pt;}
.yd_c00387{bottom:455.251493pt;}
.yb_c00387{bottom:485.011893pt;}
.yc_c00387{bottom:499.731627pt;}
.ya_c00387{bottom:500.052000pt;}
.y8_c00387{bottom:512.214667pt;}
.y6_c00387{bottom:544.533227pt;}
.y7_c00387{bottom:559.252960pt;}
.y5_c00387{bottom:559.573333pt;}
.y3_c00387{bottom:571.734667pt;}
.y2_c00387{bottom:619.093333pt;}
.y20_c00387{bottom:619.573493pt;}
.y1f_c00387{bottom:626.933333pt;}
.y1d_c00387{bottom:626.934067pt;}
.y1e_c00387{bottom:646.774667pt;}
.y1_c00387{bottom:676.373333pt;}
.h7_c00387{height:13.279693pt;}
.h5_c00387{height:13.439600pt;}
.h3_c00387{height:13.440133pt;}
.h2_c00387{height:35.411328pt;}
.h4_c00387{height:64.850901pt;}
.h6_c00387{height:64.852981pt;}
.h0_c00387{height:793.333200pt;}
.h1_c00387{height:793.333333pt;}
.w3_c00387{width:55.200000pt;}
.w2_c00387{width:90.720267pt;}
.w0_c00387{width:1122.666533pt;}
.w1_c00387{width:1122.666667pt;}
.x0_c00387{left:0.000000pt;}
.x1_c00387{left:67.987467pt;}
.x3_c00387{left:70.707333pt;}
.x8_c00387{left:78.708000pt;}
.x9_c00387{left:88.948107pt;}
.x4_c00387{left:110.867733pt;}
.x2_c00387{left:257.749333pt;}
.x5_c00387{left:286.548000pt;}
.xb_c00387{left:351.349333pt;}
.xc_c00387{left:483.349833pt;}
.x6_c00387{left:670.548000pt;}
.x7_c00387{left:858.708000pt;}
.xa_c00387{left:887.508213pt;}
.xd_c00387{left:989.737333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fb66e675dc149b42b669634f.woff2')format("woff");}.ff1_c00388{font-family:ff1_c00388;line-height:0.929199;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00388;src:url('chunks/assets/font_dad610dcf6ead121b7d80f09.woff2')format("woff");}.ff2_c00388{font-family:ff2_c00388;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls1_c00388{letter-spacing:0.000000px;}
.ls0_c00388{letter-spacing:845.705280px;}
.sc__c00388{text-shadow:none;}
.sc0_c00388{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00388{-webkit-text-stroke:0px transparent;}
.sc0_c00388{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00388{word-spacing:0.000000px;}
._0_c00388{width:1.394092px;}
._1_c00388{width:125.298130px;}
.fc1_c00388{color:rgb(64,64,64);}
.fc0_c00388{color:rgb(0,0,0);}
.fs1_c00388{font-size:66.240000px;}
.fs0_c00388{font-size:95.760000px;}
.y0_c00388{bottom:0.000000px;}
.y2_c00388{bottom:773.745000px;}
.y1_c00388{bottom:814.965000px;}
.h2_c00388{height:68.827500px;}
.h0_c00388{height:1262.879850px;}
.h1_c00388{height:1263.000000px;}
.w0_c00388{width:892.979850px;}
.w1_c00388{width:893.250000px;}
.x0_c00388{left:0.000000px;}
.x1_c00388{left:274.170000px;}
.x2_c00388{left:446.475000px;}
@media print{
.v0_c00388{vertical-align:0.000000pt;}
.ls1_c00388{letter-spacing:0.000000pt;}
.ls0_c00388{letter-spacing:751.738027pt;}
.ws0_c00388{word-spacing:0.000000pt;}
._0_c00388{width:1.239193pt;}
._1_c00388{width:111.376115pt;}
.fs1_c00388{font-size:58.880000pt;}
.fs0_c00388{font-size:85.120000pt;}
.y0_c00388{bottom:0.000000pt;}
.y2_c00388{bottom:687.773333pt;}
.y1_c00388{bottom:724.413333pt;}
.h2_c00388{height:61.180000pt;}
.h0_c00388{height:1122.559867pt;}
.h1_c00388{height:1122.666667pt;}
.w0_c00388{width:793.759867pt;}
.w1_c00388{width:794.000000pt;}
.x0_c00388{left:0.000000pt;}
.x1_c00388{left:243.706667pt;}
.x2_c00388{left:396.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_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_4a1c53ceb0df50e667e58d91.woff2')format("woff");}.ff1_c00389{font-family:ff1_c00389;line-height:0.929199;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00389;src:url('chunks/assets/font_65185a736a746a3ab78610ac.woff2')format("woff");}.ff2_c00389{font-family:ff2_c00389;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00389{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00389{vertical-align:0.000000px;}
.ls0_c00389{letter-spacing:0.000000px;}
.sc__c00389{text-shadow:none;}
.sc0_c00389{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00389{-webkit-text-stroke:0px transparent;}
.sc0_c00389{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00389{word-spacing:0.000000px;}
._0_c00389{margin-left:-1.257394px;}
._1_c00389{width:845.705952px;}
.fc1_c00389{color:rgb(64,64,64);}
.fc0_c00389{color:rgb(0,0,0);}
.fs1_c00389{font-size:66.240000px;}
.fs0_c00389{font-size:95.760000px;}
.y0_c00389{bottom:0.000000px;}
.y3_c00389{bottom:743.145000px;}
.y2_c00389{bottom:780.765000px;}
.y1_c00389{bottom:814.965000px;}
.h3_c00389{height:48.224531px;}
.h2_c00389{height:68.827500px;}
.h0_c00389{height:1262.879850px;}
.h1_c00389{height:1263.000000px;}
.w0_c00389{width:892.979850px;}
.w1_c00389{width:893.250000px;}
.x0_c00389{left:0.000000px;}
.x2_c00389{left:383.655000px;}
.x1_c00389{left:427.755000px;}
.x3_c00389{left:446.475000px;}
@media print{
.v0_c00389{vertical-align:0.000000pt;}
.ls0_c00389{letter-spacing:0.000000pt;}
.ws0_c00389{word-spacing:0.000000pt;}
._0_c00389{margin-left:-1.117683pt;}
._1_c00389{width:751.738624pt;}
.fs1_c00389{font-size:58.880000pt;}
.fs0_c00389{font-size:85.120000pt;}
.y0_c00389{bottom:0.000000pt;}
.y3_c00389{bottom:660.573333pt;}
.y2_c00389{bottom:694.013333pt;}
.y1_c00389{bottom:724.413333pt;}
.h3_c00389{height:42.866250pt;}
.h2_c00389{height:61.180000pt;}
.h0_c00389{height:1122.559867pt;}
.h1_c00389{height:1122.666667pt;}
.w0_c00389{width:793.759867pt;}
.w1_c00389{width:794.000000pt;}
.x0_c00389{left:0.000000pt;}
.x2_c00389{left:341.026667pt;}
.x1_c00389{left:380.226667pt;}
.x3_c00389{left:396.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_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_c61449f4ffa27f1f718b151c.woff2')format("woff");}.ff1_c00390{font-family:ff1_c00390;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00390;src:url('chunks/assets/font_96f6c95596d049c7c2f34bd3.woff2')format("woff");}.ff2_c00390{font-family:ff2_c00390;line-height:0.938965;font-style: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.250138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);}
.v2_c00390{vertical-align:-2.880468px;}
.v0_c00390{vertical-align:0.000000px;}
.v1_c00390{vertical-align:42.480480px;}
.ls0_c00390{letter-spacing:0.000000px;}
.sc__c00390{text-shadow:none;}
.sc0_c00390{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00390{-webkit-text-stroke:0px transparent;}
.sc0_c00390{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00390{word-spacing:0.000000px;}
.ws0_c00390{word-spacing:122.525880px;}
.ws1_c00390{word-spacing:141.956880px;}
.ws2_c00390{word-spacing:196.630790px;}
._2_c00390{width:44.039134px;}
._3_c00390{width:59.077138px;}
._1_c00390{width:80.213587px;}
._5_c00390{width:203.671440px;}
._12_c00390{width:215.045510px;}
._f_c00390{width:222.382915px;}
._d_c00390{width:235.334822px;}
._6_c00390{width:269.734579px;}
._c_c00390{width:287.866454px;}
._0_c00390{width:315.432893px;}
._9_c00390{width:324.566064px;}
._7_c00390{width:346.731293px;}
._8_c00390{width:389.188483px;}
._e_c00390{width:453.640003px;}
._10_c00390{width:542.465194px;}
._4_c00390{width:549.571421px;}
._a_c00390{width:559.733962px;}
._b_c00390{width:889.883760px;}
._13_c00390{width:904.401216px;}
._15_c00390{width:919.095600px;}
._11_c00390{width:944.893728px;}
._14_c00390{width:985.452480px;}
._16_c00390{width:3582.987840px;}
.fc0_c00390{color:rgb(0,0,0);}
.fs0_c00390{font-size:66.240000px;}
.y0_c00390{bottom:0.000000px;}
.yf_c00390{bottom:38.939700px;}
.ye_c00390{bottom:584.340093px;}
.yd_c00390{bottom:606.840093px;}
.yc_c00390{bottom:629.699793px;}
.yb_c00390{bottom:652.559493px;}
.ya_c00390{bottom:675.419193px;}
.y9_c00390{bottom:698.279610px;}
.y8_c00390{bottom:719.879610px;}
.y5_c00390{bottom:744.719340px;}
.y7_c00390{bottom:755.339340px;}
.y2_c00390{bottom:755.339370px;}
.y1_c00390{bottom:765.960000px;}
.y4_c00390{bottom:765.960090px;}
.y6_c00390{bottom:776.579640px;}
.y3_c00390{bottom:787.199790px;}
.h3_c00390{height:48.224531px;}
.h4_c00390{height:48.256875px;}
.h2_c00390{height:90.705011px;}
.h0_c00390{height:892.499850px;}
.h1_c00390{height:892.500000px;}
.w0_c00390{width:1262.999850px;}
.w1_c00390{width:1263.000000px;}
.x0_c00390{left:0.000000px;}
.x9_c00390{left:77.025600px;}
.x8_c00390{left:79.366720px;}
.x1_c00390{left:152.806500px;}
.x2_c00390{left:486.165847px;}
.x4_c00390{left:922.301765px;}
.x3_c00390{left:931.121888px;}
.x5_c00390{left:938.501820px;}
.x6_c00390{left:1015.362220px;}
.x7_c00390{left:1020.042107px;}
@media print{
.v2_c00390{vertical-align:-2.560416pt;}
.v0_c00390{vertical-align:0.000000pt;}
.v1_c00390{vertical-align:37.760427pt;}
.ls0_c00390{letter-spacing:0.000000pt;}
.ws3_c00390{word-spacing:0.000000pt;}
.ws0_c00390{word-spacing:108.911893pt;}
.ws1_c00390{word-spacing:126.183893pt;}
.ws2_c00390{word-spacing:174.782925pt;}
._2_c00390{width:39.145897pt;}
._3_c00390{width:52.513011pt;}
._1_c00390{width:71.300966pt;}
._5_c00390{width:181.041280pt;}
._12_c00390{width:191.151565pt;}
._f_c00390{width:197.673702pt;}
._d_c00390{width:209.186509pt;}
._6_c00390{width:239.764070pt;}
._c_c00390{width:255.881293pt;}
._0_c00390{width:280.384794pt;}
._9_c00390{width:288.503168pt;}
._7_c00390{width:308.205594pt;}
._8_c00390{width:345.945318pt;}
._e_c00390{width:403.235558pt;}
._10_c00390{width:482.191283pt;}
._4_c00390{width:488.507930pt;}
._a_c00390{width:497.541299pt;}
._b_c00390{width:791.007787pt;}
._13_c00390{width:803.912192pt;}
._15_c00390{width:816.973867pt;}
._11_c00390{width:839.905536pt;}
._14_c00390{width:875.957760pt;}
._16_c00390{width:3184.878080pt;}
.fs0_c00390{font-size:58.880000pt;}
.y0_c00390{bottom:0.000000pt;}
.yf_c00390{bottom:34.613067pt;}
.ye_c00390{bottom:519.413416pt;}
.yd_c00390{bottom:539.413416pt;}
.yc_c00390{bottom:559.733149pt;}
.yb_c00390{bottom:580.052883pt;}
.ya_c00390{bottom:600.372616pt;}
.y9_c00390{bottom:620.692987pt;}
.y8_c00390{bottom:639.892987pt;}
.y5_c00390{bottom:661.972747pt;}
.y7_c00390{bottom:671.412747pt;}
.y2_c00390{bottom:671.412773pt;}
.y1_c00390{bottom:680.853333pt;}
.y4_c00390{bottom:680.853413pt;}
.y6_c00390{bottom:690.293013pt;}
.y3_c00390{bottom:699.733147pt;}
.h3_c00390{height:42.866250pt;}
.h4_c00390{height:42.895000pt;}
.h2_c00390{height:80.626677pt;}
.h0_c00390{height:793.333200pt;}
.h1_c00390{height:793.333333pt;}
.w0_c00390{width:1122.666533pt;}
.w1_c00390{width:1122.666667pt;}
.x0_c00390{left:0.000000pt;}
.x9_c00390{left:68.467200pt;}
.x8_c00390{left:70.548196pt;}
.x1_c00390{left:135.828000pt;}
.x2_c00390{left:432.147419pt;}
.x4_c00390{left:819.823791pt;}
.x3_c00390{left:827.663901pt;}
.x5_c00390{left:834.223840pt;}
.x6_c00390{left:902.544195pt;}
.x7_c00390{left:906.704095pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_97a719cc3a0e9cc466ddf7a9.woff2')format("woff");}.ff1_c00391{font-family:ff1_c00391;line-height:0.938965;font-style:normal;font-weight:normal;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_b41a5cd6ad4ce58c7c576cee.woff2')format("woff");}.ff2_c00391{font-family:ff2_c00391;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00391{transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);}
.v0_c00391{vertical-align:0.000000px;}
.v1_c00391{vertical-align:41.041380px;}
.v2_c00391{vertical-align:42.480480px;}
.ls0_c00391{letter-spacing:0.000000px;}
.sc__c00391{text-shadow:none;}
.sc0_c00391{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00391{-webkit-text-stroke:0px transparent;}
.sc0_c00391{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00391{word-spacing:0.000000px;}
.ws6_c00391{word-spacing:39.773880px;}
.ws1_c00391{word-spacing:153.595987px;}
.ws3_c00391{word-spacing:172.305475px;}
.ws5_c00391{word-spacing:186.147600px;}
.ws2_c00391{word-spacing:215.360766px;}
.ws4_c00391{word-spacing:215.366766px;}
.ws0_c00391{word-spacing:331.471920px;}
._8_c00391{width:143.481120px;}
._9_c00391{width:149.442960px;}
._7_c00391{width:158.503680px;}
._0_c00391{width:240.950650px;}
._1_c00391{width:245.267510px;}
._4_c00391{width:259.147199px;}
._5_c00391{width:266.855789px;}
._2_c00391{width:285.565277px;}
._6_c00391{width:308.593613px;}
._3_c00391{width:326.725488px;}
._a_c00391{width:1198.356720px;}
._b_c00391{width:3314.212416px;}
.fc0_c00391{color:rgb(0,0,0);}
.fs0_c00391{font-size:66.240000px;}
.y0_c00391{bottom:0.000000px;}
.y1b_c00391{bottom:38.939700px;}
.y14_c00391{bottom:323.878695px;}
.y13_c00391{bottom:344.398845px;}
.y12_c00391{bottom:368.339085px;}
.y11_c00391{bottom:388.858635px;}
.y10_c00391{bottom:412.798875px;}
.yf_c00391{bottom:433.319025px;}
.ye_c00391{bottom:457.258680px;}
.yd_c00391{bottom:477.778830px;}
.yc_c00391{bottom:501.719070px;}
.yb_c00391{bottom:522.238620px;}
.ya_c00391{bottom:546.178860px;}
.y9_c00391{bottom:566.699010px;}
.y8_c00391{bottom:590.638665px;}
.y7_c00391{bottom:611.160015px;}
.y6_c00391{bottom:635.100255px;}
.y5_c00391{bottom:655.619805px;}
.y4_c00391{bottom:679.558845px;}
.y3_c00391{bottom:700.080195px;}
.y2_c00391{bottom:724.019850px;}
.y1_c00391{bottom:744.540000px;}
.y19_c00391{bottom:768.657720px;}
.y18_c00391{bottom:768.658230px;}
.y16_c00391{bottom:768.658290px;}
.y17_c00391{bottom:779.278410px;}
.y1a_c00391{bottom:789.898470px;}
.y15_c00391{bottom:789.899040px;}
.h5_c00391{height:48.224531px;}
.h2_c00391{height:48.256875px;}
.h4_c00391{height:89.295915px;}
.h3_c00391{height:89.298255px;}
.h6_c00391{height:90.705011px;}
.h7_c00391{height:133.185491px;}
.h0_c00391{height:892.499850px;}
.h1_c00391{height:892.500000px;}
.w0_c00391{width:1262.999850px;}
.w1_c00391{width:1263.000000px;}
.x0_c00391{left:0.000000px;}
.x15_c00391{left:77.025600px;}
.xa_c00391{left:93.767790px;}
.x3_c00391{left:95.565365px;}
.x5_c00391{left:98.269394px;}
.x7_c00391{left:102.410110px;}
.x8_c00391{left:103.669333px;}
.x6_c00391{left:106.009629px;}
.x9_c00391{left:122.028925px;}
.x1_c00391{left:123.825600px;}
.x4_c00391{left:124.889835px;}
.x2_c00391{left:153.885924px;}
.xd_c00391{left:332.988294px;}
.xf_c00391{left:472.847324px;}
.x10_c00391{left:496.247287px;}
.x11_c00391{left:561.586904px;}
.x12_c00391{left:589.847289px;}
.x13_c00391{left:662.745511px;}
.x14_c00391{left:689.025407px;}
.xe_c00391{left:798.286217px;}
.xb_c00391{left:888.466334px;}
.xc_c00391{left:893.145636px;}
@media print{
.v0_c00391{vertical-align:0.000000pt;}
.v1_c00391{vertical-align:36.481227pt;}
.v2_c00391{vertical-align:37.760427pt;}
.ls0_c00391{letter-spacing:0.000000pt;}
.ws7_c00391{word-spacing:0.000000pt;}
.ws6_c00391{word-spacing:35.354560pt;}
.ws1_c00391{word-spacing:136.529766pt;}
.ws3_c00391{word-spacing:153.160422pt;}
.ws5_c00391{word-spacing:165.464533pt;}
.ws2_c00391{word-spacing:191.431792pt;}
.ws4_c00391{word-spacing:191.437125pt;}
.ws0_c00391{word-spacing:294.641707pt;}
._8_c00391{width:127.538773pt;}
._9_c00391{width:132.838187pt;}
._7_c00391{width:140.892160pt;}
._0_c00391{width:214.178355pt;}
._1_c00391{width:218.015565pt;}
._4_c00391{width:230.353066pt;}
._5_c00391{width:237.205146pt;}
._2_c00391{width:253.835802pt;}
._6_c00391{width:274.305434pt;}
._3_c00391{width:290.422656pt;}
._a_c00391{width:1065.205973pt;}
._b_c00391{width:2945.966592pt;}
.fs0_c00391{font-size:58.880000pt;}
.y0_c00391{bottom:0.000000pt;}
.y1b_c00391{bottom:34.613067pt;}
.y14_c00391{bottom:287.892173pt;}
.y13_c00391{bottom:306.132307pt;}
.y12_c00391{bottom:327.412520pt;}
.y11_c00391{bottom:345.652120pt;}
.y10_c00391{bottom:366.932333pt;}
.yf_c00391{bottom:385.172467pt;}
.ye_c00391{bottom:406.452160pt;}
.yd_c00391{bottom:424.692293pt;}
.yc_c00391{bottom:445.972507pt;}
.yb_c00391{bottom:464.212107pt;}
.ya_c00391{bottom:485.492320pt;}
.y9_c00391{bottom:503.732453pt;}
.y8_c00391{bottom:525.012147pt;}
.y7_c00391{bottom:543.253347pt;}
.y6_c00391{bottom:564.533560pt;}
.y5_c00391{bottom:582.773160pt;}
.y4_c00391{bottom:604.052307pt;}
.y3_c00391{bottom:622.293507pt;}
.y2_c00391{bottom:643.573200pt;}
.y1_c00391{bottom:661.813333pt;}
.y19_c00391{bottom:683.251307pt;}
.y18_c00391{bottom:683.251760pt;}
.y16_c00391{bottom:683.251813pt;}
.y17_c00391{bottom:692.691920pt;}
.y1a_c00391{bottom:702.131973pt;}
.y15_c00391{bottom:702.132480pt;}
.h5_c00391{height:42.866250pt;}
.h2_c00391{height:42.895000pt;}
.h4_c00391{height:79.374147pt;}
.h3_c00391{height:79.376227pt;}
.h6_c00391{height:80.626677pt;}
.h7_c00391{height:118.387103pt;}
.h0_c00391{height:793.333200pt;}
.h1_c00391{height:793.333333pt;}
.w0_c00391{width:1122.666533pt;}
.w1_c00391{width:1122.666667pt;}
.x0_c00391{left:0.000000pt;}
.x15_c00391{left:68.467200pt;}
.xa_c00391{left:83.349146pt;}
.x3_c00391{left:84.946991pt;}
.x5_c00391{left:87.350573pt;}
.x7_c00391{left:91.031209pt;}
.x8_c00391{left:92.150518pt;}
.x6_c00391{left:94.230781pt;}
.x9_c00391{left:108.470155pt;}
.x1_c00391{left:110.067200pt;}
.x4_c00391{left:111.013187pt;}
.x2_c00391{left:136.787488pt;}
.xd_c00391{left:295.989594pt;}
.xf_c00391{left:420.308732pt;}
.x10_c00391{left:441.108699pt;}
.x11_c00391{left:499.188359pt;}
.x12_c00391{left:524.308701pt;}
.x13_c00391{left:589.107120pt;}
.x14_c00391{left:612.467028pt;}
.xe_c00391{left:709.587748pt;}
.xb_c00391{left:789.747852pt;}
.xc_c00391{left:793.907232pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d8ef8f147a2795832891a912.woff2')format("woff");}.ff1_c00392{font-family:ff1_c00392;line-height:0.938965;font-style:normal;font-weight:normal;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_b41a5cd6ad4ce58c7c576cee.woff2')format("woff");}.ff2_c00392{font-family:ff2_c00392;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00392{transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);}
.v0_c00392{vertical-align:0.000000px;}
.v1_c00392{vertical-align:41.041380px;}
.ls0_c00392{letter-spacing:0.000000px;}
.sc__c00392{text-shadow:none;}
.sc0_c00392{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00392{-webkit-text-stroke:0px transparent;}
.sc0_c00392{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00392{word-spacing:0.000000px;}
.ws0_c00392{word-spacing:242.105875px;}
._5_c00392{margin-left:-3768.671808px;}
._9_c00392{margin-left:-2019.677472px;}
._7_c00392{width:57.266335px;}
._a_c00392{width:61.310154px;}
._b_c00392{width:64.113431px;}
._6_c00392{width:83.718749px;}
._0_c00392{width:265.431600px;}
._1_c00392{width:328.882925px;}
._2_c00392{width:364.002710px;}
._3_c00392{width:394.946064px;}
._4_c00392{width:438.261725px;}
._8_c00392{width:1547.386272px;}
._c_c00392{width:3314.212416px;}
.fc0_c00392{color:rgb(0,0,0);}
.fs0_c00392{font-size:66.240000px;}
.y0_c00392{bottom:0.000000px;}
.y7_c00392{bottom:38.939700px;}
.y5_c00392{bottom:658.318545px;}
.y4_c00392{bottom:678.838695px;}
.y3_c00392{bottom:699.360045px;}
.y2_c00392{bottom:724.019850px;}
.y1_c00392{bottom:744.540000px;}
.y6_c00392{bottom:779.279445px;}
.h4_c00392{height:48.224531px;}
.h2_c00392{height:48.256875px;}
.h3_c00392{height:89.298255px;}
.h0_c00392{height:892.499850px;}
.h1_c00392{height:892.500000px;}
.w0_c00392{width:1262.999850px;}
.w1_c00392{width:1263.000000px;}
.x0_c00392{left:0.000000px;}
.x7_c00392{left:77.025600px;}
.x4_c00392{left:92.488695px;}
.x1_c00392{left:95.025600px;}
.x3_c00392{left:97.905683px;}
.x2_c00392{left:117.165770px;}
.x5_c00392{left:288.523605px;}
.x6_c00392{left:967.840524px;}
@media print{
.v0_c00392{vertical-align:0.000000pt;}
.v1_c00392{vertical-align:36.481227pt;}
.ls0_c00392{letter-spacing:0.000000pt;}
.ws1_c00392{word-spacing:0.000000pt;}
.ws0_c00392{word-spacing:215.205222pt;}
._5_c00392{margin-left:-3349.930496pt;}
._9_c00392{margin-left:-1795.268864pt;}
._7_c00392{width:50.903409pt;}
._a_c00392{width:54.497915pt;}
._b_c00392{width:56.989716pt;}
._6_c00392{width:74.416666pt;}
._0_c00392{width:235.939200pt;}
._1_c00392{width:292.340378pt;}
._2_c00392{width:323.557965pt;}
._3_c00392{width:351.063168pt;}
._4_c00392{width:389.565978pt;}
._8_c00392{width:1375.454464pt;}
._c_c00392{width:2945.966592pt;}
.fs0_c00392{font-size:58.880000pt;}
.y0_c00392{bottom:0.000000pt;}
.y7_c00392{bottom:34.613067pt;}
.y5_c00392{bottom:585.172040pt;}
.y4_c00392{bottom:603.412173pt;}
.y3_c00392{bottom:621.653373pt;}
.y2_c00392{bottom:643.573200pt;}
.y1_c00392{bottom:661.813333pt;}
.y6_c00392{bottom:692.692840pt;}
.h4_c00392{height:42.866250pt;}
.h2_c00392{height:42.895000pt;}
.h3_c00392{height:79.376227pt;}
.h0_c00392{height:793.333200pt;}
.h1_c00392{height:793.333333pt;}
.w0_c00392{width:1122.666533pt;}
.w1_c00392{width:1122.666667pt;}
.x0_c00392{left:0.000000pt;}
.x7_c00392{left:68.467200pt;}
.x4_c00392{left:82.212174pt;}
.x1_c00392{left:84.467200pt;}
.x3_c00392{left:87.027274pt;}
.x2_c00392{left:104.147351pt;}
.x5_c00392{left:256.465427pt;}
.x6_c00392{left:860.302688pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2c7e0d5230862b873b289070.woff2')format("woff");}.ff1_c00393{font-family:ff1_c00393;line-height:0.938965;font-style:normal;font-weight:normal;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_b41a5cd6ad4ce58c7c576cee.woff2')format("woff");}.ff2_c00393{font-family:ff2_c00393;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00393{transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);}
.v0_c00393{vertical-align:0.000000px;}
.ls0_c00393{letter-spacing:0.000000px;}
.sc__c00393{text-shadow:none;}
.sc0_c00393{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00393{-webkit-text-stroke:0px transparent;}
.sc0_c00393{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00393{word-spacing:0.000000px;}
._18_c00393{margin-left:-2501.096597px;}
._15_c00393{width:130.907539px;}
._17_c00393{width:153.268617px;}
._19_c00393{width:166.703226px;}
._1a_c00393{width:168.150147px;}
._14_c00393{width:266.608988px;}
._1_c00393{width:385.213911px;}
._f_c00393{width:406.030673px;}
._5_c00393{width:409.680342px;}
._2_c00393{width:431.935277px;}
._13_c00393{width:433.852841px;}
._6_c00393{width:456.110108px;}
._7_c00393{width:459.279804px;}
._d_c00393{width:480.574207px;}
._a_c00393{width:483.449969px;}
._3_c00393{width:490.223261px;}
._8_c00393{width:501.785213px;}
._10_c00393{width:514.686777px;}
._b_c00393{width:526.251645px;}
._4_c00393{width:532.498306px;}
._11_c00393{width:658.818390px;}
._c_c00393{width:662.060985px;}
._12_c00393{width:683.283655px;}
._e_c00393{width:723.687793px;}
._0_c00393{width:726.930388px;}
._9_c00393{width:751.401485px;}
._16_c00393{width:1796.654424px;}
._1b_c00393{width:3471.933140px;}
.fc0_c00393{color:rgb(0,0,0);}
.fs0_c00393{font-size:58.320060px;}
.y0_c00393{bottom:0.000000px;}
.y12_c00393{bottom:38.218950px;}
.y10_c00393{bottom:434.044500px;}
.yf_c00393{bottom:455.104200px;}
.ye_c00393{bottom:476.163900px;}
.yd_c00393{bottom:497.223600px;}
.yc_c00393{bottom:518.283300px;}
.yb_c00393{bottom:539.343000px;}
.ya_c00393{bottom:560.402700px;}
.y9_c00393{bottom:581.462400px;}
.y8_c00393{bottom:602.522100px;}
.y7_c00393{bottom:623.581800px;}
.y6_c00393{bottom:644.641500px;}
.y5_c00393{bottom:665.701200px;}
.y4_c00393{bottom:686.760900px;}
.y3_c00393{bottom:707.820600px;}
.y2_c00393{bottom:728.880300px;}
.y1_c00393{bottom:749.940000px;}
.y11_c00393{bottom:781.804500px;}
.h3_c00393{height:42.458598px;}
.h2_c00393{height:42.487075px;}
.h0_c00393{height:892.499850px;}
.h1_c00393{height:892.500000px;}
.w0_c00393{width:1262.999850px;}
.w1_c00393{width:1263.000000px;}
.x0_c00393{left:0.000000px;}
.x3_c00393{left:76.845750px;}
.x1_c00393{left:78.825600px;}
.x2_c00393{left:128.506048px;}
@media print{
.v0_c00393{vertical-align:0.000000pt;}
.ls0_c00393{letter-spacing:0.000000pt;}
.ws0_c00393{word-spacing:0.000000pt;}
._18_c00393{margin-left:-2223.196975pt;}
._15_c00393{width:116.362257pt;}
._17_c00393{width:136.238771pt;}
._19_c00393{width:148.180645pt;}
._1a_c00393{width:149.466797pt;}
._14_c00393{width:236.985767pt;}
._1_c00393{width:342.412365pt;}
._f_c00393{width:360.916154pt;}
._5_c00393{width:364.160304pt;}
._2_c00393{width:383.942469pt;}
._13_c00393{width:385.646970pt;}
._6_c00393{width:405.431208pt;}
._7_c00393{width:408.248714pt;}
._d_c00393{width:427.177073pt;}
._a_c00393{width:429.733306pt;}
._3_c00393{width:435.754010pt;}
._8_c00393{width:446.031300pt;}
._10_c00393{width:457.499357pt;}
._b_c00393{width:467.779240pt;}
._4_c00393{width:473.331828pt;}
._11_c00393{width:585.616346pt;}
._c_c00393{width:588.498653pt;}
._12_c00393{width:607.363249pt;}
._e_c00393{width:643.278038pt;}
._0_c00393{width:646.160345pt;}
._9_c00393{width:667.912431pt;}
._16_c00393{width:1597.026155pt;}
._1b_c00393{width:3086.162791pt;}
.fs0_c00393{font-size:51.840053pt;}
.y0_c00393{bottom:0.000000pt;}
.y12_c00393{bottom:33.972400pt;}
.y10_c00393{bottom:385.817333pt;}
.yf_c00393{bottom:404.537067pt;}
.ye_c00393{bottom:423.256800pt;}
.yd_c00393{bottom:441.976533pt;}
.yc_c00393{bottom:460.696267pt;}
.yb_c00393{bottom:479.416000pt;}
.ya_c00393{bottom:498.135733pt;}
.y9_c00393{bottom:516.855467pt;}
.y8_c00393{bottom:535.575200pt;}
.y7_c00393{bottom:554.294933pt;}
.y6_c00393{bottom:573.014667pt;}
.y5_c00393{bottom:591.734400pt;}
.y4_c00393{bottom:610.454133pt;}
.y3_c00393{bottom:629.173867pt;}
.y2_c00393{bottom:647.893600pt;}
.y1_c00393{bottom:666.613333pt;}
.y11_c00393{bottom:694.937333pt;}
.h3_c00393{height:37.740976pt;}
.h2_c00393{height:37.766289pt;}
.h0_c00393{height:793.333200pt;}
.h1_c00393{height:793.333333pt;}
.w0_c00393{width:1122.666533pt;}
.w1_c00393{width:1122.666667pt;}
.x0_c00393{left:0.000000pt;}
.x3_c00393{left:68.307333pt;}
.x1_c00393{left:70.067200pt;}
.x2_c00393{left:114.227598pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_136f4666179964fb8cc37798.woff2')format("woff");}.ff1_c00394{font-family:ff1_c00394;line-height:0.938965;font-style:normal;font-weight:normal;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_b41a5cd6ad4ce58c7c576cee.woff2')format("woff");}.ff2_c00394{font-family:ff2_c00394;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00394{transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);}
.v0_c00394{vertical-align:0.000000px;}
.ls0_c00394{letter-spacing:0.000000px;}
.sc__c00394{text-shadow:none;}
.sc0_c00394{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00394{-webkit-text-stroke:0px transparent;}
.sc0_c00394{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00394{word-spacing:0.000000px;}
._16_c00394{margin-left:-2501.096597px;}
._13_c00394{width:130.907539px;}
._15_c00394{width:153.268617px;}
._17_c00394{width:166.703226px;}
._18_c00394{width:168.150147px;}
._12_c00394{width:266.608988px;}
._b_c00394{width:369.332192px;}
._6_c00394{width:385.213911px;}
._d_c00394{width:393.798624px;}
._1_c00394{width:409.680342px;}
._7_c00394{width:431.935277px;}
._2_c00394{width:456.110108px;}
._3_c00394{width:459.279804px;}
._e_c00394{width:472.659009px;}
._10_c00394{width:483.743902px;}
._8_c00394{width:490.223261px;}
._4_c00394{width:501.785213px;}
._f_c00394{width:506.109645px;}
._9_c00394{width:532.498306px;}
._11_c00394{width:658.818390px;}
._5_c00394{width:662.060985px;}
._a_c00394{width:707.136560px;}
._c_c00394{width:723.687793px;}
._0_c00394{width:726.930388px;}
._14_c00394{width:1796.654424px;}
._19_c00394{width:3471.933140px;}
.fc0_c00394{color:rgb(0,0,0);}
.fs0_c00394{font-size:58.320060px;}
.y0_c00394{bottom:0.000000px;}
.yc_c00394{bottom:38.218950px;}
.ya_c00394{bottom:560.402700px;}
.y9_c00394{bottom:581.462400px;}
.y8_c00394{bottom:602.522100px;}
.y7_c00394{bottom:623.581800px;}
.y6_c00394{bottom:644.641500px;}
.y5_c00394{bottom:665.701200px;}
.y4_c00394{bottom:686.760900px;}
.y3_c00394{bottom:707.820600px;}
.y2_c00394{bottom:728.880300px;}
.y1_c00394{bottom:749.940000px;}
.yb_c00394{bottom:781.802700px;}
.h3_c00394{height:42.458598px;}
.h2_c00394{height:42.487075px;}
.h0_c00394{height:892.499850px;}
.h1_c00394{height:892.500000px;}
.w0_c00394{width:1262.999850px;}
.w1_c00394{width:1263.000000px;}
.x0_c00394{left:0.000000px;}
.x3_c00394{left:76.845750px;}
.x1_c00394{left:78.825600px;}
.x2_c00394{left:128.506048px;}
@media print{
.v0_c00394{vertical-align:0.000000pt;}
.ls0_c00394{letter-spacing:0.000000pt;}
.ws0_c00394{word-spacing:0.000000pt;}
._16_c00394{margin-left:-2223.196975pt;}
._13_c00394{width:116.362257pt;}
._15_c00394{width:136.238771pt;}
._17_c00394{width:148.180645pt;}
._18_c00394{width:149.466797pt;}
._12_c00394{width:236.985767pt;}
._b_c00394{width:328.295282pt;}
._6_c00394{width:342.412365pt;}
._d_c00394{width:350.043221pt;}
._1_c00394{width:364.160304pt;}
._7_c00394{width:383.942469pt;}
._2_c00394{width:405.431208pt;}
._3_c00394{width:408.248714pt;}
._e_c00394{width:420.141341pt;}
._10_c00394{width:429.994580pt;}
._8_c00394{width:435.754010pt;}
._4_c00394{width:446.031300pt;}
._f_c00394{width:449.875240pt;}
._9_c00394{width:473.331828pt;}
._11_c00394{width:585.616346pt;}
._5_c00394{width:588.498653pt;}
._a_c00394{width:628.565831pt;}
._c_c00394{width:643.278038pt;}
._0_c00394{width:646.160345pt;}
._14_c00394{width:1597.026155pt;}
._19_c00394{width:3086.162791pt;}
.fs0_c00394{font-size:51.840053pt;}
.y0_c00394{bottom:0.000000pt;}
.yc_c00394{bottom:33.972400pt;}
.ya_c00394{bottom:498.135733pt;}
.y9_c00394{bottom:516.855467pt;}
.y8_c00394{bottom:535.575200pt;}
.y7_c00394{bottom:554.294933pt;}
.y6_c00394{bottom:573.014667pt;}
.y5_c00394{bottom:591.734400pt;}
.y4_c00394{bottom:610.454133pt;}
.y3_c00394{bottom:629.173867pt;}
.y2_c00394{bottom:647.893600pt;}
.y1_c00394{bottom:666.613333pt;}
.yb_c00394{bottom:694.935733pt;}
.h3_c00394{height:37.740976pt;}
.h2_c00394{height:37.766289pt;}
.h0_c00394{height:793.333200pt;}
.h1_c00394{height:793.333333pt;}
.w0_c00394{width:1122.666533pt;}
.w1_c00394{width:1122.666667pt;}
.x0_c00394{left:0.000000pt;}
.x3_c00394{left:68.307333pt;}
.x1_c00394{left:70.067200pt;}
.x2_c00394{left:114.227598pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6ac24b97142f0c6eab4e153b.woff2')format("woff");}.ff1_c00395{font-family:ff1_c00395;line-height:0.938965;font-style:normal;font-weight:normal;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_b41a5cd6ad4ce58c7c576cee.woff2')format("woff");}.ff2_c00395{font-family:ff2_c00395;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00395{transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);}
.v0_c00395{vertical-align:0.000000px;}
.v1_c00395{vertical-align:41.039040px;}
.ls0_c00395{letter-spacing:0.000000px;}
.sc__c00395{text-shadow:none;}
.sc0_c00395{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00395{-webkit-text-stroke:0px transparent;}
.sc0_c00395{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00395{word-spacing:0.000000px;}
.ws1_c00395{word-spacing:310.468205px;}
.ws2_c00395{word-spacing:357.655594px;}
.ws0_c00395{word-spacing:1184.579040px;}
._5_c00395{width:62.304947px;}
._4_c00395{width:190.221408px;}
._7_c00395{width:364.002710px;}
._3_c00395{width:376.070314px;}
._0_c00395{width:392.067274px;}
._1_c00395{width:422.125661px;}
._2_c00395{width:463.448160px;}
._6_c00395{width:1544.504832px;}
._8_c00395{width:3601.329696px;}
.fc0_c00395{color:rgb(0,0,0);}
.fs0_c00395{font-size:66.240000px;}
.y0_c00395{bottom:0.000000px;}
.y7_c00395{bottom:38.939700px;}
.y4_c00395{bottom:674.878950px;}
.y3_c00395{bottom:695.400300px;}
.y2_c00395{bottom:719.340000px;}
.y5_c00395{bottom:731.398410px;}
.y1_c00395{bottom:742.740000px;}
.y6_c00395{bottom:778.018560px;}
.h4_c00395{height:48.224531px;}
.h2_c00395{height:48.256875px;}
.h3_c00395{height:89.295915px;}
.h0_c00395{height:892.499850px;}
.h1_c00395{height:892.500000px;}
.w0_c00395{width:1262.999850px;}
.w1_c00395{width:1263.000000px;}
.x0_c00395{left:0.000000px;}
.x6_c00395{left:77.025600px;}
.x1_c00395{left:79.365750px;}
.x3_c00395{left:115.904835px;}
.x4_c00395{left:430.003495px;}
.x5_c00395{left:500.023585px;}
.x2_c00395{left:928.601573px;}
@media print{
.v0_c00395{vertical-align:0.000000pt;}
.v1_c00395{vertical-align:36.479147pt;}
.ls0_c00395{letter-spacing:0.000000pt;}
.ws3_c00395{word-spacing:0.000000pt;}
.ws1_c00395{word-spacing:275.971738pt;}
.ws2_c00395{word-spacing:317.916083pt;}
.ws0_c00395{word-spacing:1052.959147pt;}
._5_c00395{width:55.382175pt;}
._4_c00395{width:169.085696pt;}
._7_c00395{width:323.557965pt;}
._3_c00395{width:334.284723pt;}
._0_c00395{width:348.504243pt;}
._1_c00395{width:375.222810pt;}
._2_c00395{width:411.953920pt;}
._6_c00395{width:1372.893184pt;}
._8_c00395{width:3201.181952pt;}
.fs0_c00395{font-size:58.880000pt;}
.y0_c00395{bottom:0.000000pt;}
.y7_c00395{bottom:34.613067pt;}
.y4_c00395{bottom:599.892400pt;}
.y3_c00395{bottom:618.133600pt;}
.y2_c00395{bottom:639.413333pt;}
.y5_c00395{bottom:650.131920pt;}
.y1_c00395{bottom:660.213333pt;}
.y6_c00395{bottom:691.572053pt;}
.h4_c00395{height:42.866250pt;}
.h2_c00395{height:42.895000pt;}
.h3_c00395{height:79.374147pt;}
.h0_c00395{height:793.333200pt;}
.h1_c00395{height:793.333333pt;}
.w0_c00395{width:1122.666533pt;}
.w1_c00395{width:1122.666667pt;}
.x0_c00395{left:0.000000pt;}
.x6_c00395{left:68.467200pt;}
.x1_c00395{left:70.547333pt;}
.x3_c00395{left:103.026520pt;}
.x4_c00395{left:382.225329pt;}
.x5_c00395{left:444.465409pt;}
.x2_c00395{left:825.423620pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b939fbb537008ae25758fee2.woff2')format("woff");}.ff1_c00396{font-family:ff1_c00396;line-height:0.938965;font-style:normal;font-weight:normal;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_b41a5cd6ad4ce58c7c576cee.woff2')format("woff");}.ff2_c00396{font-family:ff2_c00396;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00396{transform:matrix(0.250025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250025,0.000000,0.000000,0.250000,0,0);}
.v0_c00396{vertical-align:0.000000px;}
.v1_c00396{vertical-align:36.000000px;}
.ls0_c00396{letter-spacing:0.000000px;}
.sc__c00396{text-shadow:none;}
.sc0_c00396{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00396{-webkit-text-stroke:0px transparent;}
.sc0_c00396{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00396{word-spacing:0.000000px;}
.ws2_c00396{word-spacing:287.997996px;}
.ws1_c00396{word-spacing:295.557428px;}
.ws0_c00396{word-spacing:336.036446px;}
.ws3_c00396{word-spacing:350.435309px;}
._18_c00396{margin-left:-2040.032845px;}
._17_c00396{width:54.259717px;}
._19_c00396{width:55.529741px;}
._15_c00396{width:56.678459px;}
._14_c00396{width:144.296214px;}
._12_c00396{width:318.411980px;}
._5_c00396{width:328.293270px;}
._f_c00396{width:342.167972px;}
._13_c00396{width:344.328551px;}
._7_c00396{width:352.770991px;}
._8_c00396{width:363.765691px;}
._1_c00396{width:366.448126px;}
._b_c00396{width:368.608704px;}
._c_c00396{width:379.963404px;}
._2_c00396{width:392.367001px;}
._10_c00396{width:404.238373px;}
._d_c00396{width:412.159533px;}
._3_c00396{width:427.997246px;}
._4_c00396{width:787.207993px;}
._a_c00396{width:974.032180px;}
._9_c00396{width:1028.406636px;}
._6_c00396{width:1041.251450px;}
._11_c00396{width:1119.904356px;}
._e_c00396{width:1187.123627px;}
._0_c00396{width:1246.077263px;}
._16_c00396{width:1348.590205px;}
._1a_c00396{width:3501.219647px;}
.fc0_c00396{color:rgb(0,0,0);}
.fs0_c00396{font-size:57.600060px;}
.y0_c00396{bottom:0.000000px;}
.y1a_c00396{bottom:38.039100px;}
.y18_c00396{bottom:104.455800px;}
.y17_c00396{bottom:122.275950px;}
.y16_c00396{bottom:152.876550px;}
.y15_c00396{bottom:170.696700px;}
.y14_c00396{bottom:201.296700px;}
.y13_c00396{bottom:219.116850px;}
.y12_c00396{bottom:259.257600px;}
.y11_c00396{bottom:277.077750px;}
.y10_c00396{bottom:317.217450px;}
.yf_c00396{bottom:335.037600px;}
.ye_c00396{bottom:375.178350px;}
.yd_c00396{bottom:392.998500px;}
.yc_c00396{bottom:433.138800px;}
.yb_c00396{bottom:450.958950px;}
.ya_c00396{bottom:491.098650px;}
.y9_c00396{bottom:508.918800px;}
.y8_c00396{bottom:549.059100px;}
.y7_c00396{bottom:566.879250px;}
.y6_c00396{bottom:607.018950px;}
.y5_c00396{bottom:624.839100px;}
.y4_c00396{bottom:664.979400px;}
.y3_c00396{bottom:682.799550px;}
.y2_c00396{bottom:722.939850px;}
.y1_c00396{bottom:740.760000px;}
.y19_c00396{bottom:781.795800px;}
.h4_c00396{height:41.934419px;}
.h2_c00396{height:41.962544px;}
.h3_c00396{height:77.962544px;}
.h0_c00396{height:892.499850px;}
.h1_c00396{height:892.500000px;}
.w0_c00396{width:1262.999850px;}
.w1_c00396{width:1263.000000px;}
.x0_c00396{left:0.000000px;}
.x3_c00396{left:76.845750px;}
.x1_c00396{left:78.825600px;}
.x2_c00396{left:105.285246px;}
@media print{
.v0_c00396{vertical-align:0.000000pt;}
.v1_c00396{vertical-align:32.000000pt;}
.ls0_c00396{letter-spacing:0.000000pt;}
.ws4_c00396{word-spacing:0.000000pt;}
.ws2_c00396{word-spacing:255.998219pt;}
.ws1_c00396{word-spacing:262.717714pt;}
.ws0_c00396{word-spacing:298.699063pt;}
.ws3_c00396{word-spacing:311.498052pt;}
._18_c00396{margin-left:-1813.362529pt;}
._17_c00396{width:48.230860pt;}
._19_c00396{width:49.359770pt;}
._15_c00396{width:50.380852pt;}
._14_c00396{width:128.263302pt;}
._12_c00396{width:283.032871pt;}
._5_c00396{width:291.816240pt;}
._f_c00396{width:304.149309pt;}
._13_c00396{width:306.069823pt;}
._7_c00396{width:313.574215pt;}
._8_c00396{width:323.347281pt;}
._1_c00396{width:325.731667pt;}
._b_c00396{width:327.652181pt;}
._c_c00396{width:337.745248pt;}
._2_c00396{width:348.770667pt;}
._10_c00396{width:359.322998pt;}
._d_c00396{width:366.364030pt;}
._3_c00396{width:380.441996pt;}
._4_c00396{width:699.740438pt;}
._a_c00396{width:865.806382pt;}
._9_c00396{width:914.139232pt;}
._6_c00396{width:925.556844pt;}
._11_c00396{width:995.470539pt;}
._e_c00396{width:1055.221001pt;}
._0_c00396{width:1107.624234pt;}
._16_c00396{width:1198.746849pt;}
._1a_c00396{width:3112.195242pt;}
.fs0_c00396{font-size:51.200053pt;}
.y0_c00396{bottom:0.000000pt;}
.y1a_c00396{bottom:33.812533pt;}
.y18_c00396{bottom:92.849600pt;}
.y17_c00396{bottom:108.689733pt;}
.y16_c00396{bottom:135.890267pt;}
.y15_c00396{bottom:151.730400pt;}
.y14_c00396{bottom:178.930400pt;}
.y13_c00396{bottom:194.770533pt;}
.y12_c00396{bottom:230.451200pt;}
.y11_c00396{bottom:246.291333pt;}
.y10_c00396{bottom:281.971067pt;}
.yf_c00396{bottom:297.811200pt;}
.ye_c00396{bottom:333.491867pt;}
.yd_c00396{bottom:349.332000pt;}
.yc_c00396{bottom:385.012267pt;}
.yb_c00396{bottom:400.852400pt;}
.ya_c00396{bottom:436.532133pt;}
.y9_c00396{bottom:452.372267pt;}
.y8_c00396{bottom:488.052533pt;}
.y7_c00396{bottom:503.892667pt;}
.y6_c00396{bottom:539.572400pt;}
.y5_c00396{bottom:555.412533pt;}
.y4_c00396{bottom:591.092800pt;}
.y3_c00396{bottom:606.932933pt;}
.y2_c00396{bottom:642.613200pt;}
.y1_c00396{bottom:658.453333pt;}
.y19_c00396{bottom:694.929600pt;}
.h4_c00396{height:37.275039pt;}
.h2_c00396{height:37.300039pt;}
.h3_c00396{height:69.300039pt;}
.h0_c00396{height:793.333200pt;}
.h1_c00396{height:793.333333pt;}
.w0_c00396{width:1122.666533pt;}
.w1_c00396{width:1122.666667pt;}
.x0_c00396{left:0.000000pt;}
.x3_c00396{left:68.307333pt;}
.x1_c00396{left:70.067200pt;}
.x2_c00396{left:93.586885pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fc4fbb917c2c4730fc3284cc.woff2')format("woff");}.ff1_c00397{font-family:ff1_c00397;line-height:0.938965;font-style:normal;font-weight:normal;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_b41a5cd6ad4ce58c7c576cee.woff2')format("woff");}.ff2_c00397{font-family:ff2_c00397;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00397{transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);}
.v0_c00397{vertical-align:0.000000px;}
.v1_c00397{vertical-align:41.041380px;}
.ls0_c00397{letter-spacing:0.000000px;}
.sc__c00397{text-shadow:none;}
.sc0_c00397{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00397{-webkit-text-stroke:0px transparent;}
.sc0_c00397{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00397{word-spacing:0.000000px;}
.ws2_c00397{word-spacing:310.468205px;}
.ws0_c00397{word-spacing:330.476659px;}
.ws1_c00397{word-spacing:373.652554px;}
.ws3_c00397{word-spacing:1101.156240px;}
.ws4_c00397{word-spacing:1522.122240px;}
._10_c00397{margin-left:-2339.543808px;}
._d_c00397{width:60.145191px;}
._f_c00397{width:61.404414px;}
._11_c00397{width:64.019172px;}
._c_c00397{width:146.325485px;}
._b_c00397{width:330.181891px;}
._1_c00397{width:364.002710px;}
._2_c00397{width:376.237238px;}
._a_c00397{width:394.946064px;}
._3_c00397{width:417.253709px;}
._5_c00397{width:419.246870px;}
._6_c00397{width:422.125661px;}
._7_c00397{width:435.385584px;}
._8_c00397{width:444.738672px;}
._9_c00397{width:825.067920px;}
._4_c00397{width:1274.089920px;}
._0_c00397{width:1323.336000px;}
._e_c00397{width:1544.504832px;}
._12_c00397{width:3435.630336px;}
.fc0_c00397{color:rgb(0,0,0);}
.fs0_c00397{font-size:66.240000px;}
.y0_c00397{bottom:0.000000px;}
.ye_c00397{bottom:38.939700px;}
.yc_c00397{bottom:216.779820px;}
.yb_c00397{bottom:237.299970px;}
.ya_c00397{bottom:283.020060px;}
.y9_c00397{bottom:303.540210px;}
.y8_c00397{bottom:381.840165px;}
.y7_c00397{bottom:402.360315px;}
.y6_c00397{bottom:480.660255px;}
.y5_c00397{bottom:501.180405px;}
.y4_c00397{bottom:579.480345px;}
.y3_c00397{bottom:600.000495px;}
.y2_c00397{bottom:689.099850px;}
.y1_c00397{bottom:709.620000px;}
.yd_c00397{bottom:778.019580px;}
.h5_c00397{height:48.224531px;}
.h2_c00397{height:48.256875px;}
.h4_c00397{height:89.295915px;}
.h3_c00397{height:89.298255px;}
.h0_c00397{height:892.499850px;}
.h1_c00397{height:892.500000px;}
.w0_c00397{width:1262.999850px;}
.w1_c00397{width:1263.000000px;}
.x0_c00397{left:0.000000px;}
.x3_c00397{left:77.025600px;}
.x1_c00397{left:79.365750px;}
.x2_c00397{left:105.645196px;}
@media print{
.v0_c00397{vertical-align:0.000000pt;}
.v1_c00397{vertical-align:36.481227pt;}
.ls0_c00397{letter-spacing:0.000000pt;}
.ws5_c00397{word-spacing:0.000000pt;}
.ws2_c00397{word-spacing:275.971738pt;}
.ws0_c00397{word-spacing:293.757030pt;}
.ws1_c00397{word-spacing:332.135603pt;}
.ws3_c00397{word-spacing:978.805547pt;}
.ws4_c00397{word-spacing:1352.997547pt;}
._10_c00397{margin-left:-2079.594496pt;}
._d_c00397{width:53.462392pt;}
._f_c00397{width:54.581701pt;}
._11_c00397{width:56.905930pt;}
._c_c00397{width:130.067098pt;}
._b_c00397{width:293.495014pt;}
._1_c00397{width:323.557965pt;}
._2_c00397{width:334.433101pt;}
._a_c00397{width:351.063168pt;}
._3_c00397{width:370.892186pt;}
._5_c00397{width:372.663885pt;}
._6_c00397{width:375.222810pt;}
._7_c00397{width:387.009408pt;}
._8_c00397{width:395.323264pt;}
._9_c00397{width:733.393707pt;}
._4_c00397{width:1132.524373pt;}
._0_c00397{width:1176.298667pt;}
._e_c00397{width:1372.893184pt;}
._12_c00397{width:3053.893632pt;}
.fs0_c00397{font-size:58.880000pt;}
.y0_c00397{bottom:0.000000pt;}
.ye_c00397{bottom:34.613067pt;}
.yc_c00397{bottom:192.693173pt;}
.yb_c00397{bottom:210.933307pt;}
.ya_c00397{bottom:251.573387pt;}
.y9_c00397{bottom:269.813520pt;}
.y8_c00397{bottom:339.413480pt;}
.y7_c00397{bottom:357.653613pt;}
.y6_c00397{bottom:427.253560pt;}
.y5_c00397{bottom:445.493693pt;}
.y4_c00397{bottom:515.093640pt;}
.y3_c00397{bottom:533.333773pt;}
.y2_c00397{bottom:612.533200pt;}
.y1_c00397{bottom:630.773333pt;}
.yd_c00397{bottom:691.572960pt;}
.h5_c00397{height:42.866250pt;}
.h2_c00397{height:42.895000pt;}
.h4_c00397{height:79.374147pt;}
.h3_c00397{height:79.376227pt;}
.h0_c00397{height:793.333200pt;}
.h1_c00397{height:793.333333pt;}
.w0_c00397{width:1122.666533pt;}
.w1_c00397{width:1122.666667pt;}
.x0_c00397{left:0.000000pt;}
.x3_c00397{left:68.467200pt;}
.x1_c00397{left:70.547333pt;}
.x2_c00397{left:93.906841pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f037855713bdf46c4e8a8d05.woff2')format("woff");}.ff1_c00398{font-family:ff1_c00398;line-height:0.938965;font-style:normal;font-weight:normal;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_b41a5cd6ad4ce58c7c576cee.woff2')format("woff");}.ff2_c00398{font-family:ff2_c00398;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00398{transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);}
.v0_c00398{vertical-align:0.000000px;}
.v1_c00398{vertical-align:41.039040px;}
.ls0_c00398{letter-spacing:0.000000px;}
.sc__c00398{text-shadow:none;}
.sc0_c00398{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00398{-webkit-text-stroke:0px transparent;}
.sc0_c00398{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00398{word-spacing:0.000000px;}
.ws1_c00398{word-spacing:310.468205px;}
.ws0_c00398{word-spacing:330.476659px;}
.ws2_c00398{word-spacing:372.768912px;}
.ws3_c00398{word-spacing:373.652554px;}
.ws4_c00398{word-spacing:400.832150px;}
._1a_c00398{margin-left:-2340.444341px;}
._18_c00398{width:62.304947px;}
._17_c00398{width:158.558026px;}
._6_c00398{width:348.891379px;}
._1_c00398{width:356.948150px;}
._8_c00398{width:364.002710px;}
._5_c00398{width:392.067274px;}
._9_c00398{width:394.946064px;}
._14_c00398{width:409.893120px;}
._2_c00398{width:419.246870px;}
._3_c00398{width:422.125661px;}
._4_c00398{width:435.385584px;}
._b_c00398{width:444.738672px;}
._15_c00398{width:447.617462px;}
._11_c00398{width:449.471520px;}
._d_c00398{width:463.448160px;}
._16_c00398{width:470.863728px;}
._12_c00398{width:472.639622px;}
._13_c00398{width:602.948160px;}
._7_c00398{width:654.453120px;}
._e_c00398{width:934.184640px;}
._0_c00398{width:948.956160px;}
._c_c00398{width:1355.150640px;}
._f_c00398{width:1369.922160px;}
._10_c00398{width:1383.218640px;}
._a_c00398{width:1397.990160px;}
._19_c00398{width:1544.504832px;}
._1b_c00398{width:3369.132000px;}
.fc0_c00398{color:rgb(0,0,0);}
.fs0_c00398{font-size:66.240000px;}
.y0_c00398{bottom:0.000000px;}
.y1a_c00398{bottom:38.939700px;}
.y18_c00398{bottom:127.684350px;}
.y17_c00398{bottom:148.203900px;}
.y16_c00398{bottom:193.924590px;}
.y15_c00398{bottom:214.444740px;}
.y14_c00398{bottom:263.584395px;}
.y13_c00398{bottom:284.103945px;}
.y12_c00398{bottom:322.444185px;}
.y11_c00398{bottom:342.963735px;}
.y10_c00398{bottom:377.703975px;}
.yf_c00398{bottom:398.223525px;}
.ye_c00398{bottom:443.943030px;}
.yd_c00398{bottom:464.462580px;}
.yc_c00398{bottom:499.382670px;}
.yb_c00398{bottom:519.902220px;}
.ya_c00398{bottom:543.841875px;}
.y9_c00398{bottom:564.361425px;}
.y8_c00398{bottom:588.301665px;}
.y7_c00398{bottom:608.821215px;}
.y6_c00398{bottom:632.761455px;}
.y5_c00398{bottom:653.281005px;}
.y4_c00398{bottom:677.220660px;}
.y3_c00398{bottom:697.740210px;}
.y2_c00398{bottom:721.680450px;}
.y1_c00398{bottom:742.200000px;}
.y19_c00398{bottom:778.024110px;}
.h5_c00398{height:48.224531px;}
.h2_c00398{height:48.256875px;}
.h3_c00398{height:89.295915px;}
.h4_c00398{height:89.298255px;}
.h0_c00398{height:892.499850px;}
.h1_c00398{height:892.500000px;}
.w0_c00398{width:1262.999850px;}
.w1_c00398{width:1263.000000px;}
.x0_c00398{left:0.000000px;}
.x3_c00398{left:77.025600px;}
.x1_c00398{left:79.365750px;}
.x2_c00398{left:108.166572px;}
@media print{
.v0_c00398{vertical-align:0.000000pt;}
.v1_c00398{vertical-align:36.479147pt;}
.ls0_c00398{letter-spacing:0.000000pt;}
.ws5_c00398{word-spacing:0.000000pt;}
.ws1_c00398{word-spacing:275.971738pt;}
.ws0_c00398{word-spacing:293.757030pt;}
.ws2_c00398{word-spacing:331.350144pt;}
.ws3_c00398{word-spacing:332.135603pt;}
.ws4_c00398{word-spacing:356.295245pt;}
._1a_c00398{margin-left:-2080.394970pt;}
._18_c00398{width:55.382175pt;}
._17_c00398{width:140.940467pt;}
._6_c00398{width:310.125670pt;}
._1_c00398{width:317.287245pt;}
._8_c00398{width:323.557965pt;}
._5_c00398{width:348.504243pt;}
._9_c00398{width:351.063168pt;}
._14_c00398{width:364.349440pt;}
._2_c00398{width:372.663885pt;}
._3_c00398{width:375.222810pt;}
._4_c00398{width:387.009408pt;}
._b_c00398{width:395.323264pt;}
._15_c00398{width:397.882189pt;}
._11_c00398{width:399.530240pt;}
._d_c00398{width:411.953920pt;}
._16_c00398{width:418.545536pt;}
._12_c00398{width:420.124109pt;}
._13_c00398{width:535.953920pt;}
._7_c00398{width:581.736107pt;}
._e_c00398{width:830.386347pt;}
._0_c00398{width:843.516587pt;}
._c_c00398{width:1204.578347pt;}
._f_c00398{width:1217.708587pt;}
._10_c00398{width:1229.527680pt;}
._a_c00398{width:1242.657920pt;}
._19_c00398{width:1372.893184pt;}
._1b_c00398{width:2994.784000pt;}
.fs0_c00398{font-size:58.880000pt;}
.y0_c00398{bottom:0.000000pt;}
.y1a_c00398{bottom:34.613067pt;}
.y18_c00398{bottom:113.497200pt;}
.y17_c00398{bottom:131.736800pt;}
.y16_c00398{bottom:172.377413pt;}
.y15_c00398{bottom:190.617547pt;}
.y14_c00398{bottom:234.297240pt;}
.y13_c00398{bottom:252.536840pt;}
.y12_c00398{bottom:286.617053pt;}
.y11_c00398{bottom:304.856653pt;}
.y10_c00398{bottom:335.736867pt;}
.yf_c00398{bottom:353.976467pt;}
.ye_c00398{bottom:394.616027pt;}
.yd_c00398{bottom:412.855627pt;}
.yc_c00398{bottom:443.895707pt;}
.yb_c00398{bottom:462.135307pt;}
.ya_c00398{bottom:483.415000pt;}
.y9_c00398{bottom:501.654600pt;}
.y8_c00398{bottom:522.934813pt;}
.y7_c00398{bottom:541.174413pt;}
.y6_c00398{bottom:562.454627pt;}
.y5_c00398{bottom:580.694227pt;}
.y4_c00398{bottom:601.973920pt;}
.y3_c00398{bottom:620.213520pt;}
.y2_c00398{bottom:641.493733pt;}
.y1_c00398{bottom:659.733333pt;}
.y19_c00398{bottom:691.576987pt;}
.h5_c00398{height:42.866250pt;}
.h2_c00398{height:42.895000pt;}
.h3_c00398{height:79.374147pt;}
.h4_c00398{height:79.376227pt;}
.h0_c00398{height:793.333200pt;}
.h1_c00398{height:793.333333pt;}
.w0_c00398{width:1122.666533pt;}
.w1_c00398{width:1122.666667pt;}
.x0_c00398{left:0.000000pt;}
.x3_c00398{left:68.467200pt;}
.x1_c00398{left:70.547333pt;}
.x2_c00398{left:96.148064pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_06bb54cb5f520d98ef5ca769.woff2')format("woff");}.ff1_c00399{font-family:ff1_c00399;line-height:0.929199;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00399;src:url('chunks/assets/font_f1961d49e59a06ee92a21ab8.woff2')format("woff");}.ff2_c00399{font-family:ff2_c00399;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls0_c00399{letter-spacing:0.000000px;}
.sc__c00399{text-shadow:none;}
.sc0_c00399{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00399{-webkit-text-stroke:0px transparent;}
.sc0_c00399{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00399{word-spacing:0.000000px;}
._0_c00399{margin-left:-1.258478px;}
._1_c00399{width:845.705952px;}
.fc1_c00399{color:rgb(64,64,64);}
.fc0_c00399{color:rgb(0,0,0);}
.fs1_c00399{font-size:66.240000px;}
.fs0_c00399{font-size:95.760000px;}
.y0_c00399{bottom:0.000000px;}
.y3_c00399{bottom:743.145000px;}
.y2_c00399{bottom:780.765000px;}
.y1_c00399{bottom:814.965000px;}
.h3_c00399{height:48.224531px;}
.h2_c00399{height:68.827500px;}
.h0_c00399{height:1262.879850px;}
.h1_c00399{height:1263.000000px;}
.w0_c00399{width:892.979850px;}
.w1_c00399{width:893.250000px;}
.x0_c00399{left:0.000000px;}
.x2_c00399{left:364.395300px;}
.x1_c00399{left:427.755000px;}
.x3_c00399{left:446.475000px;}
@media print{
.v0_c00399{vertical-align:0.000000pt;}
.ls0_c00399{letter-spacing:0.000000pt;}
.ws0_c00399{word-spacing:0.000000pt;}
._0_c00399{margin-left:-1.118647pt;}
._1_c00399{width:751.738624pt;}
.fs1_c00399{font-size:58.880000pt;}
.fs0_c00399{font-size:85.120000pt;}
.y0_c00399{bottom:0.000000pt;}
.y3_c00399{bottom:660.573333pt;}
.y2_c00399{bottom:694.013333pt;}
.y1_c00399{bottom:724.413333pt;}
.h3_c00399{height:42.866250pt;}
.h2_c00399{height:61.180000pt;}
.h0_c00399{height:1122.559867pt;}
.h1_c00399{height:1122.666667pt;}
.w0_c00399{width:793.759867pt;}
.w1_c00399{width:794.000000pt;}
.x0_c00399{left:0.000000pt;}
.x2_c00399{left:323.906933pt;}
.x1_c00399{left:380.226667pt;}
.x3_c00399{left:396.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_9fa79d281d788d68ab756914.woff2')format("woff");}.ff1_c00400{font-family:ff1_c00400;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00400{transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);}
.m1_c00400{transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);}
.m3_c00400{transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);}
.m0_c00400{transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);}
.v0_c00400{vertical-align:0.000000px;}
.v1_c00400{vertical-align:20.886600px;}
.ls2_c00400{letter-spacing:0.000000px;}
.ls0_c00400{letter-spacing:1.178991px;}
.ls1_c00400{letter-spacing:1.583161px;}
.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;}
}
.ws8_c00400{word-spacing:-31.532206px;}
.ws9_c00400{word-spacing:-20.574175px;}
.ws5_c00400{word-spacing:-13.899359px;}
.ws4_c00400{word-spacing:-12.720368px;}
.ws7_c00400{word-spacing:-8.778817px;}
.wsa_c00400{word-spacing:0.000000px;}
.ws6_c00400{word-spacing:83.463278px;}
.ws3_c00400{word-spacing:269.959157px;}
.ws1_c00400{word-spacing:1129.042490px;}
.ws0_c00400{word-spacing:1892.420389px;}
.ws2_c00400{word-spacing:4131.639638px;}
._a_c00400{margin-left:-1.178991px;}
._0_c00400{width:1.927205px;}
._1_c00400{width:3.578508px;}
._e_c00400{width:123.094294px;}
._17_c00400{width:135.002026px;}
._b_c00400{width:155.095292px;}
._11_c00400{width:156.109053px;}
._14_c00400{width:162.375964px;}
._d_c00400{width:182.400507px;}
._f_c00400{width:207.200952px;}
._15_c00400{width:220.646921px;}
._12_c00400{width:247.289262px;}
._18_c00400{width:265.770043px;}
._9_c00400{width:294.229881px;}
._4_c00400{width:295.668911px;}
._6_c00400{width:313.624620px;}
._c_c00400{width:314.890196px;}
._8_c00400{width:332.299319px;}
._7_c00400{width:342.609937px;}
._10_c00400{width:367.672693px;}
._16_c00400{width:380.393061px;}
._3_c00400{width:389.865395px;}
._5_c00400{width:403.057323px;}
._13_c00400{width:407.761003px;}
._2_c00400{width:1166.990597px;}
.fc1_c00400{color:transparent;}
.fc0_c00400{color:rgb(0,0,0);}
.fs2_c00400{font-size:31.578480px;}
.fs1_c00400{font-size:45.756720px;}
.fs0_c00400{font-size:68.313000px;}
.fs3_c00400{font-size:113.425200px;}
.y0_c00400{bottom:0.000000px;}
.y1a_c00400{bottom:18.778500px;}
.y22_c00400{bottom:18.778650px;}
.y19_c00400{bottom:38.578500px;}
.y21_c00400{bottom:38.578650px;}
.y20_c00400{bottom:58.196700px;}
.y18_c00400{bottom:58.198050px;}
.y1f_c00400{bottom:77.996700px;}
.y17_c00400{bottom:77.998050px;}
.y1e_c00400{bottom:97.616850px;}
.y16_c00400{bottom:97.618200px;}
.y1d_c00400{bottom:117.416850px;}
.y15_c00400{bottom:117.418200px;}
.y1c_c00400{bottom:137.038200px;}
.y14_c00400{bottom:137.038350px;}
.y23_c00400{bottom:155.938500px;}
.y1b_c00400{bottom:156.658350px;}
.y13_c00400{bottom:156.658500px;}
.y5_c00400{bottom:188.698500px;}
.y12_c00400{bottom:209.938500px;}
.y7_c00400{bottom:225.958500px;}
.y8_c00400{bottom:268.798500px;}
.y6_c00400{bottom:296.518500px;}
.y9_c00400{bottom:311.638500px;}
.ya_c00400{bottom:354.298500px;}
.yb_c00400{bottom:397.138500px;}
.yc_c00400{bottom:439.978500px;}
.yd_c00400{bottom:482.818500px;}
.ye_c00400{bottom:525.478500px;}
.yf_c00400{bottom:568.318500px;}
.y10_c00400{bottom:611.160000px;}
.y11_c00400{bottom:653.820000px;}
.y4_c00400{bottom:659.760000px;}
.y3_c00400{bottom:671.100240px;}
.y2_c00400{bottom:682.260000px;}
.y1_c00400{bottom:706.920000px;}
.y2b_c00400{bottom:739.500000px;}
.y2a_c00400{bottom:746.160300px;}
.y27_c00400{bottom:759.660300px;}
.y25_c00400{bottom:769.199760px;}
.y29_c00400{bottom:770.100000px;}
.y24_c00400{bottom:784.140000px;}
.y26_c00400{bottom:794.220000px;}
.y28_c00400{bottom:794.580000px;}
.h3_c00400{height:33.312143px;}
.h4_c00400{height:43.876597px;}
.h2_c00400{height:49.733732px;}
.h5_c00400{height:82.576647px;}
.h0_c00400{height:892.499700px;}
.h1_c00400{height:892.500000px;}
.w0_c00400{width:1262.999700px;}
.w1_c00400{width:1263.000000px;}
.x0_c00400{left:0.000000px;}
.xa_c00400{left:27.165750px;}
.x12_c00400{left:35.265750px;}
.x17_c00400{left:38.506050px;}
.x6_c00400{left:43.726200px;}
.x9_c00400{left:52.725600px;}
.x8_c00400{left:59.385900px;}
.x7_c00400{left:66.045750px;}
.x3_c00400{left:92.866039px;}
.x4_c00400{left:185.386500px;}
.x1_c00400{left:228.408000px;}
.x2_c00400{left:287.448000px;}
.x5_c00400{left:416.508000px;}
.xe_c00400{left:479.324866px;}
.xf_c00400{left:492.285810px;}
.xd_c00400{left:496.605365px;}
.xc_c00400{left:499.845601px;}
.x10_c00400{left:506.508117px;}
.xb_c00400{left:507.585836px;}
.x15_c00400{left:557.791500px;}
.x14_c00400{left:567.528000px;}
.x16_c00400{left:619.907857px;}
.x13_c00400{left:837.168000px;}
.x11_c00400{left:878.568000px;}
@media print{
.v0_c00400{vertical-align:0.000000pt;}
.v1_c00400{vertical-align:18.565867pt;}
.ls2_c00400{letter-spacing:0.000000pt;}
.ls0_c00400{letter-spacing:1.047992pt;}
.ls1_c00400{letter-spacing:1.407254pt;}
.ws8_c00400{word-spacing:-28.028627pt;}
.ws9_c00400{word-spacing:-18.288155pt;}
.ws5_c00400{word-spacing:-12.354985pt;}
.ws4_c00400{word-spacing:-11.306994pt;}
.ws7_c00400{word-spacing:-7.803393pt;}
.wsa_c00400{word-spacing:0.000000pt;}
.ws6_c00400{word-spacing:74.189580pt;}
.ws3_c00400{word-spacing:239.963695pt;}
.ws1_c00400{word-spacing:1003.593325pt;}
.ws0_c00400{word-spacing:1682.151457pt;}
.ws2_c00400{word-spacing:3672.568567pt;}
._a_c00400{margin-left:-1.047992pt;}
._0_c00400{width:1.713071pt;}
._1_c00400{width:3.180896pt;}
._e_c00400{width:109.417151pt;}
._17_c00400{width:120.001801pt;}
._b_c00400{width:137.862482pt;}
._11_c00400{width:138.763603pt;}
._14_c00400{width:144.334191pt;}
._d_c00400{width:162.133784pt;}
._f_c00400{width:184.178624pt;}
._15_c00400{width:196.130597pt;}
._12_c00400{width:219.812677pt;}
._18_c00400{width:236.240038pt;}
._9_c00400{width:261.537672pt;}
._4_c00400{width:262.816810pt;}
._6_c00400{width:278.777440pt;}
._c_c00400{width:279.902396pt;}
._8_c00400{width:295.377172pt;}
._7_c00400{width:304.542166pt;}
._10_c00400{width:326.820171pt;}
._16_c00400{width:338.127165pt;}
._3_c00400{width:346.547018pt;}
._5_c00400{width:358.273176pt;}
._13_c00400{width:362.454225pt;}
._2_c00400{width:1037.324975pt;}
.fs2_c00400{font-size:28.069760pt;}
.fs1_c00400{font-size:40.672640pt;}
.fs0_c00400{font-size:60.722667pt;}
.fs3_c00400{font-size:100.822400pt;}
.y0_c00400{bottom:0.000000pt;}
.y1a_c00400{bottom:16.692000pt;}
.y22_c00400{bottom:16.692133pt;}
.y19_c00400{bottom:34.292000pt;}
.y21_c00400{bottom:34.292133pt;}
.y20_c00400{bottom:51.730400pt;}
.y18_c00400{bottom:51.731600pt;}
.y1f_c00400{bottom:69.330400pt;}
.y17_c00400{bottom:69.331600pt;}
.y1e_c00400{bottom:86.770533pt;}
.y16_c00400{bottom:86.771733pt;}
.y1d_c00400{bottom:104.370533pt;}
.y15_c00400{bottom:104.371733pt;}
.y1c_c00400{bottom:121.811733pt;}
.y14_c00400{bottom:121.811867pt;}
.y23_c00400{bottom:138.612000pt;}
.y1b_c00400{bottom:139.251867pt;}
.y13_c00400{bottom:139.252000pt;}
.y5_c00400{bottom:167.732000pt;}
.y12_c00400{bottom:186.612000pt;}
.y7_c00400{bottom:200.852000pt;}
.y8_c00400{bottom:238.932000pt;}
.y6_c00400{bottom:263.572000pt;}
.y9_c00400{bottom:277.012000pt;}
.ya_c00400{bottom:314.932000pt;}
.yb_c00400{bottom:353.012000pt;}
.yc_c00400{bottom:391.092000pt;}
.yd_c00400{bottom:429.172000pt;}
.ye_c00400{bottom:467.092000pt;}
.yf_c00400{bottom:505.172000pt;}
.y10_c00400{bottom:543.253333pt;}
.y11_c00400{bottom:581.173333pt;}
.y4_c00400{bottom:586.453333pt;}
.y3_c00400{bottom:596.533547pt;}
.y2_c00400{bottom:606.453333pt;}
.y1_c00400{bottom:628.373333pt;}
.y2b_c00400{bottom:657.333333pt;}
.y2a_c00400{bottom:663.253600pt;}
.y27_c00400{bottom:675.253600pt;}
.y25_c00400{bottom:683.733120pt;}
.y29_c00400{bottom:684.533333pt;}
.y24_c00400{bottom:697.013333pt;}
.y26_c00400{bottom:705.973333pt;}
.y28_c00400{bottom:706.293333pt;}
.h3_c00400{height:29.610794pt;}
.h4_c00400{height:39.001419pt;}
.h2_c00400{height:44.207762pt;}
.h5_c00400{height:73.401464pt;}
.h0_c00400{height:793.333067pt;}
.h1_c00400{height:793.333333pt;}
.w0_c00400{width:1122.666400pt;}
.w1_c00400{width:1122.666667pt;}
.x0_c00400{left:0.000000pt;}
.xa_c00400{left:24.147333pt;}
.x12_c00400{left:31.347333pt;}
.x17_c00400{left:34.227600pt;}
.x6_c00400{left:38.867733pt;}
.x9_c00400{left:46.867200pt;}
.x8_c00400{left:52.787467pt;}
.x7_c00400{left:58.707333pt;}
.x3_c00400{left:82.547590pt;}
.x4_c00400{left:164.788000pt;}
.x1_c00400{left:203.029333pt;}
.x2_c00400{left:255.509333pt;}
.x5_c00400{left:370.229333pt;}
.xe_c00400{left:426.066547pt;}
.xf_c00400{left:437.587387pt;}
.xd_c00400{left:441.426991pt;}
.xc_c00400{left:444.307201pt;}
.x10_c00400{left:450.229438pt;}
.xb_c00400{left:451.187410pt;}
.x15_c00400{left:495.814667pt;}
.x14_c00400{left:504.469333pt;}
.x16_c00400{left:551.029206pt;}
.x13_c00400{left:744.149333pt;}
.x11_c00400{left:780.949333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_200e5402ba9fbcd36d731563.woff2')format("woff");}.ff1_c00401{font-family:ff1_c00401;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00401{transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);}
.m1_c00401{transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);}
.m3_c00401{transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);}
.m0_c00401{transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);}
.v0_c00401{vertical-align:0.000000px;}
.v1_c00401{vertical-align:20.886600px;}
.ls2_c00401{letter-spacing:0.000000px;}
.ls0_c00401{letter-spacing:1.178991px;}
.ls1_c00401{letter-spacing:1.583161px;}
.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;}
}
.ws8_c00401{word-spacing:-31.532206px;}
.ws9_c00401{word-spacing:-20.574175px;}
.ws5_c00401{word-spacing:-13.899359px;}
.ws4_c00401{word-spacing:-12.720368px;}
.ws7_c00401{word-spacing:-8.778817px;}
.wsa_c00401{word-spacing:0.000000px;}
.ws6_c00401{word-spacing:83.463278px;}
.ws3_c00401{word-spacing:269.959157px;}
.ws1_c00401{word-spacing:1129.042490px;}
.ws0_c00401{word-spacing:1892.420389px;}
.ws2_c00401{word-spacing:4131.639638px;}
._a_c00401{margin-left:-1.178991px;}
._0_c00401{width:1.927205px;}
._1_c00401{width:3.578508px;}
._e_c00401{width:123.094294px;}
._17_c00401{width:135.002026px;}
._b_c00401{width:155.095292px;}
._11_c00401{width:156.109053px;}
._14_c00401{width:162.375964px;}
._d_c00401{width:182.400507px;}
._f_c00401{width:207.200952px;}
._15_c00401{width:220.646921px;}
._12_c00401{width:247.289262px;}
._18_c00401{width:265.770043px;}
._9_c00401{width:294.229881px;}
._4_c00401{width:295.668911px;}
._6_c00401{width:313.624620px;}
._c_c00401{width:314.890196px;}
._8_c00401{width:332.299319px;}
._7_c00401{width:342.609937px;}
._10_c00401{width:367.672693px;}
._16_c00401{width:380.393061px;}
._3_c00401{width:389.865395px;}
._5_c00401{width:403.057323px;}
._13_c00401{width:407.761003px;}
._2_c00401{width:1166.990597px;}
.fc1_c00401{color:transparent;}
.fc0_c00401{color:rgb(0,0,0);}
.fs2_c00401{font-size:31.578480px;}
.fs1_c00401{font-size:45.756720px;}
.fs0_c00401{font-size:68.313000px;}
.fs3_c00401{font-size:113.425200px;}
.y0_c00401{bottom:0.000000px;}
.y1a_c00401{bottom:18.778500px;}
.y22_c00401{bottom:18.778650px;}
.y19_c00401{bottom:38.578500px;}
.y21_c00401{bottom:38.578650px;}
.y20_c00401{bottom:58.196700px;}
.y18_c00401{bottom:58.198050px;}
.y1f_c00401{bottom:77.996700px;}
.y17_c00401{bottom:77.998050px;}
.y1e_c00401{bottom:97.616850px;}
.y16_c00401{bottom:97.618200px;}
.y1d_c00401{bottom:117.416850px;}
.y15_c00401{bottom:117.418200px;}
.y1c_c00401{bottom:137.038200px;}
.y14_c00401{bottom:137.038350px;}
.y23_c00401{bottom:155.938500px;}
.y1b_c00401{bottom:156.658350px;}
.y13_c00401{bottom:156.658500px;}
.y5_c00401{bottom:188.698500px;}
.y12_c00401{bottom:209.938500px;}
.y7_c00401{bottom:225.958500px;}
.y8_c00401{bottom:268.798500px;}
.y6_c00401{bottom:296.518500px;}
.y9_c00401{bottom:311.638500px;}
.ya_c00401{bottom:354.298500px;}
.yb_c00401{bottom:397.138500px;}
.yc_c00401{bottom:439.978500px;}
.yd_c00401{bottom:482.818500px;}
.ye_c00401{bottom:525.478500px;}
.yf_c00401{bottom:568.318500px;}
.y10_c00401{bottom:611.160000px;}
.y11_c00401{bottom:653.820000px;}
.y4_c00401{bottom:659.760000px;}
.y3_c00401{bottom:671.100240px;}
.y2_c00401{bottom:682.260000px;}
.y1_c00401{bottom:706.920000px;}
.y2b_c00401{bottom:739.500000px;}
.y2a_c00401{bottom:746.160300px;}
.y27_c00401{bottom:759.660300px;}
.y25_c00401{bottom:769.199760px;}
.y29_c00401{bottom:770.100000px;}
.y24_c00401{bottom:784.140000px;}
.y26_c00401{bottom:794.220000px;}
.y28_c00401{bottom:794.580000px;}
.h3_c00401{height:33.312143px;}
.h4_c00401{height:43.876597px;}
.h2_c00401{height:49.733732px;}
.h5_c00401{height:82.576647px;}
.h0_c00401{height:892.499700px;}
.h1_c00401{height:892.500000px;}
.w0_c00401{width:1262.999700px;}
.w1_c00401{width:1263.000000px;}
.x0_c00401{left:0.000000px;}
.xa_c00401{left:27.165750px;}
.x12_c00401{left:35.265750px;}
.x17_c00401{left:38.506050px;}
.x6_c00401{left:43.726200px;}
.x9_c00401{left:52.725600px;}
.x8_c00401{left:59.385900px;}
.x7_c00401{left:66.045750px;}
.x3_c00401{left:92.866039px;}
.x4_c00401{left:185.386500px;}
.x1_c00401{left:228.408000px;}
.x2_c00401{left:287.448000px;}
.x5_c00401{left:416.508000px;}
.xd_c00401{left:479.684899px;}
.xb_c00401{left:483.826275px;}
.xe_c00401{left:492.284895px;}
.xc_c00401{left:499.845181px;}
.x10_c00401{left:506.507890px;}
.xf_c00401{left:509.928000px;}
.x15_c00401{left:557.791500px;}
.x14_c00401{left:567.528000px;}
.x16_c00401{left:619.907857px;}
.x13_c00401{left:837.168000px;}
.x11_c00401{left:878.568000px;}
@media print{
.v0_c00401{vertical-align:0.000000pt;}
.v1_c00401{vertical-align:18.565867pt;}
.ls2_c00401{letter-spacing:0.000000pt;}
.ls0_c00401{letter-spacing:1.047992pt;}
.ls1_c00401{letter-spacing:1.407254pt;}
.ws8_c00401{word-spacing:-28.028627pt;}
.ws9_c00401{word-spacing:-18.288155pt;}
.ws5_c00401{word-spacing:-12.354985pt;}
.ws4_c00401{word-spacing:-11.306994pt;}
.ws7_c00401{word-spacing:-7.803393pt;}
.wsa_c00401{word-spacing:0.000000pt;}
.ws6_c00401{word-spacing:74.189580pt;}
.ws3_c00401{word-spacing:239.963695pt;}
.ws1_c00401{word-spacing:1003.593325pt;}
.ws0_c00401{word-spacing:1682.151457pt;}
.ws2_c00401{word-spacing:3672.568567pt;}
._a_c00401{margin-left:-1.047992pt;}
._0_c00401{width:1.713071pt;}
._1_c00401{width:3.180896pt;}
._e_c00401{width:109.417151pt;}
._17_c00401{width:120.001801pt;}
._b_c00401{width:137.862482pt;}
._11_c00401{width:138.763603pt;}
._14_c00401{width:144.334191pt;}
._d_c00401{width:162.133784pt;}
._f_c00401{width:184.178624pt;}
._15_c00401{width:196.130597pt;}
._12_c00401{width:219.812677pt;}
._18_c00401{width:236.240038pt;}
._9_c00401{width:261.537672pt;}
._4_c00401{width:262.816810pt;}
._6_c00401{width:278.777440pt;}
._c_c00401{width:279.902396pt;}
._8_c00401{width:295.377172pt;}
._7_c00401{width:304.542166pt;}
._10_c00401{width:326.820171pt;}
._16_c00401{width:338.127165pt;}
._3_c00401{width:346.547018pt;}
._5_c00401{width:358.273176pt;}
._13_c00401{width:362.454225pt;}
._2_c00401{width:1037.324975pt;}
.fs2_c00401{font-size:28.069760pt;}
.fs1_c00401{font-size:40.672640pt;}
.fs0_c00401{font-size:60.722667pt;}
.fs3_c00401{font-size:100.822400pt;}
.y0_c00401{bottom:0.000000pt;}
.y1a_c00401{bottom:16.692000pt;}
.y22_c00401{bottom:16.692133pt;}
.y19_c00401{bottom:34.292000pt;}
.y21_c00401{bottom:34.292133pt;}
.y20_c00401{bottom:51.730400pt;}
.y18_c00401{bottom:51.731600pt;}
.y1f_c00401{bottom:69.330400pt;}
.y17_c00401{bottom:69.331600pt;}
.y1e_c00401{bottom:86.770533pt;}
.y16_c00401{bottom:86.771733pt;}
.y1d_c00401{bottom:104.370533pt;}
.y15_c00401{bottom:104.371733pt;}
.y1c_c00401{bottom:121.811733pt;}
.y14_c00401{bottom:121.811867pt;}
.y23_c00401{bottom:138.612000pt;}
.y1b_c00401{bottom:139.251867pt;}
.y13_c00401{bottom:139.252000pt;}
.y5_c00401{bottom:167.732000pt;}
.y12_c00401{bottom:186.612000pt;}
.y7_c00401{bottom:200.852000pt;}
.y8_c00401{bottom:238.932000pt;}
.y6_c00401{bottom:263.572000pt;}
.y9_c00401{bottom:277.012000pt;}
.ya_c00401{bottom:314.932000pt;}
.yb_c00401{bottom:353.012000pt;}
.yc_c00401{bottom:391.092000pt;}
.yd_c00401{bottom:429.172000pt;}
.ye_c00401{bottom:467.092000pt;}
.yf_c00401{bottom:505.172000pt;}
.y10_c00401{bottom:543.253333pt;}
.y11_c00401{bottom:581.173333pt;}
.y4_c00401{bottom:586.453333pt;}
.y3_c00401{bottom:596.533547pt;}
.y2_c00401{bottom:606.453333pt;}
.y1_c00401{bottom:628.373333pt;}
.y2b_c00401{bottom:657.333333pt;}
.y2a_c00401{bottom:663.253600pt;}
.y27_c00401{bottom:675.253600pt;}
.y25_c00401{bottom:683.733120pt;}
.y29_c00401{bottom:684.533333pt;}
.y24_c00401{bottom:697.013333pt;}
.y26_c00401{bottom:705.973333pt;}
.y28_c00401{bottom:706.293333pt;}
.h3_c00401{height:29.610794pt;}
.h4_c00401{height:39.001419pt;}
.h2_c00401{height:44.207762pt;}
.h5_c00401{height:73.401464pt;}
.h0_c00401{height:793.333067pt;}
.h1_c00401{height:793.333333pt;}
.w0_c00401{width:1122.666400pt;}
.w1_c00401{width:1122.666667pt;}
.x0_c00401{left:0.000000pt;}
.xa_c00401{left:24.147333pt;}
.x12_c00401{left:31.347333pt;}
.x17_c00401{left:34.227600pt;}
.x6_c00401{left:38.867733pt;}
.x9_c00401{left:46.867200pt;}
.x8_c00401{left:52.787467pt;}
.x7_c00401{left:58.707333pt;}
.x3_c00401{left:82.547590pt;}
.x4_c00401{left:164.788000pt;}
.x1_c00401{left:203.029333pt;}
.x2_c00401{left:255.509333pt;}
.x5_c00401{left:370.229333pt;}
.xd_c00401{left:426.386577pt;}
.xb_c00401{left:430.067800pt;}
.xe_c00401{left:437.586573pt;}
.xc_c00401{left:444.306827pt;}
.x10_c00401{left:450.229236pt;}
.xf_c00401{left:453.269333pt;}
.x15_c00401{left:495.814667pt;}
.x14_c00401{left:504.469333pt;}
.x16_c00401{left:551.029206pt;}
.x13_c00401{left:744.149333pt;}
.x11_c00401{left:780.949333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_dd9eb0d925850d85cdaba3e3.woff2')format("woff");}.ff1_c00402{font-family:ff1_c00402;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00402{transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);}
.m1_c00402{transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);}
.m3_c00402{transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);}
.m0_c00402{transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);}
.v0_c00402{vertical-align:0.000000px;}
.v1_c00402{vertical-align:20.886600px;}
.ls2_c00402{letter-spacing:0.000000px;}
.ls0_c00402{letter-spacing:1.178991px;}
.ls1_c00402{letter-spacing:1.583161px;}
.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;}
}
.ws8_c00402{word-spacing:-31.532206px;}
.ws9_c00402{word-spacing:-20.574175px;}
.ws5_c00402{word-spacing:-13.899359px;}
.ws4_c00402{word-spacing:-12.720368px;}
.ws7_c00402{word-spacing:-8.778817px;}
.wsa_c00402{word-spacing:0.000000px;}
.ws6_c00402{word-spacing:83.463278px;}
.ws3_c00402{word-spacing:269.959157px;}
.ws1_c00402{word-spacing:1129.042490px;}
.ws0_c00402{word-spacing:1892.420389px;}
.ws2_c00402{word-spacing:4131.639638px;}
._a_c00402{margin-left:-1.178991px;}
._0_c00402{width:1.927205px;}
._1_c00402{width:3.578508px;}
._e_c00402{width:123.094294px;}
._17_c00402{width:135.002026px;}
._b_c00402{width:155.095292px;}
._11_c00402{width:156.109053px;}
._14_c00402{width:162.375964px;}
._d_c00402{width:182.400507px;}
._f_c00402{width:207.200952px;}
._15_c00402{width:220.646921px;}
._12_c00402{width:247.289262px;}
._18_c00402{width:265.770043px;}
._9_c00402{width:294.229881px;}
._4_c00402{width:295.668911px;}
._6_c00402{width:313.624620px;}
._c_c00402{width:314.890196px;}
._8_c00402{width:332.299319px;}
._7_c00402{width:342.609937px;}
._10_c00402{width:367.672693px;}
._16_c00402{width:380.393061px;}
._3_c00402{width:389.865395px;}
._5_c00402{width:403.057323px;}
._13_c00402{width:407.761003px;}
._2_c00402{width:1166.990597px;}
.fc1_c00402{color:transparent;}
.fc0_c00402{color:rgb(0,0,0);}
.fs2_c00402{font-size:31.578480px;}
.fs1_c00402{font-size:45.756720px;}
.fs0_c00402{font-size:68.313000px;}
.fs3_c00402{font-size:113.425200px;}
.y0_c00402{bottom:0.000000px;}
.y1a_c00402{bottom:18.778500px;}
.y23_c00402{bottom:18.778650px;}
.y19_c00402{bottom:38.578500px;}
.y22_c00402{bottom:38.578650px;}
.y21_c00402{bottom:58.196700px;}
.y18_c00402{bottom:58.198050px;}
.y20_c00402{bottom:77.996700px;}
.y17_c00402{bottom:77.998050px;}
.y1f_c00402{bottom:97.616850px;}
.y16_c00402{bottom:97.618200px;}
.y1e_c00402{bottom:117.416850px;}
.y15_c00402{bottom:117.418200px;}
.y1d_c00402{bottom:137.038200px;}
.y14_c00402{bottom:137.038350px;}
.y24_c00402{bottom:155.938500px;}
.y1b_c00402{bottom:156.658350px;}
.y13_c00402{bottom:156.658500px;}
.y1c_c00402{bottom:168.358350px;}
.y5_c00402{bottom:188.698500px;}
.y12_c00402{bottom:209.938500px;}
.y7_c00402{bottom:225.958500px;}
.y8_c00402{bottom:268.798500px;}
.y6_c00402{bottom:296.518500px;}
.y9_c00402{bottom:311.638500px;}
.ya_c00402{bottom:354.298500px;}
.yb_c00402{bottom:397.138500px;}
.yc_c00402{bottom:439.978500px;}
.yd_c00402{bottom:482.818500px;}
.ye_c00402{bottom:525.478500px;}
.yf_c00402{bottom:568.318500px;}
.y10_c00402{bottom:611.160000px;}
.y11_c00402{bottom:653.820000px;}
.y4_c00402{bottom:659.760000px;}
.y3_c00402{bottom:671.100240px;}
.y2_c00402{bottom:682.260000px;}
.y1_c00402{bottom:706.920000px;}
.y2c_c00402{bottom:739.500000px;}
.y2b_c00402{bottom:746.160300px;}
.y28_c00402{bottom:759.660300px;}
.y26_c00402{bottom:769.199760px;}
.y2a_c00402{bottom:770.100000px;}
.y25_c00402{bottom:784.140000px;}
.y27_c00402{bottom:794.220000px;}
.y29_c00402{bottom:794.580000px;}
.h3_c00402{height:33.312143px;}
.h4_c00402{height:43.876597px;}
.h2_c00402{height:49.733732px;}
.h5_c00402{height:82.576647px;}
.h0_c00402{height:892.499700px;}
.h1_c00402{height:892.500000px;}
.w0_c00402{width:1262.999700px;}
.w1_c00402{width:1263.000000px;}
.x0_c00402{left:0.000000px;}
.xa_c00402{left:27.165750px;}
.x12_c00402{left:35.265750px;}
.x17_c00402{left:38.506050px;}
.x6_c00402{left:43.726200px;}
.x9_c00402{left:52.725600px;}
.x8_c00402{left:59.385900px;}
.x7_c00402{left:66.045750px;}
.x3_c00402{left:92.866039px;}
.x4_c00402{left:185.386500px;}
.x1_c00402{left:228.408000px;}
.x2_c00402{left:287.448000px;}
.x5_c00402{left:416.508000px;}
.xe_c00402{left:476.265763px;}
.xb_c00402{left:482.745681px;}
.xf_c00402{left:492.285268px;}
.xd_c00402{left:499.845674px;}
.x10_c00402{left:506.507890px;}
.xc_c00402{left:510.617802px;}
.x15_c00402{left:557.791500px;}
.x14_c00402{left:567.528000px;}
.x16_c00402{left:619.907857px;}
.x13_c00402{left:837.168000px;}
.x11_c00402{left:878.568000px;}
@media print{
.v0_c00402{vertical-align:0.000000pt;}
.v1_c00402{vertical-align:18.565867pt;}
.ls2_c00402{letter-spacing:0.000000pt;}
.ls0_c00402{letter-spacing:1.047992pt;}
.ls1_c00402{letter-spacing:1.407254pt;}
.ws8_c00402{word-spacing:-28.028627pt;}
.ws9_c00402{word-spacing:-18.288155pt;}
.ws5_c00402{word-spacing:-12.354985pt;}
.ws4_c00402{word-spacing:-11.306994pt;}
.ws7_c00402{word-spacing:-7.803393pt;}
.wsa_c00402{word-spacing:0.000000pt;}
.ws6_c00402{word-spacing:74.189580pt;}
.ws3_c00402{word-spacing:239.963695pt;}
.ws1_c00402{word-spacing:1003.593325pt;}
.ws0_c00402{word-spacing:1682.151457pt;}
.ws2_c00402{word-spacing:3672.568567pt;}
._a_c00402{margin-left:-1.047992pt;}
._0_c00402{width:1.713071pt;}
._1_c00402{width:3.180896pt;}
._e_c00402{width:109.417151pt;}
._17_c00402{width:120.001801pt;}
._b_c00402{width:137.862482pt;}
._11_c00402{width:138.763603pt;}
._14_c00402{width:144.334191pt;}
._d_c00402{width:162.133784pt;}
._f_c00402{width:184.178624pt;}
._15_c00402{width:196.130597pt;}
._12_c00402{width:219.812677pt;}
._18_c00402{width:236.240038pt;}
._9_c00402{width:261.537672pt;}
._4_c00402{width:262.816810pt;}
._6_c00402{width:278.777440pt;}
._c_c00402{width:279.902396pt;}
._8_c00402{width:295.377172pt;}
._7_c00402{width:304.542166pt;}
._10_c00402{width:326.820171pt;}
._16_c00402{width:338.127165pt;}
._3_c00402{width:346.547018pt;}
._5_c00402{width:358.273176pt;}
._13_c00402{width:362.454225pt;}
._2_c00402{width:1037.324975pt;}
.fs2_c00402{font-size:28.069760pt;}
.fs1_c00402{font-size:40.672640pt;}
.fs0_c00402{font-size:60.722667pt;}
.fs3_c00402{font-size:100.822400pt;}
.y0_c00402{bottom:0.000000pt;}
.y1a_c00402{bottom:16.692000pt;}
.y23_c00402{bottom:16.692133pt;}
.y19_c00402{bottom:34.292000pt;}
.y22_c00402{bottom:34.292133pt;}
.y21_c00402{bottom:51.730400pt;}
.y18_c00402{bottom:51.731600pt;}
.y20_c00402{bottom:69.330400pt;}
.y17_c00402{bottom:69.331600pt;}
.y1f_c00402{bottom:86.770533pt;}
.y16_c00402{bottom:86.771733pt;}
.y1e_c00402{bottom:104.370533pt;}
.y15_c00402{bottom:104.371733pt;}
.y1d_c00402{bottom:121.811733pt;}
.y14_c00402{bottom:121.811867pt;}
.y24_c00402{bottom:138.612000pt;}
.y1b_c00402{bottom:139.251867pt;}
.y13_c00402{bottom:139.252000pt;}
.y1c_c00402{bottom:149.651867pt;}
.y5_c00402{bottom:167.732000pt;}
.y12_c00402{bottom:186.612000pt;}
.y7_c00402{bottom:200.852000pt;}
.y8_c00402{bottom:238.932000pt;}
.y6_c00402{bottom:263.572000pt;}
.y9_c00402{bottom:277.012000pt;}
.ya_c00402{bottom:314.932000pt;}
.yb_c00402{bottom:353.012000pt;}
.yc_c00402{bottom:391.092000pt;}
.yd_c00402{bottom:429.172000pt;}
.ye_c00402{bottom:467.092000pt;}
.yf_c00402{bottom:505.172000pt;}
.y10_c00402{bottom:543.253333pt;}
.y11_c00402{bottom:581.173333pt;}
.y4_c00402{bottom:586.453333pt;}
.y3_c00402{bottom:596.533547pt;}
.y2_c00402{bottom:606.453333pt;}
.y1_c00402{bottom:628.373333pt;}
.y2c_c00402{bottom:657.333333pt;}
.y2b_c00402{bottom:663.253600pt;}
.y28_c00402{bottom:675.253600pt;}
.y26_c00402{bottom:683.733120pt;}
.y2a_c00402{bottom:684.533333pt;}
.y25_c00402{bottom:697.013333pt;}
.y27_c00402{bottom:705.973333pt;}
.y29_c00402{bottom:706.293333pt;}
.h3_c00402{height:29.610794pt;}
.h4_c00402{height:39.001419pt;}
.h2_c00402{height:44.207762pt;}
.h5_c00402{height:73.401464pt;}
.h0_c00402{height:793.333067pt;}
.h1_c00402{height:793.333333pt;}
.w0_c00402{width:1122.666400pt;}
.w1_c00402{width:1122.666667pt;}
.x0_c00402{left:0.000000pt;}
.xa_c00402{left:24.147333pt;}
.x12_c00402{left:31.347333pt;}
.x17_c00402{left:34.227600pt;}
.x6_c00402{left:38.867733pt;}
.x9_c00402{left:46.867200pt;}
.x8_c00402{left:52.787467pt;}
.x7_c00402{left:58.707333pt;}
.x3_c00402{left:82.547590pt;}
.x4_c00402{left:164.788000pt;}
.x1_c00402{left:203.029333pt;}
.x2_c00402{left:255.509333pt;}
.x5_c00402{left:370.229333pt;}
.xe_c00402{left:423.347345pt;}
.xb_c00402{left:429.107272pt;}
.xf_c00402{left:437.586905pt;}
.xd_c00402{left:444.307266pt;}
.x10_c00402{left:450.229236pt;}
.xc_c00402{left:453.882491pt;}
.x15_c00402{left:495.814667pt;}
.x14_c00402{left:504.469333pt;}
.x16_c00402{left:551.029206pt;}
.x13_c00402{left:744.149333pt;}
.x11_c00402{left:780.949333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a7d2e21ef309f81e350645f5.woff2')format("woff");}.ff1_c00403{font-family:ff1_c00403;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00403{transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);}
.m1_c00403{transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);}
.m3_c00403{transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);}
.m0_c00403{transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);}
.v0_c00403{vertical-align:0.000000px;}
.v1_c00403{vertical-align:20.886600px;}
.ls2_c00403{letter-spacing:0.000000px;}
.ls0_c00403{letter-spacing:1.178991px;}
.ls1_c00403{letter-spacing:1.583161px;}
.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;}
}
.ws8_c00403{word-spacing:-31.532206px;}
.ws9_c00403{word-spacing:-20.574175px;}
.ws5_c00403{word-spacing:-13.899359px;}
.ws4_c00403{word-spacing:-12.720368px;}
.ws7_c00403{word-spacing:-8.778817px;}
.wsa_c00403{word-spacing:0.000000px;}
.ws6_c00403{word-spacing:83.463278px;}
.ws3_c00403{word-spacing:269.959157px;}
.ws1_c00403{word-spacing:1129.042490px;}
.ws0_c00403{word-spacing:1892.420389px;}
.ws2_c00403{word-spacing:4131.639638px;}
._a_c00403{margin-left:-1.178991px;}
._0_c00403{width:1.927205px;}
._1_c00403{width:3.578508px;}
._e_c00403{width:123.094294px;}
._17_c00403{width:135.002026px;}
._b_c00403{width:155.095292px;}
._11_c00403{width:156.109053px;}
._14_c00403{width:162.375964px;}
._d_c00403{width:182.400507px;}
._f_c00403{width:207.200952px;}
._15_c00403{width:220.646921px;}
._12_c00403{width:247.289262px;}
._18_c00403{width:265.770043px;}
._9_c00403{width:294.229881px;}
._4_c00403{width:295.668911px;}
._6_c00403{width:313.624620px;}
._c_c00403{width:314.890196px;}
._8_c00403{width:332.299319px;}
._7_c00403{width:342.609937px;}
._10_c00403{width:367.672693px;}
._16_c00403{width:380.393061px;}
._3_c00403{width:389.865395px;}
._5_c00403{width:403.057323px;}
._13_c00403{width:407.761003px;}
._2_c00403{width:1166.990597px;}
.fc1_c00403{color:transparent;}
.fc0_c00403{color:rgb(0,0,0);}
.fs2_c00403{font-size:31.578480px;}
.fs1_c00403{font-size:45.756720px;}
.fs0_c00403{font-size:68.313000px;}
.fs3_c00403{font-size:113.425200px;}
.y0_c00403{bottom:0.000000px;}
.y1a_c00403{bottom:18.778500px;}
.y22_c00403{bottom:18.778650px;}
.y19_c00403{bottom:38.578500px;}
.y21_c00403{bottom:38.578650px;}
.y20_c00403{bottom:58.196700px;}
.y18_c00403{bottom:58.198050px;}
.y1f_c00403{bottom:77.996700px;}
.y17_c00403{bottom:77.998050px;}
.y1e_c00403{bottom:97.616850px;}
.y16_c00403{bottom:97.618200px;}
.y1d_c00403{bottom:117.416850px;}
.y15_c00403{bottom:117.418200px;}
.y1c_c00403{bottom:137.038200px;}
.y14_c00403{bottom:137.038350px;}
.y23_c00403{bottom:155.938500px;}
.y1b_c00403{bottom:156.658350px;}
.y13_c00403{bottom:156.658500px;}
.y5_c00403{bottom:188.698500px;}
.y12_c00403{bottom:209.938500px;}
.y7_c00403{bottom:225.958500px;}
.y8_c00403{bottom:268.798500px;}
.y6_c00403{bottom:296.518500px;}
.y9_c00403{bottom:311.638500px;}
.ya_c00403{bottom:354.298500px;}
.yb_c00403{bottom:397.138500px;}
.yc_c00403{bottom:439.978500px;}
.yd_c00403{bottom:482.818500px;}
.ye_c00403{bottom:525.478500px;}
.yf_c00403{bottom:568.318500px;}
.y10_c00403{bottom:611.160000px;}
.y11_c00403{bottom:653.820000px;}
.y4_c00403{bottom:659.760000px;}
.y3_c00403{bottom:671.100240px;}
.y2_c00403{bottom:682.260000px;}
.y1_c00403{bottom:706.920000px;}
.y2b_c00403{bottom:739.500000px;}
.y2a_c00403{bottom:746.160300px;}
.y27_c00403{bottom:759.660300px;}
.y25_c00403{bottom:769.199760px;}
.y29_c00403{bottom:770.100000px;}
.y24_c00403{bottom:784.140000px;}
.y26_c00403{bottom:794.220000px;}
.y28_c00403{bottom:794.580000px;}
.h3_c00403{height:33.312143px;}
.h4_c00403{height:43.876597px;}
.h2_c00403{height:49.733732px;}
.h5_c00403{height:82.576647px;}
.h0_c00403{height:892.499700px;}
.h1_c00403{height:892.500000px;}
.w0_c00403{width:1262.999700px;}
.w1_c00403{width:1263.000000px;}
.x0_c00403{left:0.000000px;}
.xa_c00403{left:27.165750px;}
.x12_c00403{left:35.265750px;}
.x17_c00403{left:38.506050px;}
.x6_c00403{left:43.726200px;}
.x9_c00403{left:52.725600px;}
.x8_c00403{left:59.385900px;}
.x7_c00403{left:66.045750px;}
.x3_c00403{left:92.866039px;}
.x4_c00403{left:185.386500px;}
.x1_c00403{left:228.408000px;}
.x2_c00403{left:287.448000px;}
.x5_c00403{left:416.508000px;}
.xd_c00403{left:479.684899px;}
.xb_c00403{left:483.826275px;}
.xe_c00403{left:492.284895px;}
.xc_c00403{left:499.845181px;}
.x10_c00403{left:506.507890px;}
.xf_c00403{left:509.928000px;}
.x15_c00403{left:557.791500px;}
.x14_c00403{left:567.528000px;}
.x16_c00403{left:619.907857px;}
.x13_c00403{left:837.168000px;}
.x11_c00403{left:878.568000px;}
@media print{
.v0_c00403{vertical-align:0.000000pt;}
.v1_c00403{vertical-align:18.565867pt;}
.ls2_c00403{letter-spacing:0.000000pt;}
.ls0_c00403{letter-spacing:1.047992pt;}
.ls1_c00403{letter-spacing:1.407254pt;}
.ws8_c00403{word-spacing:-28.028627pt;}
.ws9_c00403{word-spacing:-18.288155pt;}
.ws5_c00403{word-spacing:-12.354985pt;}
.ws4_c00403{word-spacing:-11.306994pt;}
.ws7_c00403{word-spacing:-7.803393pt;}
.wsa_c00403{word-spacing:0.000000pt;}
.ws6_c00403{word-spacing:74.189580pt;}
.ws3_c00403{word-spacing:239.963695pt;}
.ws1_c00403{word-spacing:1003.593325pt;}
.ws0_c00403{word-spacing:1682.151457pt;}
.ws2_c00403{word-spacing:3672.568567pt;}
._a_c00403{margin-left:-1.047992pt;}
._0_c00403{width:1.713071pt;}
._1_c00403{width:3.180896pt;}
._e_c00403{width:109.417151pt;}
._17_c00403{width:120.001801pt;}
._b_c00403{width:137.862482pt;}
._11_c00403{width:138.763603pt;}
._14_c00403{width:144.334191pt;}
._d_c00403{width:162.133784pt;}
._f_c00403{width:184.178624pt;}
._15_c00403{width:196.130597pt;}
._12_c00403{width:219.812677pt;}
._18_c00403{width:236.240038pt;}
._9_c00403{width:261.537672pt;}
._4_c00403{width:262.816810pt;}
._6_c00403{width:278.777440pt;}
._c_c00403{width:279.902396pt;}
._8_c00403{width:295.377172pt;}
._7_c00403{width:304.542166pt;}
._10_c00403{width:326.820171pt;}
._16_c00403{width:338.127165pt;}
._3_c00403{width:346.547018pt;}
._5_c00403{width:358.273176pt;}
._13_c00403{width:362.454225pt;}
._2_c00403{width:1037.324975pt;}
.fs2_c00403{font-size:28.069760pt;}
.fs1_c00403{font-size:40.672640pt;}
.fs0_c00403{font-size:60.722667pt;}
.fs3_c00403{font-size:100.822400pt;}
.y0_c00403{bottom:0.000000pt;}
.y1a_c00403{bottom:16.692000pt;}
.y22_c00403{bottom:16.692133pt;}
.y19_c00403{bottom:34.292000pt;}
.y21_c00403{bottom:34.292133pt;}
.y20_c00403{bottom:51.730400pt;}
.y18_c00403{bottom:51.731600pt;}
.y1f_c00403{bottom:69.330400pt;}
.y17_c00403{bottom:69.331600pt;}
.y1e_c00403{bottom:86.770533pt;}
.y16_c00403{bottom:86.771733pt;}
.y1d_c00403{bottom:104.370533pt;}
.y15_c00403{bottom:104.371733pt;}
.y1c_c00403{bottom:121.811733pt;}
.y14_c00403{bottom:121.811867pt;}
.y23_c00403{bottom:138.612000pt;}
.y1b_c00403{bottom:139.251867pt;}
.y13_c00403{bottom:139.252000pt;}
.y5_c00403{bottom:167.732000pt;}
.y12_c00403{bottom:186.612000pt;}
.y7_c00403{bottom:200.852000pt;}
.y8_c00403{bottom:238.932000pt;}
.y6_c00403{bottom:263.572000pt;}
.y9_c00403{bottom:277.012000pt;}
.ya_c00403{bottom:314.932000pt;}
.yb_c00403{bottom:353.012000pt;}
.yc_c00403{bottom:391.092000pt;}
.yd_c00403{bottom:429.172000pt;}
.ye_c00403{bottom:467.092000pt;}
.yf_c00403{bottom:505.172000pt;}
.y10_c00403{bottom:543.253333pt;}
.y11_c00403{bottom:581.173333pt;}
.y4_c00403{bottom:586.453333pt;}
.y3_c00403{bottom:596.533547pt;}
.y2_c00403{bottom:606.453333pt;}
.y1_c00403{bottom:628.373333pt;}
.y2b_c00403{bottom:657.333333pt;}
.y2a_c00403{bottom:663.253600pt;}
.y27_c00403{bottom:675.253600pt;}
.y25_c00403{bottom:683.733120pt;}
.y29_c00403{bottom:684.533333pt;}
.y24_c00403{bottom:697.013333pt;}
.y26_c00403{bottom:705.973333pt;}
.y28_c00403{bottom:706.293333pt;}
.h3_c00403{height:29.610794pt;}
.h4_c00403{height:39.001419pt;}
.h2_c00403{height:44.207762pt;}
.h5_c00403{height:73.401464pt;}
.h0_c00403{height:793.333067pt;}
.h1_c00403{height:793.333333pt;}
.w0_c00403{width:1122.666400pt;}
.w1_c00403{width:1122.666667pt;}
.x0_c00403{left:0.000000pt;}
.xa_c00403{left:24.147333pt;}
.x12_c00403{left:31.347333pt;}
.x17_c00403{left:34.227600pt;}
.x6_c00403{left:38.867733pt;}
.x9_c00403{left:46.867200pt;}
.x8_c00403{left:52.787467pt;}
.x7_c00403{left:58.707333pt;}
.x3_c00403{left:82.547590pt;}
.x4_c00403{left:164.788000pt;}
.x1_c00403{left:203.029333pt;}
.x2_c00403{left:255.509333pt;}
.x5_c00403{left:370.229333pt;}
.xd_c00403{left:426.386577pt;}
.xb_c00403{left:430.067800pt;}
.xe_c00403{left:437.586573pt;}
.xc_c00403{left:444.306827pt;}
.x10_c00403{left:450.229236pt;}
.xf_c00403{left:453.269333pt;}
.x15_c00403{left:495.814667pt;}
.x14_c00403{left:504.469333pt;}
.x16_c00403{left:551.029206pt;}
.x13_c00403{left:744.149333pt;}
.x11_c00403{left:780.949333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_422e22bafac01e67e72d809e.woff2')format("woff");}.ff1_c00404{font-family:ff1_c00404;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00404{transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);}
.m1_c00404{transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);}
.m3_c00404{transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);}
.m0_c00404{transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);}
.v0_c00404{vertical-align:0.000000px;}
.v1_c00404{vertical-align:20.886600px;}
.ls2_c00404{letter-spacing:0.000000px;}
.ls0_c00404{letter-spacing:1.178991px;}
.ls1_c00404{letter-spacing:1.583161px;}
.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;}
}
.ws8_c00404{word-spacing:-31.532206px;}
.ws9_c00404{word-spacing:-20.574175px;}
.ws5_c00404{word-spacing:-13.899359px;}
.ws4_c00404{word-spacing:-12.720368px;}
.ws7_c00404{word-spacing:-8.778817px;}
.wsa_c00404{word-spacing:0.000000px;}
.ws6_c00404{word-spacing:83.463278px;}
.ws3_c00404{word-spacing:269.959157px;}
.ws1_c00404{word-spacing:1129.042490px;}
.ws0_c00404{word-spacing:1892.420389px;}
.ws2_c00404{word-spacing:4131.639638px;}
._a_c00404{margin-left:-1.178991px;}
._0_c00404{width:1.927205px;}
._1_c00404{width:3.578508px;}
._e_c00404{width:123.094294px;}
._17_c00404{width:135.002026px;}
._b_c00404{width:155.095292px;}
._11_c00404{width:156.109053px;}
._14_c00404{width:162.375964px;}
._d_c00404{width:182.400507px;}
._f_c00404{width:207.200952px;}
._15_c00404{width:220.646921px;}
._12_c00404{width:247.289262px;}
._18_c00404{width:265.770043px;}
._9_c00404{width:294.229881px;}
._4_c00404{width:295.668911px;}
._6_c00404{width:313.624620px;}
._c_c00404{width:314.890196px;}
._8_c00404{width:332.299319px;}
._7_c00404{width:342.609937px;}
._10_c00404{width:367.672693px;}
._16_c00404{width:380.393061px;}
._3_c00404{width:389.865395px;}
._5_c00404{width:403.057323px;}
._13_c00404{width:407.761003px;}
._2_c00404{width:1166.990597px;}
.fc1_c00404{color:transparent;}
.fc0_c00404{color:rgb(0,0,0);}
.fs2_c00404{font-size:31.578480px;}
.fs1_c00404{font-size:45.756720px;}
.fs0_c00404{font-size:68.313000px;}
.fs3_c00404{font-size:113.425200px;}
.y0_c00404{bottom:0.000000px;}
.y1a_c00404{bottom:18.778500px;}
.y22_c00404{bottom:18.778650px;}
.y19_c00404{bottom:38.578500px;}
.y21_c00404{bottom:38.578650px;}
.y20_c00404{bottom:58.196700px;}
.y18_c00404{bottom:58.198050px;}
.y1f_c00404{bottom:77.996700px;}
.y17_c00404{bottom:77.998050px;}
.y1e_c00404{bottom:97.616850px;}
.y16_c00404{bottom:97.618200px;}
.y1d_c00404{bottom:117.416850px;}
.y15_c00404{bottom:117.418200px;}
.y1c_c00404{bottom:137.038200px;}
.y14_c00404{bottom:137.038350px;}
.y23_c00404{bottom:155.938500px;}
.y1b_c00404{bottom:156.658350px;}
.y13_c00404{bottom:156.658500px;}
.y5_c00404{bottom:188.698500px;}
.y12_c00404{bottom:209.938500px;}
.y7_c00404{bottom:225.958500px;}
.y8_c00404{bottom:268.798500px;}
.y6_c00404{bottom:296.518500px;}
.y9_c00404{bottom:311.638500px;}
.ya_c00404{bottom:354.298500px;}
.yb_c00404{bottom:397.138500px;}
.yc_c00404{bottom:439.978500px;}
.yd_c00404{bottom:482.818500px;}
.ye_c00404{bottom:525.478500px;}
.yf_c00404{bottom:568.318500px;}
.y10_c00404{bottom:611.160000px;}
.y11_c00404{bottom:653.820000px;}
.y4_c00404{bottom:659.760000px;}
.y3_c00404{bottom:671.100240px;}
.y2_c00404{bottom:682.260000px;}
.y1_c00404{bottom:706.920000px;}
.y2b_c00404{bottom:739.500000px;}
.y2a_c00404{bottom:746.160300px;}
.y27_c00404{bottom:759.660300px;}
.y25_c00404{bottom:769.199760px;}
.y29_c00404{bottom:770.100000px;}
.y24_c00404{bottom:784.140000px;}
.y26_c00404{bottom:794.220000px;}
.y28_c00404{bottom:794.580000px;}
.h3_c00404{height:33.312143px;}
.h4_c00404{height:43.876597px;}
.h2_c00404{height:49.733732px;}
.h5_c00404{height:82.576647px;}
.h0_c00404{height:892.499700px;}
.h1_c00404{height:892.500000px;}
.w0_c00404{width:1262.999700px;}
.w1_c00404{width:1263.000000px;}
.x0_c00404{left:0.000000px;}
.xa_c00404{left:27.165750px;}
.x11_c00404{left:35.265750px;}
.x16_c00404{left:38.506050px;}
.x6_c00404{left:43.726200px;}
.x9_c00404{left:52.725600px;}
.x8_c00404{left:59.385900px;}
.x7_c00404{left:66.045750px;}
.x3_c00404{left:92.866039px;}
.x4_c00404{left:185.386500px;}
.x1_c00404{left:228.408000px;}
.x2_c00404{left:287.448000px;}
.x5_c00404{left:416.508000px;}
.xd_c00404{left:476.264744px;}
.xe_c00404{left:492.284250px;}
.xc_c00404{left:499.845256px;}
.xb_c00404{left:506.325143px;}
.xf_c00404{left:509.928000px;}
.x14_c00404{left:557.791500px;}
.x13_c00404{left:567.528000px;}
.x15_c00404{left:619.907857px;}
.x12_c00404{left:837.168000px;}
.x10_c00404{left:878.568000px;}
@media print{
.v0_c00404{vertical-align:0.000000pt;}
.v1_c00404{vertical-align:18.565867pt;}
.ls2_c00404{letter-spacing:0.000000pt;}
.ls0_c00404{letter-spacing:1.047992pt;}
.ls1_c00404{letter-spacing:1.407254pt;}
.ws8_c00404{word-spacing:-28.028627pt;}
.ws9_c00404{word-spacing:-18.288155pt;}
.ws5_c00404{word-spacing:-12.354985pt;}
.ws4_c00404{word-spacing:-11.306994pt;}
.ws7_c00404{word-spacing:-7.803393pt;}
.wsa_c00404{word-spacing:0.000000pt;}
.ws6_c00404{word-spacing:74.189580pt;}
.ws3_c00404{word-spacing:239.963695pt;}
.ws1_c00404{word-spacing:1003.593325pt;}
.ws0_c00404{word-spacing:1682.151457pt;}
.ws2_c00404{word-spacing:3672.568567pt;}
._a_c00404{margin-left:-1.047992pt;}
._0_c00404{width:1.713071pt;}
._1_c00404{width:3.180896pt;}
._e_c00404{width:109.417151pt;}
._17_c00404{width:120.001801pt;}
._b_c00404{width:137.862482pt;}
._11_c00404{width:138.763603pt;}
._14_c00404{width:144.334191pt;}
._d_c00404{width:162.133784pt;}
._f_c00404{width:184.178624pt;}
._15_c00404{width:196.130597pt;}
._12_c00404{width:219.812677pt;}
._18_c00404{width:236.240038pt;}
._9_c00404{width:261.537672pt;}
._4_c00404{width:262.816810pt;}
._6_c00404{width:278.777440pt;}
._c_c00404{width:279.902396pt;}
._8_c00404{width:295.377172pt;}
._7_c00404{width:304.542166pt;}
._10_c00404{width:326.820171pt;}
._16_c00404{width:338.127165pt;}
._3_c00404{width:346.547018pt;}
._5_c00404{width:358.273176pt;}
._13_c00404{width:362.454225pt;}
._2_c00404{width:1037.324975pt;}
.fs2_c00404{font-size:28.069760pt;}
.fs1_c00404{font-size:40.672640pt;}
.fs0_c00404{font-size:60.722667pt;}
.fs3_c00404{font-size:100.822400pt;}
.y0_c00404{bottom:0.000000pt;}
.y1a_c00404{bottom:16.692000pt;}
.y22_c00404{bottom:16.692133pt;}
.y19_c00404{bottom:34.292000pt;}
.y21_c00404{bottom:34.292133pt;}
.y20_c00404{bottom:51.730400pt;}
.y18_c00404{bottom:51.731600pt;}
.y1f_c00404{bottom:69.330400pt;}
.y17_c00404{bottom:69.331600pt;}
.y1e_c00404{bottom:86.770533pt;}
.y16_c00404{bottom:86.771733pt;}
.y1d_c00404{bottom:104.370533pt;}
.y15_c00404{bottom:104.371733pt;}
.y1c_c00404{bottom:121.811733pt;}
.y14_c00404{bottom:121.811867pt;}
.y23_c00404{bottom:138.612000pt;}
.y1b_c00404{bottom:139.251867pt;}
.y13_c00404{bottom:139.252000pt;}
.y5_c00404{bottom:167.732000pt;}
.y12_c00404{bottom:186.612000pt;}
.y7_c00404{bottom:200.852000pt;}
.y8_c00404{bottom:238.932000pt;}
.y6_c00404{bottom:263.572000pt;}
.y9_c00404{bottom:277.012000pt;}
.ya_c00404{bottom:314.932000pt;}
.yb_c00404{bottom:353.012000pt;}
.yc_c00404{bottom:391.092000pt;}
.yd_c00404{bottom:429.172000pt;}
.ye_c00404{bottom:467.092000pt;}
.yf_c00404{bottom:505.172000pt;}
.y10_c00404{bottom:543.253333pt;}
.y11_c00404{bottom:581.173333pt;}
.y4_c00404{bottom:586.453333pt;}
.y3_c00404{bottom:596.533547pt;}
.y2_c00404{bottom:606.453333pt;}
.y1_c00404{bottom:628.373333pt;}
.y2b_c00404{bottom:657.333333pt;}
.y2a_c00404{bottom:663.253600pt;}
.y27_c00404{bottom:675.253600pt;}
.y25_c00404{bottom:683.733120pt;}
.y29_c00404{bottom:684.533333pt;}
.y24_c00404{bottom:697.013333pt;}
.y26_c00404{bottom:705.973333pt;}
.y28_c00404{bottom:706.293333pt;}
.h3_c00404{height:29.610794pt;}
.h4_c00404{height:39.001419pt;}
.h2_c00404{height:44.207762pt;}
.h5_c00404{height:73.401464pt;}
.h0_c00404{height:793.333067pt;}
.h1_c00404{height:793.333333pt;}
.w0_c00404{width:1122.666400pt;}
.w1_c00404{width:1122.666667pt;}
.x0_c00404{left:0.000000pt;}
.xa_c00404{left:24.147333pt;}
.x11_c00404{left:31.347333pt;}
.x16_c00404{left:34.227600pt;}
.x6_c00404{left:38.867733pt;}
.x9_c00404{left:46.867200pt;}
.x8_c00404{left:52.787467pt;}
.x7_c00404{left:58.707333pt;}
.x3_c00404{left:82.547590pt;}
.x4_c00404{left:164.788000pt;}
.x1_c00404{left:203.029333pt;}
.x2_c00404{left:255.509333pt;}
.x5_c00404{left:370.229333pt;}
.xd_c00404{left:423.346439pt;}
.xe_c00404{left:437.586000pt;}
.xc_c00404{left:444.306894pt;}
.xb_c00404{left:450.066794pt;}
.xf_c00404{left:453.269333pt;}
.x14_c00404{left:495.814667pt;}
.x13_c00404{left:504.469333pt;}
.x15_c00404{left:551.029206pt;}
.x12_c00404{left:744.149333pt;}
.x10_c00404{left:780.949333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d861f02f83fea37038ad0622.woff2')format("woff");}.ff1_c00405{font-family:ff1_c00405;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00405{transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);}
.m1_c00405{transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);}
.m3_c00405{transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);}
.m0_c00405{transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);}
.v0_c00405{vertical-align:0.000000px;}
.v1_c00405{vertical-align:20.886600px;}
.ls2_c00405{letter-spacing:0.000000px;}
.ls0_c00405{letter-spacing:1.178991px;}
.ls1_c00405{letter-spacing:1.583161px;}
.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;}
}
.ws8_c00405{word-spacing:-31.532206px;}
.ws9_c00405{word-spacing:-20.574175px;}
.ws5_c00405{word-spacing:-13.899359px;}
.ws4_c00405{word-spacing:-12.720368px;}
.ws7_c00405{word-spacing:-8.778817px;}
.wsa_c00405{word-spacing:0.000000px;}
.ws6_c00405{word-spacing:83.463278px;}
.ws3_c00405{word-spacing:269.959157px;}
.ws1_c00405{word-spacing:1129.042490px;}
.ws0_c00405{word-spacing:1892.420389px;}
.ws2_c00405{word-spacing:4131.639638px;}
._a_c00405{margin-left:-1.178991px;}
._0_c00405{width:1.927205px;}
._1_c00405{width:3.578508px;}
._e_c00405{width:123.094294px;}
._17_c00405{width:135.002026px;}
._b_c00405{width:155.095292px;}
._11_c00405{width:156.109053px;}
._14_c00405{width:162.375964px;}
._d_c00405{width:182.400507px;}
._f_c00405{width:207.200952px;}
._15_c00405{width:220.646921px;}
._12_c00405{width:247.289262px;}
._18_c00405{width:265.770043px;}
._9_c00405{width:294.229881px;}
._4_c00405{width:295.668911px;}
._6_c00405{width:313.624620px;}
._c_c00405{width:314.890196px;}
._8_c00405{width:332.299319px;}
._7_c00405{width:342.609937px;}
._10_c00405{width:367.672693px;}
._16_c00405{width:380.393061px;}
._3_c00405{width:389.865395px;}
._5_c00405{width:403.057323px;}
._13_c00405{width:407.761003px;}
._2_c00405{width:1166.990597px;}
.fc1_c00405{color:transparent;}
.fc0_c00405{color:rgb(0,0,0);}
.fs2_c00405{font-size:31.578480px;}
.fs1_c00405{font-size:45.756720px;}
.fs0_c00405{font-size:68.313000px;}
.fs3_c00405{font-size:113.425200px;}
.y0_c00405{bottom:0.000000px;}
.y1a_c00405{bottom:18.778500px;}
.y23_c00405{bottom:18.778650px;}
.y19_c00405{bottom:38.578500px;}
.y22_c00405{bottom:38.578650px;}
.y21_c00405{bottom:58.196700px;}
.y18_c00405{bottom:58.198050px;}
.y20_c00405{bottom:77.996700px;}
.y17_c00405{bottom:77.998050px;}
.y1f_c00405{bottom:97.616850px;}
.y16_c00405{bottom:97.618200px;}
.y1e_c00405{bottom:117.416850px;}
.y15_c00405{bottom:117.418200px;}
.y1d_c00405{bottom:137.038200px;}
.y14_c00405{bottom:137.038350px;}
.y24_c00405{bottom:155.938500px;}
.y1b_c00405{bottom:156.658350px;}
.y13_c00405{bottom:156.658500px;}
.y1c_c00405{bottom:168.358350px;}
.y5_c00405{bottom:188.698500px;}
.y12_c00405{bottom:209.938500px;}
.y7_c00405{bottom:225.958500px;}
.y8_c00405{bottom:268.798500px;}
.y6_c00405{bottom:296.518500px;}
.y9_c00405{bottom:311.638500px;}
.ya_c00405{bottom:354.298500px;}
.yb_c00405{bottom:397.138500px;}
.yc_c00405{bottom:439.978500px;}
.yd_c00405{bottom:482.818500px;}
.ye_c00405{bottom:525.478500px;}
.yf_c00405{bottom:568.318500px;}
.y10_c00405{bottom:611.160000px;}
.y11_c00405{bottom:653.820000px;}
.y4_c00405{bottom:659.760000px;}
.y3_c00405{bottom:671.100240px;}
.y2_c00405{bottom:682.260000px;}
.y1_c00405{bottom:706.920000px;}
.y2c_c00405{bottom:739.500000px;}
.y2b_c00405{bottom:746.160300px;}
.y28_c00405{bottom:759.660300px;}
.y26_c00405{bottom:769.199760px;}
.y2a_c00405{bottom:770.100000px;}
.y25_c00405{bottom:784.140000px;}
.y27_c00405{bottom:794.220000px;}
.y29_c00405{bottom:794.580000px;}
.h3_c00405{height:33.312143px;}
.h4_c00405{height:43.876597px;}
.h2_c00405{height:49.733732px;}
.h5_c00405{height:82.576647px;}
.h0_c00405{height:892.499700px;}
.h1_c00405{height:892.500000px;}
.w0_c00405{width:1262.999700px;}
.w1_c00405{width:1263.000000px;}
.x0_c00405{left:0.000000px;}
.xa_c00405{left:27.165750px;}
.x12_c00405{left:35.265750px;}
.x17_c00405{left:38.506050px;}
.x6_c00405{left:43.726200px;}
.x9_c00405{left:52.725600px;}
.x8_c00405{left:59.385900px;}
.x7_c00405{left:66.045750px;}
.x3_c00405{left:92.866039px;}
.x4_c00405{left:185.386500px;}
.x1_c00405{left:228.408000px;}
.x2_c00405{left:287.448000px;}
.x5_c00405{left:416.508000px;}
.xe_c00405{left:479.685392px;}
.xb_c00405{left:482.745681px;}
.xf_c00405{left:492.285389px;}
.xd_c00405{left:499.845674px;}
.x10_c00405{left:506.507890px;}
.xc_c00405{left:510.617802px;}
.x15_c00405{left:557.791500px;}
.x14_c00405{left:567.528000px;}
.x16_c00405{left:619.907857px;}
.x13_c00405{left:837.168000px;}
.x11_c00405{left:878.568000px;}
@media print{
.v0_c00405{vertical-align:0.000000pt;}
.v1_c00405{vertical-align:18.565867pt;}
.ls2_c00405{letter-spacing:0.000000pt;}
.ls0_c00405{letter-spacing:1.047992pt;}
.ls1_c00405{letter-spacing:1.407254pt;}
.ws8_c00405{word-spacing:-28.028627pt;}
.ws9_c00405{word-spacing:-18.288155pt;}
.ws5_c00405{word-spacing:-12.354985pt;}
.ws4_c00405{word-spacing:-11.306994pt;}
.ws7_c00405{word-spacing:-7.803393pt;}
.wsa_c00405{word-spacing:0.000000pt;}
.ws6_c00405{word-spacing:74.189580pt;}
.ws3_c00405{word-spacing:239.963695pt;}
.ws1_c00405{word-spacing:1003.593325pt;}
.ws0_c00405{word-spacing:1682.151457pt;}
.ws2_c00405{word-spacing:3672.568567pt;}
._a_c00405{margin-left:-1.047992pt;}
._0_c00405{width:1.713071pt;}
._1_c00405{width:3.180896pt;}
._e_c00405{width:109.417151pt;}
._17_c00405{width:120.001801pt;}
._b_c00405{width:137.862482pt;}
._11_c00405{width:138.763603pt;}
._14_c00405{width:144.334191pt;}
._d_c00405{width:162.133784pt;}
._f_c00405{width:184.178624pt;}
._15_c00405{width:196.130597pt;}
._12_c00405{width:219.812677pt;}
._18_c00405{width:236.240038pt;}
._9_c00405{width:261.537672pt;}
._4_c00405{width:262.816810pt;}
._6_c00405{width:278.777440pt;}
._c_c00405{width:279.902396pt;}
._8_c00405{width:295.377172pt;}
._7_c00405{width:304.542166pt;}
._10_c00405{width:326.820171pt;}
._16_c00405{width:338.127165pt;}
._3_c00405{width:346.547018pt;}
._5_c00405{width:358.273176pt;}
._13_c00405{width:362.454225pt;}
._2_c00405{width:1037.324975pt;}
.fs2_c00405{font-size:28.069760pt;}
.fs1_c00405{font-size:40.672640pt;}
.fs0_c00405{font-size:60.722667pt;}
.fs3_c00405{font-size:100.822400pt;}
.y0_c00405{bottom:0.000000pt;}
.y1a_c00405{bottom:16.692000pt;}
.y23_c00405{bottom:16.692133pt;}
.y19_c00405{bottom:34.292000pt;}
.y22_c00405{bottom:34.292133pt;}
.y21_c00405{bottom:51.730400pt;}
.y18_c00405{bottom:51.731600pt;}
.y20_c00405{bottom:69.330400pt;}
.y17_c00405{bottom:69.331600pt;}
.y1f_c00405{bottom:86.770533pt;}
.y16_c00405{bottom:86.771733pt;}
.y1e_c00405{bottom:104.370533pt;}
.y15_c00405{bottom:104.371733pt;}
.y1d_c00405{bottom:121.811733pt;}
.y14_c00405{bottom:121.811867pt;}
.y24_c00405{bottom:138.612000pt;}
.y1b_c00405{bottom:139.251867pt;}
.y13_c00405{bottom:139.252000pt;}
.y1c_c00405{bottom:149.651867pt;}
.y5_c00405{bottom:167.732000pt;}
.y12_c00405{bottom:186.612000pt;}
.y7_c00405{bottom:200.852000pt;}
.y8_c00405{bottom:238.932000pt;}
.y6_c00405{bottom:263.572000pt;}
.y9_c00405{bottom:277.012000pt;}
.ya_c00405{bottom:314.932000pt;}
.yb_c00405{bottom:353.012000pt;}
.yc_c00405{bottom:391.092000pt;}
.yd_c00405{bottom:429.172000pt;}
.ye_c00405{bottom:467.092000pt;}
.yf_c00405{bottom:505.172000pt;}
.y10_c00405{bottom:543.253333pt;}
.y11_c00405{bottom:581.173333pt;}
.y4_c00405{bottom:586.453333pt;}
.y3_c00405{bottom:596.533547pt;}
.y2_c00405{bottom:606.453333pt;}
.y1_c00405{bottom:628.373333pt;}
.y2c_c00405{bottom:657.333333pt;}
.y2b_c00405{bottom:663.253600pt;}
.y28_c00405{bottom:675.253600pt;}
.y26_c00405{bottom:683.733120pt;}
.y2a_c00405{bottom:684.533333pt;}
.y25_c00405{bottom:697.013333pt;}
.y27_c00405{bottom:705.973333pt;}
.y29_c00405{bottom:706.293333pt;}
.h3_c00405{height:29.610794pt;}
.h4_c00405{height:39.001419pt;}
.h2_c00405{height:44.207762pt;}
.h5_c00405{height:73.401464pt;}
.h0_c00405{height:793.333067pt;}
.h1_c00405{height:793.333333pt;}
.w0_c00405{width:1122.666400pt;}
.w1_c00405{width:1122.666667pt;}
.x0_c00405{left:0.000000pt;}
.xa_c00405{left:24.147333pt;}
.x12_c00405{left:31.347333pt;}
.x17_c00405{left:34.227600pt;}
.x6_c00405{left:38.867733pt;}
.x9_c00405{left:46.867200pt;}
.x8_c00405{left:52.787467pt;}
.x7_c00405{left:58.707333pt;}
.x3_c00405{left:82.547590pt;}
.x4_c00405{left:164.788000pt;}
.x1_c00405{left:203.029333pt;}
.x2_c00405{left:255.509333pt;}
.x5_c00405{left:370.229333pt;}
.xe_c00405{left:426.387015pt;}
.xb_c00405{left:429.107272pt;}
.xf_c00405{left:437.587012pt;}
.xd_c00405{left:444.307266pt;}
.x10_c00405{left:450.229236pt;}
.xc_c00405{left:453.882491pt;}
.x15_c00405{left:495.814667pt;}
.x14_c00405{left:504.469333pt;}
.x16_c00405{left:551.029206pt;}
.x13_c00405{left:744.149333pt;}
.x11_c00405{left:780.949333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d7e0b53dcc76b5faa3854b28.woff2')format("woff");}.ff1_c00406{font-family:ff1_c00406;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00406{transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);}
.m1_c00406{transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);}
.m3_c00406{transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);}
.m0_c00406{transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);}
.v0_c00406{vertical-align:0.000000px;}
.v1_c00406{vertical-align:20.886600px;}
.ls2_c00406{letter-spacing:0.000000px;}
.ls0_c00406{letter-spacing:1.178991px;}
.ls1_c00406{letter-spacing:1.583161px;}
.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;}
}
.ws8_c00406{word-spacing:-31.532206px;}
.ws9_c00406{word-spacing:-20.574175px;}
.ws5_c00406{word-spacing:-13.899359px;}
.ws4_c00406{word-spacing:-12.720368px;}
.ws7_c00406{word-spacing:-8.778817px;}
.wsa_c00406{word-spacing:0.000000px;}
.ws6_c00406{word-spacing:83.463278px;}
.ws3_c00406{word-spacing:269.959157px;}
.ws1_c00406{word-spacing:1129.042490px;}
.ws0_c00406{word-spacing:1892.420389px;}
.ws2_c00406{word-spacing:4131.639638px;}
._a_c00406{margin-left:-1.178991px;}
._0_c00406{width:1.927205px;}
._1_c00406{width:3.578508px;}
._e_c00406{width:123.094294px;}
._17_c00406{width:135.002026px;}
._b_c00406{width:155.095292px;}
._11_c00406{width:156.109053px;}
._14_c00406{width:162.375964px;}
._d_c00406{width:182.400507px;}
._f_c00406{width:207.200952px;}
._15_c00406{width:220.646921px;}
._12_c00406{width:247.289262px;}
._18_c00406{width:265.770043px;}
._9_c00406{width:294.229881px;}
._4_c00406{width:295.668911px;}
._6_c00406{width:313.624620px;}
._c_c00406{width:314.890196px;}
._8_c00406{width:332.299319px;}
._7_c00406{width:342.609937px;}
._10_c00406{width:367.672693px;}
._16_c00406{width:380.393061px;}
._3_c00406{width:389.865395px;}
._5_c00406{width:403.057323px;}
._13_c00406{width:407.761003px;}
._2_c00406{width:1166.990597px;}
.fc1_c00406{color:transparent;}
.fc0_c00406{color:rgb(0,0,0);}
.fs2_c00406{font-size:31.578480px;}
.fs1_c00406{font-size:45.756720px;}
.fs0_c00406{font-size:68.313000px;}
.fs3_c00406{font-size:113.425200px;}
.y0_c00406{bottom:0.000000px;}
.y1a_c00406{bottom:18.778500px;}
.y21_c00406{bottom:18.778650px;}
.y19_c00406{bottom:38.578500px;}
.y20_c00406{bottom:58.196700px;}
.y18_c00406{bottom:58.198050px;}
.y1f_c00406{bottom:77.996700px;}
.y17_c00406{bottom:77.998050px;}
.y1e_c00406{bottom:97.616850px;}
.y16_c00406{bottom:97.618200px;}
.y1d_c00406{bottom:117.416850px;}
.y15_c00406{bottom:117.418200px;}
.y1c_c00406{bottom:137.038200px;}
.y14_c00406{bottom:137.038350px;}
.y22_c00406{bottom:155.938500px;}
.y1b_c00406{bottom:156.658350px;}
.y13_c00406{bottom:156.658500px;}
.y5_c00406{bottom:188.698500px;}
.y12_c00406{bottom:209.938500px;}
.y7_c00406{bottom:225.958500px;}
.y8_c00406{bottom:268.798500px;}
.y6_c00406{bottom:296.518500px;}
.y9_c00406{bottom:311.638500px;}
.ya_c00406{bottom:354.298500px;}
.yb_c00406{bottom:397.138500px;}
.yc_c00406{bottom:439.978500px;}
.yd_c00406{bottom:482.818500px;}
.ye_c00406{bottom:525.478500px;}
.yf_c00406{bottom:568.318500px;}
.y10_c00406{bottom:611.160000px;}
.y11_c00406{bottom:653.820000px;}
.y4_c00406{bottom:659.760000px;}
.y3_c00406{bottom:671.100240px;}
.y2_c00406{bottom:682.260000px;}
.y1_c00406{bottom:706.920000px;}
.y2a_c00406{bottom:739.500000px;}
.y29_c00406{bottom:746.160300px;}
.y26_c00406{bottom:759.660300px;}
.y24_c00406{bottom:769.199760px;}
.y28_c00406{bottom:770.100000px;}
.y23_c00406{bottom:784.140000px;}
.y25_c00406{bottom:794.220000px;}
.y27_c00406{bottom:794.580000px;}
.h3_c00406{height:33.312143px;}
.h4_c00406{height:43.876597px;}
.h2_c00406{height:49.733732px;}
.h5_c00406{height:82.576647px;}
.h0_c00406{height:892.499700px;}
.h1_c00406{height:892.500000px;}
.w0_c00406{width:1262.999700px;}
.w1_c00406{width:1263.000000px;}
.x0_c00406{left:0.000000px;}
.xa_c00406{left:27.165750px;}
.x12_c00406{left:35.265750px;}
.x17_c00406{left:38.506050px;}
.x6_c00406{left:43.726200px;}
.x9_c00406{left:52.725600px;}
.x8_c00406{left:59.385900px;}
.x7_c00406{left:66.045750px;}
.x3_c00406{left:92.866039px;}
.x4_c00406{left:185.386500px;}
.x1_c00406{left:228.408000px;}
.x2_c00406{left:287.448000px;}
.x5_c00406{left:416.508000px;}
.xe_c00406{left:476.265764px;}
.xb_c00406{left:482.745681px;}
.xf_c00406{left:492.285270px;}
.xd_c00406{left:496.605395px;}
.xc_c00406{left:499.845631px;}
.x10_c00406{left:506.508000px;}
.x15_c00406{left:557.791500px;}
.x14_c00406{left:567.528000px;}
.x16_c00406{left:619.907857px;}
.x13_c00406{left:837.168000px;}
.x11_c00406{left:878.568000px;}
@media print{
.v0_c00406{vertical-align:0.000000pt;}
.v1_c00406{vertical-align:18.565867pt;}
.ls2_c00406{letter-spacing:0.000000pt;}
.ls0_c00406{letter-spacing:1.047992pt;}
.ls1_c00406{letter-spacing:1.407254pt;}
.ws8_c00406{word-spacing:-28.028627pt;}
.ws9_c00406{word-spacing:-18.288155pt;}
.ws5_c00406{word-spacing:-12.354985pt;}
.ws4_c00406{word-spacing:-11.306994pt;}
.ws7_c00406{word-spacing:-7.803393pt;}
.wsa_c00406{word-spacing:0.000000pt;}
.ws6_c00406{word-spacing:74.189580pt;}
.ws3_c00406{word-spacing:239.963695pt;}
.ws1_c00406{word-spacing:1003.593325pt;}
.ws0_c00406{word-spacing:1682.151457pt;}
.ws2_c00406{word-spacing:3672.568567pt;}
._a_c00406{margin-left:-1.047992pt;}
._0_c00406{width:1.713071pt;}
._1_c00406{width:3.180896pt;}
._e_c00406{width:109.417151pt;}
._17_c00406{width:120.001801pt;}
._b_c00406{width:137.862482pt;}
._11_c00406{width:138.763603pt;}
._14_c00406{width:144.334191pt;}
._d_c00406{width:162.133784pt;}
._f_c00406{width:184.178624pt;}
._15_c00406{width:196.130597pt;}
._12_c00406{width:219.812677pt;}
._18_c00406{width:236.240038pt;}
._9_c00406{width:261.537672pt;}
._4_c00406{width:262.816810pt;}
._6_c00406{width:278.777440pt;}
._c_c00406{width:279.902396pt;}
._8_c00406{width:295.377172pt;}
._7_c00406{width:304.542166pt;}
._10_c00406{width:326.820171pt;}
._16_c00406{width:338.127165pt;}
._3_c00406{width:346.547018pt;}
._5_c00406{width:358.273176pt;}
._13_c00406{width:362.454225pt;}
._2_c00406{width:1037.324975pt;}
.fs2_c00406{font-size:28.069760pt;}
.fs1_c00406{font-size:40.672640pt;}
.fs0_c00406{font-size:60.722667pt;}
.fs3_c00406{font-size:100.822400pt;}
.y0_c00406{bottom:0.000000pt;}
.y1a_c00406{bottom:16.692000pt;}
.y21_c00406{bottom:16.692133pt;}
.y19_c00406{bottom:34.292000pt;}
.y20_c00406{bottom:51.730400pt;}
.y18_c00406{bottom:51.731600pt;}
.y1f_c00406{bottom:69.330400pt;}
.y17_c00406{bottom:69.331600pt;}
.y1e_c00406{bottom:86.770533pt;}
.y16_c00406{bottom:86.771733pt;}
.y1d_c00406{bottom:104.370533pt;}
.y15_c00406{bottom:104.371733pt;}
.y1c_c00406{bottom:121.811733pt;}
.y14_c00406{bottom:121.811867pt;}
.y22_c00406{bottom:138.612000pt;}
.y1b_c00406{bottom:139.251867pt;}
.y13_c00406{bottom:139.252000pt;}
.y5_c00406{bottom:167.732000pt;}
.y12_c00406{bottom:186.612000pt;}
.y7_c00406{bottom:200.852000pt;}
.y8_c00406{bottom:238.932000pt;}
.y6_c00406{bottom:263.572000pt;}
.y9_c00406{bottom:277.012000pt;}
.ya_c00406{bottom:314.932000pt;}
.yb_c00406{bottom:353.012000pt;}
.yc_c00406{bottom:391.092000pt;}
.yd_c00406{bottom:429.172000pt;}
.ye_c00406{bottom:467.092000pt;}
.yf_c00406{bottom:505.172000pt;}
.y10_c00406{bottom:543.253333pt;}
.y11_c00406{bottom:581.173333pt;}
.y4_c00406{bottom:586.453333pt;}
.y3_c00406{bottom:596.533547pt;}
.y2_c00406{bottom:606.453333pt;}
.y1_c00406{bottom:628.373333pt;}
.y2a_c00406{bottom:657.333333pt;}
.y29_c00406{bottom:663.253600pt;}
.y26_c00406{bottom:675.253600pt;}
.y24_c00406{bottom:683.733120pt;}
.y28_c00406{bottom:684.533333pt;}
.y23_c00406{bottom:697.013333pt;}
.y25_c00406{bottom:705.973333pt;}
.y27_c00406{bottom:706.293333pt;}
.h3_c00406{height:29.610794pt;}
.h4_c00406{height:39.001419pt;}
.h2_c00406{height:44.207762pt;}
.h5_c00406{height:73.401464pt;}
.h0_c00406{height:793.333067pt;}
.h1_c00406{height:793.333333pt;}
.w0_c00406{width:1122.666400pt;}
.w1_c00406{width:1122.666667pt;}
.x0_c00406{left:0.000000pt;}
.xa_c00406{left:24.147333pt;}
.x12_c00406{left:31.347333pt;}
.x17_c00406{left:34.227600pt;}
.x6_c00406{left:38.867733pt;}
.x9_c00406{left:46.867200pt;}
.x8_c00406{left:52.787467pt;}
.x7_c00406{left:58.707333pt;}
.x3_c00406{left:82.547590pt;}
.x4_c00406{left:164.788000pt;}
.x1_c00406{left:203.029333pt;}
.x2_c00406{left:255.509333pt;}
.x5_c00406{left:370.229333pt;}
.xe_c00406{left:423.347346pt;}
.xb_c00406{left:429.107272pt;}
.xf_c00406{left:437.586907pt;}
.xd_c00406{left:441.427018pt;}
.xc_c00406{left:444.307228pt;}
.x10_c00406{left:450.229333pt;}
.x15_c00406{left:495.814667pt;}
.x14_c00406{left:504.469333pt;}
.x16_c00406{left:551.029206pt;}
.x13_c00406{left:744.149333pt;}
.x11_c00406{left:780.949333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_27c936dff8e141bc677dcac0.woff2')format("woff");}.ff1_c00407{font-family:ff1_c00407;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00407{transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);}
.m1_c00407{transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);}
.m3_c00407{transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);}
.m0_c00407{transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);}
.v0_c00407{vertical-align:0.000000px;}
.v1_c00407{vertical-align:20.886600px;}
.ls2_c00407{letter-spacing:0.000000px;}
.ls0_c00407{letter-spacing:1.178991px;}
.ls1_c00407{letter-spacing:1.583161px;}
.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;}
}
.ws8_c00407{word-spacing:-31.532206px;}
.ws9_c00407{word-spacing:-20.574175px;}
.ws5_c00407{word-spacing:-13.899359px;}
.ws4_c00407{word-spacing:-12.720368px;}
.ws7_c00407{word-spacing:-8.778817px;}
.wsa_c00407{word-spacing:0.000000px;}
.ws6_c00407{word-spacing:83.463278px;}
.ws3_c00407{word-spacing:269.959157px;}
.ws1_c00407{word-spacing:1129.042490px;}
.ws0_c00407{word-spacing:1892.420389px;}
.ws2_c00407{word-spacing:4131.639638px;}
._a_c00407{margin-left:-1.178991px;}
._0_c00407{width:1.927205px;}
._1_c00407{width:3.578508px;}
._e_c00407{width:123.094294px;}
._17_c00407{width:135.002026px;}
._b_c00407{width:155.095292px;}
._11_c00407{width:156.109053px;}
._14_c00407{width:162.375964px;}
._d_c00407{width:182.400507px;}
._f_c00407{width:207.200952px;}
._15_c00407{width:220.646921px;}
._12_c00407{width:247.289262px;}
._18_c00407{width:265.770043px;}
._9_c00407{width:294.229881px;}
._4_c00407{width:295.668911px;}
._6_c00407{width:313.624620px;}
._c_c00407{width:314.890196px;}
._8_c00407{width:332.299319px;}
._7_c00407{width:342.609937px;}
._10_c00407{width:367.672693px;}
._16_c00407{width:380.393061px;}
._3_c00407{width:389.865395px;}
._5_c00407{width:403.057323px;}
._13_c00407{width:407.761003px;}
._2_c00407{width:1166.990597px;}
.fc1_c00407{color:transparent;}
.fc0_c00407{color:rgb(0,0,0);}
.fs2_c00407{font-size:31.578480px;}
.fs1_c00407{font-size:45.756720px;}
.fs0_c00407{font-size:68.313000px;}
.fs3_c00407{font-size:113.425200px;}
.y0_c00407{bottom:0.000000px;}
.y1a_c00407{bottom:18.778500px;}
.y22_c00407{bottom:18.778650px;}
.y19_c00407{bottom:38.578500px;}
.y21_c00407{bottom:38.578650px;}
.y20_c00407{bottom:58.196700px;}
.y18_c00407{bottom:58.198050px;}
.y1f_c00407{bottom:77.996700px;}
.y17_c00407{bottom:77.998050px;}
.y1e_c00407{bottom:97.616850px;}
.y16_c00407{bottom:97.618200px;}
.y1d_c00407{bottom:117.416850px;}
.y15_c00407{bottom:117.418200px;}
.y1c_c00407{bottom:137.038200px;}
.y14_c00407{bottom:137.038350px;}
.y23_c00407{bottom:155.938500px;}
.y1b_c00407{bottom:156.658350px;}
.y13_c00407{bottom:156.658500px;}
.y5_c00407{bottom:188.698500px;}
.y12_c00407{bottom:209.938500px;}
.y7_c00407{bottom:225.958500px;}
.y8_c00407{bottom:268.798500px;}
.y6_c00407{bottom:296.518500px;}
.y9_c00407{bottom:311.638500px;}
.ya_c00407{bottom:354.298500px;}
.yb_c00407{bottom:397.138500px;}
.yc_c00407{bottom:439.978500px;}
.yd_c00407{bottom:482.818500px;}
.ye_c00407{bottom:525.478500px;}
.yf_c00407{bottom:568.318500px;}
.y10_c00407{bottom:611.160000px;}
.y11_c00407{bottom:653.820000px;}
.y4_c00407{bottom:659.760000px;}
.y3_c00407{bottom:671.100240px;}
.y2_c00407{bottom:682.260000px;}
.y1_c00407{bottom:706.920000px;}
.y2b_c00407{bottom:739.500000px;}
.y2a_c00407{bottom:746.160300px;}
.y27_c00407{bottom:759.660300px;}
.y25_c00407{bottom:769.199760px;}
.y29_c00407{bottom:770.100000px;}
.y24_c00407{bottom:784.140000px;}
.y26_c00407{bottom:794.220000px;}
.y28_c00407{bottom:794.580000px;}
.h3_c00407{height:33.312143px;}
.h4_c00407{height:43.876597px;}
.h2_c00407{height:49.733732px;}
.h5_c00407{height:82.576647px;}
.h0_c00407{height:892.499700px;}
.h1_c00407{height:892.500000px;}
.w0_c00407{width:1262.999700px;}
.w1_c00407{width:1263.000000px;}
.x0_c00407{left:0.000000px;}
.xa_c00407{left:27.165750px;}
.x12_c00407{left:35.265750px;}
.x17_c00407{left:38.506050px;}
.x6_c00407{left:43.726200px;}
.x9_c00407{left:52.725600px;}
.x8_c00407{left:59.385900px;}
.x7_c00407{left:66.045750px;}
.x3_c00407{left:92.866039px;}
.x4_c00407{left:185.386500px;}
.x1_c00407{left:228.408000px;}
.x2_c00407{left:287.448000px;}
.x5_c00407{left:416.508000px;}
.xe_c00407{left:476.265734px;}
.xf_c00407{left:492.285840px;}
.xd_c00407{left:496.605365px;}
.xc_c00407{left:499.845601px;}
.x10_c00407{left:506.508117px;}
.xb_c00407{left:507.585836px;}
.x15_c00407{left:557.791500px;}
.x14_c00407{left:567.528000px;}
.x16_c00407{left:619.907857px;}
.x13_c00407{left:837.168000px;}
.x11_c00407{left:878.568000px;}
@media print{
.v0_c00407{vertical-align:0.000000pt;}
.v1_c00407{vertical-align:18.565867pt;}
.ls2_c00407{letter-spacing:0.000000pt;}
.ls0_c00407{letter-spacing:1.047992pt;}
.ls1_c00407{letter-spacing:1.407254pt;}
.ws8_c00407{word-spacing:-28.028627pt;}
.ws9_c00407{word-spacing:-18.288155pt;}
.ws5_c00407{word-spacing:-12.354985pt;}
.ws4_c00407{word-spacing:-11.306994pt;}
.ws7_c00407{word-spacing:-7.803393pt;}
.wsa_c00407{word-spacing:0.000000pt;}
.ws6_c00407{word-spacing:74.189580pt;}
.ws3_c00407{word-spacing:239.963695pt;}
.ws1_c00407{word-spacing:1003.593325pt;}
.ws0_c00407{word-spacing:1682.151457pt;}
.ws2_c00407{word-spacing:3672.568567pt;}
._a_c00407{margin-left:-1.047992pt;}
._0_c00407{width:1.713071pt;}
._1_c00407{width:3.180896pt;}
._e_c00407{width:109.417151pt;}
._17_c00407{width:120.001801pt;}
._b_c00407{width:137.862482pt;}
._11_c00407{width:138.763603pt;}
._14_c00407{width:144.334191pt;}
._d_c00407{width:162.133784pt;}
._f_c00407{width:184.178624pt;}
._15_c00407{width:196.130597pt;}
._12_c00407{width:219.812677pt;}
._18_c00407{width:236.240038pt;}
._9_c00407{width:261.537672pt;}
._4_c00407{width:262.816810pt;}
._6_c00407{width:278.777440pt;}
._c_c00407{width:279.902396pt;}
._8_c00407{width:295.377172pt;}
._7_c00407{width:304.542166pt;}
._10_c00407{width:326.820171pt;}
._16_c00407{width:338.127165pt;}
._3_c00407{width:346.547018pt;}
._5_c00407{width:358.273176pt;}
._13_c00407{width:362.454225pt;}
._2_c00407{width:1037.324975pt;}
.fs2_c00407{font-size:28.069760pt;}
.fs1_c00407{font-size:40.672640pt;}
.fs0_c00407{font-size:60.722667pt;}
.fs3_c00407{font-size:100.822400pt;}
.y0_c00407{bottom:0.000000pt;}
.y1a_c00407{bottom:16.692000pt;}
.y22_c00407{bottom:16.692133pt;}
.y19_c00407{bottom:34.292000pt;}
.y21_c00407{bottom:34.292133pt;}
.y20_c00407{bottom:51.730400pt;}
.y18_c00407{bottom:51.731600pt;}
.y1f_c00407{bottom:69.330400pt;}
.y17_c00407{bottom:69.331600pt;}
.y1e_c00407{bottom:86.770533pt;}
.y16_c00407{bottom:86.771733pt;}
.y1d_c00407{bottom:104.370533pt;}
.y15_c00407{bottom:104.371733pt;}
.y1c_c00407{bottom:121.811733pt;}
.y14_c00407{bottom:121.811867pt;}
.y23_c00407{bottom:138.612000pt;}
.y1b_c00407{bottom:139.251867pt;}
.y13_c00407{bottom:139.252000pt;}
.y5_c00407{bottom:167.732000pt;}
.y12_c00407{bottom:186.612000pt;}
.y7_c00407{bottom:200.852000pt;}
.y8_c00407{bottom:238.932000pt;}
.y6_c00407{bottom:263.572000pt;}
.y9_c00407{bottom:277.012000pt;}
.ya_c00407{bottom:314.932000pt;}
.yb_c00407{bottom:353.012000pt;}
.yc_c00407{bottom:391.092000pt;}
.yd_c00407{bottom:429.172000pt;}
.ye_c00407{bottom:467.092000pt;}
.yf_c00407{bottom:505.172000pt;}
.y10_c00407{bottom:543.253333pt;}
.y11_c00407{bottom:581.173333pt;}
.y4_c00407{bottom:586.453333pt;}
.y3_c00407{bottom:596.533547pt;}
.y2_c00407{bottom:606.453333pt;}
.y1_c00407{bottom:628.373333pt;}
.y2b_c00407{bottom:657.333333pt;}
.y2a_c00407{bottom:663.253600pt;}
.y27_c00407{bottom:675.253600pt;}
.y25_c00407{bottom:683.733120pt;}
.y29_c00407{bottom:684.533333pt;}
.y24_c00407{bottom:697.013333pt;}
.y26_c00407{bottom:705.973333pt;}
.y28_c00407{bottom:706.293333pt;}
.h3_c00407{height:29.610794pt;}
.h4_c00407{height:39.001419pt;}
.h2_c00407{height:44.207762pt;}
.h5_c00407{height:73.401464pt;}
.h0_c00407{height:793.333067pt;}
.h1_c00407{height:793.333333pt;}
.w0_c00407{width:1122.666400pt;}
.w1_c00407{width:1122.666667pt;}
.x0_c00407{left:0.000000pt;}
.xa_c00407{left:24.147333pt;}
.x12_c00407{left:31.347333pt;}
.x17_c00407{left:34.227600pt;}
.x6_c00407{left:38.867733pt;}
.x9_c00407{left:46.867200pt;}
.x8_c00407{left:52.787467pt;}
.x7_c00407{left:58.707333pt;}
.x3_c00407{left:82.547590pt;}
.x4_c00407{left:164.788000pt;}
.x1_c00407{left:203.029333pt;}
.x2_c00407{left:255.509333pt;}
.x5_c00407{left:370.229333pt;}
.xe_c00407{left:423.347319pt;}
.xf_c00407{left:437.587414pt;}
.xd_c00407{left:441.426991pt;}
.xc_c00407{left:444.307201pt;}
.x10_c00407{left:450.229438pt;}
.xb_c00407{left:451.187410pt;}
.x15_c00407{left:495.814667pt;}
.x14_c00407{left:504.469333pt;}
.x16_c00407{left:551.029206pt;}
.x13_c00407{left:744.149333pt;}
.x11_c00407{left:780.949333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_422e22bafac01e67e72d809e.woff2')format("woff");}.ff1_c00408{font-family:ff1_c00408;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00408{transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);}
.m1_c00408{transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);}
.m3_c00408{transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);}
.m0_c00408{transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);}
.v0_c00408{vertical-align:0.000000px;}
.v1_c00408{vertical-align:20.886600px;}
.ls2_c00408{letter-spacing:0.000000px;}
.ls0_c00408{letter-spacing:1.178991px;}
.ls1_c00408{letter-spacing:1.583161px;}
.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;}
}
.ws8_c00408{word-spacing:-31.532206px;}
.ws9_c00408{word-spacing:-20.574175px;}
.ws5_c00408{word-spacing:-13.899359px;}
.ws4_c00408{word-spacing:-12.720368px;}
.ws7_c00408{word-spacing:-8.778817px;}
.wsa_c00408{word-spacing:0.000000px;}
.ws6_c00408{word-spacing:83.463278px;}
.ws3_c00408{word-spacing:269.959157px;}
.ws1_c00408{word-spacing:1129.042490px;}
.ws0_c00408{word-spacing:1892.420389px;}
.ws2_c00408{word-spacing:4131.639638px;}
._a_c00408{margin-left:-1.178991px;}
._0_c00408{width:1.927205px;}
._1_c00408{width:3.578508px;}
._e_c00408{width:123.094294px;}
._17_c00408{width:135.002026px;}
._b_c00408{width:155.095292px;}
._11_c00408{width:156.109053px;}
._14_c00408{width:162.375964px;}
._d_c00408{width:182.400507px;}
._f_c00408{width:207.200952px;}
._15_c00408{width:220.646921px;}
._12_c00408{width:247.289262px;}
._18_c00408{width:265.770043px;}
._9_c00408{width:294.229881px;}
._4_c00408{width:295.668911px;}
._6_c00408{width:313.624620px;}
._c_c00408{width:314.890196px;}
._8_c00408{width:332.299319px;}
._7_c00408{width:342.609937px;}
._10_c00408{width:367.672693px;}
._16_c00408{width:380.393061px;}
._3_c00408{width:389.865395px;}
._5_c00408{width:403.057323px;}
._13_c00408{width:407.761003px;}
._2_c00408{width:1166.990597px;}
.fc1_c00408{color:transparent;}
.fc0_c00408{color:rgb(0,0,0);}
.fs2_c00408{font-size:31.578480px;}
.fs1_c00408{font-size:45.756720px;}
.fs0_c00408{font-size:68.313000px;}
.fs3_c00408{font-size:113.425200px;}
.y0_c00408{bottom:0.000000px;}
.y1a_c00408{bottom:18.778500px;}
.y22_c00408{bottom:18.778650px;}
.y19_c00408{bottom:38.578500px;}
.y21_c00408{bottom:38.578650px;}
.y20_c00408{bottom:58.196700px;}
.y18_c00408{bottom:58.198050px;}
.y1f_c00408{bottom:77.996700px;}
.y17_c00408{bottom:77.998050px;}
.y1e_c00408{bottom:97.616850px;}
.y16_c00408{bottom:97.618200px;}
.y1d_c00408{bottom:117.416850px;}
.y15_c00408{bottom:117.418200px;}
.y1c_c00408{bottom:137.038200px;}
.y14_c00408{bottom:137.038350px;}
.y23_c00408{bottom:155.938500px;}
.y1b_c00408{bottom:156.658350px;}
.y13_c00408{bottom:156.658500px;}
.y5_c00408{bottom:188.698500px;}
.y12_c00408{bottom:209.938500px;}
.y7_c00408{bottom:225.958500px;}
.y8_c00408{bottom:268.798500px;}
.y6_c00408{bottom:296.518500px;}
.y9_c00408{bottom:311.638500px;}
.ya_c00408{bottom:354.298500px;}
.yb_c00408{bottom:397.138500px;}
.yc_c00408{bottom:439.978500px;}
.yd_c00408{bottom:482.818500px;}
.ye_c00408{bottom:525.478500px;}
.yf_c00408{bottom:568.318500px;}
.y10_c00408{bottom:611.160000px;}
.y11_c00408{bottom:653.820000px;}
.y4_c00408{bottom:659.760000px;}
.y3_c00408{bottom:671.100240px;}
.y2_c00408{bottom:682.260000px;}
.y1_c00408{bottom:706.920000px;}
.y2b_c00408{bottom:739.500000px;}
.y2a_c00408{bottom:746.160300px;}
.y27_c00408{bottom:759.660300px;}
.y25_c00408{bottom:769.199760px;}
.y29_c00408{bottom:770.100000px;}
.y24_c00408{bottom:784.140000px;}
.y26_c00408{bottom:794.220000px;}
.y28_c00408{bottom:794.580000px;}
.h3_c00408{height:33.312143px;}
.h4_c00408{height:43.876597px;}
.h2_c00408{height:49.733732px;}
.h5_c00408{height:82.576647px;}
.h0_c00408{height:892.499700px;}
.h1_c00408{height:892.500000px;}
.w0_c00408{width:1262.999700px;}
.w1_c00408{width:1263.000000px;}
.x0_c00408{left:0.000000px;}
.xa_c00408{left:27.165750px;}
.x11_c00408{left:35.265750px;}
.x16_c00408{left:38.506050px;}
.x6_c00408{left:43.726200px;}
.x9_c00408{left:52.725600px;}
.x8_c00408{left:59.385900px;}
.x7_c00408{left:66.045750px;}
.x3_c00408{left:92.866039px;}
.x4_c00408{left:185.386500px;}
.x1_c00408{left:228.408000px;}
.x2_c00408{left:287.448000px;}
.x5_c00408{left:416.508000px;}
.xd_c00408{left:476.264744px;}
.xe_c00408{left:492.284250px;}
.xc_c00408{left:499.845256px;}
.xb_c00408{left:506.325143px;}
.xf_c00408{left:509.928000px;}
.x14_c00408{left:557.791500px;}
.x13_c00408{left:567.528000px;}
.x15_c00408{left:619.907857px;}
.x12_c00408{left:837.168000px;}
.x10_c00408{left:878.568000px;}
@media print{
.v0_c00408{vertical-align:0.000000pt;}
.v1_c00408{vertical-align:18.565867pt;}
.ls2_c00408{letter-spacing:0.000000pt;}
.ls0_c00408{letter-spacing:1.047992pt;}
.ls1_c00408{letter-spacing:1.407254pt;}
.ws8_c00408{word-spacing:-28.028627pt;}
.ws9_c00408{word-spacing:-18.288155pt;}
.ws5_c00408{word-spacing:-12.354985pt;}
.ws4_c00408{word-spacing:-11.306994pt;}
.ws7_c00408{word-spacing:-7.803393pt;}
.wsa_c00408{word-spacing:0.000000pt;}
.ws6_c00408{word-spacing:74.189580pt;}
.ws3_c00408{word-spacing:239.963695pt;}
.ws1_c00408{word-spacing:1003.593325pt;}
.ws0_c00408{word-spacing:1682.151457pt;}
.ws2_c00408{word-spacing:3672.568567pt;}
._a_c00408{margin-left:-1.047992pt;}
._0_c00408{width:1.713071pt;}
._1_c00408{width:3.180896pt;}
._e_c00408{width:109.417151pt;}
._17_c00408{width:120.001801pt;}
._b_c00408{width:137.862482pt;}
._11_c00408{width:138.763603pt;}
._14_c00408{width:144.334191pt;}
._d_c00408{width:162.133784pt;}
._f_c00408{width:184.178624pt;}
._15_c00408{width:196.130597pt;}
._12_c00408{width:219.812677pt;}
._18_c00408{width:236.240038pt;}
._9_c00408{width:261.537672pt;}
._4_c00408{width:262.816810pt;}
._6_c00408{width:278.777440pt;}
._c_c00408{width:279.902396pt;}
._8_c00408{width:295.377172pt;}
._7_c00408{width:304.542166pt;}
._10_c00408{width:326.820171pt;}
._16_c00408{width:338.127165pt;}
._3_c00408{width:346.547018pt;}
._5_c00408{width:358.273176pt;}
._13_c00408{width:362.454225pt;}
._2_c00408{width:1037.324975pt;}
.fs2_c00408{font-size:28.069760pt;}
.fs1_c00408{font-size:40.672640pt;}
.fs0_c00408{font-size:60.722667pt;}
.fs3_c00408{font-size:100.822400pt;}
.y0_c00408{bottom:0.000000pt;}
.y1a_c00408{bottom:16.692000pt;}
.y22_c00408{bottom:16.692133pt;}
.y19_c00408{bottom:34.292000pt;}
.y21_c00408{bottom:34.292133pt;}
.y20_c00408{bottom:51.730400pt;}
.y18_c00408{bottom:51.731600pt;}
.y1f_c00408{bottom:69.330400pt;}
.y17_c00408{bottom:69.331600pt;}
.y1e_c00408{bottom:86.770533pt;}
.y16_c00408{bottom:86.771733pt;}
.y1d_c00408{bottom:104.370533pt;}
.y15_c00408{bottom:104.371733pt;}
.y1c_c00408{bottom:121.811733pt;}
.y14_c00408{bottom:121.811867pt;}
.y23_c00408{bottom:138.612000pt;}
.y1b_c00408{bottom:139.251867pt;}
.y13_c00408{bottom:139.252000pt;}
.y5_c00408{bottom:167.732000pt;}
.y12_c00408{bottom:186.612000pt;}
.y7_c00408{bottom:200.852000pt;}
.y8_c00408{bottom:238.932000pt;}
.y6_c00408{bottom:263.572000pt;}
.y9_c00408{bottom:277.012000pt;}
.ya_c00408{bottom:314.932000pt;}
.yb_c00408{bottom:353.012000pt;}
.yc_c00408{bottom:391.092000pt;}
.yd_c00408{bottom:429.172000pt;}
.ye_c00408{bottom:467.092000pt;}
.yf_c00408{bottom:505.172000pt;}
.y10_c00408{bottom:543.253333pt;}
.y11_c00408{bottom:581.173333pt;}
.y4_c00408{bottom:586.453333pt;}
.y3_c00408{bottom:596.533547pt;}
.y2_c00408{bottom:606.453333pt;}
.y1_c00408{bottom:628.373333pt;}
.y2b_c00408{bottom:657.333333pt;}
.y2a_c00408{bottom:663.253600pt;}
.y27_c00408{bottom:675.253600pt;}
.y25_c00408{bottom:683.733120pt;}
.y29_c00408{bottom:684.533333pt;}
.y24_c00408{bottom:697.013333pt;}
.y26_c00408{bottom:705.973333pt;}
.y28_c00408{bottom:706.293333pt;}
.h3_c00408{height:29.610794pt;}
.h4_c00408{height:39.001419pt;}
.h2_c00408{height:44.207762pt;}
.h5_c00408{height:73.401464pt;}
.h0_c00408{height:793.333067pt;}
.h1_c00408{height:793.333333pt;}
.w0_c00408{width:1122.666400pt;}
.w1_c00408{width:1122.666667pt;}
.x0_c00408{left:0.000000pt;}
.xa_c00408{left:24.147333pt;}
.x11_c00408{left:31.347333pt;}
.x16_c00408{left:34.227600pt;}
.x6_c00408{left:38.867733pt;}
.x9_c00408{left:46.867200pt;}
.x8_c00408{left:52.787467pt;}
.x7_c00408{left:58.707333pt;}
.x3_c00408{left:82.547590pt;}
.x4_c00408{left:164.788000pt;}
.x1_c00408{left:203.029333pt;}
.x2_c00408{left:255.509333pt;}
.x5_c00408{left:370.229333pt;}
.xd_c00408{left:423.346439pt;}
.xe_c00408{left:437.586000pt;}
.xc_c00408{left:444.306894pt;}
.xb_c00408{left:450.066794pt;}
.xf_c00408{left:453.269333pt;}
.x14_c00408{left:495.814667pt;}
.x13_c00408{left:504.469333pt;}
.x15_c00408{left:551.029206pt;}
.x12_c00408{left:744.149333pt;}
.x10_c00408{left:780.949333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d7e0b53dcc76b5faa3854b28.woff2')format("woff");}.ff1_c00409{font-family:ff1_c00409;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00409{transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);}
.m1_c00409{transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);}
.m3_c00409{transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);}
.m0_c00409{transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);}
.v0_c00409{vertical-align:0.000000px;}
.v1_c00409{vertical-align:20.886600px;}
.ls2_c00409{letter-spacing:0.000000px;}
.ls0_c00409{letter-spacing:1.178991px;}
.ls1_c00409{letter-spacing:1.583161px;}
.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;}
}
.ws8_c00409{word-spacing:-31.532206px;}
.ws9_c00409{word-spacing:-20.574175px;}
.ws5_c00409{word-spacing:-13.899359px;}
.ws4_c00409{word-spacing:-12.720368px;}
.ws7_c00409{word-spacing:-8.778817px;}
.wsa_c00409{word-spacing:0.000000px;}
.ws6_c00409{word-spacing:83.463278px;}
.ws3_c00409{word-spacing:269.959157px;}
.ws1_c00409{word-spacing:1129.042490px;}
.ws0_c00409{word-spacing:1892.420389px;}
.ws2_c00409{word-spacing:4131.639638px;}
._a_c00409{margin-left:-1.178991px;}
._0_c00409{width:1.927205px;}
._1_c00409{width:3.578508px;}
._e_c00409{width:123.094294px;}
._17_c00409{width:135.002026px;}
._b_c00409{width:155.095292px;}
._11_c00409{width:156.109053px;}
._14_c00409{width:162.375964px;}
._d_c00409{width:182.400507px;}
._f_c00409{width:207.200952px;}
._15_c00409{width:220.646921px;}
._12_c00409{width:247.289262px;}
._18_c00409{width:265.770043px;}
._9_c00409{width:294.229881px;}
._4_c00409{width:295.668911px;}
._6_c00409{width:313.624620px;}
._c_c00409{width:314.890196px;}
._8_c00409{width:332.299319px;}
._7_c00409{width:342.609937px;}
._10_c00409{width:367.672693px;}
._16_c00409{width:380.393061px;}
._3_c00409{width:389.865395px;}
._5_c00409{width:403.057323px;}
._13_c00409{width:407.761003px;}
._2_c00409{width:1166.990597px;}
.fc1_c00409{color:transparent;}
.fc0_c00409{color:rgb(0,0,0);}
.fs2_c00409{font-size:31.578480px;}
.fs1_c00409{font-size:45.756720px;}
.fs0_c00409{font-size:68.313000px;}
.fs3_c00409{font-size:113.425200px;}
.y0_c00409{bottom:0.000000px;}
.y1a_c00409{bottom:18.778500px;}
.y22_c00409{bottom:18.778650px;}
.y19_c00409{bottom:38.578500px;}
.y21_c00409{bottom:38.578650px;}
.y20_c00409{bottom:58.196700px;}
.y18_c00409{bottom:58.198050px;}
.y1f_c00409{bottom:77.996700px;}
.y17_c00409{bottom:77.998050px;}
.y1e_c00409{bottom:97.616850px;}
.y16_c00409{bottom:97.618200px;}
.y1d_c00409{bottom:117.416850px;}
.y15_c00409{bottom:117.418200px;}
.y1c_c00409{bottom:137.038200px;}
.y14_c00409{bottom:137.038350px;}
.y23_c00409{bottom:155.938500px;}
.y1b_c00409{bottom:156.658350px;}
.y13_c00409{bottom:156.658500px;}
.y5_c00409{bottom:188.698500px;}
.y12_c00409{bottom:209.938500px;}
.y7_c00409{bottom:225.958500px;}
.y8_c00409{bottom:268.798500px;}
.y6_c00409{bottom:296.518500px;}
.y9_c00409{bottom:311.638500px;}
.ya_c00409{bottom:354.298500px;}
.yb_c00409{bottom:397.138500px;}
.yc_c00409{bottom:439.978500px;}
.yd_c00409{bottom:482.818500px;}
.ye_c00409{bottom:525.478500px;}
.yf_c00409{bottom:568.318500px;}
.y10_c00409{bottom:611.160000px;}
.y11_c00409{bottom:653.820000px;}
.y4_c00409{bottom:659.760000px;}
.y3_c00409{bottom:671.100240px;}
.y2_c00409{bottom:682.260000px;}
.y1_c00409{bottom:706.920000px;}
.y2b_c00409{bottom:739.500000px;}
.y2a_c00409{bottom:746.160300px;}
.y27_c00409{bottom:759.660300px;}
.y25_c00409{bottom:769.199760px;}
.y29_c00409{bottom:770.100000px;}
.y24_c00409{bottom:784.140000px;}
.y26_c00409{bottom:794.220000px;}
.y28_c00409{bottom:794.580000px;}
.h3_c00409{height:33.312143px;}
.h4_c00409{height:43.876597px;}
.h2_c00409{height:49.733732px;}
.h5_c00409{height:82.576647px;}
.h0_c00409{height:892.499700px;}
.h1_c00409{height:892.500000px;}
.w0_c00409{width:1262.999700px;}
.w1_c00409{width:1263.000000px;}
.x0_c00409{left:0.000000px;}
.xa_c00409{left:27.165750px;}
.x12_c00409{left:35.265750px;}
.x17_c00409{left:38.506050px;}
.x6_c00409{left:43.726200px;}
.x9_c00409{left:52.725600px;}
.x8_c00409{left:59.385900px;}
.x7_c00409{left:66.045750px;}
.x3_c00409{left:92.866039px;}
.x4_c00409{left:185.386500px;}
.x1_c00409{left:228.408000px;}
.x2_c00409{left:287.448000px;}
.x5_c00409{left:416.508000px;}
.xd_c00409{left:479.684899px;}
.xb_c00409{left:483.826275px;}
.xe_c00409{left:492.284895px;}
.xc_c00409{left:499.845181px;}
.x10_c00409{left:506.507890px;}
.xf_c00409{left:509.928000px;}
.x15_c00409{left:557.791500px;}
.x14_c00409{left:567.528000px;}
.x16_c00409{left:619.907857px;}
.x13_c00409{left:837.168000px;}
.x11_c00409{left:878.568000px;}
@media print{
.v0_c00409{vertical-align:0.000000pt;}
.v1_c00409{vertical-align:18.565867pt;}
.ls2_c00409{letter-spacing:0.000000pt;}
.ls0_c00409{letter-spacing:1.047992pt;}
.ls1_c00409{letter-spacing:1.407254pt;}
.ws8_c00409{word-spacing:-28.028627pt;}
.ws9_c00409{word-spacing:-18.288155pt;}
.ws5_c00409{word-spacing:-12.354985pt;}
.ws4_c00409{word-spacing:-11.306994pt;}
.ws7_c00409{word-spacing:-7.803393pt;}
.wsa_c00409{word-spacing:0.000000pt;}
.ws6_c00409{word-spacing:74.189580pt;}
.ws3_c00409{word-spacing:239.963695pt;}
.ws1_c00409{word-spacing:1003.593325pt;}
.ws0_c00409{word-spacing:1682.151457pt;}
.ws2_c00409{word-spacing:3672.568567pt;}
._a_c00409{margin-left:-1.047992pt;}
._0_c00409{width:1.713071pt;}
._1_c00409{width:3.180896pt;}
._e_c00409{width:109.417151pt;}
._17_c00409{width:120.001801pt;}
._b_c00409{width:137.862482pt;}
._11_c00409{width:138.763603pt;}
._14_c00409{width:144.334191pt;}
._d_c00409{width:162.133784pt;}
._f_c00409{width:184.178624pt;}
._15_c00409{width:196.130597pt;}
._12_c00409{width:219.812677pt;}
._18_c00409{width:236.240038pt;}
._9_c00409{width:261.537672pt;}
._4_c00409{width:262.816810pt;}
._6_c00409{width:278.777440pt;}
._c_c00409{width:279.902396pt;}
._8_c00409{width:295.377172pt;}
._7_c00409{width:304.542166pt;}
._10_c00409{width:326.820171pt;}
._16_c00409{width:338.127165pt;}
._3_c00409{width:346.547018pt;}
._5_c00409{width:358.273176pt;}
._13_c00409{width:362.454225pt;}
._2_c00409{width:1037.324975pt;}
.fs2_c00409{font-size:28.069760pt;}
.fs1_c00409{font-size:40.672640pt;}
.fs0_c00409{font-size:60.722667pt;}
.fs3_c00409{font-size:100.822400pt;}
.y0_c00409{bottom:0.000000pt;}
.y1a_c00409{bottom:16.692000pt;}
.y22_c00409{bottom:16.692133pt;}
.y19_c00409{bottom:34.292000pt;}
.y21_c00409{bottom:34.292133pt;}
.y20_c00409{bottom:51.730400pt;}
.y18_c00409{bottom:51.731600pt;}
.y1f_c00409{bottom:69.330400pt;}
.y17_c00409{bottom:69.331600pt;}
.y1e_c00409{bottom:86.770533pt;}
.y16_c00409{bottom:86.771733pt;}
.y1d_c00409{bottom:104.370533pt;}
.y15_c00409{bottom:104.371733pt;}
.y1c_c00409{bottom:121.811733pt;}
.y14_c00409{bottom:121.811867pt;}
.y23_c00409{bottom:138.612000pt;}
.y1b_c00409{bottom:139.251867pt;}
.y13_c00409{bottom:139.252000pt;}
.y5_c00409{bottom:167.732000pt;}
.y12_c00409{bottom:186.612000pt;}
.y7_c00409{bottom:200.852000pt;}
.y8_c00409{bottom:238.932000pt;}
.y6_c00409{bottom:263.572000pt;}
.y9_c00409{bottom:277.012000pt;}
.ya_c00409{bottom:314.932000pt;}
.yb_c00409{bottom:353.012000pt;}
.yc_c00409{bottom:391.092000pt;}
.yd_c00409{bottom:429.172000pt;}
.ye_c00409{bottom:467.092000pt;}
.yf_c00409{bottom:505.172000pt;}
.y10_c00409{bottom:543.253333pt;}
.y11_c00409{bottom:581.173333pt;}
.y4_c00409{bottom:586.453333pt;}
.y3_c00409{bottom:596.533547pt;}
.y2_c00409{bottom:606.453333pt;}
.y1_c00409{bottom:628.373333pt;}
.y2b_c00409{bottom:657.333333pt;}
.y2a_c00409{bottom:663.253600pt;}
.y27_c00409{bottom:675.253600pt;}
.y25_c00409{bottom:683.733120pt;}
.y29_c00409{bottom:684.533333pt;}
.y24_c00409{bottom:697.013333pt;}
.y26_c00409{bottom:705.973333pt;}
.y28_c00409{bottom:706.293333pt;}
.h3_c00409{height:29.610794pt;}
.h4_c00409{height:39.001419pt;}
.h2_c00409{height:44.207762pt;}
.h5_c00409{height:73.401464pt;}
.h0_c00409{height:793.333067pt;}
.h1_c00409{height:793.333333pt;}
.w0_c00409{width:1122.666400pt;}
.w1_c00409{width:1122.666667pt;}
.x0_c00409{left:0.000000pt;}
.xa_c00409{left:24.147333pt;}
.x12_c00409{left:31.347333pt;}
.x17_c00409{left:34.227600pt;}
.x6_c00409{left:38.867733pt;}
.x9_c00409{left:46.867200pt;}
.x8_c00409{left:52.787467pt;}
.x7_c00409{left:58.707333pt;}
.x3_c00409{left:82.547590pt;}
.x4_c00409{left:164.788000pt;}
.x1_c00409{left:203.029333pt;}
.x2_c00409{left:255.509333pt;}
.x5_c00409{left:370.229333pt;}
.xd_c00409{left:426.386577pt;}
.xb_c00409{left:430.067800pt;}
.xe_c00409{left:437.586573pt;}
.xc_c00409{left:444.306827pt;}
.x10_c00409{left:450.229236pt;}
.xf_c00409{left:453.269333pt;}
.x15_c00409{left:495.814667pt;}
.x14_c00409{left:504.469333pt;}
.x16_c00409{left:551.029206pt;}
.x13_c00409{left:744.149333pt;}
.x11_c00409{left:780.949333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_44ac3b35305f1aa6d5f26d5e.woff2')format("woff");}.ff1_c00410{font-family:ff1_c00410;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00410{transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);}
.m1_c00410{transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);}
.m3_c00410{transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);}
.m0_c00410{transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);}
.v0_c00410{vertical-align:0.000000px;}
.v1_c00410{vertical-align:20.886600px;}
.ls2_c00410{letter-spacing:0.000000px;}
.ls0_c00410{letter-spacing:1.178991px;}
.ls1_c00410{letter-spacing:1.583161px;}
.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;}
}
.ws8_c00410{word-spacing:-31.532206px;}
.ws9_c00410{word-spacing:-20.574175px;}
.ws5_c00410{word-spacing:-13.899359px;}
.ws4_c00410{word-spacing:-12.720368px;}
.ws7_c00410{word-spacing:-8.778817px;}
.wsa_c00410{word-spacing:0.000000px;}
.ws6_c00410{word-spacing:83.463278px;}
.ws3_c00410{word-spacing:269.959157px;}
.ws1_c00410{word-spacing:1129.042490px;}
.ws0_c00410{word-spacing:1892.420389px;}
.ws2_c00410{word-spacing:4131.639638px;}
._a_c00410{margin-left:-1.178991px;}
._0_c00410{width:1.927205px;}
._1_c00410{width:3.578508px;}
._e_c00410{width:123.094294px;}
._17_c00410{width:135.002026px;}
._b_c00410{width:155.095292px;}
._11_c00410{width:156.109053px;}
._14_c00410{width:162.375964px;}
._d_c00410{width:182.400507px;}
._f_c00410{width:207.200952px;}
._15_c00410{width:220.646921px;}
._12_c00410{width:247.289262px;}
._18_c00410{width:265.770043px;}
._9_c00410{width:294.229881px;}
._4_c00410{width:295.668911px;}
._6_c00410{width:313.624620px;}
._c_c00410{width:314.890196px;}
._8_c00410{width:332.299319px;}
._7_c00410{width:342.609937px;}
._10_c00410{width:367.672693px;}
._16_c00410{width:380.393061px;}
._3_c00410{width:389.865395px;}
._5_c00410{width:403.057323px;}
._13_c00410{width:407.761003px;}
._2_c00410{width:1166.990597px;}
.fc1_c00410{color:transparent;}
.fc0_c00410{color:rgb(0,0,0);}
.fs2_c00410{font-size:31.578480px;}
.fs1_c00410{font-size:45.756720px;}
.fs0_c00410{font-size:68.313000px;}
.fs3_c00410{font-size:113.425200px;}
.y0_c00410{bottom:0.000000px;}
.y1a_c00410{bottom:18.778500px;}
.y22_c00410{bottom:18.778650px;}
.y19_c00410{bottom:38.578500px;}
.y21_c00410{bottom:38.578650px;}
.y20_c00410{bottom:58.196700px;}
.y18_c00410{bottom:58.198050px;}
.y1f_c00410{bottom:77.996700px;}
.y17_c00410{bottom:77.998050px;}
.y1e_c00410{bottom:97.616850px;}
.y16_c00410{bottom:97.618200px;}
.y1d_c00410{bottom:117.416850px;}
.y15_c00410{bottom:117.418200px;}
.y1c_c00410{bottom:137.038200px;}
.y14_c00410{bottom:137.038350px;}
.y23_c00410{bottom:155.938500px;}
.y1b_c00410{bottom:156.658350px;}
.y13_c00410{bottom:156.658500px;}
.y5_c00410{bottom:188.698500px;}
.y12_c00410{bottom:209.938500px;}
.y7_c00410{bottom:225.958500px;}
.y8_c00410{bottom:268.798500px;}
.y6_c00410{bottom:296.518500px;}
.y9_c00410{bottom:311.638500px;}
.ya_c00410{bottom:354.298500px;}
.yb_c00410{bottom:397.138500px;}
.yc_c00410{bottom:439.978500px;}
.yd_c00410{bottom:482.818500px;}
.ye_c00410{bottom:525.478500px;}
.yf_c00410{bottom:568.318500px;}
.y10_c00410{bottom:611.160000px;}
.y11_c00410{bottom:653.820000px;}
.y4_c00410{bottom:659.760000px;}
.y3_c00410{bottom:671.100240px;}
.y2_c00410{bottom:682.260000px;}
.y1_c00410{bottom:706.920000px;}
.y2b_c00410{bottom:739.500000px;}
.y2a_c00410{bottom:746.160300px;}
.y27_c00410{bottom:759.660300px;}
.y25_c00410{bottom:769.199760px;}
.y29_c00410{bottom:770.100000px;}
.y24_c00410{bottom:784.140000px;}
.y26_c00410{bottom:794.220000px;}
.y28_c00410{bottom:794.580000px;}
.h3_c00410{height:33.312143px;}
.h4_c00410{height:43.876597px;}
.h2_c00410{height:49.733732px;}
.h5_c00410{height:82.576647px;}
.h0_c00410{height:892.499700px;}
.h1_c00410{height:892.500000px;}
.w0_c00410{width:1262.999700px;}
.w1_c00410{width:1263.000000px;}
.x0_c00410{left:0.000000px;}
.xa_c00410{left:27.165750px;}
.x11_c00410{left:35.265750px;}
.x16_c00410{left:38.506050px;}
.x6_c00410{left:43.726200px;}
.x9_c00410{left:52.725600px;}
.x8_c00410{left:59.385900px;}
.x7_c00410{left:66.045750px;}
.x3_c00410{left:92.866039px;}
.x4_c00410{left:185.386500px;}
.x1_c00410{left:228.408000px;}
.x2_c00410{left:287.448000px;}
.x5_c00410{left:416.508000px;}
.xd_c00410{left:479.686084px;}
.xb_c00410{left:491.566030px;}
.xc_c00410{left:499.845916px;}
.xf_c00410{left:506.508112px;}
.xe_c00410{left:510.288000px;}
.x14_c00410{left:557.791500px;}
.x13_c00410{left:567.528000px;}
.x15_c00410{left:619.907857px;}
.x12_c00410{left:837.168000px;}
.x10_c00410{left:878.568000px;}
@media print{
.v0_c00410{vertical-align:0.000000pt;}
.v1_c00410{vertical-align:18.565867pt;}
.ls2_c00410{letter-spacing:0.000000pt;}
.ls0_c00410{letter-spacing:1.047992pt;}
.ls1_c00410{letter-spacing:1.407254pt;}
.ws8_c00410{word-spacing:-28.028627pt;}
.ws9_c00410{word-spacing:-18.288155pt;}
.ws5_c00410{word-spacing:-12.354985pt;}
.ws4_c00410{word-spacing:-11.306994pt;}
.ws7_c00410{word-spacing:-7.803393pt;}
.wsa_c00410{word-spacing:0.000000pt;}
.ws6_c00410{word-spacing:74.189580pt;}
.ws3_c00410{word-spacing:239.963695pt;}
.ws1_c00410{word-spacing:1003.593325pt;}
.ws0_c00410{word-spacing:1682.151457pt;}
.ws2_c00410{word-spacing:3672.568567pt;}
._a_c00410{margin-left:-1.047992pt;}
._0_c00410{width:1.713071pt;}
._1_c00410{width:3.180896pt;}
._e_c00410{width:109.417151pt;}
._17_c00410{width:120.001801pt;}
._b_c00410{width:137.862482pt;}
._11_c00410{width:138.763603pt;}
._14_c00410{width:144.334191pt;}
._d_c00410{width:162.133784pt;}
._f_c00410{width:184.178624pt;}
._15_c00410{width:196.130597pt;}
._12_c00410{width:219.812677pt;}
._18_c00410{width:236.240038pt;}
._9_c00410{width:261.537672pt;}
._4_c00410{width:262.816810pt;}
._6_c00410{width:278.777440pt;}
._c_c00410{width:279.902396pt;}
._8_c00410{width:295.377172pt;}
._7_c00410{width:304.542166pt;}
._10_c00410{width:326.820171pt;}
._16_c00410{width:338.127165pt;}
._3_c00410{width:346.547018pt;}
._5_c00410{width:358.273176pt;}
._13_c00410{width:362.454225pt;}
._2_c00410{width:1037.324975pt;}
.fs2_c00410{font-size:28.069760pt;}
.fs1_c00410{font-size:40.672640pt;}
.fs0_c00410{font-size:60.722667pt;}
.fs3_c00410{font-size:100.822400pt;}
.y0_c00410{bottom:0.000000pt;}
.y1a_c00410{bottom:16.692000pt;}
.y22_c00410{bottom:16.692133pt;}
.y19_c00410{bottom:34.292000pt;}
.y21_c00410{bottom:34.292133pt;}
.y20_c00410{bottom:51.730400pt;}
.y18_c00410{bottom:51.731600pt;}
.y1f_c00410{bottom:69.330400pt;}
.y17_c00410{bottom:69.331600pt;}
.y1e_c00410{bottom:86.770533pt;}
.y16_c00410{bottom:86.771733pt;}
.y1d_c00410{bottom:104.370533pt;}
.y15_c00410{bottom:104.371733pt;}
.y1c_c00410{bottom:121.811733pt;}
.y14_c00410{bottom:121.811867pt;}
.y23_c00410{bottom:138.612000pt;}
.y1b_c00410{bottom:139.251867pt;}
.y13_c00410{bottom:139.252000pt;}
.y5_c00410{bottom:167.732000pt;}
.y12_c00410{bottom:186.612000pt;}
.y7_c00410{bottom:200.852000pt;}
.y8_c00410{bottom:238.932000pt;}
.y6_c00410{bottom:263.572000pt;}
.y9_c00410{bottom:277.012000pt;}
.ya_c00410{bottom:314.932000pt;}
.yb_c00410{bottom:353.012000pt;}
.yc_c00410{bottom:391.092000pt;}
.yd_c00410{bottom:429.172000pt;}
.ye_c00410{bottom:467.092000pt;}
.yf_c00410{bottom:505.172000pt;}
.y10_c00410{bottom:543.253333pt;}
.y11_c00410{bottom:581.173333pt;}
.y4_c00410{bottom:586.453333pt;}
.y3_c00410{bottom:596.533547pt;}
.y2_c00410{bottom:606.453333pt;}
.y1_c00410{bottom:628.373333pt;}
.y2b_c00410{bottom:657.333333pt;}
.y2a_c00410{bottom:663.253600pt;}
.y27_c00410{bottom:675.253600pt;}
.y25_c00410{bottom:683.733120pt;}
.y29_c00410{bottom:684.533333pt;}
.y24_c00410{bottom:697.013333pt;}
.y26_c00410{bottom:705.973333pt;}
.y28_c00410{bottom:706.293333pt;}
.h3_c00410{height:29.610794pt;}
.h4_c00410{height:39.001419pt;}
.h2_c00410{height:44.207762pt;}
.h5_c00410{height:73.401464pt;}
.h0_c00410{height:793.333067pt;}
.h1_c00410{height:793.333333pt;}
.w0_c00410{width:1122.666400pt;}
.w1_c00410{width:1122.666667pt;}
.x0_c00410{left:0.000000pt;}
.xa_c00410{left:24.147333pt;}
.x11_c00410{left:31.347333pt;}
.x16_c00410{left:34.227600pt;}
.x6_c00410{left:38.867733pt;}
.x9_c00410{left:46.867200pt;}
.x8_c00410{left:52.787467pt;}
.x7_c00410{left:58.707333pt;}
.x3_c00410{left:82.547590pt;}
.x4_c00410{left:164.788000pt;}
.x1_c00410{left:203.029333pt;}
.x2_c00410{left:255.509333pt;}
.x5_c00410{left:370.229333pt;}
.xd_c00410{left:426.387631pt;}
.xb_c00410{left:436.947582pt;}
.xc_c00410{left:444.307481pt;}
.xf_c00410{left:450.229433pt;}
.xe_c00410{left:453.589333pt;}
.x14_c00410{left:495.814667pt;}
.x13_c00410{left:504.469333pt;}
.x15_c00410{left:551.029206pt;}
.x12_c00410{left:744.149333pt;}
.x10_c00410{left:780.949333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ce4aca115295a3a9b363f55a.woff2')format("woff");}.ff1_c00411{font-family:ff1_c00411;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00411{transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);}
.m1_c00411{transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);}
.m3_c00411{transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);}
.m0_c00411{transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);}
.v0_c00411{vertical-align:0.000000px;}
.v1_c00411{vertical-align:20.886600px;}
.ls2_c00411{letter-spacing:0.000000px;}
.ls0_c00411{letter-spacing:1.178991px;}
.ls1_c00411{letter-spacing:1.583161px;}
.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;}
}
.ws8_c00411{word-spacing:-31.532206px;}
.ws9_c00411{word-spacing:-20.574175px;}
.ws5_c00411{word-spacing:-13.899359px;}
.ws4_c00411{word-spacing:-12.720368px;}
.ws7_c00411{word-spacing:-8.778817px;}
.wsa_c00411{word-spacing:0.000000px;}
.ws6_c00411{word-spacing:83.463278px;}
.ws3_c00411{word-spacing:269.959157px;}
.ws1_c00411{word-spacing:1129.042490px;}
.ws0_c00411{word-spacing:1892.420389px;}
.ws2_c00411{word-spacing:4131.639638px;}
._a_c00411{margin-left:-1.178991px;}
._0_c00411{width:1.927205px;}
._1_c00411{width:3.578508px;}
._e_c00411{width:123.094294px;}
._17_c00411{width:135.002026px;}
._b_c00411{width:155.095292px;}
._11_c00411{width:156.109053px;}
._14_c00411{width:162.375964px;}
._d_c00411{width:182.400507px;}
._f_c00411{width:207.200952px;}
._15_c00411{width:220.646921px;}
._12_c00411{width:247.289262px;}
._18_c00411{width:265.770043px;}
._9_c00411{width:294.229881px;}
._4_c00411{width:295.668911px;}
._6_c00411{width:313.624620px;}
._c_c00411{width:314.890196px;}
._8_c00411{width:332.299319px;}
._7_c00411{width:342.609937px;}
._10_c00411{width:367.672693px;}
._16_c00411{width:380.393061px;}
._3_c00411{width:389.865395px;}
._5_c00411{width:403.057323px;}
._13_c00411{width:407.761003px;}
._2_c00411{width:1166.990597px;}
.fc1_c00411{color:transparent;}
.fc0_c00411{color:rgb(0,0,0);}
.fs2_c00411{font-size:31.578480px;}
.fs1_c00411{font-size:45.756720px;}
.fs0_c00411{font-size:68.313000px;}
.fs3_c00411{font-size:113.425200px;}
.y0_c00411{bottom:0.000000px;}
.y1a_c00411{bottom:18.778500px;}
.y23_c00411{bottom:18.778650px;}
.y19_c00411{bottom:38.578500px;}
.y22_c00411{bottom:38.578650px;}
.y21_c00411{bottom:58.196700px;}
.y18_c00411{bottom:58.198050px;}
.y20_c00411{bottom:77.996700px;}
.y17_c00411{bottom:77.998050px;}
.y1f_c00411{bottom:97.616850px;}
.y16_c00411{bottom:97.618200px;}
.y1e_c00411{bottom:117.416850px;}
.y15_c00411{bottom:117.418200px;}
.y1d_c00411{bottom:137.038200px;}
.y14_c00411{bottom:137.038350px;}
.y24_c00411{bottom:155.938500px;}
.y1b_c00411{bottom:156.658350px;}
.y13_c00411{bottom:156.658500px;}
.y1c_c00411{bottom:168.358350px;}
.y5_c00411{bottom:188.698500px;}
.y12_c00411{bottom:209.938500px;}
.y7_c00411{bottom:225.958500px;}
.y8_c00411{bottom:268.798500px;}
.y6_c00411{bottom:296.518500px;}
.y9_c00411{bottom:311.638500px;}
.ya_c00411{bottom:354.298500px;}
.yb_c00411{bottom:397.138500px;}
.yc_c00411{bottom:439.978500px;}
.yd_c00411{bottom:482.818500px;}
.ye_c00411{bottom:525.478500px;}
.yf_c00411{bottom:568.318500px;}
.y10_c00411{bottom:611.160000px;}
.y11_c00411{bottom:653.820000px;}
.y4_c00411{bottom:659.760000px;}
.y3_c00411{bottom:671.100240px;}
.y2_c00411{bottom:682.260000px;}
.y1_c00411{bottom:706.920000px;}
.y2c_c00411{bottom:739.500000px;}
.y2b_c00411{bottom:746.160300px;}
.y28_c00411{bottom:759.660300px;}
.y26_c00411{bottom:769.199760px;}
.y2a_c00411{bottom:770.100000px;}
.y25_c00411{bottom:784.140000px;}
.y27_c00411{bottom:794.220000px;}
.y29_c00411{bottom:794.580000px;}
.h3_c00411{height:33.312143px;}
.h4_c00411{height:43.876597px;}
.h2_c00411{height:49.733732px;}
.h5_c00411{height:82.576647px;}
.h0_c00411{height:892.499700px;}
.h1_c00411{height:892.500000px;}
.w0_c00411{width:1262.999700px;}
.w1_c00411{width:1263.000000px;}
.x0_c00411{left:0.000000px;}
.xa_c00411{left:27.165750px;}
.x12_c00411{left:35.265750px;}
.x17_c00411{left:38.506050px;}
.x6_c00411{left:43.726200px;}
.x9_c00411{left:52.725600px;}
.x8_c00411{left:59.385900px;}
.x7_c00411{left:66.045750px;}
.x3_c00411{left:92.866039px;}
.x4_c00411{left:185.386500px;}
.x1_c00411{left:228.408000px;}
.x2_c00411{left:287.448000px;}
.x5_c00411{left:416.508000px;}
.xe_c00411{left:479.685392px;}
.xb_c00411{left:482.745681px;}
.xf_c00411{left:492.285389px;}
.xd_c00411{left:499.845674px;}
.x10_c00411{left:506.507890px;}
.xc_c00411{left:510.617802px;}
.x15_c00411{left:557.791500px;}
.x14_c00411{left:567.528000px;}
.x16_c00411{left:619.907857px;}
.x13_c00411{left:837.168000px;}
.x11_c00411{left:878.568000px;}
@media print{
.v0_c00411{vertical-align:0.000000pt;}
.v1_c00411{vertical-align:18.565867pt;}
.ls2_c00411{letter-spacing:0.000000pt;}
.ls0_c00411{letter-spacing:1.047992pt;}
.ls1_c00411{letter-spacing:1.407254pt;}
.ws8_c00411{word-spacing:-28.028627pt;}
.ws9_c00411{word-spacing:-18.288155pt;}
.ws5_c00411{word-spacing:-12.354985pt;}
.ws4_c00411{word-spacing:-11.306994pt;}
.ws7_c00411{word-spacing:-7.803393pt;}
.wsa_c00411{word-spacing:0.000000pt;}
.ws6_c00411{word-spacing:74.189580pt;}
.ws3_c00411{word-spacing:239.963695pt;}
.ws1_c00411{word-spacing:1003.593325pt;}
.ws0_c00411{word-spacing:1682.151457pt;}
.ws2_c00411{word-spacing:3672.568567pt;}
._a_c00411{margin-left:-1.047992pt;}
._0_c00411{width:1.713071pt;}
._1_c00411{width:3.180896pt;}
._e_c00411{width:109.417151pt;}
._17_c00411{width:120.001801pt;}
._b_c00411{width:137.862482pt;}
._11_c00411{width:138.763603pt;}
._14_c00411{width:144.334191pt;}
._d_c00411{width:162.133784pt;}
._f_c00411{width:184.178624pt;}
._15_c00411{width:196.130597pt;}
._12_c00411{width:219.812677pt;}
._18_c00411{width:236.240038pt;}
._9_c00411{width:261.537672pt;}
._4_c00411{width:262.816810pt;}
._6_c00411{width:278.777440pt;}
._c_c00411{width:279.902396pt;}
._8_c00411{width:295.377172pt;}
._7_c00411{width:304.542166pt;}
._10_c00411{width:326.820171pt;}
._16_c00411{width:338.127165pt;}
._3_c00411{width:346.547018pt;}
._5_c00411{width:358.273176pt;}
._13_c00411{width:362.454225pt;}
._2_c00411{width:1037.324975pt;}
.fs2_c00411{font-size:28.069760pt;}
.fs1_c00411{font-size:40.672640pt;}
.fs0_c00411{font-size:60.722667pt;}
.fs3_c00411{font-size:100.822400pt;}
.y0_c00411{bottom:0.000000pt;}
.y1a_c00411{bottom:16.692000pt;}
.y23_c00411{bottom:16.692133pt;}
.y19_c00411{bottom:34.292000pt;}
.y22_c00411{bottom:34.292133pt;}
.y21_c00411{bottom:51.730400pt;}
.y18_c00411{bottom:51.731600pt;}
.y20_c00411{bottom:69.330400pt;}
.y17_c00411{bottom:69.331600pt;}
.y1f_c00411{bottom:86.770533pt;}
.y16_c00411{bottom:86.771733pt;}
.y1e_c00411{bottom:104.370533pt;}
.y15_c00411{bottom:104.371733pt;}
.y1d_c00411{bottom:121.811733pt;}
.y14_c00411{bottom:121.811867pt;}
.y24_c00411{bottom:138.612000pt;}
.y1b_c00411{bottom:139.251867pt;}
.y13_c00411{bottom:139.252000pt;}
.y1c_c00411{bottom:149.651867pt;}
.y5_c00411{bottom:167.732000pt;}
.y12_c00411{bottom:186.612000pt;}
.y7_c00411{bottom:200.852000pt;}
.y8_c00411{bottom:238.932000pt;}
.y6_c00411{bottom:263.572000pt;}
.y9_c00411{bottom:277.012000pt;}
.ya_c00411{bottom:314.932000pt;}
.yb_c00411{bottom:353.012000pt;}
.yc_c00411{bottom:391.092000pt;}
.yd_c00411{bottom:429.172000pt;}
.ye_c00411{bottom:467.092000pt;}
.yf_c00411{bottom:505.172000pt;}
.y10_c00411{bottom:543.253333pt;}
.y11_c00411{bottom:581.173333pt;}
.y4_c00411{bottom:586.453333pt;}
.y3_c00411{bottom:596.533547pt;}
.y2_c00411{bottom:606.453333pt;}
.y1_c00411{bottom:628.373333pt;}
.y2c_c00411{bottom:657.333333pt;}
.y2b_c00411{bottom:663.253600pt;}
.y28_c00411{bottom:675.253600pt;}
.y26_c00411{bottom:683.733120pt;}
.y2a_c00411{bottom:684.533333pt;}
.y25_c00411{bottom:697.013333pt;}
.y27_c00411{bottom:705.973333pt;}
.y29_c00411{bottom:706.293333pt;}
.h3_c00411{height:29.610794pt;}
.h4_c00411{height:39.001419pt;}
.h2_c00411{height:44.207762pt;}
.h5_c00411{height:73.401464pt;}
.h0_c00411{height:793.333067pt;}
.h1_c00411{height:793.333333pt;}
.w0_c00411{width:1122.666400pt;}
.w1_c00411{width:1122.666667pt;}
.x0_c00411{left:0.000000pt;}
.xa_c00411{left:24.147333pt;}
.x12_c00411{left:31.347333pt;}
.x17_c00411{left:34.227600pt;}
.x6_c00411{left:38.867733pt;}
.x9_c00411{left:46.867200pt;}
.x8_c00411{left:52.787467pt;}
.x7_c00411{left:58.707333pt;}
.x3_c00411{left:82.547590pt;}
.x4_c00411{left:164.788000pt;}
.x1_c00411{left:203.029333pt;}
.x2_c00411{left:255.509333pt;}
.x5_c00411{left:370.229333pt;}
.xe_c00411{left:426.387015pt;}
.xb_c00411{left:429.107272pt;}
.xf_c00411{left:437.587012pt;}
.xd_c00411{left:444.307266pt;}
.x10_c00411{left:450.229236pt;}
.xc_c00411{left:453.882491pt;}
.x15_c00411{left:495.814667pt;}
.x14_c00411{left:504.469333pt;}
.x16_c00411{left:551.029206pt;}
.x13_c00411{left:744.149333pt;}
.x11_c00411{left:780.949333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_99393a11e65c6bd58f1b7955.woff2')format("woff");}.ff1_c00412{font-family:ff1_c00412;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00412{transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);}
.m1_c00412{transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);}
.m4_c00412{transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);}
.m3_c00412{transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);}
.m0_c00412{transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);}
.v0_c00412{vertical-align:0.000000px;}
.v1_c00412{vertical-align:20.883600px;}
.ls1_c00412{letter-spacing:0.000000px;}
.ls0_c00412{letter-spacing:1.178991px;}
.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;}
}
.ws8_c00412{word-spacing:-31.532206px;}
.ws5_c00412{word-spacing:-13.899359px;}
.ws4_c00412{word-spacing:-12.720368px;}
.ws7_c00412{word-spacing:-8.778817px;}
.ws9_c00412{word-spacing:0.000000px;}
.ws6_c00412{word-spacing:83.463278px;}
.ws3_c00412{word-spacing:269.959157px;}
.ws1_c00412{word-spacing:1129.028763px;}
.ws0_c00412{word-spacing:1892.372570px;}
.ws2_c00412{word-spacing:4131.625911px;}
._a_c00412{margin-left:-1.178991px;}
._0_c00412{width:1.927205px;}
._1_c00412{width:3.578508px;}
._e_c00412{width:123.094294px;}
._17_c00412{width:135.002026px;}
._b_c00412{width:155.095292px;}
._11_c00412{width:156.109053px;}
._14_c00412{width:162.375964px;}
._d_c00412{width:182.400507px;}
._f_c00412{width:207.200952px;}
._15_c00412{width:220.646921px;}
._12_c00412{width:247.289262px;}
._9_c00412{width:294.229881px;}
._4_c00412{width:295.668911px;}
._6_c00412{width:313.624620px;}
._c_c00412{width:314.890196px;}
._8_c00412{width:332.299319px;}
._7_c00412{width:342.609937px;}
._10_c00412{width:367.672693px;}
._16_c00412{width:380.393061px;}
._3_c00412{width:389.865395px;}
._5_c00412{width:403.057323px;}
._13_c00412{width:407.761003px;}
._18_c00412{width:436.864735px;}
._2_c00412{width:1166.963143px;}
.fc1_c00412{color:transparent;}
.fc0_c00412{color:rgb(0,0,0);}
.fs2_c00412{font-size:31.578480px;}
.fs1_c00412{font-size:45.756720px;}
.fs0_c00412{font-size:68.313000px;}
.fs4_c00412{font-size:79.270800px;}
.fs3_c00412{font-size:113.425200px;}
.y0_c00412{bottom:0.000000px;}
.y18_c00412{bottom:22.019250px;}
.y1f_c00412{bottom:22.019400px;}
.y17_c00412{bottom:48.299100px;}
.y1e_c00412{bottom:48.299250px;}
.y16_c00412{bottom:74.578950px;}
.y1d_c00412{bottom:74.579700px;}
.y15_c00412{bottom:100.858800px;}
.y1c_c00412{bottom:100.859550px;}
.y14_c00412{bottom:127.138650px;}
.y1b_c00412{bottom:127.139400px;}
.y13_c00412{bottom:153.418500px;}
.y19_c00412{bottom:153.419250px;}
.y20_c00412{bottom:155.938500px;}
.y1a_c00412{bottom:165.119250px;}
.y5_c00412{bottom:188.698500px;}
.y12_c00412{bottom:209.938500px;}
.y7_c00412{bottom:225.958500px;}
.y8_c00412{bottom:268.798500px;}
.y6_c00412{bottom:296.518500px;}
.y9_c00412{bottom:311.638500px;}
.ya_c00412{bottom:354.298500px;}
.yb_c00412{bottom:397.138500px;}
.yc_c00412{bottom:439.978500px;}
.yd_c00412{bottom:482.818500px;}
.ye_c00412{bottom:525.478500px;}
.yf_c00412{bottom:568.318500px;}
.y10_c00412{bottom:611.160000px;}
.y11_c00412{bottom:653.820000px;}
.y4_c00412{bottom:659.760000px;}
.y3_c00412{bottom:671.100240px;}
.y2_c00412{bottom:682.260000px;}
.y1_c00412{bottom:706.920000px;}
.y27_c00412{bottom:739.500000px;}
.y24_c00412{bottom:751.019700px;}
.y26_c00412{bottom:757.680000px;}
.y23_c00412{bottom:776.939850px;}
.y21_c00412{bottom:784.140000px;}
.y25_c00412{bottom:794.580000px;}
.y22_c00412{bottom:802.860000px;}
.h3_c00412{height:33.312143px;}
.h4_c00412{height:43.873597px;}
.h2_c00412{height:49.733732px;}
.h6_c00412{height:57.711310px;}
.h5_c00412{height:82.576647px;}
.h0_c00412{height:892.499700px;}
.h1_c00412{height:892.500000px;}
.w0_c00412{width:1262.999700px;}
.w1_c00412{width:1263.000000px;}
.x0_c00412{left:0.000000px;}
.xa_c00412{left:27.165750px;}
.x11_c00412{left:35.265750px;}
.x15_c00412{left:38.506050px;}
.x6_c00412{left:43.726200px;}
.x9_c00412{left:52.725600px;}
.x8_c00412{left:59.385900px;}
.x7_c00412{left:66.045750px;}
.x3_c00412{left:92.866039px;}
.x4_c00412{left:185.386500px;}
.x1_c00412{left:228.408000px;}
.x2_c00412{left:287.448000px;}
.x5_c00412{left:416.508000px;}
.xe_c00412{left:479.685302px;}
.xf_c00412{left:492.285298px;}
.xd_c00412{left:499.845134px;}
.xb_c00412{left:501.285372px;}
.xc_c00412{left:529.157494px;}
.x13_c00412{left:567.528000px;}
.x14_c00412{left:616.848000px;}
.x12_c00412{left:837.168000px;}
.x10_c00412{left:878.568000px;}
@media print{
.v0_c00412{vertical-align:0.000000pt;}
.v1_c00412{vertical-align:18.563200pt;}
.ls1_c00412{letter-spacing:0.000000pt;}
.ls0_c00412{letter-spacing:1.047992pt;}
.ws8_c00412{word-spacing:-28.028627pt;}
.ws5_c00412{word-spacing:-12.354985pt;}
.ws4_c00412{word-spacing:-11.306994pt;}
.ws7_c00412{word-spacing:-7.803393pt;}
.ws9_c00412{word-spacing:0.000000pt;}
.ws6_c00412{word-spacing:74.189580pt;}
.ws3_c00412{word-spacing:239.963695pt;}
.ws1_c00412{word-spacing:1003.581123pt;}
.ws0_c00412{word-spacing:1682.108951pt;}
.ws2_c00412{word-spacing:3672.556365pt;}
._a_c00412{margin-left:-1.047992pt;}
._0_c00412{width:1.713071pt;}
._1_c00412{width:3.180896pt;}
._e_c00412{width:109.417151pt;}
._17_c00412{width:120.001801pt;}
._b_c00412{width:137.862482pt;}
._11_c00412{width:138.763603pt;}
._14_c00412{width:144.334191pt;}
._d_c00412{width:162.133784pt;}
._f_c00412{width:184.178624pt;}
._15_c00412{width:196.130597pt;}
._12_c00412{width:219.812677pt;}
._9_c00412{width:261.537672pt;}
._4_c00412{width:262.816810pt;}
._6_c00412{width:278.777440pt;}
._c_c00412{width:279.902396pt;}
._8_c00412{width:295.377172pt;}
._7_c00412{width:304.542166pt;}
._10_c00412{width:326.820171pt;}
._16_c00412{width:338.127165pt;}
._3_c00412{width:346.547018pt;}
._5_c00412{width:358.273176pt;}
._13_c00412{width:362.454225pt;}
._18_c00412{width:388.324209pt;}
._2_c00412{width:1037.300572pt;}
.fs2_c00412{font-size:28.069760pt;}
.fs1_c00412{font-size:40.672640pt;}
.fs0_c00412{font-size:60.722667pt;}
.fs4_c00412{font-size:70.462933pt;}
.fs3_c00412{font-size:100.822400pt;}
.y0_c00412{bottom:0.000000pt;}
.y18_c00412{bottom:19.572667pt;}
.y1f_c00412{bottom:19.572800pt;}
.y17_c00412{bottom:42.932533pt;}
.y1e_c00412{bottom:42.932667pt;}
.y16_c00412{bottom:66.292400pt;}
.y1d_c00412{bottom:66.293067pt;}
.y15_c00412{bottom:89.652267pt;}
.y1c_c00412{bottom:89.652933pt;}
.y14_c00412{bottom:113.012133pt;}
.y1b_c00412{bottom:113.012800pt;}
.y13_c00412{bottom:136.372000pt;}
.y19_c00412{bottom:136.372667pt;}
.y20_c00412{bottom:138.612000pt;}
.y1a_c00412{bottom:146.772667pt;}
.y5_c00412{bottom:167.732000pt;}
.y12_c00412{bottom:186.612000pt;}
.y7_c00412{bottom:200.852000pt;}
.y8_c00412{bottom:238.932000pt;}
.y6_c00412{bottom:263.572000pt;}
.y9_c00412{bottom:277.012000pt;}
.ya_c00412{bottom:314.932000pt;}
.yb_c00412{bottom:353.012000pt;}
.yc_c00412{bottom:391.092000pt;}
.yd_c00412{bottom:429.172000pt;}
.ye_c00412{bottom:467.092000pt;}
.yf_c00412{bottom:505.172000pt;}
.y10_c00412{bottom:543.253333pt;}
.y11_c00412{bottom:581.173333pt;}
.y4_c00412{bottom:586.453333pt;}
.y3_c00412{bottom:596.533547pt;}
.y2_c00412{bottom:606.453333pt;}
.y1_c00412{bottom:628.373333pt;}
.y27_c00412{bottom:657.333333pt;}
.y24_c00412{bottom:667.573067pt;}
.y26_c00412{bottom:673.493333pt;}
.y23_c00412{bottom:690.613200pt;}
.y21_c00412{bottom:697.013333pt;}
.y25_c00412{bottom:706.293333pt;}
.y22_c00412{bottom:713.653333pt;}
.h3_c00412{height:29.610794pt;}
.h4_c00412{height:38.998753pt;}
.h2_c00412{height:44.207762pt;}
.h6_c00412{height:51.298942pt;}
.h5_c00412{height:73.401464pt;}
.h0_c00412{height:793.333067pt;}
.h1_c00412{height:793.333333pt;}
.w0_c00412{width:1122.666400pt;}
.w1_c00412{width:1122.666667pt;}
.x0_c00412{left:0.000000pt;}
.xa_c00412{left:24.147333pt;}
.x11_c00412{left:31.347333pt;}
.x15_c00412{left:34.227600pt;}
.x6_c00412{left:38.867733pt;}
.x9_c00412{left:46.867200pt;}
.x8_c00412{left:52.787467pt;}
.x7_c00412{left:58.707333pt;}
.x3_c00412{left:82.547590pt;}
.x4_c00412{left:164.788000pt;}
.x1_c00412{left:203.029333pt;}
.x2_c00412{left:255.509333pt;}
.x5_c00412{left:370.229333pt;}
.xe_c00412{left:426.386935pt;}
.xf_c00412{left:437.586932pt;}
.xd_c00412{left:444.306786pt;}
.xb_c00412{left:445.586998pt;}
.xc_c00412{left:470.362217pt;}
.x13_c00412{left:504.469333pt;}
.x14_c00412{left:548.309333pt;}
.x12_c00412{left:744.149333pt;}
.x10_c00412{left:780.949333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b43226d2753a83297a8b3212.woff2')format("woff");}.ff1_c00413{font-family:ff1_c00413;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00413{transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);}
.m1_c00413{transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);}
.m4_c00413{transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);}
.m3_c00413{transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);}
.m0_c00413{transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);}
.v0_c00413{vertical-align:0.000000px;}
.v1_c00413{vertical-align:20.880600px;}
.ls1_c00413{letter-spacing:0.000000px;}
.ls0_c00413{letter-spacing:1.174340px;}
.sc__c00413{text-shadow:none;}
.sc0_c00413{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00413{-webkit-text-stroke:0px transparent;}
.sc0_c00413{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8_c00413{word-spacing:-31.532206px;}
.ws5_c00413{word-spacing:-13.894692px;}
.ws4_c00413{word-spacing:-12.720351px;}
.ws7_c00413{word-spacing:-8.778801px;}
.ws9_c00413{word-spacing:0.000000px;}
.ws6_c00413{word-spacing:83.472601px;}
.ws3_c00413{word-spacing:269.959261px;}
.ws1_c00413{word-spacing:1129.022707px;}
.ws0_c00413{word-spacing:1892.379401px;}
.ws2_c00413{word-spacing:4131.625069px;}
._a_c00413{margin-left:-1.174340px;}
._0_c00413{width:1.927205px;}
._1_c00413{width:3.578508px;}
._e_c00413{width:123.098455px;}
._17_c00413{width:135.002093px;}
._b_c00413{width:155.081320px;}
._11_c00413{width:156.097143px;}
._14_c00413{width:162.375998px;}
._d_c00413{width:182.391467px;}
._f_c00413{width:207.201036px;}
._15_c00413{width:220.640991px;}
._12_c00413{width:247.295292px;}
._9_c00413{width:294.223388px;}
._4_c00413{width:295.661959px;}
._6_c00413{width:313.608876px;}
._c_c00413{width:314.898471px;}
._8_c00413{width:332.288085px;}
._7_c00413{width:342.606009px;}
._10_c00413{width:367.678773px;}
._16_c00413{width:380.393128px;}
._3_c00413{width:389.856116px;}
._5_c00413{width:403.050224px;}
._13_c00413{width:407.761036px;}
._18_c00413{width:436.860973px;}
._2_c00413{width:1166.924601px;}
.fc1_c00413{color:transparent;}
.fc0_c00413{color:rgb(0,0,0);}
.fs2_c00413{font-size:31.578420px;}
.fs1_c00413{font-size:45.756660px;}
.fs0_c00413{font-size:68.313000px;}
.fs4_c00413{font-size:79.270800px;}
.fs3_c00413{font-size:113.425200px;}
.y0_c00413{bottom:0.000000px;}
.y18_c00413{bottom:22.022100px;}
.y1e_c00413{bottom:22.022250px;}
.y17_c00413{bottom:48.301950px;}
.y1d_c00413{bottom:48.302100px;}
.y16_c00413{bottom:74.581800px;}
.y1c_c00413{bottom:74.583150px;}
.y15_c00413{bottom:100.861650px;}
.y1b_c00413{bottom:100.863000px;}
.y14_c00413{bottom:127.141500px;}
.y1a_c00413{bottom:127.142850px;}
.y13_c00413{bottom:153.421350px;}
.y19_c00413{bottom:153.421500px;}
.y1f_c00413{bottom:155.941350px;}
.y5_c00413{bottom:188.699850px;}
.y12_c00413{bottom:209.939850px;}
.y7_c00413{bottom:225.959850px;}
.y8_c00413{bottom:268.799850px;}
.y6_c00413{bottom:296.519850px;}
.y9_c00413{bottom:311.639850px;}
.ya_c00413{bottom:354.299850px;}
.yb_c00413{bottom:397.139850px;}
.yc_c00413{bottom:439.979850px;}
.yd_c00413{bottom:482.819850px;}
.ye_c00413{bottom:525.479850px;}
.yf_c00413{bottom:568.319850px;}
.y10_c00413{bottom:611.159850px;}
.y11_c00413{bottom:653.819850px;}
.y4_c00413{bottom:659.759850px;}
.y3_c00413{bottom:671.100090px;}
.y2_c00413{bottom:682.259850px;}
.y1_c00413{bottom:706.919850px;}
.y26_c00413{bottom:739.499850px;}
.y23_c00413{bottom:751.019550px;}
.y25_c00413{bottom:757.679850px;}
.y22_c00413{bottom:776.939700px;}
.y20_c00413{bottom:784.139850px;}
.y24_c00413{bottom:794.579850px;}
.y21_c00413{bottom:802.859850px;}
.h3_c00413{height:33.312100px;}
.h4_c00413{height:43.870553px;}
.h2_c00413{height:49.733732px;}
.h6_c00413{height:57.711310px;}
.h5_c00413{height:82.576647px;}
.h0_c00413{height:892.499550px;}
.h1_c00413{height:892.500000px;}
.w0_c00413{width:1262.999700px;}
.w1_c00413{width:1263.000000px;}
.x0_c00413{left:0.000000px;}
.xa_c00413{left:27.165750px;}
.x10_c00413{left:35.265750px;}
.x14_c00413{left:38.506050px;}
.x6_c00413{left:43.726200px;}
.x9_c00413{left:52.725600px;}
.x8_c00413{left:59.385900px;}
.x7_c00413{left:66.045750px;}
.x3_c00413{left:92.866040px;}
.x4_c00413{left:185.386500px;}
.x1_c00413{left:228.406500px;}
.x2_c00413{left:287.446500px;}
.x5_c00413{left:416.506500px;}
.xd_c00413{left:482.564216px;}
.xe_c00413{left:492.284340px;}
.xb_c00413{left:493.544117px;}
.xc_c00413{left:499.844115px;}
.x12_c00413{left:567.526500px;}
.x13_c00413{left:616.846500px;}
.x11_c00413{left:837.165000px;}
.xf_c00413{left:878.566500px;}
@media print{
.v0_c00413{vertical-align:0.000000pt;}
.v1_c00413{vertical-align:18.560533pt;}
.ls1_c00413{letter-spacing:0.000000pt;}
.ls0_c00413{letter-spacing:1.043858pt;}
.ws8_c00413{word-spacing:-28.028627pt;}
.ws5_c00413{word-spacing:-12.350837pt;}
.ws4_c00413{word-spacing:-11.306979pt;}
.ws7_c00413{word-spacing:-7.803378pt;}
.ws9_c00413{word-spacing:0.000000pt;}
.ws6_c00413{word-spacing:74.197868pt;}
.ws3_c00413{word-spacing:239.963787pt;}
.ws1_c00413{word-spacing:1003.575740pt;}
.ws0_c00413{word-spacing:1682.115023pt;}
.ws2_c00413{word-spacing:3672.555617pt;}
._a_c00413{margin-left:-1.043858pt;}
._0_c00413{width:1.713071pt;}
._1_c00413{width:3.180896pt;}
._e_c00413{width:109.420849pt;}
._17_c00413{width:120.001860pt;}
._b_c00413{width:137.850063pt;}
._11_c00413{width:138.753016pt;}
._14_c00413{width:144.334220pt;}
._d_c00413{width:162.125749pt;}
._f_c00413{width:184.178698pt;}
._15_c00413{width:196.125326pt;}
._12_c00413{width:219.818038pt;}
._9_c00413{width:261.531900pt;}
._4_c00413{width:262.810630pt;}
._6_c00413{width:278.763446pt;}
._c_c00413{width:279.909752pt;}
._8_c00413{width:295.367186pt;}
._7_c00413{width:304.538675pt;}
._10_c00413{width:326.825576pt;}
._16_c00413{width:338.127225pt;}
._3_c00413{width:346.538770pt;}
._5_c00413{width:358.266866pt;}
._13_c00413{width:362.454254pt;}
._18_c00413{width:388.320865pt;}
._2_c00413{width:1037.266312pt;}
.fs2_c00413{font-size:28.069707pt;}
.fs1_c00413{font-size:40.672587pt;}
.fs0_c00413{font-size:60.722667pt;}
.fs4_c00413{font-size:70.462933pt;}
.fs3_c00413{font-size:100.822400pt;}
.y0_c00413{bottom:0.000000pt;}
.y18_c00413{bottom:19.575200pt;}
.y1e_c00413{bottom:19.575333pt;}
.y17_c00413{bottom:42.935067pt;}
.y1d_c00413{bottom:42.935200pt;}
.y16_c00413{bottom:66.294933pt;}
.y1c_c00413{bottom:66.296133pt;}
.y15_c00413{bottom:89.654800pt;}
.y1b_c00413{bottom:89.656000pt;}
.y14_c00413{bottom:113.014667pt;}
.y1a_c00413{bottom:113.015867pt;}
.y13_c00413{bottom:136.374533pt;}
.y19_c00413{bottom:136.374667pt;}
.y1f_c00413{bottom:138.614533pt;}
.y5_c00413{bottom:167.733200pt;}
.y12_c00413{bottom:186.613200pt;}
.y7_c00413{bottom:200.853200pt;}
.y8_c00413{bottom:238.933200pt;}
.y6_c00413{bottom:263.573200pt;}
.y9_c00413{bottom:277.013200pt;}
.ya_c00413{bottom:314.933200pt;}
.yb_c00413{bottom:353.013200pt;}
.yc_c00413{bottom:391.093200pt;}
.yd_c00413{bottom:429.173200pt;}
.ye_c00413{bottom:467.093200pt;}
.yf_c00413{bottom:505.173200pt;}
.y10_c00413{bottom:543.253200pt;}
.y11_c00413{bottom:581.173200pt;}
.y4_c00413{bottom:586.453200pt;}
.y3_c00413{bottom:596.533413pt;}
.y2_c00413{bottom:606.453200pt;}
.y1_c00413{bottom:628.373200pt;}
.y26_c00413{bottom:657.333200pt;}
.y23_c00413{bottom:667.572933pt;}
.y25_c00413{bottom:673.493200pt;}
.y22_c00413{bottom:690.613067pt;}
.y20_c00413{bottom:697.013200pt;}
.y24_c00413{bottom:706.293200pt;}
.y21_c00413{bottom:713.653200pt;}
.h3_c00413{height:29.610755pt;}
.h4_c00413{height:38.996047pt;}
.h2_c00413{height:44.207762pt;}
.h6_c00413{height:51.298942pt;}
.h5_c00413{height:73.401464pt;}
.h0_c00413{height:793.332933pt;}
.h1_c00413{height:793.333333pt;}
.w0_c00413{width:1122.666400pt;}
.w1_c00413{width:1122.666667pt;}
.x0_c00413{left:0.000000pt;}
.xa_c00413{left:24.147333pt;}
.x10_c00413{left:31.347333pt;}
.x14_c00413{left:34.227600pt;}
.x6_c00413{left:38.867733pt;}
.x9_c00413{left:46.867200pt;}
.x8_c00413{left:52.787467pt;}
.x7_c00413{left:58.707333pt;}
.x3_c00413{left:82.547591pt;}
.x4_c00413{left:164.788000pt;}
.x1_c00413{left:203.028000pt;}
.x2_c00413{left:255.508000pt;}
.x5_c00413{left:370.228000pt;}
.xd_c00413{left:428.945970pt;}
.xe_c00413{left:437.586080pt;}
.xb_c00413{left:438.705882pt;}
.xc_c00413{left:444.305880pt;}
.x12_c00413{left:504.468000pt;}
.x13_c00413{left:548.308000pt;}
.x11_c00413{left:744.146667pt;}
.xf_c00413{left:780.948000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ddfe10064e3d57362210b074.woff2')format("woff");}.ff1_c00414{font-family:ff1_c00414;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00414{transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);}
.m1_c00414{transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);}
.m4_c00414{transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);}
.m3_c00414{transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);}
.m0_c00414{transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);}
.v0_c00414{vertical-align:0.000000px;}
.v1_c00414{vertical-align:20.880600px;}
.ls1_c00414{letter-spacing:0.000000px;}
.ls0_c00414{letter-spacing:1.174340px;}
.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;}
}
.ws8_c00414{word-spacing:-31.532206px;}
.ws5_c00414{word-spacing:-13.894692px;}
.ws4_c00414{word-spacing:-12.720351px;}
.ws7_c00414{word-spacing:-8.778801px;}
.ws9_c00414{word-spacing:0.000000px;}
.ws6_c00414{word-spacing:83.472601px;}
.ws3_c00414{word-spacing:269.959261px;}
.ws1_c00414{word-spacing:1129.022707px;}
.ws0_c00414{word-spacing:1892.379401px;}
.ws2_c00414{word-spacing:4131.625069px;}
._a_c00414{margin-left:-1.174340px;}
._0_c00414{width:1.927205px;}
._1_c00414{width:3.578508px;}
._e_c00414{width:123.098455px;}
._17_c00414{width:135.002093px;}
._b_c00414{width:155.081320px;}
._11_c00414{width:156.097143px;}
._14_c00414{width:162.375998px;}
._d_c00414{width:182.391467px;}
._f_c00414{width:207.201036px;}
._15_c00414{width:220.640991px;}
._12_c00414{width:247.295292px;}
._9_c00414{width:294.223388px;}
._4_c00414{width:295.661959px;}
._6_c00414{width:313.608876px;}
._c_c00414{width:314.898471px;}
._8_c00414{width:332.288085px;}
._7_c00414{width:342.606009px;}
._10_c00414{width:367.678773px;}
._16_c00414{width:380.393128px;}
._3_c00414{width:389.856116px;}
._5_c00414{width:403.050224px;}
._13_c00414{width:407.761036px;}
._18_c00414{width:436.860973px;}
._2_c00414{width:1166.924601px;}
.fc1_c00414{color:transparent;}
.fc0_c00414{color:rgb(0,0,0);}
.fs2_c00414{font-size:31.578420px;}
.fs1_c00414{font-size:45.756660px;}
.fs0_c00414{font-size:68.313000px;}
.fs4_c00414{font-size:79.270800px;}
.fs3_c00414{font-size:113.425200px;}
.y0_c00414{bottom:0.000000px;}
.y18_c00414{bottom:22.022100px;}
.y1e_c00414{bottom:22.022250px;}
.y17_c00414{bottom:48.301950px;}
.y1d_c00414{bottom:48.302100px;}
.y16_c00414{bottom:74.581800px;}
.y1c_c00414{bottom:74.583150px;}
.y15_c00414{bottom:100.861650px;}
.y1b_c00414{bottom:100.863000px;}
.y14_c00414{bottom:127.141500px;}
.y1a_c00414{bottom:127.142850px;}
.y13_c00414{bottom:153.421350px;}
.y19_c00414{bottom:153.421500px;}
.y1f_c00414{bottom:155.941350px;}
.y5_c00414{bottom:188.699850px;}
.y12_c00414{bottom:209.939850px;}
.y7_c00414{bottom:225.959850px;}
.y8_c00414{bottom:268.799850px;}
.y6_c00414{bottom:296.519850px;}
.y9_c00414{bottom:311.639850px;}
.ya_c00414{bottom:354.299850px;}
.yb_c00414{bottom:397.139850px;}
.yc_c00414{bottom:439.979850px;}
.yd_c00414{bottom:482.819850px;}
.ye_c00414{bottom:525.479850px;}
.yf_c00414{bottom:568.319850px;}
.y10_c00414{bottom:611.159850px;}
.y11_c00414{bottom:653.819850px;}
.y4_c00414{bottom:659.759850px;}
.y3_c00414{bottom:671.100090px;}
.y2_c00414{bottom:682.259850px;}
.y1_c00414{bottom:706.919850px;}
.y26_c00414{bottom:739.499850px;}
.y23_c00414{bottom:751.019550px;}
.y25_c00414{bottom:757.679850px;}
.y22_c00414{bottom:776.939700px;}
.y20_c00414{bottom:784.139850px;}
.y24_c00414{bottom:794.579850px;}
.y21_c00414{bottom:802.859850px;}
.h3_c00414{height:33.312100px;}
.h4_c00414{height:43.870553px;}
.h2_c00414{height:49.733732px;}
.h6_c00414{height:57.711310px;}
.h5_c00414{height:82.576647px;}
.h0_c00414{height:892.499550px;}
.h1_c00414{height:892.500000px;}
.w0_c00414{width:1262.999700px;}
.w1_c00414{width:1263.000000px;}
.x0_c00414{left:0.000000px;}
.xa_c00414{left:27.165750px;}
.x10_c00414{left:35.265750px;}
.x14_c00414{left:38.506050px;}
.x6_c00414{left:43.726200px;}
.x9_c00414{left:52.725600px;}
.x8_c00414{left:59.385900px;}
.x7_c00414{left:66.045750px;}
.x3_c00414{left:92.866040px;}
.x4_c00414{left:185.386500px;}
.x1_c00414{left:228.406500px;}
.x2_c00414{left:287.446500px;}
.x5_c00414{left:416.506500px;}
.xd_c00414{left:482.564325px;}
.xe_c00414{left:492.283862px;}
.xc_c00414{left:499.844223px;}
.xb_c00414{left:501.283872px;}
.x12_c00414{left:567.526500px;}
.x13_c00414{left:616.846500px;}
.x11_c00414{left:837.165000px;}
.xf_c00414{left:878.566500px;}
@media print{
.v0_c00414{vertical-align:0.000000pt;}
.v1_c00414{vertical-align:18.560533pt;}
.ls1_c00414{letter-spacing:0.000000pt;}
.ls0_c00414{letter-spacing:1.043858pt;}
.ws8_c00414{word-spacing:-28.028627pt;}
.ws5_c00414{word-spacing:-12.350837pt;}
.ws4_c00414{word-spacing:-11.306979pt;}
.ws7_c00414{word-spacing:-7.803378pt;}
.ws9_c00414{word-spacing:0.000000pt;}
.ws6_c00414{word-spacing:74.197868pt;}
.ws3_c00414{word-spacing:239.963787pt;}
.ws1_c00414{word-spacing:1003.575740pt;}
.ws0_c00414{word-spacing:1682.115023pt;}
.ws2_c00414{word-spacing:3672.555617pt;}
._a_c00414{margin-left:-1.043858pt;}
._0_c00414{width:1.713071pt;}
._1_c00414{width:3.180896pt;}
._e_c00414{width:109.420849pt;}
._17_c00414{width:120.001860pt;}
._b_c00414{width:137.850063pt;}
._11_c00414{width:138.753016pt;}
._14_c00414{width:144.334220pt;}
._d_c00414{width:162.125749pt;}
._f_c00414{width:184.178698pt;}
._15_c00414{width:196.125326pt;}
._12_c00414{width:219.818038pt;}
._9_c00414{width:261.531900pt;}
._4_c00414{width:262.810630pt;}
._6_c00414{width:278.763446pt;}
._c_c00414{width:279.909752pt;}
._8_c00414{width:295.367186pt;}
._7_c00414{width:304.538675pt;}
._10_c00414{width:326.825576pt;}
._16_c00414{width:338.127225pt;}
._3_c00414{width:346.538770pt;}
._5_c00414{width:358.266866pt;}
._13_c00414{width:362.454254pt;}
._18_c00414{width:388.320865pt;}
._2_c00414{width:1037.266312pt;}
.fs2_c00414{font-size:28.069707pt;}
.fs1_c00414{font-size:40.672587pt;}
.fs0_c00414{font-size:60.722667pt;}
.fs4_c00414{font-size:70.462933pt;}
.fs3_c00414{font-size:100.822400pt;}
.y0_c00414{bottom:0.000000pt;}
.y18_c00414{bottom:19.575200pt;}
.y1e_c00414{bottom:19.575333pt;}
.y17_c00414{bottom:42.935067pt;}
.y1d_c00414{bottom:42.935200pt;}
.y16_c00414{bottom:66.294933pt;}
.y1c_c00414{bottom:66.296133pt;}
.y15_c00414{bottom:89.654800pt;}
.y1b_c00414{bottom:89.656000pt;}
.y14_c00414{bottom:113.014667pt;}
.y1a_c00414{bottom:113.015867pt;}
.y13_c00414{bottom:136.374533pt;}
.y19_c00414{bottom:136.374667pt;}
.y1f_c00414{bottom:138.614533pt;}
.y5_c00414{bottom:167.733200pt;}
.y12_c00414{bottom:186.613200pt;}
.y7_c00414{bottom:200.853200pt;}
.y8_c00414{bottom:238.933200pt;}
.y6_c00414{bottom:263.573200pt;}
.y9_c00414{bottom:277.013200pt;}
.ya_c00414{bottom:314.933200pt;}
.yb_c00414{bottom:353.013200pt;}
.yc_c00414{bottom:391.093200pt;}
.yd_c00414{bottom:429.173200pt;}
.ye_c00414{bottom:467.093200pt;}
.yf_c00414{bottom:505.173200pt;}
.y10_c00414{bottom:543.253200pt;}
.y11_c00414{bottom:581.173200pt;}
.y4_c00414{bottom:586.453200pt;}
.y3_c00414{bottom:596.533413pt;}
.y2_c00414{bottom:606.453200pt;}
.y1_c00414{bottom:628.373200pt;}
.y26_c00414{bottom:657.333200pt;}
.y23_c00414{bottom:667.572933pt;}
.y25_c00414{bottom:673.493200pt;}
.y22_c00414{bottom:690.613067pt;}
.y20_c00414{bottom:697.013200pt;}
.y24_c00414{bottom:706.293200pt;}
.y21_c00414{bottom:713.653200pt;}
.h3_c00414{height:29.610755pt;}
.h4_c00414{height:38.996047pt;}
.h2_c00414{height:44.207762pt;}
.h6_c00414{height:51.298942pt;}
.h5_c00414{height:73.401464pt;}
.h0_c00414{height:793.332933pt;}
.h1_c00414{height:793.333333pt;}
.w0_c00414{width:1122.666400pt;}
.w1_c00414{width:1122.666667pt;}
.x0_c00414{left:0.000000pt;}
.xa_c00414{left:24.147333pt;}
.x10_c00414{left:31.347333pt;}
.x14_c00414{left:34.227600pt;}
.x6_c00414{left:38.867733pt;}
.x9_c00414{left:46.867200pt;}
.x8_c00414{left:52.787467pt;}
.x7_c00414{left:58.707333pt;}
.x3_c00414{left:82.547591pt;}
.x4_c00414{left:164.788000pt;}
.x1_c00414{left:203.028000pt;}
.x2_c00414{left:255.508000pt;}
.x5_c00414{left:370.228000pt;}
.xd_c00414{left:428.946066pt;}
.xe_c00414{left:437.585655pt;}
.xc_c00414{left:444.305976pt;}
.xb_c00414{left:445.585664pt;}
.x12_c00414{left:504.468000pt;}
.x13_c00414{left:548.308000pt;}
.x11_c00414{left:744.146667pt;}
.xf_c00414{left:780.948000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e35c7f8485bc03661357aaa7.woff2')format("woff");}.ff1_c00415{font-family:ff1_c00415;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00415{transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);}
.m1_c00415{transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);}
.m4_c00415{transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);}
.m3_c00415{transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);}
.m0_c00415{transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);}
.v0_c00415{vertical-align:0.000000px;}
.v1_c00415{vertical-align:20.880600px;}
.ls1_c00415{letter-spacing:0.000000px;}
.ls0_c00415{letter-spacing:1.174340px;}
.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;}
}
.ws8_c00415{word-spacing:-31.532206px;}
.ws5_c00415{word-spacing:-13.894692px;}
.ws4_c00415{word-spacing:-12.720351px;}
.ws7_c00415{word-spacing:-8.778801px;}
.ws9_c00415{word-spacing:0.000000px;}
.ws6_c00415{word-spacing:83.472601px;}
.ws3_c00415{word-spacing:269.959261px;}
.ws1_c00415{word-spacing:1129.022707px;}
.ws0_c00415{word-spacing:1892.379401px;}
.ws2_c00415{word-spacing:4131.625069px;}
._a_c00415{margin-left:-1.174340px;}
._0_c00415{width:1.927205px;}
._1_c00415{width:3.578508px;}
._e_c00415{width:123.098455px;}
._17_c00415{width:135.002093px;}
._b_c00415{width:155.081320px;}
._11_c00415{width:156.097143px;}
._14_c00415{width:162.375998px;}
._d_c00415{width:182.391467px;}
._f_c00415{width:207.201036px;}
._15_c00415{width:220.640991px;}
._12_c00415{width:247.295292px;}
._9_c00415{width:294.223388px;}
._4_c00415{width:295.661959px;}
._6_c00415{width:313.608876px;}
._c_c00415{width:314.898471px;}
._8_c00415{width:332.288085px;}
._7_c00415{width:342.606009px;}
._10_c00415{width:367.678773px;}
._16_c00415{width:380.393128px;}
._3_c00415{width:389.856116px;}
._5_c00415{width:403.050224px;}
._13_c00415{width:407.761036px;}
._18_c00415{width:436.860973px;}
._2_c00415{width:1166.924601px;}
.fc1_c00415{color:transparent;}
.fc0_c00415{color:rgb(0,0,0);}
.fs2_c00415{font-size:31.578420px;}
.fs1_c00415{font-size:45.756660px;}
.fs0_c00415{font-size:68.313000px;}
.fs4_c00415{font-size:79.270800px;}
.fs3_c00415{font-size:113.425200px;}
.y0_c00415{bottom:0.000000px;}
.y18_c00415{bottom:22.022100px;}
.y1f_c00415{bottom:22.022250px;}
.y17_c00415{bottom:48.301950px;}
.y1e_c00415{bottom:48.302100px;}
.y16_c00415{bottom:74.581800px;}
.y1d_c00415{bottom:74.583150px;}
.y15_c00415{bottom:100.861650px;}
.y1c_c00415{bottom:100.863000px;}
.y14_c00415{bottom:127.141500px;}
.y1b_c00415{bottom:127.142850px;}
.y13_c00415{bottom:153.421350px;}
.y19_c00415{bottom:153.421500px;}
.y20_c00415{bottom:155.941350px;}
.y1a_c00415{bottom:165.121500px;}
.y5_c00415{bottom:188.699850px;}
.y12_c00415{bottom:209.939850px;}
.y7_c00415{bottom:225.959850px;}
.y8_c00415{bottom:268.799850px;}
.y6_c00415{bottom:296.519850px;}
.y9_c00415{bottom:311.639850px;}
.ya_c00415{bottom:354.299850px;}
.yb_c00415{bottom:397.139850px;}
.yc_c00415{bottom:439.979850px;}
.yd_c00415{bottom:482.819850px;}
.ye_c00415{bottom:525.479850px;}
.yf_c00415{bottom:568.319850px;}
.y10_c00415{bottom:611.159850px;}
.y11_c00415{bottom:653.819850px;}
.y4_c00415{bottom:659.759850px;}
.y3_c00415{bottom:671.100090px;}
.y2_c00415{bottom:682.259850px;}
.y1_c00415{bottom:706.919850px;}
.y27_c00415{bottom:739.499850px;}
.y24_c00415{bottom:751.019550px;}
.y26_c00415{bottom:757.679850px;}
.y23_c00415{bottom:776.939700px;}
.y21_c00415{bottom:784.139850px;}
.y25_c00415{bottom:794.579850px;}
.y22_c00415{bottom:802.859850px;}
.h3_c00415{height:33.312100px;}
.h4_c00415{height:43.870553px;}
.h2_c00415{height:49.733732px;}
.h6_c00415{height:57.711310px;}
.h5_c00415{height:82.576647px;}
.h0_c00415{height:892.499550px;}
.h1_c00415{height:892.500000px;}
.w0_c00415{width:1262.999700px;}
.w1_c00415{width:1263.000000px;}
.x0_c00415{left:0.000000px;}
.xa_c00415{left:27.165750px;}
.x11_c00415{left:35.265750px;}
.x15_c00415{left:38.506050px;}
.x6_c00415{left:43.726200px;}
.x9_c00415{left:52.725600px;}
.x8_c00415{left:59.385900px;}
.x7_c00415{left:66.045750px;}
.x3_c00415{left:92.866040px;}
.x4_c00415{left:185.386500px;}
.x1_c00415{left:228.406500px;}
.x2_c00415{left:287.446500px;}
.x5_c00415{left:416.506500px;}
.xe_c00415{left:479.684408px;}
.xf_c00415{left:492.284404px;}
.xd_c00415{left:499.844240px;}
.xb_c00415{left:501.283872px;}
.xc_c00415{left:529.150140px;}
.x13_c00415{left:567.526500px;}
.x14_c00415{left:616.846500px;}
.x12_c00415{left:837.165000px;}
.x10_c00415{left:878.566500px;}
@media print{
.v0_c00415{vertical-align:0.000000pt;}
.v1_c00415{vertical-align:18.560533pt;}
.ls1_c00415{letter-spacing:0.000000pt;}
.ls0_c00415{letter-spacing:1.043858pt;}
.ws8_c00415{word-spacing:-28.028627pt;}
.ws5_c00415{word-spacing:-12.350837pt;}
.ws4_c00415{word-spacing:-11.306979pt;}
.ws7_c00415{word-spacing:-7.803378pt;}
.ws9_c00415{word-spacing:0.000000pt;}
.ws6_c00415{word-spacing:74.197868pt;}
.ws3_c00415{word-spacing:239.963787pt;}
.ws1_c00415{word-spacing:1003.575740pt;}
.ws0_c00415{word-spacing:1682.115023pt;}
.ws2_c00415{word-spacing:3672.555617pt;}
._a_c00415{margin-left:-1.043858pt;}
._0_c00415{width:1.713071pt;}
._1_c00415{width:3.180896pt;}
._e_c00415{width:109.420849pt;}
._17_c00415{width:120.001860pt;}
._b_c00415{width:137.850063pt;}
._11_c00415{width:138.753016pt;}
._14_c00415{width:144.334220pt;}
._d_c00415{width:162.125749pt;}
._f_c00415{width:184.178698pt;}
._15_c00415{width:196.125326pt;}
._12_c00415{width:219.818038pt;}
._9_c00415{width:261.531900pt;}
._4_c00415{width:262.810630pt;}
._6_c00415{width:278.763446pt;}
._c_c00415{width:279.909752pt;}
._8_c00415{width:295.367186pt;}
._7_c00415{width:304.538675pt;}
._10_c00415{width:326.825576pt;}
._16_c00415{width:338.127225pt;}
._3_c00415{width:346.538770pt;}
._5_c00415{width:358.266866pt;}
._13_c00415{width:362.454254pt;}
._18_c00415{width:388.320865pt;}
._2_c00415{width:1037.266312pt;}
.fs2_c00415{font-size:28.069707pt;}
.fs1_c00415{font-size:40.672587pt;}
.fs0_c00415{font-size:60.722667pt;}
.fs4_c00415{font-size:70.462933pt;}
.fs3_c00415{font-size:100.822400pt;}
.y0_c00415{bottom:0.000000pt;}
.y18_c00415{bottom:19.575200pt;}
.y1f_c00415{bottom:19.575333pt;}
.y17_c00415{bottom:42.935067pt;}
.y1e_c00415{bottom:42.935200pt;}
.y16_c00415{bottom:66.294933pt;}
.y1d_c00415{bottom:66.296133pt;}
.y15_c00415{bottom:89.654800pt;}
.y1c_c00415{bottom:89.656000pt;}
.y14_c00415{bottom:113.014667pt;}
.y1b_c00415{bottom:113.015867pt;}
.y13_c00415{bottom:136.374533pt;}
.y19_c00415{bottom:136.374667pt;}
.y20_c00415{bottom:138.614533pt;}
.y1a_c00415{bottom:146.774667pt;}
.y5_c00415{bottom:167.733200pt;}
.y12_c00415{bottom:186.613200pt;}
.y7_c00415{bottom:200.853200pt;}
.y8_c00415{bottom:238.933200pt;}
.y6_c00415{bottom:263.573200pt;}
.y9_c00415{bottom:277.013200pt;}
.ya_c00415{bottom:314.933200pt;}
.yb_c00415{bottom:353.013200pt;}
.yc_c00415{bottom:391.093200pt;}
.yd_c00415{bottom:429.173200pt;}
.ye_c00415{bottom:467.093200pt;}
.yf_c00415{bottom:505.173200pt;}
.y10_c00415{bottom:543.253200pt;}
.y11_c00415{bottom:581.173200pt;}
.y4_c00415{bottom:586.453200pt;}
.y3_c00415{bottom:596.533413pt;}
.y2_c00415{bottom:606.453200pt;}
.y1_c00415{bottom:628.373200pt;}
.y27_c00415{bottom:657.333200pt;}
.y24_c00415{bottom:667.572933pt;}
.y26_c00415{bottom:673.493200pt;}
.y23_c00415{bottom:690.613067pt;}
.y21_c00415{bottom:697.013200pt;}
.y25_c00415{bottom:706.293200pt;}
.y22_c00415{bottom:713.653200pt;}
.h3_c00415{height:29.610755pt;}
.h4_c00415{height:38.996047pt;}
.h2_c00415{height:44.207762pt;}
.h6_c00415{height:51.298942pt;}
.h5_c00415{height:73.401464pt;}
.h0_c00415{height:793.332933pt;}
.h1_c00415{height:793.333333pt;}
.w0_c00415{width:1122.666400pt;}
.w1_c00415{width:1122.666667pt;}
.x0_c00415{left:0.000000pt;}
.xa_c00415{left:24.147333pt;}
.x11_c00415{left:31.347333pt;}
.x15_c00415{left:34.227600pt;}
.x6_c00415{left:38.867733pt;}
.x9_c00415{left:46.867200pt;}
.x8_c00415{left:52.787467pt;}
.x7_c00415{left:58.707333pt;}
.x3_c00415{left:82.547591pt;}
.x4_c00415{left:164.788000pt;}
.x1_c00415{left:203.028000pt;}
.x2_c00415{left:255.508000pt;}
.x5_c00415{left:370.228000pt;}
.xe_c00415{left:426.386140pt;}
.xf_c00415{left:437.586137pt;}
.xd_c00415{left:444.305991pt;}
.xb_c00415{left:445.585664pt;}
.xc_c00415{left:470.355680pt;}
.x13_c00415{left:504.468000pt;}
.x14_c00415{left:548.308000pt;}
.x12_c00415{left:744.146667pt;}
.x10_c00415{left:780.948000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_614d6e65988c07882c4a36ab.woff2')format("woff");}.ff1_c00416{font-family:ff1_c00416;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00416{transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);}
.m1_c00416{transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);}
.m4_c00416{transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);}
.m3_c00416{transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);}
.m0_c00416{transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);}
.v0_c00416{vertical-align:0.000000px;}
.v1_c00416{vertical-align:20.880600px;}
.ls1_c00416{letter-spacing:0.000000px;}
.ls0_c00416{letter-spacing:1.174340px;}
.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;}
}
.ws8_c00416{word-spacing:-31.532206px;}
.ws5_c00416{word-spacing:-13.894692px;}
.ws4_c00416{word-spacing:-12.720351px;}
.ws7_c00416{word-spacing:-8.778801px;}
.ws9_c00416{word-spacing:0.000000px;}
.ws6_c00416{word-spacing:83.472601px;}
.ws3_c00416{word-spacing:269.959261px;}
.ws1_c00416{word-spacing:1129.022707px;}
.ws0_c00416{word-spacing:1892.379401px;}
.ws2_c00416{word-spacing:4131.625069px;}
._a_c00416{margin-left:-1.174340px;}
._0_c00416{width:1.927205px;}
._1_c00416{width:3.578508px;}
._e_c00416{width:123.098455px;}
._17_c00416{width:135.002093px;}
._b_c00416{width:155.081320px;}
._11_c00416{width:156.097143px;}
._14_c00416{width:162.375998px;}
._d_c00416{width:182.391467px;}
._f_c00416{width:207.201036px;}
._15_c00416{width:220.640991px;}
._12_c00416{width:247.295292px;}
._9_c00416{width:294.223388px;}
._4_c00416{width:295.661959px;}
._6_c00416{width:313.608876px;}
._c_c00416{width:314.898471px;}
._8_c00416{width:332.288085px;}
._7_c00416{width:342.606009px;}
._10_c00416{width:367.678773px;}
._16_c00416{width:380.393128px;}
._3_c00416{width:389.856116px;}
._5_c00416{width:403.050224px;}
._13_c00416{width:407.761036px;}
._18_c00416{width:436.860973px;}
._2_c00416{width:1166.924601px;}
.fc1_c00416{color:transparent;}
.fc0_c00416{color:rgb(0,0,0);}
.fs2_c00416{font-size:31.578420px;}
.fs1_c00416{font-size:45.756660px;}
.fs0_c00416{font-size:68.313000px;}
.fs4_c00416{font-size:79.270800px;}
.fs3_c00416{font-size:113.425200px;}
.y0_c00416{bottom:0.000000px;}
.y18_c00416{bottom:22.022100px;}
.y1e_c00416{bottom:22.022250px;}
.y17_c00416{bottom:48.301950px;}
.y1d_c00416{bottom:48.302100px;}
.y16_c00416{bottom:74.581800px;}
.y1c_c00416{bottom:74.583150px;}
.y15_c00416{bottom:100.861650px;}
.y1b_c00416{bottom:100.863000px;}
.y14_c00416{bottom:127.141500px;}
.y1a_c00416{bottom:127.142850px;}
.y13_c00416{bottom:153.421350px;}
.y19_c00416{bottom:153.421500px;}
.y1f_c00416{bottom:155.941350px;}
.y5_c00416{bottom:188.699850px;}
.y12_c00416{bottom:209.939850px;}
.y7_c00416{bottom:225.959850px;}
.y8_c00416{bottom:268.799850px;}
.y6_c00416{bottom:296.519850px;}
.y9_c00416{bottom:311.639850px;}
.ya_c00416{bottom:354.299850px;}
.yb_c00416{bottom:397.139850px;}
.yc_c00416{bottom:439.979850px;}
.yd_c00416{bottom:482.819850px;}
.ye_c00416{bottom:525.479850px;}
.yf_c00416{bottom:568.319850px;}
.y10_c00416{bottom:611.159850px;}
.y11_c00416{bottom:653.819850px;}
.y4_c00416{bottom:659.759850px;}
.y3_c00416{bottom:671.100090px;}
.y2_c00416{bottom:682.259850px;}
.y1_c00416{bottom:706.919850px;}
.y26_c00416{bottom:739.499850px;}
.y23_c00416{bottom:751.019550px;}
.y25_c00416{bottom:757.679850px;}
.y22_c00416{bottom:776.939700px;}
.y20_c00416{bottom:784.139850px;}
.y24_c00416{bottom:794.579850px;}
.y21_c00416{bottom:802.859850px;}
.h3_c00416{height:33.312100px;}
.h4_c00416{height:43.870553px;}
.h2_c00416{height:49.733732px;}
.h6_c00416{height:57.711310px;}
.h5_c00416{height:82.576647px;}
.h0_c00416{height:892.499550px;}
.h1_c00416{height:892.500000px;}
.w0_c00416{width:1262.999700px;}
.w1_c00416{width:1263.000000px;}
.x0_c00416{left:0.000000px;}
.xa_c00416{left:27.165750px;}
.x10_c00416{left:35.265750px;}
.x14_c00416{left:38.506050px;}
.x6_c00416{left:43.726200px;}
.x9_c00416{left:52.725600px;}
.x8_c00416{left:59.385900px;}
.x7_c00416{left:66.045750px;}
.x3_c00416{left:92.866040px;}
.x4_c00416{left:185.386500px;}
.x1_c00416{left:228.406500px;}
.x2_c00416{left:287.446500px;}
.x5_c00416{left:416.506500px;}
.xd_c00416{left:479.683941px;}
.xe_c00416{left:492.283937px;}
.xc_c00416{left:499.844223px;}
.xb_c00416{left:501.283872px;}
.x12_c00416{left:567.526500px;}
.x13_c00416{left:616.846500px;}
.x11_c00416{left:837.165000px;}
.xf_c00416{left:878.566500px;}
@media print{
.v0_c00416{vertical-align:0.000000pt;}
.v1_c00416{vertical-align:18.560533pt;}
.ls1_c00416{letter-spacing:0.000000pt;}
.ls0_c00416{letter-spacing:1.043858pt;}
.ws8_c00416{word-spacing:-28.028627pt;}
.ws5_c00416{word-spacing:-12.350837pt;}
.ws4_c00416{word-spacing:-11.306979pt;}
.ws7_c00416{word-spacing:-7.803378pt;}
.ws9_c00416{word-spacing:0.000000pt;}
.ws6_c00416{word-spacing:74.197868pt;}
.ws3_c00416{word-spacing:239.963787pt;}
.ws1_c00416{word-spacing:1003.575740pt;}
.ws0_c00416{word-spacing:1682.115023pt;}
.ws2_c00416{word-spacing:3672.555617pt;}
._a_c00416{margin-left:-1.043858pt;}
._0_c00416{width:1.713071pt;}
._1_c00416{width:3.180896pt;}
._e_c00416{width:109.420849pt;}
._17_c00416{width:120.001860pt;}
._b_c00416{width:137.850063pt;}
._11_c00416{width:138.753016pt;}
._14_c00416{width:144.334220pt;}
._d_c00416{width:162.125749pt;}
._f_c00416{width:184.178698pt;}
._15_c00416{width:196.125326pt;}
._12_c00416{width:219.818038pt;}
._9_c00416{width:261.531900pt;}
._4_c00416{width:262.810630pt;}
._6_c00416{width:278.763446pt;}
._c_c00416{width:279.909752pt;}
._8_c00416{width:295.367186pt;}
._7_c00416{width:304.538675pt;}
._10_c00416{width:326.825576pt;}
._16_c00416{width:338.127225pt;}
._3_c00416{width:346.538770pt;}
._5_c00416{width:358.266866pt;}
._13_c00416{width:362.454254pt;}
._18_c00416{width:388.320865pt;}
._2_c00416{width:1037.266312pt;}
.fs2_c00416{font-size:28.069707pt;}
.fs1_c00416{font-size:40.672587pt;}
.fs0_c00416{font-size:60.722667pt;}
.fs4_c00416{font-size:70.462933pt;}
.fs3_c00416{font-size:100.822400pt;}
.y0_c00416{bottom:0.000000pt;}
.y18_c00416{bottom:19.575200pt;}
.y1e_c00416{bottom:19.575333pt;}
.y17_c00416{bottom:42.935067pt;}
.y1d_c00416{bottom:42.935200pt;}
.y16_c00416{bottom:66.294933pt;}
.y1c_c00416{bottom:66.296133pt;}
.y15_c00416{bottom:89.654800pt;}
.y1b_c00416{bottom:89.656000pt;}
.y14_c00416{bottom:113.014667pt;}
.y1a_c00416{bottom:113.015867pt;}
.y13_c00416{bottom:136.374533pt;}
.y19_c00416{bottom:136.374667pt;}
.y1f_c00416{bottom:138.614533pt;}
.y5_c00416{bottom:167.733200pt;}
.y12_c00416{bottom:186.613200pt;}
.y7_c00416{bottom:200.853200pt;}
.y8_c00416{bottom:238.933200pt;}
.y6_c00416{bottom:263.573200pt;}
.y9_c00416{bottom:277.013200pt;}
.ya_c00416{bottom:314.933200pt;}
.yb_c00416{bottom:353.013200pt;}
.yc_c00416{bottom:391.093200pt;}
.yd_c00416{bottom:429.173200pt;}
.ye_c00416{bottom:467.093200pt;}
.yf_c00416{bottom:505.173200pt;}
.y10_c00416{bottom:543.253200pt;}
.y11_c00416{bottom:581.173200pt;}
.y4_c00416{bottom:586.453200pt;}
.y3_c00416{bottom:596.533413pt;}
.y2_c00416{bottom:606.453200pt;}
.y1_c00416{bottom:628.373200pt;}
.y26_c00416{bottom:657.333200pt;}
.y23_c00416{bottom:667.572933pt;}
.y25_c00416{bottom:673.493200pt;}
.y22_c00416{bottom:690.613067pt;}
.y20_c00416{bottom:697.013200pt;}
.y24_c00416{bottom:706.293200pt;}
.y21_c00416{bottom:713.653200pt;}
.h3_c00416{height:29.610755pt;}
.h4_c00416{height:38.996047pt;}
.h2_c00416{height:44.207762pt;}
.h6_c00416{height:51.298942pt;}
.h5_c00416{height:73.401464pt;}
.h0_c00416{height:793.332933pt;}
.h1_c00416{height:793.333333pt;}
.w0_c00416{width:1122.666400pt;}
.w1_c00416{width:1122.666667pt;}
.x0_c00416{left:0.000000pt;}
.xa_c00416{left:24.147333pt;}
.x10_c00416{left:31.347333pt;}
.x14_c00416{left:34.227600pt;}
.x6_c00416{left:38.867733pt;}
.x9_c00416{left:46.867200pt;}
.x8_c00416{left:52.787467pt;}
.x7_c00416{left:58.707333pt;}
.x3_c00416{left:82.547591pt;}
.x4_c00416{left:164.788000pt;}
.x1_c00416{left:203.028000pt;}
.x2_c00416{left:255.508000pt;}
.x5_c00416{left:370.228000pt;}
.xd_c00416{left:426.385726pt;}
.xe_c00416{left:437.585722pt;}
.xc_c00416{left:444.305976pt;}
.xb_c00416{left:445.585664pt;}
.x12_c00416{left:504.468000pt;}
.x13_c00416{left:548.308000pt;}
.x11_c00416{left:744.146667pt;}
.xf_c00416{left:780.948000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_434b1570c9a2fbef0b5d4a04.woff2')format("woff");}.ff1_c00417{font-family:ff1_c00417;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00417{transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);}
.m1_c00417{transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);}
.m4_c00417{transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);}
.m3_c00417{transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);}
.m0_c00417{transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);}
.v0_c00417{vertical-align:0.000000px;}
.v1_c00417{vertical-align:20.880600px;}
.ls1_c00417{letter-spacing:0.000000px;}
.ls0_c00417{letter-spacing:1.174340px;}
.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:-31.532206px;}
.ws5_c00417{word-spacing:-13.894692px;}
.ws4_c00417{word-spacing:-12.720351px;}
.ws7_c00417{word-spacing:-8.778801px;}
.ws9_c00417{word-spacing:0.000000px;}
.ws6_c00417{word-spacing:83.472601px;}
.ws3_c00417{word-spacing:269.959261px;}
.ws1_c00417{word-spacing:1129.022707px;}
.ws0_c00417{word-spacing:1892.379401px;}
.ws2_c00417{word-spacing:4131.625069px;}
._a_c00417{margin-left:-1.174340px;}
._0_c00417{width:1.927205px;}
._1_c00417{width:3.578508px;}
._e_c00417{width:123.098455px;}
._17_c00417{width:135.002093px;}
._b_c00417{width:155.081320px;}
._11_c00417{width:156.097143px;}
._14_c00417{width:162.375998px;}
._d_c00417{width:182.391467px;}
._f_c00417{width:207.201036px;}
._15_c00417{width:220.640991px;}
._12_c00417{width:247.295292px;}
._9_c00417{width:294.223388px;}
._4_c00417{width:295.661959px;}
._6_c00417{width:313.608876px;}
._c_c00417{width:314.898471px;}
._8_c00417{width:332.288085px;}
._7_c00417{width:342.606009px;}
._10_c00417{width:367.678773px;}
._16_c00417{width:380.393128px;}
._3_c00417{width:389.856116px;}
._5_c00417{width:403.050224px;}
._13_c00417{width:407.761036px;}
._18_c00417{width:436.860973px;}
._2_c00417{width:1166.924601px;}
.fc1_c00417{color:transparent;}
.fc0_c00417{color:rgb(0,0,0);}
.fs2_c00417{font-size:31.578420px;}
.fs1_c00417{font-size:45.756660px;}
.fs0_c00417{font-size:68.313000px;}
.fs4_c00417{font-size:79.270800px;}
.fs3_c00417{font-size:113.425200px;}
.y0_c00417{bottom:0.000000px;}
.y18_c00417{bottom:22.022100px;}
.y1e_c00417{bottom:22.022250px;}
.y17_c00417{bottom:48.301950px;}
.y1d_c00417{bottom:48.302100px;}
.y16_c00417{bottom:74.581800px;}
.y1c_c00417{bottom:74.583150px;}
.y15_c00417{bottom:100.861650px;}
.y1b_c00417{bottom:100.863000px;}
.y14_c00417{bottom:127.141500px;}
.y1a_c00417{bottom:127.142850px;}
.y13_c00417{bottom:153.421350px;}
.y19_c00417{bottom:153.421500px;}
.y1f_c00417{bottom:155.941350px;}
.y5_c00417{bottom:188.699850px;}
.y12_c00417{bottom:209.939850px;}
.y7_c00417{bottom:225.959850px;}
.y8_c00417{bottom:268.799850px;}
.y6_c00417{bottom:296.519850px;}
.y9_c00417{bottom:311.639850px;}
.ya_c00417{bottom:354.299850px;}
.yb_c00417{bottom:397.139850px;}
.yc_c00417{bottom:439.979850px;}
.yd_c00417{bottom:482.819850px;}
.ye_c00417{bottom:525.479850px;}
.yf_c00417{bottom:568.319850px;}
.y10_c00417{bottom:611.159850px;}
.y11_c00417{bottom:653.819850px;}
.y4_c00417{bottom:659.759850px;}
.y3_c00417{bottom:671.100090px;}
.y2_c00417{bottom:682.259850px;}
.y1_c00417{bottom:706.919850px;}
.y26_c00417{bottom:739.499850px;}
.y23_c00417{bottom:751.019550px;}
.y25_c00417{bottom:757.679850px;}
.y22_c00417{bottom:776.939700px;}
.y20_c00417{bottom:784.139850px;}
.y24_c00417{bottom:794.579850px;}
.y21_c00417{bottom:802.859850px;}
.h3_c00417{height:33.312100px;}
.h4_c00417{height:43.870553px;}
.h2_c00417{height:49.733732px;}
.h6_c00417{height:57.711310px;}
.h5_c00417{height:82.576647px;}
.h0_c00417{height:892.499550px;}
.h1_c00417{height:892.500000px;}
.w0_c00417{width:1262.999700px;}
.w1_c00417{width:1263.000000px;}
.x0_c00417{left:0.000000px;}
.xa_c00417{left:27.165750px;}
.x10_c00417{left:35.265750px;}
.x14_c00417{left:38.506050px;}
.x6_c00417{left:43.726200px;}
.x9_c00417{left:52.725600px;}
.x8_c00417{left:59.385900px;}
.x7_c00417{left:66.045750px;}
.x3_c00417{left:92.866040px;}
.x4_c00417{left:185.386500px;}
.x1_c00417{left:228.406500px;}
.x2_c00417{left:287.446500px;}
.x5_c00417{left:416.506500px;}
.xd_c00417{left:482.564325px;}
.xe_c00417{left:492.283862px;}
.xc_c00417{left:499.844223px;}
.xb_c00417{left:501.283872px;}
.x12_c00417{left:567.526500px;}
.x13_c00417{left:616.846500px;}
.x11_c00417{left:837.165000px;}
.xf_c00417{left:878.566500px;}
@media print{
.v0_c00417{vertical-align:0.000000pt;}
.v1_c00417{vertical-align:18.560533pt;}
.ls1_c00417{letter-spacing:0.000000pt;}
.ls0_c00417{letter-spacing:1.043858pt;}
.ws8_c00417{word-spacing:-28.028627pt;}
.ws5_c00417{word-spacing:-12.350837pt;}
.ws4_c00417{word-spacing:-11.306979pt;}
.ws7_c00417{word-spacing:-7.803378pt;}
.ws9_c00417{word-spacing:0.000000pt;}
.ws6_c00417{word-spacing:74.197868pt;}
.ws3_c00417{word-spacing:239.963787pt;}
.ws1_c00417{word-spacing:1003.575740pt;}
.ws0_c00417{word-spacing:1682.115023pt;}
.ws2_c00417{word-spacing:3672.555617pt;}
._a_c00417{margin-left:-1.043858pt;}
._0_c00417{width:1.713071pt;}
._1_c00417{width:3.180896pt;}
._e_c00417{width:109.420849pt;}
._17_c00417{width:120.001860pt;}
._b_c00417{width:137.850063pt;}
._11_c00417{width:138.753016pt;}
._14_c00417{width:144.334220pt;}
._d_c00417{width:162.125749pt;}
._f_c00417{width:184.178698pt;}
._15_c00417{width:196.125326pt;}
._12_c00417{width:219.818038pt;}
._9_c00417{width:261.531900pt;}
._4_c00417{width:262.810630pt;}
._6_c00417{width:278.763446pt;}
._c_c00417{width:279.909752pt;}
._8_c00417{width:295.367186pt;}
._7_c00417{width:304.538675pt;}
._10_c00417{width:326.825576pt;}
._16_c00417{width:338.127225pt;}
._3_c00417{width:346.538770pt;}
._5_c00417{width:358.266866pt;}
._13_c00417{width:362.454254pt;}
._18_c00417{width:388.320865pt;}
._2_c00417{width:1037.266312pt;}
.fs2_c00417{font-size:28.069707pt;}
.fs1_c00417{font-size:40.672587pt;}
.fs0_c00417{font-size:60.722667pt;}
.fs4_c00417{font-size:70.462933pt;}
.fs3_c00417{font-size:100.822400pt;}
.y0_c00417{bottom:0.000000pt;}
.y18_c00417{bottom:19.575200pt;}
.y1e_c00417{bottom:19.575333pt;}
.y17_c00417{bottom:42.935067pt;}
.y1d_c00417{bottom:42.935200pt;}
.y16_c00417{bottom:66.294933pt;}
.y1c_c00417{bottom:66.296133pt;}
.y15_c00417{bottom:89.654800pt;}
.y1b_c00417{bottom:89.656000pt;}
.y14_c00417{bottom:113.014667pt;}
.y1a_c00417{bottom:113.015867pt;}
.y13_c00417{bottom:136.374533pt;}
.y19_c00417{bottom:136.374667pt;}
.y1f_c00417{bottom:138.614533pt;}
.y5_c00417{bottom:167.733200pt;}
.y12_c00417{bottom:186.613200pt;}
.y7_c00417{bottom:200.853200pt;}
.y8_c00417{bottom:238.933200pt;}
.y6_c00417{bottom:263.573200pt;}
.y9_c00417{bottom:277.013200pt;}
.ya_c00417{bottom:314.933200pt;}
.yb_c00417{bottom:353.013200pt;}
.yc_c00417{bottom:391.093200pt;}
.yd_c00417{bottom:429.173200pt;}
.ye_c00417{bottom:467.093200pt;}
.yf_c00417{bottom:505.173200pt;}
.y10_c00417{bottom:543.253200pt;}
.y11_c00417{bottom:581.173200pt;}
.y4_c00417{bottom:586.453200pt;}
.y3_c00417{bottom:596.533413pt;}
.y2_c00417{bottom:606.453200pt;}
.y1_c00417{bottom:628.373200pt;}
.y26_c00417{bottom:657.333200pt;}
.y23_c00417{bottom:667.572933pt;}
.y25_c00417{bottom:673.493200pt;}
.y22_c00417{bottom:690.613067pt;}
.y20_c00417{bottom:697.013200pt;}
.y24_c00417{bottom:706.293200pt;}
.y21_c00417{bottom:713.653200pt;}
.h3_c00417{height:29.610755pt;}
.h4_c00417{height:38.996047pt;}
.h2_c00417{height:44.207762pt;}
.h6_c00417{height:51.298942pt;}
.h5_c00417{height:73.401464pt;}
.h0_c00417{height:793.332933pt;}
.h1_c00417{height:793.333333pt;}
.w0_c00417{width:1122.666400pt;}
.w1_c00417{width:1122.666667pt;}
.x0_c00417{left:0.000000pt;}
.xa_c00417{left:24.147333pt;}
.x10_c00417{left:31.347333pt;}
.x14_c00417{left:34.227600pt;}
.x6_c00417{left:38.867733pt;}
.x9_c00417{left:46.867200pt;}
.x8_c00417{left:52.787467pt;}
.x7_c00417{left:58.707333pt;}
.x3_c00417{left:82.547591pt;}
.x4_c00417{left:164.788000pt;}
.x1_c00417{left:203.028000pt;}
.x2_c00417{left:255.508000pt;}
.x5_c00417{left:370.228000pt;}
.xd_c00417{left:428.946066pt;}
.xe_c00417{left:437.585655pt;}
.xc_c00417{left:444.305976pt;}
.xb_c00417{left:445.585664pt;}
.x12_c00417{left:504.468000pt;}
.x13_c00417{left:548.308000pt;}
.x11_c00417{left:744.146667pt;}
.xf_c00417{left:780.948000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7bc04f34cc0958e4ffe7334c.woff2')format("woff");}.ff1_c00418{font-family:ff1_c00418;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00418{transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);}
.m1_c00418{transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);}
.m4_c00418{transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);}
.m3_c00418{transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);}
.m0_c00418{transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);}
.v0_c00418{vertical-align:0.000000px;}
.v1_c00418{vertical-align:20.880600px;}
.ls1_c00418{letter-spacing:0.000000px;}
.ls0_c00418{letter-spacing:1.174340px;}
.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;}
}
.ws8_c00418{word-spacing:-31.532206px;}
.ws5_c00418{word-spacing:-13.894692px;}
.ws4_c00418{word-spacing:-12.720351px;}
.ws7_c00418{word-spacing:-8.778801px;}
.ws9_c00418{word-spacing:0.000000px;}
.ws6_c00418{word-spacing:83.472601px;}
.ws3_c00418{word-spacing:269.959261px;}
.ws1_c00418{word-spacing:1129.022707px;}
.ws0_c00418{word-spacing:1892.379401px;}
.ws2_c00418{word-spacing:4131.625069px;}
._a_c00418{margin-left:-1.174340px;}
._0_c00418{width:1.927205px;}
._1_c00418{width:3.578508px;}
._e_c00418{width:123.098455px;}
._17_c00418{width:135.002093px;}
._b_c00418{width:155.081320px;}
._11_c00418{width:156.097143px;}
._14_c00418{width:162.375998px;}
._d_c00418{width:182.391467px;}
._f_c00418{width:207.201036px;}
._15_c00418{width:220.640991px;}
._12_c00418{width:247.295292px;}
._9_c00418{width:294.223388px;}
._4_c00418{width:295.661959px;}
._6_c00418{width:313.608876px;}
._c_c00418{width:314.898471px;}
._8_c00418{width:332.288085px;}
._7_c00418{width:342.606009px;}
._10_c00418{width:367.678773px;}
._16_c00418{width:380.393128px;}
._3_c00418{width:389.856116px;}
._5_c00418{width:403.050224px;}
._13_c00418{width:407.761036px;}
._18_c00418{width:436.860973px;}
._2_c00418{width:1166.924601px;}
.fc1_c00418{color:transparent;}
.fc0_c00418{color:rgb(0,0,0);}
.fs2_c00418{font-size:31.578420px;}
.fs1_c00418{font-size:45.756660px;}
.fs0_c00418{font-size:68.313000px;}
.fs4_c00418{font-size:79.270800px;}
.fs3_c00418{font-size:113.425200px;}
.y0_c00418{bottom:0.000000px;}
.y18_c00418{bottom:22.022100px;}
.y1e_c00418{bottom:22.022250px;}
.y17_c00418{bottom:48.301950px;}
.y1d_c00418{bottom:48.302100px;}
.y16_c00418{bottom:74.581800px;}
.y1c_c00418{bottom:74.583150px;}
.y15_c00418{bottom:100.861650px;}
.y1b_c00418{bottom:100.863000px;}
.y14_c00418{bottom:127.141500px;}
.y1a_c00418{bottom:127.142850px;}
.y13_c00418{bottom:153.421350px;}
.y19_c00418{bottom:153.421500px;}
.y1f_c00418{bottom:155.941350px;}
.y5_c00418{bottom:188.699850px;}
.y12_c00418{bottom:209.939850px;}
.y7_c00418{bottom:225.959850px;}
.y8_c00418{bottom:268.799850px;}
.y6_c00418{bottom:296.519850px;}
.y9_c00418{bottom:311.639850px;}
.ya_c00418{bottom:354.299850px;}
.yb_c00418{bottom:397.139850px;}
.yc_c00418{bottom:439.979850px;}
.yd_c00418{bottom:482.819850px;}
.ye_c00418{bottom:525.479850px;}
.yf_c00418{bottom:568.319850px;}
.y10_c00418{bottom:611.159850px;}
.y11_c00418{bottom:653.819850px;}
.y4_c00418{bottom:659.759850px;}
.y3_c00418{bottom:671.100090px;}
.y2_c00418{bottom:682.259850px;}
.y1_c00418{bottom:706.919850px;}
.y26_c00418{bottom:739.499850px;}
.y23_c00418{bottom:751.019550px;}
.y25_c00418{bottom:757.679850px;}
.y22_c00418{bottom:776.939700px;}
.y20_c00418{bottom:784.139850px;}
.y24_c00418{bottom:794.579850px;}
.y21_c00418{bottom:802.859850px;}
.h3_c00418{height:33.312100px;}
.h4_c00418{height:43.870553px;}
.h2_c00418{height:49.733732px;}
.h6_c00418{height:57.711310px;}
.h5_c00418{height:82.576647px;}
.h0_c00418{height:892.499550px;}
.h1_c00418{height:892.500000px;}
.w0_c00418{width:1262.999700px;}
.w1_c00418{width:1263.000000px;}
.x0_c00418{left:0.000000px;}
.xa_c00418{left:27.165750px;}
.x10_c00418{left:35.265750px;}
.x14_c00418{left:38.506050px;}
.x6_c00418{left:43.726200px;}
.x9_c00418{left:52.725600px;}
.x8_c00418{left:59.385900px;}
.x7_c00418{left:66.045750px;}
.x3_c00418{left:92.866040px;}
.x4_c00418{left:185.386500px;}
.x1_c00418{left:228.406500px;}
.x2_c00418{left:287.446500px;}
.x5_c00418{left:416.506500px;}
.xd_c00418{left:482.564216px;}
.xe_c00418{left:492.284340px;}
.xb_c00418{left:493.544117px;}
.xc_c00418{left:499.844115px;}
.x12_c00418{left:567.526500px;}
.x13_c00418{left:616.846500px;}
.x11_c00418{left:837.165000px;}
.xf_c00418{left:878.566500px;}
@media print{
.v0_c00418{vertical-align:0.000000pt;}
.v1_c00418{vertical-align:18.560533pt;}
.ls1_c00418{letter-spacing:0.000000pt;}
.ls0_c00418{letter-spacing:1.043858pt;}
.ws8_c00418{word-spacing:-28.028627pt;}
.ws5_c00418{word-spacing:-12.350837pt;}
.ws4_c00418{word-spacing:-11.306979pt;}
.ws7_c00418{word-spacing:-7.803378pt;}
.ws9_c00418{word-spacing:0.000000pt;}
.ws6_c00418{word-spacing:74.197868pt;}
.ws3_c00418{word-spacing:239.963787pt;}
.ws1_c00418{word-spacing:1003.575740pt;}
.ws0_c00418{word-spacing:1682.115023pt;}
.ws2_c00418{word-spacing:3672.555617pt;}
._a_c00418{margin-left:-1.043858pt;}
._0_c00418{width:1.713071pt;}
._1_c00418{width:3.180896pt;}
._e_c00418{width:109.420849pt;}
._17_c00418{width:120.001860pt;}
._b_c00418{width:137.850063pt;}
._11_c00418{width:138.753016pt;}
._14_c00418{width:144.334220pt;}
._d_c00418{width:162.125749pt;}
._f_c00418{width:184.178698pt;}
._15_c00418{width:196.125326pt;}
._12_c00418{width:219.818038pt;}
._9_c00418{width:261.531900pt;}
._4_c00418{width:262.810630pt;}
._6_c00418{width:278.763446pt;}
._c_c00418{width:279.909752pt;}
._8_c00418{width:295.367186pt;}
._7_c00418{width:304.538675pt;}
._10_c00418{width:326.825576pt;}
._16_c00418{width:338.127225pt;}
._3_c00418{width:346.538770pt;}
._5_c00418{width:358.266866pt;}
._13_c00418{width:362.454254pt;}
._18_c00418{width:388.320865pt;}
._2_c00418{width:1037.266312pt;}
.fs2_c00418{font-size:28.069707pt;}
.fs1_c00418{font-size:40.672587pt;}
.fs0_c00418{font-size:60.722667pt;}
.fs4_c00418{font-size:70.462933pt;}
.fs3_c00418{font-size:100.822400pt;}
.y0_c00418{bottom:0.000000pt;}
.y18_c00418{bottom:19.575200pt;}
.y1e_c00418{bottom:19.575333pt;}
.y17_c00418{bottom:42.935067pt;}
.y1d_c00418{bottom:42.935200pt;}
.y16_c00418{bottom:66.294933pt;}
.y1c_c00418{bottom:66.296133pt;}
.y15_c00418{bottom:89.654800pt;}
.y1b_c00418{bottom:89.656000pt;}
.y14_c00418{bottom:113.014667pt;}
.y1a_c00418{bottom:113.015867pt;}
.y13_c00418{bottom:136.374533pt;}
.y19_c00418{bottom:136.374667pt;}
.y1f_c00418{bottom:138.614533pt;}
.y5_c00418{bottom:167.733200pt;}
.y12_c00418{bottom:186.613200pt;}
.y7_c00418{bottom:200.853200pt;}
.y8_c00418{bottom:238.933200pt;}
.y6_c00418{bottom:263.573200pt;}
.y9_c00418{bottom:277.013200pt;}
.ya_c00418{bottom:314.933200pt;}
.yb_c00418{bottom:353.013200pt;}
.yc_c00418{bottom:391.093200pt;}
.yd_c00418{bottom:429.173200pt;}
.ye_c00418{bottom:467.093200pt;}
.yf_c00418{bottom:505.173200pt;}
.y10_c00418{bottom:543.253200pt;}
.y11_c00418{bottom:581.173200pt;}
.y4_c00418{bottom:586.453200pt;}
.y3_c00418{bottom:596.533413pt;}
.y2_c00418{bottom:606.453200pt;}
.y1_c00418{bottom:628.373200pt;}
.y26_c00418{bottom:657.333200pt;}
.y23_c00418{bottom:667.572933pt;}
.y25_c00418{bottom:673.493200pt;}
.y22_c00418{bottom:690.613067pt;}
.y20_c00418{bottom:697.013200pt;}
.y24_c00418{bottom:706.293200pt;}
.y21_c00418{bottom:713.653200pt;}
.h3_c00418{height:29.610755pt;}
.h4_c00418{height:38.996047pt;}
.h2_c00418{height:44.207762pt;}
.h6_c00418{height:51.298942pt;}
.h5_c00418{height:73.401464pt;}
.h0_c00418{height:793.332933pt;}
.h1_c00418{height:793.333333pt;}
.w0_c00418{width:1122.666400pt;}
.w1_c00418{width:1122.666667pt;}
.x0_c00418{left:0.000000pt;}
.xa_c00418{left:24.147333pt;}
.x10_c00418{left:31.347333pt;}
.x14_c00418{left:34.227600pt;}
.x6_c00418{left:38.867733pt;}
.x9_c00418{left:46.867200pt;}
.x8_c00418{left:52.787467pt;}
.x7_c00418{left:58.707333pt;}
.x3_c00418{left:82.547591pt;}
.x4_c00418{left:164.788000pt;}
.x1_c00418{left:203.028000pt;}
.x2_c00418{left:255.508000pt;}
.x5_c00418{left:370.228000pt;}
.xd_c00418{left:428.945970pt;}
.xe_c00418{left:437.586080pt;}
.xb_c00418{left:438.705882pt;}
.xc_c00418{left:444.305880pt;}
.x12_c00418{left:504.468000pt;}
.x13_c00418{left:548.308000pt;}
.x11_c00418{left:744.146667pt;}
.xf_c00418{left:780.948000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b54ee903d7f8f9c5deabc843.woff2')format("woff");}.ff1_c00419{font-family:ff1_c00419;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00419{transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);}
.m1_c00419{transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);}
.m4_c00419{transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);}
.m3_c00419{transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);}
.m0_c00419{transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);}
.v0_c00419{vertical-align:0.000000px;}
.v1_c00419{vertical-align:20.880600px;}
.ls1_c00419{letter-spacing:0.000000px;}
.ls0_c00419{letter-spacing:1.174340px;}
.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;}
}
.ws8_c00419{word-spacing:-31.532206px;}
.ws5_c00419{word-spacing:-13.894692px;}
.ws4_c00419{word-spacing:-12.720351px;}
.ws7_c00419{word-spacing:-8.778801px;}
.ws9_c00419{word-spacing:0.000000px;}
.ws6_c00419{word-spacing:83.472601px;}
.ws3_c00419{word-spacing:269.959261px;}
.ws1_c00419{word-spacing:1129.022707px;}
.ws0_c00419{word-spacing:1892.379401px;}
.ws2_c00419{word-spacing:4131.625069px;}
._a_c00419{margin-left:-1.174340px;}
._0_c00419{width:1.927205px;}
._1_c00419{width:3.578508px;}
._e_c00419{width:123.098455px;}
._17_c00419{width:135.002093px;}
._b_c00419{width:155.081320px;}
._11_c00419{width:156.097143px;}
._14_c00419{width:162.375998px;}
._d_c00419{width:182.391467px;}
._f_c00419{width:207.201036px;}
._15_c00419{width:220.640991px;}
._12_c00419{width:247.295292px;}
._9_c00419{width:294.223388px;}
._4_c00419{width:295.661959px;}
._6_c00419{width:313.608876px;}
._c_c00419{width:314.898471px;}
._8_c00419{width:332.288085px;}
._7_c00419{width:342.606009px;}
._10_c00419{width:367.678773px;}
._16_c00419{width:380.393128px;}
._3_c00419{width:389.856116px;}
._5_c00419{width:403.050224px;}
._13_c00419{width:407.761036px;}
._18_c00419{width:436.860973px;}
._2_c00419{width:1166.924601px;}
.fc1_c00419{color:transparent;}
.fc0_c00419{color:rgb(0,0,0);}
.fs2_c00419{font-size:31.578420px;}
.fs1_c00419{font-size:45.756660px;}
.fs0_c00419{font-size:68.313000px;}
.fs4_c00419{font-size:79.270800px;}
.fs3_c00419{font-size:113.425200px;}
.y0_c00419{bottom:0.000000px;}
.y18_c00419{bottom:22.022100px;}
.y1e_c00419{bottom:22.022250px;}
.y17_c00419{bottom:48.301950px;}
.y1d_c00419{bottom:48.302100px;}
.y16_c00419{bottom:74.581800px;}
.y1c_c00419{bottom:74.583150px;}
.y15_c00419{bottom:100.861650px;}
.y1b_c00419{bottom:100.863000px;}
.y14_c00419{bottom:127.141500px;}
.y1a_c00419{bottom:127.142850px;}
.y13_c00419{bottom:153.421350px;}
.y19_c00419{bottom:153.421500px;}
.y1f_c00419{bottom:155.941350px;}
.y5_c00419{bottom:188.699850px;}
.y12_c00419{bottom:209.939850px;}
.y7_c00419{bottom:225.959850px;}
.y8_c00419{bottom:268.799850px;}
.y6_c00419{bottom:296.519850px;}
.y9_c00419{bottom:311.639850px;}
.ya_c00419{bottom:354.299850px;}
.yb_c00419{bottom:397.139850px;}
.yc_c00419{bottom:439.979850px;}
.yd_c00419{bottom:482.819850px;}
.ye_c00419{bottom:525.479850px;}
.yf_c00419{bottom:568.319850px;}
.y10_c00419{bottom:611.159850px;}
.y11_c00419{bottom:653.819850px;}
.y4_c00419{bottom:659.759850px;}
.y3_c00419{bottom:671.100090px;}
.y2_c00419{bottom:682.259850px;}
.y1_c00419{bottom:706.919850px;}
.y26_c00419{bottom:739.499850px;}
.y23_c00419{bottom:751.019550px;}
.y25_c00419{bottom:757.679850px;}
.y22_c00419{bottom:776.939700px;}
.y20_c00419{bottom:784.139850px;}
.y24_c00419{bottom:794.579850px;}
.y21_c00419{bottom:802.859850px;}
.h3_c00419{height:33.312100px;}
.h4_c00419{height:43.870553px;}
.h2_c00419{height:49.733732px;}
.h6_c00419{height:57.711310px;}
.h5_c00419{height:82.576647px;}
.h0_c00419{height:892.499550px;}
.h1_c00419{height:892.500000px;}
.w0_c00419{width:1262.999700px;}
.w1_c00419{width:1263.000000px;}
.x0_c00419{left:0.000000px;}
.xa_c00419{left:27.165750px;}
.x10_c00419{left:35.265750px;}
.x14_c00419{left:38.506050px;}
.x6_c00419{left:43.726200px;}
.x9_c00419{left:52.725600px;}
.x8_c00419{left:59.385900px;}
.x7_c00419{left:66.045750px;}
.x3_c00419{left:92.866040px;}
.x4_c00419{left:185.386500px;}
.x1_c00419{left:228.406500px;}
.x2_c00419{left:287.446500px;}
.x5_c00419{left:416.506500px;}
.xd_c00419{left:482.564325px;}
.xe_c00419{left:492.283862px;}
.xc_c00419{left:499.844223px;}
.xb_c00419{left:501.283872px;}
.x12_c00419{left:567.526500px;}
.x13_c00419{left:616.846500px;}
.x11_c00419{left:837.165000px;}
.xf_c00419{left:878.566500px;}
@media print{
.v0_c00419{vertical-align:0.000000pt;}
.v1_c00419{vertical-align:18.560533pt;}
.ls1_c00419{letter-spacing:0.000000pt;}
.ls0_c00419{letter-spacing:1.043858pt;}
.ws8_c00419{word-spacing:-28.028627pt;}
.ws5_c00419{word-spacing:-12.350837pt;}
.ws4_c00419{word-spacing:-11.306979pt;}
.ws7_c00419{word-spacing:-7.803378pt;}
.ws9_c00419{word-spacing:0.000000pt;}
.ws6_c00419{word-spacing:74.197868pt;}
.ws3_c00419{word-spacing:239.963787pt;}
.ws1_c00419{word-spacing:1003.575740pt;}
.ws0_c00419{word-spacing:1682.115023pt;}
.ws2_c00419{word-spacing:3672.555617pt;}
._a_c00419{margin-left:-1.043858pt;}
._0_c00419{width:1.713071pt;}
._1_c00419{width:3.180896pt;}
._e_c00419{width:109.420849pt;}
._17_c00419{width:120.001860pt;}
._b_c00419{width:137.850063pt;}
._11_c00419{width:138.753016pt;}
._14_c00419{width:144.334220pt;}
._d_c00419{width:162.125749pt;}
._f_c00419{width:184.178698pt;}
._15_c00419{width:196.125326pt;}
._12_c00419{width:219.818038pt;}
._9_c00419{width:261.531900pt;}
._4_c00419{width:262.810630pt;}
._6_c00419{width:278.763446pt;}
._c_c00419{width:279.909752pt;}
._8_c00419{width:295.367186pt;}
._7_c00419{width:304.538675pt;}
._10_c00419{width:326.825576pt;}
._16_c00419{width:338.127225pt;}
._3_c00419{width:346.538770pt;}
._5_c00419{width:358.266866pt;}
._13_c00419{width:362.454254pt;}
._18_c00419{width:388.320865pt;}
._2_c00419{width:1037.266312pt;}
.fs2_c00419{font-size:28.069707pt;}
.fs1_c00419{font-size:40.672587pt;}
.fs0_c00419{font-size:60.722667pt;}
.fs4_c00419{font-size:70.462933pt;}
.fs3_c00419{font-size:100.822400pt;}
.y0_c00419{bottom:0.000000pt;}
.y18_c00419{bottom:19.575200pt;}
.y1e_c00419{bottom:19.575333pt;}
.y17_c00419{bottom:42.935067pt;}
.y1d_c00419{bottom:42.935200pt;}
.y16_c00419{bottom:66.294933pt;}
.y1c_c00419{bottom:66.296133pt;}
.y15_c00419{bottom:89.654800pt;}
.y1b_c00419{bottom:89.656000pt;}
.y14_c00419{bottom:113.014667pt;}
.y1a_c00419{bottom:113.015867pt;}
.y13_c00419{bottom:136.374533pt;}
.y19_c00419{bottom:136.374667pt;}
.y1f_c00419{bottom:138.614533pt;}
.y5_c00419{bottom:167.733200pt;}
.y12_c00419{bottom:186.613200pt;}
.y7_c00419{bottom:200.853200pt;}
.y8_c00419{bottom:238.933200pt;}
.y6_c00419{bottom:263.573200pt;}
.y9_c00419{bottom:277.013200pt;}
.ya_c00419{bottom:314.933200pt;}
.yb_c00419{bottom:353.013200pt;}
.yc_c00419{bottom:391.093200pt;}
.yd_c00419{bottom:429.173200pt;}
.ye_c00419{bottom:467.093200pt;}
.yf_c00419{bottom:505.173200pt;}
.y10_c00419{bottom:543.253200pt;}
.y11_c00419{bottom:581.173200pt;}
.y4_c00419{bottom:586.453200pt;}
.y3_c00419{bottom:596.533413pt;}
.y2_c00419{bottom:606.453200pt;}
.y1_c00419{bottom:628.373200pt;}
.y26_c00419{bottom:657.333200pt;}
.y23_c00419{bottom:667.572933pt;}
.y25_c00419{bottom:673.493200pt;}
.y22_c00419{bottom:690.613067pt;}
.y20_c00419{bottom:697.013200pt;}
.y24_c00419{bottom:706.293200pt;}
.y21_c00419{bottom:713.653200pt;}
.h3_c00419{height:29.610755pt;}
.h4_c00419{height:38.996047pt;}
.h2_c00419{height:44.207762pt;}
.h6_c00419{height:51.298942pt;}
.h5_c00419{height:73.401464pt;}
.h0_c00419{height:793.332933pt;}
.h1_c00419{height:793.333333pt;}
.w0_c00419{width:1122.666400pt;}
.w1_c00419{width:1122.666667pt;}
.x0_c00419{left:0.000000pt;}
.xa_c00419{left:24.147333pt;}
.x10_c00419{left:31.347333pt;}
.x14_c00419{left:34.227600pt;}
.x6_c00419{left:38.867733pt;}
.x9_c00419{left:46.867200pt;}
.x8_c00419{left:52.787467pt;}
.x7_c00419{left:58.707333pt;}
.x3_c00419{left:82.547591pt;}
.x4_c00419{left:164.788000pt;}
.x1_c00419{left:203.028000pt;}
.x2_c00419{left:255.508000pt;}
.x5_c00419{left:370.228000pt;}
.xd_c00419{left:428.946066pt;}
.xe_c00419{left:437.585655pt;}
.xc_c00419{left:444.305976pt;}
.xb_c00419{left:445.585664pt;}
.x12_c00419{left:504.468000pt;}
.x13_c00419{left:548.308000pt;}
.x11_c00419{left:744.146667pt;}
.xf_c00419{left:780.948000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_771dadafd0fd8ff1704e9954.woff2')format("woff");}.ff1_c00420{font-family:ff1_c00420;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00420{transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);}
.m1_c00420{transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);}
.m4_c00420{transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);}
.m3_c00420{transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);}
.m0_c00420{transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);}
.v0_c00420{vertical-align:0.000000px;}
.v1_c00420{vertical-align:20.880600px;}
.ls1_c00420{letter-spacing:0.000000px;}
.ls0_c00420{letter-spacing:1.174340px;}
.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;}
}
.ws8_c00420{word-spacing:-31.532206px;}
.ws5_c00420{word-spacing:-13.894692px;}
.ws4_c00420{word-spacing:-12.720351px;}
.ws7_c00420{word-spacing:-8.778801px;}
.ws9_c00420{word-spacing:0.000000px;}
.ws6_c00420{word-spacing:83.472601px;}
.ws3_c00420{word-spacing:269.959261px;}
.ws1_c00420{word-spacing:1129.022707px;}
.ws0_c00420{word-spacing:1892.379401px;}
.ws2_c00420{word-spacing:4131.625069px;}
._a_c00420{margin-left:-1.174340px;}
._0_c00420{width:1.927205px;}
._1_c00420{width:3.578508px;}
._e_c00420{width:123.098455px;}
._17_c00420{width:135.002093px;}
._b_c00420{width:155.081320px;}
._11_c00420{width:156.097143px;}
._14_c00420{width:162.375998px;}
._d_c00420{width:182.391467px;}
._f_c00420{width:207.201036px;}
._15_c00420{width:220.640991px;}
._12_c00420{width:247.295292px;}
._9_c00420{width:294.223388px;}
._4_c00420{width:295.661959px;}
._6_c00420{width:313.608876px;}
._c_c00420{width:314.898471px;}
._8_c00420{width:332.288085px;}
._7_c00420{width:342.606009px;}
._10_c00420{width:367.678773px;}
._16_c00420{width:380.393128px;}
._3_c00420{width:389.856116px;}
._5_c00420{width:403.050224px;}
._13_c00420{width:407.761036px;}
._18_c00420{width:436.860973px;}
._2_c00420{width:1166.924601px;}
.fc1_c00420{color:transparent;}
.fc0_c00420{color:rgb(0,0,0);}
.fs2_c00420{font-size:31.578420px;}
.fs1_c00420{font-size:45.756660px;}
.fs0_c00420{font-size:68.313000px;}
.fs4_c00420{font-size:79.270800px;}
.fs3_c00420{font-size:113.425200px;}
.y0_c00420{bottom:0.000000px;}
.y18_c00420{bottom:22.022100px;}
.y1e_c00420{bottom:22.022250px;}
.y17_c00420{bottom:48.301950px;}
.y1d_c00420{bottom:48.302100px;}
.y16_c00420{bottom:74.581800px;}
.y1c_c00420{bottom:74.583150px;}
.y15_c00420{bottom:100.861650px;}
.y1b_c00420{bottom:100.863000px;}
.y14_c00420{bottom:127.141500px;}
.y1a_c00420{bottom:127.142850px;}
.y13_c00420{bottom:153.421350px;}
.y19_c00420{bottom:153.421500px;}
.y1f_c00420{bottom:155.941350px;}
.y5_c00420{bottom:188.699850px;}
.y12_c00420{bottom:209.939850px;}
.y7_c00420{bottom:225.959850px;}
.y8_c00420{bottom:268.799850px;}
.y6_c00420{bottom:296.519850px;}
.y9_c00420{bottom:311.639850px;}
.ya_c00420{bottom:354.299850px;}
.yb_c00420{bottom:397.139850px;}
.yc_c00420{bottom:439.979850px;}
.yd_c00420{bottom:482.819850px;}
.ye_c00420{bottom:525.479850px;}
.yf_c00420{bottom:568.319850px;}
.y10_c00420{bottom:611.159850px;}
.y11_c00420{bottom:653.819850px;}
.y4_c00420{bottom:659.759850px;}
.y3_c00420{bottom:671.100090px;}
.y2_c00420{bottom:682.259850px;}
.y1_c00420{bottom:706.919850px;}
.y26_c00420{bottom:739.499850px;}
.y23_c00420{bottom:751.019550px;}
.y25_c00420{bottom:757.679850px;}
.y22_c00420{bottom:776.939700px;}
.y20_c00420{bottom:784.139850px;}
.y24_c00420{bottom:794.579850px;}
.y21_c00420{bottom:802.859850px;}
.h3_c00420{height:33.312100px;}
.h4_c00420{height:43.870553px;}
.h2_c00420{height:49.733732px;}
.h6_c00420{height:57.711310px;}
.h5_c00420{height:82.576647px;}
.h0_c00420{height:892.499550px;}
.h1_c00420{height:892.500000px;}
.w0_c00420{width:1262.999700px;}
.w1_c00420{width:1263.000000px;}
.x0_c00420{left:0.000000px;}
.xa_c00420{left:27.165750px;}
.x10_c00420{left:35.265750px;}
.x14_c00420{left:38.506050px;}
.x6_c00420{left:43.726200px;}
.x9_c00420{left:52.725600px;}
.x8_c00420{left:59.385900px;}
.x7_c00420{left:66.045750px;}
.x3_c00420{left:92.866040px;}
.x4_c00420{left:185.386500px;}
.x1_c00420{left:228.406500px;}
.x2_c00420{left:287.446500px;}
.x5_c00420{left:416.506500px;}
.xd_c00420{left:482.564216px;}
.xe_c00420{left:492.284340px;}
.xb_c00420{left:493.544117px;}
.xc_c00420{left:499.844115px;}
.x12_c00420{left:567.526500px;}
.x13_c00420{left:616.846500px;}
.x11_c00420{left:837.165000px;}
.xf_c00420{left:878.566500px;}
@media print{
.v0_c00420{vertical-align:0.000000pt;}
.v1_c00420{vertical-align:18.560533pt;}
.ls1_c00420{letter-spacing:0.000000pt;}
.ls0_c00420{letter-spacing:1.043858pt;}
.ws8_c00420{word-spacing:-28.028627pt;}
.ws5_c00420{word-spacing:-12.350837pt;}
.ws4_c00420{word-spacing:-11.306979pt;}
.ws7_c00420{word-spacing:-7.803378pt;}
.ws9_c00420{word-spacing:0.000000pt;}
.ws6_c00420{word-spacing:74.197868pt;}
.ws3_c00420{word-spacing:239.963787pt;}
.ws1_c00420{word-spacing:1003.575740pt;}
.ws0_c00420{word-spacing:1682.115023pt;}
.ws2_c00420{word-spacing:3672.555617pt;}
._a_c00420{margin-left:-1.043858pt;}
._0_c00420{width:1.713071pt;}
._1_c00420{width:3.180896pt;}
._e_c00420{width:109.420849pt;}
._17_c00420{width:120.001860pt;}
._b_c00420{width:137.850063pt;}
._11_c00420{width:138.753016pt;}
._14_c00420{width:144.334220pt;}
._d_c00420{width:162.125749pt;}
._f_c00420{width:184.178698pt;}
._15_c00420{width:196.125326pt;}
._12_c00420{width:219.818038pt;}
._9_c00420{width:261.531900pt;}
._4_c00420{width:262.810630pt;}
._6_c00420{width:278.763446pt;}
._c_c00420{width:279.909752pt;}
._8_c00420{width:295.367186pt;}
._7_c00420{width:304.538675pt;}
._10_c00420{width:326.825576pt;}
._16_c00420{width:338.127225pt;}
._3_c00420{width:346.538770pt;}
._5_c00420{width:358.266866pt;}
._13_c00420{width:362.454254pt;}
._18_c00420{width:388.320865pt;}
._2_c00420{width:1037.266312pt;}
.fs2_c00420{font-size:28.069707pt;}
.fs1_c00420{font-size:40.672587pt;}
.fs0_c00420{font-size:60.722667pt;}
.fs4_c00420{font-size:70.462933pt;}
.fs3_c00420{font-size:100.822400pt;}
.y0_c00420{bottom:0.000000pt;}
.y18_c00420{bottom:19.575200pt;}
.y1e_c00420{bottom:19.575333pt;}
.y17_c00420{bottom:42.935067pt;}
.y1d_c00420{bottom:42.935200pt;}
.y16_c00420{bottom:66.294933pt;}
.y1c_c00420{bottom:66.296133pt;}
.y15_c00420{bottom:89.654800pt;}
.y1b_c00420{bottom:89.656000pt;}
.y14_c00420{bottom:113.014667pt;}
.y1a_c00420{bottom:113.015867pt;}
.y13_c00420{bottom:136.374533pt;}
.y19_c00420{bottom:136.374667pt;}
.y1f_c00420{bottom:138.614533pt;}
.y5_c00420{bottom:167.733200pt;}
.y12_c00420{bottom:186.613200pt;}
.y7_c00420{bottom:200.853200pt;}
.y8_c00420{bottom:238.933200pt;}
.y6_c00420{bottom:263.573200pt;}
.y9_c00420{bottom:277.013200pt;}
.ya_c00420{bottom:314.933200pt;}
.yb_c00420{bottom:353.013200pt;}
.yc_c00420{bottom:391.093200pt;}
.yd_c00420{bottom:429.173200pt;}
.ye_c00420{bottom:467.093200pt;}
.yf_c00420{bottom:505.173200pt;}
.y10_c00420{bottom:543.253200pt;}
.y11_c00420{bottom:581.173200pt;}
.y4_c00420{bottom:586.453200pt;}
.y3_c00420{bottom:596.533413pt;}
.y2_c00420{bottom:606.453200pt;}
.y1_c00420{bottom:628.373200pt;}
.y26_c00420{bottom:657.333200pt;}
.y23_c00420{bottom:667.572933pt;}
.y25_c00420{bottom:673.493200pt;}
.y22_c00420{bottom:690.613067pt;}
.y20_c00420{bottom:697.013200pt;}
.y24_c00420{bottom:706.293200pt;}
.y21_c00420{bottom:713.653200pt;}
.h3_c00420{height:29.610755pt;}
.h4_c00420{height:38.996047pt;}
.h2_c00420{height:44.207762pt;}
.h6_c00420{height:51.298942pt;}
.h5_c00420{height:73.401464pt;}
.h0_c00420{height:793.332933pt;}
.h1_c00420{height:793.333333pt;}
.w0_c00420{width:1122.666400pt;}
.w1_c00420{width:1122.666667pt;}
.x0_c00420{left:0.000000pt;}
.xa_c00420{left:24.147333pt;}
.x10_c00420{left:31.347333pt;}
.x14_c00420{left:34.227600pt;}
.x6_c00420{left:38.867733pt;}
.x9_c00420{left:46.867200pt;}
.x8_c00420{left:52.787467pt;}
.x7_c00420{left:58.707333pt;}
.x3_c00420{left:82.547591pt;}
.x4_c00420{left:164.788000pt;}
.x1_c00420{left:203.028000pt;}
.x2_c00420{left:255.508000pt;}
.x5_c00420{left:370.228000pt;}
.xd_c00420{left:428.945970pt;}
.xe_c00420{left:437.586080pt;}
.xb_c00420{left:438.705882pt;}
.xc_c00420{left:444.305880pt;}
.x12_c00420{left:504.468000pt;}
.x13_c00420{left:548.308000pt;}
.x11_c00420{left:744.146667pt;}
.xf_c00420{left:780.948000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_dbbf08a4e302fd3ab53d70ae.woff2')format("woff");}.ff1_c00421{font-family:ff1_c00421;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00421{transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);}
.m1_c00421{transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);}
.m4_c00421{transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);}
.m3_c00421{transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);}
.m0_c00421{transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);}
.v0_c00421{vertical-align:0.000000px;}
.ls1_c00421{letter-spacing:0.000000px;}
.ls0_c00421{letter-spacing:1.174340px;}
.sc__c00421{text-shadow:none;}
.sc0_c00421{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00421{-webkit-text-stroke:0px transparent;}
.sc0_c00421{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00421{word-spacing:-31.532206px;}
.ws5_c00421{word-spacing:-13.894692px;}
.ws4_c00421{word-spacing:-12.720351px;}
.ws8_c00421{word-spacing:0.000000px;}
.ws6_c00421{word-spacing:83.472601px;}
.ws3_c00421{word-spacing:269.959261px;}
.ws1_c00421{word-spacing:1129.022707px;}
.ws0_c00421{word-spacing:1892.379401px;}
.ws2_c00421{word-spacing:4131.625069px;}
._a_c00421{margin-left:-1.174340px;}
._0_c00421{width:1.927205px;}
._1_c00421{width:3.578508px;}
._e_c00421{width:123.098455px;}
._17_c00421{width:135.002093px;}
._b_c00421{width:155.081320px;}
._11_c00421{width:156.097143px;}
._14_c00421{width:162.375998px;}
._d_c00421{width:182.391467px;}
._f_c00421{width:207.201036px;}
._15_c00421{width:220.640991px;}
._12_c00421{width:247.295292px;}
._9_c00421{width:294.223388px;}
._4_c00421{width:295.661959px;}
._6_c00421{width:313.608876px;}
._c_c00421{width:314.898471px;}
._8_c00421{width:332.288085px;}
._7_c00421{width:342.606009px;}
._10_c00421{width:367.678773px;}
._16_c00421{width:380.393128px;}
._3_c00421{width:389.856116px;}
._5_c00421{width:403.050224px;}
._13_c00421{width:407.761036px;}
._18_c00421{width:436.860973px;}
._2_c00421{width:1166.924601px;}
.fc1_c00421{color:transparent;}
.fc0_c00421{color:rgb(0,0,0);}
.fs1_c00421{font-size:45.756660px;}
.fs0_c00421{font-size:68.313000px;}
.fs3_c00421{font-size:79.270800px;}
.fs2_c00421{font-size:113.425200px;}
.y0_c00421{bottom:0.000000px;}
.y18_c00421{bottom:22.022100px;}
.y1e_c00421{bottom:22.022250px;}
.y17_c00421{bottom:48.301950px;}
.y1d_c00421{bottom:48.302100px;}
.y16_c00421{bottom:74.581800px;}
.y1c_c00421{bottom:74.583150px;}
.y15_c00421{bottom:100.861650px;}
.y1b_c00421{bottom:100.863000px;}
.y14_c00421{bottom:127.141500px;}
.y1a_c00421{bottom:127.142850px;}
.y13_c00421{bottom:153.421350px;}
.y19_c00421{bottom:153.421500px;}
.y1f_c00421{bottom:155.941350px;}
.y5_c00421{bottom:188.699850px;}
.y12_c00421{bottom:209.939850px;}
.y7_c00421{bottom:225.959850px;}
.y8_c00421{bottom:268.799850px;}
.y6_c00421{bottom:296.519850px;}
.y9_c00421{bottom:311.639850px;}
.ya_c00421{bottom:354.299850px;}
.yb_c00421{bottom:397.139850px;}
.yc_c00421{bottom:439.979850px;}
.yd_c00421{bottom:482.819850px;}
.ye_c00421{bottom:525.479850px;}
.yf_c00421{bottom:568.319850px;}
.y10_c00421{bottom:611.159850px;}
.y11_c00421{bottom:653.819850px;}
.y4_c00421{bottom:659.759850px;}
.y3_c00421{bottom:671.100090px;}
.y2_c00421{bottom:682.259850px;}
.y1_c00421{bottom:706.919850px;}
.y26_c00421{bottom:739.499850px;}
.y23_c00421{bottom:751.019550px;}
.y25_c00421{bottom:757.679850px;}
.y22_c00421{bottom:776.939700px;}
.y20_c00421{bottom:784.139850px;}
.y24_c00421{bottom:794.579850px;}
.y21_c00421{bottom:802.859850px;}
.h3_c00421{height:33.312100px;}
.h2_c00421{height:49.733732px;}
.h5_c00421{height:57.711310px;}
.h4_c00421{height:82.576647px;}
.h0_c00421{height:892.499550px;}
.h1_c00421{height:892.500000px;}
.w0_c00421{width:1262.999700px;}
.w1_c00421{width:1263.000000px;}
.x0_c00421{left:0.000000px;}
.xa_c00421{left:27.165750px;}
.x11_c00421{left:35.265750px;}
.x15_c00421{left:38.506050px;}
.x6_c00421{left:43.726200px;}
.x9_c00421{left:52.725600px;}
.x8_c00421{left:59.385900px;}
.x7_c00421{left:66.045750px;}
.x3_c00421{left:92.866040px;}
.x4_c00421{left:185.386500px;}
.x1_c00421{left:228.406500px;}
.x2_c00421{left:287.446500px;}
.x5_c00421{left:416.506500px;}
.xf_c00421{left:479.326172px;}
.xb_c00421{left:492.286426px;}
.xd_c00421{left:499.846231px;}
.xe_c00421{left:512.446228px;}
.xc_c00421{left:516.226085px;}
.x13_c00421{left:567.526500px;}
.x14_c00421{left:616.846500px;}
.x12_c00421{left:837.165000px;}
.x10_c00421{left:878.566500px;}
@media print{
.v0_c00421{vertical-align:0.000000pt;}
.ls1_c00421{letter-spacing:0.000000pt;}
.ls0_c00421{letter-spacing:1.043858pt;}
.ws7_c00421{word-spacing:-28.028627pt;}
.ws5_c00421{word-spacing:-12.350837pt;}
.ws4_c00421{word-spacing:-11.306979pt;}
.ws8_c00421{word-spacing:0.000000pt;}
.ws6_c00421{word-spacing:74.197868pt;}
.ws3_c00421{word-spacing:239.963787pt;}
.ws1_c00421{word-spacing:1003.575740pt;}
.ws0_c00421{word-spacing:1682.115023pt;}
.ws2_c00421{word-spacing:3672.555617pt;}
._a_c00421{margin-left:-1.043858pt;}
._0_c00421{width:1.713071pt;}
._1_c00421{width:3.180896pt;}
._e_c00421{width:109.420849pt;}
._17_c00421{width:120.001860pt;}
._b_c00421{width:137.850063pt;}
._11_c00421{width:138.753016pt;}
._14_c00421{width:144.334220pt;}
._d_c00421{width:162.125749pt;}
._f_c00421{width:184.178698pt;}
._15_c00421{width:196.125326pt;}
._12_c00421{width:219.818038pt;}
._9_c00421{width:261.531900pt;}
._4_c00421{width:262.810630pt;}
._6_c00421{width:278.763446pt;}
._c_c00421{width:279.909752pt;}
._8_c00421{width:295.367186pt;}
._7_c00421{width:304.538675pt;}
._10_c00421{width:326.825576pt;}
._16_c00421{width:338.127225pt;}
._3_c00421{width:346.538770pt;}
._5_c00421{width:358.266866pt;}
._13_c00421{width:362.454254pt;}
._18_c00421{width:388.320865pt;}
._2_c00421{width:1037.266312pt;}
.fs1_c00421{font-size:40.672587pt;}
.fs0_c00421{font-size:60.722667pt;}
.fs3_c00421{font-size:70.462933pt;}
.fs2_c00421{font-size:100.822400pt;}
.y0_c00421{bottom:0.000000pt;}
.y18_c00421{bottom:19.575200pt;}
.y1e_c00421{bottom:19.575333pt;}
.y17_c00421{bottom:42.935067pt;}
.y1d_c00421{bottom:42.935200pt;}
.y16_c00421{bottom:66.294933pt;}
.y1c_c00421{bottom:66.296133pt;}
.y15_c00421{bottom:89.654800pt;}
.y1b_c00421{bottom:89.656000pt;}
.y14_c00421{bottom:113.014667pt;}
.y1a_c00421{bottom:113.015867pt;}
.y13_c00421{bottom:136.374533pt;}
.y19_c00421{bottom:136.374667pt;}
.y1f_c00421{bottom:138.614533pt;}
.y5_c00421{bottom:167.733200pt;}
.y12_c00421{bottom:186.613200pt;}
.y7_c00421{bottom:200.853200pt;}
.y8_c00421{bottom:238.933200pt;}
.y6_c00421{bottom:263.573200pt;}
.y9_c00421{bottom:277.013200pt;}
.ya_c00421{bottom:314.933200pt;}
.yb_c00421{bottom:353.013200pt;}
.yc_c00421{bottom:391.093200pt;}
.yd_c00421{bottom:429.173200pt;}
.ye_c00421{bottom:467.093200pt;}
.yf_c00421{bottom:505.173200pt;}
.y10_c00421{bottom:543.253200pt;}
.y11_c00421{bottom:581.173200pt;}
.y4_c00421{bottom:586.453200pt;}
.y3_c00421{bottom:596.533413pt;}
.y2_c00421{bottom:606.453200pt;}
.y1_c00421{bottom:628.373200pt;}
.y26_c00421{bottom:657.333200pt;}
.y23_c00421{bottom:667.572933pt;}
.y25_c00421{bottom:673.493200pt;}
.y22_c00421{bottom:690.613067pt;}
.y20_c00421{bottom:697.013200pt;}
.y24_c00421{bottom:706.293200pt;}
.y21_c00421{bottom:713.653200pt;}
.h3_c00421{height:29.610755pt;}
.h2_c00421{height:44.207762pt;}
.h5_c00421{height:51.298942pt;}
.h4_c00421{height:73.401464pt;}
.h0_c00421{height:793.332933pt;}
.h1_c00421{height:793.333333pt;}
.w0_c00421{width:1122.666400pt;}
.w1_c00421{width:1122.666667pt;}
.x0_c00421{left:0.000000pt;}
.xa_c00421{left:24.147333pt;}
.x11_c00421{left:31.347333pt;}
.x15_c00421{left:34.227600pt;}
.x6_c00421{left:38.867733pt;}
.x9_c00421{left:46.867200pt;}
.x8_c00421{left:52.787467pt;}
.x7_c00421{left:58.707333pt;}
.x3_c00421{left:82.547591pt;}
.x4_c00421{left:164.788000pt;}
.x1_c00421{left:203.028000pt;}
.x2_c00421{left:255.508000pt;}
.x5_c00421{left:370.228000pt;}
.xf_c00421{left:426.067708pt;}
.xb_c00421{left:437.587934pt;}
.xd_c00421{left:444.307761pt;}
.xe_c00421{left:455.507758pt;}
.xc_c00421{left:458.867631pt;}
.x13_c00421{left:504.468000pt;}
.x14_c00421{left:548.308000pt;}
.x12_c00421{left:744.146667pt;}
.x10_c00421{left:780.948000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bab5cb5dbfa47064d7b2d8c6.woff2')format("woff");}.ff1_c00422{font-family:ff1_c00422;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00422{transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);}
.m1_c00422{transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);}
.m4_c00422{transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);}
.m3_c00422{transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);}
.m0_c00422{transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);}
.v0_c00422{vertical-align:0.000000px;}
.v1_c00422{vertical-align:20.880600px;}
.ls1_c00422{letter-spacing:0.000000px;}
.ls0_c00422{letter-spacing:1.174340px;}
.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;}
}
.ws8_c00422{word-spacing:-31.532206px;}
.ws5_c00422{word-spacing:-13.894692px;}
.ws4_c00422{word-spacing:-12.720351px;}
.ws7_c00422{word-spacing:-8.778801px;}
.ws9_c00422{word-spacing:0.000000px;}
.ws6_c00422{word-spacing:83.472601px;}
.ws3_c00422{word-spacing:269.959261px;}
.ws1_c00422{word-spacing:1129.022707px;}
.ws0_c00422{word-spacing:1892.379401px;}
.ws2_c00422{word-spacing:4131.625069px;}
._a_c00422{margin-left:-1.174340px;}
._0_c00422{width:1.927205px;}
._1_c00422{width:3.578508px;}
._e_c00422{width:123.098455px;}
._17_c00422{width:135.002093px;}
._b_c00422{width:155.081320px;}
._11_c00422{width:156.097143px;}
._14_c00422{width:162.375998px;}
._d_c00422{width:182.391467px;}
._f_c00422{width:207.201036px;}
._15_c00422{width:220.640991px;}
._12_c00422{width:247.295292px;}
._9_c00422{width:294.223388px;}
._4_c00422{width:295.661959px;}
._6_c00422{width:313.608876px;}
._c_c00422{width:314.898471px;}
._8_c00422{width:332.288085px;}
._7_c00422{width:342.606009px;}
._10_c00422{width:367.678773px;}
._16_c00422{width:380.393128px;}
._3_c00422{width:389.856116px;}
._5_c00422{width:403.050224px;}
._13_c00422{width:407.761036px;}
._18_c00422{width:436.860973px;}
._2_c00422{width:1166.924601px;}
.fc1_c00422{color:transparent;}
.fc0_c00422{color:rgb(0,0,0);}
.fs2_c00422{font-size:31.578420px;}
.fs1_c00422{font-size:45.756660px;}
.fs0_c00422{font-size:68.313000px;}
.fs4_c00422{font-size:79.270800px;}
.fs3_c00422{font-size:113.425200px;}
.y0_c00422{bottom:0.000000px;}
.y18_c00422{bottom:22.022100px;}
.y1e_c00422{bottom:22.022250px;}
.y17_c00422{bottom:48.301950px;}
.y1d_c00422{bottom:48.302100px;}
.y16_c00422{bottom:74.581800px;}
.y1c_c00422{bottom:74.583150px;}
.y15_c00422{bottom:100.861650px;}
.y1b_c00422{bottom:100.863000px;}
.y14_c00422{bottom:127.141500px;}
.y1a_c00422{bottom:127.142850px;}
.y13_c00422{bottom:153.421350px;}
.y19_c00422{bottom:153.421500px;}
.y1f_c00422{bottom:155.941350px;}
.y5_c00422{bottom:188.699850px;}
.y12_c00422{bottom:209.939850px;}
.y7_c00422{bottom:225.959850px;}
.y8_c00422{bottom:268.799850px;}
.y6_c00422{bottom:296.519850px;}
.y9_c00422{bottom:311.639850px;}
.ya_c00422{bottom:354.299850px;}
.yb_c00422{bottom:397.139850px;}
.yc_c00422{bottom:439.979850px;}
.yd_c00422{bottom:482.819850px;}
.ye_c00422{bottom:525.479850px;}
.yf_c00422{bottom:568.319850px;}
.y10_c00422{bottom:611.159850px;}
.y11_c00422{bottom:653.819850px;}
.y4_c00422{bottom:659.759850px;}
.y3_c00422{bottom:671.100090px;}
.y2_c00422{bottom:682.259850px;}
.y1_c00422{bottom:706.919850px;}
.y26_c00422{bottom:739.499850px;}
.y23_c00422{bottom:751.019550px;}
.y25_c00422{bottom:757.679850px;}
.y22_c00422{bottom:776.939700px;}
.y20_c00422{bottom:784.139850px;}
.y24_c00422{bottom:794.579850px;}
.y21_c00422{bottom:802.859850px;}
.h3_c00422{height:33.312100px;}
.h4_c00422{height:43.870553px;}
.h2_c00422{height:49.733732px;}
.h6_c00422{height:57.711310px;}
.h5_c00422{height:82.576647px;}
.h0_c00422{height:892.499550px;}
.h1_c00422{height:892.500000px;}
.w0_c00422{width:1262.999700px;}
.w1_c00422{width:1263.000000px;}
.x0_c00422{left:0.000000px;}
.xa_c00422{left:27.165750px;}
.x10_c00422{left:35.265750px;}
.x14_c00422{left:38.506050px;}
.x6_c00422{left:43.726200px;}
.x9_c00422{left:52.725600px;}
.x8_c00422{left:59.385900px;}
.x7_c00422{left:66.045750px;}
.x3_c00422{left:92.866040px;}
.x4_c00422{left:185.386500px;}
.x1_c00422{left:228.406500px;}
.x2_c00422{left:287.446500px;}
.x5_c00422{left:416.506500px;}
.xd_c00422{left:482.564325px;}
.xe_c00422{left:492.283862px;}
.xc_c00422{left:499.844223px;}
.xb_c00422{left:501.283872px;}
.x12_c00422{left:567.526500px;}
.x13_c00422{left:616.846500px;}
.x11_c00422{left:837.165000px;}
.xf_c00422{left:878.566500px;}
@media print{
.v0_c00422{vertical-align:0.000000pt;}
.v1_c00422{vertical-align:18.560533pt;}
.ls1_c00422{letter-spacing:0.000000pt;}
.ls0_c00422{letter-spacing:1.043858pt;}
.ws8_c00422{word-spacing:-28.028627pt;}
.ws5_c00422{word-spacing:-12.350837pt;}
.ws4_c00422{word-spacing:-11.306979pt;}
.ws7_c00422{word-spacing:-7.803378pt;}
.ws9_c00422{word-spacing:0.000000pt;}
.ws6_c00422{word-spacing:74.197868pt;}
.ws3_c00422{word-spacing:239.963787pt;}
.ws1_c00422{word-spacing:1003.575740pt;}
.ws0_c00422{word-spacing:1682.115023pt;}
.ws2_c00422{word-spacing:3672.555617pt;}
._a_c00422{margin-left:-1.043858pt;}
._0_c00422{width:1.713071pt;}
._1_c00422{width:3.180896pt;}
._e_c00422{width:109.420849pt;}
._17_c00422{width:120.001860pt;}
._b_c00422{width:137.850063pt;}
._11_c00422{width:138.753016pt;}
._14_c00422{width:144.334220pt;}
._d_c00422{width:162.125749pt;}
._f_c00422{width:184.178698pt;}
._15_c00422{width:196.125326pt;}
._12_c00422{width:219.818038pt;}
._9_c00422{width:261.531900pt;}
._4_c00422{width:262.810630pt;}
._6_c00422{width:278.763446pt;}
._c_c00422{width:279.909752pt;}
._8_c00422{width:295.367186pt;}
._7_c00422{width:304.538675pt;}
._10_c00422{width:326.825576pt;}
._16_c00422{width:338.127225pt;}
._3_c00422{width:346.538770pt;}
._5_c00422{width:358.266866pt;}
._13_c00422{width:362.454254pt;}
._18_c00422{width:388.320865pt;}
._2_c00422{width:1037.266312pt;}
.fs2_c00422{font-size:28.069707pt;}
.fs1_c00422{font-size:40.672587pt;}
.fs0_c00422{font-size:60.722667pt;}
.fs4_c00422{font-size:70.462933pt;}
.fs3_c00422{font-size:100.822400pt;}
.y0_c00422{bottom:0.000000pt;}
.y18_c00422{bottom:19.575200pt;}
.y1e_c00422{bottom:19.575333pt;}
.y17_c00422{bottom:42.935067pt;}
.y1d_c00422{bottom:42.935200pt;}
.y16_c00422{bottom:66.294933pt;}
.y1c_c00422{bottom:66.296133pt;}
.y15_c00422{bottom:89.654800pt;}
.y1b_c00422{bottom:89.656000pt;}
.y14_c00422{bottom:113.014667pt;}
.y1a_c00422{bottom:113.015867pt;}
.y13_c00422{bottom:136.374533pt;}
.y19_c00422{bottom:136.374667pt;}
.y1f_c00422{bottom:138.614533pt;}
.y5_c00422{bottom:167.733200pt;}
.y12_c00422{bottom:186.613200pt;}
.y7_c00422{bottom:200.853200pt;}
.y8_c00422{bottom:238.933200pt;}
.y6_c00422{bottom:263.573200pt;}
.y9_c00422{bottom:277.013200pt;}
.ya_c00422{bottom:314.933200pt;}
.yb_c00422{bottom:353.013200pt;}
.yc_c00422{bottom:391.093200pt;}
.yd_c00422{bottom:429.173200pt;}
.ye_c00422{bottom:467.093200pt;}
.yf_c00422{bottom:505.173200pt;}
.y10_c00422{bottom:543.253200pt;}
.y11_c00422{bottom:581.173200pt;}
.y4_c00422{bottom:586.453200pt;}
.y3_c00422{bottom:596.533413pt;}
.y2_c00422{bottom:606.453200pt;}
.y1_c00422{bottom:628.373200pt;}
.y26_c00422{bottom:657.333200pt;}
.y23_c00422{bottom:667.572933pt;}
.y25_c00422{bottom:673.493200pt;}
.y22_c00422{bottom:690.613067pt;}
.y20_c00422{bottom:697.013200pt;}
.y24_c00422{bottom:706.293200pt;}
.y21_c00422{bottom:713.653200pt;}
.h3_c00422{height:29.610755pt;}
.h4_c00422{height:38.996047pt;}
.h2_c00422{height:44.207762pt;}
.h6_c00422{height:51.298942pt;}
.h5_c00422{height:73.401464pt;}
.h0_c00422{height:793.332933pt;}
.h1_c00422{height:793.333333pt;}
.w0_c00422{width:1122.666400pt;}
.w1_c00422{width:1122.666667pt;}
.x0_c00422{left:0.000000pt;}
.xa_c00422{left:24.147333pt;}
.x10_c00422{left:31.347333pt;}
.x14_c00422{left:34.227600pt;}
.x6_c00422{left:38.867733pt;}
.x9_c00422{left:46.867200pt;}
.x8_c00422{left:52.787467pt;}
.x7_c00422{left:58.707333pt;}
.x3_c00422{left:82.547591pt;}
.x4_c00422{left:164.788000pt;}
.x1_c00422{left:203.028000pt;}
.x2_c00422{left:255.508000pt;}
.x5_c00422{left:370.228000pt;}
.xd_c00422{left:428.946066pt;}
.xe_c00422{left:437.585655pt;}
.xc_c00422{left:444.305976pt;}
.xb_c00422{left:445.585664pt;}
.x12_c00422{left:504.468000pt;}
.x13_c00422{left:548.308000pt;}
.x11_c00422{left:744.146667pt;}
.xf_c00422{left:780.948000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4abd0d80c1b62e50dd14cb6d.woff2')format("woff");}.ff1_c00423{font-family:ff1_c00423;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00423{transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);}
.m1_c00423{transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);}
.m4_c00423{transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);}
.m3_c00423{transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);}
.m0_c00423{transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);}
.v0_c00423{vertical-align:0.000000px;}
.ls1_c00423{letter-spacing:0.000000px;}
.ls0_c00423{letter-spacing:1.174340px;}
.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;}
}
.ws7_c00423{word-spacing:-31.532206px;}
.ws5_c00423{word-spacing:-13.894692px;}
.ws4_c00423{word-spacing:-12.720351px;}
.ws8_c00423{word-spacing:0.000000px;}
.ws6_c00423{word-spacing:83.472601px;}
.ws3_c00423{word-spacing:269.959261px;}
.ws1_c00423{word-spacing:1129.022707px;}
.ws0_c00423{word-spacing:1892.379401px;}
.ws2_c00423{word-spacing:4131.625069px;}
._a_c00423{margin-left:-1.174340px;}
._0_c00423{width:1.927205px;}
._1_c00423{width:3.578508px;}
._e_c00423{width:123.098455px;}
._17_c00423{width:135.002093px;}
._b_c00423{width:155.081320px;}
._11_c00423{width:156.097143px;}
._14_c00423{width:162.375998px;}
._d_c00423{width:182.391467px;}
._f_c00423{width:207.201036px;}
._15_c00423{width:220.640991px;}
._12_c00423{width:247.295292px;}
._9_c00423{width:294.223388px;}
._4_c00423{width:295.661959px;}
._6_c00423{width:313.608876px;}
._c_c00423{width:314.898471px;}
._8_c00423{width:332.288085px;}
._7_c00423{width:342.606009px;}
._10_c00423{width:367.678773px;}
._16_c00423{width:380.393128px;}
._3_c00423{width:389.856116px;}
._5_c00423{width:403.050224px;}
._13_c00423{width:407.761036px;}
._18_c00423{width:436.860973px;}
._2_c00423{width:1166.924601px;}
.fc1_c00423{color:transparent;}
.fc0_c00423{color:rgb(0,0,0);}
.fs1_c00423{font-size:45.756660px;}
.fs0_c00423{font-size:68.313000px;}
.fs3_c00423{font-size:79.270800px;}
.fs2_c00423{font-size:113.425200px;}
.y0_c00423{bottom:0.000000px;}
.y18_c00423{bottom:22.022100px;}
.y1e_c00423{bottom:22.022250px;}
.y17_c00423{bottom:48.301950px;}
.y1d_c00423{bottom:48.302100px;}
.y16_c00423{bottom:74.581800px;}
.y1c_c00423{bottom:74.583150px;}
.y15_c00423{bottom:100.861650px;}
.y1b_c00423{bottom:100.863000px;}
.y14_c00423{bottom:127.141500px;}
.y1a_c00423{bottom:127.142850px;}
.y13_c00423{bottom:153.421350px;}
.y19_c00423{bottom:153.421500px;}
.y1f_c00423{bottom:155.941350px;}
.y5_c00423{bottom:188.699850px;}
.y12_c00423{bottom:209.939850px;}
.y7_c00423{bottom:225.959850px;}
.y8_c00423{bottom:268.799850px;}
.y6_c00423{bottom:296.519850px;}
.y9_c00423{bottom:311.639850px;}
.ya_c00423{bottom:354.299850px;}
.yb_c00423{bottom:397.139850px;}
.yc_c00423{bottom:439.979850px;}
.yd_c00423{bottom:482.819850px;}
.ye_c00423{bottom:525.479850px;}
.yf_c00423{bottom:568.319850px;}
.y10_c00423{bottom:611.159850px;}
.y11_c00423{bottom:653.819850px;}
.y4_c00423{bottom:659.759850px;}
.y3_c00423{bottom:671.100090px;}
.y2_c00423{bottom:682.259850px;}
.y1_c00423{bottom:706.919850px;}
.y26_c00423{bottom:739.499850px;}
.y23_c00423{bottom:751.019550px;}
.y25_c00423{bottom:757.679850px;}
.y22_c00423{bottom:776.939700px;}
.y20_c00423{bottom:784.139850px;}
.y24_c00423{bottom:794.579850px;}
.y21_c00423{bottom:802.859850px;}
.h3_c00423{height:33.312100px;}
.h2_c00423{height:49.733732px;}
.h5_c00423{height:57.711310px;}
.h4_c00423{height:82.576647px;}
.h0_c00423{height:892.499550px;}
.h1_c00423{height:892.500000px;}
.w0_c00423{width:1262.999700px;}
.w1_c00423{width:1263.000000px;}
.x0_c00423{left:0.000000px;}
.xa_c00423{left:27.165750px;}
.x11_c00423{left:35.265750px;}
.x15_c00423{left:38.506050px;}
.x6_c00423{left:43.726200px;}
.x9_c00423{left:52.725600px;}
.x8_c00423{left:59.385900px;}
.x7_c00423{left:66.045750px;}
.x3_c00423{left:92.866040px;}
.x4_c00423{left:185.386500px;}
.x1_c00423{left:228.406500px;}
.x2_c00423{left:287.446500px;}
.x5_c00423{left:416.506500px;}
.xf_c00423{left:479.324070px;}
.xb_c00423{left:493.544117px;}
.xd_c00423{left:499.844130px;}
.xe_c00423{left:512.444126px;}
.xc_c00423{left:516.223984px;}
.x13_c00423{left:567.526500px;}
.x14_c00423{left:616.846500px;}
.x12_c00423{left:837.165000px;}
.x10_c00423{left:878.566500px;}
@media print{
.v0_c00423{vertical-align:0.000000pt;}
.ls1_c00423{letter-spacing:0.000000pt;}
.ls0_c00423{letter-spacing:1.043858pt;}
.ws7_c00423{word-spacing:-28.028627pt;}
.ws5_c00423{word-spacing:-12.350837pt;}
.ws4_c00423{word-spacing:-11.306979pt;}
.ws8_c00423{word-spacing:0.000000pt;}
.ws6_c00423{word-spacing:74.197868pt;}
.ws3_c00423{word-spacing:239.963787pt;}
.ws1_c00423{word-spacing:1003.575740pt;}
.ws0_c00423{word-spacing:1682.115023pt;}
.ws2_c00423{word-spacing:3672.555617pt;}
._a_c00423{margin-left:-1.043858pt;}
._0_c00423{width:1.713071pt;}
._1_c00423{width:3.180896pt;}
._e_c00423{width:109.420849pt;}
._17_c00423{width:120.001860pt;}
._b_c00423{width:137.850063pt;}
._11_c00423{width:138.753016pt;}
._14_c00423{width:144.334220pt;}
._d_c00423{width:162.125749pt;}
._f_c00423{width:184.178698pt;}
._15_c00423{width:196.125326pt;}
._12_c00423{width:219.818038pt;}
._9_c00423{width:261.531900pt;}
._4_c00423{width:262.810630pt;}
._6_c00423{width:278.763446pt;}
._c_c00423{width:279.909752pt;}
._8_c00423{width:295.367186pt;}
._7_c00423{width:304.538675pt;}
._10_c00423{width:326.825576pt;}
._16_c00423{width:338.127225pt;}
._3_c00423{width:346.538770pt;}
._5_c00423{width:358.266866pt;}
._13_c00423{width:362.454254pt;}
._18_c00423{width:388.320865pt;}
._2_c00423{width:1037.266312pt;}
.fs1_c00423{font-size:40.672587pt;}
.fs0_c00423{font-size:60.722667pt;}
.fs3_c00423{font-size:70.462933pt;}
.fs2_c00423{font-size:100.822400pt;}
.y0_c00423{bottom:0.000000pt;}
.y18_c00423{bottom:19.575200pt;}
.y1e_c00423{bottom:19.575333pt;}
.y17_c00423{bottom:42.935067pt;}
.y1d_c00423{bottom:42.935200pt;}
.y16_c00423{bottom:66.294933pt;}
.y1c_c00423{bottom:66.296133pt;}
.y15_c00423{bottom:89.654800pt;}
.y1b_c00423{bottom:89.656000pt;}
.y14_c00423{bottom:113.014667pt;}
.y1a_c00423{bottom:113.015867pt;}
.y13_c00423{bottom:136.374533pt;}
.y19_c00423{bottom:136.374667pt;}
.y1f_c00423{bottom:138.614533pt;}
.y5_c00423{bottom:167.733200pt;}
.y12_c00423{bottom:186.613200pt;}
.y7_c00423{bottom:200.853200pt;}
.y8_c00423{bottom:238.933200pt;}
.y6_c00423{bottom:263.573200pt;}
.y9_c00423{bottom:277.013200pt;}
.ya_c00423{bottom:314.933200pt;}
.yb_c00423{bottom:353.013200pt;}
.yc_c00423{bottom:391.093200pt;}
.yd_c00423{bottom:429.173200pt;}
.ye_c00423{bottom:467.093200pt;}
.yf_c00423{bottom:505.173200pt;}
.y10_c00423{bottom:543.253200pt;}
.y11_c00423{bottom:581.173200pt;}
.y4_c00423{bottom:586.453200pt;}
.y3_c00423{bottom:596.533413pt;}
.y2_c00423{bottom:606.453200pt;}
.y1_c00423{bottom:628.373200pt;}
.y26_c00423{bottom:657.333200pt;}
.y23_c00423{bottom:667.572933pt;}
.y25_c00423{bottom:673.493200pt;}
.y22_c00423{bottom:690.613067pt;}
.y20_c00423{bottom:697.013200pt;}
.y24_c00423{bottom:706.293200pt;}
.y21_c00423{bottom:713.653200pt;}
.h3_c00423{height:29.610755pt;}
.h2_c00423{height:44.207762pt;}
.h5_c00423{height:51.298942pt;}
.h4_c00423{height:73.401464pt;}
.h0_c00423{height:793.332933pt;}
.h1_c00423{height:793.333333pt;}
.w0_c00423{width:1122.666400pt;}
.w1_c00423{width:1122.666667pt;}
.x0_c00423{left:0.000000pt;}
.xa_c00423{left:24.147333pt;}
.x11_c00423{left:31.347333pt;}
.x15_c00423{left:34.227600pt;}
.x6_c00423{left:38.867733pt;}
.x9_c00423{left:46.867200pt;}
.x8_c00423{left:52.787467pt;}
.x7_c00423{left:58.707333pt;}
.x3_c00423{left:82.547591pt;}
.x4_c00423{left:164.788000pt;}
.x1_c00423{left:203.028000pt;}
.x2_c00423{left:255.508000pt;}
.x5_c00423{left:370.228000pt;}
.xf_c00423{left:426.065840pt;}
.xb_c00423{left:438.705882pt;}
.xd_c00423{left:444.305894pt;}
.xe_c00423{left:455.505890pt;}
.xc_c00423{left:458.865764pt;}
.x13_c00423{left:504.468000pt;}
.x14_c00423{left:548.308000pt;}
.x12_c00423{left:744.146667pt;}
.x10_c00423{left:780.948000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e35c7f8485bc03661357aaa7.woff2')format("woff");}.ff1_c00424{font-family:ff1_c00424;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00424{transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);}
.m1_c00424{transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);}
.m4_c00424{transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);}
.m3_c00424{transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);}
.m0_c00424{transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);}
.v0_c00424{vertical-align:0.000000px;}
.v1_c00424{vertical-align:20.880600px;}
.ls1_c00424{letter-spacing:0.000000px;}
.ls0_c00424{letter-spacing:1.174340px;}
.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;}
}
.ws8_c00424{word-spacing:-31.532206px;}
.ws5_c00424{word-spacing:-13.894692px;}
.ws4_c00424{word-spacing:-12.720351px;}
.ws7_c00424{word-spacing:-8.778801px;}
.ws9_c00424{word-spacing:0.000000px;}
.ws6_c00424{word-spacing:83.472601px;}
.ws3_c00424{word-spacing:269.959261px;}
.ws1_c00424{word-spacing:1129.022707px;}
.ws0_c00424{word-spacing:1892.379401px;}
.ws2_c00424{word-spacing:4131.625069px;}
._a_c00424{margin-left:-1.174340px;}
._0_c00424{width:1.927205px;}
._1_c00424{width:3.578508px;}
._e_c00424{width:123.098455px;}
._17_c00424{width:135.002093px;}
._b_c00424{width:155.081320px;}
._11_c00424{width:156.097143px;}
._14_c00424{width:162.375998px;}
._d_c00424{width:182.391467px;}
._f_c00424{width:207.201036px;}
._15_c00424{width:220.640991px;}
._12_c00424{width:247.295292px;}
._9_c00424{width:294.223388px;}
._4_c00424{width:295.661959px;}
._6_c00424{width:313.608876px;}
._c_c00424{width:314.898471px;}
._8_c00424{width:332.288085px;}
._7_c00424{width:342.606009px;}
._10_c00424{width:367.678773px;}
._16_c00424{width:380.393128px;}
._3_c00424{width:389.856116px;}
._5_c00424{width:403.050224px;}
._13_c00424{width:407.761036px;}
._18_c00424{width:436.860973px;}
._2_c00424{width:1166.924601px;}
.fc1_c00424{color:transparent;}
.fc0_c00424{color:rgb(0,0,0);}
.fs2_c00424{font-size:31.578420px;}
.fs1_c00424{font-size:45.756660px;}
.fs0_c00424{font-size:68.313000px;}
.fs4_c00424{font-size:79.270800px;}
.fs3_c00424{font-size:113.425200px;}
.y0_c00424{bottom:0.000000px;}
.y18_c00424{bottom:22.022100px;}
.y1f_c00424{bottom:22.022250px;}
.y17_c00424{bottom:48.301950px;}
.y1e_c00424{bottom:48.302100px;}
.y16_c00424{bottom:74.581800px;}
.y1d_c00424{bottom:74.583150px;}
.y15_c00424{bottom:100.861650px;}
.y1c_c00424{bottom:100.863000px;}
.y14_c00424{bottom:127.141500px;}
.y1b_c00424{bottom:127.142850px;}
.y13_c00424{bottom:153.421350px;}
.y19_c00424{bottom:153.421500px;}
.y20_c00424{bottom:155.941350px;}
.y1a_c00424{bottom:165.121500px;}
.y5_c00424{bottom:188.699850px;}
.y12_c00424{bottom:209.939850px;}
.y7_c00424{bottom:225.959850px;}
.y8_c00424{bottom:268.799850px;}
.y6_c00424{bottom:296.519850px;}
.y9_c00424{bottom:311.639850px;}
.ya_c00424{bottom:354.299850px;}
.yb_c00424{bottom:397.139850px;}
.yc_c00424{bottom:439.979850px;}
.yd_c00424{bottom:482.819850px;}
.ye_c00424{bottom:525.479850px;}
.yf_c00424{bottom:568.319850px;}
.y10_c00424{bottom:611.159850px;}
.y11_c00424{bottom:653.819850px;}
.y4_c00424{bottom:659.759850px;}
.y3_c00424{bottom:671.100090px;}
.y2_c00424{bottom:682.259850px;}
.y1_c00424{bottom:706.919850px;}
.y27_c00424{bottom:739.499850px;}
.y24_c00424{bottom:751.019550px;}
.y26_c00424{bottom:757.679850px;}
.y23_c00424{bottom:776.939700px;}
.y21_c00424{bottom:784.139850px;}
.y25_c00424{bottom:794.579850px;}
.y22_c00424{bottom:802.859850px;}
.h3_c00424{height:33.312100px;}
.h4_c00424{height:43.870553px;}
.h2_c00424{height:49.733732px;}
.h6_c00424{height:57.711310px;}
.h5_c00424{height:82.576647px;}
.h0_c00424{height:892.499550px;}
.h1_c00424{height:892.500000px;}
.w0_c00424{width:1262.999700px;}
.w1_c00424{width:1263.000000px;}
.x0_c00424{left:0.000000px;}
.xa_c00424{left:27.165750px;}
.x11_c00424{left:35.265750px;}
.x15_c00424{left:38.506050px;}
.x6_c00424{left:43.726200px;}
.x9_c00424{left:52.725600px;}
.x8_c00424{left:59.385900px;}
.x7_c00424{left:66.045750px;}
.x3_c00424{left:92.866040px;}
.x4_c00424{left:185.386500px;}
.x1_c00424{left:228.406500px;}
.x2_c00424{left:287.446500px;}
.x5_c00424{left:416.506500px;}
.xe_c00424{left:482.564341px;}
.xf_c00424{left:492.284464px;}
.xd_c00424{left:499.844240px;}
.xb_c00424{left:501.283872px;}
.xc_c00424{left:529.150140px;}
.x13_c00424{left:567.526500px;}
.x14_c00424{left:616.846500px;}
.x12_c00424{left:837.165000px;}
.x10_c00424{left:878.566500px;}
@media print{
.v0_c00424{vertical-align:0.000000pt;}
.v1_c00424{vertical-align:18.560533pt;}
.ls1_c00424{letter-spacing:0.000000pt;}
.ls0_c00424{letter-spacing:1.043858pt;}
.ws8_c00424{word-spacing:-28.028627pt;}
.ws5_c00424{word-spacing:-12.350837pt;}
.ws4_c00424{word-spacing:-11.306979pt;}
.ws7_c00424{word-spacing:-7.803378pt;}
.ws9_c00424{word-spacing:0.000000pt;}
.ws6_c00424{word-spacing:74.197868pt;}
.ws3_c00424{word-spacing:239.963787pt;}
.ws1_c00424{word-spacing:1003.575740pt;}
.ws0_c00424{word-spacing:1682.115023pt;}
.ws2_c00424{word-spacing:3672.555617pt;}
._a_c00424{margin-left:-1.043858pt;}
._0_c00424{width:1.713071pt;}
._1_c00424{width:3.180896pt;}
._e_c00424{width:109.420849pt;}
._17_c00424{width:120.001860pt;}
._b_c00424{width:137.850063pt;}
._11_c00424{width:138.753016pt;}
._14_c00424{width:144.334220pt;}
._d_c00424{width:162.125749pt;}
._f_c00424{width:184.178698pt;}
._15_c00424{width:196.125326pt;}
._12_c00424{width:219.818038pt;}
._9_c00424{width:261.531900pt;}
._4_c00424{width:262.810630pt;}
._6_c00424{width:278.763446pt;}
._c_c00424{width:279.909752pt;}
._8_c00424{width:295.367186pt;}
._7_c00424{width:304.538675pt;}
._10_c00424{width:326.825576pt;}
._16_c00424{width:338.127225pt;}
._3_c00424{width:346.538770pt;}
._5_c00424{width:358.266866pt;}
._13_c00424{width:362.454254pt;}
._18_c00424{width:388.320865pt;}
._2_c00424{width:1037.266312pt;}
.fs2_c00424{font-size:28.069707pt;}
.fs1_c00424{font-size:40.672587pt;}
.fs0_c00424{font-size:60.722667pt;}
.fs4_c00424{font-size:70.462933pt;}
.fs3_c00424{font-size:100.822400pt;}
.y0_c00424{bottom:0.000000pt;}
.y18_c00424{bottom:19.575200pt;}
.y1f_c00424{bottom:19.575333pt;}
.y17_c00424{bottom:42.935067pt;}
.y1e_c00424{bottom:42.935200pt;}
.y16_c00424{bottom:66.294933pt;}
.y1d_c00424{bottom:66.296133pt;}
.y15_c00424{bottom:89.654800pt;}
.y1c_c00424{bottom:89.656000pt;}
.y14_c00424{bottom:113.014667pt;}
.y1b_c00424{bottom:113.015867pt;}
.y13_c00424{bottom:136.374533pt;}
.y19_c00424{bottom:136.374667pt;}
.y20_c00424{bottom:138.614533pt;}
.y1a_c00424{bottom:146.774667pt;}
.y5_c00424{bottom:167.733200pt;}
.y12_c00424{bottom:186.613200pt;}
.y7_c00424{bottom:200.853200pt;}
.y8_c00424{bottom:238.933200pt;}
.y6_c00424{bottom:263.573200pt;}
.y9_c00424{bottom:277.013200pt;}
.ya_c00424{bottom:314.933200pt;}
.yb_c00424{bottom:353.013200pt;}
.yc_c00424{bottom:391.093200pt;}
.yd_c00424{bottom:429.173200pt;}
.ye_c00424{bottom:467.093200pt;}
.yf_c00424{bottom:505.173200pt;}
.y10_c00424{bottom:543.253200pt;}
.y11_c00424{bottom:581.173200pt;}
.y4_c00424{bottom:586.453200pt;}
.y3_c00424{bottom:596.533413pt;}
.y2_c00424{bottom:606.453200pt;}
.y1_c00424{bottom:628.373200pt;}
.y27_c00424{bottom:657.333200pt;}
.y24_c00424{bottom:667.572933pt;}
.y26_c00424{bottom:673.493200pt;}
.y23_c00424{bottom:690.613067pt;}
.y21_c00424{bottom:697.013200pt;}
.y25_c00424{bottom:706.293200pt;}
.y22_c00424{bottom:713.653200pt;}
.h3_c00424{height:29.610755pt;}
.h4_c00424{height:38.996047pt;}
.h2_c00424{height:44.207762pt;}
.h6_c00424{height:51.298942pt;}
.h5_c00424{height:73.401464pt;}
.h0_c00424{height:793.332933pt;}
.h1_c00424{height:793.333333pt;}
.w0_c00424{width:1122.666400pt;}
.w1_c00424{width:1122.666667pt;}
.x0_c00424{left:0.000000pt;}
.xa_c00424{left:24.147333pt;}
.x11_c00424{left:31.347333pt;}
.x15_c00424{left:34.227600pt;}
.x6_c00424{left:38.867733pt;}
.x9_c00424{left:46.867200pt;}
.x8_c00424{left:52.787467pt;}
.x7_c00424{left:58.707333pt;}
.x3_c00424{left:82.547591pt;}
.x4_c00424{left:164.788000pt;}
.x1_c00424{left:203.028000pt;}
.x2_c00424{left:255.508000pt;}
.x5_c00424{left:370.228000pt;}
.xe_c00424{left:428.946081pt;}
.xf_c00424{left:437.586190pt;}
.xd_c00424{left:444.305991pt;}
.xb_c00424{left:445.585664pt;}
.xc_c00424{left:470.355680pt;}
.x13_c00424{left:504.468000pt;}
.x14_c00424{left:548.308000pt;}
.x12_c00424{left:744.146667pt;}
.x10_c00424{left:780.948000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_dee45d37ab9410617a42344f.woff2')format("woff");}.ff1_c00425{font-family:ff1_c00425;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00425{transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);}
.m1_c00425{transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);}
.m4_c00425{transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);}
.m3_c00425{transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);}
.m0_c00425{transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);}
.v0_c00425{vertical-align:0.000000px;}
.ls1_c00425{letter-spacing:0.000000px;}
.ls0_c00425{letter-spacing:1.174340px;}
.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;}
}
.ws7_c00425{word-spacing:-31.532206px;}
.ws5_c00425{word-spacing:-13.894692px;}
.ws4_c00425{word-spacing:-12.720351px;}
.ws8_c00425{word-spacing:0.000000px;}
.ws6_c00425{word-spacing:83.472601px;}
.ws3_c00425{word-spacing:269.959261px;}
.ws1_c00425{word-spacing:1129.022707px;}
.ws0_c00425{word-spacing:1892.379401px;}
.ws2_c00425{word-spacing:4131.625069px;}
._a_c00425{margin-left:-1.174340px;}
._0_c00425{width:1.927205px;}
._1_c00425{width:3.578508px;}
._e_c00425{width:123.098455px;}
._17_c00425{width:135.002093px;}
._b_c00425{width:155.081320px;}
._11_c00425{width:156.097143px;}
._14_c00425{width:162.375998px;}
._d_c00425{width:182.391467px;}
._f_c00425{width:207.201036px;}
._15_c00425{width:220.640991px;}
._12_c00425{width:247.295292px;}
._9_c00425{width:294.223388px;}
._4_c00425{width:295.661959px;}
._6_c00425{width:313.608876px;}
._c_c00425{width:314.898471px;}
._8_c00425{width:332.288085px;}
._7_c00425{width:342.606009px;}
._10_c00425{width:367.678773px;}
._16_c00425{width:380.393128px;}
._3_c00425{width:389.856116px;}
._5_c00425{width:403.050224px;}
._13_c00425{width:407.761036px;}
._18_c00425{width:436.860973px;}
._2_c00425{width:1166.924601px;}
.fc1_c00425{color:transparent;}
.fc0_c00425{color:rgb(0,0,0);}
.fs1_c00425{font-size:45.756660px;}
.fs0_c00425{font-size:68.313000px;}
.fs3_c00425{font-size:79.270800px;}
.fs2_c00425{font-size:113.425200px;}
.y0_c00425{bottom:0.000000px;}
.y18_c00425{bottom:22.022100px;}
.y1e_c00425{bottom:22.022250px;}
.y17_c00425{bottom:48.301950px;}
.y1d_c00425{bottom:48.302100px;}
.y16_c00425{bottom:74.581800px;}
.y1c_c00425{bottom:74.583150px;}
.y15_c00425{bottom:100.861650px;}
.y1b_c00425{bottom:100.863000px;}
.y14_c00425{bottom:127.141500px;}
.y1a_c00425{bottom:127.142850px;}
.y13_c00425{bottom:153.421350px;}
.y19_c00425{bottom:153.421500px;}
.y1f_c00425{bottom:155.941350px;}
.y5_c00425{bottom:188.699850px;}
.y12_c00425{bottom:209.939850px;}
.y7_c00425{bottom:225.959850px;}
.y8_c00425{bottom:268.799850px;}
.y6_c00425{bottom:296.519850px;}
.y9_c00425{bottom:311.639850px;}
.ya_c00425{bottom:354.299850px;}
.yb_c00425{bottom:397.139850px;}
.yc_c00425{bottom:439.979850px;}
.yd_c00425{bottom:482.819850px;}
.ye_c00425{bottom:525.479850px;}
.yf_c00425{bottom:568.319850px;}
.y10_c00425{bottom:611.159850px;}
.y11_c00425{bottom:653.819850px;}
.y4_c00425{bottom:659.759850px;}
.y3_c00425{bottom:671.100090px;}
.y2_c00425{bottom:682.259850px;}
.y1_c00425{bottom:706.919850px;}
.y26_c00425{bottom:739.499850px;}
.y23_c00425{bottom:751.019550px;}
.y25_c00425{bottom:757.679850px;}
.y22_c00425{bottom:776.939700px;}
.y20_c00425{bottom:784.139850px;}
.y24_c00425{bottom:794.579850px;}
.y21_c00425{bottom:802.859850px;}
.h3_c00425{height:33.312100px;}
.h2_c00425{height:49.733732px;}
.h5_c00425{height:57.711310px;}
.h4_c00425{height:82.576647px;}
.h0_c00425{height:892.499550px;}
.h1_c00425{height:892.500000px;}
.w0_c00425{width:1262.999700px;}
.w1_c00425{width:1263.000000px;}
.x0_c00425{left:0.000000px;}
.xa_c00425{left:27.165750px;}
.x11_c00425{left:35.265750px;}
.x15_c00425{left:38.506050px;}
.x6_c00425{left:43.726200px;}
.x9_c00425{left:52.725600px;}
.x8_c00425{left:59.385900px;}
.x7_c00425{left:66.045750px;}
.x3_c00425{left:92.866040px;}
.x4_c00425{left:185.386500px;}
.x1_c00425{left:228.406500px;}
.x2_c00425{left:287.446500px;}
.x5_c00425{left:416.506500px;}
.xf_c00425{left:479.326172px;}
.xb_c00425{left:492.286426px;}
.xd_c00425{left:499.846231px;}
.xe_c00425{left:512.446228px;}
.xc_c00425{left:516.226085px;}
.x13_c00425{left:567.526500px;}
.x14_c00425{left:616.846500px;}
.x12_c00425{left:837.165000px;}
.x10_c00425{left:878.566500px;}
@media print{
.v0_c00425{vertical-align:0.000000pt;}
.ls1_c00425{letter-spacing:0.000000pt;}
.ls0_c00425{letter-spacing:1.043858pt;}
.ws7_c00425{word-spacing:-28.028627pt;}
.ws5_c00425{word-spacing:-12.350837pt;}
.ws4_c00425{word-spacing:-11.306979pt;}
.ws8_c00425{word-spacing:0.000000pt;}
.ws6_c00425{word-spacing:74.197868pt;}
.ws3_c00425{word-spacing:239.963787pt;}
.ws1_c00425{word-spacing:1003.575740pt;}
.ws0_c00425{word-spacing:1682.115023pt;}
.ws2_c00425{word-spacing:3672.555617pt;}
._a_c00425{margin-left:-1.043858pt;}
._0_c00425{width:1.713071pt;}
._1_c00425{width:3.180896pt;}
._e_c00425{width:109.420849pt;}
._17_c00425{width:120.001860pt;}
._b_c00425{width:137.850063pt;}
._11_c00425{width:138.753016pt;}
._14_c00425{width:144.334220pt;}
._d_c00425{width:162.125749pt;}
._f_c00425{width:184.178698pt;}
._15_c00425{width:196.125326pt;}
._12_c00425{width:219.818038pt;}
._9_c00425{width:261.531900pt;}
._4_c00425{width:262.810630pt;}
._6_c00425{width:278.763446pt;}
._c_c00425{width:279.909752pt;}
._8_c00425{width:295.367186pt;}
._7_c00425{width:304.538675pt;}
._10_c00425{width:326.825576pt;}
._16_c00425{width:338.127225pt;}
._3_c00425{width:346.538770pt;}
._5_c00425{width:358.266866pt;}
._13_c00425{width:362.454254pt;}
._18_c00425{width:388.320865pt;}
._2_c00425{width:1037.266312pt;}
.fs1_c00425{font-size:40.672587pt;}
.fs0_c00425{font-size:60.722667pt;}
.fs3_c00425{font-size:70.462933pt;}
.fs2_c00425{font-size:100.822400pt;}
.y0_c00425{bottom:0.000000pt;}
.y18_c00425{bottom:19.575200pt;}
.y1e_c00425{bottom:19.575333pt;}
.y17_c00425{bottom:42.935067pt;}
.y1d_c00425{bottom:42.935200pt;}
.y16_c00425{bottom:66.294933pt;}
.y1c_c00425{bottom:66.296133pt;}
.y15_c00425{bottom:89.654800pt;}
.y1b_c00425{bottom:89.656000pt;}
.y14_c00425{bottom:113.014667pt;}
.y1a_c00425{bottom:113.015867pt;}
.y13_c00425{bottom:136.374533pt;}
.y19_c00425{bottom:136.374667pt;}
.y1f_c00425{bottom:138.614533pt;}
.y5_c00425{bottom:167.733200pt;}
.y12_c00425{bottom:186.613200pt;}
.y7_c00425{bottom:200.853200pt;}
.y8_c00425{bottom:238.933200pt;}
.y6_c00425{bottom:263.573200pt;}
.y9_c00425{bottom:277.013200pt;}
.ya_c00425{bottom:314.933200pt;}
.yb_c00425{bottom:353.013200pt;}
.yc_c00425{bottom:391.093200pt;}
.yd_c00425{bottom:429.173200pt;}
.ye_c00425{bottom:467.093200pt;}
.yf_c00425{bottom:505.173200pt;}
.y10_c00425{bottom:543.253200pt;}
.y11_c00425{bottom:581.173200pt;}
.y4_c00425{bottom:586.453200pt;}
.y3_c00425{bottom:596.533413pt;}
.y2_c00425{bottom:606.453200pt;}
.y1_c00425{bottom:628.373200pt;}
.y26_c00425{bottom:657.333200pt;}
.y23_c00425{bottom:667.572933pt;}
.y25_c00425{bottom:673.493200pt;}
.y22_c00425{bottom:690.613067pt;}
.y20_c00425{bottom:697.013200pt;}
.y24_c00425{bottom:706.293200pt;}
.y21_c00425{bottom:713.653200pt;}
.h3_c00425{height:29.610755pt;}
.h2_c00425{height:44.207762pt;}
.h5_c00425{height:51.298942pt;}
.h4_c00425{height:73.401464pt;}
.h0_c00425{height:793.332933pt;}
.h1_c00425{height:793.333333pt;}
.w0_c00425{width:1122.666400pt;}
.w1_c00425{width:1122.666667pt;}
.x0_c00425{left:0.000000pt;}
.xa_c00425{left:24.147333pt;}
.x11_c00425{left:31.347333pt;}
.x15_c00425{left:34.227600pt;}
.x6_c00425{left:38.867733pt;}
.x9_c00425{left:46.867200pt;}
.x8_c00425{left:52.787467pt;}
.x7_c00425{left:58.707333pt;}
.x3_c00425{left:82.547591pt;}
.x4_c00425{left:164.788000pt;}
.x1_c00425{left:203.028000pt;}
.x2_c00425{left:255.508000pt;}
.x5_c00425{left:370.228000pt;}
.xf_c00425{left:426.067708pt;}
.xb_c00425{left:437.587934pt;}
.xd_c00425{left:444.307761pt;}
.xe_c00425{left:455.507758pt;}
.xc_c00425{left:458.867631pt;}
.x13_c00425{left:504.468000pt;}
.x14_c00425{left:548.308000pt;}
.x12_c00425{left:744.146667pt;}
.x10_c00425{left:780.948000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e5852fdf183ef2c17a5529c0.woff2')format("woff");}.ff1_c00426{font-family:ff1_c00426;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00426{transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);}
.m1_c00426{transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);}
.m4_c00426{transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);}
.m3_c00426{transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);}
.m0_c00426{transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);}
.v0_c00426{vertical-align:0.000000px;}
.v1_c00426{vertical-align:20.880600px;}
.ls1_c00426{letter-spacing:0.000000px;}
.ls0_c00426{letter-spacing:1.174340px;}
.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;}
}
.ws8_c00426{word-spacing:-31.532206px;}
.ws5_c00426{word-spacing:-13.894692px;}
.ws4_c00426{word-spacing:-12.720351px;}
.ws7_c00426{word-spacing:-8.778801px;}
.ws9_c00426{word-spacing:0.000000px;}
.ws6_c00426{word-spacing:83.472601px;}
.ws3_c00426{word-spacing:269.959261px;}
.ws1_c00426{word-spacing:1129.022707px;}
.ws0_c00426{word-spacing:1892.379401px;}
.ws2_c00426{word-spacing:4131.625069px;}
._a_c00426{margin-left:-1.174340px;}
._0_c00426{width:1.927205px;}
._1_c00426{width:3.578508px;}
._e_c00426{width:123.098455px;}
._17_c00426{width:135.002093px;}
._b_c00426{width:155.081320px;}
._11_c00426{width:156.097143px;}
._14_c00426{width:162.375998px;}
._d_c00426{width:182.391467px;}
._f_c00426{width:207.201036px;}
._15_c00426{width:220.640991px;}
._12_c00426{width:247.295292px;}
._9_c00426{width:294.223388px;}
._4_c00426{width:295.661959px;}
._6_c00426{width:313.608876px;}
._c_c00426{width:314.898471px;}
._8_c00426{width:332.288085px;}
._7_c00426{width:342.606009px;}
._10_c00426{width:367.678773px;}
._16_c00426{width:380.393128px;}
._3_c00426{width:389.856116px;}
._5_c00426{width:403.050224px;}
._13_c00426{width:407.761036px;}
._18_c00426{width:436.860973px;}
._2_c00426{width:1166.924601px;}
.fc1_c00426{color:transparent;}
.fc0_c00426{color:rgb(0,0,0);}
.fs2_c00426{font-size:31.578420px;}
.fs1_c00426{font-size:45.756660px;}
.fs0_c00426{font-size:68.313000px;}
.fs4_c00426{font-size:79.270800px;}
.fs3_c00426{font-size:113.425200px;}
.y0_c00426{bottom:0.000000px;}
.y18_c00426{bottom:22.022100px;}
.y1e_c00426{bottom:22.022250px;}
.y17_c00426{bottom:48.301950px;}
.y1d_c00426{bottom:48.302100px;}
.y16_c00426{bottom:74.581800px;}
.y1c_c00426{bottom:74.583150px;}
.y15_c00426{bottom:100.861650px;}
.y1b_c00426{bottom:100.863000px;}
.y14_c00426{bottom:127.141500px;}
.y1a_c00426{bottom:127.142850px;}
.y13_c00426{bottom:153.421350px;}
.y19_c00426{bottom:153.421500px;}
.y1f_c00426{bottom:155.941350px;}
.y5_c00426{bottom:188.699850px;}
.y12_c00426{bottom:209.939850px;}
.y7_c00426{bottom:225.959850px;}
.y8_c00426{bottom:268.799850px;}
.y6_c00426{bottom:296.519850px;}
.y9_c00426{bottom:311.639850px;}
.ya_c00426{bottom:354.299850px;}
.yb_c00426{bottom:397.139850px;}
.yc_c00426{bottom:439.979850px;}
.yd_c00426{bottom:482.819850px;}
.ye_c00426{bottom:525.479850px;}
.yf_c00426{bottom:568.319850px;}
.y10_c00426{bottom:611.159850px;}
.y11_c00426{bottom:653.819850px;}
.y4_c00426{bottom:659.759850px;}
.y3_c00426{bottom:671.100090px;}
.y2_c00426{bottom:682.259850px;}
.y1_c00426{bottom:706.919850px;}
.y26_c00426{bottom:739.499850px;}
.y23_c00426{bottom:751.019550px;}
.y25_c00426{bottom:757.679850px;}
.y22_c00426{bottom:776.939700px;}
.y20_c00426{bottom:784.139850px;}
.y24_c00426{bottom:794.579850px;}
.y21_c00426{bottom:802.859850px;}
.h3_c00426{height:33.312100px;}
.h4_c00426{height:43.870553px;}
.h2_c00426{height:49.733732px;}
.h6_c00426{height:57.711310px;}
.h5_c00426{height:82.576647px;}
.h0_c00426{height:892.499550px;}
.h1_c00426{height:892.500000px;}
.w0_c00426{width:1262.999700px;}
.w1_c00426{width:1263.000000px;}
.x0_c00426{left:0.000000px;}
.xa_c00426{left:27.165750px;}
.x10_c00426{left:35.265750px;}
.x14_c00426{left:38.506050px;}
.x6_c00426{left:43.726200px;}
.x9_c00426{left:52.725600px;}
.x8_c00426{left:59.385900px;}
.x7_c00426{left:66.045750px;}
.x3_c00426{left:92.866040px;}
.x4_c00426{left:185.386500px;}
.x1_c00426{left:228.406500px;}
.x2_c00426{left:287.446500px;}
.x5_c00426{left:416.506500px;}
.xd_c00426{left:482.564216px;}
.xe_c00426{left:492.284340px;}
.xb_c00426{left:493.544117px;}
.xc_c00426{left:499.844115px;}
.x12_c00426{left:567.526500px;}
.x13_c00426{left:616.846500px;}
.x11_c00426{left:837.165000px;}
.xf_c00426{left:878.566500px;}
@media print{
.v0_c00426{vertical-align:0.000000pt;}
.v1_c00426{vertical-align:18.560533pt;}
.ls1_c00426{letter-spacing:0.000000pt;}
.ls0_c00426{letter-spacing:1.043858pt;}
.ws8_c00426{word-spacing:-28.028627pt;}
.ws5_c00426{word-spacing:-12.350837pt;}
.ws4_c00426{word-spacing:-11.306979pt;}
.ws7_c00426{word-spacing:-7.803378pt;}
.ws9_c00426{word-spacing:0.000000pt;}
.ws6_c00426{word-spacing:74.197868pt;}
.ws3_c00426{word-spacing:239.963787pt;}
.ws1_c00426{word-spacing:1003.575740pt;}
.ws0_c00426{word-spacing:1682.115023pt;}
.ws2_c00426{word-spacing:3672.555617pt;}
._a_c00426{margin-left:-1.043858pt;}
._0_c00426{width:1.713071pt;}
._1_c00426{width:3.180896pt;}
._e_c00426{width:109.420849pt;}
._17_c00426{width:120.001860pt;}
._b_c00426{width:137.850063pt;}
._11_c00426{width:138.753016pt;}
._14_c00426{width:144.334220pt;}
._d_c00426{width:162.125749pt;}
._f_c00426{width:184.178698pt;}
._15_c00426{width:196.125326pt;}
._12_c00426{width:219.818038pt;}
._9_c00426{width:261.531900pt;}
._4_c00426{width:262.810630pt;}
._6_c00426{width:278.763446pt;}
._c_c00426{width:279.909752pt;}
._8_c00426{width:295.367186pt;}
._7_c00426{width:304.538675pt;}
._10_c00426{width:326.825576pt;}
._16_c00426{width:338.127225pt;}
._3_c00426{width:346.538770pt;}
._5_c00426{width:358.266866pt;}
._13_c00426{width:362.454254pt;}
._18_c00426{width:388.320865pt;}
._2_c00426{width:1037.266312pt;}
.fs2_c00426{font-size:28.069707pt;}
.fs1_c00426{font-size:40.672587pt;}
.fs0_c00426{font-size:60.722667pt;}
.fs4_c00426{font-size:70.462933pt;}
.fs3_c00426{font-size:100.822400pt;}
.y0_c00426{bottom:0.000000pt;}
.y18_c00426{bottom:19.575200pt;}
.y1e_c00426{bottom:19.575333pt;}
.y17_c00426{bottom:42.935067pt;}
.y1d_c00426{bottom:42.935200pt;}
.y16_c00426{bottom:66.294933pt;}
.y1c_c00426{bottom:66.296133pt;}
.y15_c00426{bottom:89.654800pt;}
.y1b_c00426{bottom:89.656000pt;}
.y14_c00426{bottom:113.014667pt;}
.y1a_c00426{bottom:113.015867pt;}
.y13_c00426{bottom:136.374533pt;}
.y19_c00426{bottom:136.374667pt;}
.y1f_c00426{bottom:138.614533pt;}
.y5_c00426{bottom:167.733200pt;}
.y12_c00426{bottom:186.613200pt;}
.y7_c00426{bottom:200.853200pt;}
.y8_c00426{bottom:238.933200pt;}
.y6_c00426{bottom:263.573200pt;}
.y9_c00426{bottom:277.013200pt;}
.ya_c00426{bottom:314.933200pt;}
.yb_c00426{bottom:353.013200pt;}
.yc_c00426{bottom:391.093200pt;}
.yd_c00426{bottom:429.173200pt;}
.ye_c00426{bottom:467.093200pt;}
.yf_c00426{bottom:505.173200pt;}
.y10_c00426{bottom:543.253200pt;}
.y11_c00426{bottom:581.173200pt;}
.y4_c00426{bottom:586.453200pt;}
.y3_c00426{bottom:596.533413pt;}
.y2_c00426{bottom:606.453200pt;}
.y1_c00426{bottom:628.373200pt;}
.y26_c00426{bottom:657.333200pt;}
.y23_c00426{bottom:667.572933pt;}
.y25_c00426{bottom:673.493200pt;}
.y22_c00426{bottom:690.613067pt;}
.y20_c00426{bottom:697.013200pt;}
.y24_c00426{bottom:706.293200pt;}
.y21_c00426{bottom:713.653200pt;}
.h3_c00426{height:29.610755pt;}
.h4_c00426{height:38.996047pt;}
.h2_c00426{height:44.207762pt;}
.h6_c00426{height:51.298942pt;}
.h5_c00426{height:73.401464pt;}
.h0_c00426{height:793.332933pt;}
.h1_c00426{height:793.333333pt;}
.w0_c00426{width:1122.666400pt;}
.w1_c00426{width:1122.666667pt;}
.x0_c00426{left:0.000000pt;}
.xa_c00426{left:24.147333pt;}
.x10_c00426{left:31.347333pt;}
.x14_c00426{left:34.227600pt;}
.x6_c00426{left:38.867733pt;}
.x9_c00426{left:46.867200pt;}
.x8_c00426{left:52.787467pt;}
.x7_c00426{left:58.707333pt;}
.x3_c00426{left:82.547591pt;}
.x4_c00426{left:164.788000pt;}
.x1_c00426{left:203.028000pt;}
.x2_c00426{left:255.508000pt;}
.x5_c00426{left:370.228000pt;}
.xd_c00426{left:428.945970pt;}
.xe_c00426{left:437.586080pt;}
.xb_c00426{left:438.705882pt;}
.xc_c00426{left:444.305880pt;}
.x12_c00426{left:504.468000pt;}
.x13_c00426{left:548.308000pt;}
.x11_c00426{left:744.146667pt;}
.xf_c00426{left:780.948000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_af4d68a685bbcdca12d200d4.woff2')format("woff");}.ff1_c00427{font-family:ff1_c00427;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00427{transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);}
.m1_c00427{transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);}
.m4_c00427{transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);}
.m3_c00427{transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);}
.m0_c00427{transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);}
.v0_c00427{vertical-align:0.000000px;}
.v1_c00427{vertical-align:20.880600px;}
.ls1_c00427{letter-spacing:0.000000px;}
.ls0_c00427{letter-spacing:1.174340px;}
.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;}
}
.ws8_c00427{word-spacing:-31.532206px;}
.ws5_c00427{word-spacing:-13.894692px;}
.ws4_c00427{word-spacing:-12.720351px;}
.ws7_c00427{word-spacing:-8.778801px;}
.ws9_c00427{word-spacing:0.000000px;}
.ws6_c00427{word-spacing:83.472601px;}
.ws3_c00427{word-spacing:269.959261px;}
.ws1_c00427{word-spacing:1129.022707px;}
.ws0_c00427{word-spacing:1892.379401px;}
.ws2_c00427{word-spacing:4131.625069px;}
._a_c00427{margin-left:-1.174340px;}
._0_c00427{width:1.927205px;}
._1_c00427{width:3.578508px;}
._e_c00427{width:123.098455px;}
._17_c00427{width:135.002093px;}
._b_c00427{width:155.081320px;}
._11_c00427{width:156.097143px;}
._14_c00427{width:162.375998px;}
._d_c00427{width:182.391467px;}
._f_c00427{width:207.201036px;}
._15_c00427{width:220.640991px;}
._12_c00427{width:247.295292px;}
._9_c00427{width:294.223388px;}
._4_c00427{width:295.661959px;}
._6_c00427{width:313.608876px;}
._c_c00427{width:314.898471px;}
._8_c00427{width:332.288085px;}
._7_c00427{width:342.606009px;}
._10_c00427{width:367.678773px;}
._16_c00427{width:380.393128px;}
._3_c00427{width:389.856116px;}
._5_c00427{width:403.050224px;}
._13_c00427{width:407.761036px;}
._18_c00427{width:436.860973px;}
._2_c00427{width:1166.924601px;}
.fc1_c00427{color:transparent;}
.fc0_c00427{color:rgb(0,0,0);}
.fs2_c00427{font-size:31.578420px;}
.fs1_c00427{font-size:45.756660px;}
.fs0_c00427{font-size:68.313000px;}
.fs4_c00427{font-size:79.270800px;}
.fs3_c00427{font-size:113.425200px;}
.y0_c00427{bottom:0.000000px;}
.y18_c00427{bottom:22.022100px;}
.y1f_c00427{bottom:22.022250px;}
.y17_c00427{bottom:48.301950px;}
.y1e_c00427{bottom:48.302100px;}
.y16_c00427{bottom:74.581800px;}
.y1d_c00427{bottom:74.583150px;}
.y15_c00427{bottom:100.861650px;}
.y1c_c00427{bottom:100.863000px;}
.y14_c00427{bottom:127.141500px;}
.y1b_c00427{bottom:127.142850px;}
.y13_c00427{bottom:153.421350px;}
.y19_c00427{bottom:153.421500px;}
.y20_c00427{bottom:155.941350px;}
.y1a_c00427{bottom:165.121500px;}
.y5_c00427{bottom:188.699850px;}
.y12_c00427{bottom:209.939850px;}
.y7_c00427{bottom:225.959850px;}
.y8_c00427{bottom:268.799850px;}
.y6_c00427{bottom:296.519850px;}
.y9_c00427{bottom:311.639850px;}
.ya_c00427{bottom:354.299850px;}
.yb_c00427{bottom:397.139850px;}
.yc_c00427{bottom:439.979850px;}
.yd_c00427{bottom:482.819850px;}
.ye_c00427{bottom:525.479850px;}
.yf_c00427{bottom:568.319850px;}
.y10_c00427{bottom:611.159850px;}
.y11_c00427{bottom:653.819850px;}
.y4_c00427{bottom:659.759850px;}
.y3_c00427{bottom:671.100090px;}
.y2_c00427{bottom:682.259850px;}
.y1_c00427{bottom:706.919850px;}
.y27_c00427{bottom:739.499850px;}
.y24_c00427{bottom:751.019550px;}
.y26_c00427{bottom:757.679850px;}
.y23_c00427{bottom:776.939700px;}
.y21_c00427{bottom:784.139850px;}
.y25_c00427{bottom:794.579850px;}
.y22_c00427{bottom:802.859850px;}
.h3_c00427{height:33.312100px;}
.h4_c00427{height:43.870553px;}
.h2_c00427{height:49.733732px;}
.h6_c00427{height:57.711310px;}
.h5_c00427{height:82.576647px;}
.h0_c00427{height:892.499550px;}
.h1_c00427{height:892.500000px;}
.w0_c00427{width:1262.999700px;}
.w1_c00427{width:1263.000000px;}
.x0_c00427{left:0.000000px;}
.xa_c00427{left:27.165750px;}
.x11_c00427{left:35.265750px;}
.x15_c00427{left:38.506050px;}
.x6_c00427{left:43.726200px;}
.x9_c00427{left:52.725600px;}
.x8_c00427{left:59.385900px;}
.x7_c00427{left:66.045750px;}
.x3_c00427{left:92.866040px;}
.x4_c00427{left:185.386500px;}
.x1_c00427{left:228.406500px;}
.x2_c00427{left:287.446500px;}
.x5_c00427{left:416.506500px;}
.xe_c00427{left:482.564341px;}
.xf_c00427{left:492.284464px;}
.xd_c00427{left:499.844240px;}
.xb_c00427{left:501.283872px;}
.xc_c00427{left:529.150140px;}
.x13_c00427{left:567.526500px;}
.x14_c00427{left:616.846500px;}
.x12_c00427{left:837.165000px;}
.x10_c00427{left:878.566500px;}
@media print{
.v0_c00427{vertical-align:0.000000pt;}
.v1_c00427{vertical-align:18.560533pt;}
.ls1_c00427{letter-spacing:0.000000pt;}
.ls0_c00427{letter-spacing:1.043858pt;}
.ws8_c00427{word-spacing:-28.028627pt;}
.ws5_c00427{word-spacing:-12.350837pt;}
.ws4_c00427{word-spacing:-11.306979pt;}
.ws7_c00427{word-spacing:-7.803378pt;}
.ws9_c00427{word-spacing:0.000000pt;}
.ws6_c00427{word-spacing:74.197868pt;}
.ws3_c00427{word-spacing:239.963787pt;}
.ws1_c00427{word-spacing:1003.575740pt;}
.ws0_c00427{word-spacing:1682.115023pt;}
.ws2_c00427{word-spacing:3672.555617pt;}
._a_c00427{margin-left:-1.043858pt;}
._0_c00427{width:1.713071pt;}
._1_c00427{width:3.180896pt;}
._e_c00427{width:109.420849pt;}
._17_c00427{width:120.001860pt;}
._b_c00427{width:137.850063pt;}
._11_c00427{width:138.753016pt;}
._14_c00427{width:144.334220pt;}
._d_c00427{width:162.125749pt;}
._f_c00427{width:184.178698pt;}
._15_c00427{width:196.125326pt;}
._12_c00427{width:219.818038pt;}
._9_c00427{width:261.531900pt;}
._4_c00427{width:262.810630pt;}
._6_c00427{width:278.763446pt;}
._c_c00427{width:279.909752pt;}
._8_c00427{width:295.367186pt;}
._7_c00427{width:304.538675pt;}
._10_c00427{width:326.825576pt;}
._16_c00427{width:338.127225pt;}
._3_c00427{width:346.538770pt;}
._5_c00427{width:358.266866pt;}
._13_c00427{width:362.454254pt;}
._18_c00427{width:388.320865pt;}
._2_c00427{width:1037.266312pt;}
.fs2_c00427{font-size:28.069707pt;}
.fs1_c00427{font-size:40.672587pt;}
.fs0_c00427{font-size:60.722667pt;}
.fs4_c00427{font-size:70.462933pt;}
.fs3_c00427{font-size:100.822400pt;}
.y0_c00427{bottom:0.000000pt;}
.y18_c00427{bottom:19.575200pt;}
.y1f_c00427{bottom:19.575333pt;}
.y17_c00427{bottom:42.935067pt;}
.y1e_c00427{bottom:42.935200pt;}
.y16_c00427{bottom:66.294933pt;}
.y1d_c00427{bottom:66.296133pt;}
.y15_c00427{bottom:89.654800pt;}
.y1c_c00427{bottom:89.656000pt;}
.y14_c00427{bottom:113.014667pt;}
.y1b_c00427{bottom:113.015867pt;}
.y13_c00427{bottom:136.374533pt;}
.y19_c00427{bottom:136.374667pt;}
.y20_c00427{bottom:138.614533pt;}
.y1a_c00427{bottom:146.774667pt;}
.y5_c00427{bottom:167.733200pt;}
.y12_c00427{bottom:186.613200pt;}
.y7_c00427{bottom:200.853200pt;}
.y8_c00427{bottom:238.933200pt;}
.y6_c00427{bottom:263.573200pt;}
.y9_c00427{bottom:277.013200pt;}
.ya_c00427{bottom:314.933200pt;}
.yb_c00427{bottom:353.013200pt;}
.yc_c00427{bottom:391.093200pt;}
.yd_c00427{bottom:429.173200pt;}
.ye_c00427{bottom:467.093200pt;}
.yf_c00427{bottom:505.173200pt;}
.y10_c00427{bottom:543.253200pt;}
.y11_c00427{bottom:581.173200pt;}
.y4_c00427{bottom:586.453200pt;}
.y3_c00427{bottom:596.533413pt;}
.y2_c00427{bottom:606.453200pt;}
.y1_c00427{bottom:628.373200pt;}
.y27_c00427{bottom:657.333200pt;}
.y24_c00427{bottom:667.572933pt;}
.y26_c00427{bottom:673.493200pt;}
.y23_c00427{bottom:690.613067pt;}
.y21_c00427{bottom:697.013200pt;}
.y25_c00427{bottom:706.293200pt;}
.y22_c00427{bottom:713.653200pt;}
.h3_c00427{height:29.610755pt;}
.h4_c00427{height:38.996047pt;}
.h2_c00427{height:44.207762pt;}
.h6_c00427{height:51.298942pt;}
.h5_c00427{height:73.401464pt;}
.h0_c00427{height:793.332933pt;}
.h1_c00427{height:793.333333pt;}
.w0_c00427{width:1122.666400pt;}
.w1_c00427{width:1122.666667pt;}
.x0_c00427{left:0.000000pt;}
.xa_c00427{left:24.147333pt;}
.x11_c00427{left:31.347333pt;}
.x15_c00427{left:34.227600pt;}
.x6_c00427{left:38.867733pt;}
.x9_c00427{left:46.867200pt;}
.x8_c00427{left:52.787467pt;}
.x7_c00427{left:58.707333pt;}
.x3_c00427{left:82.547591pt;}
.x4_c00427{left:164.788000pt;}
.x1_c00427{left:203.028000pt;}
.x2_c00427{left:255.508000pt;}
.x5_c00427{left:370.228000pt;}
.xe_c00427{left:428.946081pt;}
.xf_c00427{left:437.586190pt;}
.xd_c00427{left:444.305991pt;}
.xb_c00427{left:445.585664pt;}
.xc_c00427{left:470.355680pt;}
.x13_c00427{left:504.468000pt;}
.x14_c00427{left:548.308000pt;}
.x12_c00427{left:744.146667pt;}
.x10_c00427{left:780.948000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5f9570f6a5e21a5e38b64758.woff2')format("woff");}.ff1_c00428{font-family:ff1_c00428;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00428{transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);}
.m1_c00428{transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);}
.m4_c00428{transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);}
.m3_c00428{transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);}
.m0_c00428{transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);}
.v0_c00428{vertical-align:0.000000px;}
.v1_c00428{vertical-align:20.880600px;}
.ls1_c00428{letter-spacing:0.000000px;}
.ls0_c00428{letter-spacing:1.174340px;}
.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;}
}
.ws8_c00428{word-spacing:-31.532206px;}
.ws5_c00428{word-spacing:-13.894692px;}
.ws4_c00428{word-spacing:-12.720351px;}
.ws7_c00428{word-spacing:-8.778801px;}
.ws9_c00428{word-spacing:0.000000px;}
.ws6_c00428{word-spacing:83.472601px;}
.ws3_c00428{word-spacing:269.959261px;}
.ws1_c00428{word-spacing:1129.022707px;}
.ws0_c00428{word-spacing:1892.379401px;}
.ws2_c00428{word-spacing:4131.625069px;}
._a_c00428{margin-left:-1.174340px;}
._0_c00428{width:1.927205px;}
._1_c00428{width:3.578508px;}
._e_c00428{width:123.098455px;}
._17_c00428{width:135.002093px;}
._b_c00428{width:155.081320px;}
._11_c00428{width:156.097143px;}
._14_c00428{width:162.375998px;}
._d_c00428{width:182.391467px;}
._f_c00428{width:207.201036px;}
._15_c00428{width:220.640991px;}
._12_c00428{width:247.295292px;}
._9_c00428{width:294.223388px;}
._4_c00428{width:295.661959px;}
._6_c00428{width:313.608876px;}
._c_c00428{width:314.898471px;}
._8_c00428{width:332.288085px;}
._7_c00428{width:342.606009px;}
._10_c00428{width:367.678773px;}
._16_c00428{width:380.393128px;}
._3_c00428{width:389.856116px;}
._5_c00428{width:403.050224px;}
._13_c00428{width:407.761036px;}
._18_c00428{width:436.860973px;}
._2_c00428{width:1166.924601px;}
.fc1_c00428{color:transparent;}
.fc0_c00428{color:rgb(0,0,0);}
.fs2_c00428{font-size:31.578420px;}
.fs1_c00428{font-size:45.756660px;}
.fs0_c00428{font-size:68.313000px;}
.fs4_c00428{font-size:79.270800px;}
.fs3_c00428{font-size:113.425200px;}
.y0_c00428{bottom:0.000000px;}
.y18_c00428{bottom:22.022100px;}
.y1f_c00428{bottom:22.022250px;}
.y17_c00428{bottom:48.301950px;}
.y1e_c00428{bottom:48.302100px;}
.y16_c00428{bottom:74.581800px;}
.y1d_c00428{bottom:74.583150px;}
.y15_c00428{bottom:100.861650px;}
.y1c_c00428{bottom:100.863000px;}
.y14_c00428{bottom:127.141500px;}
.y1b_c00428{bottom:127.142850px;}
.y13_c00428{bottom:153.421350px;}
.y19_c00428{bottom:153.421500px;}
.y20_c00428{bottom:155.941350px;}
.y1a_c00428{bottom:165.121500px;}
.y5_c00428{bottom:188.699850px;}
.y12_c00428{bottom:209.939850px;}
.y7_c00428{bottom:225.959850px;}
.y8_c00428{bottom:268.799850px;}
.y6_c00428{bottom:296.519850px;}
.y9_c00428{bottom:311.639850px;}
.ya_c00428{bottom:354.299850px;}
.yb_c00428{bottom:397.139850px;}
.yc_c00428{bottom:439.979850px;}
.yd_c00428{bottom:482.819850px;}
.ye_c00428{bottom:525.479850px;}
.yf_c00428{bottom:568.319850px;}
.y10_c00428{bottom:611.159850px;}
.y11_c00428{bottom:653.819850px;}
.y4_c00428{bottom:659.759850px;}
.y3_c00428{bottom:671.100090px;}
.y2_c00428{bottom:682.259850px;}
.y1_c00428{bottom:706.919850px;}
.y27_c00428{bottom:739.499850px;}
.y24_c00428{bottom:751.019550px;}
.y26_c00428{bottom:757.679850px;}
.y23_c00428{bottom:776.939700px;}
.y21_c00428{bottom:784.139850px;}
.y25_c00428{bottom:794.579850px;}
.y22_c00428{bottom:802.859850px;}
.h3_c00428{height:33.312100px;}
.h4_c00428{height:43.870553px;}
.h2_c00428{height:49.733732px;}
.h6_c00428{height:57.711310px;}
.h5_c00428{height:82.576647px;}
.h0_c00428{height:892.499550px;}
.h1_c00428{height:892.500000px;}
.w0_c00428{width:1262.999700px;}
.w1_c00428{width:1263.000000px;}
.x0_c00428{left:0.000000px;}
.xa_c00428{left:27.165750px;}
.x11_c00428{left:35.265750px;}
.x15_c00428{left:38.506050px;}
.x6_c00428{left:43.726200px;}
.x9_c00428{left:52.725600px;}
.x8_c00428{left:59.385900px;}
.x7_c00428{left:66.045750px;}
.x3_c00428{left:92.866040px;}
.x4_c00428{left:185.386500px;}
.x1_c00428{left:228.406500px;}
.x2_c00428{left:287.446500px;}
.x5_c00428{left:416.506500px;}
.xe_c00428{left:482.564341px;}
.xf_c00428{left:492.284464px;}
.xd_c00428{left:499.844240px;}
.xb_c00428{left:501.283872px;}
.xc_c00428{left:529.150140px;}
.x13_c00428{left:567.526500px;}
.x14_c00428{left:616.846500px;}
.x12_c00428{left:837.165000px;}
.x10_c00428{left:878.566500px;}
@media print{
.v0_c00428{vertical-align:0.000000pt;}
.v1_c00428{vertical-align:18.560533pt;}
.ls1_c00428{letter-spacing:0.000000pt;}
.ls0_c00428{letter-spacing:1.043858pt;}
.ws8_c00428{word-spacing:-28.028627pt;}
.ws5_c00428{word-spacing:-12.350837pt;}
.ws4_c00428{word-spacing:-11.306979pt;}
.ws7_c00428{word-spacing:-7.803378pt;}
.ws9_c00428{word-spacing:0.000000pt;}
.ws6_c00428{word-spacing:74.197868pt;}
.ws3_c00428{word-spacing:239.963787pt;}
.ws1_c00428{word-spacing:1003.575740pt;}
.ws0_c00428{word-spacing:1682.115023pt;}
.ws2_c00428{word-spacing:3672.555617pt;}
._a_c00428{margin-left:-1.043858pt;}
._0_c00428{width:1.713071pt;}
._1_c00428{width:3.180896pt;}
._e_c00428{width:109.420849pt;}
._17_c00428{width:120.001860pt;}
._b_c00428{width:137.850063pt;}
._11_c00428{width:138.753016pt;}
._14_c00428{width:144.334220pt;}
._d_c00428{width:162.125749pt;}
._f_c00428{width:184.178698pt;}
._15_c00428{width:196.125326pt;}
._12_c00428{width:219.818038pt;}
._9_c00428{width:261.531900pt;}
._4_c00428{width:262.810630pt;}
._6_c00428{width:278.763446pt;}
._c_c00428{width:279.909752pt;}
._8_c00428{width:295.367186pt;}
._7_c00428{width:304.538675pt;}
._10_c00428{width:326.825576pt;}
._16_c00428{width:338.127225pt;}
._3_c00428{width:346.538770pt;}
._5_c00428{width:358.266866pt;}
._13_c00428{width:362.454254pt;}
._18_c00428{width:388.320865pt;}
._2_c00428{width:1037.266312pt;}
.fs2_c00428{font-size:28.069707pt;}
.fs1_c00428{font-size:40.672587pt;}
.fs0_c00428{font-size:60.722667pt;}
.fs4_c00428{font-size:70.462933pt;}
.fs3_c00428{font-size:100.822400pt;}
.y0_c00428{bottom:0.000000pt;}
.y18_c00428{bottom:19.575200pt;}
.y1f_c00428{bottom:19.575333pt;}
.y17_c00428{bottom:42.935067pt;}
.y1e_c00428{bottom:42.935200pt;}
.y16_c00428{bottom:66.294933pt;}
.y1d_c00428{bottom:66.296133pt;}
.y15_c00428{bottom:89.654800pt;}
.y1c_c00428{bottom:89.656000pt;}
.y14_c00428{bottom:113.014667pt;}
.y1b_c00428{bottom:113.015867pt;}
.y13_c00428{bottom:136.374533pt;}
.y19_c00428{bottom:136.374667pt;}
.y20_c00428{bottom:138.614533pt;}
.y1a_c00428{bottom:146.774667pt;}
.y5_c00428{bottom:167.733200pt;}
.y12_c00428{bottom:186.613200pt;}
.y7_c00428{bottom:200.853200pt;}
.y8_c00428{bottom:238.933200pt;}
.y6_c00428{bottom:263.573200pt;}
.y9_c00428{bottom:277.013200pt;}
.ya_c00428{bottom:314.933200pt;}
.yb_c00428{bottom:353.013200pt;}
.yc_c00428{bottom:391.093200pt;}
.yd_c00428{bottom:429.173200pt;}
.ye_c00428{bottom:467.093200pt;}
.yf_c00428{bottom:505.173200pt;}
.y10_c00428{bottom:543.253200pt;}
.y11_c00428{bottom:581.173200pt;}
.y4_c00428{bottom:586.453200pt;}
.y3_c00428{bottom:596.533413pt;}
.y2_c00428{bottom:606.453200pt;}
.y1_c00428{bottom:628.373200pt;}
.y27_c00428{bottom:657.333200pt;}
.y24_c00428{bottom:667.572933pt;}
.y26_c00428{bottom:673.493200pt;}
.y23_c00428{bottom:690.613067pt;}
.y21_c00428{bottom:697.013200pt;}
.y25_c00428{bottom:706.293200pt;}
.y22_c00428{bottom:713.653200pt;}
.h3_c00428{height:29.610755pt;}
.h4_c00428{height:38.996047pt;}
.h2_c00428{height:44.207762pt;}
.h6_c00428{height:51.298942pt;}
.h5_c00428{height:73.401464pt;}
.h0_c00428{height:793.332933pt;}
.h1_c00428{height:793.333333pt;}
.w0_c00428{width:1122.666400pt;}
.w1_c00428{width:1122.666667pt;}
.x0_c00428{left:0.000000pt;}
.xa_c00428{left:24.147333pt;}
.x11_c00428{left:31.347333pt;}
.x15_c00428{left:34.227600pt;}
.x6_c00428{left:38.867733pt;}
.x9_c00428{left:46.867200pt;}
.x8_c00428{left:52.787467pt;}
.x7_c00428{left:58.707333pt;}
.x3_c00428{left:82.547591pt;}
.x4_c00428{left:164.788000pt;}
.x1_c00428{left:203.028000pt;}
.x2_c00428{left:255.508000pt;}
.x5_c00428{left:370.228000pt;}
.xe_c00428{left:428.946081pt;}
.xf_c00428{left:437.586190pt;}
.xd_c00428{left:444.305991pt;}
.xb_c00428{left:445.585664pt;}
.xc_c00428{left:470.355680pt;}
.x13_c00428{left:504.468000pt;}
.x14_c00428{left:548.308000pt;}
.x12_c00428{left:744.146667pt;}
.x10_c00428{left:780.948000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_717a024b665eccd790a72461.woff2')format("woff");}.ff1_c00429{font-family:ff1_c00429;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00429{transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);}
.m1_c00429{transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);}
.m4_c00429{transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);}
.m3_c00429{transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);}
.m0_c00429{transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);}
.v0_c00429{vertical-align:0.000000px;}
.v1_c00429{vertical-align:20.880600px;}
.ls1_c00429{letter-spacing:0.000000px;}
.ls0_c00429{letter-spacing:1.174340px;}
.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;}
}
.ws8_c00429{word-spacing:-31.532206px;}
.ws5_c00429{word-spacing:-13.894692px;}
.ws4_c00429{word-spacing:-12.720351px;}
.ws7_c00429{word-spacing:-8.778801px;}
.ws9_c00429{word-spacing:0.000000px;}
.ws6_c00429{word-spacing:83.472601px;}
.ws3_c00429{word-spacing:269.959261px;}
.ws1_c00429{word-spacing:1129.022707px;}
.ws0_c00429{word-spacing:1892.379401px;}
.ws2_c00429{word-spacing:4131.625069px;}
._a_c00429{margin-left:-1.174340px;}
._0_c00429{width:1.927205px;}
._1_c00429{width:3.578508px;}
._e_c00429{width:123.098455px;}
._17_c00429{width:135.002093px;}
._b_c00429{width:155.081320px;}
._11_c00429{width:156.097143px;}
._14_c00429{width:162.375998px;}
._d_c00429{width:182.391467px;}
._f_c00429{width:207.201036px;}
._15_c00429{width:220.640991px;}
._12_c00429{width:247.295292px;}
._9_c00429{width:294.223388px;}
._4_c00429{width:295.661959px;}
._6_c00429{width:313.608876px;}
._c_c00429{width:314.898471px;}
._8_c00429{width:332.288085px;}
._7_c00429{width:342.606009px;}
._10_c00429{width:367.678773px;}
._16_c00429{width:380.393128px;}
._3_c00429{width:389.856116px;}
._5_c00429{width:403.050224px;}
._13_c00429{width:407.761036px;}
._18_c00429{width:436.860973px;}
._2_c00429{width:1166.924601px;}
.fc1_c00429{color:transparent;}
.fc0_c00429{color:rgb(0,0,0);}
.fs2_c00429{font-size:31.578420px;}
.fs1_c00429{font-size:45.756660px;}
.fs0_c00429{font-size:68.313000px;}
.fs4_c00429{font-size:79.270800px;}
.fs3_c00429{font-size:113.425200px;}
.y0_c00429{bottom:0.000000px;}
.y18_c00429{bottom:22.022100px;}
.y1f_c00429{bottom:22.022250px;}
.y17_c00429{bottom:48.301950px;}
.y1e_c00429{bottom:48.302100px;}
.y16_c00429{bottom:74.581800px;}
.y1d_c00429{bottom:74.583150px;}
.y15_c00429{bottom:100.861650px;}
.y1c_c00429{bottom:100.863000px;}
.y14_c00429{bottom:127.141500px;}
.y1b_c00429{bottom:127.142850px;}
.y13_c00429{bottom:153.421350px;}
.y19_c00429{bottom:153.421500px;}
.y20_c00429{bottom:155.941350px;}
.y1a_c00429{bottom:165.121500px;}
.y5_c00429{bottom:188.699850px;}
.y12_c00429{bottom:209.939850px;}
.y7_c00429{bottom:225.959850px;}
.y8_c00429{bottom:268.799850px;}
.y6_c00429{bottom:296.519850px;}
.y9_c00429{bottom:311.639850px;}
.ya_c00429{bottom:354.299850px;}
.yb_c00429{bottom:397.139850px;}
.yc_c00429{bottom:439.979850px;}
.yd_c00429{bottom:482.819850px;}
.ye_c00429{bottom:525.479850px;}
.yf_c00429{bottom:568.319850px;}
.y10_c00429{bottom:611.159850px;}
.y11_c00429{bottom:653.819850px;}
.y4_c00429{bottom:659.759850px;}
.y3_c00429{bottom:671.100090px;}
.y2_c00429{bottom:682.259850px;}
.y1_c00429{bottom:706.919850px;}
.y27_c00429{bottom:739.499850px;}
.y24_c00429{bottom:751.019550px;}
.y26_c00429{bottom:757.679850px;}
.y23_c00429{bottom:776.939700px;}
.y21_c00429{bottom:784.139850px;}
.y25_c00429{bottom:794.579850px;}
.y22_c00429{bottom:802.859850px;}
.h3_c00429{height:33.312100px;}
.h4_c00429{height:43.870553px;}
.h2_c00429{height:49.733732px;}
.h6_c00429{height:57.711310px;}
.h5_c00429{height:82.576647px;}
.h0_c00429{height:892.499550px;}
.h1_c00429{height:892.500000px;}
.w0_c00429{width:1262.999700px;}
.w1_c00429{width:1263.000000px;}
.x0_c00429{left:0.000000px;}
.xa_c00429{left:27.165750px;}
.x11_c00429{left:35.265750px;}
.x15_c00429{left:38.506050px;}
.x6_c00429{left:43.726200px;}
.x9_c00429{left:52.725600px;}
.x8_c00429{left:59.385900px;}
.x7_c00429{left:66.045750px;}
.x3_c00429{left:92.866040px;}
.x4_c00429{left:185.386500px;}
.x1_c00429{left:228.406500px;}
.x2_c00429{left:287.446500px;}
.x5_c00429{left:416.506500px;}
.xe_c00429{left:482.564341px;}
.xf_c00429{left:492.284464px;}
.xd_c00429{left:499.844240px;}
.xb_c00429{left:501.283872px;}
.xc_c00429{left:529.150140px;}
.x13_c00429{left:567.526500px;}
.x14_c00429{left:616.846500px;}
.x12_c00429{left:837.165000px;}
.x10_c00429{left:878.566500px;}
@media print{
.v0_c00429{vertical-align:0.000000pt;}
.v1_c00429{vertical-align:18.560533pt;}
.ls1_c00429{letter-spacing:0.000000pt;}
.ls0_c00429{letter-spacing:1.043858pt;}
.ws8_c00429{word-spacing:-28.028627pt;}
.ws5_c00429{word-spacing:-12.350837pt;}
.ws4_c00429{word-spacing:-11.306979pt;}
.ws7_c00429{word-spacing:-7.803378pt;}
.ws9_c00429{word-spacing:0.000000pt;}
.ws6_c00429{word-spacing:74.197868pt;}
.ws3_c00429{word-spacing:239.963787pt;}
.ws1_c00429{word-spacing:1003.575740pt;}
.ws0_c00429{word-spacing:1682.115023pt;}
.ws2_c00429{word-spacing:3672.555617pt;}
._a_c00429{margin-left:-1.043858pt;}
._0_c00429{width:1.713071pt;}
._1_c00429{width:3.180896pt;}
._e_c00429{width:109.420849pt;}
._17_c00429{width:120.001860pt;}
._b_c00429{width:137.850063pt;}
._11_c00429{width:138.753016pt;}
._14_c00429{width:144.334220pt;}
._d_c00429{width:162.125749pt;}
._f_c00429{width:184.178698pt;}
._15_c00429{width:196.125326pt;}
._12_c00429{width:219.818038pt;}
._9_c00429{width:261.531900pt;}
._4_c00429{width:262.810630pt;}
._6_c00429{width:278.763446pt;}
._c_c00429{width:279.909752pt;}
._8_c00429{width:295.367186pt;}
._7_c00429{width:304.538675pt;}
._10_c00429{width:326.825576pt;}
._16_c00429{width:338.127225pt;}
._3_c00429{width:346.538770pt;}
._5_c00429{width:358.266866pt;}
._13_c00429{width:362.454254pt;}
._18_c00429{width:388.320865pt;}
._2_c00429{width:1037.266312pt;}
.fs2_c00429{font-size:28.069707pt;}
.fs1_c00429{font-size:40.672587pt;}
.fs0_c00429{font-size:60.722667pt;}
.fs4_c00429{font-size:70.462933pt;}
.fs3_c00429{font-size:100.822400pt;}
.y0_c00429{bottom:0.000000pt;}
.y18_c00429{bottom:19.575200pt;}
.y1f_c00429{bottom:19.575333pt;}
.y17_c00429{bottom:42.935067pt;}
.y1e_c00429{bottom:42.935200pt;}
.y16_c00429{bottom:66.294933pt;}
.y1d_c00429{bottom:66.296133pt;}
.y15_c00429{bottom:89.654800pt;}
.y1c_c00429{bottom:89.656000pt;}
.y14_c00429{bottom:113.014667pt;}
.y1b_c00429{bottom:113.015867pt;}
.y13_c00429{bottom:136.374533pt;}
.y19_c00429{bottom:136.374667pt;}
.y20_c00429{bottom:138.614533pt;}
.y1a_c00429{bottom:146.774667pt;}
.y5_c00429{bottom:167.733200pt;}
.y12_c00429{bottom:186.613200pt;}
.y7_c00429{bottom:200.853200pt;}
.y8_c00429{bottom:238.933200pt;}
.y6_c00429{bottom:263.573200pt;}
.y9_c00429{bottom:277.013200pt;}
.ya_c00429{bottom:314.933200pt;}
.yb_c00429{bottom:353.013200pt;}
.yc_c00429{bottom:391.093200pt;}
.yd_c00429{bottom:429.173200pt;}
.ye_c00429{bottom:467.093200pt;}
.yf_c00429{bottom:505.173200pt;}
.y10_c00429{bottom:543.253200pt;}
.y11_c00429{bottom:581.173200pt;}
.y4_c00429{bottom:586.453200pt;}
.y3_c00429{bottom:596.533413pt;}
.y2_c00429{bottom:606.453200pt;}
.y1_c00429{bottom:628.373200pt;}
.y27_c00429{bottom:657.333200pt;}
.y24_c00429{bottom:667.572933pt;}
.y26_c00429{bottom:673.493200pt;}
.y23_c00429{bottom:690.613067pt;}
.y21_c00429{bottom:697.013200pt;}
.y25_c00429{bottom:706.293200pt;}
.y22_c00429{bottom:713.653200pt;}
.h3_c00429{height:29.610755pt;}
.h4_c00429{height:38.996047pt;}
.h2_c00429{height:44.207762pt;}
.h6_c00429{height:51.298942pt;}
.h5_c00429{height:73.401464pt;}
.h0_c00429{height:793.332933pt;}
.h1_c00429{height:793.333333pt;}
.w0_c00429{width:1122.666400pt;}
.w1_c00429{width:1122.666667pt;}
.x0_c00429{left:0.000000pt;}
.xa_c00429{left:24.147333pt;}
.x11_c00429{left:31.347333pt;}
.x15_c00429{left:34.227600pt;}
.x6_c00429{left:38.867733pt;}
.x9_c00429{left:46.867200pt;}
.x8_c00429{left:52.787467pt;}
.x7_c00429{left:58.707333pt;}
.x3_c00429{left:82.547591pt;}
.x4_c00429{left:164.788000pt;}
.x1_c00429{left:203.028000pt;}
.x2_c00429{left:255.508000pt;}
.x5_c00429{left:370.228000pt;}
.xe_c00429{left:428.946081pt;}
.xf_c00429{left:437.586190pt;}
.xd_c00429{left:444.305991pt;}
.xb_c00429{left:445.585664pt;}
.xc_c00429{left:470.355680pt;}
.x13_c00429{left:504.468000pt;}
.x14_c00429{left:548.308000pt;}
.x12_c00429{left:744.146667pt;}
.x10_c00429{left:780.948000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_434b1570c9a2fbef0b5d4a04.woff2')format("woff");}.ff1_c00430{font-family:ff1_c00430;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00430{transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);}
.m1_c00430{transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);}
.m4_c00430{transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);}
.m3_c00430{transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);}
.m0_c00430{transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);}
.v0_c00430{vertical-align:0.000000px;}
.v1_c00430{vertical-align:20.880600px;}
.ls1_c00430{letter-spacing:0.000000px;}
.ls0_c00430{letter-spacing:1.174340px;}
.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;}
}
.ws8_c00430{word-spacing:-31.532206px;}
.ws5_c00430{word-spacing:-13.894692px;}
.ws4_c00430{word-spacing:-12.720351px;}
.ws7_c00430{word-spacing:-8.778801px;}
.ws9_c00430{word-spacing:0.000000px;}
.ws6_c00430{word-spacing:83.472601px;}
.ws3_c00430{word-spacing:269.959261px;}
.ws1_c00430{word-spacing:1129.022707px;}
.ws0_c00430{word-spacing:1892.379401px;}
.ws2_c00430{word-spacing:4131.625069px;}
._a_c00430{margin-left:-1.174340px;}
._0_c00430{width:1.927205px;}
._1_c00430{width:3.578508px;}
._e_c00430{width:123.098455px;}
._17_c00430{width:135.002093px;}
._b_c00430{width:155.081320px;}
._11_c00430{width:156.097143px;}
._14_c00430{width:162.375998px;}
._d_c00430{width:182.391467px;}
._f_c00430{width:207.201036px;}
._15_c00430{width:220.640991px;}
._12_c00430{width:247.295292px;}
._9_c00430{width:294.223388px;}
._4_c00430{width:295.661959px;}
._6_c00430{width:313.608876px;}
._c_c00430{width:314.898471px;}
._8_c00430{width:332.288085px;}
._7_c00430{width:342.606009px;}
._10_c00430{width:367.678773px;}
._16_c00430{width:380.393128px;}
._3_c00430{width:389.856116px;}
._5_c00430{width:403.050224px;}
._13_c00430{width:407.761036px;}
._18_c00430{width:436.860973px;}
._2_c00430{width:1166.924601px;}
.fc1_c00430{color:transparent;}
.fc0_c00430{color:rgb(0,0,0);}
.fs2_c00430{font-size:31.578420px;}
.fs1_c00430{font-size:45.756660px;}
.fs0_c00430{font-size:68.313000px;}
.fs4_c00430{font-size:79.270800px;}
.fs3_c00430{font-size:113.425200px;}
.y0_c00430{bottom:0.000000px;}
.y18_c00430{bottom:22.022100px;}
.y1e_c00430{bottom:22.022250px;}
.y17_c00430{bottom:48.301950px;}
.y1d_c00430{bottom:48.302100px;}
.y16_c00430{bottom:74.581800px;}
.y1c_c00430{bottom:74.583150px;}
.y15_c00430{bottom:100.861650px;}
.y1b_c00430{bottom:100.863000px;}
.y14_c00430{bottom:127.141500px;}
.y1a_c00430{bottom:127.142850px;}
.y13_c00430{bottom:153.421350px;}
.y19_c00430{bottom:153.421500px;}
.y1f_c00430{bottom:155.941350px;}
.y5_c00430{bottom:188.699850px;}
.y12_c00430{bottom:209.939850px;}
.y7_c00430{bottom:225.959850px;}
.y8_c00430{bottom:268.799850px;}
.y6_c00430{bottom:296.519850px;}
.y9_c00430{bottom:311.639850px;}
.ya_c00430{bottom:354.299850px;}
.yb_c00430{bottom:397.139850px;}
.yc_c00430{bottom:439.979850px;}
.yd_c00430{bottom:482.819850px;}
.ye_c00430{bottom:525.479850px;}
.yf_c00430{bottom:568.319850px;}
.y10_c00430{bottom:611.159850px;}
.y11_c00430{bottom:653.819850px;}
.y4_c00430{bottom:659.759850px;}
.y3_c00430{bottom:671.100090px;}
.y2_c00430{bottom:682.259850px;}
.y1_c00430{bottom:706.919850px;}
.y26_c00430{bottom:739.499850px;}
.y23_c00430{bottom:751.019550px;}
.y25_c00430{bottom:757.679850px;}
.y22_c00430{bottom:776.939700px;}
.y20_c00430{bottom:784.139850px;}
.y24_c00430{bottom:794.579850px;}
.y21_c00430{bottom:802.859850px;}
.h3_c00430{height:33.312100px;}
.h4_c00430{height:43.870553px;}
.h2_c00430{height:49.733732px;}
.h6_c00430{height:57.711310px;}
.h5_c00430{height:82.576647px;}
.h0_c00430{height:892.499550px;}
.h1_c00430{height:892.500000px;}
.w0_c00430{width:1262.999700px;}
.w1_c00430{width:1263.000000px;}
.x0_c00430{left:0.000000px;}
.xa_c00430{left:27.165750px;}
.x10_c00430{left:35.265750px;}
.x14_c00430{left:38.506050px;}
.x6_c00430{left:43.726200px;}
.x9_c00430{left:52.725600px;}
.x8_c00430{left:59.385900px;}
.x7_c00430{left:66.045750px;}
.x3_c00430{left:92.866040px;}
.x4_c00430{left:185.386500px;}
.x1_c00430{left:228.406500px;}
.x2_c00430{left:287.446500px;}
.x5_c00430{left:416.506500px;}
.xd_c00430{left:482.564325px;}
.xe_c00430{left:492.283862px;}
.xc_c00430{left:499.844223px;}
.xb_c00430{left:501.283872px;}
.x12_c00430{left:567.526500px;}
.x13_c00430{left:616.846500px;}
.x11_c00430{left:837.165000px;}
.xf_c00430{left:878.566500px;}
@media print{
.v0_c00430{vertical-align:0.000000pt;}
.v1_c00430{vertical-align:18.560533pt;}
.ls1_c00430{letter-spacing:0.000000pt;}
.ls0_c00430{letter-spacing:1.043858pt;}
.ws8_c00430{word-spacing:-28.028627pt;}
.ws5_c00430{word-spacing:-12.350837pt;}
.ws4_c00430{word-spacing:-11.306979pt;}
.ws7_c00430{word-spacing:-7.803378pt;}
.ws9_c00430{word-spacing:0.000000pt;}
.ws6_c00430{word-spacing:74.197868pt;}
.ws3_c00430{word-spacing:239.963787pt;}
.ws1_c00430{word-spacing:1003.575740pt;}
.ws0_c00430{word-spacing:1682.115023pt;}
.ws2_c00430{word-spacing:3672.555617pt;}
._a_c00430{margin-left:-1.043858pt;}
._0_c00430{width:1.713071pt;}
._1_c00430{width:3.180896pt;}
._e_c00430{width:109.420849pt;}
._17_c00430{width:120.001860pt;}
._b_c00430{width:137.850063pt;}
._11_c00430{width:138.753016pt;}
._14_c00430{width:144.334220pt;}
._d_c00430{width:162.125749pt;}
._f_c00430{width:184.178698pt;}
._15_c00430{width:196.125326pt;}
._12_c00430{width:219.818038pt;}
._9_c00430{width:261.531900pt;}
._4_c00430{width:262.810630pt;}
._6_c00430{width:278.763446pt;}
._c_c00430{width:279.909752pt;}
._8_c00430{width:295.367186pt;}
._7_c00430{width:304.538675pt;}
._10_c00430{width:326.825576pt;}
._16_c00430{width:338.127225pt;}
._3_c00430{width:346.538770pt;}
._5_c00430{width:358.266866pt;}
._13_c00430{width:362.454254pt;}
._18_c00430{width:388.320865pt;}
._2_c00430{width:1037.266312pt;}
.fs2_c00430{font-size:28.069707pt;}
.fs1_c00430{font-size:40.672587pt;}
.fs0_c00430{font-size:60.722667pt;}
.fs4_c00430{font-size:70.462933pt;}
.fs3_c00430{font-size:100.822400pt;}
.y0_c00430{bottom:0.000000pt;}
.y18_c00430{bottom:19.575200pt;}
.y1e_c00430{bottom:19.575333pt;}
.y17_c00430{bottom:42.935067pt;}
.y1d_c00430{bottom:42.935200pt;}
.y16_c00430{bottom:66.294933pt;}
.y1c_c00430{bottom:66.296133pt;}
.y15_c00430{bottom:89.654800pt;}
.y1b_c00430{bottom:89.656000pt;}
.y14_c00430{bottom:113.014667pt;}
.y1a_c00430{bottom:113.015867pt;}
.y13_c00430{bottom:136.374533pt;}
.y19_c00430{bottom:136.374667pt;}
.y1f_c00430{bottom:138.614533pt;}
.y5_c00430{bottom:167.733200pt;}
.y12_c00430{bottom:186.613200pt;}
.y7_c00430{bottom:200.853200pt;}
.y8_c00430{bottom:238.933200pt;}
.y6_c00430{bottom:263.573200pt;}
.y9_c00430{bottom:277.013200pt;}
.ya_c00430{bottom:314.933200pt;}
.yb_c00430{bottom:353.013200pt;}
.yc_c00430{bottom:391.093200pt;}
.yd_c00430{bottom:429.173200pt;}
.ye_c00430{bottom:467.093200pt;}
.yf_c00430{bottom:505.173200pt;}
.y10_c00430{bottom:543.253200pt;}
.y11_c00430{bottom:581.173200pt;}
.y4_c00430{bottom:586.453200pt;}
.y3_c00430{bottom:596.533413pt;}
.y2_c00430{bottom:606.453200pt;}
.y1_c00430{bottom:628.373200pt;}
.y26_c00430{bottom:657.333200pt;}
.y23_c00430{bottom:667.572933pt;}
.y25_c00430{bottom:673.493200pt;}
.y22_c00430{bottom:690.613067pt;}
.y20_c00430{bottom:697.013200pt;}
.y24_c00430{bottom:706.293200pt;}
.y21_c00430{bottom:713.653200pt;}
.h3_c00430{height:29.610755pt;}
.h4_c00430{height:38.996047pt;}
.h2_c00430{height:44.207762pt;}
.h6_c00430{height:51.298942pt;}
.h5_c00430{height:73.401464pt;}
.h0_c00430{height:793.332933pt;}
.h1_c00430{height:793.333333pt;}
.w0_c00430{width:1122.666400pt;}
.w1_c00430{width:1122.666667pt;}
.x0_c00430{left:0.000000pt;}
.xa_c00430{left:24.147333pt;}
.x10_c00430{left:31.347333pt;}
.x14_c00430{left:34.227600pt;}
.x6_c00430{left:38.867733pt;}
.x9_c00430{left:46.867200pt;}
.x8_c00430{left:52.787467pt;}
.x7_c00430{left:58.707333pt;}
.x3_c00430{left:82.547591pt;}
.x4_c00430{left:164.788000pt;}
.x1_c00430{left:203.028000pt;}
.x2_c00430{left:255.508000pt;}
.x5_c00430{left:370.228000pt;}
.xd_c00430{left:428.946066pt;}
.xe_c00430{left:437.585655pt;}
.xc_c00430{left:444.305976pt;}
.xb_c00430{left:445.585664pt;}
.x12_c00430{left:504.468000pt;}
.x13_c00430{left:548.308000pt;}
.x11_c00430{left:744.146667pt;}
.xf_c00430{left:780.948000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1709b5f0452a0be501ec384e.woff2')format("woff");}.ff1_c00431{font-family:ff1_c00431;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00431{transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);}
.m1_c00431{transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);}
.m4_c00431{transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);}
.m3_c00431{transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);}
.m0_c00431{transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);}
.v0_c00431{vertical-align:0.000000px;}
.v1_c00431{vertical-align:20.880600px;}
.ls1_c00431{letter-spacing:0.000000px;}
.ls0_c00431{letter-spacing:1.174340px;}
.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;}
}
.ws8_c00431{word-spacing:-31.532206px;}
.ws5_c00431{word-spacing:-13.894692px;}
.ws4_c00431{word-spacing:-12.720351px;}
.ws7_c00431{word-spacing:-8.778801px;}
.ws9_c00431{word-spacing:0.000000px;}
.ws6_c00431{word-spacing:83.472601px;}
.ws3_c00431{word-spacing:269.959261px;}
.ws1_c00431{word-spacing:1129.022707px;}
.ws0_c00431{word-spacing:1892.379401px;}
.ws2_c00431{word-spacing:4131.625069px;}
._a_c00431{margin-left:-1.174340px;}
._0_c00431{width:1.927205px;}
._1_c00431{width:3.578508px;}
._e_c00431{width:123.098455px;}
._17_c00431{width:135.002093px;}
._b_c00431{width:155.081320px;}
._11_c00431{width:156.097143px;}
._14_c00431{width:162.375998px;}
._d_c00431{width:182.391467px;}
._f_c00431{width:207.201036px;}
._15_c00431{width:220.640991px;}
._12_c00431{width:247.295292px;}
._9_c00431{width:294.223388px;}
._4_c00431{width:295.661959px;}
._6_c00431{width:313.608876px;}
._c_c00431{width:314.898471px;}
._8_c00431{width:332.288085px;}
._7_c00431{width:342.606009px;}
._10_c00431{width:367.678773px;}
._16_c00431{width:380.393128px;}
._3_c00431{width:389.856116px;}
._5_c00431{width:403.050224px;}
._13_c00431{width:407.761036px;}
._18_c00431{width:436.860973px;}
._2_c00431{width:1166.924601px;}
.fc1_c00431{color:transparent;}
.fc0_c00431{color:rgb(0,0,0);}
.fs2_c00431{font-size:31.578420px;}
.fs1_c00431{font-size:45.756660px;}
.fs0_c00431{font-size:68.313000px;}
.fs4_c00431{font-size:79.270800px;}
.fs3_c00431{font-size:113.425200px;}
.y0_c00431{bottom:0.000000px;}
.y18_c00431{bottom:22.022100px;}
.y1e_c00431{bottom:22.022250px;}
.y17_c00431{bottom:48.301950px;}
.y1d_c00431{bottom:48.302100px;}
.y16_c00431{bottom:74.581800px;}
.y1c_c00431{bottom:74.583150px;}
.y15_c00431{bottom:100.861650px;}
.y1b_c00431{bottom:100.863000px;}
.y14_c00431{bottom:127.141500px;}
.y1a_c00431{bottom:127.142850px;}
.y13_c00431{bottom:153.421350px;}
.y19_c00431{bottom:153.421500px;}
.y1f_c00431{bottom:155.941350px;}
.y5_c00431{bottom:188.699850px;}
.y12_c00431{bottom:209.939850px;}
.y7_c00431{bottom:225.959850px;}
.y8_c00431{bottom:268.799850px;}
.y6_c00431{bottom:296.519850px;}
.y9_c00431{bottom:311.639850px;}
.ya_c00431{bottom:354.299850px;}
.yb_c00431{bottom:397.139850px;}
.yc_c00431{bottom:439.979850px;}
.yd_c00431{bottom:482.819850px;}
.ye_c00431{bottom:525.479850px;}
.yf_c00431{bottom:568.319850px;}
.y10_c00431{bottom:611.159850px;}
.y11_c00431{bottom:653.819850px;}
.y4_c00431{bottom:659.759850px;}
.y3_c00431{bottom:671.100090px;}
.y2_c00431{bottom:682.259850px;}
.y1_c00431{bottom:706.919850px;}
.y26_c00431{bottom:739.499850px;}
.y23_c00431{bottom:751.019550px;}
.y25_c00431{bottom:757.679850px;}
.y22_c00431{bottom:776.939700px;}
.y20_c00431{bottom:784.139850px;}
.y24_c00431{bottom:794.579850px;}
.y21_c00431{bottom:802.859850px;}
.h3_c00431{height:33.312100px;}
.h4_c00431{height:43.870553px;}
.h2_c00431{height:49.733732px;}
.h6_c00431{height:57.711310px;}
.h5_c00431{height:82.576647px;}
.h0_c00431{height:892.499550px;}
.h1_c00431{height:892.500000px;}
.w0_c00431{width:1262.999700px;}
.w1_c00431{width:1263.000000px;}
.x0_c00431{left:0.000000px;}
.xa_c00431{left:27.165750px;}
.x10_c00431{left:35.265750px;}
.x14_c00431{left:38.506050px;}
.x6_c00431{left:43.726200px;}
.x9_c00431{left:52.725600px;}
.x8_c00431{left:59.385900px;}
.x7_c00431{left:66.045750px;}
.x3_c00431{left:92.866040px;}
.x4_c00431{left:185.386500px;}
.x1_c00431{left:228.406500px;}
.x2_c00431{left:287.446500px;}
.x5_c00431{left:416.506500px;}
.xd_c00431{left:482.564216px;}
.xe_c00431{left:492.284340px;}
.xb_c00431{left:493.544117px;}
.xc_c00431{left:499.844115px;}
.x12_c00431{left:567.526500px;}
.x13_c00431{left:616.846500px;}
.x11_c00431{left:837.165000px;}
.xf_c00431{left:878.566500px;}
@media print{
.v0_c00431{vertical-align:0.000000pt;}
.v1_c00431{vertical-align:18.560533pt;}
.ls1_c00431{letter-spacing:0.000000pt;}
.ls0_c00431{letter-spacing:1.043858pt;}
.ws8_c00431{word-spacing:-28.028627pt;}
.ws5_c00431{word-spacing:-12.350837pt;}
.ws4_c00431{word-spacing:-11.306979pt;}
.ws7_c00431{word-spacing:-7.803378pt;}
.ws9_c00431{word-spacing:0.000000pt;}
.ws6_c00431{word-spacing:74.197868pt;}
.ws3_c00431{word-spacing:239.963787pt;}
.ws1_c00431{word-spacing:1003.575740pt;}
.ws0_c00431{word-spacing:1682.115023pt;}
.ws2_c00431{word-spacing:3672.555617pt;}
._a_c00431{margin-left:-1.043858pt;}
._0_c00431{width:1.713071pt;}
._1_c00431{width:3.180896pt;}
._e_c00431{width:109.420849pt;}
._17_c00431{width:120.001860pt;}
._b_c00431{width:137.850063pt;}
._11_c00431{width:138.753016pt;}
._14_c00431{width:144.334220pt;}
._d_c00431{width:162.125749pt;}
._f_c00431{width:184.178698pt;}
._15_c00431{width:196.125326pt;}
._12_c00431{width:219.818038pt;}
._9_c00431{width:261.531900pt;}
._4_c00431{width:262.810630pt;}
._6_c00431{width:278.763446pt;}
._c_c00431{width:279.909752pt;}
._8_c00431{width:295.367186pt;}
._7_c00431{width:304.538675pt;}
._10_c00431{width:326.825576pt;}
._16_c00431{width:338.127225pt;}
._3_c00431{width:346.538770pt;}
._5_c00431{width:358.266866pt;}
._13_c00431{width:362.454254pt;}
._18_c00431{width:388.320865pt;}
._2_c00431{width:1037.266312pt;}
.fs2_c00431{font-size:28.069707pt;}
.fs1_c00431{font-size:40.672587pt;}
.fs0_c00431{font-size:60.722667pt;}
.fs4_c00431{font-size:70.462933pt;}
.fs3_c00431{font-size:100.822400pt;}
.y0_c00431{bottom:0.000000pt;}
.y18_c00431{bottom:19.575200pt;}
.y1e_c00431{bottom:19.575333pt;}
.y17_c00431{bottom:42.935067pt;}
.y1d_c00431{bottom:42.935200pt;}
.y16_c00431{bottom:66.294933pt;}
.y1c_c00431{bottom:66.296133pt;}
.y15_c00431{bottom:89.654800pt;}
.y1b_c00431{bottom:89.656000pt;}
.y14_c00431{bottom:113.014667pt;}
.y1a_c00431{bottom:113.015867pt;}
.y13_c00431{bottom:136.374533pt;}
.y19_c00431{bottom:136.374667pt;}
.y1f_c00431{bottom:138.614533pt;}
.y5_c00431{bottom:167.733200pt;}
.y12_c00431{bottom:186.613200pt;}
.y7_c00431{bottom:200.853200pt;}
.y8_c00431{bottom:238.933200pt;}
.y6_c00431{bottom:263.573200pt;}
.y9_c00431{bottom:277.013200pt;}
.ya_c00431{bottom:314.933200pt;}
.yb_c00431{bottom:353.013200pt;}
.yc_c00431{bottom:391.093200pt;}
.yd_c00431{bottom:429.173200pt;}
.ye_c00431{bottom:467.093200pt;}
.yf_c00431{bottom:505.173200pt;}
.y10_c00431{bottom:543.253200pt;}
.y11_c00431{bottom:581.173200pt;}
.y4_c00431{bottom:586.453200pt;}
.y3_c00431{bottom:596.533413pt;}
.y2_c00431{bottom:606.453200pt;}
.y1_c00431{bottom:628.373200pt;}
.y26_c00431{bottom:657.333200pt;}
.y23_c00431{bottom:667.572933pt;}
.y25_c00431{bottom:673.493200pt;}
.y22_c00431{bottom:690.613067pt;}
.y20_c00431{bottom:697.013200pt;}
.y24_c00431{bottom:706.293200pt;}
.y21_c00431{bottom:713.653200pt;}
.h3_c00431{height:29.610755pt;}
.h4_c00431{height:38.996047pt;}
.h2_c00431{height:44.207762pt;}
.h6_c00431{height:51.298942pt;}
.h5_c00431{height:73.401464pt;}
.h0_c00431{height:793.332933pt;}
.h1_c00431{height:793.333333pt;}
.w0_c00431{width:1122.666400pt;}
.w1_c00431{width:1122.666667pt;}
.x0_c00431{left:0.000000pt;}
.xa_c00431{left:24.147333pt;}
.x10_c00431{left:31.347333pt;}
.x14_c00431{left:34.227600pt;}
.x6_c00431{left:38.867733pt;}
.x9_c00431{left:46.867200pt;}
.x8_c00431{left:52.787467pt;}
.x7_c00431{left:58.707333pt;}
.x3_c00431{left:82.547591pt;}
.x4_c00431{left:164.788000pt;}
.x1_c00431{left:203.028000pt;}
.x2_c00431{left:255.508000pt;}
.x5_c00431{left:370.228000pt;}
.xd_c00431{left:428.945970pt;}
.xe_c00431{left:437.586080pt;}
.xb_c00431{left:438.705882pt;}
.xc_c00431{left:444.305880pt;}
.x12_c00431{left:504.468000pt;}
.x13_c00431{left:548.308000pt;}
.x11_c00431{left:744.146667pt;}
.xf_c00431{left:780.948000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b76d2d7a3333aeade329ab8f.woff2')format("woff");}.ff1_c00432{font-family:ff1_c00432;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00432{transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);}
.m1_c00432{transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);}
.m4_c00432{transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);}
.m3_c00432{transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);}
.m0_c00432{transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);}
.v0_c00432{vertical-align:0.000000px;}
.v1_c00432{vertical-align:20.880600px;}
.ls1_c00432{letter-spacing:0.000000px;}
.ls0_c00432{letter-spacing:1.174340px;}
.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;}
}
.ws8_c00432{word-spacing:-31.532206px;}
.ws5_c00432{word-spacing:-13.894692px;}
.ws4_c00432{word-spacing:-12.720351px;}
.ws7_c00432{word-spacing:-8.778801px;}
.ws9_c00432{word-spacing:0.000000px;}
.ws6_c00432{word-spacing:83.472601px;}
.ws3_c00432{word-spacing:269.959261px;}
.ws1_c00432{word-spacing:1129.022707px;}
.ws0_c00432{word-spacing:1892.379401px;}
.ws2_c00432{word-spacing:4131.625069px;}
._a_c00432{margin-left:-1.174340px;}
._0_c00432{width:1.927205px;}
._1_c00432{width:3.578508px;}
._e_c00432{width:123.098455px;}
._17_c00432{width:135.002093px;}
._b_c00432{width:155.081320px;}
._11_c00432{width:156.097143px;}
._14_c00432{width:162.375998px;}
._d_c00432{width:182.391467px;}
._f_c00432{width:207.201036px;}
._15_c00432{width:220.640991px;}
._12_c00432{width:247.295292px;}
._9_c00432{width:294.223388px;}
._4_c00432{width:295.661959px;}
._6_c00432{width:313.608876px;}
._c_c00432{width:314.898471px;}
._8_c00432{width:332.288085px;}
._7_c00432{width:342.606009px;}
._10_c00432{width:367.678773px;}
._16_c00432{width:380.393128px;}
._3_c00432{width:389.856116px;}
._5_c00432{width:403.050224px;}
._13_c00432{width:407.761036px;}
._18_c00432{width:436.860973px;}
._2_c00432{width:1166.924601px;}
.fc1_c00432{color:transparent;}
.fc0_c00432{color:rgb(0,0,0);}
.fs2_c00432{font-size:31.578420px;}
.fs1_c00432{font-size:45.756660px;}
.fs0_c00432{font-size:68.313000px;}
.fs4_c00432{font-size:79.270800px;}
.fs3_c00432{font-size:113.425200px;}
.y0_c00432{bottom:0.000000px;}
.y18_c00432{bottom:22.022100px;}
.y1e_c00432{bottom:22.022250px;}
.y17_c00432{bottom:48.301950px;}
.y1d_c00432{bottom:48.302100px;}
.y16_c00432{bottom:74.581800px;}
.y1c_c00432{bottom:74.583150px;}
.y15_c00432{bottom:100.861650px;}
.y1b_c00432{bottom:100.863000px;}
.y14_c00432{bottom:127.141500px;}
.y1a_c00432{bottom:127.142850px;}
.y13_c00432{bottom:153.421350px;}
.y19_c00432{bottom:153.421500px;}
.y1f_c00432{bottom:155.941350px;}
.y5_c00432{bottom:188.699850px;}
.y12_c00432{bottom:209.939850px;}
.y7_c00432{bottom:225.959850px;}
.y8_c00432{bottom:268.799850px;}
.y6_c00432{bottom:296.519850px;}
.y9_c00432{bottom:311.639850px;}
.ya_c00432{bottom:354.299850px;}
.yb_c00432{bottom:397.139850px;}
.yc_c00432{bottom:439.979850px;}
.yd_c00432{bottom:482.819850px;}
.ye_c00432{bottom:525.479850px;}
.yf_c00432{bottom:568.319850px;}
.y10_c00432{bottom:611.159850px;}
.y11_c00432{bottom:653.819850px;}
.y4_c00432{bottom:659.759850px;}
.y3_c00432{bottom:671.100090px;}
.y2_c00432{bottom:682.259850px;}
.y1_c00432{bottom:706.919850px;}
.y26_c00432{bottom:739.499850px;}
.y23_c00432{bottom:751.019550px;}
.y25_c00432{bottom:757.679850px;}
.y22_c00432{bottom:776.939700px;}
.y20_c00432{bottom:784.139850px;}
.y24_c00432{bottom:794.579850px;}
.y21_c00432{bottom:802.859850px;}
.h3_c00432{height:33.312100px;}
.h4_c00432{height:43.870553px;}
.h2_c00432{height:49.733732px;}
.h6_c00432{height:57.711310px;}
.h5_c00432{height:82.576647px;}
.h0_c00432{height:892.499550px;}
.h1_c00432{height:892.500000px;}
.w0_c00432{width:1262.999700px;}
.w1_c00432{width:1263.000000px;}
.x0_c00432{left:0.000000px;}
.xa_c00432{left:27.165750px;}
.x10_c00432{left:35.265750px;}
.x14_c00432{left:38.506050px;}
.x6_c00432{left:43.726200px;}
.x9_c00432{left:52.725600px;}
.x8_c00432{left:59.385900px;}
.x7_c00432{left:66.045750px;}
.x3_c00432{left:92.866040px;}
.x4_c00432{left:185.386500px;}
.x1_c00432{left:228.406500px;}
.x2_c00432{left:287.446500px;}
.x5_c00432{left:416.506500px;}
.xd_c00432{left:482.564325px;}
.xe_c00432{left:492.283862px;}
.xc_c00432{left:499.844223px;}
.xb_c00432{left:501.283872px;}
.x12_c00432{left:567.526500px;}
.x13_c00432{left:616.846500px;}
.x11_c00432{left:837.165000px;}
.xf_c00432{left:878.566500px;}
@media print{
.v0_c00432{vertical-align:0.000000pt;}
.v1_c00432{vertical-align:18.560533pt;}
.ls1_c00432{letter-spacing:0.000000pt;}
.ls0_c00432{letter-spacing:1.043858pt;}
.ws8_c00432{word-spacing:-28.028627pt;}
.ws5_c00432{word-spacing:-12.350837pt;}
.ws4_c00432{word-spacing:-11.306979pt;}
.ws7_c00432{word-spacing:-7.803378pt;}
.ws9_c00432{word-spacing:0.000000pt;}
.ws6_c00432{word-spacing:74.197868pt;}
.ws3_c00432{word-spacing:239.963787pt;}
.ws1_c00432{word-spacing:1003.575740pt;}
.ws0_c00432{word-spacing:1682.115023pt;}
.ws2_c00432{word-spacing:3672.555617pt;}
._a_c00432{margin-left:-1.043858pt;}
._0_c00432{width:1.713071pt;}
._1_c00432{width:3.180896pt;}
._e_c00432{width:109.420849pt;}
._17_c00432{width:120.001860pt;}
._b_c00432{width:137.850063pt;}
._11_c00432{width:138.753016pt;}
._14_c00432{width:144.334220pt;}
._d_c00432{width:162.125749pt;}
._f_c00432{width:184.178698pt;}
._15_c00432{width:196.125326pt;}
._12_c00432{width:219.818038pt;}
._9_c00432{width:261.531900pt;}
._4_c00432{width:262.810630pt;}
._6_c00432{width:278.763446pt;}
._c_c00432{width:279.909752pt;}
._8_c00432{width:295.367186pt;}
._7_c00432{width:304.538675pt;}
._10_c00432{width:326.825576pt;}
._16_c00432{width:338.127225pt;}
._3_c00432{width:346.538770pt;}
._5_c00432{width:358.266866pt;}
._13_c00432{width:362.454254pt;}
._18_c00432{width:388.320865pt;}
._2_c00432{width:1037.266312pt;}
.fs2_c00432{font-size:28.069707pt;}
.fs1_c00432{font-size:40.672587pt;}
.fs0_c00432{font-size:60.722667pt;}
.fs4_c00432{font-size:70.462933pt;}
.fs3_c00432{font-size:100.822400pt;}
.y0_c00432{bottom:0.000000pt;}
.y18_c00432{bottom:19.575200pt;}
.y1e_c00432{bottom:19.575333pt;}
.y17_c00432{bottom:42.935067pt;}
.y1d_c00432{bottom:42.935200pt;}
.y16_c00432{bottom:66.294933pt;}
.y1c_c00432{bottom:66.296133pt;}
.y15_c00432{bottom:89.654800pt;}
.y1b_c00432{bottom:89.656000pt;}
.y14_c00432{bottom:113.014667pt;}
.y1a_c00432{bottom:113.015867pt;}
.y13_c00432{bottom:136.374533pt;}
.y19_c00432{bottom:136.374667pt;}
.y1f_c00432{bottom:138.614533pt;}
.y5_c00432{bottom:167.733200pt;}
.y12_c00432{bottom:186.613200pt;}
.y7_c00432{bottom:200.853200pt;}
.y8_c00432{bottom:238.933200pt;}
.y6_c00432{bottom:263.573200pt;}
.y9_c00432{bottom:277.013200pt;}
.ya_c00432{bottom:314.933200pt;}
.yb_c00432{bottom:353.013200pt;}
.yc_c00432{bottom:391.093200pt;}
.yd_c00432{bottom:429.173200pt;}
.ye_c00432{bottom:467.093200pt;}
.yf_c00432{bottom:505.173200pt;}
.y10_c00432{bottom:543.253200pt;}
.y11_c00432{bottom:581.173200pt;}
.y4_c00432{bottom:586.453200pt;}
.y3_c00432{bottom:596.533413pt;}
.y2_c00432{bottom:606.453200pt;}
.y1_c00432{bottom:628.373200pt;}
.y26_c00432{bottom:657.333200pt;}
.y23_c00432{bottom:667.572933pt;}
.y25_c00432{bottom:673.493200pt;}
.y22_c00432{bottom:690.613067pt;}
.y20_c00432{bottom:697.013200pt;}
.y24_c00432{bottom:706.293200pt;}
.y21_c00432{bottom:713.653200pt;}
.h3_c00432{height:29.610755pt;}
.h4_c00432{height:38.996047pt;}
.h2_c00432{height:44.207762pt;}
.h6_c00432{height:51.298942pt;}
.h5_c00432{height:73.401464pt;}
.h0_c00432{height:793.332933pt;}
.h1_c00432{height:793.333333pt;}
.w0_c00432{width:1122.666400pt;}
.w1_c00432{width:1122.666667pt;}
.x0_c00432{left:0.000000pt;}
.xa_c00432{left:24.147333pt;}
.x10_c00432{left:31.347333pt;}
.x14_c00432{left:34.227600pt;}
.x6_c00432{left:38.867733pt;}
.x9_c00432{left:46.867200pt;}
.x8_c00432{left:52.787467pt;}
.x7_c00432{left:58.707333pt;}
.x3_c00432{left:82.547591pt;}
.x4_c00432{left:164.788000pt;}
.x1_c00432{left:203.028000pt;}
.x2_c00432{left:255.508000pt;}
.x5_c00432{left:370.228000pt;}
.xd_c00432{left:428.946066pt;}
.xe_c00432{left:437.585655pt;}
.xc_c00432{left:444.305976pt;}
.xb_c00432{left:445.585664pt;}
.x12_c00432{left:504.468000pt;}
.x13_c00432{left:548.308000pt;}
.x11_c00432{left:744.146667pt;}
.xf_c00432{left:780.948000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b14fa6947836440cc709f026.woff2')format("woff");}.ff1_c00433{font-family:ff1_c00433;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00433{transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);}
.m1_c00433{transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);}
.m4_c00433{transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);}
.m3_c00433{transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);}
.m0_c00433{transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);}
.v0_c00433{vertical-align:0.000000px;}
.v1_c00433{vertical-align:20.880600px;}
.ls1_c00433{letter-spacing:0.000000px;}
.ls0_c00433{letter-spacing:1.174340px;}
.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;}
}
.ws8_c00433{word-spacing:-31.532206px;}
.ws5_c00433{word-spacing:-13.894692px;}
.ws4_c00433{word-spacing:-12.720351px;}
.ws7_c00433{word-spacing:-8.778801px;}
.ws9_c00433{word-spacing:0.000000px;}
.ws6_c00433{word-spacing:83.472601px;}
.ws3_c00433{word-spacing:269.959261px;}
.ws1_c00433{word-spacing:1129.022707px;}
.ws0_c00433{word-spacing:1892.379401px;}
.ws2_c00433{word-spacing:4131.625069px;}
._a_c00433{margin-left:-1.174340px;}
._0_c00433{width:1.927205px;}
._1_c00433{width:3.578508px;}
._e_c00433{width:123.098455px;}
._17_c00433{width:135.002093px;}
._b_c00433{width:155.081320px;}
._11_c00433{width:156.097143px;}
._14_c00433{width:162.375998px;}
._d_c00433{width:182.391467px;}
._f_c00433{width:207.201036px;}
._15_c00433{width:220.640991px;}
._12_c00433{width:247.295292px;}
._9_c00433{width:294.223388px;}
._4_c00433{width:295.661959px;}
._6_c00433{width:313.608876px;}
._c_c00433{width:314.898471px;}
._8_c00433{width:332.288085px;}
._7_c00433{width:342.606009px;}
._10_c00433{width:367.678773px;}
._16_c00433{width:380.393128px;}
._3_c00433{width:389.856116px;}
._5_c00433{width:403.050224px;}
._13_c00433{width:407.761036px;}
._18_c00433{width:436.860973px;}
._2_c00433{width:1166.924601px;}
.fc1_c00433{color:transparent;}
.fc0_c00433{color:rgb(0,0,0);}
.fs2_c00433{font-size:31.578420px;}
.fs1_c00433{font-size:45.756660px;}
.fs0_c00433{font-size:68.313000px;}
.fs4_c00433{font-size:79.270800px;}
.fs3_c00433{font-size:113.425200px;}
.y0_c00433{bottom:0.000000px;}
.y18_c00433{bottom:22.022100px;}
.y1e_c00433{bottom:22.022250px;}
.y17_c00433{bottom:48.301950px;}
.y1d_c00433{bottom:48.302100px;}
.y16_c00433{bottom:74.581800px;}
.y1c_c00433{bottom:74.583150px;}
.y15_c00433{bottom:100.861650px;}
.y1b_c00433{bottom:100.863000px;}
.y14_c00433{bottom:127.141500px;}
.y1a_c00433{bottom:127.142850px;}
.y13_c00433{bottom:153.421350px;}
.y19_c00433{bottom:153.421500px;}
.y1f_c00433{bottom:155.941350px;}
.y5_c00433{bottom:188.699850px;}
.y12_c00433{bottom:209.939850px;}
.y7_c00433{bottom:225.959850px;}
.y8_c00433{bottom:268.799850px;}
.y6_c00433{bottom:296.519850px;}
.y9_c00433{bottom:311.639850px;}
.ya_c00433{bottom:354.299850px;}
.yb_c00433{bottom:397.139850px;}
.yc_c00433{bottom:439.979850px;}
.yd_c00433{bottom:482.819850px;}
.ye_c00433{bottom:525.479850px;}
.yf_c00433{bottom:568.319850px;}
.y10_c00433{bottom:611.159850px;}
.y11_c00433{bottom:653.819850px;}
.y4_c00433{bottom:659.759850px;}
.y3_c00433{bottom:671.100090px;}
.y2_c00433{bottom:682.259850px;}
.y1_c00433{bottom:706.919850px;}
.y26_c00433{bottom:739.499850px;}
.y23_c00433{bottom:751.019550px;}
.y25_c00433{bottom:757.679850px;}
.y22_c00433{bottom:776.939700px;}
.y20_c00433{bottom:784.139850px;}
.y24_c00433{bottom:794.579850px;}
.y21_c00433{bottom:802.859850px;}
.h3_c00433{height:33.312100px;}
.h4_c00433{height:43.870553px;}
.h2_c00433{height:49.733732px;}
.h6_c00433{height:57.711310px;}
.h5_c00433{height:82.576647px;}
.h0_c00433{height:892.499550px;}
.h1_c00433{height:892.500000px;}
.w0_c00433{width:1262.999700px;}
.w1_c00433{width:1263.000000px;}
.x0_c00433{left:0.000000px;}
.xa_c00433{left:27.165750px;}
.x10_c00433{left:35.265750px;}
.x14_c00433{left:38.506050px;}
.x6_c00433{left:43.726200px;}
.x9_c00433{left:52.725600px;}
.x8_c00433{left:59.385900px;}
.x7_c00433{left:66.045750px;}
.x3_c00433{left:92.866040px;}
.x4_c00433{left:185.386500px;}
.x1_c00433{left:228.406500px;}
.x2_c00433{left:287.446500px;}
.x5_c00433{left:416.506500px;}
.xd_c00433{left:482.564325px;}
.xe_c00433{left:492.283862px;}
.xc_c00433{left:499.844223px;}
.xb_c00433{left:501.283872px;}
.x12_c00433{left:567.526500px;}
.x13_c00433{left:616.846500px;}
.x11_c00433{left:837.165000px;}
.xf_c00433{left:878.566500px;}
@media print{
.v0_c00433{vertical-align:0.000000pt;}
.v1_c00433{vertical-align:18.560533pt;}
.ls1_c00433{letter-spacing:0.000000pt;}
.ls0_c00433{letter-spacing:1.043858pt;}
.ws8_c00433{word-spacing:-28.028627pt;}
.ws5_c00433{word-spacing:-12.350837pt;}
.ws4_c00433{word-spacing:-11.306979pt;}
.ws7_c00433{word-spacing:-7.803378pt;}
.ws9_c00433{word-spacing:0.000000pt;}
.ws6_c00433{word-spacing:74.197868pt;}
.ws3_c00433{word-spacing:239.963787pt;}
.ws1_c00433{word-spacing:1003.575740pt;}
.ws0_c00433{word-spacing:1682.115023pt;}
.ws2_c00433{word-spacing:3672.555617pt;}
._a_c00433{margin-left:-1.043858pt;}
._0_c00433{width:1.713071pt;}
._1_c00433{width:3.180896pt;}
._e_c00433{width:109.420849pt;}
._17_c00433{width:120.001860pt;}
._b_c00433{width:137.850063pt;}
._11_c00433{width:138.753016pt;}
._14_c00433{width:144.334220pt;}
._d_c00433{width:162.125749pt;}
._f_c00433{width:184.178698pt;}
._15_c00433{width:196.125326pt;}
._12_c00433{width:219.818038pt;}
._9_c00433{width:261.531900pt;}
._4_c00433{width:262.810630pt;}
._6_c00433{width:278.763446pt;}
._c_c00433{width:279.909752pt;}
._8_c00433{width:295.367186pt;}
._7_c00433{width:304.538675pt;}
._10_c00433{width:326.825576pt;}
._16_c00433{width:338.127225pt;}
._3_c00433{width:346.538770pt;}
._5_c00433{width:358.266866pt;}
._13_c00433{width:362.454254pt;}
._18_c00433{width:388.320865pt;}
._2_c00433{width:1037.266312pt;}
.fs2_c00433{font-size:28.069707pt;}
.fs1_c00433{font-size:40.672587pt;}
.fs0_c00433{font-size:60.722667pt;}
.fs4_c00433{font-size:70.462933pt;}
.fs3_c00433{font-size:100.822400pt;}
.y0_c00433{bottom:0.000000pt;}
.y18_c00433{bottom:19.575200pt;}
.y1e_c00433{bottom:19.575333pt;}
.y17_c00433{bottom:42.935067pt;}
.y1d_c00433{bottom:42.935200pt;}
.y16_c00433{bottom:66.294933pt;}
.y1c_c00433{bottom:66.296133pt;}
.y15_c00433{bottom:89.654800pt;}
.y1b_c00433{bottom:89.656000pt;}
.y14_c00433{bottom:113.014667pt;}
.y1a_c00433{bottom:113.015867pt;}
.y13_c00433{bottom:136.374533pt;}
.y19_c00433{bottom:136.374667pt;}
.y1f_c00433{bottom:138.614533pt;}
.y5_c00433{bottom:167.733200pt;}
.y12_c00433{bottom:186.613200pt;}
.y7_c00433{bottom:200.853200pt;}
.y8_c00433{bottom:238.933200pt;}
.y6_c00433{bottom:263.573200pt;}
.y9_c00433{bottom:277.013200pt;}
.ya_c00433{bottom:314.933200pt;}
.yb_c00433{bottom:353.013200pt;}
.yc_c00433{bottom:391.093200pt;}
.yd_c00433{bottom:429.173200pt;}
.ye_c00433{bottom:467.093200pt;}
.yf_c00433{bottom:505.173200pt;}
.y10_c00433{bottom:543.253200pt;}
.y11_c00433{bottom:581.173200pt;}
.y4_c00433{bottom:586.453200pt;}
.y3_c00433{bottom:596.533413pt;}
.y2_c00433{bottom:606.453200pt;}
.y1_c00433{bottom:628.373200pt;}
.y26_c00433{bottom:657.333200pt;}
.y23_c00433{bottom:667.572933pt;}
.y25_c00433{bottom:673.493200pt;}
.y22_c00433{bottom:690.613067pt;}
.y20_c00433{bottom:697.013200pt;}
.y24_c00433{bottom:706.293200pt;}
.y21_c00433{bottom:713.653200pt;}
.h3_c00433{height:29.610755pt;}
.h4_c00433{height:38.996047pt;}
.h2_c00433{height:44.207762pt;}
.h6_c00433{height:51.298942pt;}
.h5_c00433{height:73.401464pt;}
.h0_c00433{height:793.332933pt;}
.h1_c00433{height:793.333333pt;}
.w0_c00433{width:1122.666400pt;}
.w1_c00433{width:1122.666667pt;}
.x0_c00433{left:0.000000pt;}
.xa_c00433{left:24.147333pt;}
.x10_c00433{left:31.347333pt;}
.x14_c00433{left:34.227600pt;}
.x6_c00433{left:38.867733pt;}
.x9_c00433{left:46.867200pt;}
.x8_c00433{left:52.787467pt;}
.x7_c00433{left:58.707333pt;}
.x3_c00433{left:82.547591pt;}
.x4_c00433{left:164.788000pt;}
.x1_c00433{left:203.028000pt;}
.x2_c00433{left:255.508000pt;}
.x5_c00433{left:370.228000pt;}
.xd_c00433{left:428.946066pt;}
.xe_c00433{left:437.585655pt;}
.xc_c00433{left:444.305976pt;}
.xb_c00433{left:445.585664pt;}
.x12_c00433{left:504.468000pt;}
.x13_c00433{left:548.308000pt;}
.x11_c00433{left:744.146667pt;}
.xf_c00433{left:780.948000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ddfe10064e3d57362210b074.woff2')format("woff");}.ff1_c00434{font-family:ff1_c00434;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00434{transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);}
.m1_c00434{transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);}
.m4_c00434{transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);}
.m3_c00434{transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);}
.m0_c00434{transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);}
.v0_c00434{vertical-align:0.000000px;}
.v1_c00434{vertical-align:20.880600px;}
.ls1_c00434{letter-spacing:0.000000px;}
.ls0_c00434{letter-spacing:1.174340px;}
.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;}
}
.ws8_c00434{word-spacing:-31.532206px;}
.ws5_c00434{word-spacing:-13.894692px;}
.ws4_c00434{word-spacing:-12.720351px;}
.ws7_c00434{word-spacing:-8.778801px;}
.ws9_c00434{word-spacing:0.000000px;}
.ws6_c00434{word-spacing:83.472601px;}
.ws3_c00434{word-spacing:269.959261px;}
.ws1_c00434{word-spacing:1129.022707px;}
.ws0_c00434{word-spacing:1892.379401px;}
.ws2_c00434{word-spacing:4131.625069px;}
._a_c00434{margin-left:-1.174340px;}
._0_c00434{width:1.927205px;}
._1_c00434{width:3.578508px;}
._e_c00434{width:123.098455px;}
._17_c00434{width:135.002093px;}
._b_c00434{width:155.081320px;}
._11_c00434{width:156.097143px;}
._14_c00434{width:162.375998px;}
._d_c00434{width:182.391467px;}
._f_c00434{width:207.201036px;}
._15_c00434{width:220.640991px;}
._12_c00434{width:247.295292px;}
._9_c00434{width:294.223388px;}
._4_c00434{width:295.661959px;}
._6_c00434{width:313.608876px;}
._c_c00434{width:314.898471px;}
._8_c00434{width:332.288085px;}
._7_c00434{width:342.606009px;}
._10_c00434{width:367.678773px;}
._16_c00434{width:380.393128px;}
._3_c00434{width:389.856116px;}
._5_c00434{width:403.050224px;}
._13_c00434{width:407.761036px;}
._18_c00434{width:436.860973px;}
._2_c00434{width:1166.924601px;}
.fc1_c00434{color:transparent;}
.fc0_c00434{color:rgb(0,0,0);}
.fs2_c00434{font-size:31.578420px;}
.fs1_c00434{font-size:45.756660px;}
.fs0_c00434{font-size:68.313000px;}
.fs4_c00434{font-size:79.270800px;}
.fs3_c00434{font-size:113.425200px;}
.y0_c00434{bottom:0.000000px;}
.y18_c00434{bottom:22.022100px;}
.y1e_c00434{bottom:22.022250px;}
.y17_c00434{bottom:48.301950px;}
.y1d_c00434{bottom:48.302100px;}
.y16_c00434{bottom:74.581800px;}
.y1c_c00434{bottom:74.583150px;}
.y15_c00434{bottom:100.861650px;}
.y1b_c00434{bottom:100.863000px;}
.y14_c00434{bottom:127.141500px;}
.y1a_c00434{bottom:127.142850px;}
.y13_c00434{bottom:153.421350px;}
.y19_c00434{bottom:153.421500px;}
.y1f_c00434{bottom:155.941350px;}
.y5_c00434{bottom:188.699850px;}
.y12_c00434{bottom:209.939850px;}
.y7_c00434{bottom:225.959850px;}
.y8_c00434{bottom:268.799850px;}
.y6_c00434{bottom:296.519850px;}
.y9_c00434{bottom:311.639850px;}
.ya_c00434{bottom:354.299850px;}
.yb_c00434{bottom:397.139850px;}
.yc_c00434{bottom:439.979850px;}
.yd_c00434{bottom:482.819850px;}
.ye_c00434{bottom:525.479850px;}
.yf_c00434{bottom:568.319850px;}
.y10_c00434{bottom:611.159850px;}
.y11_c00434{bottom:653.819850px;}
.y4_c00434{bottom:659.759850px;}
.y3_c00434{bottom:671.100090px;}
.y2_c00434{bottom:682.259850px;}
.y1_c00434{bottom:706.919850px;}
.y26_c00434{bottom:739.499850px;}
.y23_c00434{bottom:751.019550px;}
.y25_c00434{bottom:757.679850px;}
.y22_c00434{bottom:776.939700px;}
.y20_c00434{bottom:784.139850px;}
.y24_c00434{bottom:794.579850px;}
.y21_c00434{bottom:802.859850px;}
.h3_c00434{height:33.312100px;}
.h4_c00434{height:43.870553px;}
.h2_c00434{height:49.733732px;}
.h6_c00434{height:57.711310px;}
.h5_c00434{height:82.576647px;}
.h0_c00434{height:892.499550px;}
.h1_c00434{height:892.500000px;}
.w0_c00434{width:1262.999700px;}
.w1_c00434{width:1263.000000px;}
.x0_c00434{left:0.000000px;}
.xa_c00434{left:27.165750px;}
.x10_c00434{left:35.265750px;}
.x14_c00434{left:38.506050px;}
.x6_c00434{left:43.726200px;}
.x9_c00434{left:52.725600px;}
.x8_c00434{left:59.385900px;}
.x7_c00434{left:66.045750px;}
.x3_c00434{left:92.866040px;}
.x4_c00434{left:185.386500px;}
.x1_c00434{left:228.406500px;}
.x2_c00434{left:287.446500px;}
.x5_c00434{left:416.506500px;}
.xd_c00434{left:482.564325px;}
.xe_c00434{left:492.283862px;}
.xc_c00434{left:499.844223px;}
.xb_c00434{left:501.283872px;}
.x12_c00434{left:567.526500px;}
.x13_c00434{left:616.846500px;}
.x11_c00434{left:837.165000px;}
.xf_c00434{left:878.566500px;}
@media print{
.v0_c00434{vertical-align:0.000000pt;}
.v1_c00434{vertical-align:18.560533pt;}
.ls1_c00434{letter-spacing:0.000000pt;}
.ls0_c00434{letter-spacing:1.043858pt;}
.ws8_c00434{word-spacing:-28.028627pt;}
.ws5_c00434{word-spacing:-12.350837pt;}
.ws4_c00434{word-spacing:-11.306979pt;}
.ws7_c00434{word-spacing:-7.803378pt;}
.ws9_c00434{word-spacing:0.000000pt;}
.ws6_c00434{word-spacing:74.197868pt;}
.ws3_c00434{word-spacing:239.963787pt;}
.ws1_c00434{word-spacing:1003.575740pt;}
.ws0_c00434{word-spacing:1682.115023pt;}
.ws2_c00434{word-spacing:3672.555617pt;}
._a_c00434{margin-left:-1.043858pt;}
._0_c00434{width:1.713071pt;}
._1_c00434{width:3.180896pt;}
._e_c00434{width:109.420849pt;}
._17_c00434{width:120.001860pt;}
._b_c00434{width:137.850063pt;}
._11_c00434{width:138.753016pt;}
._14_c00434{width:144.334220pt;}
._d_c00434{width:162.125749pt;}
._f_c00434{width:184.178698pt;}
._15_c00434{width:196.125326pt;}
._12_c00434{width:219.818038pt;}
._9_c00434{width:261.531900pt;}
._4_c00434{width:262.810630pt;}
._6_c00434{width:278.763446pt;}
._c_c00434{width:279.909752pt;}
._8_c00434{width:295.367186pt;}
._7_c00434{width:304.538675pt;}
._10_c00434{width:326.825576pt;}
._16_c00434{width:338.127225pt;}
._3_c00434{width:346.538770pt;}
._5_c00434{width:358.266866pt;}
._13_c00434{width:362.454254pt;}
._18_c00434{width:388.320865pt;}
._2_c00434{width:1037.266312pt;}
.fs2_c00434{font-size:28.069707pt;}
.fs1_c00434{font-size:40.672587pt;}
.fs0_c00434{font-size:60.722667pt;}
.fs4_c00434{font-size:70.462933pt;}
.fs3_c00434{font-size:100.822400pt;}
.y0_c00434{bottom:0.000000pt;}
.y18_c00434{bottom:19.575200pt;}
.y1e_c00434{bottom:19.575333pt;}
.y17_c00434{bottom:42.935067pt;}
.y1d_c00434{bottom:42.935200pt;}
.y16_c00434{bottom:66.294933pt;}
.y1c_c00434{bottom:66.296133pt;}
.y15_c00434{bottom:89.654800pt;}
.y1b_c00434{bottom:89.656000pt;}
.y14_c00434{bottom:113.014667pt;}
.y1a_c00434{bottom:113.015867pt;}
.y13_c00434{bottom:136.374533pt;}
.y19_c00434{bottom:136.374667pt;}
.y1f_c00434{bottom:138.614533pt;}
.y5_c00434{bottom:167.733200pt;}
.y12_c00434{bottom:186.613200pt;}
.y7_c00434{bottom:200.853200pt;}
.y8_c00434{bottom:238.933200pt;}
.y6_c00434{bottom:263.573200pt;}
.y9_c00434{bottom:277.013200pt;}
.ya_c00434{bottom:314.933200pt;}
.yb_c00434{bottom:353.013200pt;}
.yc_c00434{bottom:391.093200pt;}
.yd_c00434{bottom:429.173200pt;}
.ye_c00434{bottom:467.093200pt;}
.yf_c00434{bottom:505.173200pt;}
.y10_c00434{bottom:543.253200pt;}
.y11_c00434{bottom:581.173200pt;}
.y4_c00434{bottom:586.453200pt;}
.y3_c00434{bottom:596.533413pt;}
.y2_c00434{bottom:606.453200pt;}
.y1_c00434{bottom:628.373200pt;}
.y26_c00434{bottom:657.333200pt;}
.y23_c00434{bottom:667.572933pt;}
.y25_c00434{bottom:673.493200pt;}
.y22_c00434{bottom:690.613067pt;}
.y20_c00434{bottom:697.013200pt;}
.y24_c00434{bottom:706.293200pt;}
.y21_c00434{bottom:713.653200pt;}
.h3_c00434{height:29.610755pt;}
.h4_c00434{height:38.996047pt;}
.h2_c00434{height:44.207762pt;}
.h6_c00434{height:51.298942pt;}
.h5_c00434{height:73.401464pt;}
.h0_c00434{height:793.332933pt;}
.h1_c00434{height:793.333333pt;}
.w0_c00434{width:1122.666400pt;}
.w1_c00434{width:1122.666667pt;}
.x0_c00434{left:0.000000pt;}
.xa_c00434{left:24.147333pt;}
.x10_c00434{left:31.347333pt;}
.x14_c00434{left:34.227600pt;}
.x6_c00434{left:38.867733pt;}
.x9_c00434{left:46.867200pt;}
.x8_c00434{left:52.787467pt;}
.x7_c00434{left:58.707333pt;}
.x3_c00434{left:82.547591pt;}
.x4_c00434{left:164.788000pt;}
.x1_c00434{left:203.028000pt;}
.x2_c00434{left:255.508000pt;}
.x5_c00434{left:370.228000pt;}
.xd_c00434{left:428.946066pt;}
.xe_c00434{left:437.585655pt;}
.xc_c00434{left:444.305976pt;}
.xb_c00434{left:445.585664pt;}
.x12_c00434{left:504.468000pt;}
.x13_c00434{left:548.308000pt;}
.x11_c00434{left:744.146667pt;}
.xf_c00434{left:780.948000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0e1607a1394cdbd980f4c108.woff2')format("woff");}.ff1_c00435{font-family:ff1_c00435;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00435{transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);}
.m1_c00435{transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);}
.m4_c00435{transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);}
.m3_c00435{transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);}
.m0_c00435{transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);}
.v0_c00435{vertical-align:0.000000px;}
.v1_c00435{vertical-align:20.880600px;}
.ls1_c00435{letter-spacing:0.000000px;}
.ls0_c00435{letter-spacing:1.174340px;}
.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;}
}
.ws8_c00435{word-spacing:-31.532206px;}
.ws5_c00435{word-spacing:-13.894692px;}
.ws4_c00435{word-spacing:-12.720351px;}
.ws7_c00435{word-spacing:-8.778801px;}
.ws9_c00435{word-spacing:0.000000px;}
.ws6_c00435{word-spacing:83.472601px;}
.ws3_c00435{word-spacing:269.959261px;}
.ws1_c00435{word-spacing:1129.022707px;}
.ws0_c00435{word-spacing:1892.379401px;}
.ws2_c00435{word-spacing:4131.625069px;}
._a_c00435{margin-left:-1.174340px;}
._0_c00435{width:1.927205px;}
._1_c00435{width:3.578508px;}
._e_c00435{width:123.098455px;}
._17_c00435{width:135.002093px;}
._b_c00435{width:155.081320px;}
._11_c00435{width:156.097143px;}
._14_c00435{width:162.375998px;}
._d_c00435{width:182.391467px;}
._f_c00435{width:207.201036px;}
._15_c00435{width:220.640991px;}
._12_c00435{width:247.295292px;}
._9_c00435{width:294.223388px;}
._4_c00435{width:295.661959px;}
._6_c00435{width:313.608876px;}
._c_c00435{width:314.898471px;}
._8_c00435{width:332.288085px;}
._7_c00435{width:342.606009px;}
._10_c00435{width:367.678773px;}
._18_c00435{width:378.979285px;}
._16_c00435{width:380.393128px;}
._3_c00435{width:389.856116px;}
._5_c00435{width:403.050224px;}
._13_c00435{width:407.761036px;}
._2_c00435{width:1166.924601px;}
.fc1_c00435{color:transparent;}
.fc0_c00435{color:rgb(0,0,0);}
.fs2_c00435{font-size:31.578420px;}
.fs1_c00435{font-size:45.756660px;}
.fs0_c00435{font-size:68.313000px;}
.fs4_c00435{font-size:79.270800px;}
.fs3_c00435{font-size:113.425200px;}
.y0_c00435{bottom:0.000000px;}
.y18_c00435{bottom:22.022100px;}
.y1e_c00435{bottom:22.022250px;}
.y17_c00435{bottom:48.301950px;}
.y1d_c00435{bottom:48.302100px;}
.y16_c00435{bottom:74.581800px;}
.y1c_c00435{bottom:74.583150px;}
.y15_c00435{bottom:100.861650px;}
.y1b_c00435{bottom:100.863000px;}
.y14_c00435{bottom:127.141500px;}
.y1a_c00435{bottom:127.142850px;}
.y13_c00435{bottom:153.421350px;}
.y19_c00435{bottom:153.421500px;}
.y1f_c00435{bottom:155.941350px;}
.y5_c00435{bottom:188.699850px;}
.y12_c00435{bottom:209.939850px;}
.y7_c00435{bottom:225.959850px;}
.y8_c00435{bottom:268.799850px;}
.y6_c00435{bottom:296.519850px;}
.y9_c00435{bottom:311.639850px;}
.ya_c00435{bottom:354.299850px;}
.yb_c00435{bottom:397.139850px;}
.yc_c00435{bottom:439.979850px;}
.yd_c00435{bottom:482.819850px;}
.ye_c00435{bottom:525.479850px;}
.yf_c00435{bottom:568.319850px;}
.y10_c00435{bottom:611.159850px;}
.y11_c00435{bottom:653.819850px;}
.y4_c00435{bottom:659.759850px;}
.y3_c00435{bottom:671.100090px;}
.y2_c00435{bottom:682.259850px;}
.y1_c00435{bottom:706.919850px;}
.y26_c00435{bottom:739.499850px;}
.y23_c00435{bottom:751.019550px;}
.y25_c00435{bottom:757.679850px;}
.y22_c00435{bottom:776.939700px;}
.y20_c00435{bottom:784.139850px;}
.y24_c00435{bottom:794.579850px;}
.y21_c00435{bottom:802.859850px;}
.h3_c00435{height:33.312100px;}
.h4_c00435{height:43.870553px;}
.h2_c00435{height:49.733732px;}
.h6_c00435{height:57.711310px;}
.h5_c00435{height:82.576647px;}
.h0_c00435{height:892.499550px;}
.h1_c00435{height:892.500000px;}
.w0_c00435{width:1262.999700px;}
.w1_c00435{width:1263.000000px;}
.x0_c00435{left:0.000000px;}
.xa_c00435{left:27.165750px;}
.x10_c00435{left:35.265750px;}
.x14_c00435{left:38.506050px;}
.x6_c00435{left:43.726200px;}
.x9_c00435{left:52.725600px;}
.x8_c00435{left:59.385900px;}
.x7_c00435{left:66.045750px;}
.x3_c00435{left:92.866040px;}
.x4_c00435{left:185.386500px;}
.x1_c00435{left:228.406500px;}
.x2_c00435{left:287.446500px;}
.x5_c00435{left:416.506500px;}
.xd_c00435{left:482.564325px;}
.xe_c00435{left:492.283862px;}
.xc_c00435{left:499.844223px;}
.xb_c00435{left:501.283872px;}
.x12_c00435{left:567.526500px;}
.x13_c00435{left:616.846500px;}
.x11_c00435{left:837.165000px;}
.xf_c00435{left:878.566500px;}
@media print{
.v0_c00435{vertical-align:0.000000pt;}
.v1_c00435{vertical-align:18.560533pt;}
.ls1_c00435{letter-spacing:0.000000pt;}
.ls0_c00435{letter-spacing:1.043858pt;}
.ws8_c00435{word-spacing:-28.028627pt;}
.ws5_c00435{word-spacing:-12.350837pt;}
.ws4_c00435{word-spacing:-11.306979pt;}
.ws7_c00435{word-spacing:-7.803378pt;}
.ws9_c00435{word-spacing:0.000000pt;}
.ws6_c00435{word-spacing:74.197868pt;}
.ws3_c00435{word-spacing:239.963787pt;}
.ws1_c00435{word-spacing:1003.575740pt;}
.ws0_c00435{word-spacing:1682.115023pt;}
.ws2_c00435{word-spacing:3672.555617pt;}
._a_c00435{margin-left:-1.043858pt;}
._0_c00435{width:1.713071pt;}
._1_c00435{width:3.180896pt;}
._e_c00435{width:109.420849pt;}
._17_c00435{width:120.001860pt;}
._b_c00435{width:137.850063pt;}
._11_c00435{width:138.753016pt;}
._14_c00435{width:144.334220pt;}
._d_c00435{width:162.125749pt;}
._f_c00435{width:184.178698pt;}
._15_c00435{width:196.125326pt;}
._12_c00435{width:219.818038pt;}
._9_c00435{width:261.531900pt;}
._4_c00435{width:262.810630pt;}
._6_c00435{width:278.763446pt;}
._c_c00435{width:279.909752pt;}
._8_c00435{width:295.367186pt;}
._7_c00435{width:304.538675pt;}
._10_c00435{width:326.825576pt;}
._18_c00435{width:336.870476pt;}
._16_c00435{width:338.127225pt;}
._3_c00435{width:346.538770pt;}
._5_c00435{width:358.266866pt;}
._13_c00435{width:362.454254pt;}
._2_c00435{width:1037.266312pt;}
.fs2_c00435{font-size:28.069707pt;}
.fs1_c00435{font-size:40.672587pt;}
.fs0_c00435{font-size:60.722667pt;}
.fs4_c00435{font-size:70.462933pt;}
.fs3_c00435{font-size:100.822400pt;}
.y0_c00435{bottom:0.000000pt;}
.y18_c00435{bottom:19.575200pt;}
.y1e_c00435{bottom:19.575333pt;}
.y17_c00435{bottom:42.935067pt;}
.y1d_c00435{bottom:42.935200pt;}
.y16_c00435{bottom:66.294933pt;}
.y1c_c00435{bottom:66.296133pt;}
.y15_c00435{bottom:89.654800pt;}
.y1b_c00435{bottom:89.656000pt;}
.y14_c00435{bottom:113.014667pt;}
.y1a_c00435{bottom:113.015867pt;}
.y13_c00435{bottom:136.374533pt;}
.y19_c00435{bottom:136.374667pt;}
.y1f_c00435{bottom:138.614533pt;}
.y5_c00435{bottom:167.733200pt;}
.y12_c00435{bottom:186.613200pt;}
.y7_c00435{bottom:200.853200pt;}
.y8_c00435{bottom:238.933200pt;}
.y6_c00435{bottom:263.573200pt;}
.y9_c00435{bottom:277.013200pt;}
.ya_c00435{bottom:314.933200pt;}
.yb_c00435{bottom:353.013200pt;}
.yc_c00435{bottom:391.093200pt;}
.yd_c00435{bottom:429.173200pt;}
.ye_c00435{bottom:467.093200pt;}
.yf_c00435{bottom:505.173200pt;}
.y10_c00435{bottom:543.253200pt;}
.y11_c00435{bottom:581.173200pt;}
.y4_c00435{bottom:586.453200pt;}
.y3_c00435{bottom:596.533413pt;}
.y2_c00435{bottom:606.453200pt;}
.y1_c00435{bottom:628.373200pt;}
.y26_c00435{bottom:657.333200pt;}
.y23_c00435{bottom:667.572933pt;}
.y25_c00435{bottom:673.493200pt;}
.y22_c00435{bottom:690.613067pt;}
.y20_c00435{bottom:697.013200pt;}
.y24_c00435{bottom:706.293200pt;}
.y21_c00435{bottom:713.653200pt;}
.h3_c00435{height:29.610755pt;}
.h4_c00435{height:38.996047pt;}
.h2_c00435{height:44.207762pt;}
.h6_c00435{height:51.298942pt;}
.h5_c00435{height:73.401464pt;}
.h0_c00435{height:793.332933pt;}
.h1_c00435{height:793.333333pt;}
.w0_c00435{width:1122.666400pt;}
.w1_c00435{width:1122.666667pt;}
.x0_c00435{left:0.000000pt;}
.xa_c00435{left:24.147333pt;}
.x10_c00435{left:31.347333pt;}
.x14_c00435{left:34.227600pt;}
.x6_c00435{left:38.867733pt;}
.x9_c00435{left:46.867200pt;}
.x8_c00435{left:52.787467pt;}
.x7_c00435{left:58.707333pt;}
.x3_c00435{left:82.547591pt;}
.x4_c00435{left:164.788000pt;}
.x1_c00435{left:203.028000pt;}
.x2_c00435{left:255.508000pt;}
.x5_c00435{left:370.228000pt;}
.xd_c00435{left:428.946066pt;}
.xe_c00435{left:437.585655pt;}
.xc_c00435{left:444.305976pt;}
.xb_c00435{left:445.585664pt;}
.x12_c00435{left:504.468000pt;}
.x13_c00435{left:548.308000pt;}
.x11_c00435{left:744.146667pt;}
.xf_c00435{left:780.948000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2e0ffb4db14e3641125d10ff.woff2')format("woff");}.ff1_c00436{font-family:ff1_c00436;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00436{transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);}
.m1_c00436{transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);}
.m4_c00436{transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);}
.m3_c00436{transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);}
.m0_c00436{transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);}
.v0_c00436{vertical-align:0.000000px;}
.v1_c00436{vertical-align:20.880600px;}
.ls1_c00436{letter-spacing:0.000000px;}
.ls0_c00436{letter-spacing:1.174340px;}
.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;}
}
.ws8_c00436{word-spacing:-31.532206px;}
.ws5_c00436{word-spacing:-13.894692px;}
.ws4_c00436{word-spacing:-12.720351px;}
.ws7_c00436{word-spacing:-8.778801px;}
.ws9_c00436{word-spacing:0.000000px;}
.ws6_c00436{word-spacing:83.472601px;}
.ws3_c00436{word-spacing:269.959261px;}
.ws1_c00436{word-spacing:1129.022707px;}
.ws0_c00436{word-spacing:1892.379401px;}
.ws2_c00436{word-spacing:4131.625069px;}
._a_c00436{margin-left:-1.174340px;}
._0_c00436{width:1.927205px;}
._1_c00436{width:3.578508px;}
._e_c00436{width:123.098455px;}
._17_c00436{width:135.002093px;}
._b_c00436{width:155.081320px;}
._11_c00436{width:156.097143px;}
._14_c00436{width:162.375998px;}
._d_c00436{width:182.391467px;}
._f_c00436{width:207.201036px;}
._15_c00436{width:220.640991px;}
._12_c00436{width:247.295292px;}
._9_c00436{width:294.223388px;}
._4_c00436{width:295.661959px;}
._6_c00436{width:313.608876px;}
._c_c00436{width:314.898471px;}
._8_c00436{width:332.288085px;}
._7_c00436{width:342.606009px;}
._10_c00436{width:367.678773px;}
._16_c00436{width:380.393128px;}
._3_c00436{width:389.856116px;}
._5_c00436{width:403.050224px;}
._13_c00436{width:407.761036px;}
._18_c00436{width:436.860973px;}
._2_c00436{width:1166.924601px;}
.fc1_c00436{color:transparent;}
.fc0_c00436{color:rgb(0,0,0);}
.fs2_c00436{font-size:31.578420px;}
.fs1_c00436{font-size:45.756660px;}
.fs0_c00436{font-size:68.313000px;}
.fs4_c00436{font-size:79.270800px;}
.fs3_c00436{font-size:113.425200px;}
.y0_c00436{bottom:0.000000px;}
.y18_c00436{bottom:22.022100px;}
.y1e_c00436{bottom:22.022250px;}
.y17_c00436{bottom:48.301950px;}
.y1d_c00436{bottom:48.302100px;}
.y16_c00436{bottom:74.581800px;}
.y1c_c00436{bottom:74.583150px;}
.y15_c00436{bottom:100.861650px;}
.y1b_c00436{bottom:100.863000px;}
.y14_c00436{bottom:127.141500px;}
.y1a_c00436{bottom:127.142850px;}
.y13_c00436{bottom:153.421350px;}
.y19_c00436{bottom:153.421500px;}
.y1f_c00436{bottom:155.941350px;}
.y5_c00436{bottom:188.699850px;}
.y12_c00436{bottom:209.939850px;}
.y7_c00436{bottom:225.959850px;}
.y8_c00436{bottom:268.799850px;}
.y6_c00436{bottom:296.519850px;}
.y9_c00436{bottom:311.639850px;}
.ya_c00436{bottom:354.299850px;}
.yb_c00436{bottom:397.139850px;}
.yc_c00436{bottom:439.979850px;}
.yd_c00436{bottom:482.819850px;}
.ye_c00436{bottom:525.479850px;}
.yf_c00436{bottom:568.319850px;}
.y10_c00436{bottom:611.159850px;}
.y11_c00436{bottom:653.819850px;}
.y4_c00436{bottom:659.759850px;}
.y3_c00436{bottom:671.100090px;}
.y2_c00436{bottom:682.259850px;}
.y1_c00436{bottom:706.919850px;}
.y26_c00436{bottom:739.499850px;}
.y23_c00436{bottom:751.019550px;}
.y25_c00436{bottom:757.679850px;}
.y22_c00436{bottom:776.939700px;}
.y20_c00436{bottom:784.139850px;}
.y24_c00436{bottom:794.579850px;}
.y21_c00436{bottom:802.859850px;}
.h3_c00436{height:33.312100px;}
.h4_c00436{height:43.870553px;}
.h2_c00436{height:49.733732px;}
.h6_c00436{height:57.711310px;}
.h5_c00436{height:82.576647px;}
.h0_c00436{height:892.499550px;}
.h1_c00436{height:892.500000px;}
.w0_c00436{width:1262.999700px;}
.w1_c00436{width:1263.000000px;}
.x0_c00436{left:0.000000px;}
.xa_c00436{left:27.165750px;}
.x10_c00436{left:35.265750px;}
.x14_c00436{left:38.506050px;}
.x6_c00436{left:43.726200px;}
.x9_c00436{left:52.725600px;}
.x8_c00436{left:59.385900px;}
.x7_c00436{left:66.045750px;}
.x3_c00436{left:92.866040px;}
.x4_c00436{left:185.386500px;}
.x1_c00436{left:228.406500px;}
.x2_c00436{left:287.446500px;}
.x5_c00436{left:416.506500px;}
.xd_c00436{left:482.564216px;}
.xe_c00436{left:492.284340px;}
.xb_c00436{left:493.544117px;}
.xc_c00436{left:499.844115px;}
.x12_c00436{left:567.526500px;}
.x13_c00436{left:616.846500px;}
.x11_c00436{left:837.165000px;}
.xf_c00436{left:878.566500px;}
@media print{
.v0_c00436{vertical-align:0.000000pt;}
.v1_c00436{vertical-align:18.560533pt;}
.ls1_c00436{letter-spacing:0.000000pt;}
.ls0_c00436{letter-spacing:1.043858pt;}
.ws8_c00436{word-spacing:-28.028627pt;}
.ws5_c00436{word-spacing:-12.350837pt;}
.ws4_c00436{word-spacing:-11.306979pt;}
.ws7_c00436{word-spacing:-7.803378pt;}
.ws9_c00436{word-spacing:0.000000pt;}
.ws6_c00436{word-spacing:74.197868pt;}
.ws3_c00436{word-spacing:239.963787pt;}
.ws1_c00436{word-spacing:1003.575740pt;}
.ws0_c00436{word-spacing:1682.115023pt;}
.ws2_c00436{word-spacing:3672.555617pt;}
._a_c00436{margin-left:-1.043858pt;}
._0_c00436{width:1.713071pt;}
._1_c00436{width:3.180896pt;}
._e_c00436{width:109.420849pt;}
._17_c00436{width:120.001860pt;}
._b_c00436{width:137.850063pt;}
._11_c00436{width:138.753016pt;}
._14_c00436{width:144.334220pt;}
._d_c00436{width:162.125749pt;}
._f_c00436{width:184.178698pt;}
._15_c00436{width:196.125326pt;}
._12_c00436{width:219.818038pt;}
._9_c00436{width:261.531900pt;}
._4_c00436{width:262.810630pt;}
._6_c00436{width:278.763446pt;}
._c_c00436{width:279.909752pt;}
._8_c00436{width:295.367186pt;}
._7_c00436{width:304.538675pt;}
._10_c00436{width:326.825576pt;}
._16_c00436{width:338.127225pt;}
._3_c00436{width:346.538770pt;}
._5_c00436{width:358.266866pt;}
._13_c00436{width:362.454254pt;}
._18_c00436{width:388.320865pt;}
._2_c00436{width:1037.266312pt;}
.fs2_c00436{font-size:28.069707pt;}
.fs1_c00436{font-size:40.672587pt;}
.fs0_c00436{font-size:60.722667pt;}
.fs4_c00436{font-size:70.462933pt;}
.fs3_c00436{font-size:100.822400pt;}
.y0_c00436{bottom:0.000000pt;}
.y18_c00436{bottom:19.575200pt;}
.y1e_c00436{bottom:19.575333pt;}
.y17_c00436{bottom:42.935067pt;}
.y1d_c00436{bottom:42.935200pt;}
.y16_c00436{bottom:66.294933pt;}
.y1c_c00436{bottom:66.296133pt;}
.y15_c00436{bottom:89.654800pt;}
.y1b_c00436{bottom:89.656000pt;}
.y14_c00436{bottom:113.014667pt;}
.y1a_c00436{bottom:113.015867pt;}
.y13_c00436{bottom:136.374533pt;}
.y19_c00436{bottom:136.374667pt;}
.y1f_c00436{bottom:138.614533pt;}
.y5_c00436{bottom:167.733200pt;}
.y12_c00436{bottom:186.613200pt;}
.y7_c00436{bottom:200.853200pt;}
.y8_c00436{bottom:238.933200pt;}
.y6_c00436{bottom:263.573200pt;}
.y9_c00436{bottom:277.013200pt;}
.ya_c00436{bottom:314.933200pt;}
.yb_c00436{bottom:353.013200pt;}
.yc_c00436{bottom:391.093200pt;}
.yd_c00436{bottom:429.173200pt;}
.ye_c00436{bottom:467.093200pt;}
.yf_c00436{bottom:505.173200pt;}
.y10_c00436{bottom:543.253200pt;}
.y11_c00436{bottom:581.173200pt;}
.y4_c00436{bottom:586.453200pt;}
.y3_c00436{bottom:596.533413pt;}
.y2_c00436{bottom:606.453200pt;}
.y1_c00436{bottom:628.373200pt;}
.y26_c00436{bottom:657.333200pt;}
.y23_c00436{bottom:667.572933pt;}
.y25_c00436{bottom:673.493200pt;}
.y22_c00436{bottom:690.613067pt;}
.y20_c00436{bottom:697.013200pt;}
.y24_c00436{bottom:706.293200pt;}
.y21_c00436{bottom:713.653200pt;}
.h3_c00436{height:29.610755pt;}
.h4_c00436{height:38.996047pt;}
.h2_c00436{height:44.207762pt;}
.h6_c00436{height:51.298942pt;}
.h5_c00436{height:73.401464pt;}
.h0_c00436{height:793.332933pt;}
.h1_c00436{height:793.333333pt;}
.w0_c00436{width:1122.666400pt;}
.w1_c00436{width:1122.666667pt;}
.x0_c00436{left:0.000000pt;}
.xa_c00436{left:24.147333pt;}
.x10_c00436{left:31.347333pt;}
.x14_c00436{left:34.227600pt;}
.x6_c00436{left:38.867733pt;}
.x9_c00436{left:46.867200pt;}
.x8_c00436{left:52.787467pt;}
.x7_c00436{left:58.707333pt;}
.x3_c00436{left:82.547591pt;}
.x4_c00436{left:164.788000pt;}
.x1_c00436{left:203.028000pt;}
.x2_c00436{left:255.508000pt;}
.x5_c00436{left:370.228000pt;}
.xd_c00436{left:428.945970pt;}
.xe_c00436{left:437.586080pt;}
.xb_c00436{left:438.705882pt;}
.xc_c00436{left:444.305880pt;}
.x12_c00436{left:504.468000pt;}
.x13_c00436{left:548.308000pt;}
.x11_c00436{left:744.146667pt;}
.xf_c00436{left:780.948000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7bc04f34cc0958e4ffe7334c.woff2')format("woff");}.ff1_c00437{font-family:ff1_c00437;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00437{transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);}
.m1_c00437{transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);}
.m4_c00437{transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);}
.m3_c00437{transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);}
.m0_c00437{transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);}
.v0_c00437{vertical-align:0.000000px;}
.v1_c00437{vertical-align:20.880600px;}
.ls1_c00437{letter-spacing:0.000000px;}
.ls0_c00437{letter-spacing:1.174340px;}
.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;}
}
.ws8_c00437{word-spacing:-31.532206px;}
.ws5_c00437{word-spacing:-13.894692px;}
.ws4_c00437{word-spacing:-12.720351px;}
.ws7_c00437{word-spacing:-8.778801px;}
.ws9_c00437{word-spacing:0.000000px;}
.ws6_c00437{word-spacing:83.472601px;}
.ws3_c00437{word-spacing:269.959261px;}
.ws1_c00437{word-spacing:1129.022707px;}
.ws0_c00437{word-spacing:1892.379401px;}
.ws2_c00437{word-spacing:4131.625069px;}
._a_c00437{margin-left:-1.174340px;}
._0_c00437{width:1.927205px;}
._1_c00437{width:3.578508px;}
._e_c00437{width:123.098455px;}
._17_c00437{width:135.002093px;}
._b_c00437{width:155.081320px;}
._11_c00437{width:156.097143px;}
._14_c00437{width:162.375998px;}
._d_c00437{width:182.391467px;}
._f_c00437{width:207.201036px;}
._15_c00437{width:220.640991px;}
._12_c00437{width:247.295292px;}
._9_c00437{width:294.223388px;}
._4_c00437{width:295.661959px;}
._6_c00437{width:313.608876px;}
._c_c00437{width:314.898471px;}
._8_c00437{width:332.288085px;}
._7_c00437{width:342.606009px;}
._10_c00437{width:367.678773px;}
._16_c00437{width:380.393128px;}
._3_c00437{width:389.856116px;}
._5_c00437{width:403.050224px;}
._13_c00437{width:407.761036px;}
._18_c00437{width:436.860973px;}
._2_c00437{width:1166.924601px;}
.fc1_c00437{color:transparent;}
.fc0_c00437{color:rgb(0,0,0);}
.fs2_c00437{font-size:31.578420px;}
.fs1_c00437{font-size:45.756660px;}
.fs0_c00437{font-size:68.313000px;}
.fs4_c00437{font-size:79.270800px;}
.fs3_c00437{font-size:113.425200px;}
.y0_c00437{bottom:0.000000px;}
.y18_c00437{bottom:22.022100px;}
.y1e_c00437{bottom:22.022250px;}
.y17_c00437{bottom:48.301950px;}
.y1d_c00437{bottom:48.302100px;}
.y16_c00437{bottom:74.581800px;}
.y1c_c00437{bottom:74.583150px;}
.y15_c00437{bottom:100.861650px;}
.y1b_c00437{bottom:100.863000px;}
.y14_c00437{bottom:127.141500px;}
.y1a_c00437{bottom:127.142850px;}
.y13_c00437{bottom:153.421350px;}
.y19_c00437{bottom:153.421500px;}
.y1f_c00437{bottom:155.941350px;}
.y5_c00437{bottom:188.699850px;}
.y12_c00437{bottom:209.939850px;}
.y7_c00437{bottom:225.959850px;}
.y8_c00437{bottom:268.799850px;}
.y6_c00437{bottom:296.519850px;}
.y9_c00437{bottom:311.639850px;}
.ya_c00437{bottom:354.299850px;}
.yb_c00437{bottom:397.139850px;}
.yc_c00437{bottom:439.979850px;}
.yd_c00437{bottom:482.819850px;}
.ye_c00437{bottom:525.479850px;}
.yf_c00437{bottom:568.319850px;}
.y10_c00437{bottom:611.159850px;}
.y11_c00437{bottom:653.819850px;}
.y4_c00437{bottom:659.759850px;}
.y3_c00437{bottom:671.100090px;}
.y2_c00437{bottom:682.259850px;}
.y1_c00437{bottom:706.919850px;}
.y26_c00437{bottom:739.499850px;}
.y23_c00437{bottom:751.019550px;}
.y25_c00437{bottom:757.679850px;}
.y22_c00437{bottom:776.939700px;}
.y20_c00437{bottom:784.139850px;}
.y24_c00437{bottom:794.579850px;}
.y21_c00437{bottom:802.859850px;}
.h3_c00437{height:33.312100px;}
.h4_c00437{height:43.870553px;}
.h2_c00437{height:49.733732px;}
.h6_c00437{height:57.711310px;}
.h5_c00437{height:82.576647px;}
.h0_c00437{height:892.499550px;}
.h1_c00437{height:892.500000px;}
.w0_c00437{width:1262.999700px;}
.w1_c00437{width:1263.000000px;}
.x0_c00437{left:0.000000px;}
.xa_c00437{left:27.165750px;}
.x10_c00437{left:35.265750px;}
.x14_c00437{left:38.506050px;}
.x6_c00437{left:43.726200px;}
.x9_c00437{left:52.725600px;}
.x8_c00437{left:59.385900px;}
.x7_c00437{left:66.045750px;}
.x3_c00437{left:92.866040px;}
.x4_c00437{left:185.386500px;}
.x1_c00437{left:228.406500px;}
.x2_c00437{left:287.446500px;}
.x5_c00437{left:416.506500px;}
.xd_c00437{left:482.564216px;}
.xe_c00437{left:492.284340px;}
.xb_c00437{left:493.544117px;}
.xc_c00437{left:499.844115px;}
.x12_c00437{left:567.526500px;}
.x13_c00437{left:616.846500px;}
.x11_c00437{left:837.165000px;}
.xf_c00437{left:878.566500px;}
@media print{
.v0_c00437{vertical-align:0.000000pt;}
.v1_c00437{vertical-align:18.560533pt;}
.ls1_c00437{letter-spacing:0.000000pt;}
.ls0_c00437{letter-spacing:1.043858pt;}
.ws8_c00437{word-spacing:-28.028627pt;}
.ws5_c00437{word-spacing:-12.350837pt;}
.ws4_c00437{word-spacing:-11.306979pt;}
.ws7_c00437{word-spacing:-7.803378pt;}
.ws9_c00437{word-spacing:0.000000pt;}
.ws6_c00437{word-spacing:74.197868pt;}
.ws3_c00437{word-spacing:239.963787pt;}
.ws1_c00437{word-spacing:1003.575740pt;}
.ws0_c00437{word-spacing:1682.115023pt;}
.ws2_c00437{word-spacing:3672.555617pt;}
._a_c00437{margin-left:-1.043858pt;}
._0_c00437{width:1.713071pt;}
._1_c00437{width:3.180896pt;}
._e_c00437{width:109.420849pt;}
._17_c00437{width:120.001860pt;}
._b_c00437{width:137.850063pt;}
._11_c00437{width:138.753016pt;}
._14_c00437{width:144.334220pt;}
._d_c00437{width:162.125749pt;}
._f_c00437{width:184.178698pt;}
._15_c00437{width:196.125326pt;}
._12_c00437{width:219.818038pt;}
._9_c00437{width:261.531900pt;}
._4_c00437{width:262.810630pt;}
._6_c00437{width:278.763446pt;}
._c_c00437{width:279.909752pt;}
._8_c00437{width:295.367186pt;}
._7_c00437{width:304.538675pt;}
._10_c00437{width:326.825576pt;}
._16_c00437{width:338.127225pt;}
._3_c00437{width:346.538770pt;}
._5_c00437{width:358.266866pt;}
._13_c00437{width:362.454254pt;}
._18_c00437{width:388.320865pt;}
._2_c00437{width:1037.266312pt;}
.fs2_c00437{font-size:28.069707pt;}
.fs1_c00437{font-size:40.672587pt;}
.fs0_c00437{font-size:60.722667pt;}
.fs4_c00437{font-size:70.462933pt;}
.fs3_c00437{font-size:100.822400pt;}
.y0_c00437{bottom:0.000000pt;}
.y18_c00437{bottom:19.575200pt;}
.y1e_c00437{bottom:19.575333pt;}
.y17_c00437{bottom:42.935067pt;}
.y1d_c00437{bottom:42.935200pt;}
.y16_c00437{bottom:66.294933pt;}
.y1c_c00437{bottom:66.296133pt;}
.y15_c00437{bottom:89.654800pt;}
.y1b_c00437{bottom:89.656000pt;}
.y14_c00437{bottom:113.014667pt;}
.y1a_c00437{bottom:113.015867pt;}
.y13_c00437{bottom:136.374533pt;}
.y19_c00437{bottom:136.374667pt;}
.y1f_c00437{bottom:138.614533pt;}
.y5_c00437{bottom:167.733200pt;}
.y12_c00437{bottom:186.613200pt;}
.y7_c00437{bottom:200.853200pt;}
.y8_c00437{bottom:238.933200pt;}
.y6_c00437{bottom:263.573200pt;}
.y9_c00437{bottom:277.013200pt;}
.ya_c00437{bottom:314.933200pt;}
.yb_c00437{bottom:353.013200pt;}
.yc_c00437{bottom:391.093200pt;}
.yd_c00437{bottom:429.173200pt;}
.ye_c00437{bottom:467.093200pt;}
.yf_c00437{bottom:505.173200pt;}
.y10_c00437{bottom:543.253200pt;}
.y11_c00437{bottom:581.173200pt;}
.y4_c00437{bottom:586.453200pt;}
.y3_c00437{bottom:596.533413pt;}
.y2_c00437{bottom:606.453200pt;}
.y1_c00437{bottom:628.373200pt;}
.y26_c00437{bottom:657.333200pt;}
.y23_c00437{bottom:667.572933pt;}
.y25_c00437{bottom:673.493200pt;}
.y22_c00437{bottom:690.613067pt;}
.y20_c00437{bottom:697.013200pt;}
.y24_c00437{bottom:706.293200pt;}
.y21_c00437{bottom:713.653200pt;}
.h3_c00437{height:29.610755pt;}
.h4_c00437{height:38.996047pt;}
.h2_c00437{height:44.207762pt;}
.h6_c00437{height:51.298942pt;}
.h5_c00437{height:73.401464pt;}
.h0_c00437{height:793.332933pt;}
.h1_c00437{height:793.333333pt;}
.w0_c00437{width:1122.666400pt;}
.w1_c00437{width:1122.666667pt;}
.x0_c00437{left:0.000000pt;}
.xa_c00437{left:24.147333pt;}
.x10_c00437{left:31.347333pt;}
.x14_c00437{left:34.227600pt;}
.x6_c00437{left:38.867733pt;}
.x9_c00437{left:46.867200pt;}
.x8_c00437{left:52.787467pt;}
.x7_c00437{left:58.707333pt;}
.x3_c00437{left:82.547591pt;}
.x4_c00437{left:164.788000pt;}
.x1_c00437{left:203.028000pt;}
.x2_c00437{left:255.508000pt;}
.x5_c00437{left:370.228000pt;}
.xd_c00437{left:428.945970pt;}
.xe_c00437{left:437.586080pt;}
.xb_c00437{left:438.705882pt;}
.xc_c00437{left:444.305880pt;}
.x12_c00437{left:504.468000pt;}
.x13_c00437{left:548.308000pt;}
.x11_c00437{left:744.146667pt;}
.xf_c00437{left:780.948000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9202ece22c9a4389b4fbcb12.woff2')format("woff");}.ff1_c00438{font-family:ff1_c00438;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00438{transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);}
.m1_c00438{transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);}
.m4_c00438{transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);}
.m3_c00438{transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);}
.m0_c00438{transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);}
.v0_c00438{vertical-align:0.000000px;}
.v1_c00438{vertical-align:20.880600px;}
.ls1_c00438{letter-spacing:0.000000px;}
.ls0_c00438{letter-spacing:1.174340px;}
.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;}
}
.ws8_c00438{word-spacing:-31.532206px;}
.ws5_c00438{word-spacing:-13.894692px;}
.ws4_c00438{word-spacing:-12.720351px;}
.ws7_c00438{word-spacing:-8.778801px;}
.ws9_c00438{word-spacing:0.000000px;}
.ws6_c00438{word-spacing:83.472601px;}
.ws3_c00438{word-spacing:269.959261px;}
.ws1_c00438{word-spacing:1129.022707px;}
.ws0_c00438{word-spacing:1892.379401px;}
.ws2_c00438{word-spacing:4131.625069px;}
._a_c00438{margin-left:-1.174340px;}
._0_c00438{width:1.927205px;}
._1_c00438{width:3.578508px;}
._e_c00438{width:123.098455px;}
._17_c00438{width:135.002093px;}
._b_c00438{width:155.081320px;}
._11_c00438{width:156.097143px;}
._14_c00438{width:162.375998px;}
._d_c00438{width:182.391467px;}
._f_c00438{width:207.201036px;}
._15_c00438{width:220.640991px;}
._12_c00438{width:247.295292px;}
._9_c00438{width:294.223388px;}
._4_c00438{width:295.661959px;}
._6_c00438{width:313.608876px;}
._c_c00438{width:314.898471px;}
._8_c00438{width:332.288085px;}
._7_c00438{width:342.606009px;}
._10_c00438{width:367.678773px;}
._16_c00438{width:380.393128px;}
._3_c00438{width:389.856116px;}
._5_c00438{width:403.050224px;}
._13_c00438{width:407.761036px;}
._18_c00438{width:436.860973px;}
._2_c00438{width:1166.924601px;}
.fc1_c00438{color:transparent;}
.fc0_c00438{color:rgb(0,0,0);}
.fs2_c00438{font-size:31.578420px;}
.fs1_c00438{font-size:45.756660px;}
.fs0_c00438{font-size:68.313000px;}
.fs4_c00438{font-size:79.270800px;}
.fs3_c00438{font-size:113.425200px;}
.y0_c00438{bottom:0.000000px;}
.y18_c00438{bottom:22.022100px;}
.y1e_c00438{bottom:22.022250px;}
.y17_c00438{bottom:48.301950px;}
.y1d_c00438{bottom:48.302100px;}
.y16_c00438{bottom:74.581800px;}
.y1c_c00438{bottom:74.583150px;}
.y15_c00438{bottom:100.861650px;}
.y1b_c00438{bottom:100.863000px;}
.y14_c00438{bottom:127.141500px;}
.y1a_c00438{bottom:127.142850px;}
.y13_c00438{bottom:153.421350px;}
.y19_c00438{bottom:153.421500px;}
.y1f_c00438{bottom:155.941350px;}
.y5_c00438{bottom:188.699850px;}
.y12_c00438{bottom:209.939850px;}
.y7_c00438{bottom:225.959850px;}
.y8_c00438{bottom:268.799850px;}
.y6_c00438{bottom:296.519850px;}
.y9_c00438{bottom:311.639850px;}
.ya_c00438{bottom:354.299850px;}
.yb_c00438{bottom:397.139850px;}
.yc_c00438{bottom:439.979850px;}
.yd_c00438{bottom:482.819850px;}
.ye_c00438{bottom:525.479850px;}
.yf_c00438{bottom:568.319850px;}
.y10_c00438{bottom:611.159850px;}
.y11_c00438{bottom:653.819850px;}
.y4_c00438{bottom:659.759850px;}
.y3_c00438{bottom:671.100090px;}
.y2_c00438{bottom:682.259850px;}
.y1_c00438{bottom:706.919850px;}
.y26_c00438{bottom:739.499850px;}
.y23_c00438{bottom:751.019550px;}
.y25_c00438{bottom:757.679850px;}
.y22_c00438{bottom:776.939700px;}
.y20_c00438{bottom:784.139850px;}
.y24_c00438{bottom:794.579850px;}
.y21_c00438{bottom:802.859850px;}
.h3_c00438{height:33.312100px;}
.h4_c00438{height:43.870553px;}
.h2_c00438{height:49.733732px;}
.h6_c00438{height:57.711310px;}
.h5_c00438{height:82.576647px;}
.h0_c00438{height:892.499550px;}
.h1_c00438{height:892.500000px;}
.w0_c00438{width:1262.999700px;}
.w1_c00438{width:1263.000000px;}
.x0_c00438{left:0.000000px;}
.xa_c00438{left:27.165750px;}
.xf_c00438{left:35.265750px;}
.x13_c00438{left:38.506050px;}
.x6_c00438{left:43.726200px;}
.x9_c00438{left:52.725600px;}
.x8_c00438{left:59.385900px;}
.x7_c00438{left:66.045750px;}
.x3_c00438{left:92.866040px;}
.x4_c00438{left:185.386500px;}
.x1_c00438{left:228.406500px;}
.x2_c00438{left:287.446500px;}
.x5_c00438{left:416.506500px;}
.xc_c00438{left:482.566615px;}
.xd_c00438{left:492.286153px;}
.xb_c00438{left:500.206279px;}
.x11_c00438{left:567.526500px;}
.x12_c00438{left:616.846500px;}
.x10_c00438{left:837.165000px;}
.xe_c00438{left:878.566500px;}
@media print{
.v0_c00438{vertical-align:0.000000pt;}
.v1_c00438{vertical-align:18.560533pt;}
.ls1_c00438{letter-spacing:0.000000pt;}
.ls0_c00438{letter-spacing:1.043858pt;}
.ws8_c00438{word-spacing:-28.028627pt;}
.ws5_c00438{word-spacing:-12.350837pt;}
.ws4_c00438{word-spacing:-11.306979pt;}
.ws7_c00438{word-spacing:-7.803378pt;}
.ws9_c00438{word-spacing:0.000000pt;}
.ws6_c00438{word-spacing:74.197868pt;}
.ws3_c00438{word-spacing:239.963787pt;}
.ws1_c00438{word-spacing:1003.575740pt;}
.ws0_c00438{word-spacing:1682.115023pt;}
.ws2_c00438{word-spacing:3672.555617pt;}
._a_c00438{margin-left:-1.043858pt;}
._0_c00438{width:1.713071pt;}
._1_c00438{width:3.180896pt;}
._e_c00438{width:109.420849pt;}
._17_c00438{width:120.001860pt;}
._b_c00438{width:137.850063pt;}
._11_c00438{width:138.753016pt;}
._14_c00438{width:144.334220pt;}
._d_c00438{width:162.125749pt;}
._f_c00438{width:184.178698pt;}
._15_c00438{width:196.125326pt;}
._12_c00438{width:219.818038pt;}
._9_c00438{width:261.531900pt;}
._4_c00438{width:262.810630pt;}
._6_c00438{width:278.763446pt;}
._c_c00438{width:279.909752pt;}
._8_c00438{width:295.367186pt;}
._7_c00438{width:304.538675pt;}
._10_c00438{width:326.825576pt;}
._16_c00438{width:338.127225pt;}
._3_c00438{width:346.538770pt;}
._5_c00438{width:358.266866pt;}
._13_c00438{width:362.454254pt;}
._18_c00438{width:388.320865pt;}
._2_c00438{width:1037.266312pt;}
.fs2_c00438{font-size:28.069707pt;}
.fs1_c00438{font-size:40.672587pt;}
.fs0_c00438{font-size:60.722667pt;}
.fs4_c00438{font-size:70.462933pt;}
.fs3_c00438{font-size:100.822400pt;}
.y0_c00438{bottom:0.000000pt;}
.y18_c00438{bottom:19.575200pt;}
.y1e_c00438{bottom:19.575333pt;}
.y17_c00438{bottom:42.935067pt;}
.y1d_c00438{bottom:42.935200pt;}
.y16_c00438{bottom:66.294933pt;}
.y1c_c00438{bottom:66.296133pt;}
.y15_c00438{bottom:89.654800pt;}
.y1b_c00438{bottom:89.656000pt;}
.y14_c00438{bottom:113.014667pt;}
.y1a_c00438{bottom:113.015867pt;}
.y13_c00438{bottom:136.374533pt;}
.y19_c00438{bottom:136.374667pt;}
.y1f_c00438{bottom:138.614533pt;}
.y5_c00438{bottom:167.733200pt;}
.y12_c00438{bottom:186.613200pt;}
.y7_c00438{bottom:200.853200pt;}
.y8_c00438{bottom:238.933200pt;}
.y6_c00438{bottom:263.573200pt;}
.y9_c00438{bottom:277.013200pt;}
.ya_c00438{bottom:314.933200pt;}
.yb_c00438{bottom:353.013200pt;}
.yc_c00438{bottom:391.093200pt;}
.yd_c00438{bottom:429.173200pt;}
.ye_c00438{bottom:467.093200pt;}
.yf_c00438{bottom:505.173200pt;}
.y10_c00438{bottom:543.253200pt;}
.y11_c00438{bottom:581.173200pt;}
.y4_c00438{bottom:586.453200pt;}
.y3_c00438{bottom:596.533413pt;}
.y2_c00438{bottom:606.453200pt;}
.y1_c00438{bottom:628.373200pt;}
.y26_c00438{bottom:657.333200pt;}
.y23_c00438{bottom:667.572933pt;}
.y25_c00438{bottom:673.493200pt;}
.y22_c00438{bottom:690.613067pt;}
.y20_c00438{bottom:697.013200pt;}
.y24_c00438{bottom:706.293200pt;}
.y21_c00438{bottom:713.653200pt;}
.h3_c00438{height:29.610755pt;}
.h4_c00438{height:38.996047pt;}
.h2_c00438{height:44.207762pt;}
.h6_c00438{height:51.298942pt;}
.h5_c00438{height:73.401464pt;}
.h0_c00438{height:793.332933pt;}
.h1_c00438{height:793.333333pt;}
.w0_c00438{width:1122.666400pt;}
.w1_c00438{width:1122.666667pt;}
.x0_c00438{left:0.000000pt;}
.xa_c00438{left:24.147333pt;}
.xf_c00438{left:31.347333pt;}
.x13_c00438{left:34.227600pt;}
.x6_c00438{left:38.867733pt;}
.x9_c00438{left:46.867200pt;}
.x8_c00438{left:52.787467pt;}
.x7_c00438{left:58.707333pt;}
.x3_c00438{left:82.547591pt;}
.x4_c00438{left:164.788000pt;}
.x1_c00438{left:203.028000pt;}
.x2_c00438{left:255.508000pt;}
.x5_c00438{left:370.228000pt;}
.xc_c00438{left:428.948102pt;}
.xd_c00438{left:437.587691pt;}
.xb_c00438{left:444.627804pt;}
.x11_c00438{left:504.468000pt;}
.x12_c00438{left:548.308000pt;}
.x10_c00438{left:744.146667pt;}
.xe_c00438{left:780.948000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fdc044953a02ceff011c4e48.woff2')format("woff");}.ff1_c00439{font-family:ff1_c00439;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00439{transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);}
.m1_c00439{transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);}
.m4_c00439{transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);}
.m3_c00439{transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);}
.m0_c00439{transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);}
.v0_c00439{vertical-align:0.000000px;}
.v1_c00439{vertical-align:20.880600px;}
.ls1_c00439{letter-spacing:0.000000px;}
.ls0_c00439{letter-spacing:1.174340px;}
.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;}
}
.ws8_c00439{word-spacing:-31.532206px;}
.ws9_c00439{word-spacing:-22.037282px;}
.ws5_c00439{word-spacing:-13.894692px;}
.ws4_c00439{word-spacing:-12.720351px;}
.ws7_c00439{word-spacing:-8.778801px;}
.wsa_c00439{word-spacing:0.000000px;}
.ws6_c00439{word-spacing:83.472601px;}
.ws3_c00439{word-spacing:269.959261px;}
.ws1_c00439{word-spacing:1129.022707px;}
.ws0_c00439{word-spacing:1892.379401px;}
.ws2_c00439{word-spacing:4131.625069px;}
._a_c00439{margin-left:-1.174340px;}
._0_c00439{width:1.927205px;}
._1_c00439{width:3.578508px;}
._e_c00439{width:123.098455px;}
._17_c00439{width:135.002093px;}
._b_c00439{width:155.081320px;}
._11_c00439{width:156.097143px;}
._14_c00439{width:162.375998px;}
._d_c00439{width:182.391467px;}
._f_c00439{width:207.201036px;}
._15_c00439{width:220.640991px;}
._12_c00439{width:247.295292px;}
._9_c00439{width:294.223388px;}
._4_c00439{width:295.661959px;}
._6_c00439{width:313.608876px;}
._c_c00439{width:314.898471px;}
._8_c00439{width:332.288085px;}
._7_c00439{width:342.606009px;}
._10_c00439{width:367.678773px;}
._18_c00439{width:378.979285px;}
._16_c00439{width:380.393128px;}
._3_c00439{width:389.856116px;}
._5_c00439{width:403.050224px;}
._13_c00439{width:407.761036px;}
._2_c00439{width:1166.924601px;}
.fc1_c00439{color:transparent;}
.fc0_c00439{color:rgb(0,0,0);}
.fs2_c00439{font-size:31.578420px;}
.fs1_c00439{font-size:45.756660px;}
.fs0_c00439{font-size:68.313000px;}
.fs4_c00439{font-size:79.270800px;}
.fs3_c00439{font-size:113.425200px;}
.y0_c00439{bottom:0.000000px;}
.y18_c00439{bottom:22.022100px;}
.y1e_c00439{bottom:22.022250px;}
.y17_c00439{bottom:48.301950px;}
.y1d_c00439{bottom:48.302100px;}
.y16_c00439{bottom:74.581800px;}
.y1c_c00439{bottom:74.583150px;}
.y15_c00439{bottom:100.861650px;}
.y1b_c00439{bottom:100.863000px;}
.y14_c00439{bottom:127.141500px;}
.y1a_c00439{bottom:127.142850px;}
.y13_c00439{bottom:153.421350px;}
.y19_c00439{bottom:153.421500px;}
.y1f_c00439{bottom:155.941350px;}
.y5_c00439{bottom:188.699850px;}
.y12_c00439{bottom:209.939850px;}
.y7_c00439{bottom:225.959850px;}
.y8_c00439{bottom:268.799850px;}
.y6_c00439{bottom:296.519850px;}
.y9_c00439{bottom:311.639850px;}
.ya_c00439{bottom:354.299850px;}
.yb_c00439{bottom:397.139850px;}
.yc_c00439{bottom:439.979850px;}
.yd_c00439{bottom:482.819850px;}
.ye_c00439{bottom:525.479850px;}
.yf_c00439{bottom:568.319850px;}
.y10_c00439{bottom:611.159850px;}
.y11_c00439{bottom:653.819850px;}
.y4_c00439{bottom:659.759850px;}
.y3_c00439{bottom:671.100090px;}
.y2_c00439{bottom:682.259850px;}
.y1_c00439{bottom:706.919850px;}
.y26_c00439{bottom:739.499850px;}
.y23_c00439{bottom:751.019550px;}
.y25_c00439{bottom:757.679850px;}
.y22_c00439{bottom:776.939700px;}
.y20_c00439{bottom:784.139850px;}
.y24_c00439{bottom:794.579850px;}
.y21_c00439{bottom:802.859850px;}
.h3_c00439{height:33.312100px;}
.h4_c00439{height:43.870553px;}
.h2_c00439{height:49.733732px;}
.h6_c00439{height:57.711310px;}
.h5_c00439{height:82.576647px;}
.h0_c00439{height:892.499550px;}
.h1_c00439{height:892.500000px;}
.w0_c00439{width:1262.999700px;}
.w1_c00439{width:1263.000000px;}
.x0_c00439{left:0.000000px;}
.xa_c00439{left:27.165750px;}
.xf_c00439{left:35.265750px;}
.x13_c00439{left:38.506050px;}
.x6_c00439{left:43.726200px;}
.x9_c00439{left:52.725600px;}
.x8_c00439{left:59.385900px;}
.x7_c00439{left:66.045750px;}
.x3_c00439{left:92.866040px;}
.x4_c00439{left:185.386500px;}
.x1_c00439{left:228.406500px;}
.x2_c00439{left:287.446500px;}
.x5_c00439{left:416.506500px;}
.xc_c00439{left:479.686231px;}
.xd_c00439{left:492.286228px;}
.xb_c00439{left:500.206279px;}
.x11_c00439{left:567.526500px;}
.x12_c00439{left:638.266500px;}
.x10_c00439{left:837.165000px;}
.xe_c00439{left:878.566500px;}
@media print{
.v0_c00439{vertical-align:0.000000pt;}
.v1_c00439{vertical-align:18.560533pt;}
.ls1_c00439{letter-spacing:0.000000pt;}
.ls0_c00439{letter-spacing:1.043858pt;}
.ws8_c00439{word-spacing:-28.028627pt;}
.ws9_c00439{word-spacing:-19.588695pt;}
.ws5_c00439{word-spacing:-12.350837pt;}
.ws4_c00439{word-spacing:-11.306979pt;}
.ws7_c00439{word-spacing:-7.803378pt;}
.wsa_c00439{word-spacing:0.000000pt;}
.ws6_c00439{word-spacing:74.197868pt;}
.ws3_c00439{word-spacing:239.963787pt;}
.ws1_c00439{word-spacing:1003.575740pt;}
.ws0_c00439{word-spacing:1682.115023pt;}
.ws2_c00439{word-spacing:3672.555617pt;}
._a_c00439{margin-left:-1.043858pt;}
._0_c00439{width:1.713071pt;}
._1_c00439{width:3.180896pt;}
._e_c00439{width:109.420849pt;}
._17_c00439{width:120.001860pt;}
._b_c00439{width:137.850063pt;}
._11_c00439{width:138.753016pt;}
._14_c00439{width:144.334220pt;}
._d_c00439{width:162.125749pt;}
._f_c00439{width:184.178698pt;}
._15_c00439{width:196.125326pt;}
._12_c00439{width:219.818038pt;}
._9_c00439{width:261.531900pt;}
._4_c00439{width:262.810630pt;}
._6_c00439{width:278.763446pt;}
._c_c00439{width:279.909752pt;}
._8_c00439{width:295.367186pt;}
._7_c00439{width:304.538675pt;}
._10_c00439{width:326.825576pt;}
._18_c00439{width:336.870476pt;}
._16_c00439{width:338.127225pt;}
._3_c00439{width:346.538770pt;}
._5_c00439{width:358.266866pt;}
._13_c00439{width:362.454254pt;}
._2_c00439{width:1037.266312pt;}
.fs2_c00439{font-size:28.069707pt;}
.fs1_c00439{font-size:40.672587pt;}
.fs0_c00439{font-size:60.722667pt;}
.fs4_c00439{font-size:70.462933pt;}
.fs3_c00439{font-size:100.822400pt;}
.y0_c00439{bottom:0.000000pt;}
.y18_c00439{bottom:19.575200pt;}
.y1e_c00439{bottom:19.575333pt;}
.y17_c00439{bottom:42.935067pt;}
.y1d_c00439{bottom:42.935200pt;}
.y16_c00439{bottom:66.294933pt;}
.y1c_c00439{bottom:66.296133pt;}
.y15_c00439{bottom:89.654800pt;}
.y1b_c00439{bottom:89.656000pt;}
.y14_c00439{bottom:113.014667pt;}
.y1a_c00439{bottom:113.015867pt;}
.y13_c00439{bottom:136.374533pt;}
.y19_c00439{bottom:136.374667pt;}
.y1f_c00439{bottom:138.614533pt;}
.y5_c00439{bottom:167.733200pt;}
.y12_c00439{bottom:186.613200pt;}
.y7_c00439{bottom:200.853200pt;}
.y8_c00439{bottom:238.933200pt;}
.y6_c00439{bottom:263.573200pt;}
.y9_c00439{bottom:277.013200pt;}
.ya_c00439{bottom:314.933200pt;}
.yb_c00439{bottom:353.013200pt;}
.yc_c00439{bottom:391.093200pt;}
.yd_c00439{bottom:429.173200pt;}
.ye_c00439{bottom:467.093200pt;}
.yf_c00439{bottom:505.173200pt;}
.y10_c00439{bottom:543.253200pt;}
.y11_c00439{bottom:581.173200pt;}
.y4_c00439{bottom:586.453200pt;}
.y3_c00439{bottom:596.533413pt;}
.y2_c00439{bottom:606.453200pt;}
.y1_c00439{bottom:628.373200pt;}
.y26_c00439{bottom:657.333200pt;}
.y23_c00439{bottom:667.572933pt;}
.y25_c00439{bottom:673.493200pt;}
.y22_c00439{bottom:690.613067pt;}
.y20_c00439{bottom:697.013200pt;}
.y24_c00439{bottom:706.293200pt;}
.y21_c00439{bottom:713.653200pt;}
.h3_c00439{height:29.610755pt;}
.h4_c00439{height:38.996047pt;}
.h2_c00439{height:44.207762pt;}
.h6_c00439{height:51.298942pt;}
.h5_c00439{height:73.401464pt;}
.h0_c00439{height:793.332933pt;}
.h1_c00439{height:793.333333pt;}
.w0_c00439{width:1122.666400pt;}
.w1_c00439{width:1122.666667pt;}
.x0_c00439{left:0.000000pt;}
.xa_c00439{left:24.147333pt;}
.xf_c00439{left:31.347333pt;}
.x13_c00439{left:34.227600pt;}
.x6_c00439{left:38.867733pt;}
.x9_c00439{left:46.867200pt;}
.x8_c00439{left:52.787467pt;}
.x7_c00439{left:58.707333pt;}
.x3_c00439{left:82.547591pt;}
.x4_c00439{left:164.788000pt;}
.x1_c00439{left:203.028000pt;}
.x2_c00439{left:255.508000pt;}
.x5_c00439{left:370.228000pt;}
.xc_c00439{left:426.387761pt;}
.xd_c00439{left:437.587758pt;}
.xb_c00439{left:444.627804pt;}
.x11_c00439{left:504.468000pt;}
.x12_c00439{left:567.348000pt;}
.x10_c00439{left:744.146667pt;}
.xe_c00439{left:780.948000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4c3cb924ee035b77890301cf.woff2')format("woff");}.ff1_c00440{font-family:ff1_c00440;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00440{transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);}
.m1_c00440{transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);}
.m4_c00440{transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);}
.m3_c00440{transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);}
.m0_c00440{transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);}
.v0_c00440{vertical-align:0.000000px;}
.v1_c00440{vertical-align:20.880600px;}
.ls1_c00440{letter-spacing:0.000000px;}
.ls0_c00440{letter-spacing:1.174340px;}
.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;}
}
.ws8_c00440{word-spacing:-31.532206px;}
.ws9_c00440{word-spacing:-22.037282px;}
.ws5_c00440{word-spacing:-13.894692px;}
.ws4_c00440{word-spacing:-12.720351px;}
.ws7_c00440{word-spacing:-8.778801px;}
.wsa_c00440{word-spacing:0.000000px;}
.ws6_c00440{word-spacing:83.472601px;}
.ws3_c00440{word-spacing:269.959261px;}
.ws1_c00440{word-spacing:1129.022707px;}
.ws0_c00440{word-spacing:1892.379401px;}
.ws2_c00440{word-spacing:4131.625069px;}
._a_c00440{margin-left:-1.174340px;}
._0_c00440{width:1.927205px;}
._1_c00440{width:3.578508px;}
._e_c00440{width:123.098455px;}
._17_c00440{width:135.002093px;}
._b_c00440{width:155.081320px;}
._11_c00440{width:156.097143px;}
._14_c00440{width:162.375998px;}
._d_c00440{width:182.391467px;}
._f_c00440{width:207.201036px;}
._15_c00440{width:220.640991px;}
._12_c00440{width:247.295292px;}
._9_c00440{width:294.223388px;}
._4_c00440{width:295.661959px;}
._6_c00440{width:313.608876px;}
._c_c00440{width:314.898471px;}
._8_c00440{width:332.288085px;}
._7_c00440{width:342.606009px;}
._10_c00440{width:367.678773px;}
._18_c00440{width:378.979285px;}
._16_c00440{width:380.393128px;}
._3_c00440{width:389.856116px;}
._5_c00440{width:403.050224px;}
._13_c00440{width:407.761036px;}
._2_c00440{width:1166.924601px;}
.fc1_c00440{color:transparent;}
.fc0_c00440{color:rgb(0,0,0);}
.fs2_c00440{font-size:31.578420px;}
.fs1_c00440{font-size:45.756660px;}
.fs0_c00440{font-size:68.313000px;}
.fs4_c00440{font-size:79.270800px;}
.fs3_c00440{font-size:113.425200px;}
.y0_c00440{bottom:0.000000px;}
.y18_c00440{bottom:22.022100px;}
.y1e_c00440{bottom:22.022250px;}
.y17_c00440{bottom:48.301950px;}
.y1d_c00440{bottom:48.302100px;}
.y16_c00440{bottom:74.581800px;}
.y1c_c00440{bottom:74.583150px;}
.y15_c00440{bottom:100.861650px;}
.y1b_c00440{bottom:100.863000px;}
.y14_c00440{bottom:127.141500px;}
.y1a_c00440{bottom:127.142850px;}
.y13_c00440{bottom:153.421350px;}
.y19_c00440{bottom:153.421500px;}
.y1f_c00440{bottom:155.941350px;}
.y5_c00440{bottom:188.699850px;}
.y12_c00440{bottom:209.939850px;}
.y7_c00440{bottom:225.959850px;}
.y8_c00440{bottom:268.799850px;}
.y6_c00440{bottom:296.519850px;}
.y9_c00440{bottom:311.639850px;}
.ya_c00440{bottom:354.299850px;}
.yb_c00440{bottom:397.139850px;}
.yc_c00440{bottom:439.979850px;}
.yd_c00440{bottom:482.819850px;}
.ye_c00440{bottom:525.479850px;}
.yf_c00440{bottom:568.319850px;}
.y10_c00440{bottom:611.159850px;}
.y11_c00440{bottom:653.819850px;}
.y4_c00440{bottom:659.759850px;}
.y3_c00440{bottom:671.100090px;}
.y2_c00440{bottom:682.259850px;}
.y1_c00440{bottom:706.919850px;}
.y26_c00440{bottom:739.499850px;}
.y23_c00440{bottom:751.019550px;}
.y25_c00440{bottom:757.679850px;}
.y22_c00440{bottom:776.939700px;}
.y20_c00440{bottom:784.139850px;}
.y24_c00440{bottom:794.579850px;}
.y21_c00440{bottom:802.859850px;}
.h3_c00440{height:33.312100px;}
.h4_c00440{height:43.870553px;}
.h2_c00440{height:49.733732px;}
.h6_c00440{height:57.711310px;}
.h5_c00440{height:82.576647px;}
.h0_c00440{height:892.499550px;}
.h1_c00440{height:892.500000px;}
.w0_c00440{width:1262.999700px;}
.w1_c00440{width:1263.000000px;}
.x0_c00440{left:0.000000px;}
.xa_c00440{left:27.165750px;}
.xf_c00440{left:35.265750px;}
.x13_c00440{left:38.506050px;}
.x6_c00440{left:43.726200px;}
.x9_c00440{left:52.725600px;}
.x8_c00440{left:59.385900px;}
.x7_c00440{left:66.045750px;}
.x3_c00440{left:92.866040px;}
.x4_c00440{left:185.386500px;}
.x1_c00440{left:228.406500px;}
.x2_c00440{left:287.446500px;}
.x5_c00440{left:416.506500px;}
.xc_c00440{left:479.686231px;}
.xd_c00440{left:492.286228px;}
.xb_c00440{left:500.206279px;}
.x11_c00440{left:567.526500px;}
.x12_c00440{left:638.266500px;}
.x10_c00440{left:837.165000px;}
.xe_c00440{left:878.566500px;}
@media print{
.v0_c00440{vertical-align:0.000000pt;}
.v1_c00440{vertical-align:18.560533pt;}
.ls1_c00440{letter-spacing:0.000000pt;}
.ls0_c00440{letter-spacing:1.043858pt;}
.ws8_c00440{word-spacing:-28.028627pt;}
.ws9_c00440{word-spacing:-19.588695pt;}
.ws5_c00440{word-spacing:-12.350837pt;}
.ws4_c00440{word-spacing:-11.306979pt;}
.ws7_c00440{word-spacing:-7.803378pt;}
.wsa_c00440{word-spacing:0.000000pt;}
.ws6_c00440{word-spacing:74.197868pt;}
.ws3_c00440{word-spacing:239.963787pt;}
.ws1_c00440{word-spacing:1003.575740pt;}
.ws0_c00440{word-spacing:1682.115023pt;}
.ws2_c00440{word-spacing:3672.555617pt;}
._a_c00440{margin-left:-1.043858pt;}
._0_c00440{width:1.713071pt;}
._1_c00440{width:3.180896pt;}
._e_c00440{width:109.420849pt;}
._17_c00440{width:120.001860pt;}
._b_c00440{width:137.850063pt;}
._11_c00440{width:138.753016pt;}
._14_c00440{width:144.334220pt;}
._d_c00440{width:162.125749pt;}
._f_c00440{width:184.178698pt;}
._15_c00440{width:196.125326pt;}
._12_c00440{width:219.818038pt;}
._9_c00440{width:261.531900pt;}
._4_c00440{width:262.810630pt;}
._6_c00440{width:278.763446pt;}
._c_c00440{width:279.909752pt;}
._8_c00440{width:295.367186pt;}
._7_c00440{width:304.538675pt;}
._10_c00440{width:326.825576pt;}
._18_c00440{width:336.870476pt;}
._16_c00440{width:338.127225pt;}
._3_c00440{width:346.538770pt;}
._5_c00440{width:358.266866pt;}
._13_c00440{width:362.454254pt;}
._2_c00440{width:1037.266312pt;}
.fs2_c00440{font-size:28.069707pt;}
.fs1_c00440{font-size:40.672587pt;}
.fs0_c00440{font-size:60.722667pt;}
.fs4_c00440{font-size:70.462933pt;}
.fs3_c00440{font-size:100.822400pt;}
.y0_c00440{bottom:0.000000pt;}
.y18_c00440{bottom:19.575200pt;}
.y1e_c00440{bottom:19.575333pt;}
.y17_c00440{bottom:42.935067pt;}
.y1d_c00440{bottom:42.935200pt;}
.y16_c00440{bottom:66.294933pt;}
.y1c_c00440{bottom:66.296133pt;}
.y15_c00440{bottom:89.654800pt;}
.y1b_c00440{bottom:89.656000pt;}
.y14_c00440{bottom:113.014667pt;}
.y1a_c00440{bottom:113.015867pt;}
.y13_c00440{bottom:136.374533pt;}
.y19_c00440{bottom:136.374667pt;}
.y1f_c00440{bottom:138.614533pt;}
.y5_c00440{bottom:167.733200pt;}
.y12_c00440{bottom:186.613200pt;}
.y7_c00440{bottom:200.853200pt;}
.y8_c00440{bottom:238.933200pt;}
.y6_c00440{bottom:263.573200pt;}
.y9_c00440{bottom:277.013200pt;}
.ya_c00440{bottom:314.933200pt;}
.yb_c00440{bottom:353.013200pt;}
.yc_c00440{bottom:391.093200pt;}
.yd_c00440{bottom:429.173200pt;}
.ye_c00440{bottom:467.093200pt;}
.yf_c00440{bottom:505.173200pt;}
.y10_c00440{bottom:543.253200pt;}
.y11_c00440{bottom:581.173200pt;}
.y4_c00440{bottom:586.453200pt;}
.y3_c00440{bottom:596.533413pt;}
.y2_c00440{bottom:606.453200pt;}
.y1_c00440{bottom:628.373200pt;}
.y26_c00440{bottom:657.333200pt;}
.y23_c00440{bottom:667.572933pt;}
.y25_c00440{bottom:673.493200pt;}
.y22_c00440{bottom:690.613067pt;}
.y20_c00440{bottom:697.013200pt;}
.y24_c00440{bottom:706.293200pt;}
.y21_c00440{bottom:713.653200pt;}
.h3_c00440{height:29.610755pt;}
.h4_c00440{height:38.996047pt;}
.h2_c00440{height:44.207762pt;}
.h6_c00440{height:51.298942pt;}
.h5_c00440{height:73.401464pt;}
.h0_c00440{height:793.332933pt;}
.h1_c00440{height:793.333333pt;}
.w0_c00440{width:1122.666400pt;}
.w1_c00440{width:1122.666667pt;}
.x0_c00440{left:0.000000pt;}
.xa_c00440{left:24.147333pt;}
.xf_c00440{left:31.347333pt;}
.x13_c00440{left:34.227600pt;}
.x6_c00440{left:38.867733pt;}
.x9_c00440{left:46.867200pt;}
.x8_c00440{left:52.787467pt;}
.x7_c00440{left:58.707333pt;}
.x3_c00440{left:82.547591pt;}
.x4_c00440{left:164.788000pt;}
.x1_c00440{left:203.028000pt;}
.x2_c00440{left:255.508000pt;}
.x5_c00440{left:370.228000pt;}
.xc_c00440{left:426.387761pt;}
.xd_c00440{left:437.587758pt;}
.xb_c00440{left:444.627804pt;}
.x11_c00440{left:504.468000pt;}
.x12_c00440{left:567.348000pt;}
.x10_c00440{left:744.146667pt;}
.xe_c00440{left:780.948000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_667e01e4246c50a95019c921.woff2')format("woff");}.ff1_c00441{font-family:ff1_c00441;line-height:0.938965;font-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_c00441{transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);}
.m1_c00441{transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);}
.m4_c00441{transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);}
.m3_c00441{transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);}
.m0_c00441{transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);}
.v0_c00441{vertical-align:0.000000px;}
.v1_c00441{vertical-align:20.880600px;}
.ls1_c00441{letter-spacing:0.000000px;}
.ls0_c00441{letter-spacing:1.174340px;}
.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;}
}
.ws8_c00441{word-spacing:-31.532206px;}
.ws9_c00441{word-spacing:-22.037282px;}
.ws5_c00441{word-spacing:-13.894692px;}
.ws4_c00441{word-spacing:-12.720351px;}
.ws7_c00441{word-spacing:-8.778801px;}
.wsa_c00441{word-spacing:0.000000px;}
.ws6_c00441{word-spacing:83.472601px;}
.ws3_c00441{word-spacing:269.959261px;}
.ws1_c00441{word-spacing:1129.022707px;}
.ws0_c00441{word-spacing:1892.379401px;}
.ws2_c00441{word-spacing:4131.625069px;}
._a_c00441{margin-left:-1.174340px;}
._0_c00441{width:1.927205px;}
._1_c00441{width:3.578508px;}
._e_c00441{width:123.098455px;}
._17_c00441{width:135.002093px;}
._b_c00441{width:155.081320px;}
._11_c00441{width:156.097143px;}
._14_c00441{width:162.375998px;}
._d_c00441{width:182.391467px;}
._f_c00441{width:207.201036px;}
._15_c00441{width:220.640991px;}
._12_c00441{width:247.295292px;}
._9_c00441{width:294.223388px;}
._4_c00441{width:295.661959px;}
._6_c00441{width:313.608876px;}
._c_c00441{width:314.898471px;}
._8_c00441{width:332.288085px;}
._7_c00441{width:342.606009px;}
._10_c00441{width:367.678773px;}
._16_c00441{width:380.393128px;}
._3_c00441{width:389.856116px;}
._5_c00441{width:403.050224px;}
._13_c00441{width:407.761036px;}
._18_c00441{width:436.860973px;}
._2_c00441{width:1166.924601px;}
.fc1_c00441{color:transparent;}
.fc0_c00441{color:rgb(0,0,0);}
.fs2_c00441{font-size:31.578420px;}
.fs1_c00441{font-size:45.756660px;}
.fs0_c00441{font-size:68.313000px;}
.fs4_c00441{font-size:79.270800px;}
.fs3_c00441{font-size:113.425200px;}
.y0_c00441{bottom:0.000000px;}
.y18_c00441{bottom:22.022100px;}
.y1e_c00441{bottom:22.022250px;}
.y17_c00441{bottom:48.301950px;}
.y1d_c00441{bottom:48.302100px;}
.y16_c00441{bottom:74.581800px;}
.y1c_c00441{bottom:74.583150px;}
.y15_c00441{bottom:100.861650px;}
.y1b_c00441{bottom:100.863000px;}
.y14_c00441{bottom:127.141500px;}
.y1a_c00441{bottom:127.142850px;}
.y13_c00441{bottom:153.421350px;}
.y19_c00441{bottom:153.421500px;}
.y1f_c00441{bottom:155.941350px;}
.y5_c00441{bottom:188.699850px;}
.y12_c00441{bottom:209.939850px;}
.y7_c00441{bottom:225.959850px;}
.y8_c00441{bottom:268.799850px;}
.y6_c00441{bottom:296.519850px;}
.y9_c00441{bottom:311.639850px;}
.ya_c00441{bottom:354.299850px;}
.yb_c00441{bottom:397.139850px;}
.yc_c00441{bottom:439.979850px;}
.yd_c00441{bottom:482.819850px;}
.ye_c00441{bottom:525.479850px;}
.yf_c00441{bottom:568.319850px;}
.y10_c00441{bottom:611.159850px;}
.y11_c00441{bottom:653.819850px;}
.y4_c00441{bottom:659.759850px;}
.y3_c00441{bottom:671.100090px;}
.y2_c00441{bottom:682.259850px;}
.y1_c00441{bottom:706.919850px;}
.y26_c00441{bottom:739.499850px;}
.y23_c00441{bottom:751.019550px;}
.y25_c00441{bottom:757.679850px;}
.y22_c00441{bottom:776.939700px;}
.y20_c00441{bottom:784.139850px;}
.y24_c00441{bottom:794.579850px;}
.y21_c00441{bottom:802.859850px;}
.h3_c00441{height:33.334442px;}
.h4_c00441{height:43.885972px;}
.h2_c00441{height:49.767088px;}
.h6_c00441{height:57.750016px;}
.h5_c00441{height:82.632030px;}
.h0_c00441{height:892.499550px;}
.h1_c00441{height:892.500000px;}
.w0_c00441{width:1262.999700px;}
.w1_c00441{width:1263.000000px;}
.x0_c00441{left:0.000000px;}
.xa_c00441{left:27.165750px;}
.xf_c00441{left:35.265750px;}
.x13_c00441{left:38.506050px;}
.x6_c00441{left:43.726200px;}
.x9_c00441{left:52.725600px;}
.x8_c00441{left:59.385900px;}
.x7_c00441{left:66.045750px;}
.x3_c00441{left:92.866040px;}
.x4_c00441{left:185.386500px;}
.x1_c00441{left:228.406500px;}
.x2_c00441{left:287.446500px;}
.x5_c00441{left:416.506500px;}
.xc_c00441{left:479.686231px;}
.xd_c00441{left:492.286228px;}
.xb_c00441{left:500.206279px;}
.x11_c00441{left:567.526500px;}
.x12_c00441{left:638.266500px;}
.x10_c00441{left:837.165000px;}
.xe_c00441{left:878.566500px;}
@media print{
.v0_c00441{vertical-align:0.000000pt;}
.v1_c00441{vertical-align:18.560533pt;}
.ls1_c00441{letter-spacing:0.000000pt;}
.ls0_c00441{letter-spacing:1.043858pt;}
.ws8_c00441{word-spacing:-28.028627pt;}
.ws9_c00441{word-spacing:-19.588695pt;}
.ws5_c00441{word-spacing:-12.350837pt;}
.ws4_c00441{word-spacing:-11.306979pt;}
.ws7_c00441{word-spacing:-7.803378pt;}
.wsa_c00441{word-spacing:0.000000pt;}
.ws6_c00441{word-spacing:74.197868pt;}
.ws3_c00441{word-spacing:239.963787pt;}
.ws1_c00441{word-spacing:1003.575740pt;}
.ws0_c00441{word-spacing:1682.115023pt;}
.ws2_c00441{word-spacing:3672.555617pt;}
._a_c00441{margin-left:-1.043858pt;}
._0_c00441{width:1.713071pt;}
._1_c00441{width:3.180896pt;}
._e_c00441{width:109.420849pt;}
._17_c00441{width:120.001860pt;}
._b_c00441{width:137.850063pt;}
._11_c00441{width:138.753016pt;}
._14_c00441{width:144.334220pt;}
._d_c00441{width:162.125749pt;}
._f_c00441{width:184.178698pt;}
._15_c00441{width:196.125326pt;}
._12_c00441{width:219.818038pt;}
._9_c00441{width:261.531900pt;}
._4_c00441{width:262.810630pt;}
._6_c00441{width:278.763446pt;}
._c_c00441{width:279.909752pt;}
._8_c00441{width:295.367186pt;}
._7_c00441{width:304.538675pt;}
._10_c00441{width:326.825576pt;}
._16_c00441{width:338.127225pt;}
._3_c00441{width:346.538770pt;}
._5_c00441{width:358.266866pt;}
._13_c00441{width:362.454254pt;}
._18_c00441{width:388.320865pt;}
._2_c00441{width:1037.266312pt;}
.fs2_c00441{font-size:28.069707pt;}
.fs1_c00441{font-size:40.672587pt;}
.fs0_c00441{font-size:60.722667pt;}
.fs4_c00441{font-size:70.462933pt;}
.fs3_c00441{font-size:100.822400pt;}
.y0_c00441{bottom:0.000000pt;}
.y18_c00441{bottom:19.575200pt;}
.y1e_c00441{bottom:19.575333pt;}
.y17_c00441{bottom:42.935067pt;}
.y1d_c00441{bottom:42.935200pt;}
.y16_c00441{bottom:66.294933pt;}
.y1c_c00441{bottom:66.296133pt;}
.y15_c00441{bottom:89.654800pt;}
.y1b_c00441{bottom:89.656000pt;}
.y14_c00441{bottom:113.014667pt;}
.y1a_c00441{bottom:113.015867pt;}
.y13_c00441{bottom:136.374533pt;}
.y19_c00441{bottom:136.374667pt;}
.y1f_c00441{bottom:138.614533pt;}
.y5_c00441{bottom:167.733200pt;}
.y12_c00441{bottom:186.613200pt;}
.y7_c00441{bottom:200.853200pt;}
.y8_c00441{bottom:238.933200pt;}
.y6_c00441{bottom:263.573200pt;}
.y9_c00441{bottom:277.013200pt;}
.ya_c00441{bottom:314.933200pt;}
.yb_c00441{bottom:353.013200pt;}
.yc_c00441{bottom:391.093200pt;}
.yd_c00441{bottom:429.173200pt;}
.ye_c00441{bottom:467.093200pt;}
.yf_c00441{bottom:505.173200pt;}
.y10_c00441{bottom:543.253200pt;}
.y11_c00441{bottom:581.173200pt;}
.y4_c00441{bottom:586.453200pt;}
.y3_c00441{bottom:596.533413pt;}
.y2_c00441{bottom:606.453200pt;}
.y1_c00441{bottom:628.373200pt;}
.y26_c00441{bottom:657.333200pt;}
.y23_c00441{bottom:667.572933pt;}
.y25_c00441{bottom:673.493200pt;}
.y22_c00441{bottom:690.613067pt;}
.y20_c00441{bottom:697.013200pt;}
.y24_c00441{bottom:706.293200pt;}
.y21_c00441{bottom:713.653200pt;}
.h3_c00441{height:29.630615pt;}
.h4_c00441{height:39.009753pt;}
.h2_c00441{height:44.237411pt;}
.h6_c00441{height:51.333348pt;}
.h5_c00441{height:73.450694pt;}
.h0_c00441{height:793.332933pt;}
.h1_c00441{height:793.333333pt;}
.w0_c00441{width:1122.666400pt;}
.w1_c00441{width:1122.666667pt;}
.x0_c00441{left:0.000000pt;}
.xa_c00441{left:24.147333pt;}
.xf_c00441{left:31.347333pt;}
.x13_c00441{left:34.227600pt;}
.x6_c00441{left:38.867733pt;}
.x9_c00441{left:46.867200pt;}
.x8_c00441{left:52.787467pt;}
.x7_c00441{left:58.707333pt;}
.x3_c00441{left:82.547591pt;}
.x4_c00441{left:164.788000pt;}
.x1_c00441{left:203.028000pt;}
.x2_c00441{left:255.508000pt;}
.x5_c00441{left:370.228000pt;}
.xc_c00441{left:426.387761pt;}
.xd_c00441{left:437.587758pt;}
.xb_c00441{left:444.627804pt;}
.x11_c00441{left:504.468000pt;}
.x12_c00441{left:567.348000pt;}
.x10_c00441{left:744.146667pt;}
.xe_c00441{left:780.948000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5e99eece3e51942fd69492ef.woff2')format("woff");}.ff1_c00442{font-family:ff1_c00442;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00442{transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);}
.m1_c00442{transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);}
.m4_c00442{transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);}
.m3_c00442{transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);}
.m0_c00442{transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);}
.v0_c00442{vertical-align:0.000000px;}
.v1_c00442{vertical-align:20.883600px;}
.ls1_c00442{letter-spacing:0.000000px;}
.ls0_c00442{letter-spacing:1.178991px;}
.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;}
}
.ws8_c00442{word-spacing:-31.532206px;}
.ws9_c00442{word-spacing:-22.037282px;}
.ws5_c00442{word-spacing:-13.899359px;}
.ws4_c00442{word-spacing:-12.720368px;}
.ws7_c00442{word-spacing:-8.778817px;}
.wsa_c00442{word-spacing:0.000000px;}
.ws6_c00442{word-spacing:83.463278px;}
.ws3_c00442{word-spacing:269.959157px;}
.ws1_c00442{word-spacing:1129.028763px;}
.ws0_c00442{word-spacing:1892.372570px;}
.ws2_c00442{word-spacing:4131.625911px;}
._a_c00442{margin-left:-1.178991px;}
._0_c00442{width:1.927205px;}
._1_c00442{width:3.578508px;}
._e_c00442{width:123.094294px;}
._17_c00442{width:135.002026px;}
._b_c00442{width:155.095292px;}
._11_c00442{width:156.109053px;}
._14_c00442{width:162.375964px;}
._d_c00442{width:182.400507px;}
._f_c00442{width:207.200952px;}
._15_c00442{width:220.646921px;}
._12_c00442{width:247.289262px;}
._9_c00442{width:294.229881px;}
._4_c00442{width:295.668911px;}
._6_c00442{width:313.624620px;}
._c_c00442{width:314.890196px;}
._8_c00442{width:332.299319px;}
._7_c00442{width:342.609937px;}
._10_c00442{width:367.672693px;}
._16_c00442{width:380.393061px;}
._3_c00442{width:389.865395px;}
._5_c00442{width:403.057323px;}
._13_c00442{width:407.761003px;}
._18_c00442{width:436.864735px;}
._2_c00442{width:1166.963143px;}
.fc1_c00442{color:transparent;}
.fc0_c00442{color:rgb(0,0,0);}
.fs2_c00442{font-size:31.578480px;}
.fs1_c00442{font-size:45.756720px;}
.fs0_c00442{font-size:68.313000px;}
.fs4_c00442{font-size:79.270800px;}
.fs3_c00442{font-size:113.425200px;}
.y0_c00442{bottom:0.000000px;}
.y18_c00442{bottom:22.019250px;}
.y1f_c00442{bottom:22.019400px;}
.y17_c00442{bottom:48.299100px;}
.y1e_c00442{bottom:48.299250px;}
.y16_c00442{bottom:74.578950px;}
.y1d_c00442{bottom:74.579700px;}
.y15_c00442{bottom:100.858800px;}
.y1c_c00442{bottom:100.859550px;}
.y14_c00442{bottom:127.138650px;}
.y1b_c00442{bottom:127.139400px;}
.y13_c00442{bottom:153.418500px;}
.y19_c00442{bottom:153.419250px;}
.y20_c00442{bottom:155.938500px;}
.y1a_c00442{bottom:165.119250px;}
.y5_c00442{bottom:188.698500px;}
.y12_c00442{bottom:209.938500px;}
.y7_c00442{bottom:225.958500px;}
.y8_c00442{bottom:268.798500px;}
.y6_c00442{bottom:296.518500px;}
.y9_c00442{bottom:311.638500px;}
.ya_c00442{bottom:354.298500px;}
.yb_c00442{bottom:397.138500px;}
.yc_c00442{bottom:439.978500px;}
.yd_c00442{bottom:482.818500px;}
.ye_c00442{bottom:525.478500px;}
.yf_c00442{bottom:568.318500px;}
.y10_c00442{bottom:611.160000px;}
.y11_c00442{bottom:653.820000px;}
.y4_c00442{bottom:659.760000px;}
.y3_c00442{bottom:671.100240px;}
.y2_c00442{bottom:682.260000px;}
.y1_c00442{bottom:706.920000px;}
.y27_c00442{bottom:739.500000px;}
.y24_c00442{bottom:751.019700px;}
.y26_c00442{bottom:757.680000px;}
.y23_c00442{bottom:776.939850px;}
.y21_c00442{bottom:784.140000px;}
.y25_c00442{bottom:794.580000px;}
.y22_c00442{bottom:802.860000px;}
.h3_c00442{height:33.312143px;}
.h4_c00442{height:43.873597px;}
.h2_c00442{height:49.733732px;}
.h6_c00442{height:57.711310px;}
.h5_c00442{height:82.576647px;}
.h0_c00442{height:892.499700px;}
.h1_c00442{height:892.500000px;}
.w0_c00442{width:1262.999700px;}
.w1_c00442{width:1263.000000px;}
.x0_c00442{left:0.000000px;}
.xa_c00442{left:27.165750px;}
.x11_c00442{left:35.265750px;}
.x15_c00442{left:38.506050px;}
.x6_c00442{left:43.726200px;}
.x9_c00442{left:52.725600px;}
.x8_c00442{left:59.385900px;}
.x7_c00442{left:66.045750px;}
.x3_c00442{left:92.866039px;}
.x4_c00442{left:185.386500px;}
.x1_c00442{left:228.408000px;}
.x2_c00442{left:287.448000px;}
.x5_c00442{left:416.508000px;}
.xe_c00442{left:479.684866px;}
.xb_c00442{left:481.126291px;}
.xf_c00442{left:492.284863px;}
.xd_c00442{left:499.844698px;}
.xc_c00442{left:508.817413px;}
.x13_c00442{left:567.528000px;}
.x14_c00442{left:638.268000px;}
.x12_c00442{left:837.168000px;}
.x10_c00442{left:878.568000px;}
@media print{
.v0_c00442{vertical-align:0.000000pt;}
.v1_c00442{vertical-align:18.563200pt;}
.ls1_c00442{letter-spacing:0.000000pt;}
.ls0_c00442{letter-spacing:1.047992pt;}
.ws8_c00442{word-spacing:-28.028627pt;}
.ws9_c00442{word-spacing:-19.588695pt;}
.ws5_c00442{word-spacing:-12.354985pt;}
.ws4_c00442{word-spacing:-11.306994pt;}
.ws7_c00442{word-spacing:-7.803393pt;}
.wsa_c00442{word-spacing:0.000000pt;}
.ws6_c00442{word-spacing:74.189580pt;}
.ws3_c00442{word-spacing:239.963695pt;}
.ws1_c00442{word-spacing:1003.581123pt;}
.ws0_c00442{word-spacing:1682.108951pt;}
.ws2_c00442{word-spacing:3672.556365pt;}
._a_c00442{margin-left:-1.047992pt;}
._0_c00442{width:1.713071pt;}
._1_c00442{width:3.180896pt;}
._e_c00442{width:109.417151pt;}
._17_c00442{width:120.001801pt;}
._b_c00442{width:137.862482pt;}
._11_c00442{width:138.763603pt;}
._14_c00442{width:144.334191pt;}
._d_c00442{width:162.133784pt;}
._f_c00442{width:184.178624pt;}
._15_c00442{width:196.130597pt;}
._12_c00442{width:219.812677pt;}
._9_c00442{width:261.537672pt;}
._4_c00442{width:262.816810pt;}
._6_c00442{width:278.777440pt;}
._c_c00442{width:279.902396pt;}
._8_c00442{width:295.377172pt;}
._7_c00442{width:304.542166pt;}
._10_c00442{width:326.820171pt;}
._16_c00442{width:338.127165pt;}
._3_c00442{width:346.547018pt;}
._5_c00442{width:358.273176pt;}
._13_c00442{width:362.454225pt;}
._18_c00442{width:388.324209pt;}
._2_c00442{width:1037.300572pt;}
.fs2_c00442{font-size:28.069760pt;}
.fs1_c00442{font-size:40.672640pt;}
.fs0_c00442{font-size:60.722667pt;}
.fs4_c00442{font-size:70.462933pt;}
.fs3_c00442{font-size:100.822400pt;}
.y0_c00442{bottom:0.000000pt;}
.y18_c00442{bottom:19.572667pt;}
.y1f_c00442{bottom:19.572800pt;}
.y17_c00442{bottom:42.932533pt;}
.y1e_c00442{bottom:42.932667pt;}
.y16_c00442{bottom:66.292400pt;}
.y1d_c00442{bottom:66.293067pt;}
.y15_c00442{bottom:89.652267pt;}
.y1c_c00442{bottom:89.652933pt;}
.y14_c00442{bottom:113.012133pt;}
.y1b_c00442{bottom:113.012800pt;}
.y13_c00442{bottom:136.372000pt;}
.y19_c00442{bottom:136.372667pt;}
.y20_c00442{bottom:138.612000pt;}
.y1a_c00442{bottom:146.772667pt;}
.y5_c00442{bottom:167.732000pt;}
.y12_c00442{bottom:186.612000pt;}
.y7_c00442{bottom:200.852000pt;}
.y8_c00442{bottom:238.932000pt;}
.y6_c00442{bottom:263.572000pt;}
.y9_c00442{bottom:277.012000pt;}
.ya_c00442{bottom:314.932000pt;}
.yb_c00442{bottom:353.012000pt;}
.yc_c00442{bottom:391.092000pt;}
.yd_c00442{bottom:429.172000pt;}
.ye_c00442{bottom:467.092000pt;}
.yf_c00442{bottom:505.172000pt;}
.y10_c00442{bottom:543.253333pt;}
.y11_c00442{bottom:581.173333pt;}
.y4_c00442{bottom:586.453333pt;}
.y3_c00442{bottom:596.533547pt;}
.y2_c00442{bottom:606.453333pt;}
.y1_c00442{bottom:628.373333pt;}
.y27_c00442{bottom:657.333333pt;}
.y24_c00442{bottom:667.573067pt;}
.y26_c00442{bottom:673.493333pt;}
.y23_c00442{bottom:690.613200pt;}
.y21_c00442{bottom:697.013333pt;}
.y25_c00442{bottom:706.293333pt;}
.y22_c00442{bottom:713.653333pt;}
.h3_c00442{height:29.610794pt;}
.h4_c00442{height:38.998753pt;}
.h2_c00442{height:44.207762pt;}
.h6_c00442{height:51.298942pt;}
.h5_c00442{height:73.401464pt;}
.h0_c00442{height:793.333067pt;}
.h1_c00442{height:793.333333pt;}
.w0_c00442{width:1122.666400pt;}
.w1_c00442{width:1122.666667pt;}
.x0_c00442{left:0.000000pt;}
.xa_c00442{left:24.147333pt;}
.x11_c00442{left:31.347333pt;}
.x15_c00442{left:34.227600pt;}
.x6_c00442{left:38.867733pt;}
.x9_c00442{left:46.867200pt;}
.x8_c00442{left:52.787467pt;}
.x7_c00442{left:58.707333pt;}
.x3_c00442{left:82.547590pt;}
.x4_c00442{left:164.788000pt;}
.x1_c00442{left:203.029333pt;}
.x2_c00442{left:255.509333pt;}
.x5_c00442{left:370.229333pt;}
.xe_c00442{left:426.386548pt;}
.xb_c00442{left:427.667814pt;}
.xf_c00442{left:437.586545pt;}
.xd_c00442{left:444.306398pt;}
.xc_c00442{left:452.282145pt;}
.x13_c00442{left:504.469333pt;}
.x14_c00442{left:567.349333pt;}
.x12_c00442{left:744.149333pt;}
.x10_c00442{left:780.949333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_25a758b54cc40133f3cbea2e.woff2')format("woff");}.ff1_c00443{font-family:ff1_c00443;line-height:0.938965;font-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_c00443{transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);}
.m1_c00443{transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);}
.m4_c00443{transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);}
.m3_c00443{transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);}
.m0_c00443{transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);}
.v0_c00443{vertical-align:0.000000px;}
.v1_c00443{vertical-align:20.880600px;}
.ls1_c00443{letter-spacing:0.000000px;}
.ls0_c00443{letter-spacing:1.174340px;}
.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;}
}
.ws8_c00443{word-spacing:-31.532206px;}
.ws9_c00443{word-spacing:-22.037282px;}
.ws5_c00443{word-spacing:-13.894692px;}
.ws4_c00443{word-spacing:-12.720351px;}
.ws7_c00443{word-spacing:-8.778801px;}
.wsa_c00443{word-spacing:0.000000px;}
.ws6_c00443{word-spacing:83.472601px;}
.ws3_c00443{word-spacing:269.959261px;}
.ws1_c00443{word-spacing:1129.022707px;}
.ws0_c00443{word-spacing:1892.379401px;}
.ws2_c00443{word-spacing:4131.625069px;}
._a_c00443{margin-left:-1.174340px;}
._0_c00443{width:1.927205px;}
._1_c00443{width:3.578508px;}
._e_c00443{width:123.098455px;}
._17_c00443{width:135.002093px;}
._b_c00443{width:155.081320px;}
._11_c00443{width:156.097143px;}
._14_c00443{width:162.375998px;}
._d_c00443{width:182.391467px;}
._f_c00443{width:207.201036px;}
._15_c00443{width:220.640991px;}
._12_c00443{width:247.295292px;}
._9_c00443{width:294.223388px;}
._4_c00443{width:295.661959px;}
._6_c00443{width:313.608876px;}
._c_c00443{width:314.898471px;}
._8_c00443{width:332.288085px;}
._7_c00443{width:342.606009px;}
._10_c00443{width:367.678773px;}
._16_c00443{width:380.393128px;}
._3_c00443{width:389.856116px;}
._5_c00443{width:403.050224px;}
._13_c00443{width:407.761036px;}
._18_c00443{width:436.860973px;}
._2_c00443{width:1166.924601px;}
.fc1_c00443{color:transparent;}
.fc0_c00443{color:rgb(0,0,0);}
.fs2_c00443{font-size:31.578420px;}
.fs1_c00443{font-size:45.756660px;}
.fs0_c00443{font-size:68.313000px;}
.fs4_c00443{font-size:79.270800px;}
.fs3_c00443{font-size:113.425200px;}
.y0_c00443{bottom:0.000000px;}
.y18_c00443{bottom:22.022100px;}
.y1e_c00443{bottom:22.022250px;}
.y17_c00443{bottom:48.301950px;}
.y1d_c00443{bottom:48.302100px;}
.y16_c00443{bottom:74.581800px;}
.y1c_c00443{bottom:74.583150px;}
.y15_c00443{bottom:100.861650px;}
.y1b_c00443{bottom:100.863000px;}
.y14_c00443{bottom:127.141500px;}
.y1a_c00443{bottom:127.142850px;}
.y13_c00443{bottom:153.421350px;}
.y19_c00443{bottom:153.421500px;}
.y1f_c00443{bottom:155.941350px;}
.y5_c00443{bottom:188.699850px;}
.y12_c00443{bottom:209.939850px;}
.y7_c00443{bottom:225.959850px;}
.y8_c00443{bottom:268.799850px;}
.y6_c00443{bottom:296.519850px;}
.y9_c00443{bottom:311.639850px;}
.ya_c00443{bottom:354.299850px;}
.yb_c00443{bottom:397.139850px;}
.yc_c00443{bottom:439.979850px;}
.yd_c00443{bottom:482.819850px;}
.ye_c00443{bottom:525.479850px;}
.yf_c00443{bottom:568.319850px;}
.y10_c00443{bottom:611.159850px;}
.y11_c00443{bottom:653.819850px;}
.y4_c00443{bottom:659.759850px;}
.y3_c00443{bottom:671.100090px;}
.y2_c00443{bottom:682.259850px;}
.y1_c00443{bottom:706.919850px;}
.y26_c00443{bottom:739.499850px;}
.y23_c00443{bottom:751.019550px;}
.y25_c00443{bottom:757.679850px;}
.y22_c00443{bottom:776.939700px;}
.y20_c00443{bottom:784.139850px;}
.y24_c00443{bottom:794.579850px;}
.y21_c00443{bottom:802.859850px;}
.h3_c00443{height:33.334442px;}
.h4_c00443{height:43.885972px;}
.h2_c00443{height:49.767088px;}
.h6_c00443{height:57.750016px;}
.h5_c00443{height:82.632030px;}
.h0_c00443{height:892.499550px;}
.h1_c00443{height:892.500000px;}
.w0_c00443{width:1262.999700px;}
.w1_c00443{width:1263.000000px;}
.x0_c00443{left:0.000000px;}
.xa_c00443{left:27.165750px;}
.xf_c00443{left:35.265750px;}
.x13_c00443{left:38.506050px;}
.x6_c00443{left:43.726200px;}
.x9_c00443{left:52.725600px;}
.x8_c00443{left:59.385900px;}
.x7_c00443{left:66.045750px;}
.x3_c00443{left:92.866040px;}
.x4_c00443{left:185.386500px;}
.x1_c00443{left:228.406500px;}
.x2_c00443{left:287.446500px;}
.x5_c00443{left:416.506500px;}
.xc_c00443{left:479.325883px;}
.xd_c00443{left:492.286228px;}
.xb_c00443{left:500.206279px;}
.x11_c00443{left:567.526500px;}
.x12_c00443{left:638.266500px;}
.x10_c00443{left:837.165000px;}
.xe_c00443{left:878.566500px;}
@media print{
.v0_c00443{vertical-align:0.000000pt;}
.v1_c00443{vertical-align:18.560533pt;}
.ls1_c00443{letter-spacing:0.000000pt;}
.ls0_c00443{letter-spacing:1.043858pt;}
.ws8_c00443{word-spacing:-28.028627pt;}
.ws9_c00443{word-spacing:-19.588695pt;}
.ws5_c00443{word-spacing:-12.350837pt;}
.ws4_c00443{word-spacing:-11.306979pt;}
.ws7_c00443{word-spacing:-7.803378pt;}
.wsa_c00443{word-spacing:0.000000pt;}
.ws6_c00443{word-spacing:74.197868pt;}
.ws3_c00443{word-spacing:239.963787pt;}
.ws1_c00443{word-spacing:1003.575740pt;}
.ws0_c00443{word-spacing:1682.115023pt;}
.ws2_c00443{word-spacing:3672.555617pt;}
._a_c00443{margin-left:-1.043858pt;}
._0_c00443{width:1.713071pt;}
._1_c00443{width:3.180896pt;}
._e_c00443{width:109.420849pt;}
._17_c00443{width:120.001860pt;}
._b_c00443{width:137.850063pt;}
._11_c00443{width:138.753016pt;}
._14_c00443{width:144.334220pt;}
._d_c00443{width:162.125749pt;}
._f_c00443{width:184.178698pt;}
._15_c00443{width:196.125326pt;}
._12_c00443{width:219.818038pt;}
._9_c00443{width:261.531900pt;}
._4_c00443{width:262.810630pt;}
._6_c00443{width:278.763446pt;}
._c_c00443{width:279.909752pt;}
._8_c00443{width:295.367186pt;}
._7_c00443{width:304.538675pt;}
._10_c00443{width:326.825576pt;}
._16_c00443{width:338.127225pt;}
._3_c00443{width:346.538770pt;}
._5_c00443{width:358.266866pt;}
._13_c00443{width:362.454254pt;}
._18_c00443{width:388.320865pt;}
._2_c00443{width:1037.266312pt;}
.fs2_c00443{font-size:28.069707pt;}
.fs1_c00443{font-size:40.672587pt;}
.fs0_c00443{font-size:60.722667pt;}
.fs4_c00443{font-size:70.462933pt;}
.fs3_c00443{font-size:100.822400pt;}
.y0_c00443{bottom:0.000000pt;}
.y18_c00443{bottom:19.575200pt;}
.y1e_c00443{bottom:19.575333pt;}
.y17_c00443{bottom:42.935067pt;}
.y1d_c00443{bottom:42.935200pt;}
.y16_c00443{bottom:66.294933pt;}
.y1c_c00443{bottom:66.296133pt;}
.y15_c00443{bottom:89.654800pt;}
.y1b_c00443{bottom:89.656000pt;}
.y14_c00443{bottom:113.014667pt;}
.y1a_c00443{bottom:113.015867pt;}
.y13_c00443{bottom:136.374533pt;}
.y19_c00443{bottom:136.374667pt;}
.y1f_c00443{bottom:138.614533pt;}
.y5_c00443{bottom:167.733200pt;}
.y12_c00443{bottom:186.613200pt;}
.y7_c00443{bottom:200.853200pt;}
.y8_c00443{bottom:238.933200pt;}
.y6_c00443{bottom:263.573200pt;}
.y9_c00443{bottom:277.013200pt;}
.ya_c00443{bottom:314.933200pt;}
.yb_c00443{bottom:353.013200pt;}
.yc_c00443{bottom:391.093200pt;}
.yd_c00443{bottom:429.173200pt;}
.ye_c00443{bottom:467.093200pt;}
.yf_c00443{bottom:505.173200pt;}
.y10_c00443{bottom:543.253200pt;}
.y11_c00443{bottom:581.173200pt;}
.y4_c00443{bottom:586.453200pt;}
.y3_c00443{bottom:596.533413pt;}
.y2_c00443{bottom:606.453200pt;}
.y1_c00443{bottom:628.373200pt;}
.y26_c00443{bottom:657.333200pt;}
.y23_c00443{bottom:667.572933pt;}
.y25_c00443{bottom:673.493200pt;}
.y22_c00443{bottom:690.613067pt;}
.y20_c00443{bottom:697.013200pt;}
.y24_c00443{bottom:706.293200pt;}
.y21_c00443{bottom:713.653200pt;}
.h3_c00443{height:29.630615pt;}
.h4_c00443{height:39.009753pt;}
.h2_c00443{height:44.237411pt;}
.h6_c00443{height:51.333348pt;}
.h5_c00443{height:73.450694pt;}
.h0_c00443{height:793.332933pt;}
.h1_c00443{height:793.333333pt;}
.w0_c00443{width:1122.666400pt;}
.w1_c00443{width:1122.666667pt;}
.x0_c00443{left:0.000000pt;}
.xa_c00443{left:24.147333pt;}
.xf_c00443{left:31.347333pt;}
.x13_c00443{left:34.227600pt;}
.x6_c00443{left:38.867733pt;}
.x9_c00443{left:46.867200pt;}
.x8_c00443{left:52.787467pt;}
.x7_c00443{left:58.707333pt;}
.x3_c00443{left:82.547591pt;}
.x4_c00443{left:164.788000pt;}
.x1_c00443{left:203.028000pt;}
.x2_c00443{left:255.508000pt;}
.x5_c00443{left:370.228000pt;}
.xc_c00443{left:426.067452pt;}
.xd_c00443{left:437.587758pt;}
.xb_c00443{left:444.627804pt;}
.x11_c00443{left:504.468000pt;}
.x12_c00443{left:567.348000pt;}
.x10_c00443{left:744.146667pt;}
.xe_c00443{left:780.948000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ef69187945d29cbea3cb4a15.woff2')format("woff");}.ff1_c00444{font-family:ff1_c00444;line-height:0.938965;font-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_c00444{transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);}
.m1_c00444{transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);}
.m4_c00444{transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);}
.m3_c00444{transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);}
.m0_c00444{transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);}
.v0_c00444{vertical-align:0.000000px;}
.v1_c00444{vertical-align:20.880600px;}
.ls1_c00444{letter-spacing:0.000000px;}
.ls0_c00444{letter-spacing:1.174340px;}
.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;}
}
.ws8_c00444{word-spacing:-31.532206px;}
.ws9_c00444{word-spacing:-22.037282px;}
.ws5_c00444{word-spacing:-13.894692px;}
.ws4_c00444{word-spacing:-12.720351px;}
.ws7_c00444{word-spacing:-8.778801px;}
.wsa_c00444{word-spacing:0.000000px;}
.ws6_c00444{word-spacing:83.472601px;}
.ws3_c00444{word-spacing:269.959261px;}
.ws1_c00444{word-spacing:1129.022707px;}
.ws0_c00444{word-spacing:1892.379401px;}
.ws2_c00444{word-spacing:4131.625069px;}
._a_c00444{margin-left:-1.174340px;}
._0_c00444{width:1.927205px;}
._1_c00444{width:3.578508px;}
._e_c00444{width:123.098455px;}
._17_c00444{width:135.002093px;}
._b_c00444{width:155.081320px;}
._11_c00444{width:156.097143px;}
._14_c00444{width:162.375998px;}
._d_c00444{width:182.391467px;}
._f_c00444{width:207.201036px;}
._15_c00444{width:220.640991px;}
._12_c00444{width:247.295292px;}
._9_c00444{width:294.223388px;}
._4_c00444{width:295.661959px;}
._6_c00444{width:313.608876px;}
._c_c00444{width:314.898471px;}
._8_c00444{width:332.288085px;}
._7_c00444{width:342.606009px;}
._10_c00444{width:367.678773px;}
._16_c00444{width:380.393128px;}
._3_c00444{width:389.856116px;}
._5_c00444{width:403.050224px;}
._13_c00444{width:407.761036px;}
._18_c00444{width:436.860973px;}
._2_c00444{width:1166.924601px;}
.fc1_c00444{color:transparent;}
.fc0_c00444{color:rgb(0,0,0);}
.fs2_c00444{font-size:31.578420px;}
.fs1_c00444{font-size:45.756660px;}
.fs0_c00444{font-size:68.313000px;}
.fs4_c00444{font-size:79.270800px;}
.fs3_c00444{font-size:113.425200px;}
.y0_c00444{bottom:0.000000px;}
.y18_c00444{bottom:22.022100px;}
.y1e_c00444{bottom:22.022250px;}
.y17_c00444{bottom:48.301950px;}
.y1d_c00444{bottom:48.302100px;}
.y16_c00444{bottom:74.581800px;}
.y1c_c00444{bottom:74.583150px;}
.y15_c00444{bottom:100.861650px;}
.y1b_c00444{bottom:100.863000px;}
.y14_c00444{bottom:127.141500px;}
.y1a_c00444{bottom:127.142850px;}
.y13_c00444{bottom:153.421350px;}
.y19_c00444{bottom:153.421500px;}
.y1f_c00444{bottom:155.941350px;}
.y5_c00444{bottom:188.699850px;}
.y12_c00444{bottom:209.939850px;}
.y7_c00444{bottom:225.959850px;}
.y8_c00444{bottom:268.799850px;}
.y6_c00444{bottom:296.519850px;}
.y9_c00444{bottom:311.639850px;}
.ya_c00444{bottom:354.299850px;}
.yb_c00444{bottom:397.139850px;}
.yc_c00444{bottom:439.979850px;}
.yd_c00444{bottom:482.819850px;}
.ye_c00444{bottom:525.479850px;}
.yf_c00444{bottom:568.319850px;}
.y10_c00444{bottom:611.159850px;}
.y11_c00444{bottom:653.819850px;}
.y4_c00444{bottom:659.759850px;}
.y3_c00444{bottom:671.100090px;}
.y2_c00444{bottom:682.259850px;}
.y1_c00444{bottom:706.919850px;}
.y26_c00444{bottom:739.499850px;}
.y23_c00444{bottom:751.019550px;}
.y25_c00444{bottom:757.679850px;}
.y22_c00444{bottom:776.939700px;}
.y20_c00444{bottom:784.139850px;}
.y24_c00444{bottom:794.579850px;}
.y21_c00444{bottom:802.859850px;}
.h3_c00444{height:33.334442px;}
.h4_c00444{height:43.885972px;}
.h2_c00444{height:49.767088px;}
.h6_c00444{height:57.750016px;}
.h5_c00444{height:82.632030px;}
.h0_c00444{height:892.499550px;}
.h1_c00444{height:892.500000px;}
.w0_c00444{width:1262.999700px;}
.w1_c00444{width:1263.000000px;}
.x0_c00444{left:0.000000px;}
.xa_c00444{left:27.165750px;}
.xf_c00444{left:35.265750px;}
.x13_c00444{left:38.506050px;}
.x6_c00444{left:43.726200px;}
.x9_c00444{left:52.725600px;}
.x8_c00444{left:59.385900px;}
.x7_c00444{left:66.045750px;}
.x3_c00444{left:92.866040px;}
.x4_c00444{left:185.386500px;}
.x1_c00444{left:228.406500px;}
.x2_c00444{left:287.446500px;}
.x5_c00444{left:416.506500px;}
.xc_c00444{left:479.325883px;}
.xd_c00444{left:492.286228px;}
.xb_c00444{left:500.206279px;}
.x11_c00444{left:567.526500px;}
.x12_c00444{left:638.266500px;}
.x10_c00444{left:837.165000px;}
.xe_c00444{left:878.566500px;}
@media print{
.v0_c00444{vertical-align:0.000000pt;}
.v1_c00444{vertical-align:18.560533pt;}
.ls1_c00444{letter-spacing:0.000000pt;}
.ls0_c00444{letter-spacing:1.043858pt;}
.ws8_c00444{word-spacing:-28.028627pt;}
.ws9_c00444{word-spacing:-19.588695pt;}
.ws5_c00444{word-spacing:-12.350837pt;}
.ws4_c00444{word-spacing:-11.306979pt;}
.ws7_c00444{word-spacing:-7.803378pt;}
.wsa_c00444{word-spacing:0.000000pt;}
.ws6_c00444{word-spacing:74.197868pt;}
.ws3_c00444{word-spacing:239.963787pt;}
.ws1_c00444{word-spacing:1003.575740pt;}
.ws0_c00444{word-spacing:1682.115023pt;}
.ws2_c00444{word-spacing:3672.555617pt;}
._a_c00444{margin-left:-1.043858pt;}
._0_c00444{width:1.713071pt;}
._1_c00444{width:3.180896pt;}
._e_c00444{width:109.420849pt;}
._17_c00444{width:120.001860pt;}
._b_c00444{width:137.850063pt;}
._11_c00444{width:138.753016pt;}
._14_c00444{width:144.334220pt;}
._d_c00444{width:162.125749pt;}
._f_c00444{width:184.178698pt;}
._15_c00444{width:196.125326pt;}
._12_c00444{width:219.818038pt;}
._9_c00444{width:261.531900pt;}
._4_c00444{width:262.810630pt;}
._6_c00444{width:278.763446pt;}
._c_c00444{width:279.909752pt;}
._8_c00444{width:295.367186pt;}
._7_c00444{width:304.538675pt;}
._10_c00444{width:326.825576pt;}
._16_c00444{width:338.127225pt;}
._3_c00444{width:346.538770pt;}
._5_c00444{width:358.266866pt;}
._13_c00444{width:362.454254pt;}
._18_c00444{width:388.320865pt;}
._2_c00444{width:1037.266312pt;}
.fs2_c00444{font-size:28.069707pt;}
.fs1_c00444{font-size:40.672587pt;}
.fs0_c00444{font-size:60.722667pt;}
.fs4_c00444{font-size:70.462933pt;}
.fs3_c00444{font-size:100.822400pt;}
.y0_c00444{bottom:0.000000pt;}
.y18_c00444{bottom:19.575200pt;}
.y1e_c00444{bottom:19.575333pt;}
.y17_c00444{bottom:42.935067pt;}
.y1d_c00444{bottom:42.935200pt;}
.y16_c00444{bottom:66.294933pt;}
.y1c_c00444{bottom:66.296133pt;}
.y15_c00444{bottom:89.654800pt;}
.y1b_c00444{bottom:89.656000pt;}
.y14_c00444{bottom:113.014667pt;}
.y1a_c00444{bottom:113.015867pt;}
.y13_c00444{bottom:136.374533pt;}
.y19_c00444{bottom:136.374667pt;}
.y1f_c00444{bottom:138.614533pt;}
.y5_c00444{bottom:167.733200pt;}
.y12_c00444{bottom:186.613200pt;}
.y7_c00444{bottom:200.853200pt;}
.y8_c00444{bottom:238.933200pt;}
.y6_c00444{bottom:263.573200pt;}
.y9_c00444{bottom:277.013200pt;}
.ya_c00444{bottom:314.933200pt;}
.yb_c00444{bottom:353.013200pt;}
.yc_c00444{bottom:391.093200pt;}
.yd_c00444{bottom:429.173200pt;}
.ye_c00444{bottom:467.093200pt;}
.yf_c00444{bottom:505.173200pt;}
.y10_c00444{bottom:543.253200pt;}
.y11_c00444{bottom:581.173200pt;}
.y4_c00444{bottom:586.453200pt;}
.y3_c00444{bottom:596.533413pt;}
.y2_c00444{bottom:606.453200pt;}
.y1_c00444{bottom:628.373200pt;}
.y26_c00444{bottom:657.333200pt;}
.y23_c00444{bottom:667.572933pt;}
.y25_c00444{bottom:673.493200pt;}
.y22_c00444{bottom:690.613067pt;}
.y20_c00444{bottom:697.013200pt;}
.y24_c00444{bottom:706.293200pt;}
.y21_c00444{bottom:713.653200pt;}
.h3_c00444{height:29.630615pt;}
.h4_c00444{height:39.009753pt;}
.h2_c00444{height:44.237411pt;}
.h6_c00444{height:51.333348pt;}
.h5_c00444{height:73.450694pt;}
.h0_c00444{height:793.332933pt;}
.h1_c00444{height:793.333333pt;}
.w0_c00444{width:1122.666400pt;}
.w1_c00444{width:1122.666667pt;}
.x0_c00444{left:0.000000pt;}
.xa_c00444{left:24.147333pt;}
.xf_c00444{left:31.347333pt;}
.x13_c00444{left:34.227600pt;}
.x6_c00444{left:38.867733pt;}
.x9_c00444{left:46.867200pt;}
.x8_c00444{left:52.787467pt;}
.x7_c00444{left:58.707333pt;}
.x3_c00444{left:82.547591pt;}
.x4_c00444{left:164.788000pt;}
.x1_c00444{left:203.028000pt;}
.x2_c00444{left:255.508000pt;}
.x5_c00444{left:370.228000pt;}
.xc_c00444{left:426.067452pt;}
.xd_c00444{left:437.587758pt;}
.xb_c00444{left:444.627804pt;}
.x11_c00444{left:504.468000pt;}
.x12_c00444{left:567.348000pt;}
.x10_c00444{left:744.146667pt;}
.xe_c00444{left:780.948000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_61423e286b7fd56eea58a633.woff2')format("woff");}.ff1_c00445{font-family:ff1_c00445;line-height:0.938965;font-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_c00445{transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);}
.m1_c00445{transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);}
.m4_c00445{transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);}
.m3_c00445{transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);}
.m0_c00445{transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);}
.v0_c00445{vertical-align:0.000000px;}
.v1_c00445{vertical-align:20.880600px;}
.ls1_c00445{letter-spacing:0.000000px;}
.ls0_c00445{letter-spacing:1.174340px;}
.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;}
}
.ws8_c00445{word-spacing:-31.532206px;}
.ws9_c00445{word-spacing:-22.037282px;}
.ws5_c00445{word-spacing:-13.894692px;}
.ws4_c00445{word-spacing:-12.720351px;}
.ws7_c00445{word-spacing:-8.778801px;}
.wsa_c00445{word-spacing:0.000000px;}
.ws6_c00445{word-spacing:83.472601px;}
.ws3_c00445{word-spacing:269.959261px;}
.ws1_c00445{word-spacing:1129.022707px;}
.ws0_c00445{word-spacing:1892.379401px;}
.ws2_c00445{word-spacing:4131.625069px;}
._a_c00445{margin-left:-1.174340px;}
._0_c00445{width:1.927205px;}
._1_c00445{width:3.578508px;}
._e_c00445{width:123.098455px;}
._17_c00445{width:135.002093px;}
._b_c00445{width:155.081320px;}
._11_c00445{width:156.097143px;}
._14_c00445{width:162.375998px;}
._d_c00445{width:182.391467px;}
._f_c00445{width:207.201036px;}
._15_c00445{width:220.640991px;}
._12_c00445{width:247.295292px;}
._9_c00445{width:294.223388px;}
._4_c00445{width:295.661959px;}
._6_c00445{width:313.608876px;}
._c_c00445{width:314.898471px;}
._8_c00445{width:332.288085px;}
._7_c00445{width:342.606009px;}
._10_c00445{width:367.678773px;}
._16_c00445{width:380.393128px;}
._3_c00445{width:389.856116px;}
._5_c00445{width:403.050224px;}
._13_c00445{width:407.761036px;}
._18_c00445{width:436.860973px;}
._2_c00445{width:1166.924601px;}
.fc1_c00445{color:transparent;}
.fc0_c00445{color:rgb(0,0,0);}
.fs2_c00445{font-size:31.578420px;}
.fs1_c00445{font-size:45.756660px;}
.fs0_c00445{font-size:68.313000px;}
.fs4_c00445{font-size:79.270800px;}
.fs3_c00445{font-size:113.425200px;}
.y0_c00445{bottom:0.000000px;}
.y18_c00445{bottom:22.022100px;}
.y1e_c00445{bottom:22.022250px;}
.y17_c00445{bottom:48.301950px;}
.y1d_c00445{bottom:48.302100px;}
.y16_c00445{bottom:74.581800px;}
.y1c_c00445{bottom:74.583150px;}
.y15_c00445{bottom:100.861650px;}
.y1b_c00445{bottom:100.863000px;}
.y14_c00445{bottom:127.141500px;}
.y1a_c00445{bottom:127.142850px;}
.y13_c00445{bottom:153.421350px;}
.y19_c00445{bottom:153.421500px;}
.y1f_c00445{bottom:155.941350px;}
.y5_c00445{bottom:188.699850px;}
.y12_c00445{bottom:209.939850px;}
.y7_c00445{bottom:225.959850px;}
.y8_c00445{bottom:268.799850px;}
.y6_c00445{bottom:296.519850px;}
.y9_c00445{bottom:311.639850px;}
.ya_c00445{bottom:354.299850px;}
.yb_c00445{bottom:397.139850px;}
.yc_c00445{bottom:439.979850px;}
.yd_c00445{bottom:482.819850px;}
.ye_c00445{bottom:525.479850px;}
.yf_c00445{bottom:568.319850px;}
.y10_c00445{bottom:611.159850px;}
.y11_c00445{bottom:653.819850px;}
.y4_c00445{bottom:659.759850px;}
.y3_c00445{bottom:671.100090px;}
.y2_c00445{bottom:682.259850px;}
.y1_c00445{bottom:706.919850px;}
.y26_c00445{bottom:739.499850px;}
.y23_c00445{bottom:751.019550px;}
.y25_c00445{bottom:757.679850px;}
.y22_c00445{bottom:776.939700px;}
.y20_c00445{bottom:784.139850px;}
.y24_c00445{bottom:794.579850px;}
.y21_c00445{bottom:802.859850px;}
.h3_c00445{height:33.334442px;}
.h4_c00445{height:43.885972px;}
.h2_c00445{height:49.767088px;}
.h6_c00445{height:57.750016px;}
.h5_c00445{height:82.632030px;}
.h0_c00445{height:892.499550px;}
.h1_c00445{height:892.500000px;}
.w0_c00445{width:1262.999700px;}
.w1_c00445{width:1263.000000px;}
.x0_c00445{left:0.000000px;}
.xa_c00445{left:27.165750px;}
.x10_c00445{left:35.265750px;}
.x14_c00445{left:38.506050px;}
.x6_c00445{left:43.726200px;}
.x9_c00445{left:52.725600px;}
.x8_c00445{left:59.385900px;}
.x7_c00445{left:66.045750px;}
.x3_c00445{left:92.866040px;}
.x4_c00445{left:185.386500px;}
.x1_c00445{left:228.406500px;}
.x2_c00445{left:287.446500px;}
.x5_c00445{left:416.506500px;}
.xd_c00445{left:479.683863px;}
.xb_c00445{left:490.483935px;}
.xe_c00445{left:492.283274px;}
.xc_c00445{left:499.843695px;}
.x12_c00445{left:567.526500px;}
.x13_c00445{left:638.266500px;}
.x11_c00445{left:837.165000px;}
.xf_c00445{left:878.566500px;}
@media print{
.v0_c00445{vertical-align:0.000000pt;}
.v1_c00445{vertical-align:18.560533pt;}
.ls1_c00445{letter-spacing:0.000000pt;}
.ls0_c00445{letter-spacing:1.043858pt;}
.ws8_c00445{word-spacing:-28.028627pt;}
.ws9_c00445{word-spacing:-19.588695pt;}
.ws5_c00445{word-spacing:-12.350837pt;}
.ws4_c00445{word-spacing:-11.306979pt;}
.ws7_c00445{word-spacing:-7.803378pt;}
.wsa_c00445{word-spacing:0.000000pt;}
.ws6_c00445{word-spacing:74.197868pt;}
.ws3_c00445{word-spacing:239.963787pt;}
.ws1_c00445{word-spacing:1003.575740pt;}
.ws0_c00445{word-spacing:1682.115023pt;}
.ws2_c00445{word-spacing:3672.555617pt;}
._a_c00445{margin-left:-1.043858pt;}
._0_c00445{width:1.713071pt;}
._1_c00445{width:3.180896pt;}
._e_c00445{width:109.420849pt;}
._17_c00445{width:120.001860pt;}
._b_c00445{width:137.850063pt;}
._11_c00445{width:138.753016pt;}
._14_c00445{width:144.334220pt;}
._d_c00445{width:162.125749pt;}
._f_c00445{width:184.178698pt;}
._15_c00445{width:196.125326pt;}
._12_c00445{width:219.818038pt;}
._9_c00445{width:261.531900pt;}
._4_c00445{width:262.810630pt;}
._6_c00445{width:278.763446pt;}
._c_c00445{width:279.909752pt;}
._8_c00445{width:295.367186pt;}
._7_c00445{width:304.538675pt;}
._10_c00445{width:326.825576pt;}
._16_c00445{width:338.127225pt;}
._3_c00445{width:346.538770pt;}
._5_c00445{width:358.266866pt;}
._13_c00445{width:362.454254pt;}
._18_c00445{width:388.320865pt;}
._2_c00445{width:1037.266312pt;}
.fs2_c00445{font-size:28.069707pt;}
.fs1_c00445{font-size:40.672587pt;}
.fs0_c00445{font-size:60.722667pt;}
.fs4_c00445{font-size:70.462933pt;}
.fs3_c00445{font-size:100.822400pt;}
.y0_c00445{bottom:0.000000pt;}
.y18_c00445{bottom:19.575200pt;}
.y1e_c00445{bottom:19.575333pt;}
.y17_c00445{bottom:42.935067pt;}
.y1d_c00445{bottom:42.935200pt;}
.y16_c00445{bottom:66.294933pt;}
.y1c_c00445{bottom:66.296133pt;}
.y15_c00445{bottom:89.654800pt;}
.y1b_c00445{bottom:89.656000pt;}
.y14_c00445{bottom:113.014667pt;}
.y1a_c00445{bottom:113.015867pt;}
.y13_c00445{bottom:136.374533pt;}
.y19_c00445{bottom:136.374667pt;}
.y1f_c00445{bottom:138.614533pt;}
.y5_c00445{bottom:167.733200pt;}
.y12_c00445{bottom:186.613200pt;}
.y7_c00445{bottom:200.853200pt;}
.y8_c00445{bottom:238.933200pt;}
.y6_c00445{bottom:263.573200pt;}
.y9_c00445{bottom:277.013200pt;}
.ya_c00445{bottom:314.933200pt;}
.yb_c00445{bottom:353.013200pt;}
.yc_c00445{bottom:391.093200pt;}
.yd_c00445{bottom:429.173200pt;}
.ye_c00445{bottom:467.093200pt;}
.yf_c00445{bottom:505.173200pt;}
.y10_c00445{bottom:543.253200pt;}
.y11_c00445{bottom:581.173200pt;}
.y4_c00445{bottom:586.453200pt;}
.y3_c00445{bottom:596.533413pt;}
.y2_c00445{bottom:606.453200pt;}
.y1_c00445{bottom:628.373200pt;}
.y26_c00445{bottom:657.333200pt;}
.y23_c00445{bottom:667.572933pt;}
.y25_c00445{bottom:673.493200pt;}
.y22_c00445{bottom:690.613067pt;}
.y20_c00445{bottom:697.013200pt;}
.y24_c00445{bottom:706.293200pt;}
.y21_c00445{bottom:713.653200pt;}
.h3_c00445{height:29.630615pt;}
.h4_c00445{height:39.009753pt;}
.h2_c00445{height:44.237411pt;}
.h6_c00445{height:51.333348pt;}
.h5_c00445{height:73.450694pt;}
.h0_c00445{height:793.332933pt;}
.h1_c00445{height:793.333333pt;}
.w0_c00445{width:1122.666400pt;}
.w1_c00445{width:1122.666667pt;}
.x0_c00445{left:0.000000pt;}
.xa_c00445{left:24.147333pt;}
.x10_c00445{left:31.347333pt;}
.x14_c00445{left:34.227600pt;}
.x6_c00445{left:38.867733pt;}
.x9_c00445{left:46.867200pt;}
.x8_c00445{left:52.787467pt;}
.x7_c00445{left:58.707333pt;}
.x3_c00445{left:82.547591pt;}
.x4_c00445{left:164.788000pt;}
.x1_c00445{left:203.028000pt;}
.x2_c00445{left:255.508000pt;}
.x5_c00445{left:370.228000pt;}
.xd_c00445{left:426.385656pt;}
.xb_c00445{left:435.985720pt;}
.xe_c00445{left:437.585132pt;}
.xc_c00445{left:444.305507pt;}
.x12_c00445{left:504.468000pt;}
.x13_c00445{left:567.348000pt;}
.x11_c00445{left:744.146667pt;}
.xf_c00445{left:780.948000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0897c46dc930c2d2684756df.woff2')format("woff");}.ff1_c00446{font-family:ff1_c00446;line-height:0.938965;font-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_c00446{transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);}
.m1_c00446{transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);}
.m4_c00446{transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);}
.m3_c00446{transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);}
.m0_c00446{transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);}
.v0_c00446{vertical-align:0.000000px;}
.v1_c00446{vertical-align:20.880600px;}
.ls1_c00446{letter-spacing:0.000000px;}
.ls0_c00446{letter-spacing:1.174340px;}
.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;}
}
.ws8_c00446{word-spacing:-31.532206px;}
.ws9_c00446{word-spacing:-22.037282px;}
.ws5_c00446{word-spacing:-13.894692px;}
.ws4_c00446{word-spacing:-12.720351px;}
.ws7_c00446{word-spacing:-8.778801px;}
.wsa_c00446{word-spacing:0.000000px;}
.ws6_c00446{word-spacing:83.472601px;}
.ws3_c00446{word-spacing:269.959261px;}
.ws1_c00446{word-spacing:1129.022707px;}
.ws0_c00446{word-spacing:1892.379401px;}
.ws2_c00446{word-spacing:4131.625069px;}
._a_c00446{margin-left:-1.174340px;}
._0_c00446{width:1.927205px;}
._1_c00446{width:3.578508px;}
._e_c00446{width:123.098455px;}
._17_c00446{width:135.002093px;}
._b_c00446{width:155.081320px;}
._11_c00446{width:156.097143px;}
._14_c00446{width:162.375998px;}
._d_c00446{width:182.391467px;}
._f_c00446{width:207.201036px;}
._15_c00446{width:220.640991px;}
._12_c00446{width:247.295292px;}
._9_c00446{width:294.223388px;}
._4_c00446{width:295.661959px;}
._6_c00446{width:313.608876px;}
._c_c00446{width:314.898471px;}
._8_c00446{width:332.288085px;}
._7_c00446{width:342.606009px;}
._10_c00446{width:367.678773px;}
._16_c00446{width:380.393128px;}
._3_c00446{width:389.856116px;}
._5_c00446{width:403.050224px;}
._13_c00446{width:407.761036px;}
._18_c00446{width:436.860973px;}
._2_c00446{width:1166.924601px;}
.fc1_c00446{color:transparent;}
.fc0_c00446{color:rgb(0,0,0);}
.fs2_c00446{font-size:31.578420px;}
.fs1_c00446{font-size:45.756660px;}
.fs0_c00446{font-size:68.313000px;}
.fs4_c00446{font-size:79.270800px;}
.fs3_c00446{font-size:113.425200px;}
.y0_c00446{bottom:0.000000px;}
.y18_c00446{bottom:22.022100px;}
.y1e_c00446{bottom:22.022250px;}
.y17_c00446{bottom:48.301950px;}
.y1d_c00446{bottom:48.302100px;}
.y16_c00446{bottom:74.581800px;}
.y1c_c00446{bottom:74.583150px;}
.y15_c00446{bottom:100.861650px;}
.y1b_c00446{bottom:100.863000px;}
.y14_c00446{bottom:127.141500px;}
.y1a_c00446{bottom:127.142850px;}
.y13_c00446{bottom:153.421350px;}
.y19_c00446{bottom:153.421500px;}
.y1f_c00446{bottom:155.941350px;}
.y5_c00446{bottom:188.699850px;}
.y12_c00446{bottom:209.939850px;}
.y7_c00446{bottom:225.959850px;}
.y8_c00446{bottom:268.799850px;}
.y6_c00446{bottom:296.519850px;}
.y9_c00446{bottom:311.639850px;}
.ya_c00446{bottom:354.299850px;}
.yb_c00446{bottom:397.139850px;}
.yc_c00446{bottom:439.979850px;}
.yd_c00446{bottom:482.819850px;}
.ye_c00446{bottom:525.479850px;}
.yf_c00446{bottom:568.319850px;}
.y10_c00446{bottom:611.159850px;}
.y11_c00446{bottom:653.819850px;}
.y4_c00446{bottom:659.759850px;}
.y3_c00446{bottom:671.100090px;}
.y2_c00446{bottom:682.259850px;}
.y1_c00446{bottom:706.919850px;}
.y26_c00446{bottom:739.499850px;}
.y23_c00446{bottom:751.019550px;}
.y25_c00446{bottom:757.679850px;}
.y22_c00446{bottom:776.939700px;}
.y20_c00446{bottom:784.139850px;}
.y24_c00446{bottom:794.579850px;}
.y21_c00446{bottom:802.859850px;}
.h3_c00446{height:33.334442px;}
.h4_c00446{height:43.885972px;}
.h2_c00446{height:49.767088px;}
.h6_c00446{height:57.750016px;}
.h5_c00446{height:82.632030px;}
.h0_c00446{height:892.499550px;}
.h1_c00446{height:892.500000px;}
.w0_c00446{width:1262.999700px;}
.w1_c00446{width:1263.000000px;}
.x0_c00446{left:0.000000px;}
.xa_c00446{left:27.165750px;}
.xf_c00446{left:35.265750px;}
.x13_c00446{left:38.506050px;}
.x6_c00446{left:43.726200px;}
.x9_c00446{left:52.725600px;}
.x8_c00446{left:59.385900px;}
.x7_c00446{left:66.045750px;}
.x3_c00446{left:92.866040px;}
.x4_c00446{left:185.386500px;}
.x1_c00446{left:228.406500px;}
.x2_c00446{left:287.446500px;}
.x5_c00446{left:416.506500px;}
.xc_c00446{left:479.686231px;}
.xd_c00446{left:492.286228px;}
.xb_c00446{left:500.206279px;}
.x11_c00446{left:567.526500px;}
.x12_c00446{left:638.266500px;}
.x10_c00446{left:837.165000px;}
.xe_c00446{left:878.566500px;}
@media print{
.v0_c00446{vertical-align:0.000000pt;}
.v1_c00446{vertical-align:18.560533pt;}
.ls1_c00446{letter-spacing:0.000000pt;}
.ls0_c00446{letter-spacing:1.043858pt;}
.ws8_c00446{word-spacing:-28.028627pt;}
.ws9_c00446{word-spacing:-19.588695pt;}
.ws5_c00446{word-spacing:-12.350837pt;}
.ws4_c00446{word-spacing:-11.306979pt;}
.ws7_c00446{word-spacing:-7.803378pt;}
.wsa_c00446{word-spacing:0.000000pt;}
.ws6_c00446{word-spacing:74.197868pt;}
.ws3_c00446{word-spacing:239.963787pt;}
.ws1_c00446{word-spacing:1003.575740pt;}
.ws0_c00446{word-spacing:1682.115023pt;}
.ws2_c00446{word-spacing:3672.555617pt;}
._a_c00446{margin-left:-1.043858pt;}
._0_c00446{width:1.713071pt;}
._1_c00446{width:3.180896pt;}
._e_c00446{width:109.420849pt;}
._17_c00446{width:120.001860pt;}
._b_c00446{width:137.850063pt;}
._11_c00446{width:138.753016pt;}
._14_c00446{width:144.334220pt;}
._d_c00446{width:162.125749pt;}
._f_c00446{width:184.178698pt;}
._15_c00446{width:196.125326pt;}
._12_c00446{width:219.818038pt;}
._9_c00446{width:261.531900pt;}
._4_c00446{width:262.810630pt;}
._6_c00446{width:278.763446pt;}
._c_c00446{width:279.909752pt;}
._8_c00446{width:295.367186pt;}
._7_c00446{width:304.538675pt;}
._10_c00446{width:326.825576pt;}
._16_c00446{width:338.127225pt;}
._3_c00446{width:346.538770pt;}
._5_c00446{width:358.266866pt;}
._13_c00446{width:362.454254pt;}
._18_c00446{width:388.320865pt;}
._2_c00446{width:1037.266312pt;}
.fs2_c00446{font-size:28.069707pt;}
.fs1_c00446{font-size:40.672587pt;}
.fs0_c00446{font-size:60.722667pt;}
.fs4_c00446{font-size:70.462933pt;}
.fs3_c00446{font-size:100.822400pt;}
.y0_c00446{bottom:0.000000pt;}
.y18_c00446{bottom:19.575200pt;}
.y1e_c00446{bottom:19.575333pt;}
.y17_c00446{bottom:42.935067pt;}
.y1d_c00446{bottom:42.935200pt;}
.y16_c00446{bottom:66.294933pt;}
.y1c_c00446{bottom:66.296133pt;}
.y15_c00446{bottom:89.654800pt;}
.y1b_c00446{bottom:89.656000pt;}
.y14_c00446{bottom:113.014667pt;}
.y1a_c00446{bottom:113.015867pt;}
.y13_c00446{bottom:136.374533pt;}
.y19_c00446{bottom:136.374667pt;}
.y1f_c00446{bottom:138.614533pt;}
.y5_c00446{bottom:167.733200pt;}
.y12_c00446{bottom:186.613200pt;}
.y7_c00446{bottom:200.853200pt;}
.y8_c00446{bottom:238.933200pt;}
.y6_c00446{bottom:263.573200pt;}
.y9_c00446{bottom:277.013200pt;}
.ya_c00446{bottom:314.933200pt;}
.yb_c00446{bottom:353.013200pt;}
.yc_c00446{bottom:391.093200pt;}
.yd_c00446{bottom:429.173200pt;}
.ye_c00446{bottom:467.093200pt;}
.yf_c00446{bottom:505.173200pt;}
.y10_c00446{bottom:543.253200pt;}
.y11_c00446{bottom:581.173200pt;}
.y4_c00446{bottom:586.453200pt;}
.y3_c00446{bottom:596.533413pt;}
.y2_c00446{bottom:606.453200pt;}
.y1_c00446{bottom:628.373200pt;}
.y26_c00446{bottom:657.333200pt;}
.y23_c00446{bottom:667.572933pt;}
.y25_c00446{bottom:673.493200pt;}
.y22_c00446{bottom:690.613067pt;}
.y20_c00446{bottom:697.013200pt;}
.y24_c00446{bottom:706.293200pt;}
.y21_c00446{bottom:713.653200pt;}
.h3_c00446{height:29.630615pt;}
.h4_c00446{height:39.009753pt;}
.h2_c00446{height:44.237411pt;}
.h6_c00446{height:51.333348pt;}
.h5_c00446{height:73.450694pt;}
.h0_c00446{height:793.332933pt;}
.h1_c00446{height:793.333333pt;}
.w0_c00446{width:1122.666400pt;}
.w1_c00446{width:1122.666667pt;}
.x0_c00446{left:0.000000pt;}
.xa_c00446{left:24.147333pt;}
.xf_c00446{left:31.347333pt;}
.x13_c00446{left:34.227600pt;}
.x6_c00446{left:38.867733pt;}
.x9_c00446{left:46.867200pt;}
.x8_c00446{left:52.787467pt;}
.x7_c00446{left:58.707333pt;}
.x3_c00446{left:82.547591pt;}
.x4_c00446{left:164.788000pt;}
.x1_c00446{left:203.028000pt;}
.x2_c00446{left:255.508000pt;}
.x5_c00446{left:370.228000pt;}
.xc_c00446{left:426.387761pt;}
.xd_c00446{left:437.587758pt;}
.xb_c00446{left:444.627804pt;}
.x11_c00446{left:504.468000pt;}
.x12_c00446{left:567.348000pt;}
.x10_c00446{left:744.146667pt;}
.xe_c00446{left:780.948000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ec79acc5279c10a6f1a02b62.woff2')format("woff");}.ff1_c00447{font-family:ff1_c00447;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00447{transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);}
.m1_c00447{transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);}
.m4_c00447{transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);}
.m3_c00447{transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);}
.m0_c00447{transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);}
.v0_c00447{vertical-align:0.000000px;}
.v1_c00447{vertical-align:20.883600px;}
.ls1_c00447{letter-spacing:0.000000px;}
.ls0_c00447{letter-spacing:1.178991px;}
.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;}
}
.ws8_c00447{word-spacing:-31.532206px;}
.ws9_c00447{word-spacing:-22.037282px;}
.ws5_c00447{word-spacing:-13.899359px;}
.ws4_c00447{word-spacing:-12.720368px;}
.ws7_c00447{word-spacing:-8.778817px;}
.wsa_c00447{word-spacing:0.000000px;}
.ws6_c00447{word-spacing:83.463278px;}
.ws3_c00447{word-spacing:269.959157px;}
.ws1_c00447{word-spacing:1129.028763px;}
.ws0_c00447{word-spacing:1892.372570px;}
.ws2_c00447{word-spacing:4131.625911px;}
._a_c00447{margin-left:-1.178991px;}
._0_c00447{width:1.927205px;}
._1_c00447{width:3.578508px;}
._e_c00447{width:123.094294px;}
._17_c00447{width:135.002026px;}
._b_c00447{width:155.095292px;}
._11_c00447{width:156.109053px;}
._14_c00447{width:162.375964px;}
._d_c00447{width:182.400507px;}
._f_c00447{width:207.200952px;}
._15_c00447{width:220.646921px;}
._12_c00447{width:247.289262px;}
._9_c00447{width:294.229881px;}
._4_c00447{width:295.668911px;}
._6_c00447{width:313.624620px;}
._c_c00447{width:314.890196px;}
._8_c00447{width:332.299319px;}
._7_c00447{width:342.609937px;}
._10_c00447{width:367.672693px;}
._16_c00447{width:380.393061px;}
._3_c00447{width:389.865395px;}
._5_c00447{width:403.057323px;}
._13_c00447{width:407.761003px;}
._18_c00447{width:436.864735px;}
._2_c00447{width:1166.963143px;}
.fc1_c00447{color:transparent;}
.fc0_c00447{color:rgb(0,0,0);}
.fs2_c00447{font-size:31.578480px;}
.fs1_c00447{font-size:45.756720px;}
.fs0_c00447{font-size:68.313000px;}
.fs4_c00447{font-size:79.270800px;}
.fs3_c00447{font-size:113.425200px;}
.y0_c00447{bottom:0.000000px;}
.y18_c00447{bottom:22.019250px;}
.y1e_c00447{bottom:22.019400px;}
.y17_c00447{bottom:48.299100px;}
.y1d_c00447{bottom:48.299250px;}
.y16_c00447{bottom:74.578950px;}
.y1c_c00447{bottom:74.579700px;}
.y15_c00447{bottom:100.858800px;}
.y1b_c00447{bottom:100.859550px;}
.y14_c00447{bottom:127.138650px;}
.y1a_c00447{bottom:127.139400px;}
.y13_c00447{bottom:153.418500px;}
.y19_c00447{bottom:153.419250px;}
.y1f_c00447{bottom:155.938500px;}
.y5_c00447{bottom:188.698500px;}
.y12_c00447{bottom:209.938500px;}
.y7_c00447{bottom:225.958500px;}
.y8_c00447{bottom:268.798500px;}
.y6_c00447{bottom:296.518500px;}
.y9_c00447{bottom:311.638500px;}
.ya_c00447{bottom:354.298500px;}
.yb_c00447{bottom:397.138500px;}
.yc_c00447{bottom:439.978500px;}
.yd_c00447{bottom:482.818500px;}
.ye_c00447{bottom:525.478500px;}
.yf_c00447{bottom:568.318500px;}
.y10_c00447{bottom:611.160000px;}
.y11_c00447{bottom:653.820000px;}
.y4_c00447{bottom:659.760000px;}
.y3_c00447{bottom:671.100240px;}
.y2_c00447{bottom:682.260000px;}
.y1_c00447{bottom:706.920000px;}
.y26_c00447{bottom:739.500000px;}
.y23_c00447{bottom:751.019700px;}
.y25_c00447{bottom:757.680000px;}
.y22_c00447{bottom:776.939850px;}
.y20_c00447{bottom:784.140000px;}
.y24_c00447{bottom:794.580000px;}
.y21_c00447{bottom:802.860000px;}
.h3_c00447{height:33.312143px;}
.h4_c00447{height:43.873597px;}
.h2_c00447{height:49.733732px;}
.h6_c00447{height:57.711310px;}
.h5_c00447{height:82.576647px;}
.h0_c00447{height:892.499700px;}
.h1_c00447{height:892.500000px;}
.w0_c00447{width:1262.999700px;}
.w1_c00447{width:1263.000000px;}
.x0_c00447{left:0.000000px;}
.xa_c00447{left:27.165750px;}
.xf_c00447{left:35.265750px;}
.x13_c00447{left:38.506050px;}
.x6_c00447{left:43.726200px;}
.x9_c00447{left:52.725600px;}
.x8_c00447{left:59.385900px;}
.x7_c00447{left:66.045750px;}
.x3_c00447{left:92.866039px;}
.x4_c00447{left:185.386500px;}
.x1_c00447{left:228.408000px;}
.x2_c00447{left:287.448000px;}
.x5_c00447{left:416.508000px;}
.xc_c00447{left:479.686231px;}
.xd_c00447{left:492.286228px;}
.xb_c00447{left:500.206279px;}
.x11_c00447{left:567.528000px;}
.x12_c00447{left:638.268000px;}
.x10_c00447{left:837.168000px;}
.xe_c00447{left:878.568000px;}
@media print{
.v0_c00447{vertical-align:0.000000pt;}
.v1_c00447{vertical-align:18.563200pt;}
.ls1_c00447{letter-spacing:0.000000pt;}
.ls0_c00447{letter-spacing:1.047992pt;}
.ws8_c00447{word-spacing:-28.028627pt;}
.ws9_c00447{word-spacing:-19.588695pt;}
.ws5_c00447{word-spacing:-12.354985pt;}
.ws4_c00447{word-spacing:-11.306994pt;}
.ws7_c00447{word-spacing:-7.803393pt;}
.wsa_c00447{word-spacing:0.000000pt;}
.ws6_c00447{word-spacing:74.189580pt;}
.ws3_c00447{word-spacing:239.963695pt;}
.ws1_c00447{word-spacing:1003.581123pt;}
.ws0_c00447{word-spacing:1682.108951pt;}
.ws2_c00447{word-spacing:3672.556365pt;}
._a_c00447{margin-left:-1.047992pt;}
._0_c00447{width:1.713071pt;}
._1_c00447{width:3.180896pt;}
._e_c00447{width:109.417151pt;}
._17_c00447{width:120.001801pt;}
._b_c00447{width:137.862482pt;}
._11_c00447{width:138.763603pt;}
._14_c00447{width:144.334191pt;}
._d_c00447{width:162.133784pt;}
._f_c00447{width:184.178624pt;}
._15_c00447{width:196.130597pt;}
._12_c00447{width:219.812677pt;}
._9_c00447{width:261.537672pt;}
._4_c00447{width:262.816810pt;}
._6_c00447{width:278.777440pt;}
._c_c00447{width:279.902396pt;}
._8_c00447{width:295.377172pt;}
._7_c00447{width:304.542166pt;}
._10_c00447{width:326.820171pt;}
._16_c00447{width:338.127165pt;}
._3_c00447{width:346.547018pt;}
._5_c00447{width:358.273176pt;}
._13_c00447{width:362.454225pt;}
._18_c00447{width:388.324209pt;}
._2_c00447{width:1037.300572pt;}
.fs2_c00447{font-size:28.069760pt;}
.fs1_c00447{font-size:40.672640pt;}
.fs0_c00447{font-size:60.722667pt;}
.fs4_c00447{font-size:70.462933pt;}
.fs3_c00447{font-size:100.822400pt;}
.y0_c00447{bottom:0.000000pt;}
.y18_c00447{bottom:19.572667pt;}
.y1e_c00447{bottom:19.572800pt;}
.y17_c00447{bottom:42.932533pt;}
.y1d_c00447{bottom:42.932667pt;}
.y16_c00447{bottom:66.292400pt;}
.y1c_c00447{bottom:66.293067pt;}
.y15_c00447{bottom:89.652267pt;}
.y1b_c00447{bottom:89.652933pt;}
.y14_c00447{bottom:113.012133pt;}
.y1a_c00447{bottom:113.012800pt;}
.y13_c00447{bottom:136.372000pt;}
.y19_c00447{bottom:136.372667pt;}
.y1f_c00447{bottom:138.612000pt;}
.y5_c00447{bottom:167.732000pt;}
.y12_c00447{bottom:186.612000pt;}
.y7_c00447{bottom:200.852000pt;}
.y8_c00447{bottom:238.932000pt;}
.y6_c00447{bottom:263.572000pt;}
.y9_c00447{bottom:277.012000pt;}
.ya_c00447{bottom:314.932000pt;}
.yb_c00447{bottom:353.012000pt;}
.yc_c00447{bottom:391.092000pt;}
.yd_c00447{bottom:429.172000pt;}
.ye_c00447{bottom:467.092000pt;}
.yf_c00447{bottom:505.172000pt;}
.y10_c00447{bottom:543.253333pt;}
.y11_c00447{bottom:581.173333pt;}
.y4_c00447{bottom:586.453333pt;}
.y3_c00447{bottom:596.533547pt;}
.y2_c00447{bottom:606.453333pt;}
.y1_c00447{bottom:628.373333pt;}
.y26_c00447{bottom:657.333333pt;}
.y23_c00447{bottom:667.573067pt;}
.y25_c00447{bottom:673.493333pt;}
.y22_c00447{bottom:690.613200pt;}
.y20_c00447{bottom:697.013333pt;}
.y24_c00447{bottom:706.293333pt;}
.y21_c00447{bottom:713.653333pt;}
.h3_c00447{height:29.610794pt;}
.h4_c00447{height:38.998753pt;}
.h2_c00447{height:44.207762pt;}
.h6_c00447{height:51.298942pt;}
.h5_c00447{height:73.401464pt;}
.h0_c00447{height:793.333067pt;}
.h1_c00447{height:793.333333pt;}
.w0_c00447{width:1122.666400pt;}
.w1_c00447{width:1122.666667pt;}
.x0_c00447{left:0.000000pt;}
.xa_c00447{left:24.147333pt;}
.xf_c00447{left:31.347333pt;}
.x13_c00447{left:34.227600pt;}
.x6_c00447{left:38.867733pt;}
.x9_c00447{left:46.867200pt;}
.x8_c00447{left:52.787467pt;}
.x7_c00447{left:58.707333pt;}
.x3_c00447{left:82.547590pt;}
.x4_c00447{left:164.788000pt;}
.x1_c00447{left:203.029333pt;}
.x2_c00447{left:255.509333pt;}
.x5_c00447{left:370.229333pt;}
.xc_c00447{left:426.387761pt;}
.xd_c00447{left:437.587758pt;}
.xb_c00447{left:444.627804pt;}
.x11_c00447{left:504.469333pt;}
.x12_c00447{left:567.349333pt;}
.x10_c00447{left:744.149333pt;}
.xe_c00447{left:780.949333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_146f00eaf65516703764fd9f.woff2')format("woff");}.ff1_c00448{font-family:ff1_c00448;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00448{transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);}
.m1_c00448{transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);}
.m4_c00448{transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);}
.m3_c00448{transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);}
.m0_c00448{transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);}
.v0_c00448{vertical-align:0.000000px;}
.v1_c00448{vertical-align:20.883600px;}
.ls1_c00448{letter-spacing:0.000000px;}
.ls0_c00448{letter-spacing:1.178991px;}
.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;}
}
.ws8_c00448{word-spacing:-31.532206px;}
.ws9_c00448{word-spacing:-22.037282px;}
.ws5_c00448{word-spacing:-13.899359px;}
.ws4_c00448{word-spacing:-12.720368px;}
.ws7_c00448{word-spacing:-8.778817px;}
.wsa_c00448{word-spacing:0.000000px;}
.ws6_c00448{word-spacing:83.463278px;}
.ws3_c00448{word-spacing:269.959157px;}
.ws1_c00448{word-spacing:1129.028763px;}
.ws0_c00448{word-spacing:1892.372570px;}
.ws2_c00448{word-spacing:4131.625911px;}
._a_c00448{margin-left:-1.178991px;}
._0_c00448{width:1.927205px;}
._1_c00448{width:3.578508px;}
._e_c00448{width:123.094294px;}
._17_c00448{width:135.002026px;}
._b_c00448{width:155.095292px;}
._11_c00448{width:156.109053px;}
._14_c00448{width:162.375964px;}
._d_c00448{width:182.400507px;}
._f_c00448{width:207.200952px;}
._15_c00448{width:220.646921px;}
._12_c00448{width:247.289262px;}
._9_c00448{width:294.229881px;}
._4_c00448{width:295.668911px;}
._6_c00448{width:313.624620px;}
._c_c00448{width:314.890196px;}
._8_c00448{width:332.299319px;}
._7_c00448{width:342.609937px;}
._10_c00448{width:367.672693px;}
._16_c00448{width:380.393061px;}
._3_c00448{width:389.865395px;}
._5_c00448{width:403.057323px;}
._13_c00448{width:407.761003px;}
._18_c00448{width:436.864735px;}
._2_c00448{width:1166.963143px;}
.fc1_c00448{color:transparent;}
.fc0_c00448{color:rgb(0,0,0);}
.fs2_c00448{font-size:31.578480px;}
.fs1_c00448{font-size:45.756720px;}
.fs0_c00448{font-size:68.313000px;}
.fs4_c00448{font-size:79.270800px;}
.fs3_c00448{font-size:113.425200px;}
.y0_c00448{bottom:0.000000px;}
.y18_c00448{bottom:22.019250px;}
.y1e_c00448{bottom:22.019400px;}
.y17_c00448{bottom:48.299100px;}
.y1d_c00448{bottom:48.299250px;}
.y16_c00448{bottom:74.578950px;}
.y1c_c00448{bottom:74.579700px;}
.y15_c00448{bottom:100.858800px;}
.y1b_c00448{bottom:100.859550px;}
.y14_c00448{bottom:127.138650px;}
.y1a_c00448{bottom:127.139400px;}
.y13_c00448{bottom:153.418500px;}
.y19_c00448{bottom:153.419250px;}
.y1f_c00448{bottom:155.938500px;}
.y5_c00448{bottom:188.698500px;}
.y12_c00448{bottom:209.938500px;}
.y7_c00448{bottom:225.958500px;}
.y8_c00448{bottom:268.798500px;}
.y6_c00448{bottom:296.518500px;}
.y9_c00448{bottom:311.638500px;}
.ya_c00448{bottom:354.298500px;}
.yb_c00448{bottom:397.138500px;}
.yc_c00448{bottom:439.978500px;}
.yd_c00448{bottom:482.818500px;}
.ye_c00448{bottom:525.478500px;}
.yf_c00448{bottom:568.318500px;}
.y10_c00448{bottom:611.160000px;}
.y11_c00448{bottom:653.820000px;}
.y4_c00448{bottom:659.760000px;}
.y3_c00448{bottom:671.100240px;}
.y2_c00448{bottom:682.260000px;}
.y1_c00448{bottom:706.920000px;}
.y26_c00448{bottom:739.500000px;}
.y23_c00448{bottom:751.019700px;}
.y25_c00448{bottom:757.680000px;}
.y22_c00448{bottom:776.939850px;}
.y20_c00448{bottom:784.140000px;}
.y24_c00448{bottom:794.580000px;}
.y21_c00448{bottom:802.860000px;}
.h3_c00448{height:33.312143px;}
.h4_c00448{height:43.873597px;}
.h2_c00448{height:49.733732px;}
.h6_c00448{height:57.711310px;}
.h5_c00448{height:82.576647px;}
.h0_c00448{height:892.499700px;}
.h1_c00448{height:892.500000px;}
.w0_c00448{width:1262.999700px;}
.w1_c00448{width:1263.000000px;}
.x0_c00448{left:0.000000px;}
.xa_c00448{left:27.165750px;}
.xf_c00448{left:35.265750px;}
.x13_c00448{left:38.506050px;}
.x6_c00448{left:43.726200px;}
.x9_c00448{left:52.725600px;}
.x8_c00448{left:59.385900px;}
.x7_c00448{left:66.045750px;}
.x3_c00448{left:92.866039px;}
.x4_c00448{left:185.386500px;}
.x1_c00448{left:228.408000px;}
.x2_c00448{left:287.448000px;}
.x5_c00448{left:416.508000px;}
.xc_c00448{left:479.686231px;}
.xd_c00448{left:492.286228px;}
.xb_c00448{left:500.206279px;}
.x11_c00448{left:567.528000px;}
.x12_c00448{left:638.268000px;}
.x10_c00448{left:837.168000px;}
.xe_c00448{left:878.568000px;}
@media print{
.v0_c00448{vertical-align:0.000000pt;}
.v1_c00448{vertical-align:18.563200pt;}
.ls1_c00448{letter-spacing:0.000000pt;}
.ls0_c00448{letter-spacing:1.047992pt;}
.ws8_c00448{word-spacing:-28.028627pt;}
.ws9_c00448{word-spacing:-19.588695pt;}
.ws5_c00448{word-spacing:-12.354985pt;}
.ws4_c00448{word-spacing:-11.306994pt;}
.ws7_c00448{word-spacing:-7.803393pt;}
.wsa_c00448{word-spacing:0.000000pt;}
.ws6_c00448{word-spacing:74.189580pt;}
.ws3_c00448{word-spacing:239.963695pt;}
.ws1_c00448{word-spacing:1003.581123pt;}
.ws0_c00448{word-spacing:1682.108951pt;}
.ws2_c00448{word-spacing:3672.556365pt;}
._a_c00448{margin-left:-1.047992pt;}
._0_c00448{width:1.713071pt;}
._1_c00448{width:3.180896pt;}
._e_c00448{width:109.417151pt;}
._17_c00448{width:120.001801pt;}
._b_c00448{width:137.862482pt;}
._11_c00448{width:138.763603pt;}
._14_c00448{width:144.334191pt;}
._d_c00448{width:162.133784pt;}
._f_c00448{width:184.178624pt;}
._15_c00448{width:196.130597pt;}
._12_c00448{width:219.812677pt;}
._9_c00448{width:261.537672pt;}
._4_c00448{width:262.816810pt;}
._6_c00448{width:278.777440pt;}
._c_c00448{width:279.902396pt;}
._8_c00448{width:295.377172pt;}
._7_c00448{width:304.542166pt;}
._10_c00448{width:326.820171pt;}
._16_c00448{width:338.127165pt;}
._3_c00448{width:346.547018pt;}
._5_c00448{width:358.273176pt;}
._13_c00448{width:362.454225pt;}
._18_c00448{width:388.324209pt;}
._2_c00448{width:1037.300572pt;}
.fs2_c00448{font-size:28.069760pt;}
.fs1_c00448{font-size:40.672640pt;}
.fs0_c00448{font-size:60.722667pt;}
.fs4_c00448{font-size:70.462933pt;}
.fs3_c00448{font-size:100.822400pt;}
.y0_c00448{bottom:0.000000pt;}
.y18_c00448{bottom:19.572667pt;}
.y1e_c00448{bottom:19.572800pt;}
.y17_c00448{bottom:42.932533pt;}
.y1d_c00448{bottom:42.932667pt;}
.y16_c00448{bottom:66.292400pt;}
.y1c_c00448{bottom:66.293067pt;}
.y15_c00448{bottom:89.652267pt;}
.y1b_c00448{bottom:89.652933pt;}
.y14_c00448{bottom:113.012133pt;}
.y1a_c00448{bottom:113.012800pt;}
.y13_c00448{bottom:136.372000pt;}
.y19_c00448{bottom:136.372667pt;}
.y1f_c00448{bottom:138.612000pt;}
.y5_c00448{bottom:167.732000pt;}
.y12_c00448{bottom:186.612000pt;}
.y7_c00448{bottom:200.852000pt;}
.y8_c00448{bottom:238.932000pt;}
.y6_c00448{bottom:263.572000pt;}
.y9_c00448{bottom:277.012000pt;}
.ya_c00448{bottom:314.932000pt;}
.yb_c00448{bottom:353.012000pt;}
.yc_c00448{bottom:391.092000pt;}
.yd_c00448{bottom:429.172000pt;}
.ye_c00448{bottom:467.092000pt;}
.yf_c00448{bottom:505.172000pt;}
.y10_c00448{bottom:543.253333pt;}
.y11_c00448{bottom:581.173333pt;}
.y4_c00448{bottom:586.453333pt;}
.y3_c00448{bottom:596.533547pt;}
.y2_c00448{bottom:606.453333pt;}
.y1_c00448{bottom:628.373333pt;}
.y26_c00448{bottom:657.333333pt;}
.y23_c00448{bottom:667.573067pt;}
.y25_c00448{bottom:673.493333pt;}
.y22_c00448{bottom:690.613200pt;}
.y20_c00448{bottom:697.013333pt;}
.y24_c00448{bottom:706.293333pt;}
.y21_c00448{bottom:713.653333pt;}
.h3_c00448{height:29.610794pt;}
.h4_c00448{height:38.998753pt;}
.h2_c00448{height:44.207762pt;}
.h6_c00448{height:51.298942pt;}
.h5_c00448{height:73.401464pt;}
.h0_c00448{height:793.333067pt;}
.h1_c00448{height:793.333333pt;}
.w0_c00448{width:1122.666400pt;}
.w1_c00448{width:1122.666667pt;}
.x0_c00448{left:0.000000pt;}
.xa_c00448{left:24.147333pt;}
.xf_c00448{left:31.347333pt;}
.x13_c00448{left:34.227600pt;}
.x6_c00448{left:38.867733pt;}
.x9_c00448{left:46.867200pt;}
.x8_c00448{left:52.787467pt;}
.x7_c00448{left:58.707333pt;}
.x3_c00448{left:82.547590pt;}
.x4_c00448{left:164.788000pt;}
.x1_c00448{left:203.029333pt;}
.x2_c00448{left:255.509333pt;}
.x5_c00448{left:370.229333pt;}
.xc_c00448{left:426.387761pt;}
.xd_c00448{left:437.587758pt;}
.xb_c00448{left:444.627804pt;}
.x11_c00448{left:504.469333pt;}
.x12_c00448{left:567.349333pt;}
.x10_c00448{left:744.149333pt;}
.xe_c00448{left:780.949333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_638fea8ff18308613da718f7.woff2')format("woff");}.ff1_c00449{font-family:ff1_c00449;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00449{transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);}
.m1_c00449{transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);}
.m4_c00449{transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);}
.m3_c00449{transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);}
.m0_c00449{transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);}
.v0_c00449{vertical-align:0.000000px;}
.v1_c00449{vertical-align:20.883600px;}
.ls1_c00449{letter-spacing:0.000000px;}
.ls0_c00449{letter-spacing:1.178991px;}
.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;}
}
.ws8_c00449{word-spacing:-31.532206px;}
.ws9_c00449{word-spacing:-22.037282px;}
.ws5_c00449{word-spacing:-13.899359px;}
.ws4_c00449{word-spacing:-12.720368px;}
.ws7_c00449{word-spacing:-8.778817px;}
.wsa_c00449{word-spacing:0.000000px;}
.ws6_c00449{word-spacing:83.463278px;}
.ws3_c00449{word-spacing:269.959157px;}
.ws1_c00449{word-spacing:1129.028763px;}
.ws0_c00449{word-spacing:1892.372570px;}
.ws2_c00449{word-spacing:4131.625911px;}
._a_c00449{margin-left:-1.178991px;}
._0_c00449{width:1.927205px;}
._1_c00449{width:3.578508px;}
._e_c00449{width:123.094294px;}
._17_c00449{width:135.002026px;}
._b_c00449{width:155.095292px;}
._11_c00449{width:156.109053px;}
._14_c00449{width:162.375964px;}
._d_c00449{width:182.400507px;}
._f_c00449{width:207.200952px;}
._15_c00449{width:220.646921px;}
._12_c00449{width:247.289262px;}
._9_c00449{width:294.229881px;}
._4_c00449{width:295.668911px;}
._6_c00449{width:313.624620px;}
._c_c00449{width:314.890196px;}
._8_c00449{width:332.299319px;}
._7_c00449{width:342.609937px;}
._10_c00449{width:367.672693px;}
._16_c00449{width:380.393061px;}
._3_c00449{width:389.865395px;}
._5_c00449{width:403.057323px;}
._13_c00449{width:407.761003px;}
._18_c00449{width:436.864735px;}
._2_c00449{width:1166.963143px;}
.fc1_c00449{color:transparent;}
.fc0_c00449{color:rgb(0,0,0);}
.fs2_c00449{font-size:31.578480px;}
.fs1_c00449{font-size:45.756720px;}
.fs0_c00449{font-size:68.313000px;}
.fs4_c00449{font-size:79.270800px;}
.fs3_c00449{font-size:113.425200px;}
.y0_c00449{bottom:0.000000px;}
.y18_c00449{bottom:22.019250px;}
.y1e_c00449{bottom:22.019400px;}
.y17_c00449{bottom:48.299100px;}
.y1d_c00449{bottom:48.299250px;}
.y16_c00449{bottom:74.578950px;}
.y1c_c00449{bottom:74.579700px;}
.y15_c00449{bottom:100.858800px;}
.y1b_c00449{bottom:100.859550px;}
.y14_c00449{bottom:127.138650px;}
.y1a_c00449{bottom:127.139400px;}
.y13_c00449{bottom:153.418500px;}
.y19_c00449{bottom:153.419250px;}
.y1f_c00449{bottom:155.938500px;}
.y5_c00449{bottom:188.698500px;}
.y12_c00449{bottom:209.938500px;}
.y7_c00449{bottom:225.958500px;}
.y8_c00449{bottom:268.798500px;}
.y6_c00449{bottom:296.518500px;}
.y9_c00449{bottom:311.638500px;}
.ya_c00449{bottom:354.298500px;}
.yb_c00449{bottom:397.138500px;}
.yc_c00449{bottom:439.978500px;}
.yd_c00449{bottom:482.818500px;}
.ye_c00449{bottom:525.478500px;}
.yf_c00449{bottom:568.318500px;}
.y10_c00449{bottom:611.160000px;}
.y11_c00449{bottom:653.820000px;}
.y4_c00449{bottom:659.760000px;}
.y3_c00449{bottom:671.100240px;}
.y2_c00449{bottom:682.260000px;}
.y1_c00449{bottom:706.920000px;}
.y26_c00449{bottom:739.500000px;}
.y23_c00449{bottom:751.019700px;}
.y25_c00449{bottom:757.680000px;}
.y22_c00449{bottom:776.939850px;}
.y20_c00449{bottom:784.140000px;}
.y24_c00449{bottom:794.580000px;}
.y21_c00449{bottom:802.860000px;}
.h3_c00449{height:33.312143px;}
.h4_c00449{height:43.873597px;}
.h2_c00449{height:49.733732px;}
.h6_c00449{height:57.711310px;}
.h5_c00449{height:82.576647px;}
.h0_c00449{height:892.499700px;}
.h1_c00449{height:892.500000px;}
.w0_c00449{width:1262.999700px;}
.w1_c00449{width:1263.000000px;}
.x0_c00449{left:0.000000px;}
.xa_c00449{left:27.165750px;}
.x10_c00449{left:35.265750px;}
.x14_c00449{left:38.506050px;}
.x6_c00449{left:43.726200px;}
.x9_c00449{left:52.725600px;}
.x8_c00449{left:59.385900px;}
.x7_c00449{left:66.045750px;}
.x3_c00449{left:92.866039px;}
.x4_c00449{left:185.386500px;}
.x1_c00449{left:228.408000px;}
.x2_c00449{left:287.448000px;}
.x5_c00449{left:416.508000px;}
.xd_c00449{left:479.685199px;}
.xb_c00449{left:482.205384px;}
.xe_c00449{left:492.285195px;}
.xc_c00449{left:499.845031px;}
.x12_c00449{left:567.528000px;}
.x13_c00449{left:638.268000px;}
.x11_c00449{left:837.168000px;}
.xf_c00449{left:878.568000px;}
@media print{
.v0_c00449{vertical-align:0.000000pt;}
.v1_c00449{vertical-align:18.563200pt;}
.ls1_c00449{letter-spacing:0.000000pt;}
.ls0_c00449{letter-spacing:1.047992pt;}
.ws8_c00449{word-spacing:-28.028627pt;}
.ws9_c00449{word-spacing:-19.588695pt;}
.ws5_c00449{word-spacing:-12.354985pt;}
.ws4_c00449{word-spacing:-11.306994pt;}
.ws7_c00449{word-spacing:-7.803393pt;}
.wsa_c00449{word-spacing:0.000000pt;}
.ws6_c00449{word-spacing:74.189580pt;}
.ws3_c00449{word-spacing:239.963695pt;}
.ws1_c00449{word-spacing:1003.581123pt;}
.ws0_c00449{word-spacing:1682.108951pt;}
.ws2_c00449{word-spacing:3672.556365pt;}
._a_c00449{margin-left:-1.047992pt;}
._0_c00449{width:1.713071pt;}
._1_c00449{width:3.180896pt;}
._e_c00449{width:109.417151pt;}
._17_c00449{width:120.001801pt;}
._b_c00449{width:137.862482pt;}
._11_c00449{width:138.763603pt;}
._14_c00449{width:144.334191pt;}
._d_c00449{width:162.133784pt;}
._f_c00449{width:184.178624pt;}
._15_c00449{width:196.130597pt;}
._12_c00449{width:219.812677pt;}
._9_c00449{width:261.537672pt;}
._4_c00449{width:262.816810pt;}
._6_c00449{width:278.777440pt;}
._c_c00449{width:279.902396pt;}
._8_c00449{width:295.377172pt;}
._7_c00449{width:304.542166pt;}
._10_c00449{width:326.820171pt;}
._16_c00449{width:338.127165pt;}
._3_c00449{width:346.547018pt;}
._5_c00449{width:358.273176pt;}
._13_c00449{width:362.454225pt;}
._18_c00449{width:388.324209pt;}
._2_c00449{width:1037.300572pt;}
.fs2_c00449{font-size:28.069760pt;}
.fs1_c00449{font-size:40.672640pt;}
.fs0_c00449{font-size:60.722667pt;}
.fs4_c00449{font-size:70.462933pt;}
.fs3_c00449{font-size:100.822400pt;}
.y0_c00449{bottom:0.000000pt;}
.y18_c00449{bottom:19.572667pt;}
.y1e_c00449{bottom:19.572800pt;}
.y17_c00449{bottom:42.932533pt;}
.y1d_c00449{bottom:42.932667pt;}
.y16_c00449{bottom:66.292400pt;}
.y1c_c00449{bottom:66.293067pt;}
.y15_c00449{bottom:89.652267pt;}
.y1b_c00449{bottom:89.652933pt;}
.y14_c00449{bottom:113.012133pt;}
.y1a_c00449{bottom:113.012800pt;}
.y13_c00449{bottom:136.372000pt;}
.y19_c00449{bottom:136.372667pt;}
.y1f_c00449{bottom:138.612000pt;}
.y5_c00449{bottom:167.732000pt;}
.y12_c00449{bottom:186.612000pt;}
.y7_c00449{bottom:200.852000pt;}
.y8_c00449{bottom:238.932000pt;}
.y6_c00449{bottom:263.572000pt;}
.y9_c00449{bottom:277.012000pt;}
.ya_c00449{bottom:314.932000pt;}
.yb_c00449{bottom:353.012000pt;}
.yc_c00449{bottom:391.092000pt;}
.yd_c00449{bottom:429.172000pt;}
.ye_c00449{bottom:467.092000pt;}
.yf_c00449{bottom:505.172000pt;}
.y10_c00449{bottom:543.253333pt;}
.y11_c00449{bottom:581.173333pt;}
.y4_c00449{bottom:586.453333pt;}
.y3_c00449{bottom:596.533547pt;}
.y2_c00449{bottom:606.453333pt;}
.y1_c00449{bottom:628.373333pt;}
.y26_c00449{bottom:657.333333pt;}
.y23_c00449{bottom:667.573067pt;}
.y25_c00449{bottom:673.493333pt;}
.y22_c00449{bottom:690.613200pt;}
.y20_c00449{bottom:697.013333pt;}
.y24_c00449{bottom:706.293333pt;}
.y21_c00449{bottom:713.653333pt;}
.h3_c00449{height:29.610794pt;}
.h4_c00449{height:38.998753pt;}
.h2_c00449{height:44.207762pt;}
.h6_c00449{height:51.298942pt;}
.h5_c00449{height:73.401464pt;}
.h0_c00449{height:793.333067pt;}
.h1_c00449{height:793.333333pt;}
.w0_c00449{width:1122.666400pt;}
.w1_c00449{width:1122.666667pt;}
.x0_c00449{left:0.000000pt;}
.xa_c00449{left:24.147333pt;}
.x10_c00449{left:31.347333pt;}
.x14_c00449{left:34.227600pt;}
.x6_c00449{left:38.867733pt;}
.x9_c00449{left:46.867200pt;}
.x8_c00449{left:52.787467pt;}
.x7_c00449{left:58.707333pt;}
.x3_c00449{left:82.547590pt;}
.x4_c00449{left:164.788000pt;}
.x1_c00449{left:203.029333pt;}
.x2_c00449{left:255.509333pt;}
.x5_c00449{left:370.229333pt;}
.xd_c00449{left:426.386843pt;}
.xb_c00449{left:428.627008pt;}
.xe_c00449{left:437.586840pt;}
.xc_c00449{left:444.306694pt;}
.x12_c00449{left:504.469333pt;}
.x13_c00449{left:567.349333pt;}
.x11_c00449{left:744.149333pt;}
.xf_c00449{left:780.949333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b4e9ea30f49f85bed4aaa6ea.woff2')format("woff");}.ff1_c00450{font-family:ff1_c00450;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00450{transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);}
.m1_c00450{transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);}
.m4_c00450{transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);}
.m3_c00450{transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);}
.m0_c00450{transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);}
.v0_c00450{vertical-align:0.000000px;}
.v1_c00450{vertical-align:20.883600px;}
.ls1_c00450{letter-spacing:0.000000px;}
.ls0_c00450{letter-spacing:1.178991px;}
.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;}
}
.ws8_c00450{word-spacing:-31.532206px;}
.ws9_c00450{word-spacing:-22.037282px;}
.ws5_c00450{word-spacing:-13.899359px;}
.ws4_c00450{word-spacing:-12.720368px;}
.ws7_c00450{word-spacing:-8.778817px;}
.wsa_c00450{word-spacing:0.000000px;}
.ws6_c00450{word-spacing:83.463278px;}
.ws3_c00450{word-spacing:269.959157px;}
.ws1_c00450{word-spacing:1129.028763px;}
.ws0_c00450{word-spacing:1892.372570px;}
.ws2_c00450{word-spacing:4131.625911px;}
._a_c00450{margin-left:-1.178991px;}
._0_c00450{width:1.927205px;}
._1_c00450{width:3.578508px;}
._e_c00450{width:123.094294px;}
._17_c00450{width:135.002026px;}
._b_c00450{width:155.095292px;}
._11_c00450{width:156.109053px;}
._14_c00450{width:162.375964px;}
._d_c00450{width:182.400507px;}
._f_c00450{width:207.200952px;}
._15_c00450{width:220.646921px;}
._12_c00450{width:247.289262px;}
._9_c00450{width:294.229881px;}
._4_c00450{width:295.668911px;}
._6_c00450{width:313.624620px;}
._c_c00450{width:314.890196px;}
._8_c00450{width:332.299319px;}
._7_c00450{width:342.609937px;}
._10_c00450{width:367.672693px;}
._16_c00450{width:380.393061px;}
._3_c00450{width:389.865395px;}
._5_c00450{width:403.057323px;}
._13_c00450{width:407.761003px;}
._18_c00450{width:436.864735px;}
._2_c00450{width:1166.963143px;}
.fc1_c00450{color:transparent;}
.fc0_c00450{color:rgb(0,0,0);}
.fs2_c00450{font-size:31.578480px;}
.fs1_c00450{font-size:45.756720px;}
.fs0_c00450{font-size:68.313000px;}
.fs4_c00450{font-size:79.270800px;}
.fs3_c00450{font-size:113.425200px;}
.y0_c00450{bottom:0.000000px;}
.y18_c00450{bottom:22.019250px;}
.y1e_c00450{bottom:22.019400px;}
.y17_c00450{bottom:48.299100px;}
.y1d_c00450{bottom:48.299250px;}
.y16_c00450{bottom:74.578950px;}
.y1c_c00450{bottom:74.579700px;}
.y15_c00450{bottom:100.858800px;}
.y1b_c00450{bottom:100.859550px;}
.y14_c00450{bottom:127.138650px;}
.y1a_c00450{bottom:127.139400px;}
.y13_c00450{bottom:153.418500px;}
.y19_c00450{bottom:153.419250px;}
.y1f_c00450{bottom:155.938500px;}
.y5_c00450{bottom:188.698500px;}
.y12_c00450{bottom:209.938500px;}
.y7_c00450{bottom:225.958500px;}
.y8_c00450{bottom:268.798500px;}
.y6_c00450{bottom:296.518500px;}
.y9_c00450{bottom:311.638500px;}
.ya_c00450{bottom:354.298500px;}
.yb_c00450{bottom:397.138500px;}
.yc_c00450{bottom:439.978500px;}
.yd_c00450{bottom:482.818500px;}
.ye_c00450{bottom:525.478500px;}
.yf_c00450{bottom:568.318500px;}
.y10_c00450{bottom:611.160000px;}
.y11_c00450{bottom:653.820000px;}
.y4_c00450{bottom:659.760000px;}
.y3_c00450{bottom:671.100240px;}
.y2_c00450{bottom:682.260000px;}
.y1_c00450{bottom:706.920000px;}
.y26_c00450{bottom:739.500000px;}
.y23_c00450{bottom:751.019700px;}
.y25_c00450{bottom:757.680000px;}
.y22_c00450{bottom:776.939850px;}
.y20_c00450{bottom:784.140000px;}
.y24_c00450{bottom:794.580000px;}
.y21_c00450{bottom:802.860000px;}
.h3_c00450{height:33.312143px;}
.h4_c00450{height:43.873597px;}
.h2_c00450{height:49.733732px;}
.h6_c00450{height:57.711310px;}
.h5_c00450{height:82.576647px;}
.h0_c00450{height:892.499700px;}
.h1_c00450{height:892.500000px;}
.w0_c00450{width:1262.999700px;}
.w1_c00450{width:1263.000000px;}
.x0_c00450{left:0.000000px;}
.xa_c00450{left:27.165750px;}
.x10_c00450{left:35.265750px;}
.x14_c00450{left:38.506050px;}
.x6_c00450{left:43.726200px;}
.x9_c00450{left:52.725600px;}
.x8_c00450{left:59.385900px;}
.x7_c00450{left:66.045750px;}
.x3_c00450{left:92.866039px;}
.x4_c00450{left:185.386500px;}
.x1_c00450{left:228.408000px;}
.x2_c00450{left:287.448000px;}
.x5_c00450{left:416.508000px;}
.xd_c00450{left:479.685199px;}
.xb_c00450{left:482.205384px;}
.xe_c00450{left:492.285195px;}
.xc_c00450{left:499.845031px;}
.x12_c00450{left:567.528000px;}
.x13_c00450{left:638.268000px;}
.x11_c00450{left:837.168000px;}
.xf_c00450{left:878.568000px;}
@media print{
.v0_c00450{vertical-align:0.000000pt;}
.v1_c00450{vertical-align:18.563200pt;}
.ls1_c00450{letter-spacing:0.000000pt;}
.ls0_c00450{letter-spacing:1.047992pt;}
.ws8_c00450{word-spacing:-28.028627pt;}
.ws9_c00450{word-spacing:-19.588695pt;}
.ws5_c00450{word-spacing:-12.354985pt;}
.ws4_c00450{word-spacing:-11.306994pt;}
.ws7_c00450{word-spacing:-7.803393pt;}
.wsa_c00450{word-spacing:0.000000pt;}
.ws6_c00450{word-spacing:74.189580pt;}
.ws3_c00450{word-spacing:239.963695pt;}
.ws1_c00450{word-spacing:1003.581123pt;}
.ws0_c00450{word-spacing:1682.108951pt;}
.ws2_c00450{word-spacing:3672.556365pt;}
._a_c00450{margin-left:-1.047992pt;}
._0_c00450{width:1.713071pt;}
._1_c00450{width:3.180896pt;}
._e_c00450{width:109.417151pt;}
._17_c00450{width:120.001801pt;}
._b_c00450{width:137.862482pt;}
._11_c00450{width:138.763603pt;}
._14_c00450{width:144.334191pt;}
._d_c00450{width:162.133784pt;}
._f_c00450{width:184.178624pt;}
._15_c00450{width:196.130597pt;}
._12_c00450{width:219.812677pt;}
._9_c00450{width:261.537672pt;}
._4_c00450{width:262.816810pt;}
._6_c00450{width:278.777440pt;}
._c_c00450{width:279.902396pt;}
._8_c00450{width:295.377172pt;}
._7_c00450{width:304.542166pt;}
._10_c00450{width:326.820171pt;}
._16_c00450{width:338.127165pt;}
._3_c00450{width:346.547018pt;}
._5_c00450{width:358.273176pt;}
._13_c00450{width:362.454225pt;}
._18_c00450{width:388.324209pt;}
._2_c00450{width:1037.300572pt;}
.fs2_c00450{font-size:28.069760pt;}
.fs1_c00450{font-size:40.672640pt;}
.fs0_c00450{font-size:60.722667pt;}
.fs4_c00450{font-size:70.462933pt;}
.fs3_c00450{font-size:100.822400pt;}
.y0_c00450{bottom:0.000000pt;}
.y18_c00450{bottom:19.572667pt;}
.y1e_c00450{bottom:19.572800pt;}
.y17_c00450{bottom:42.932533pt;}
.y1d_c00450{bottom:42.932667pt;}
.y16_c00450{bottom:66.292400pt;}
.y1c_c00450{bottom:66.293067pt;}
.y15_c00450{bottom:89.652267pt;}
.y1b_c00450{bottom:89.652933pt;}
.y14_c00450{bottom:113.012133pt;}
.y1a_c00450{bottom:113.012800pt;}
.y13_c00450{bottom:136.372000pt;}
.y19_c00450{bottom:136.372667pt;}
.y1f_c00450{bottom:138.612000pt;}
.y5_c00450{bottom:167.732000pt;}
.y12_c00450{bottom:186.612000pt;}
.y7_c00450{bottom:200.852000pt;}
.y8_c00450{bottom:238.932000pt;}
.y6_c00450{bottom:263.572000pt;}
.y9_c00450{bottom:277.012000pt;}
.ya_c00450{bottom:314.932000pt;}
.yb_c00450{bottom:353.012000pt;}
.yc_c00450{bottom:391.092000pt;}
.yd_c00450{bottom:429.172000pt;}
.ye_c00450{bottom:467.092000pt;}
.yf_c00450{bottom:505.172000pt;}
.y10_c00450{bottom:543.253333pt;}
.y11_c00450{bottom:581.173333pt;}
.y4_c00450{bottom:586.453333pt;}
.y3_c00450{bottom:596.533547pt;}
.y2_c00450{bottom:606.453333pt;}
.y1_c00450{bottom:628.373333pt;}
.y26_c00450{bottom:657.333333pt;}
.y23_c00450{bottom:667.573067pt;}
.y25_c00450{bottom:673.493333pt;}
.y22_c00450{bottom:690.613200pt;}
.y20_c00450{bottom:697.013333pt;}
.y24_c00450{bottom:706.293333pt;}
.y21_c00450{bottom:713.653333pt;}
.h3_c00450{height:29.610794pt;}
.h4_c00450{height:38.998753pt;}
.h2_c00450{height:44.207762pt;}
.h6_c00450{height:51.298942pt;}
.h5_c00450{height:73.401464pt;}
.h0_c00450{height:793.333067pt;}
.h1_c00450{height:793.333333pt;}
.w0_c00450{width:1122.666400pt;}
.w1_c00450{width:1122.666667pt;}
.x0_c00450{left:0.000000pt;}
.xa_c00450{left:24.147333pt;}
.x10_c00450{left:31.347333pt;}
.x14_c00450{left:34.227600pt;}
.x6_c00450{left:38.867733pt;}
.x9_c00450{left:46.867200pt;}
.x8_c00450{left:52.787467pt;}
.x7_c00450{left:58.707333pt;}
.x3_c00450{left:82.547590pt;}
.x4_c00450{left:164.788000pt;}
.x1_c00450{left:203.029333pt;}
.x2_c00450{left:255.509333pt;}
.x5_c00450{left:370.229333pt;}
.xd_c00450{left:426.386843pt;}
.xb_c00450{left:428.627008pt;}
.xe_c00450{left:437.586840pt;}
.xc_c00450{left:444.306694pt;}
.x12_c00450{left:504.469333pt;}
.x13_c00450{left:567.349333pt;}
.x11_c00450{left:744.149333pt;}
.xf_c00450{left:780.949333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4fab69614b88c72d0c0bdfe9.woff2')format("woff");}.ff1_c00451{font-family:ff1_c00451;line-height:0.938965;font-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_c00451{transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);}
.m1_c00451{transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);}
.m4_c00451{transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);}
.m3_c00451{transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);}
.m0_c00451{transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);}
.v0_c00451{vertical-align:0.000000px;}
.v1_c00451{vertical-align:20.880600px;}
.ls1_c00451{letter-spacing:0.000000px;}
.ls0_c00451{letter-spacing:1.174340px;}
.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;}
}
.ws8_c00451{word-spacing:-31.532206px;}
.ws9_c00451{word-spacing:-22.037282px;}
.ws5_c00451{word-spacing:-13.894692px;}
.ws4_c00451{word-spacing:-12.720351px;}
.ws7_c00451{word-spacing:-8.778801px;}
.wsa_c00451{word-spacing:0.000000px;}
.ws6_c00451{word-spacing:83.472601px;}
.ws3_c00451{word-spacing:269.959261px;}
.ws1_c00451{word-spacing:1129.022707px;}
.ws0_c00451{word-spacing:1892.379401px;}
.ws2_c00451{word-spacing:4131.625069px;}
._a_c00451{margin-left:-1.174340px;}
._0_c00451{width:1.927205px;}
._1_c00451{width:3.578508px;}
._e_c00451{width:123.098455px;}
._17_c00451{width:135.002093px;}
._b_c00451{width:155.081320px;}
._11_c00451{width:156.097143px;}
._14_c00451{width:162.375998px;}
._d_c00451{width:182.391467px;}
._f_c00451{width:207.201036px;}
._15_c00451{width:220.640991px;}
._12_c00451{width:247.295292px;}
._9_c00451{width:294.223388px;}
._4_c00451{width:295.661959px;}
._6_c00451{width:313.608876px;}
._c_c00451{width:314.898471px;}
._8_c00451{width:332.288085px;}
._7_c00451{width:342.606009px;}
._10_c00451{width:367.678773px;}
._16_c00451{width:380.393128px;}
._3_c00451{width:389.856116px;}
._5_c00451{width:403.050224px;}
._13_c00451{width:407.761036px;}
._18_c00451{width:436.860973px;}
._2_c00451{width:1166.924601px;}
.fc1_c00451{color:transparent;}
.fc0_c00451{color:rgb(0,0,0);}
.fs2_c00451{font-size:31.578420px;}
.fs1_c00451{font-size:45.756660px;}
.fs0_c00451{font-size:68.313000px;}
.fs4_c00451{font-size:79.270800px;}
.fs3_c00451{font-size:113.425200px;}
.y0_c00451{bottom:0.000000px;}
.y18_c00451{bottom:22.022100px;}
.y1e_c00451{bottom:22.022250px;}
.y17_c00451{bottom:48.301950px;}
.y1d_c00451{bottom:48.302100px;}
.y16_c00451{bottom:74.581800px;}
.y1c_c00451{bottom:74.583150px;}
.y15_c00451{bottom:100.861650px;}
.y1b_c00451{bottom:100.863000px;}
.y14_c00451{bottom:127.141500px;}
.y1a_c00451{bottom:127.142850px;}
.y13_c00451{bottom:153.421350px;}
.y19_c00451{bottom:153.421500px;}
.y1f_c00451{bottom:155.941350px;}
.y5_c00451{bottom:188.699850px;}
.y12_c00451{bottom:209.939850px;}
.y7_c00451{bottom:225.959850px;}
.y8_c00451{bottom:268.799850px;}
.y6_c00451{bottom:296.519850px;}
.y9_c00451{bottom:311.639850px;}
.ya_c00451{bottom:354.299850px;}
.yb_c00451{bottom:397.139850px;}
.yc_c00451{bottom:439.979850px;}
.yd_c00451{bottom:482.819850px;}
.ye_c00451{bottom:525.479850px;}
.yf_c00451{bottom:568.319850px;}
.y10_c00451{bottom:611.159850px;}
.y11_c00451{bottom:653.819850px;}
.y4_c00451{bottom:659.759850px;}
.y3_c00451{bottom:671.100090px;}
.y2_c00451{bottom:682.259850px;}
.y1_c00451{bottom:706.919850px;}
.y26_c00451{bottom:739.499850px;}
.y23_c00451{bottom:751.019550px;}
.y25_c00451{bottom:757.679850px;}
.y22_c00451{bottom:776.939700px;}
.y20_c00451{bottom:784.139850px;}
.y24_c00451{bottom:794.579850px;}
.y21_c00451{bottom:802.859850px;}
.h3_c00451{height:33.334442px;}
.h4_c00451{height:43.885972px;}
.h2_c00451{height:49.767088px;}
.h6_c00451{height:57.750016px;}
.h5_c00451{height:82.632030px;}
.h0_c00451{height:892.499550px;}
.h1_c00451{height:892.500000px;}
.w0_c00451{width:1262.999700px;}
.w1_c00451{width:1263.000000px;}
.x0_c00451{left:0.000000px;}
.xa_c00451{left:27.165750px;}
.xf_c00451{left:35.265750px;}
.x13_c00451{left:38.506050px;}
.x6_c00451{left:43.726200px;}
.x9_c00451{left:52.725600px;}
.x8_c00451{left:59.385900px;}
.x7_c00451{left:66.045750px;}
.x3_c00451{left:92.866040px;}
.x4_c00451{left:185.386500px;}
.x1_c00451{left:228.406500px;}
.x2_c00451{left:287.446500px;}
.x5_c00451{left:416.506500px;}
.xc_c00451{left:479.686231px;}
.xd_c00451{left:492.286228px;}
.xb_c00451{left:500.206279px;}
.x11_c00451{left:567.526500px;}
.x12_c00451{left:638.266500px;}
.x10_c00451{left:837.165000px;}
.xe_c00451{left:878.566500px;}
@media print{
.v0_c00451{vertical-align:0.000000pt;}
.v1_c00451{vertical-align:18.560533pt;}
.ls1_c00451{letter-spacing:0.000000pt;}
.ls0_c00451{letter-spacing:1.043858pt;}
.ws8_c00451{word-spacing:-28.028627pt;}
.ws9_c00451{word-spacing:-19.588695pt;}
.ws5_c00451{word-spacing:-12.350837pt;}
.ws4_c00451{word-spacing:-11.306979pt;}
.ws7_c00451{word-spacing:-7.803378pt;}
.wsa_c00451{word-spacing:0.000000pt;}
.ws6_c00451{word-spacing:74.197868pt;}
.ws3_c00451{word-spacing:239.963787pt;}
.ws1_c00451{word-spacing:1003.575740pt;}
.ws0_c00451{word-spacing:1682.115023pt;}
.ws2_c00451{word-spacing:3672.555617pt;}
._a_c00451{margin-left:-1.043858pt;}
._0_c00451{width:1.713071pt;}
._1_c00451{width:3.180896pt;}
._e_c00451{width:109.420849pt;}
._17_c00451{width:120.001860pt;}
._b_c00451{width:137.850063pt;}
._11_c00451{width:138.753016pt;}
._14_c00451{width:144.334220pt;}
._d_c00451{width:162.125749pt;}
._f_c00451{width:184.178698pt;}
._15_c00451{width:196.125326pt;}
._12_c00451{width:219.818038pt;}
._9_c00451{width:261.531900pt;}
._4_c00451{width:262.810630pt;}
._6_c00451{width:278.763446pt;}
._c_c00451{width:279.909752pt;}
._8_c00451{width:295.367186pt;}
._7_c00451{width:304.538675pt;}
._10_c00451{width:326.825576pt;}
._16_c00451{width:338.127225pt;}
._3_c00451{width:346.538770pt;}
._5_c00451{width:358.266866pt;}
._13_c00451{width:362.454254pt;}
._18_c00451{width:388.320865pt;}
._2_c00451{width:1037.266312pt;}
.fs2_c00451{font-size:28.069707pt;}
.fs1_c00451{font-size:40.672587pt;}
.fs0_c00451{font-size:60.722667pt;}
.fs4_c00451{font-size:70.462933pt;}
.fs3_c00451{font-size:100.822400pt;}
.y0_c00451{bottom:0.000000pt;}
.y18_c00451{bottom:19.575200pt;}
.y1e_c00451{bottom:19.575333pt;}
.y17_c00451{bottom:42.935067pt;}
.y1d_c00451{bottom:42.935200pt;}
.y16_c00451{bottom:66.294933pt;}
.y1c_c00451{bottom:66.296133pt;}
.y15_c00451{bottom:89.654800pt;}
.y1b_c00451{bottom:89.656000pt;}
.y14_c00451{bottom:113.014667pt;}
.y1a_c00451{bottom:113.015867pt;}
.y13_c00451{bottom:136.374533pt;}
.y19_c00451{bottom:136.374667pt;}
.y1f_c00451{bottom:138.614533pt;}
.y5_c00451{bottom:167.733200pt;}
.y12_c00451{bottom:186.613200pt;}
.y7_c00451{bottom:200.853200pt;}
.y8_c00451{bottom:238.933200pt;}
.y6_c00451{bottom:263.573200pt;}
.y9_c00451{bottom:277.013200pt;}
.ya_c00451{bottom:314.933200pt;}
.yb_c00451{bottom:353.013200pt;}
.yc_c00451{bottom:391.093200pt;}
.yd_c00451{bottom:429.173200pt;}
.ye_c00451{bottom:467.093200pt;}
.yf_c00451{bottom:505.173200pt;}
.y10_c00451{bottom:543.253200pt;}
.y11_c00451{bottom:581.173200pt;}
.y4_c00451{bottom:586.453200pt;}
.y3_c00451{bottom:596.533413pt;}
.y2_c00451{bottom:606.453200pt;}
.y1_c00451{bottom:628.373200pt;}
.y26_c00451{bottom:657.333200pt;}
.y23_c00451{bottom:667.572933pt;}
.y25_c00451{bottom:673.493200pt;}
.y22_c00451{bottom:690.613067pt;}
.y20_c00451{bottom:697.013200pt;}
.y24_c00451{bottom:706.293200pt;}
.y21_c00451{bottom:713.653200pt;}
.h3_c00451{height:29.630615pt;}
.h4_c00451{height:39.009753pt;}
.h2_c00451{height:44.237411pt;}
.h6_c00451{height:51.333348pt;}
.h5_c00451{height:73.450694pt;}
.h0_c00451{height:793.332933pt;}
.h1_c00451{height:793.333333pt;}
.w0_c00451{width:1122.666400pt;}
.w1_c00451{width:1122.666667pt;}
.x0_c00451{left:0.000000pt;}
.xa_c00451{left:24.147333pt;}
.xf_c00451{left:31.347333pt;}
.x13_c00451{left:34.227600pt;}
.x6_c00451{left:38.867733pt;}
.x9_c00451{left:46.867200pt;}
.x8_c00451{left:52.787467pt;}
.x7_c00451{left:58.707333pt;}
.x3_c00451{left:82.547591pt;}
.x4_c00451{left:164.788000pt;}
.x1_c00451{left:203.028000pt;}
.x2_c00451{left:255.508000pt;}
.x5_c00451{left:370.228000pt;}
.xc_c00451{left:426.387761pt;}
.xd_c00451{left:437.587758pt;}
.xb_c00451{left:444.627804pt;}
.x11_c00451{left:504.468000pt;}
.x12_c00451{left:567.348000pt;}
.x10_c00451{left:744.146667pt;}
.xe_c00451{left:780.948000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_dbaa4ce62ba720957f897047.woff2')format("woff");}.ff1_c00452{font-family:ff1_c00452;line-height:0.938965;font-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_c00452{transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);}
.m1_c00452{transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);}
.m4_c00452{transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);}
.m3_c00452{transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);}
.m0_c00452{transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);}
.v0_c00452{vertical-align:0.000000px;}
.v1_c00452{vertical-align:20.880600px;}
.ls1_c00452{letter-spacing:0.000000px;}
.ls0_c00452{letter-spacing:1.174340px;}
.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;}
}
.ws8_c00452{word-spacing:-31.532206px;}
.ws9_c00452{word-spacing:-22.037282px;}
.ws5_c00452{word-spacing:-13.894692px;}
.ws4_c00452{word-spacing:-12.720351px;}
.ws7_c00452{word-spacing:-8.778801px;}
.wsa_c00452{word-spacing:0.000000px;}
.ws6_c00452{word-spacing:83.472601px;}
.ws3_c00452{word-spacing:269.959261px;}
.ws1_c00452{word-spacing:1129.022707px;}
.ws0_c00452{word-spacing:1892.379401px;}
.ws2_c00452{word-spacing:4131.625069px;}
._a_c00452{margin-left:-1.174340px;}
._0_c00452{width:1.927205px;}
._1_c00452{width:3.578508px;}
._e_c00452{width:123.098455px;}
._17_c00452{width:135.002093px;}
._b_c00452{width:155.081320px;}
._11_c00452{width:156.097143px;}
._14_c00452{width:162.375998px;}
._d_c00452{width:182.391467px;}
._f_c00452{width:207.201036px;}
._15_c00452{width:220.640991px;}
._12_c00452{width:247.295292px;}
._9_c00452{width:294.223388px;}
._4_c00452{width:295.661959px;}
._6_c00452{width:313.608876px;}
._c_c00452{width:314.898471px;}
._8_c00452{width:332.288085px;}
._7_c00452{width:342.606009px;}
._10_c00452{width:367.678773px;}
._16_c00452{width:380.393128px;}
._3_c00452{width:389.856116px;}
._5_c00452{width:403.050224px;}
._13_c00452{width:407.761036px;}
._18_c00452{width:436.860973px;}
._2_c00452{width:1166.924601px;}
.fc1_c00452{color:transparent;}
.fc0_c00452{color:rgb(0,0,0);}
.fs2_c00452{font-size:31.578420px;}
.fs1_c00452{font-size:45.756660px;}
.fs0_c00452{font-size:68.313000px;}
.fs4_c00452{font-size:79.270800px;}
.fs3_c00452{font-size:113.425200px;}
.y0_c00452{bottom:0.000000px;}
.y18_c00452{bottom:22.022100px;}
.y1e_c00452{bottom:22.022250px;}
.y17_c00452{bottom:48.301950px;}
.y1d_c00452{bottom:48.302100px;}
.y16_c00452{bottom:74.581800px;}
.y1c_c00452{bottom:74.583150px;}
.y15_c00452{bottom:100.861650px;}
.y1b_c00452{bottom:100.863000px;}
.y14_c00452{bottom:127.141500px;}
.y1a_c00452{bottom:127.142850px;}
.y13_c00452{bottom:153.421350px;}
.y19_c00452{bottom:153.421500px;}
.y1f_c00452{bottom:155.941350px;}
.y5_c00452{bottom:188.699850px;}
.y12_c00452{bottom:209.939850px;}
.y7_c00452{bottom:225.959850px;}
.y8_c00452{bottom:268.799850px;}
.y6_c00452{bottom:296.519850px;}
.y9_c00452{bottom:311.639850px;}
.ya_c00452{bottom:354.299850px;}
.yb_c00452{bottom:397.139850px;}
.yc_c00452{bottom:439.979850px;}
.yd_c00452{bottom:482.819850px;}
.ye_c00452{bottom:525.479850px;}
.yf_c00452{bottom:568.319850px;}
.y10_c00452{bottom:611.159850px;}
.y11_c00452{bottom:653.819850px;}
.y4_c00452{bottom:659.759850px;}
.y3_c00452{bottom:671.100090px;}
.y2_c00452{bottom:682.259850px;}
.y1_c00452{bottom:706.919850px;}
.y26_c00452{bottom:739.499850px;}
.y23_c00452{bottom:751.019550px;}
.y25_c00452{bottom:757.679850px;}
.y22_c00452{bottom:776.939700px;}
.y20_c00452{bottom:784.139850px;}
.y24_c00452{bottom:794.579850px;}
.y21_c00452{bottom:802.859850px;}
.h3_c00452{height:33.334442px;}
.h4_c00452{height:43.885972px;}
.h2_c00452{height:49.767088px;}
.h6_c00452{height:57.750016px;}
.h5_c00452{height:82.632030px;}
.h0_c00452{height:892.499550px;}
.h1_c00452{height:892.500000px;}
.w0_c00452{width:1262.999700px;}
.w1_c00452{width:1263.000000px;}
.x0_c00452{left:0.000000px;}
.xa_c00452{left:27.165750px;}
.xf_c00452{left:35.265750px;}
.x13_c00452{left:38.506050px;}
.x6_c00452{left:43.726200px;}
.x9_c00452{left:52.725600px;}
.x8_c00452{left:59.385900px;}
.x7_c00452{left:66.045750px;}
.x3_c00452{left:92.866040px;}
.x4_c00452{left:185.386500px;}
.x1_c00452{left:228.406500px;}
.x2_c00452{left:287.446500px;}
.x5_c00452{left:416.506500px;}
.xc_c00452{left:479.686231px;}
.xd_c00452{left:492.286228px;}
.xb_c00452{left:500.206279px;}
.x11_c00452{left:567.526500px;}
.x12_c00452{left:638.266500px;}
.x10_c00452{left:837.165000px;}
.xe_c00452{left:878.566500px;}
@media print{
.v0_c00452{vertical-align:0.000000pt;}
.v1_c00452{vertical-align:18.560533pt;}
.ls1_c00452{letter-spacing:0.000000pt;}
.ls0_c00452{letter-spacing:1.043858pt;}
.ws8_c00452{word-spacing:-28.028627pt;}
.ws9_c00452{word-spacing:-19.588695pt;}
.ws5_c00452{word-spacing:-12.350837pt;}
.ws4_c00452{word-spacing:-11.306979pt;}
.ws7_c00452{word-spacing:-7.803378pt;}
.wsa_c00452{word-spacing:0.000000pt;}
.ws6_c00452{word-spacing:74.197868pt;}
.ws3_c00452{word-spacing:239.963787pt;}
.ws1_c00452{word-spacing:1003.575740pt;}
.ws0_c00452{word-spacing:1682.115023pt;}
.ws2_c00452{word-spacing:3672.555617pt;}
._a_c00452{margin-left:-1.043858pt;}
._0_c00452{width:1.713071pt;}
._1_c00452{width:3.180896pt;}
._e_c00452{width:109.420849pt;}
._17_c00452{width:120.001860pt;}
._b_c00452{width:137.850063pt;}
._11_c00452{width:138.753016pt;}
._14_c00452{width:144.334220pt;}
._d_c00452{width:162.125749pt;}
._f_c00452{width:184.178698pt;}
._15_c00452{width:196.125326pt;}
._12_c00452{width:219.818038pt;}
._9_c00452{width:261.531900pt;}
._4_c00452{width:262.810630pt;}
._6_c00452{width:278.763446pt;}
._c_c00452{width:279.909752pt;}
._8_c00452{width:295.367186pt;}
._7_c00452{width:304.538675pt;}
._10_c00452{width:326.825576pt;}
._16_c00452{width:338.127225pt;}
._3_c00452{width:346.538770pt;}
._5_c00452{width:358.266866pt;}
._13_c00452{width:362.454254pt;}
._18_c00452{width:388.320865pt;}
._2_c00452{width:1037.266312pt;}
.fs2_c00452{font-size:28.069707pt;}
.fs1_c00452{font-size:40.672587pt;}
.fs0_c00452{font-size:60.722667pt;}
.fs4_c00452{font-size:70.462933pt;}
.fs3_c00452{font-size:100.822400pt;}
.y0_c00452{bottom:0.000000pt;}
.y18_c00452{bottom:19.575200pt;}
.y1e_c00452{bottom:19.575333pt;}
.y17_c00452{bottom:42.935067pt;}
.y1d_c00452{bottom:42.935200pt;}
.y16_c00452{bottom:66.294933pt;}
.y1c_c00452{bottom:66.296133pt;}
.y15_c00452{bottom:89.654800pt;}
.y1b_c00452{bottom:89.656000pt;}
.y14_c00452{bottom:113.014667pt;}
.y1a_c00452{bottom:113.015867pt;}
.y13_c00452{bottom:136.374533pt;}
.y19_c00452{bottom:136.374667pt;}
.y1f_c00452{bottom:138.614533pt;}
.y5_c00452{bottom:167.733200pt;}
.y12_c00452{bottom:186.613200pt;}
.y7_c00452{bottom:200.853200pt;}
.y8_c00452{bottom:238.933200pt;}
.y6_c00452{bottom:263.573200pt;}
.y9_c00452{bottom:277.013200pt;}
.ya_c00452{bottom:314.933200pt;}
.yb_c00452{bottom:353.013200pt;}
.yc_c00452{bottom:391.093200pt;}
.yd_c00452{bottom:429.173200pt;}
.ye_c00452{bottom:467.093200pt;}
.yf_c00452{bottom:505.173200pt;}
.y10_c00452{bottom:543.253200pt;}
.y11_c00452{bottom:581.173200pt;}
.y4_c00452{bottom:586.453200pt;}
.y3_c00452{bottom:596.533413pt;}
.y2_c00452{bottom:606.453200pt;}
.y1_c00452{bottom:628.373200pt;}
.y26_c00452{bottom:657.333200pt;}
.y23_c00452{bottom:667.572933pt;}
.y25_c00452{bottom:673.493200pt;}
.y22_c00452{bottom:690.613067pt;}
.y20_c00452{bottom:697.013200pt;}
.y24_c00452{bottom:706.293200pt;}
.y21_c00452{bottom:713.653200pt;}
.h3_c00452{height:29.630615pt;}
.h4_c00452{height:39.009753pt;}
.h2_c00452{height:44.237411pt;}
.h6_c00452{height:51.333348pt;}
.h5_c00452{height:73.450694pt;}
.h0_c00452{height:793.332933pt;}
.h1_c00452{height:793.333333pt;}
.w0_c00452{width:1122.666400pt;}
.w1_c00452{width:1122.666667pt;}
.x0_c00452{left:0.000000pt;}
.xa_c00452{left:24.147333pt;}
.xf_c00452{left:31.347333pt;}
.x13_c00452{left:34.227600pt;}
.x6_c00452{left:38.867733pt;}
.x9_c00452{left:46.867200pt;}
.x8_c00452{left:52.787467pt;}
.x7_c00452{left:58.707333pt;}
.x3_c00452{left:82.547591pt;}
.x4_c00452{left:164.788000pt;}
.x1_c00452{left:203.028000pt;}
.x2_c00452{left:255.508000pt;}
.x5_c00452{left:370.228000pt;}
.xc_c00452{left:426.387761pt;}
.xd_c00452{left:437.587758pt;}
.xb_c00452{left:444.627804pt;}
.x11_c00452{left:504.468000pt;}
.x12_c00452{left:567.348000pt;}
.x10_c00452{left:744.146667pt;}
.xe_c00452{left:780.948000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c84f1e632cfbbc8a35271f0a.woff2')format("woff");}.ff1_c00453{font-family:ff1_c00453;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00453{transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);}
.m1_c00453{transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);}
.m4_c00453{transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);}
.m3_c00453{transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);}
.m0_c00453{transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);}
.v0_c00453{vertical-align:0.000000px;}
.v1_c00453{vertical-align:20.880600px;}
.ls1_c00453{letter-spacing:0.000000px;}
.ls0_c00453{letter-spacing:1.174340px;}
.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;}
}
.ws8_c00453{word-spacing:-31.532206px;}
.ws9_c00453{word-spacing:-22.037282px;}
.ws5_c00453{word-spacing:-13.894692px;}
.ws4_c00453{word-spacing:-12.720351px;}
.ws7_c00453{word-spacing:-8.778801px;}
.wsa_c00453{word-spacing:0.000000px;}
.ws6_c00453{word-spacing:83.472601px;}
.ws3_c00453{word-spacing:269.959261px;}
.ws1_c00453{word-spacing:1129.022707px;}
.ws0_c00453{word-spacing:1892.379401px;}
.ws2_c00453{word-spacing:4131.625069px;}
._a_c00453{margin-left:-1.174340px;}
._0_c00453{width:1.927205px;}
._1_c00453{width:3.578508px;}
._e_c00453{width:123.098455px;}
._17_c00453{width:135.002093px;}
._b_c00453{width:155.081320px;}
._11_c00453{width:156.097143px;}
._14_c00453{width:162.375998px;}
._d_c00453{width:182.391467px;}
._f_c00453{width:207.201036px;}
._15_c00453{width:220.640991px;}
._12_c00453{width:247.295292px;}
._9_c00453{width:294.223388px;}
._4_c00453{width:295.661959px;}
._6_c00453{width:313.608876px;}
._c_c00453{width:314.898471px;}
._8_c00453{width:332.288085px;}
._7_c00453{width:342.606009px;}
._10_c00453{width:367.678773px;}
._16_c00453{width:380.393128px;}
._3_c00453{width:389.856116px;}
._5_c00453{width:403.050224px;}
._13_c00453{width:407.761036px;}
._18_c00453{width:436.860973px;}
._2_c00453{width:1166.924601px;}
.fc1_c00453{color:transparent;}
.fc0_c00453{color:rgb(0,0,0);}
.fs2_c00453{font-size:31.578420px;}
.fs1_c00453{font-size:45.756660px;}
.fs0_c00453{font-size:68.313000px;}
.fs4_c00453{font-size:79.270800px;}
.fs3_c00453{font-size:113.425200px;}
.y0_c00453{bottom:0.000000px;}
.y18_c00453{bottom:22.022100px;}
.y1f_c00453{bottom:22.022250px;}
.y17_c00453{bottom:48.301950px;}
.y1e_c00453{bottom:48.302100px;}
.y16_c00453{bottom:74.581800px;}
.y1d_c00453{bottom:74.583150px;}
.y15_c00453{bottom:100.861650px;}
.y1c_c00453{bottom:100.863000px;}
.y14_c00453{bottom:127.141500px;}
.y1b_c00453{bottom:127.142850px;}
.y13_c00453{bottom:153.421350px;}
.y19_c00453{bottom:153.421500px;}
.y20_c00453{bottom:155.941350px;}
.y1a_c00453{bottom:165.121500px;}
.y5_c00453{bottom:188.699850px;}
.y12_c00453{bottom:209.939850px;}
.y7_c00453{bottom:225.959850px;}
.y8_c00453{bottom:268.799850px;}
.y6_c00453{bottom:296.519850px;}
.y9_c00453{bottom:311.639850px;}
.ya_c00453{bottom:354.299850px;}
.yb_c00453{bottom:397.139850px;}
.yc_c00453{bottom:439.979850px;}
.yd_c00453{bottom:482.819850px;}
.ye_c00453{bottom:525.479850px;}
.yf_c00453{bottom:568.319850px;}
.y10_c00453{bottom:611.159850px;}
.y11_c00453{bottom:653.819850px;}
.y4_c00453{bottom:659.759850px;}
.y3_c00453{bottom:671.100090px;}
.y2_c00453{bottom:682.259850px;}
.y1_c00453{bottom:706.919850px;}
.y27_c00453{bottom:739.499850px;}
.y24_c00453{bottom:751.019550px;}
.y26_c00453{bottom:757.679850px;}
.y23_c00453{bottom:776.939700px;}
.y21_c00453{bottom:784.139850px;}
.y25_c00453{bottom:794.579850px;}
.y22_c00453{bottom:802.859850px;}
.h3_c00453{height:33.312100px;}
.h4_c00453{height:43.870553px;}
.h2_c00453{height:49.733732px;}
.h6_c00453{height:57.711310px;}
.h5_c00453{height:82.576647px;}
.h0_c00453{height:892.499550px;}
.h1_c00453{height:892.500000px;}
.w0_c00453{width:1262.999700px;}
.w1_c00453{width:1263.000000px;}
.x0_c00453{left:0.000000px;}
.xa_c00453{left:27.165750px;}
.x11_c00453{left:35.265750px;}
.x15_c00453{left:38.506050px;}
.x6_c00453{left:43.726200px;}
.x9_c00453{left:52.725600px;}
.x8_c00453{left:59.385900px;}
.x7_c00453{left:66.045750px;}
.x3_c00453{left:92.866040px;}
.x4_c00453{left:185.386500px;}
.x1_c00453{left:228.406500px;}
.x2_c00453{left:287.446500px;}
.x5_c00453{left:416.506500px;}
.xe_c00453{left:482.564341px;}
.xf_c00453{left:492.284464px;}
.xd_c00453{left:499.844240px;}
.xb_c00453{left:501.283872px;}
.xc_c00453{left:529.150140px;}
.x13_c00453{left:567.526500px;}
.x14_c00453{left:651.046500px;}
.x12_c00453{left:837.165000px;}
.x10_c00453{left:878.566500px;}
@media print{
.v0_c00453{vertical-align:0.000000pt;}
.v1_c00453{vertical-align:18.560533pt;}
.ls1_c00453{letter-spacing:0.000000pt;}
.ls0_c00453{letter-spacing:1.043858pt;}
.ws8_c00453{word-spacing:-28.028627pt;}
.ws9_c00453{word-spacing:-19.588695pt;}
.ws5_c00453{word-spacing:-12.350837pt;}
.ws4_c00453{word-spacing:-11.306979pt;}
.ws7_c00453{word-spacing:-7.803378pt;}
.wsa_c00453{word-spacing:0.000000pt;}
.ws6_c00453{word-spacing:74.197868pt;}
.ws3_c00453{word-spacing:239.963787pt;}
.ws1_c00453{word-spacing:1003.575740pt;}
.ws0_c00453{word-spacing:1682.115023pt;}
.ws2_c00453{word-spacing:3672.555617pt;}
._a_c00453{margin-left:-1.043858pt;}
._0_c00453{width:1.713071pt;}
._1_c00453{width:3.180896pt;}
._e_c00453{width:109.420849pt;}
._17_c00453{width:120.001860pt;}
._b_c00453{width:137.850063pt;}
._11_c00453{width:138.753016pt;}
._14_c00453{width:144.334220pt;}
._d_c00453{width:162.125749pt;}
._f_c00453{width:184.178698pt;}
._15_c00453{width:196.125326pt;}
._12_c00453{width:219.818038pt;}
._9_c00453{width:261.531900pt;}
._4_c00453{width:262.810630pt;}
._6_c00453{width:278.763446pt;}
._c_c00453{width:279.909752pt;}
._8_c00453{width:295.367186pt;}
._7_c00453{width:304.538675pt;}
._10_c00453{width:326.825576pt;}
._16_c00453{width:338.127225pt;}
._3_c00453{width:346.538770pt;}
._5_c00453{width:358.266866pt;}
._13_c00453{width:362.454254pt;}
._18_c00453{width:388.320865pt;}
._2_c00453{width:1037.266312pt;}
.fs2_c00453{font-size:28.069707pt;}
.fs1_c00453{font-size:40.672587pt;}
.fs0_c00453{font-size:60.722667pt;}
.fs4_c00453{font-size:70.462933pt;}
.fs3_c00453{font-size:100.822400pt;}
.y0_c00453{bottom:0.000000pt;}
.y18_c00453{bottom:19.575200pt;}
.y1f_c00453{bottom:19.575333pt;}
.y17_c00453{bottom:42.935067pt;}
.y1e_c00453{bottom:42.935200pt;}
.y16_c00453{bottom:66.294933pt;}
.y1d_c00453{bottom:66.296133pt;}
.y15_c00453{bottom:89.654800pt;}
.y1c_c00453{bottom:89.656000pt;}
.y14_c00453{bottom:113.014667pt;}
.y1b_c00453{bottom:113.015867pt;}
.y13_c00453{bottom:136.374533pt;}
.y19_c00453{bottom:136.374667pt;}
.y20_c00453{bottom:138.614533pt;}
.y1a_c00453{bottom:146.774667pt;}
.y5_c00453{bottom:167.733200pt;}
.y12_c00453{bottom:186.613200pt;}
.y7_c00453{bottom:200.853200pt;}
.y8_c00453{bottom:238.933200pt;}
.y6_c00453{bottom:263.573200pt;}
.y9_c00453{bottom:277.013200pt;}
.ya_c00453{bottom:314.933200pt;}
.yb_c00453{bottom:353.013200pt;}
.yc_c00453{bottom:391.093200pt;}
.yd_c00453{bottom:429.173200pt;}
.ye_c00453{bottom:467.093200pt;}
.yf_c00453{bottom:505.173200pt;}
.y10_c00453{bottom:543.253200pt;}
.y11_c00453{bottom:581.173200pt;}
.y4_c00453{bottom:586.453200pt;}
.y3_c00453{bottom:596.533413pt;}
.y2_c00453{bottom:606.453200pt;}
.y1_c00453{bottom:628.373200pt;}
.y27_c00453{bottom:657.333200pt;}
.y24_c00453{bottom:667.572933pt;}
.y26_c00453{bottom:673.493200pt;}
.y23_c00453{bottom:690.613067pt;}
.y21_c00453{bottom:697.013200pt;}
.y25_c00453{bottom:706.293200pt;}
.y22_c00453{bottom:713.653200pt;}
.h3_c00453{height:29.610755pt;}
.h4_c00453{height:38.996047pt;}
.h2_c00453{height:44.207762pt;}
.h6_c00453{height:51.298942pt;}
.h5_c00453{height:73.401464pt;}
.h0_c00453{height:793.332933pt;}
.h1_c00453{height:793.333333pt;}
.w0_c00453{width:1122.666400pt;}
.w1_c00453{width:1122.666667pt;}
.x0_c00453{left:0.000000pt;}
.xa_c00453{left:24.147333pt;}
.x11_c00453{left:31.347333pt;}
.x15_c00453{left:34.227600pt;}
.x6_c00453{left:38.867733pt;}
.x9_c00453{left:46.867200pt;}
.x8_c00453{left:52.787467pt;}
.x7_c00453{left:58.707333pt;}
.x3_c00453{left:82.547591pt;}
.x4_c00453{left:164.788000pt;}
.x1_c00453{left:203.028000pt;}
.x2_c00453{left:255.508000pt;}
.x5_c00453{left:370.228000pt;}
.xe_c00453{left:428.946081pt;}
.xf_c00453{left:437.586190pt;}
.xd_c00453{left:444.305991pt;}
.xb_c00453{left:445.585664pt;}
.xc_c00453{left:470.355680pt;}
.x13_c00453{left:504.468000pt;}
.x14_c00453{left:578.708000pt;}
.x12_c00453{left:744.146667pt;}
.x10_c00453{left:780.948000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_90ba606d2e01835feee5d117.woff2')format("woff");}.ff1_c00454{font-family:ff1_c00454;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00454{transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);}
.m1_c00454{transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);}
.m4_c00454{transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);}
.m3_c00454{transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);}
.m0_c00454{transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);}
.v0_c00454{vertical-align:0.000000px;}
.v1_c00454{vertical-align:20.880600px;}
.ls1_c00454{letter-spacing:0.000000px;}
.ls0_c00454{letter-spacing:1.174340px;}
.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;}
}
.ws8_c00454{word-spacing:-31.532206px;}
.ws9_c00454{word-spacing:-22.037282px;}
.ws5_c00454{word-spacing:-13.894692px;}
.ws4_c00454{word-spacing:-12.720351px;}
.ws7_c00454{word-spacing:-8.778801px;}
.wsa_c00454{word-spacing:0.000000px;}
.ws6_c00454{word-spacing:83.472601px;}
.ws3_c00454{word-spacing:269.959261px;}
.ws1_c00454{word-spacing:1129.022707px;}
.ws0_c00454{word-spacing:1892.379401px;}
.ws2_c00454{word-spacing:4131.625069px;}
._a_c00454{margin-left:-1.174340px;}
._0_c00454{width:1.927205px;}
._1_c00454{width:3.578508px;}
._e_c00454{width:123.098455px;}
._17_c00454{width:135.002093px;}
._b_c00454{width:155.081320px;}
._11_c00454{width:156.097143px;}
._14_c00454{width:162.375998px;}
._d_c00454{width:182.391467px;}
._f_c00454{width:207.201036px;}
._15_c00454{width:220.640991px;}
._12_c00454{width:247.295292px;}
._9_c00454{width:294.223388px;}
._4_c00454{width:295.661959px;}
._6_c00454{width:313.608876px;}
._c_c00454{width:314.898471px;}
._8_c00454{width:332.288085px;}
._7_c00454{width:342.606009px;}
._10_c00454{width:367.678773px;}
._16_c00454{width:380.393128px;}
._3_c00454{width:389.856116px;}
._5_c00454{width:403.050224px;}
._13_c00454{width:407.761036px;}
._18_c00454{width:436.860973px;}
._2_c00454{width:1166.924601px;}
.fc1_c00454{color:transparent;}
.fc0_c00454{color:rgb(0,0,0);}
.fs2_c00454{font-size:31.578420px;}
.fs1_c00454{font-size:45.756660px;}
.fs0_c00454{font-size:68.313000px;}
.fs4_c00454{font-size:79.270800px;}
.fs3_c00454{font-size:113.425200px;}
.y0_c00454{bottom:0.000000px;}
.y18_c00454{bottom:22.022100px;}
.y1f_c00454{bottom:22.022250px;}
.y17_c00454{bottom:48.301950px;}
.y1e_c00454{bottom:48.302100px;}
.y16_c00454{bottom:74.581800px;}
.y1d_c00454{bottom:74.583150px;}
.y15_c00454{bottom:100.861650px;}
.y1c_c00454{bottom:100.863000px;}
.y14_c00454{bottom:127.141500px;}
.y1b_c00454{bottom:127.142850px;}
.y13_c00454{bottom:153.421350px;}
.y19_c00454{bottom:153.421500px;}
.y20_c00454{bottom:155.941350px;}
.y1a_c00454{bottom:165.121500px;}
.y5_c00454{bottom:188.699850px;}
.y12_c00454{bottom:209.939850px;}
.y7_c00454{bottom:225.959850px;}
.y8_c00454{bottom:268.799850px;}
.y6_c00454{bottom:296.519850px;}
.y9_c00454{bottom:311.639850px;}
.ya_c00454{bottom:354.299850px;}
.yb_c00454{bottom:397.139850px;}
.yc_c00454{bottom:439.979850px;}
.yd_c00454{bottom:482.819850px;}
.ye_c00454{bottom:525.479850px;}
.yf_c00454{bottom:568.319850px;}
.y10_c00454{bottom:611.159850px;}
.y11_c00454{bottom:653.819850px;}
.y4_c00454{bottom:659.759850px;}
.y3_c00454{bottom:671.100090px;}
.y2_c00454{bottom:682.259850px;}
.y1_c00454{bottom:706.919850px;}
.y27_c00454{bottom:739.499850px;}
.y24_c00454{bottom:751.019550px;}
.y26_c00454{bottom:757.679850px;}
.y23_c00454{bottom:776.939700px;}
.y21_c00454{bottom:784.139850px;}
.y25_c00454{bottom:794.579850px;}
.y22_c00454{bottom:802.859850px;}
.h3_c00454{height:33.312100px;}
.h4_c00454{height:43.870553px;}
.h2_c00454{height:49.733732px;}
.h6_c00454{height:57.711310px;}
.h5_c00454{height:82.576647px;}
.h0_c00454{height:892.499550px;}
.h1_c00454{height:892.500000px;}
.w0_c00454{width:1262.999700px;}
.w1_c00454{width:1263.000000px;}
.x0_c00454{left:0.000000px;}
.xa_c00454{left:27.165750px;}
.x11_c00454{left:35.265750px;}
.x15_c00454{left:38.506050px;}
.x6_c00454{left:43.726200px;}
.x9_c00454{left:52.725600px;}
.x8_c00454{left:59.385900px;}
.x7_c00454{left:66.045750px;}
.x3_c00454{left:92.866040px;}
.x4_c00454{left:185.386500px;}
.x1_c00454{left:228.406500px;}
.x2_c00454{left:287.446500px;}
.x5_c00454{left:416.506500px;}
.xe_c00454{left:479.324060px;}
.xf_c00454{left:492.284404px;}
.xd_c00454{left:499.844240px;}
.xb_c00454{left:501.283872px;}
.xc_c00454{left:529.150140px;}
.x13_c00454{left:567.526500px;}
.x14_c00454{left:651.046500px;}
.x12_c00454{left:837.165000px;}
.x10_c00454{left:878.566500px;}
@media print{
.v0_c00454{vertical-align:0.000000pt;}
.v1_c00454{vertical-align:18.560533pt;}
.ls1_c00454{letter-spacing:0.000000pt;}
.ls0_c00454{letter-spacing:1.043858pt;}
.ws8_c00454{word-spacing:-28.028627pt;}
.ws9_c00454{word-spacing:-19.588695pt;}
.ws5_c00454{word-spacing:-12.350837pt;}
.ws4_c00454{word-spacing:-11.306979pt;}
.ws7_c00454{word-spacing:-7.803378pt;}
.wsa_c00454{word-spacing:0.000000pt;}
.ws6_c00454{word-spacing:74.197868pt;}
.ws3_c00454{word-spacing:239.963787pt;}
.ws1_c00454{word-spacing:1003.575740pt;}
.ws0_c00454{word-spacing:1682.115023pt;}
.ws2_c00454{word-spacing:3672.555617pt;}
._a_c00454{margin-left:-1.043858pt;}
._0_c00454{width:1.713071pt;}
._1_c00454{width:3.180896pt;}
._e_c00454{width:109.420849pt;}
._17_c00454{width:120.001860pt;}
._b_c00454{width:137.850063pt;}
._11_c00454{width:138.753016pt;}
._14_c00454{width:144.334220pt;}
._d_c00454{width:162.125749pt;}
._f_c00454{width:184.178698pt;}
._15_c00454{width:196.125326pt;}
._12_c00454{width:219.818038pt;}
._9_c00454{width:261.531900pt;}
._4_c00454{width:262.810630pt;}
._6_c00454{width:278.763446pt;}
._c_c00454{width:279.909752pt;}
._8_c00454{width:295.367186pt;}
._7_c00454{width:304.538675pt;}
._10_c00454{width:326.825576pt;}
._16_c00454{width:338.127225pt;}
._3_c00454{width:346.538770pt;}
._5_c00454{width:358.266866pt;}
._13_c00454{width:362.454254pt;}
._18_c00454{width:388.320865pt;}
._2_c00454{width:1037.266312pt;}
.fs2_c00454{font-size:28.069707pt;}
.fs1_c00454{font-size:40.672587pt;}
.fs0_c00454{font-size:60.722667pt;}
.fs4_c00454{font-size:70.462933pt;}
.fs3_c00454{font-size:100.822400pt;}
.y0_c00454{bottom:0.000000pt;}
.y18_c00454{bottom:19.575200pt;}
.y1f_c00454{bottom:19.575333pt;}
.y17_c00454{bottom:42.935067pt;}
.y1e_c00454{bottom:42.935200pt;}
.y16_c00454{bottom:66.294933pt;}
.y1d_c00454{bottom:66.296133pt;}
.y15_c00454{bottom:89.654800pt;}
.y1c_c00454{bottom:89.656000pt;}
.y14_c00454{bottom:113.014667pt;}
.y1b_c00454{bottom:113.015867pt;}
.y13_c00454{bottom:136.374533pt;}
.y19_c00454{bottom:136.374667pt;}
.y20_c00454{bottom:138.614533pt;}
.y1a_c00454{bottom:146.774667pt;}
.y5_c00454{bottom:167.733200pt;}
.y12_c00454{bottom:186.613200pt;}
.y7_c00454{bottom:200.853200pt;}
.y8_c00454{bottom:238.933200pt;}
.y6_c00454{bottom:263.573200pt;}
.y9_c00454{bottom:277.013200pt;}
.ya_c00454{bottom:314.933200pt;}
.yb_c00454{bottom:353.013200pt;}
.yc_c00454{bottom:391.093200pt;}
.yd_c00454{bottom:429.173200pt;}
.ye_c00454{bottom:467.093200pt;}
.yf_c00454{bottom:505.173200pt;}
.y10_c00454{bottom:543.253200pt;}
.y11_c00454{bottom:581.173200pt;}
.y4_c00454{bottom:586.453200pt;}
.y3_c00454{bottom:596.533413pt;}
.y2_c00454{bottom:606.453200pt;}
.y1_c00454{bottom:628.373200pt;}
.y27_c00454{bottom:657.333200pt;}
.y24_c00454{bottom:667.572933pt;}
.y26_c00454{bottom:673.493200pt;}
.y23_c00454{bottom:690.613067pt;}
.y21_c00454{bottom:697.013200pt;}
.y25_c00454{bottom:706.293200pt;}
.y22_c00454{bottom:713.653200pt;}
.h3_c00454{height:29.610755pt;}
.h4_c00454{height:38.996047pt;}
.h2_c00454{height:44.207762pt;}
.h6_c00454{height:51.298942pt;}
.h5_c00454{height:73.401464pt;}
.h0_c00454{height:793.332933pt;}
.h1_c00454{height:793.333333pt;}
.w0_c00454{width:1122.666400pt;}
.w1_c00454{width:1122.666667pt;}
.x0_c00454{left:0.000000pt;}
.xa_c00454{left:24.147333pt;}
.x11_c00454{left:31.347333pt;}
.x15_c00454{left:34.227600pt;}
.x6_c00454{left:38.867733pt;}
.x9_c00454{left:46.867200pt;}
.x8_c00454{left:52.787467pt;}
.x7_c00454{left:58.707333pt;}
.x3_c00454{left:82.547591pt;}
.x4_c00454{left:164.788000pt;}
.x1_c00454{left:203.028000pt;}
.x2_c00454{left:255.508000pt;}
.x5_c00454{left:370.228000pt;}
.xe_c00454{left:426.065831pt;}
.xf_c00454{left:437.586137pt;}
.xd_c00454{left:444.305991pt;}
.xb_c00454{left:445.585664pt;}
.xc_c00454{left:470.355680pt;}
.x13_c00454{left:504.468000pt;}
.x14_c00454{left:578.708000pt;}
.x12_c00454{left:744.146667pt;}
.x10_c00454{left:780.948000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_43f643fb2abfc390189c734e.woff2')format("woff");}.ff1_c00455{font-family:ff1_c00455;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00455{transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);}
.m1_c00455{transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);}
.m4_c00455{transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);}
.m3_c00455{transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);}
.m0_c00455{transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);}
.v0_c00455{vertical-align:0.000000px;}
.v1_c00455{vertical-align:20.883600px;}
.ls1_c00455{letter-spacing:0.000000px;}
.ls0_c00455{letter-spacing:1.178991px;}
.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;}
}
.ws8_c00455{word-spacing:-31.532206px;}
.ws9_c00455{word-spacing:-22.037282px;}
.ws5_c00455{word-spacing:-13.899359px;}
.ws4_c00455{word-spacing:-12.720368px;}
.ws7_c00455{word-spacing:-8.778817px;}
.wsa_c00455{word-spacing:0.000000px;}
.ws6_c00455{word-spacing:83.463278px;}
.ws3_c00455{word-spacing:269.959157px;}
.ws1_c00455{word-spacing:1129.028763px;}
.ws0_c00455{word-spacing:1892.372570px;}
.ws2_c00455{word-spacing:4131.625911px;}
._a_c00455{margin-left:-1.178991px;}
._0_c00455{width:1.927205px;}
._1_c00455{width:3.578508px;}
._e_c00455{width:123.094294px;}
._17_c00455{width:135.002026px;}
._b_c00455{width:155.095292px;}
._11_c00455{width:156.109053px;}
._14_c00455{width:162.375964px;}
._d_c00455{width:182.400507px;}
._f_c00455{width:207.200952px;}
._15_c00455{width:220.646921px;}
._12_c00455{width:247.289262px;}
._9_c00455{width:294.229881px;}
._4_c00455{width:295.668911px;}
._6_c00455{width:313.624620px;}
._c_c00455{width:314.890196px;}
._8_c00455{width:332.299319px;}
._7_c00455{width:342.609937px;}
._10_c00455{width:367.672693px;}
._16_c00455{width:380.393061px;}
._3_c00455{width:389.865395px;}
._5_c00455{width:403.057323px;}
._13_c00455{width:407.761003px;}
._18_c00455{width:436.864735px;}
._2_c00455{width:1166.963143px;}
.fc1_c00455{color:transparent;}
.fc0_c00455{color:rgb(0,0,0);}
.fs2_c00455{font-size:31.578480px;}
.fs1_c00455{font-size:45.756720px;}
.fs0_c00455{font-size:68.313000px;}
.fs4_c00455{font-size:79.270800px;}
.fs3_c00455{font-size:113.425200px;}
.y0_c00455{bottom:0.000000px;}
.y18_c00455{bottom:22.019250px;}
.y1e_c00455{bottom:22.019400px;}
.y17_c00455{bottom:48.299100px;}
.y1d_c00455{bottom:48.299250px;}
.y16_c00455{bottom:74.578950px;}
.y1c_c00455{bottom:74.579700px;}
.y15_c00455{bottom:100.858800px;}
.y1b_c00455{bottom:100.859550px;}
.y14_c00455{bottom:127.138650px;}
.y1a_c00455{bottom:127.139400px;}
.y13_c00455{bottom:153.418500px;}
.y19_c00455{bottom:153.419250px;}
.y1f_c00455{bottom:155.938500px;}
.y5_c00455{bottom:188.698500px;}
.y12_c00455{bottom:209.938500px;}
.y7_c00455{bottom:225.958500px;}
.y8_c00455{bottom:268.798500px;}
.y6_c00455{bottom:296.518500px;}
.y9_c00455{bottom:311.638500px;}
.ya_c00455{bottom:354.298500px;}
.yb_c00455{bottom:397.138500px;}
.yc_c00455{bottom:439.978500px;}
.yd_c00455{bottom:482.818500px;}
.ye_c00455{bottom:525.478500px;}
.yf_c00455{bottom:568.318500px;}
.y10_c00455{bottom:611.160000px;}
.y11_c00455{bottom:653.820000px;}
.y4_c00455{bottom:659.760000px;}
.y3_c00455{bottom:671.100240px;}
.y2_c00455{bottom:682.260000px;}
.y1_c00455{bottom:706.920000px;}
.y26_c00455{bottom:739.500000px;}
.y23_c00455{bottom:751.019700px;}
.y25_c00455{bottom:757.680000px;}
.y22_c00455{bottom:776.939850px;}
.y20_c00455{bottom:784.140000px;}
.y24_c00455{bottom:794.580000px;}
.y21_c00455{bottom:802.860000px;}
.h3_c00455{height:33.312143px;}
.h4_c00455{height:43.873597px;}
.h2_c00455{height:49.733732px;}
.h6_c00455{height:57.711310px;}
.h5_c00455{height:82.576647px;}
.h0_c00455{height:892.499700px;}
.h1_c00455{height:892.500000px;}
.w0_c00455{width:1262.999700px;}
.w1_c00455{width:1263.000000px;}
.x0_c00455{left:0.000000px;}
.xa_c00455{left:27.165750px;}
.xf_c00455{left:35.265750px;}
.x13_c00455{left:38.506050px;}
.x6_c00455{left:43.726200px;}
.x9_c00455{left:52.725600px;}
.x8_c00455{left:59.385900px;}
.x7_c00455{left:66.045750px;}
.x3_c00455{left:92.866039px;}
.x4_c00455{left:185.386500px;}
.x1_c00455{left:228.408000px;}
.x2_c00455{left:287.448000px;}
.x5_c00455{left:416.508000px;}
.xc_c00455{left:479.686231px;}
.xd_c00455{left:492.286228px;}
.xb_c00455{left:500.206279px;}
.x11_c00455{left:567.528000px;}
.x12_c00455{left:651.048000px;}
.x10_c00455{left:837.168000px;}
.xe_c00455{left:878.568000px;}
@media print{
.v0_c00455{vertical-align:0.000000pt;}
.v1_c00455{vertical-align:18.563200pt;}
.ls1_c00455{letter-spacing:0.000000pt;}
.ls0_c00455{letter-spacing:1.047992pt;}
.ws8_c00455{word-spacing:-28.028627pt;}
.ws9_c00455{word-spacing:-19.588695pt;}
.ws5_c00455{word-spacing:-12.354985pt;}
.ws4_c00455{word-spacing:-11.306994pt;}
.ws7_c00455{word-spacing:-7.803393pt;}
.wsa_c00455{word-spacing:0.000000pt;}
.ws6_c00455{word-spacing:74.189580pt;}
.ws3_c00455{word-spacing:239.963695pt;}
.ws1_c00455{word-spacing:1003.581123pt;}
.ws0_c00455{word-spacing:1682.108951pt;}
.ws2_c00455{word-spacing:3672.556365pt;}
._a_c00455{margin-left:-1.047992pt;}
._0_c00455{width:1.713071pt;}
._1_c00455{width:3.180896pt;}
._e_c00455{width:109.417151pt;}
._17_c00455{width:120.001801pt;}
._b_c00455{width:137.862482pt;}
._11_c00455{width:138.763603pt;}
._14_c00455{width:144.334191pt;}
._d_c00455{width:162.133784pt;}
._f_c00455{width:184.178624pt;}
._15_c00455{width:196.130597pt;}
._12_c00455{width:219.812677pt;}
._9_c00455{width:261.537672pt;}
._4_c00455{width:262.816810pt;}
._6_c00455{width:278.777440pt;}
._c_c00455{width:279.902396pt;}
._8_c00455{width:295.377172pt;}
._7_c00455{width:304.542166pt;}
._10_c00455{width:326.820171pt;}
._16_c00455{width:338.127165pt;}
._3_c00455{width:346.547018pt;}
._5_c00455{width:358.273176pt;}
._13_c00455{width:362.454225pt;}
._18_c00455{width:388.324209pt;}
._2_c00455{width:1037.300572pt;}
.fs2_c00455{font-size:28.069760pt;}
.fs1_c00455{font-size:40.672640pt;}
.fs0_c00455{font-size:60.722667pt;}
.fs4_c00455{font-size:70.462933pt;}
.fs3_c00455{font-size:100.822400pt;}
.y0_c00455{bottom:0.000000pt;}
.y18_c00455{bottom:19.572667pt;}
.y1e_c00455{bottom:19.572800pt;}
.y17_c00455{bottom:42.932533pt;}
.y1d_c00455{bottom:42.932667pt;}
.y16_c00455{bottom:66.292400pt;}
.y1c_c00455{bottom:66.293067pt;}
.y15_c00455{bottom:89.652267pt;}
.y1b_c00455{bottom:89.652933pt;}
.y14_c00455{bottom:113.012133pt;}
.y1a_c00455{bottom:113.012800pt;}
.y13_c00455{bottom:136.372000pt;}
.y19_c00455{bottom:136.372667pt;}
.y1f_c00455{bottom:138.612000pt;}
.y5_c00455{bottom:167.732000pt;}
.y12_c00455{bottom:186.612000pt;}
.y7_c00455{bottom:200.852000pt;}
.y8_c00455{bottom:238.932000pt;}
.y6_c00455{bottom:263.572000pt;}
.y9_c00455{bottom:277.012000pt;}
.ya_c00455{bottom:314.932000pt;}
.yb_c00455{bottom:353.012000pt;}
.yc_c00455{bottom:391.092000pt;}
.yd_c00455{bottom:429.172000pt;}
.ye_c00455{bottom:467.092000pt;}
.yf_c00455{bottom:505.172000pt;}
.y10_c00455{bottom:543.253333pt;}
.y11_c00455{bottom:581.173333pt;}
.y4_c00455{bottom:586.453333pt;}
.y3_c00455{bottom:596.533547pt;}
.y2_c00455{bottom:606.453333pt;}
.y1_c00455{bottom:628.373333pt;}
.y26_c00455{bottom:657.333333pt;}
.y23_c00455{bottom:667.573067pt;}
.y25_c00455{bottom:673.493333pt;}
.y22_c00455{bottom:690.613200pt;}
.y20_c00455{bottom:697.013333pt;}
.y24_c00455{bottom:706.293333pt;}
.y21_c00455{bottom:713.653333pt;}
.h3_c00455{height:29.610794pt;}
.h4_c00455{height:38.998753pt;}
.h2_c00455{height:44.207762pt;}
.h6_c00455{height:51.298942pt;}
.h5_c00455{height:73.401464pt;}
.h0_c00455{height:793.333067pt;}
.h1_c00455{height:793.333333pt;}
.w0_c00455{width:1122.666400pt;}
.w1_c00455{width:1122.666667pt;}
.x0_c00455{left:0.000000pt;}
.xa_c00455{left:24.147333pt;}
.xf_c00455{left:31.347333pt;}
.x13_c00455{left:34.227600pt;}
.x6_c00455{left:38.867733pt;}
.x9_c00455{left:46.867200pt;}
.x8_c00455{left:52.787467pt;}
.x7_c00455{left:58.707333pt;}
.x3_c00455{left:82.547590pt;}
.x4_c00455{left:164.788000pt;}
.x1_c00455{left:203.029333pt;}
.x2_c00455{left:255.509333pt;}
.x5_c00455{left:370.229333pt;}
.xc_c00455{left:426.387761pt;}
.xd_c00455{left:437.587758pt;}
.xb_c00455{left:444.627804pt;}
.x11_c00455{left:504.469333pt;}
.x12_c00455{left:578.709333pt;}
.x10_c00455{left:744.149333pt;}
.xe_c00455{left:780.949333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0bf7cbddfbdcf32c43892d22.woff2')format("woff");}.ff1_c00456{font-family:ff1_c00456;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00456{transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);}
.m1_c00456{transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);}
.m4_c00456{transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);}
.m3_c00456{transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);}
.m0_c00456{transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);}
.v0_c00456{vertical-align:0.000000px;}
.v1_c00456{vertical-align:20.883600px;}
.ls1_c00456{letter-spacing:0.000000px;}
.ls0_c00456{letter-spacing:1.178991px;}
.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;}
}
.ws8_c00456{word-spacing:-31.532206px;}
.ws9_c00456{word-spacing:-22.037282px;}
.ws5_c00456{word-spacing:-13.899359px;}
.ws4_c00456{word-spacing:-12.720368px;}
.ws7_c00456{word-spacing:-8.778817px;}
.wsa_c00456{word-spacing:0.000000px;}
.ws6_c00456{word-spacing:83.463278px;}
.ws3_c00456{word-spacing:269.959157px;}
.ws1_c00456{word-spacing:1129.028763px;}
.ws0_c00456{word-spacing:1892.372570px;}
.ws2_c00456{word-spacing:4131.625911px;}
._a_c00456{margin-left:-1.178991px;}
._0_c00456{width:1.927205px;}
._1_c00456{width:3.578508px;}
._e_c00456{width:123.094294px;}
._17_c00456{width:135.002026px;}
._b_c00456{width:155.095292px;}
._11_c00456{width:156.109053px;}
._14_c00456{width:162.375964px;}
._d_c00456{width:182.400507px;}
._f_c00456{width:207.200952px;}
._15_c00456{width:220.646921px;}
._12_c00456{width:247.289262px;}
._9_c00456{width:294.229881px;}
._4_c00456{width:295.668911px;}
._6_c00456{width:313.624620px;}
._c_c00456{width:314.890196px;}
._8_c00456{width:332.299319px;}
._7_c00456{width:342.609937px;}
._10_c00456{width:367.672693px;}
._16_c00456{width:380.393061px;}
._3_c00456{width:389.865395px;}
._5_c00456{width:403.057323px;}
._13_c00456{width:407.761003px;}
._18_c00456{width:436.864735px;}
._2_c00456{width:1166.963143px;}
.fc1_c00456{color:transparent;}
.fc0_c00456{color:rgb(0,0,0);}
.fs2_c00456{font-size:31.578480px;}
.fs1_c00456{font-size:45.756720px;}
.fs0_c00456{font-size:68.313000px;}
.fs4_c00456{font-size:79.270800px;}
.fs3_c00456{font-size:113.425200px;}
.y0_c00456{bottom:0.000000px;}
.y18_c00456{bottom:22.019250px;}
.y1e_c00456{bottom:22.019400px;}
.y17_c00456{bottom:48.299100px;}
.y1d_c00456{bottom:48.299250px;}
.y16_c00456{bottom:74.578950px;}
.y1c_c00456{bottom:74.579700px;}
.y15_c00456{bottom:100.858800px;}
.y1b_c00456{bottom:100.859550px;}
.y14_c00456{bottom:127.138650px;}
.y1a_c00456{bottom:127.139400px;}
.y13_c00456{bottom:153.418500px;}
.y19_c00456{bottom:153.419250px;}
.y1f_c00456{bottom:155.938500px;}
.y5_c00456{bottom:188.698500px;}
.y12_c00456{bottom:209.938500px;}
.y7_c00456{bottom:225.958500px;}
.y8_c00456{bottom:268.798500px;}
.y6_c00456{bottom:296.518500px;}
.y9_c00456{bottom:311.638500px;}
.ya_c00456{bottom:354.298500px;}
.yb_c00456{bottom:397.138500px;}
.yc_c00456{bottom:439.978500px;}
.yd_c00456{bottom:482.818500px;}
.ye_c00456{bottom:525.478500px;}
.yf_c00456{bottom:568.318500px;}
.y10_c00456{bottom:611.160000px;}
.y11_c00456{bottom:653.820000px;}
.y4_c00456{bottom:659.760000px;}
.y3_c00456{bottom:671.100240px;}
.y2_c00456{bottom:682.260000px;}
.y1_c00456{bottom:706.920000px;}
.y26_c00456{bottom:739.500000px;}
.y23_c00456{bottom:751.019700px;}
.y25_c00456{bottom:757.680000px;}
.y22_c00456{bottom:776.939850px;}
.y20_c00456{bottom:784.140000px;}
.y24_c00456{bottom:794.580000px;}
.y21_c00456{bottom:802.860000px;}
.h3_c00456{height:33.312143px;}
.h4_c00456{height:43.873597px;}
.h2_c00456{height:49.733732px;}
.h6_c00456{height:57.711310px;}
.h5_c00456{height:82.576647px;}
.h0_c00456{height:892.499700px;}
.h1_c00456{height:892.500000px;}
.w0_c00456{width:1262.999700px;}
.w1_c00456{width:1263.000000px;}
.x0_c00456{left:0.000000px;}
.xa_c00456{left:27.165750px;}
.xf_c00456{left:35.265750px;}
.x13_c00456{left:38.506050px;}
.x6_c00456{left:43.726200px;}
.x9_c00456{left:52.725600px;}
.x8_c00456{left:59.385900px;}
.x7_c00456{left:66.045750px;}
.x3_c00456{left:92.866039px;}
.x4_c00456{left:185.386500px;}
.x1_c00456{left:228.408000px;}
.x2_c00456{left:287.448000px;}
.x5_c00456{left:416.508000px;}
.xc_c00456{left:479.325883px;}
.xd_c00456{left:492.286228px;}
.xb_c00456{left:500.206279px;}
.x11_c00456{left:567.528000px;}
.x12_c00456{left:651.048000px;}
.x10_c00456{left:837.168000px;}
.xe_c00456{left:878.568000px;}
@media print{
.v0_c00456{vertical-align:0.000000pt;}
.v1_c00456{vertical-align:18.563200pt;}
.ls1_c00456{letter-spacing:0.000000pt;}
.ls0_c00456{letter-spacing:1.047992pt;}
.ws8_c00456{word-spacing:-28.028627pt;}
.ws9_c00456{word-spacing:-19.588695pt;}
.ws5_c00456{word-spacing:-12.354985pt;}
.ws4_c00456{word-spacing:-11.306994pt;}
.ws7_c00456{word-spacing:-7.803393pt;}
.wsa_c00456{word-spacing:0.000000pt;}
.ws6_c00456{word-spacing:74.189580pt;}
.ws3_c00456{word-spacing:239.963695pt;}
.ws1_c00456{word-spacing:1003.581123pt;}
.ws0_c00456{word-spacing:1682.108951pt;}
.ws2_c00456{word-spacing:3672.556365pt;}
._a_c00456{margin-left:-1.047992pt;}
._0_c00456{width:1.713071pt;}
._1_c00456{width:3.180896pt;}
._e_c00456{width:109.417151pt;}
._17_c00456{width:120.001801pt;}
._b_c00456{width:137.862482pt;}
._11_c00456{width:138.763603pt;}
._14_c00456{width:144.334191pt;}
._d_c00456{width:162.133784pt;}
._f_c00456{width:184.178624pt;}
._15_c00456{width:196.130597pt;}
._12_c00456{width:219.812677pt;}
._9_c00456{width:261.537672pt;}
._4_c00456{width:262.816810pt;}
._6_c00456{width:278.777440pt;}
._c_c00456{width:279.902396pt;}
._8_c00456{width:295.377172pt;}
._7_c00456{width:304.542166pt;}
._10_c00456{width:326.820171pt;}
._16_c00456{width:338.127165pt;}
._3_c00456{width:346.547018pt;}
._5_c00456{width:358.273176pt;}
._13_c00456{width:362.454225pt;}
._18_c00456{width:388.324209pt;}
._2_c00456{width:1037.300572pt;}
.fs2_c00456{font-size:28.069760pt;}
.fs1_c00456{font-size:40.672640pt;}
.fs0_c00456{font-size:60.722667pt;}
.fs4_c00456{font-size:70.462933pt;}
.fs3_c00456{font-size:100.822400pt;}
.y0_c00456{bottom:0.000000pt;}
.y18_c00456{bottom:19.572667pt;}
.y1e_c00456{bottom:19.572800pt;}
.y17_c00456{bottom:42.932533pt;}
.y1d_c00456{bottom:42.932667pt;}
.y16_c00456{bottom:66.292400pt;}
.y1c_c00456{bottom:66.293067pt;}
.y15_c00456{bottom:89.652267pt;}
.y1b_c00456{bottom:89.652933pt;}
.y14_c00456{bottom:113.012133pt;}
.y1a_c00456{bottom:113.012800pt;}
.y13_c00456{bottom:136.372000pt;}
.y19_c00456{bottom:136.372667pt;}
.y1f_c00456{bottom:138.612000pt;}
.y5_c00456{bottom:167.732000pt;}
.y12_c00456{bottom:186.612000pt;}
.y7_c00456{bottom:200.852000pt;}
.y8_c00456{bottom:238.932000pt;}
.y6_c00456{bottom:263.572000pt;}
.y9_c00456{bottom:277.012000pt;}
.ya_c00456{bottom:314.932000pt;}
.yb_c00456{bottom:353.012000pt;}
.yc_c00456{bottom:391.092000pt;}
.yd_c00456{bottom:429.172000pt;}
.ye_c00456{bottom:467.092000pt;}
.yf_c00456{bottom:505.172000pt;}
.y10_c00456{bottom:543.253333pt;}
.y11_c00456{bottom:581.173333pt;}
.y4_c00456{bottom:586.453333pt;}
.y3_c00456{bottom:596.533547pt;}
.y2_c00456{bottom:606.453333pt;}
.y1_c00456{bottom:628.373333pt;}
.y26_c00456{bottom:657.333333pt;}
.y23_c00456{bottom:667.573067pt;}
.y25_c00456{bottom:673.493333pt;}
.y22_c00456{bottom:690.613200pt;}
.y20_c00456{bottom:697.013333pt;}
.y24_c00456{bottom:706.293333pt;}
.y21_c00456{bottom:713.653333pt;}
.h3_c00456{height:29.610794pt;}
.h4_c00456{height:38.998753pt;}
.h2_c00456{height:44.207762pt;}
.h6_c00456{height:51.298942pt;}
.h5_c00456{height:73.401464pt;}
.h0_c00456{height:793.333067pt;}
.h1_c00456{height:793.333333pt;}
.w0_c00456{width:1122.666400pt;}
.w1_c00456{width:1122.666667pt;}
.x0_c00456{left:0.000000pt;}
.xa_c00456{left:24.147333pt;}
.xf_c00456{left:31.347333pt;}
.x13_c00456{left:34.227600pt;}
.x6_c00456{left:38.867733pt;}
.x9_c00456{left:46.867200pt;}
.x8_c00456{left:52.787467pt;}
.x7_c00456{left:58.707333pt;}
.x3_c00456{left:82.547590pt;}
.x4_c00456{left:164.788000pt;}
.x1_c00456{left:203.029333pt;}
.x2_c00456{left:255.509333pt;}
.x5_c00456{left:370.229333pt;}
.xc_c00456{left:426.067452pt;}
.xd_c00456{left:437.587758pt;}
.xb_c00456{left:444.627804pt;}
.x11_c00456{left:504.469333pt;}
.x12_c00456{left:578.709333pt;}
.x10_c00456{left:744.149333pt;}
.xe_c00456{left:780.949333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_01c0f1cd3145ca82b76b2d27.woff2')format("woff");}.ff1_c00457{font-family:ff1_c00457;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00457{transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);}
.m1_c00457{transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);}
.m4_c00457{transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);}
.m3_c00457{transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);}
.m0_c00457{transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);}
.v0_c00457{vertical-align:0.000000px;}
.v1_c00457{vertical-align:20.883600px;}
.ls1_c00457{letter-spacing:0.000000px;}
.ls0_c00457{letter-spacing:1.178991px;}
.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;}
}
.ws8_c00457{word-spacing:-31.532206px;}
.ws9_c00457{word-spacing:-22.037282px;}
.ws5_c00457{word-spacing:-13.899359px;}
.ws4_c00457{word-spacing:-12.720368px;}
.ws7_c00457{word-spacing:-8.778817px;}
.wsa_c00457{word-spacing:0.000000px;}
.ws6_c00457{word-spacing:83.463278px;}
.ws3_c00457{word-spacing:269.959157px;}
.ws1_c00457{word-spacing:1129.028763px;}
.ws0_c00457{word-spacing:1892.372570px;}
.ws2_c00457{word-spacing:4131.625911px;}
._a_c00457{margin-left:-1.178991px;}
._0_c00457{width:1.927205px;}
._1_c00457{width:3.578508px;}
._e_c00457{width:123.094294px;}
._17_c00457{width:135.002026px;}
._b_c00457{width:155.095292px;}
._11_c00457{width:156.109053px;}
._14_c00457{width:162.375964px;}
._d_c00457{width:182.400507px;}
._f_c00457{width:207.200952px;}
._15_c00457{width:220.646921px;}
._12_c00457{width:247.289262px;}
._9_c00457{width:294.229881px;}
._4_c00457{width:295.668911px;}
._6_c00457{width:313.624620px;}
._c_c00457{width:314.890196px;}
._8_c00457{width:332.299319px;}
._7_c00457{width:342.609937px;}
._10_c00457{width:367.672693px;}
._16_c00457{width:380.393061px;}
._3_c00457{width:389.865395px;}
._5_c00457{width:403.057323px;}
._13_c00457{width:407.761003px;}
._18_c00457{width:436.864735px;}
._2_c00457{width:1166.963143px;}
.fc1_c00457{color:transparent;}
.fc0_c00457{color:rgb(0,0,0);}
.fs2_c00457{font-size:31.578480px;}
.fs1_c00457{font-size:45.756720px;}
.fs0_c00457{font-size:68.313000px;}
.fs4_c00457{font-size:79.270800px;}
.fs3_c00457{font-size:113.425200px;}
.y0_c00457{bottom:0.000000px;}
.y18_c00457{bottom:22.019250px;}
.y1f_c00457{bottom:22.019400px;}
.y17_c00457{bottom:48.299100px;}
.y1e_c00457{bottom:48.299250px;}
.y16_c00457{bottom:74.578950px;}
.y1d_c00457{bottom:74.579700px;}
.y15_c00457{bottom:100.858800px;}
.y1c_c00457{bottom:100.859550px;}
.y14_c00457{bottom:127.138650px;}
.y1b_c00457{bottom:127.139400px;}
.y13_c00457{bottom:153.418500px;}
.y19_c00457{bottom:153.419250px;}
.y20_c00457{bottom:155.938500px;}
.y1a_c00457{bottom:165.119250px;}
.y5_c00457{bottom:188.698500px;}
.y12_c00457{bottom:209.938500px;}
.y7_c00457{bottom:225.958500px;}
.y8_c00457{bottom:268.798500px;}
.y6_c00457{bottom:296.518500px;}
.y9_c00457{bottom:311.638500px;}
.ya_c00457{bottom:354.298500px;}
.yb_c00457{bottom:397.138500px;}
.yc_c00457{bottom:439.978500px;}
.yd_c00457{bottom:482.818500px;}
.ye_c00457{bottom:525.478500px;}
.yf_c00457{bottom:568.318500px;}
.y10_c00457{bottom:611.160000px;}
.y11_c00457{bottom:653.820000px;}
.y4_c00457{bottom:659.760000px;}
.y3_c00457{bottom:671.100240px;}
.y2_c00457{bottom:682.260000px;}
.y1_c00457{bottom:706.920000px;}
.y27_c00457{bottom:739.500000px;}
.y24_c00457{bottom:751.019700px;}
.y26_c00457{bottom:757.680000px;}
.y23_c00457{bottom:776.939850px;}
.y21_c00457{bottom:784.140000px;}
.y25_c00457{bottom:794.580000px;}
.y22_c00457{bottom:802.860000px;}
.h3_c00457{height:33.312143px;}
.h4_c00457{height:43.873597px;}
.h2_c00457{height:49.733732px;}
.h6_c00457{height:57.711310px;}
.h5_c00457{height:82.576647px;}
.h0_c00457{height:892.499700px;}
.h1_c00457{height:892.500000px;}
.w0_c00457{width:1262.999700px;}
.w1_c00457{width:1263.000000px;}
.x0_c00457{left:0.000000px;}
.xa_c00457{left:27.165750px;}
.x11_c00457{left:35.265750px;}
.x15_c00457{left:38.506050px;}
.x6_c00457{left:43.726200px;}
.x9_c00457{left:52.725600px;}
.x8_c00457{left:59.385900px;}
.x7_c00457{left:66.045750px;}
.x3_c00457{left:92.866039px;}
.x4_c00457{left:185.386500px;}
.x1_c00457{left:228.408000px;}
.x2_c00457{left:287.448000px;}
.x5_c00457{left:416.508000px;}
.xe_c00457{left:479.685302px;}
.xf_c00457{left:492.285298px;}
.xd_c00457{left:499.845134px;}
.xb_c00457{left:501.285372px;}
.xc_c00457{left:529.157494px;}
.x13_c00457{left:567.528000px;}
.x14_c00457{left:651.048000px;}
.x12_c00457{left:837.168000px;}
.x10_c00457{left:878.568000px;}
@media print{
.v0_c00457{vertical-align:0.000000pt;}
.v1_c00457{vertical-align:18.563200pt;}
.ls1_c00457{letter-spacing:0.000000pt;}
.ls0_c00457{letter-spacing:1.047992pt;}
.ws8_c00457{word-spacing:-28.028627pt;}
.ws9_c00457{word-spacing:-19.588695pt;}
.ws5_c00457{word-spacing:-12.354985pt;}
.ws4_c00457{word-spacing:-11.306994pt;}
.ws7_c00457{word-spacing:-7.803393pt;}
.wsa_c00457{word-spacing:0.000000pt;}
.ws6_c00457{word-spacing:74.189580pt;}
.ws3_c00457{word-spacing:239.963695pt;}
.ws1_c00457{word-spacing:1003.581123pt;}
.ws0_c00457{word-spacing:1682.108951pt;}
.ws2_c00457{word-spacing:3672.556365pt;}
._a_c00457{margin-left:-1.047992pt;}
._0_c00457{width:1.713071pt;}
._1_c00457{width:3.180896pt;}
._e_c00457{width:109.417151pt;}
._17_c00457{width:120.001801pt;}
._b_c00457{width:137.862482pt;}
._11_c00457{width:138.763603pt;}
._14_c00457{width:144.334191pt;}
._d_c00457{width:162.133784pt;}
._f_c00457{width:184.178624pt;}
._15_c00457{width:196.130597pt;}
._12_c00457{width:219.812677pt;}
._9_c00457{width:261.537672pt;}
._4_c00457{width:262.816810pt;}
._6_c00457{width:278.777440pt;}
._c_c00457{width:279.902396pt;}
._8_c00457{width:295.377172pt;}
._7_c00457{width:304.542166pt;}
._10_c00457{width:326.820171pt;}
._16_c00457{width:338.127165pt;}
._3_c00457{width:346.547018pt;}
._5_c00457{width:358.273176pt;}
._13_c00457{width:362.454225pt;}
._18_c00457{width:388.324209pt;}
._2_c00457{width:1037.300572pt;}
.fs2_c00457{font-size:28.069760pt;}
.fs1_c00457{font-size:40.672640pt;}
.fs0_c00457{font-size:60.722667pt;}
.fs4_c00457{font-size:70.462933pt;}
.fs3_c00457{font-size:100.822400pt;}
.y0_c00457{bottom:0.000000pt;}
.y18_c00457{bottom:19.572667pt;}
.y1f_c00457{bottom:19.572800pt;}
.y17_c00457{bottom:42.932533pt;}
.y1e_c00457{bottom:42.932667pt;}
.y16_c00457{bottom:66.292400pt;}
.y1d_c00457{bottom:66.293067pt;}
.y15_c00457{bottom:89.652267pt;}
.y1c_c00457{bottom:89.652933pt;}
.y14_c00457{bottom:113.012133pt;}
.y1b_c00457{bottom:113.012800pt;}
.y13_c00457{bottom:136.372000pt;}
.y19_c00457{bottom:136.372667pt;}
.y20_c00457{bottom:138.612000pt;}
.y1a_c00457{bottom:146.772667pt;}
.y5_c00457{bottom:167.732000pt;}
.y12_c00457{bottom:186.612000pt;}
.y7_c00457{bottom:200.852000pt;}
.y8_c00457{bottom:238.932000pt;}
.y6_c00457{bottom:263.572000pt;}
.y9_c00457{bottom:277.012000pt;}
.ya_c00457{bottom:314.932000pt;}
.yb_c00457{bottom:353.012000pt;}
.yc_c00457{bottom:391.092000pt;}
.yd_c00457{bottom:429.172000pt;}
.ye_c00457{bottom:467.092000pt;}
.yf_c00457{bottom:505.172000pt;}
.y10_c00457{bottom:543.253333pt;}
.y11_c00457{bottom:581.173333pt;}
.y4_c00457{bottom:586.453333pt;}
.y3_c00457{bottom:596.533547pt;}
.y2_c00457{bottom:606.453333pt;}
.y1_c00457{bottom:628.373333pt;}
.y27_c00457{bottom:657.333333pt;}
.y24_c00457{bottom:667.573067pt;}
.y26_c00457{bottom:673.493333pt;}
.y23_c00457{bottom:690.613200pt;}
.y21_c00457{bottom:697.013333pt;}
.y25_c00457{bottom:706.293333pt;}
.y22_c00457{bottom:713.653333pt;}
.h3_c00457{height:29.610794pt;}
.h4_c00457{height:38.998753pt;}
.h2_c00457{height:44.207762pt;}
.h6_c00457{height:51.298942pt;}
.h5_c00457{height:73.401464pt;}
.h0_c00457{height:793.333067pt;}
.h1_c00457{height:793.333333pt;}
.w0_c00457{width:1122.666400pt;}
.w1_c00457{width:1122.666667pt;}
.x0_c00457{left:0.000000pt;}
.xa_c00457{left:24.147333pt;}
.x11_c00457{left:31.347333pt;}
.x15_c00457{left:34.227600pt;}
.x6_c00457{left:38.867733pt;}
.x9_c00457{left:46.867200pt;}
.x8_c00457{left:52.787467pt;}
.x7_c00457{left:58.707333pt;}
.x3_c00457{left:82.547590pt;}
.x4_c00457{left:164.788000pt;}
.x1_c00457{left:203.029333pt;}
.x2_c00457{left:255.509333pt;}
.x5_c00457{left:370.229333pt;}
.xe_c00457{left:426.386935pt;}
.xf_c00457{left:437.586932pt;}
.xd_c00457{left:444.306786pt;}
.xb_c00457{left:445.586998pt;}
.xc_c00457{left:470.362217pt;}
.x13_c00457{left:504.469333pt;}
.x14_c00457{left:578.709333pt;}
.x12_c00457{left:744.149333pt;}
.x10_c00457{left:780.949333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d8b09ae574821d88655a69ba.woff2')format("woff");}.ff1_c00458{font-family:ff1_c00458;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00458{transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);}
.m1_c00458{transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);}
.m4_c00458{transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);}
.m3_c00458{transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);}
.m0_c00458{transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);}
.v0_c00458{vertical-align:0.000000px;}
.v1_c00458{vertical-align:20.883600px;}
.ls1_c00458{letter-spacing:0.000000px;}
.ls0_c00458{letter-spacing:1.178991px;}
.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;}
}
.ws8_c00458{word-spacing:-31.532206px;}
.ws9_c00458{word-spacing:-22.037282px;}
.ws5_c00458{word-spacing:-13.899359px;}
.ws4_c00458{word-spacing:-12.720368px;}
.ws7_c00458{word-spacing:-8.778817px;}
.wsa_c00458{word-spacing:0.000000px;}
.ws6_c00458{word-spacing:83.463278px;}
.ws3_c00458{word-spacing:269.959157px;}
.ws1_c00458{word-spacing:1129.028763px;}
.ws0_c00458{word-spacing:1892.372570px;}
.ws2_c00458{word-spacing:4131.625911px;}
._a_c00458{margin-left:-1.178991px;}
._0_c00458{width:1.927205px;}
._1_c00458{width:3.578508px;}
._e_c00458{width:123.094294px;}
._17_c00458{width:135.002026px;}
._b_c00458{width:155.095292px;}
._11_c00458{width:156.109053px;}
._14_c00458{width:162.375964px;}
._d_c00458{width:182.400507px;}
._f_c00458{width:207.200952px;}
._15_c00458{width:220.646921px;}
._12_c00458{width:247.289262px;}
._9_c00458{width:294.229881px;}
._4_c00458{width:295.668911px;}
._6_c00458{width:313.624620px;}
._c_c00458{width:314.890196px;}
._8_c00458{width:332.299319px;}
._7_c00458{width:342.609937px;}
._10_c00458{width:367.672693px;}
._16_c00458{width:380.393061px;}
._3_c00458{width:389.865395px;}
._5_c00458{width:403.057323px;}
._13_c00458{width:407.761003px;}
._18_c00458{width:451.510343px;}
._2_c00458{width:1166.963143px;}
.fc1_c00458{color:transparent;}
.fc0_c00458{color:rgb(0,0,0);}
.fs2_c00458{font-size:31.578480px;}
.fs1_c00458{font-size:45.756720px;}
.fs0_c00458{font-size:68.313000px;}
.fs4_c00458{font-size:79.270800px;}
.fs3_c00458{font-size:113.425200px;}
.y0_c00458{bottom:0.000000px;}
.y18_c00458{bottom:22.019250px;}
.y1e_c00458{bottom:22.019400px;}
.y17_c00458{bottom:48.299100px;}
.y1d_c00458{bottom:48.299250px;}
.y16_c00458{bottom:74.578950px;}
.y1c_c00458{bottom:74.579700px;}
.y15_c00458{bottom:100.858800px;}
.y1b_c00458{bottom:100.859550px;}
.y14_c00458{bottom:127.138650px;}
.y1a_c00458{bottom:127.139400px;}
.y13_c00458{bottom:153.418500px;}
.y19_c00458{bottom:153.419250px;}
.y1f_c00458{bottom:155.938500px;}
.y5_c00458{bottom:188.698500px;}
.y12_c00458{bottom:209.938500px;}
.y7_c00458{bottom:225.958500px;}
.y8_c00458{bottom:268.798500px;}
.y6_c00458{bottom:296.518500px;}
.y9_c00458{bottom:311.638500px;}
.ya_c00458{bottom:354.298500px;}
.yb_c00458{bottom:397.138500px;}
.yc_c00458{bottom:439.978500px;}
.yd_c00458{bottom:482.818500px;}
.ye_c00458{bottom:525.478500px;}
.yf_c00458{bottom:568.318500px;}
.y10_c00458{bottom:611.160000px;}
.y11_c00458{bottom:653.820000px;}
.y4_c00458{bottom:659.760000px;}
.y3_c00458{bottom:671.100240px;}
.y2_c00458{bottom:682.260000px;}
.y1_c00458{bottom:706.920000px;}
.y26_c00458{bottom:739.500000px;}
.y23_c00458{bottom:751.019700px;}
.y25_c00458{bottom:757.680000px;}
.y22_c00458{bottom:776.939850px;}
.y20_c00458{bottom:784.140000px;}
.y24_c00458{bottom:794.580000px;}
.y21_c00458{bottom:802.860000px;}
.h3_c00458{height:33.312143px;}
.h4_c00458{height:43.873597px;}
.h2_c00458{height:49.733732px;}
.h6_c00458{height:57.711310px;}
.h5_c00458{height:82.576647px;}
.h0_c00458{height:892.499700px;}
.h1_c00458{height:892.500000px;}
.w0_c00458{width:1262.999700px;}
.w1_c00458{width:1263.000000px;}
.x0_c00458{left:0.000000px;}
.xa_c00458{left:27.165750px;}
.xf_c00458{left:35.265750px;}
.x13_c00458{left:38.506050px;}
.x6_c00458{left:43.726200px;}
.x9_c00458{left:52.725600px;}
.x8_c00458{left:59.385900px;}
.x7_c00458{left:66.045750px;}
.x3_c00458{left:92.866039px;}
.x4_c00458{left:185.386500px;}
.x1_c00458{left:228.408000px;}
.x2_c00458{left:287.448000px;}
.x5_c00458{left:416.508000px;}
.xc_c00458{left:479.686231px;}
.xd_c00458{left:492.286228px;}
.xb_c00458{left:500.206279px;}
.x11_c00458{left:567.528000px;}
.x12_c00458{left:651.048000px;}
.x10_c00458{left:837.168000px;}
.xe_c00458{left:878.568000px;}
@media print{
.v0_c00458{vertical-align:0.000000pt;}
.v1_c00458{vertical-align:18.563200pt;}
.ls1_c00458{letter-spacing:0.000000pt;}
.ls0_c00458{letter-spacing:1.047992pt;}
.ws8_c00458{word-spacing:-28.028627pt;}
.ws9_c00458{word-spacing:-19.588695pt;}
.ws5_c00458{word-spacing:-12.354985pt;}
.ws4_c00458{word-spacing:-11.306994pt;}
.ws7_c00458{word-spacing:-7.803393pt;}
.wsa_c00458{word-spacing:0.000000pt;}
.ws6_c00458{word-spacing:74.189580pt;}
.ws3_c00458{word-spacing:239.963695pt;}
.ws1_c00458{word-spacing:1003.581123pt;}
.ws0_c00458{word-spacing:1682.108951pt;}
.ws2_c00458{word-spacing:3672.556365pt;}
._a_c00458{margin-left:-1.047992pt;}
._0_c00458{width:1.713071pt;}
._1_c00458{width:3.180896pt;}
._e_c00458{width:109.417151pt;}
._17_c00458{width:120.001801pt;}
._b_c00458{width:137.862482pt;}
._11_c00458{width:138.763603pt;}
._14_c00458{width:144.334191pt;}
._d_c00458{width:162.133784pt;}
._f_c00458{width:184.178624pt;}
._15_c00458{width:196.130597pt;}
._12_c00458{width:219.812677pt;}
._9_c00458{width:261.537672pt;}
._4_c00458{width:262.816810pt;}
._6_c00458{width:278.777440pt;}
._c_c00458{width:279.902396pt;}
._8_c00458{width:295.377172pt;}
._7_c00458{width:304.542166pt;}
._10_c00458{width:326.820171pt;}
._16_c00458{width:338.127165pt;}
._3_c00458{width:346.547018pt;}
._5_c00458{width:358.273176pt;}
._13_c00458{width:362.454225pt;}
._18_c00458{width:401.342527pt;}
._2_c00458{width:1037.300572pt;}
.fs2_c00458{font-size:28.069760pt;}
.fs1_c00458{font-size:40.672640pt;}
.fs0_c00458{font-size:60.722667pt;}
.fs4_c00458{font-size:70.462933pt;}
.fs3_c00458{font-size:100.822400pt;}
.y0_c00458{bottom:0.000000pt;}
.y18_c00458{bottom:19.572667pt;}
.y1e_c00458{bottom:19.572800pt;}
.y17_c00458{bottom:42.932533pt;}
.y1d_c00458{bottom:42.932667pt;}
.y16_c00458{bottom:66.292400pt;}
.y1c_c00458{bottom:66.293067pt;}
.y15_c00458{bottom:89.652267pt;}
.y1b_c00458{bottom:89.652933pt;}
.y14_c00458{bottom:113.012133pt;}
.y1a_c00458{bottom:113.012800pt;}
.y13_c00458{bottom:136.372000pt;}
.y19_c00458{bottom:136.372667pt;}
.y1f_c00458{bottom:138.612000pt;}
.y5_c00458{bottom:167.732000pt;}
.y12_c00458{bottom:186.612000pt;}
.y7_c00458{bottom:200.852000pt;}
.y8_c00458{bottom:238.932000pt;}
.y6_c00458{bottom:263.572000pt;}
.y9_c00458{bottom:277.012000pt;}
.ya_c00458{bottom:314.932000pt;}
.yb_c00458{bottom:353.012000pt;}
.yc_c00458{bottom:391.092000pt;}
.yd_c00458{bottom:429.172000pt;}
.ye_c00458{bottom:467.092000pt;}
.yf_c00458{bottom:505.172000pt;}
.y10_c00458{bottom:543.253333pt;}
.y11_c00458{bottom:581.173333pt;}
.y4_c00458{bottom:586.453333pt;}
.y3_c00458{bottom:596.533547pt;}
.y2_c00458{bottom:606.453333pt;}
.y1_c00458{bottom:628.373333pt;}
.y26_c00458{bottom:657.333333pt;}
.y23_c00458{bottom:667.573067pt;}
.y25_c00458{bottom:673.493333pt;}
.y22_c00458{bottom:690.613200pt;}
.y20_c00458{bottom:697.013333pt;}
.y24_c00458{bottom:706.293333pt;}
.y21_c00458{bottom:713.653333pt;}
.h3_c00458{height:29.610794pt;}
.h4_c00458{height:38.998753pt;}
.h2_c00458{height:44.207762pt;}
.h6_c00458{height:51.298942pt;}
.h5_c00458{height:73.401464pt;}
.h0_c00458{height:793.333067pt;}
.h1_c00458{height:793.333333pt;}
.w0_c00458{width:1122.666400pt;}
.w1_c00458{width:1122.666667pt;}
.x0_c00458{left:0.000000pt;}
.xa_c00458{left:24.147333pt;}
.xf_c00458{left:31.347333pt;}
.x13_c00458{left:34.227600pt;}
.x6_c00458{left:38.867733pt;}
.x9_c00458{left:46.867200pt;}
.x8_c00458{left:52.787467pt;}
.x7_c00458{left:58.707333pt;}
.x3_c00458{left:82.547590pt;}
.x4_c00458{left:164.788000pt;}
.x1_c00458{left:203.029333pt;}
.x2_c00458{left:255.509333pt;}
.x5_c00458{left:370.229333pt;}
.xc_c00458{left:426.387761pt;}
.xd_c00458{left:437.587758pt;}
.xb_c00458{left:444.627804pt;}
.x11_c00458{left:504.469333pt;}
.x12_c00458{left:578.709333pt;}
.x10_c00458{left:744.149333pt;}
.xe_c00458{left:780.949333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_98773bc863c3b769c81c9cae.woff2')format("woff");}.ff1_c00459{font-family:ff1_c00459;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00459{transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);}
.m1_c00459{transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);}
.m4_c00459{transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);}
.m3_c00459{transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);}
.m0_c00459{transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);}
.v0_c00459{vertical-align:0.000000px;}
.v1_c00459{vertical-align:20.883600px;}
.ls1_c00459{letter-spacing:0.000000px;}
.ls0_c00459{letter-spacing:1.178991px;}
.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;}
}
.ws8_c00459{word-spacing:-31.532206px;}
.ws9_c00459{word-spacing:-22.037282px;}
.ws5_c00459{word-spacing:-13.899359px;}
.ws4_c00459{word-spacing:-12.720368px;}
.ws7_c00459{word-spacing:-8.778817px;}
.wsa_c00459{word-spacing:0.000000px;}
.ws6_c00459{word-spacing:83.463278px;}
.ws3_c00459{word-spacing:269.959157px;}
.ws1_c00459{word-spacing:1129.028763px;}
.ws0_c00459{word-spacing:1892.372570px;}
.ws2_c00459{word-spacing:4131.625911px;}
._a_c00459{margin-left:-1.178991px;}
._0_c00459{width:1.927205px;}
._1_c00459{width:3.578508px;}
._e_c00459{width:123.094294px;}
._17_c00459{width:135.002026px;}
._b_c00459{width:155.095292px;}
._11_c00459{width:156.109053px;}
._14_c00459{width:162.375964px;}
._d_c00459{width:182.400507px;}
._f_c00459{width:207.200952px;}
._15_c00459{width:220.646921px;}
._12_c00459{width:247.289262px;}
._9_c00459{width:294.229881px;}
._4_c00459{width:295.668911px;}
._6_c00459{width:313.624620px;}
._c_c00459{width:314.890196px;}
._8_c00459{width:332.299319px;}
._7_c00459{width:342.609937px;}
._10_c00459{width:367.672693px;}
._16_c00459{width:380.393061px;}
._3_c00459{width:389.865395px;}
._5_c00459{width:403.057323px;}
._13_c00459{width:407.761003px;}
._18_c00459{width:436.864735px;}
._2_c00459{width:1166.963143px;}
.fc1_c00459{color:transparent;}
.fc0_c00459{color:rgb(0,0,0);}
.fs2_c00459{font-size:31.578480px;}
.fs1_c00459{font-size:45.756720px;}
.fs0_c00459{font-size:68.313000px;}
.fs4_c00459{font-size:79.270800px;}
.fs3_c00459{font-size:113.425200px;}
.y0_c00459{bottom:0.000000px;}
.y18_c00459{bottom:22.019250px;}
.y1e_c00459{bottom:22.019400px;}
.y17_c00459{bottom:48.299100px;}
.y1d_c00459{bottom:48.299250px;}
.y16_c00459{bottom:74.578950px;}
.y1c_c00459{bottom:74.579700px;}
.y15_c00459{bottom:100.858800px;}
.y1b_c00459{bottom:100.859550px;}
.y14_c00459{bottom:127.138650px;}
.y1a_c00459{bottom:127.139400px;}
.y13_c00459{bottom:153.418500px;}
.y19_c00459{bottom:153.419250px;}
.y1f_c00459{bottom:155.938500px;}
.y5_c00459{bottom:188.698500px;}
.y12_c00459{bottom:209.938500px;}
.y7_c00459{bottom:225.958500px;}
.y8_c00459{bottom:268.798500px;}
.y6_c00459{bottom:296.518500px;}
.y9_c00459{bottom:311.638500px;}
.ya_c00459{bottom:354.298500px;}
.yb_c00459{bottom:397.138500px;}
.yc_c00459{bottom:439.978500px;}
.yd_c00459{bottom:482.818500px;}
.ye_c00459{bottom:525.478500px;}
.yf_c00459{bottom:568.318500px;}
.y10_c00459{bottom:611.160000px;}
.y11_c00459{bottom:653.820000px;}
.y4_c00459{bottom:659.760000px;}
.y3_c00459{bottom:671.100240px;}
.y2_c00459{bottom:682.260000px;}
.y1_c00459{bottom:706.920000px;}
.y26_c00459{bottom:739.500000px;}
.y23_c00459{bottom:751.019700px;}
.y25_c00459{bottom:757.680000px;}
.y22_c00459{bottom:776.939850px;}
.y20_c00459{bottom:784.140000px;}
.y24_c00459{bottom:794.580000px;}
.y21_c00459{bottom:802.860000px;}
.h3_c00459{height:33.312143px;}
.h4_c00459{height:43.873597px;}
.h2_c00459{height:49.733732px;}
.h6_c00459{height:57.711310px;}
.h5_c00459{height:82.576647px;}
.h0_c00459{height:892.499700px;}
.h1_c00459{height:892.500000px;}
.w0_c00459{width:1262.999700px;}
.w1_c00459{width:1263.000000px;}
.x0_c00459{left:0.000000px;}
.xa_c00459{left:27.165750px;}
.x10_c00459{left:35.265750px;}
.x14_c00459{left:38.506050px;}
.x6_c00459{left:43.726200px;}
.x9_c00459{left:52.725600px;}
.x8_c00459{left:59.385900px;}
.x7_c00459{left:66.045750px;}
.x3_c00459{left:92.866039px;}
.x4_c00459{left:185.386500px;}
.x1_c00459{left:228.408000px;}
.x2_c00459{left:287.448000px;}
.x5_c00459{left:416.508000px;}
.xd_c00459{left:476.265119px;}
.xb_c00459{left:482.205384px;}
.xe_c00459{left:492.285225px;}
.xc_c00459{left:499.845031px;}
.x12_c00459{left:567.528000px;}
.x13_c00459{left:651.048000px;}
.x11_c00459{left:837.168000px;}
.xf_c00459{left:878.568000px;}
@media print{
.v0_c00459{vertical-align:0.000000pt;}
.v1_c00459{vertical-align:18.563200pt;}
.ls1_c00459{letter-spacing:0.000000pt;}
.ls0_c00459{letter-spacing:1.047992pt;}
.ws8_c00459{word-spacing:-28.028627pt;}
.ws9_c00459{word-spacing:-19.588695pt;}
.ws5_c00459{word-spacing:-12.354985pt;}
.ws4_c00459{word-spacing:-11.306994pt;}
.ws7_c00459{word-spacing:-7.803393pt;}
.wsa_c00459{word-spacing:0.000000pt;}
.ws6_c00459{word-spacing:74.189580pt;}
.ws3_c00459{word-spacing:239.963695pt;}
.ws1_c00459{word-spacing:1003.581123pt;}
.ws0_c00459{word-spacing:1682.108951pt;}
.ws2_c00459{word-spacing:3672.556365pt;}
._a_c00459{margin-left:-1.047992pt;}
._0_c00459{width:1.713071pt;}
._1_c00459{width:3.180896pt;}
._e_c00459{width:109.417151pt;}
._17_c00459{width:120.001801pt;}
._b_c00459{width:137.862482pt;}
._11_c00459{width:138.763603pt;}
._14_c00459{width:144.334191pt;}
._d_c00459{width:162.133784pt;}
._f_c00459{width:184.178624pt;}
._15_c00459{width:196.130597pt;}
._12_c00459{width:219.812677pt;}
._9_c00459{width:261.537672pt;}
._4_c00459{width:262.816810pt;}
._6_c00459{width:278.777440pt;}
._c_c00459{width:279.902396pt;}
._8_c00459{width:295.377172pt;}
._7_c00459{width:304.542166pt;}
._10_c00459{width:326.820171pt;}
._16_c00459{width:338.127165pt;}
._3_c00459{width:346.547018pt;}
._5_c00459{width:358.273176pt;}
._13_c00459{width:362.454225pt;}
._18_c00459{width:388.324209pt;}
._2_c00459{width:1037.300572pt;}
.fs2_c00459{font-size:28.069760pt;}
.fs1_c00459{font-size:40.672640pt;}
.fs0_c00459{font-size:60.722667pt;}
.fs4_c00459{font-size:70.462933pt;}
.fs3_c00459{font-size:100.822400pt;}
.y0_c00459{bottom:0.000000pt;}
.y18_c00459{bottom:19.572667pt;}
.y1e_c00459{bottom:19.572800pt;}
.y17_c00459{bottom:42.932533pt;}
.y1d_c00459{bottom:42.932667pt;}
.y16_c00459{bottom:66.292400pt;}
.y1c_c00459{bottom:66.293067pt;}
.y15_c00459{bottom:89.652267pt;}
.y1b_c00459{bottom:89.652933pt;}
.y14_c00459{bottom:113.012133pt;}
.y1a_c00459{bottom:113.012800pt;}
.y13_c00459{bottom:136.372000pt;}
.y19_c00459{bottom:136.372667pt;}
.y1f_c00459{bottom:138.612000pt;}
.y5_c00459{bottom:167.732000pt;}
.y12_c00459{bottom:186.612000pt;}
.y7_c00459{bottom:200.852000pt;}
.y8_c00459{bottom:238.932000pt;}
.y6_c00459{bottom:263.572000pt;}
.y9_c00459{bottom:277.012000pt;}
.ya_c00459{bottom:314.932000pt;}
.yb_c00459{bottom:353.012000pt;}
.yc_c00459{bottom:391.092000pt;}
.yd_c00459{bottom:429.172000pt;}
.ye_c00459{bottom:467.092000pt;}
.yf_c00459{bottom:505.172000pt;}
.y10_c00459{bottom:543.253333pt;}
.y11_c00459{bottom:581.173333pt;}
.y4_c00459{bottom:586.453333pt;}
.y3_c00459{bottom:596.533547pt;}
.y2_c00459{bottom:606.453333pt;}
.y1_c00459{bottom:628.373333pt;}
.y26_c00459{bottom:657.333333pt;}
.y23_c00459{bottom:667.573067pt;}
.y25_c00459{bottom:673.493333pt;}
.y22_c00459{bottom:690.613200pt;}
.y20_c00459{bottom:697.013333pt;}
.y24_c00459{bottom:706.293333pt;}
.y21_c00459{bottom:713.653333pt;}
.h3_c00459{height:29.610794pt;}
.h4_c00459{height:38.998753pt;}
.h2_c00459{height:44.207762pt;}
.h6_c00459{height:51.298942pt;}
.h5_c00459{height:73.401464pt;}
.h0_c00459{height:793.333067pt;}
.h1_c00459{height:793.333333pt;}
.w0_c00459{width:1122.666400pt;}
.w1_c00459{width:1122.666667pt;}
.x0_c00459{left:0.000000pt;}
.xa_c00459{left:24.147333pt;}
.x10_c00459{left:31.347333pt;}
.x14_c00459{left:34.227600pt;}
.x6_c00459{left:38.867733pt;}
.x9_c00459{left:46.867200pt;}
.x8_c00459{left:52.787467pt;}
.x7_c00459{left:58.707333pt;}
.x3_c00459{left:82.547590pt;}
.x4_c00459{left:164.788000pt;}
.x1_c00459{left:203.029333pt;}
.x2_c00459{left:255.509333pt;}
.x5_c00459{left:370.229333pt;}
.xd_c00459{left:423.346772pt;}
.xb_c00459{left:428.627008pt;}
.xe_c00459{left:437.586867pt;}
.xc_c00459{left:444.306694pt;}
.x12_c00459{left:504.469333pt;}
.x13_c00459{left:578.709333pt;}
.x11_c00459{left:744.149333pt;}
.xf_c00459{left:780.949333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0806dbc4dcc3018bf4be3174.woff2')format("woff");}.ff1_c00460{font-family:ff1_c00460;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00460{transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);}
.m1_c00460{transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);}
.m4_c00460{transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);}
.m3_c00460{transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);}
.m0_c00460{transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);}
.v0_c00460{vertical-align:0.000000px;}
.v1_c00460{vertical-align:20.883600px;}
.ls1_c00460{letter-spacing:0.000000px;}
.ls0_c00460{letter-spacing:1.178991px;}
.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;}
}
.ws8_c00460{word-spacing:-31.532206px;}
.ws9_c00460{word-spacing:-22.037282px;}
.ws5_c00460{word-spacing:-13.899359px;}
.ws4_c00460{word-spacing:-12.720368px;}
.ws7_c00460{word-spacing:-8.778817px;}
.wsa_c00460{word-spacing:0.000000px;}
.ws6_c00460{word-spacing:83.463278px;}
.ws3_c00460{word-spacing:269.959157px;}
.ws1_c00460{word-spacing:1129.028763px;}
.ws0_c00460{word-spacing:1892.372570px;}
.ws2_c00460{word-spacing:4131.625911px;}
._a_c00460{margin-left:-1.178991px;}
._0_c00460{width:1.927205px;}
._1_c00460{width:3.578508px;}
._e_c00460{width:123.094294px;}
._17_c00460{width:135.002026px;}
._b_c00460{width:155.095292px;}
._11_c00460{width:156.109053px;}
._14_c00460{width:162.375964px;}
._d_c00460{width:182.400507px;}
._f_c00460{width:207.200952px;}
._15_c00460{width:220.646921px;}
._12_c00460{width:247.289262px;}
._9_c00460{width:294.229881px;}
._4_c00460{width:295.668911px;}
._6_c00460{width:313.624620px;}
._c_c00460{width:314.890196px;}
._8_c00460{width:332.299319px;}
._7_c00460{width:342.609937px;}
._10_c00460{width:367.672693px;}
._16_c00460{width:380.393061px;}
._3_c00460{width:389.865395px;}
._5_c00460{width:403.057323px;}
._13_c00460{width:407.761003px;}
._18_c00460{width:436.864735px;}
._2_c00460{width:1166.963143px;}
.fc1_c00460{color:transparent;}
.fc0_c00460{color:rgb(0,0,0);}
.fs2_c00460{font-size:31.578480px;}
.fs1_c00460{font-size:45.756720px;}
.fs0_c00460{font-size:68.313000px;}
.fs4_c00460{font-size:79.270800px;}
.fs3_c00460{font-size:113.425200px;}
.y0_c00460{bottom:0.000000px;}
.y18_c00460{bottom:22.019250px;}
.y1f_c00460{bottom:22.019400px;}
.y17_c00460{bottom:48.299100px;}
.y1e_c00460{bottom:48.299250px;}
.y16_c00460{bottom:74.578950px;}
.y1d_c00460{bottom:74.579700px;}
.y15_c00460{bottom:100.858800px;}
.y1c_c00460{bottom:100.859550px;}
.y14_c00460{bottom:127.138650px;}
.y1b_c00460{bottom:127.139400px;}
.y13_c00460{bottom:153.418500px;}
.y19_c00460{bottom:153.419250px;}
.y20_c00460{bottom:155.938500px;}
.y1a_c00460{bottom:165.119250px;}
.y5_c00460{bottom:188.698500px;}
.y12_c00460{bottom:209.938500px;}
.y7_c00460{bottom:225.958500px;}
.y8_c00460{bottom:268.798500px;}
.y6_c00460{bottom:296.518500px;}
.y9_c00460{bottom:311.638500px;}
.ya_c00460{bottom:354.298500px;}
.yb_c00460{bottom:397.138500px;}
.yc_c00460{bottom:439.978500px;}
.yd_c00460{bottom:482.818500px;}
.ye_c00460{bottom:525.478500px;}
.yf_c00460{bottom:568.318500px;}
.y10_c00460{bottom:611.160000px;}
.y11_c00460{bottom:653.820000px;}
.y4_c00460{bottom:659.760000px;}
.y3_c00460{bottom:671.100240px;}
.y2_c00460{bottom:682.260000px;}
.y1_c00460{bottom:706.920000px;}
.y27_c00460{bottom:739.500000px;}
.y24_c00460{bottom:751.019700px;}
.y26_c00460{bottom:757.680000px;}
.y23_c00460{bottom:776.939850px;}
.y21_c00460{bottom:784.140000px;}
.y25_c00460{bottom:794.580000px;}
.y22_c00460{bottom:802.860000px;}
.h3_c00460{height:33.312143px;}
.h4_c00460{height:43.873597px;}
.h2_c00460{height:49.733732px;}
.h6_c00460{height:57.711310px;}
.h5_c00460{height:82.576647px;}
.h0_c00460{height:892.499700px;}
.h1_c00460{height:892.500000px;}
.w0_c00460{width:1262.999700px;}
.w1_c00460{width:1263.000000px;}
.x0_c00460{left:0.000000px;}
.xa_c00460{left:27.165750px;}
.x11_c00460{left:35.265750px;}
.x15_c00460{left:38.506050px;}
.x6_c00460{left:43.726200px;}
.x9_c00460{left:52.725600px;}
.x8_c00460{left:59.385900px;}
.x7_c00460{left:66.045750px;}
.x3_c00460{left:92.866039px;}
.x4_c00460{left:185.386500px;}
.x1_c00460{left:228.408000px;}
.x2_c00460{left:287.448000px;}
.x5_c00460{left:416.508000px;}
.xe_c00460{left:479.685317px;}
.xb_c00460{left:490.485436px;}
.xf_c00460{left:492.285313px;}
.xd_c00460{left:499.845149px;}
.xc_c00460{left:518.358157px;}
.x13_c00460{left:567.528000px;}
.x14_c00460{left:651.048000px;}
.x12_c00460{left:837.168000px;}
.x10_c00460{left:878.568000px;}
@media print{
.v0_c00460{vertical-align:0.000000pt;}
.v1_c00460{vertical-align:18.563200pt;}
.ls1_c00460{letter-spacing:0.000000pt;}
.ls0_c00460{letter-spacing:1.047992pt;}
.ws8_c00460{word-spacing:-28.028627pt;}
.ws9_c00460{word-spacing:-19.588695pt;}
.ws5_c00460{word-spacing:-12.354985pt;}
.ws4_c00460{word-spacing:-11.306994pt;}
.ws7_c00460{word-spacing:-7.803393pt;}
.wsa_c00460{word-spacing:0.000000pt;}
.ws6_c00460{word-spacing:74.189580pt;}
.ws3_c00460{word-spacing:239.963695pt;}
.ws1_c00460{word-spacing:1003.581123pt;}
.ws0_c00460{word-spacing:1682.108951pt;}
.ws2_c00460{word-spacing:3672.556365pt;}
._a_c00460{margin-left:-1.047992pt;}
._0_c00460{width:1.713071pt;}
._1_c00460{width:3.180896pt;}
._e_c00460{width:109.417151pt;}
._17_c00460{width:120.001801pt;}
._b_c00460{width:137.862482pt;}
._11_c00460{width:138.763603pt;}
._14_c00460{width:144.334191pt;}
._d_c00460{width:162.133784pt;}
._f_c00460{width:184.178624pt;}
._15_c00460{width:196.130597pt;}
._12_c00460{width:219.812677pt;}
._9_c00460{width:261.537672pt;}
._4_c00460{width:262.816810pt;}
._6_c00460{width:278.777440pt;}
._c_c00460{width:279.902396pt;}
._8_c00460{width:295.377172pt;}
._7_c00460{width:304.542166pt;}
._10_c00460{width:326.820171pt;}
._16_c00460{width:338.127165pt;}
._3_c00460{width:346.547018pt;}
._5_c00460{width:358.273176pt;}
._13_c00460{width:362.454225pt;}
._18_c00460{width:388.324209pt;}
._2_c00460{width:1037.300572pt;}
.fs2_c00460{font-size:28.069760pt;}
.fs1_c00460{font-size:40.672640pt;}
.fs0_c00460{font-size:60.722667pt;}
.fs4_c00460{font-size:70.462933pt;}
.fs3_c00460{font-size:100.822400pt;}
.y0_c00460{bottom:0.000000pt;}
.y18_c00460{bottom:19.572667pt;}
.y1f_c00460{bottom:19.572800pt;}
.y17_c00460{bottom:42.932533pt;}
.y1e_c00460{bottom:42.932667pt;}
.y16_c00460{bottom:66.292400pt;}
.y1d_c00460{bottom:66.293067pt;}
.y15_c00460{bottom:89.652267pt;}
.y1c_c00460{bottom:89.652933pt;}
.y14_c00460{bottom:113.012133pt;}
.y1b_c00460{bottom:113.012800pt;}
.y13_c00460{bottom:136.372000pt;}
.y19_c00460{bottom:136.372667pt;}
.y20_c00460{bottom:138.612000pt;}
.y1a_c00460{bottom:146.772667pt;}
.y5_c00460{bottom:167.732000pt;}
.y12_c00460{bottom:186.612000pt;}
.y7_c00460{bottom:200.852000pt;}
.y8_c00460{bottom:238.932000pt;}
.y6_c00460{bottom:263.572000pt;}
.y9_c00460{bottom:277.012000pt;}
.ya_c00460{bottom:314.932000pt;}
.yb_c00460{bottom:353.012000pt;}
.yc_c00460{bottom:391.092000pt;}
.yd_c00460{bottom:429.172000pt;}
.ye_c00460{bottom:467.092000pt;}
.yf_c00460{bottom:505.172000pt;}
.y10_c00460{bottom:543.253333pt;}
.y11_c00460{bottom:581.173333pt;}
.y4_c00460{bottom:586.453333pt;}
.y3_c00460{bottom:596.533547pt;}
.y2_c00460{bottom:606.453333pt;}
.y1_c00460{bottom:628.373333pt;}
.y27_c00460{bottom:657.333333pt;}
.y24_c00460{bottom:667.573067pt;}
.y26_c00460{bottom:673.493333pt;}
.y23_c00460{bottom:690.613200pt;}
.y21_c00460{bottom:697.013333pt;}
.y25_c00460{bottom:706.293333pt;}
.y22_c00460{bottom:713.653333pt;}
.h3_c00460{height:29.610794pt;}
.h4_c00460{height:38.998753pt;}
.h2_c00460{height:44.207762pt;}
.h6_c00460{height:51.298942pt;}
.h5_c00460{height:73.401464pt;}
.h0_c00460{height:793.333067pt;}
.h1_c00460{height:793.333333pt;}
.w0_c00460{width:1122.666400pt;}
.w1_c00460{width:1122.666667pt;}
.x0_c00460{left:0.000000pt;}
.xa_c00460{left:24.147333pt;}
.x11_c00460{left:31.347333pt;}
.x15_c00460{left:34.227600pt;}
.x6_c00460{left:38.867733pt;}
.x9_c00460{left:46.867200pt;}
.x8_c00460{left:52.787467pt;}
.x7_c00460{left:58.707333pt;}
.x3_c00460{left:82.547590pt;}
.x4_c00460{left:164.788000pt;}
.x1_c00460{left:203.029333pt;}
.x2_c00460{left:255.509333pt;}
.x5_c00460{left:370.229333pt;}
.xe_c00460{left:426.386948pt;}
.xb_c00460{left:435.987054pt;}
.xf_c00460{left:437.586945pt;}
.xd_c00460{left:444.306799pt;}
.xc_c00460{left:460.762807pt;}
.x13_c00460{left:504.469333pt;}
.x14_c00460{left:578.709333pt;}
.x12_c00460{left:744.149333pt;}
.x10_c00460{left:780.949333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4a39dc08a588bf6ea1253699.woff2')format("woff");}.ff1_c00461{font-family:ff1_c00461;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00461{transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);}
.m1_c00461{transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);}
.m4_c00461{transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);}
.m3_c00461{transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);}
.m0_c00461{transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);}
.v0_c00461{vertical-align:0.000000px;}
.v1_c00461{vertical-align:20.880600px;}
.ls1_c00461{letter-spacing:0.000000px;}
.ls0_c00461{letter-spacing:1.174340px;}
.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;}
}
.ws8_c00461{word-spacing:-31.532206px;}
.ws9_c00461{word-spacing:-22.037282px;}
.ws5_c00461{word-spacing:-13.894692px;}
.ws4_c00461{word-spacing:-12.720351px;}
.ws7_c00461{word-spacing:-8.778801px;}
.wsa_c00461{word-spacing:0.000000px;}
.ws6_c00461{word-spacing:83.472601px;}
.ws3_c00461{word-spacing:269.959261px;}
.ws1_c00461{word-spacing:1129.022707px;}
.ws0_c00461{word-spacing:1892.379401px;}
.ws2_c00461{word-spacing:4131.625069px;}
._a_c00461{margin-left:-1.174340px;}
._0_c00461{width:1.927205px;}
._1_c00461{width:3.578508px;}
._e_c00461{width:123.098455px;}
._17_c00461{width:135.002093px;}
._b_c00461{width:155.081320px;}
._11_c00461{width:156.097143px;}
._14_c00461{width:162.375998px;}
._d_c00461{width:182.391467px;}
._f_c00461{width:207.201036px;}
._15_c00461{width:220.640991px;}
._12_c00461{width:247.295292px;}
._9_c00461{width:294.223388px;}
._4_c00461{width:295.661959px;}
._6_c00461{width:313.608876px;}
._c_c00461{width:314.898471px;}
._8_c00461{width:332.288085px;}
._7_c00461{width:342.606009px;}
._10_c00461{width:367.678773px;}
._16_c00461{width:380.393128px;}
._3_c00461{width:389.856116px;}
._5_c00461{width:403.050224px;}
._13_c00461{width:407.761036px;}
._18_c00461{width:436.860973px;}
._2_c00461{width:1166.924601px;}
.fc1_c00461{color:transparent;}
.fc0_c00461{color:rgb(0,0,0);}
.fs2_c00461{font-size:31.578420px;}
.fs1_c00461{font-size:45.756660px;}
.fs0_c00461{font-size:68.313000px;}
.fs4_c00461{font-size:79.270800px;}
.fs3_c00461{font-size:113.425200px;}
.y0_c00461{bottom:0.000000px;}
.y18_c00461{bottom:22.022100px;}
.y1e_c00461{bottom:22.022250px;}
.y17_c00461{bottom:48.301950px;}
.y1d_c00461{bottom:48.302100px;}
.y16_c00461{bottom:74.581800px;}
.y1c_c00461{bottom:74.583150px;}
.y15_c00461{bottom:100.861650px;}
.y1b_c00461{bottom:100.863000px;}
.y14_c00461{bottom:127.141500px;}
.y1a_c00461{bottom:127.142850px;}
.y13_c00461{bottom:153.421350px;}
.y19_c00461{bottom:153.421500px;}
.y1f_c00461{bottom:155.941350px;}
.y5_c00461{bottom:188.699850px;}
.y12_c00461{bottom:209.939850px;}
.y7_c00461{bottom:225.959850px;}
.y8_c00461{bottom:268.799850px;}
.y6_c00461{bottom:296.519850px;}
.y9_c00461{bottom:311.639850px;}
.ya_c00461{bottom:354.299850px;}
.yb_c00461{bottom:397.139850px;}
.yc_c00461{bottom:439.979850px;}
.yd_c00461{bottom:482.819850px;}
.ye_c00461{bottom:525.479850px;}
.yf_c00461{bottom:568.319850px;}
.y10_c00461{bottom:611.159850px;}
.y11_c00461{bottom:653.819850px;}
.y4_c00461{bottom:659.759850px;}
.y3_c00461{bottom:671.100090px;}
.y2_c00461{bottom:682.259850px;}
.y1_c00461{bottom:706.919850px;}
.y26_c00461{bottom:739.499850px;}
.y23_c00461{bottom:751.019550px;}
.y25_c00461{bottom:757.679850px;}
.y22_c00461{bottom:776.939700px;}
.y20_c00461{bottom:784.139850px;}
.y24_c00461{bottom:794.579850px;}
.y21_c00461{bottom:802.859850px;}
.h3_c00461{height:33.312100px;}
.h4_c00461{height:43.870553px;}
.h2_c00461{height:49.733732px;}
.h6_c00461{height:57.711310px;}
.h5_c00461{height:82.576647px;}
.h0_c00461{height:892.499550px;}
.h1_c00461{height:892.500000px;}
.w0_c00461{width:1262.999700px;}
.w1_c00461{width:1263.000000px;}
.x0_c00461{left:0.000000px;}
.xa_c00461{left:27.165750px;}
.x10_c00461{left:35.265750px;}
.x14_c00461{left:38.506050px;}
.x6_c00461{left:43.726200px;}
.x9_c00461{left:52.725600px;}
.x8_c00461{left:59.385900px;}
.x7_c00461{left:66.045750px;}
.x3_c00461{left:92.866040px;}
.x4_c00461{left:185.386500px;}
.x1_c00461{left:228.406500px;}
.x2_c00461{left:287.446500px;}
.x5_c00461{left:416.506500px;}
.xd_c00461{left:479.683863px;}
.xb_c00461{left:490.483935px;}
.xe_c00461{left:492.283274px;}
.xc_c00461{left:499.843695px;}
.x12_c00461{left:567.526500px;}
.x13_c00461{left:651.046500px;}
.x11_c00461{left:837.165000px;}
.xf_c00461{left:878.566500px;}
@media print{
.v0_c00461{vertical-align:0.000000pt;}
.v1_c00461{vertical-align:18.560533pt;}
.ls1_c00461{letter-spacing:0.000000pt;}
.ls0_c00461{letter-spacing:1.043858pt;}
.ws8_c00461{word-spacing:-28.028627pt;}
.ws9_c00461{word-spacing:-19.588695pt;}
.ws5_c00461{word-spacing:-12.350837pt;}
.ws4_c00461{word-spacing:-11.306979pt;}
.ws7_c00461{word-spacing:-7.803378pt;}
.wsa_c00461{word-spacing:0.000000pt;}
.ws6_c00461{word-spacing:74.197868pt;}
.ws3_c00461{word-spacing:239.963787pt;}
.ws1_c00461{word-spacing:1003.575740pt;}
.ws0_c00461{word-spacing:1682.115023pt;}
.ws2_c00461{word-spacing:3672.555617pt;}
._a_c00461{margin-left:-1.043858pt;}
._0_c00461{width:1.713071pt;}
._1_c00461{width:3.180896pt;}
._e_c00461{width:109.420849pt;}
._17_c00461{width:120.001860pt;}
._b_c00461{width:137.850063pt;}
._11_c00461{width:138.753016pt;}
._14_c00461{width:144.334220pt;}
._d_c00461{width:162.125749pt;}
._f_c00461{width:184.178698pt;}
._15_c00461{width:196.125326pt;}
._12_c00461{width:219.818038pt;}
._9_c00461{width:261.531900pt;}
._4_c00461{width:262.810630pt;}
._6_c00461{width:278.763446pt;}
._c_c00461{width:279.909752pt;}
._8_c00461{width:295.367186pt;}
._7_c00461{width:304.538675pt;}
._10_c00461{width:326.825576pt;}
._16_c00461{width:338.127225pt;}
._3_c00461{width:346.538770pt;}
._5_c00461{width:358.266866pt;}
._13_c00461{width:362.454254pt;}
._18_c00461{width:388.320865pt;}
._2_c00461{width:1037.266312pt;}
.fs2_c00461{font-size:28.069707pt;}
.fs1_c00461{font-size:40.672587pt;}
.fs0_c00461{font-size:60.722667pt;}
.fs4_c00461{font-size:70.462933pt;}
.fs3_c00461{font-size:100.822400pt;}
.y0_c00461{bottom:0.000000pt;}
.y18_c00461{bottom:19.575200pt;}
.y1e_c00461{bottom:19.575333pt;}
.y17_c00461{bottom:42.935067pt;}
.y1d_c00461{bottom:42.935200pt;}
.y16_c00461{bottom:66.294933pt;}
.y1c_c00461{bottom:66.296133pt;}
.y15_c00461{bottom:89.654800pt;}
.y1b_c00461{bottom:89.656000pt;}
.y14_c00461{bottom:113.014667pt;}
.y1a_c00461{bottom:113.015867pt;}
.y13_c00461{bottom:136.374533pt;}
.y19_c00461{bottom:136.374667pt;}
.y1f_c00461{bottom:138.614533pt;}
.y5_c00461{bottom:167.733200pt;}
.y12_c00461{bottom:186.613200pt;}
.y7_c00461{bottom:200.853200pt;}
.y8_c00461{bottom:238.933200pt;}
.y6_c00461{bottom:263.573200pt;}
.y9_c00461{bottom:277.013200pt;}
.ya_c00461{bottom:314.933200pt;}
.yb_c00461{bottom:353.013200pt;}
.yc_c00461{bottom:391.093200pt;}
.yd_c00461{bottom:429.173200pt;}
.ye_c00461{bottom:467.093200pt;}
.yf_c00461{bottom:505.173200pt;}
.y10_c00461{bottom:543.253200pt;}
.y11_c00461{bottom:581.173200pt;}
.y4_c00461{bottom:586.453200pt;}
.y3_c00461{bottom:596.533413pt;}
.y2_c00461{bottom:606.453200pt;}
.y1_c00461{bottom:628.373200pt;}
.y26_c00461{bottom:657.333200pt;}
.y23_c00461{bottom:667.572933pt;}
.y25_c00461{bottom:673.493200pt;}
.y22_c00461{bottom:690.613067pt;}
.y20_c00461{bottom:697.013200pt;}
.y24_c00461{bottom:706.293200pt;}
.y21_c00461{bottom:713.653200pt;}
.h3_c00461{height:29.610755pt;}
.h4_c00461{height:38.996047pt;}
.h2_c00461{height:44.207762pt;}
.h6_c00461{height:51.298942pt;}
.h5_c00461{height:73.401464pt;}
.h0_c00461{height:793.332933pt;}
.h1_c00461{height:793.333333pt;}
.w0_c00461{width:1122.666400pt;}
.w1_c00461{width:1122.666667pt;}
.x0_c00461{left:0.000000pt;}
.xa_c00461{left:24.147333pt;}
.x10_c00461{left:31.347333pt;}
.x14_c00461{left:34.227600pt;}
.x6_c00461{left:38.867733pt;}
.x9_c00461{left:46.867200pt;}
.x8_c00461{left:52.787467pt;}
.x7_c00461{left:58.707333pt;}
.x3_c00461{left:82.547591pt;}
.x4_c00461{left:164.788000pt;}
.x1_c00461{left:203.028000pt;}
.x2_c00461{left:255.508000pt;}
.x5_c00461{left:370.228000pt;}
.xd_c00461{left:426.385656pt;}
.xb_c00461{left:435.985720pt;}
.xe_c00461{left:437.585132pt;}
.xc_c00461{left:444.305507pt;}
.x12_c00461{left:504.468000pt;}
.x13_c00461{left:578.708000pt;}
.x11_c00461{left:744.146667pt;}
.xf_c00461{left:780.948000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_62bff4569dddcdc6110aa938.woff2')format("woff");}.ff1_c00462{font-family:ff1_c00462;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00462{transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);}
.m1_c00462{transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);}
.m4_c00462{transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);}
.m3_c00462{transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);}
.m0_c00462{transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);}
.v0_c00462{vertical-align:0.000000px;}
.v1_c00462{vertical-align:20.880600px;}
.ls1_c00462{letter-spacing:0.000000px;}
.ls0_c00462{letter-spacing:1.174340px;}
.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;}
}
.ws8_c00462{word-spacing:-31.532206px;}
.ws9_c00462{word-spacing:-22.037282px;}
.ws5_c00462{word-spacing:-13.894692px;}
.ws4_c00462{word-spacing:-12.720351px;}
.ws7_c00462{word-spacing:-8.778801px;}
.wsa_c00462{word-spacing:0.000000px;}
.ws6_c00462{word-spacing:83.472601px;}
.ws3_c00462{word-spacing:269.959261px;}
.ws1_c00462{word-spacing:1129.022707px;}
.ws0_c00462{word-spacing:1892.379401px;}
.ws2_c00462{word-spacing:4131.625069px;}
._a_c00462{margin-left:-1.174340px;}
._0_c00462{width:1.927205px;}
._1_c00462{width:3.578508px;}
._e_c00462{width:123.098455px;}
._17_c00462{width:135.002093px;}
._b_c00462{width:155.081320px;}
._11_c00462{width:156.097143px;}
._14_c00462{width:162.375998px;}
._d_c00462{width:182.391467px;}
._f_c00462{width:207.201036px;}
._15_c00462{width:220.640991px;}
._12_c00462{width:247.295292px;}
._9_c00462{width:294.223388px;}
._4_c00462{width:295.661959px;}
._6_c00462{width:313.608876px;}
._c_c00462{width:314.898471px;}
._8_c00462{width:332.288085px;}
._7_c00462{width:342.606009px;}
._10_c00462{width:367.678773px;}
._16_c00462{width:380.393128px;}
._3_c00462{width:389.856116px;}
._5_c00462{width:403.050224px;}
._13_c00462{width:407.761036px;}
._18_c00462{width:436.860973px;}
._2_c00462{width:1166.924601px;}
.fc1_c00462{color:transparent;}
.fc0_c00462{color:rgb(0,0,0);}
.fs2_c00462{font-size:31.578420px;}
.fs1_c00462{font-size:45.756660px;}
.fs0_c00462{font-size:68.313000px;}
.fs4_c00462{font-size:79.270800px;}
.fs3_c00462{font-size:113.425200px;}
.y0_c00462{bottom:0.000000px;}
.y18_c00462{bottom:22.022100px;}
.y1e_c00462{bottom:22.022250px;}
.y17_c00462{bottom:48.301950px;}
.y1d_c00462{bottom:48.302100px;}
.y16_c00462{bottom:74.581800px;}
.y1c_c00462{bottom:74.583150px;}
.y15_c00462{bottom:100.861650px;}
.y1b_c00462{bottom:100.863000px;}
.y14_c00462{bottom:127.141500px;}
.y1a_c00462{bottom:127.142850px;}
.y13_c00462{bottom:153.421350px;}
.y19_c00462{bottom:153.421500px;}
.y1f_c00462{bottom:155.941350px;}
.y5_c00462{bottom:188.699850px;}
.y12_c00462{bottom:209.939850px;}
.y7_c00462{bottom:225.959850px;}
.y8_c00462{bottom:268.799850px;}
.y6_c00462{bottom:296.519850px;}
.y9_c00462{bottom:311.639850px;}
.ya_c00462{bottom:354.299850px;}
.yb_c00462{bottom:397.139850px;}
.yc_c00462{bottom:439.979850px;}
.yd_c00462{bottom:482.819850px;}
.ye_c00462{bottom:525.479850px;}
.yf_c00462{bottom:568.319850px;}
.y10_c00462{bottom:611.159850px;}
.y11_c00462{bottom:653.819850px;}
.y4_c00462{bottom:659.759850px;}
.y3_c00462{bottom:671.100090px;}
.y2_c00462{bottom:682.259850px;}
.y1_c00462{bottom:706.919850px;}
.y26_c00462{bottom:739.499850px;}
.y23_c00462{bottom:751.019550px;}
.y25_c00462{bottom:757.679850px;}
.y22_c00462{bottom:776.939700px;}
.y20_c00462{bottom:784.139850px;}
.y24_c00462{bottom:794.579850px;}
.y21_c00462{bottom:802.859850px;}
.h3_c00462{height:33.312100px;}
.h4_c00462{height:43.870553px;}
.h2_c00462{height:49.733732px;}
.h6_c00462{height:57.711310px;}
.h5_c00462{height:82.576647px;}
.h0_c00462{height:892.499550px;}
.h1_c00462{height:892.500000px;}
.w0_c00462{width:1262.999700px;}
.w1_c00462{width:1263.000000px;}
.x0_c00462{left:0.000000px;}
.xa_c00462{left:27.165750px;}
.xf_c00462{left:35.265750px;}
.x13_c00462{left:38.506050px;}
.x6_c00462{left:43.726200px;}
.x9_c00462{left:52.725600px;}
.x8_c00462{left:59.385900px;}
.x7_c00462{left:66.045750px;}
.x3_c00462{left:92.866040px;}
.x4_c00462{left:185.386500px;}
.x1_c00462{left:228.406500px;}
.x2_c00462{left:287.446500px;}
.x5_c00462{left:416.506500px;}
.xd_c00462{left:479.686084px;}
.xb_c00462{left:491.566030px;}
.xc_c00462{left:499.845916px;}
.x11_c00462{left:567.526500px;}
.x12_c00462{left:651.046500px;}
.x10_c00462{left:837.165000px;}
.xe_c00462{left:878.566500px;}
@media print{
.v0_c00462{vertical-align:0.000000pt;}
.v1_c00462{vertical-align:18.560533pt;}
.ls1_c00462{letter-spacing:0.000000pt;}
.ls0_c00462{letter-spacing:1.043858pt;}
.ws8_c00462{word-spacing:-28.028627pt;}
.ws9_c00462{word-spacing:-19.588695pt;}
.ws5_c00462{word-spacing:-12.350837pt;}
.ws4_c00462{word-spacing:-11.306979pt;}
.ws7_c00462{word-spacing:-7.803378pt;}
.wsa_c00462{word-spacing:0.000000pt;}
.ws6_c00462{word-spacing:74.197868pt;}
.ws3_c00462{word-spacing:239.963787pt;}
.ws1_c00462{word-spacing:1003.575740pt;}
.ws0_c00462{word-spacing:1682.115023pt;}
.ws2_c00462{word-spacing:3672.555617pt;}
._a_c00462{margin-left:-1.043858pt;}
._0_c00462{width:1.713071pt;}
._1_c00462{width:3.180896pt;}
._e_c00462{width:109.420849pt;}
._17_c00462{width:120.001860pt;}
._b_c00462{width:137.850063pt;}
._11_c00462{width:138.753016pt;}
._14_c00462{width:144.334220pt;}
._d_c00462{width:162.125749pt;}
._f_c00462{width:184.178698pt;}
._15_c00462{width:196.125326pt;}
._12_c00462{width:219.818038pt;}
._9_c00462{width:261.531900pt;}
._4_c00462{width:262.810630pt;}
._6_c00462{width:278.763446pt;}
._c_c00462{width:279.909752pt;}
._8_c00462{width:295.367186pt;}
._7_c00462{width:304.538675pt;}
._10_c00462{width:326.825576pt;}
._16_c00462{width:338.127225pt;}
._3_c00462{width:346.538770pt;}
._5_c00462{width:358.266866pt;}
._13_c00462{width:362.454254pt;}
._18_c00462{width:388.320865pt;}
._2_c00462{width:1037.266312pt;}
.fs2_c00462{font-size:28.069707pt;}
.fs1_c00462{font-size:40.672587pt;}
.fs0_c00462{font-size:60.722667pt;}
.fs4_c00462{font-size:70.462933pt;}
.fs3_c00462{font-size:100.822400pt;}
.y0_c00462{bottom:0.000000pt;}
.y18_c00462{bottom:19.575200pt;}
.y1e_c00462{bottom:19.575333pt;}
.y17_c00462{bottom:42.935067pt;}
.y1d_c00462{bottom:42.935200pt;}
.y16_c00462{bottom:66.294933pt;}
.y1c_c00462{bottom:66.296133pt;}
.y15_c00462{bottom:89.654800pt;}
.y1b_c00462{bottom:89.656000pt;}
.y14_c00462{bottom:113.014667pt;}
.y1a_c00462{bottom:113.015867pt;}
.y13_c00462{bottom:136.374533pt;}
.y19_c00462{bottom:136.374667pt;}
.y1f_c00462{bottom:138.614533pt;}
.y5_c00462{bottom:167.733200pt;}
.y12_c00462{bottom:186.613200pt;}
.y7_c00462{bottom:200.853200pt;}
.y8_c00462{bottom:238.933200pt;}
.y6_c00462{bottom:263.573200pt;}
.y9_c00462{bottom:277.013200pt;}
.ya_c00462{bottom:314.933200pt;}
.yb_c00462{bottom:353.013200pt;}
.yc_c00462{bottom:391.093200pt;}
.yd_c00462{bottom:429.173200pt;}
.ye_c00462{bottom:467.093200pt;}
.yf_c00462{bottom:505.173200pt;}
.y10_c00462{bottom:543.253200pt;}
.y11_c00462{bottom:581.173200pt;}
.y4_c00462{bottom:586.453200pt;}
.y3_c00462{bottom:596.533413pt;}
.y2_c00462{bottom:606.453200pt;}
.y1_c00462{bottom:628.373200pt;}
.y26_c00462{bottom:657.333200pt;}
.y23_c00462{bottom:667.572933pt;}
.y25_c00462{bottom:673.493200pt;}
.y22_c00462{bottom:690.613067pt;}
.y20_c00462{bottom:697.013200pt;}
.y24_c00462{bottom:706.293200pt;}
.y21_c00462{bottom:713.653200pt;}
.h3_c00462{height:29.610755pt;}
.h4_c00462{height:38.996047pt;}
.h2_c00462{height:44.207762pt;}
.h6_c00462{height:51.298942pt;}
.h5_c00462{height:73.401464pt;}
.h0_c00462{height:793.332933pt;}
.h1_c00462{height:793.333333pt;}
.w0_c00462{width:1122.666400pt;}
.w1_c00462{width:1122.666667pt;}
.x0_c00462{left:0.000000pt;}
.xa_c00462{left:24.147333pt;}
.xf_c00462{left:31.347333pt;}
.x13_c00462{left:34.227600pt;}
.x6_c00462{left:38.867733pt;}
.x9_c00462{left:46.867200pt;}
.x8_c00462{left:52.787467pt;}
.x7_c00462{left:58.707333pt;}
.x3_c00462{left:82.547591pt;}
.x4_c00462{left:164.788000pt;}
.x1_c00462{left:203.028000pt;}
.x2_c00462{left:255.508000pt;}
.x5_c00462{left:370.228000pt;}
.xd_c00462{left:426.387631pt;}
.xb_c00462{left:436.947582pt;}
.xc_c00462{left:444.307481pt;}
.x11_c00462{left:504.468000pt;}
.x12_c00462{left:578.708000pt;}
.x10_c00462{left:744.146667pt;}
.xe_c00462{left:780.948000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_38706f6e67ae743b4e1862ef.woff2')format("woff");}.ff1_c00463{font-family:ff1_c00463;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00463{transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);}
.m1_c00463{transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);}
.m4_c00463{transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);}
.m3_c00463{transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);}
.m0_c00463{transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);}
.v0_c00463{vertical-align:0.000000px;}
.v1_c00463{vertical-align:20.880600px;}
.ls1_c00463{letter-spacing:0.000000px;}
.ls0_c00463{letter-spacing:1.174340px;}
.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;}
}
.ws8_c00463{word-spacing:-31.532206px;}
.ws9_c00463{word-spacing:-22.037282px;}
.ws5_c00463{word-spacing:-13.894692px;}
.ws4_c00463{word-spacing:-12.720351px;}
.ws7_c00463{word-spacing:-8.778801px;}
.wsa_c00463{word-spacing:0.000000px;}
.ws6_c00463{word-spacing:83.472601px;}
.ws3_c00463{word-spacing:269.959261px;}
.ws1_c00463{word-spacing:1129.022707px;}
.ws0_c00463{word-spacing:1892.379401px;}
.ws2_c00463{word-spacing:4131.625069px;}
._a_c00463{margin-left:-1.174340px;}
._0_c00463{width:1.927205px;}
._1_c00463{width:3.578508px;}
._e_c00463{width:123.098455px;}
._17_c00463{width:135.002093px;}
._b_c00463{width:155.081320px;}
._11_c00463{width:156.097143px;}
._14_c00463{width:162.375998px;}
._d_c00463{width:182.391467px;}
._f_c00463{width:207.201036px;}
._15_c00463{width:220.640991px;}
._12_c00463{width:247.295292px;}
._9_c00463{width:294.223388px;}
._4_c00463{width:295.661959px;}
._6_c00463{width:313.608876px;}
._c_c00463{width:314.898471px;}
._8_c00463{width:332.288085px;}
._7_c00463{width:342.606009px;}
._10_c00463{width:367.678773px;}
._16_c00463{width:380.393128px;}
._3_c00463{width:389.856116px;}
._5_c00463{width:403.050224px;}
._13_c00463{width:407.761036px;}
._18_c00463{width:436.860973px;}
._2_c00463{width:1166.924601px;}
.fc1_c00463{color:transparent;}
.fc0_c00463{color:rgb(0,0,0);}
.fs2_c00463{font-size:31.578420px;}
.fs1_c00463{font-size:45.756660px;}
.fs0_c00463{font-size:68.313000px;}
.fs4_c00463{font-size:79.270800px;}
.fs3_c00463{font-size:113.425200px;}
.y0_c00463{bottom:0.000000px;}
.y18_c00463{bottom:22.022100px;}
.y1e_c00463{bottom:22.022250px;}
.y17_c00463{bottom:48.301950px;}
.y1d_c00463{bottom:48.302100px;}
.y16_c00463{bottom:74.581800px;}
.y1c_c00463{bottom:74.583150px;}
.y15_c00463{bottom:100.861650px;}
.y1b_c00463{bottom:100.863000px;}
.y14_c00463{bottom:127.141500px;}
.y1a_c00463{bottom:127.142850px;}
.y13_c00463{bottom:153.421350px;}
.y19_c00463{bottom:153.421500px;}
.y1f_c00463{bottom:155.941350px;}
.y5_c00463{bottom:188.699850px;}
.y12_c00463{bottom:209.939850px;}
.y7_c00463{bottom:225.959850px;}
.y8_c00463{bottom:268.799850px;}
.y6_c00463{bottom:296.519850px;}
.y9_c00463{bottom:311.639850px;}
.ya_c00463{bottom:354.299850px;}
.yb_c00463{bottom:397.139850px;}
.yc_c00463{bottom:439.979850px;}
.yd_c00463{bottom:482.819850px;}
.ye_c00463{bottom:525.479850px;}
.yf_c00463{bottom:568.319850px;}
.y10_c00463{bottom:611.159850px;}
.y11_c00463{bottom:653.819850px;}
.y4_c00463{bottom:659.759850px;}
.y3_c00463{bottom:671.100090px;}
.y2_c00463{bottom:682.259850px;}
.y1_c00463{bottom:706.919850px;}
.y26_c00463{bottom:739.499850px;}
.y23_c00463{bottom:751.019550px;}
.y25_c00463{bottom:757.679850px;}
.y22_c00463{bottom:776.939700px;}
.y20_c00463{bottom:784.139850px;}
.y24_c00463{bottom:794.579850px;}
.y21_c00463{bottom:802.859850px;}
.h3_c00463{height:33.312100px;}
.h4_c00463{height:43.870553px;}
.h2_c00463{height:49.733732px;}
.h6_c00463{height:57.711310px;}
.h5_c00463{height:82.576647px;}
.h0_c00463{height:892.499550px;}
.h1_c00463{height:892.500000px;}
.w0_c00463{width:1262.999700px;}
.w1_c00463{width:1263.000000px;}
.x0_c00463{left:0.000000px;}
.xa_c00463{left:27.165750px;}
.xf_c00463{left:35.265750px;}
.x13_c00463{left:38.506050px;}
.x6_c00463{left:43.726200px;}
.x9_c00463{left:52.725600px;}
.x8_c00463{left:59.385900px;}
.x7_c00463{left:66.045750px;}
.x3_c00463{left:92.866040px;}
.x4_c00463{left:185.386500px;}
.x1_c00463{left:228.406500px;}
.x2_c00463{left:287.446500px;}
.x5_c00463{left:416.506500px;}
.xc_c00463{left:479.325883px;}
.xd_c00463{left:492.286228px;}
.xb_c00463{left:500.206279px;}
.x11_c00463{left:567.526500px;}
.x12_c00463{left:640.606500px;}
.x10_c00463{left:837.165000px;}
.xe_c00463{left:878.566500px;}
@media print{
.v0_c00463{vertical-align:0.000000pt;}
.v1_c00463{vertical-align:18.560533pt;}
.ls1_c00463{letter-spacing:0.000000pt;}
.ls0_c00463{letter-spacing:1.043858pt;}
.ws8_c00463{word-spacing:-28.028627pt;}
.ws9_c00463{word-spacing:-19.588695pt;}
.ws5_c00463{word-spacing:-12.350837pt;}
.ws4_c00463{word-spacing:-11.306979pt;}
.ws7_c00463{word-spacing:-7.803378pt;}
.wsa_c00463{word-spacing:0.000000pt;}
.ws6_c00463{word-spacing:74.197868pt;}
.ws3_c00463{word-spacing:239.963787pt;}
.ws1_c00463{word-spacing:1003.575740pt;}
.ws0_c00463{word-spacing:1682.115023pt;}
.ws2_c00463{word-spacing:3672.555617pt;}
._a_c00463{margin-left:-1.043858pt;}
._0_c00463{width:1.713071pt;}
._1_c00463{width:3.180896pt;}
._e_c00463{width:109.420849pt;}
._17_c00463{width:120.001860pt;}
._b_c00463{width:137.850063pt;}
._11_c00463{width:138.753016pt;}
._14_c00463{width:144.334220pt;}
._d_c00463{width:162.125749pt;}
._f_c00463{width:184.178698pt;}
._15_c00463{width:196.125326pt;}
._12_c00463{width:219.818038pt;}
._9_c00463{width:261.531900pt;}
._4_c00463{width:262.810630pt;}
._6_c00463{width:278.763446pt;}
._c_c00463{width:279.909752pt;}
._8_c00463{width:295.367186pt;}
._7_c00463{width:304.538675pt;}
._10_c00463{width:326.825576pt;}
._16_c00463{width:338.127225pt;}
._3_c00463{width:346.538770pt;}
._5_c00463{width:358.266866pt;}
._13_c00463{width:362.454254pt;}
._18_c00463{width:388.320865pt;}
._2_c00463{width:1037.266312pt;}
.fs2_c00463{font-size:28.069707pt;}
.fs1_c00463{font-size:40.672587pt;}
.fs0_c00463{font-size:60.722667pt;}
.fs4_c00463{font-size:70.462933pt;}
.fs3_c00463{font-size:100.822400pt;}
.y0_c00463{bottom:0.000000pt;}
.y18_c00463{bottom:19.575200pt;}
.y1e_c00463{bottom:19.575333pt;}
.y17_c00463{bottom:42.935067pt;}
.y1d_c00463{bottom:42.935200pt;}
.y16_c00463{bottom:66.294933pt;}
.y1c_c00463{bottom:66.296133pt;}
.y15_c00463{bottom:89.654800pt;}
.y1b_c00463{bottom:89.656000pt;}
.y14_c00463{bottom:113.014667pt;}
.y1a_c00463{bottom:113.015867pt;}
.y13_c00463{bottom:136.374533pt;}
.y19_c00463{bottom:136.374667pt;}
.y1f_c00463{bottom:138.614533pt;}
.y5_c00463{bottom:167.733200pt;}
.y12_c00463{bottom:186.613200pt;}
.y7_c00463{bottom:200.853200pt;}
.y8_c00463{bottom:238.933200pt;}
.y6_c00463{bottom:263.573200pt;}
.y9_c00463{bottom:277.013200pt;}
.ya_c00463{bottom:314.933200pt;}
.yb_c00463{bottom:353.013200pt;}
.yc_c00463{bottom:391.093200pt;}
.yd_c00463{bottom:429.173200pt;}
.ye_c00463{bottom:467.093200pt;}
.yf_c00463{bottom:505.173200pt;}
.y10_c00463{bottom:543.253200pt;}
.y11_c00463{bottom:581.173200pt;}
.y4_c00463{bottom:586.453200pt;}
.y3_c00463{bottom:596.533413pt;}
.y2_c00463{bottom:606.453200pt;}
.y1_c00463{bottom:628.373200pt;}
.y26_c00463{bottom:657.333200pt;}
.y23_c00463{bottom:667.572933pt;}
.y25_c00463{bottom:673.493200pt;}
.y22_c00463{bottom:690.613067pt;}
.y20_c00463{bottom:697.013200pt;}
.y24_c00463{bottom:706.293200pt;}
.y21_c00463{bottom:713.653200pt;}
.h3_c00463{height:29.610755pt;}
.h4_c00463{height:38.996047pt;}
.h2_c00463{height:44.207762pt;}
.h6_c00463{height:51.298942pt;}
.h5_c00463{height:73.401464pt;}
.h0_c00463{height:793.332933pt;}
.h1_c00463{height:793.333333pt;}
.w0_c00463{width:1122.666400pt;}
.w1_c00463{width:1122.666667pt;}
.x0_c00463{left:0.000000pt;}
.xa_c00463{left:24.147333pt;}
.xf_c00463{left:31.347333pt;}
.x13_c00463{left:34.227600pt;}
.x6_c00463{left:38.867733pt;}
.x9_c00463{left:46.867200pt;}
.x8_c00463{left:52.787467pt;}
.x7_c00463{left:58.707333pt;}
.x3_c00463{left:82.547591pt;}
.x4_c00463{left:164.788000pt;}
.x1_c00463{left:203.028000pt;}
.x2_c00463{left:255.508000pt;}
.x5_c00463{left:370.228000pt;}
.xc_c00463{left:426.067452pt;}
.xd_c00463{left:437.587758pt;}
.xb_c00463{left:444.627804pt;}
.x11_c00463{left:504.468000pt;}
.x12_c00463{left:569.428000pt;}
.x10_c00463{left:744.146667pt;}
.xe_c00463{left:780.948000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_561b26bf78536f9de6f787fc.woff2')format("woff");}.ff1_c00464{font-family:ff1_c00464;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00464{transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);}
.m1_c00464{transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);}
.m4_c00464{transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);}
.m3_c00464{transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);}
.m0_c00464{transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);}
.v0_c00464{vertical-align:0.000000px;}
.v1_c00464{vertical-align:20.880600px;}
.ls1_c00464{letter-spacing:0.000000px;}
.ls0_c00464{letter-spacing:1.174340px;}
.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;}
}
.ws8_c00464{word-spacing:-31.532206px;}
.ws9_c00464{word-spacing:-22.037282px;}
.ws5_c00464{word-spacing:-13.894692px;}
.ws4_c00464{word-spacing:-12.720351px;}
.ws7_c00464{word-spacing:-8.778801px;}
.wsa_c00464{word-spacing:0.000000px;}
.ws6_c00464{word-spacing:83.472601px;}
.ws3_c00464{word-spacing:269.959261px;}
.ws1_c00464{word-spacing:1129.022707px;}
.ws0_c00464{word-spacing:1892.379401px;}
.ws2_c00464{word-spacing:4131.625069px;}
._a_c00464{margin-left:-1.174340px;}
._0_c00464{width:1.927205px;}
._1_c00464{width:3.578508px;}
._e_c00464{width:123.098455px;}
._17_c00464{width:135.002093px;}
._b_c00464{width:155.081320px;}
._11_c00464{width:156.097143px;}
._14_c00464{width:162.375998px;}
._d_c00464{width:182.391467px;}
._f_c00464{width:207.201036px;}
._15_c00464{width:220.640991px;}
._12_c00464{width:247.295292px;}
._9_c00464{width:294.223388px;}
._4_c00464{width:295.661959px;}
._6_c00464{width:313.608876px;}
._c_c00464{width:314.898471px;}
._8_c00464{width:332.288085px;}
._7_c00464{width:342.606009px;}
._10_c00464{width:367.678773px;}
._16_c00464{width:380.393128px;}
._3_c00464{width:389.856116px;}
._5_c00464{width:403.050224px;}
._13_c00464{width:407.761036px;}
._18_c00464{width:436.860973px;}
._2_c00464{width:1166.924601px;}
.fc1_c00464{color:transparent;}
.fc0_c00464{color:rgb(0,0,0);}
.fs2_c00464{font-size:31.578420px;}
.fs1_c00464{font-size:45.756660px;}
.fs0_c00464{font-size:68.313000px;}
.fs4_c00464{font-size:79.270800px;}
.fs3_c00464{font-size:113.425200px;}
.y0_c00464{bottom:0.000000px;}
.y18_c00464{bottom:22.022100px;}
.y1f_c00464{bottom:22.022250px;}
.y17_c00464{bottom:48.301950px;}
.y1e_c00464{bottom:48.302100px;}
.y16_c00464{bottom:74.581800px;}
.y1d_c00464{bottom:74.583150px;}
.y15_c00464{bottom:100.861650px;}
.y1c_c00464{bottom:100.863000px;}
.y14_c00464{bottom:127.141500px;}
.y1b_c00464{bottom:127.142850px;}
.y13_c00464{bottom:153.421350px;}
.y19_c00464{bottom:153.421500px;}
.y20_c00464{bottom:155.941350px;}
.y1a_c00464{bottom:165.121500px;}
.y5_c00464{bottom:188.699850px;}
.y12_c00464{bottom:209.939850px;}
.y7_c00464{bottom:225.959850px;}
.y8_c00464{bottom:268.799850px;}
.y6_c00464{bottom:296.519850px;}
.y9_c00464{bottom:311.639850px;}
.ya_c00464{bottom:354.299850px;}
.yb_c00464{bottom:397.139850px;}
.yc_c00464{bottom:439.979850px;}
.yd_c00464{bottom:482.819850px;}
.ye_c00464{bottom:525.479850px;}
.yf_c00464{bottom:568.319850px;}
.y10_c00464{bottom:611.159850px;}
.y11_c00464{bottom:653.819850px;}
.y4_c00464{bottom:659.759850px;}
.y3_c00464{bottom:671.100090px;}
.y2_c00464{bottom:682.259850px;}
.y1_c00464{bottom:706.919850px;}
.y27_c00464{bottom:739.499850px;}
.y24_c00464{bottom:751.019550px;}
.y26_c00464{bottom:757.679850px;}
.y23_c00464{bottom:776.939700px;}
.y21_c00464{bottom:784.139850px;}
.y25_c00464{bottom:794.579850px;}
.y22_c00464{bottom:802.859850px;}
.h3_c00464{height:33.312100px;}
.h4_c00464{height:43.870553px;}
.h2_c00464{height:49.733732px;}
.h6_c00464{height:57.711310px;}
.h5_c00464{height:82.576647px;}
.h0_c00464{height:892.499550px;}
.h1_c00464{height:892.500000px;}
.w0_c00464{width:1262.999700px;}
.w1_c00464{width:1263.000000px;}
.x0_c00464{left:0.000000px;}
.xa_c00464{left:27.165750px;}
.x11_c00464{left:35.265750px;}
.x15_c00464{left:38.506050px;}
.x6_c00464{left:43.726200px;}
.x9_c00464{left:52.725600px;}
.x8_c00464{left:59.385900px;}
.x7_c00464{left:66.045750px;}
.x3_c00464{left:92.866040px;}
.x4_c00464{left:185.386500px;}
.x1_c00464{left:228.406500px;}
.x2_c00464{left:287.446500px;}
.x5_c00464{left:416.506500px;}
.xe_c00464{left:479.684408px;}
.xf_c00464{left:492.284404px;}
.xd_c00464{left:499.844240px;}
.xb_c00464{left:501.283872px;}
.xc_c00464{left:529.150140px;}
.x13_c00464{left:567.526500px;}
.x14_c00464{left:640.606500px;}
.x12_c00464{left:837.165000px;}
.x10_c00464{left:878.566500px;}
@media print{
.v0_c00464{vertical-align:0.000000pt;}
.v1_c00464{vertical-align:18.560533pt;}
.ls1_c00464{letter-spacing:0.000000pt;}
.ls0_c00464{letter-spacing:1.043858pt;}
.ws8_c00464{word-spacing:-28.028627pt;}
.ws9_c00464{word-spacing:-19.588695pt;}
.ws5_c00464{word-spacing:-12.350837pt;}
.ws4_c00464{word-spacing:-11.306979pt;}
.ws7_c00464{word-spacing:-7.803378pt;}
.wsa_c00464{word-spacing:0.000000pt;}
.ws6_c00464{word-spacing:74.197868pt;}
.ws3_c00464{word-spacing:239.963787pt;}
.ws1_c00464{word-spacing:1003.575740pt;}
.ws0_c00464{word-spacing:1682.115023pt;}
.ws2_c00464{word-spacing:3672.555617pt;}
._a_c00464{margin-left:-1.043858pt;}
._0_c00464{width:1.713071pt;}
._1_c00464{width:3.180896pt;}
._e_c00464{width:109.420849pt;}
._17_c00464{width:120.001860pt;}
._b_c00464{width:137.850063pt;}
._11_c00464{width:138.753016pt;}
._14_c00464{width:144.334220pt;}
._d_c00464{width:162.125749pt;}
._f_c00464{width:184.178698pt;}
._15_c00464{width:196.125326pt;}
._12_c00464{width:219.818038pt;}
._9_c00464{width:261.531900pt;}
._4_c00464{width:262.810630pt;}
._6_c00464{width:278.763446pt;}
._c_c00464{width:279.909752pt;}
._8_c00464{width:295.367186pt;}
._7_c00464{width:304.538675pt;}
._10_c00464{width:326.825576pt;}
._16_c00464{width:338.127225pt;}
._3_c00464{width:346.538770pt;}
._5_c00464{width:358.266866pt;}
._13_c00464{width:362.454254pt;}
._18_c00464{width:388.320865pt;}
._2_c00464{width:1037.266312pt;}
.fs2_c00464{font-size:28.069707pt;}
.fs1_c00464{font-size:40.672587pt;}
.fs0_c00464{font-size:60.722667pt;}
.fs4_c00464{font-size:70.462933pt;}
.fs3_c00464{font-size:100.822400pt;}
.y0_c00464{bottom:0.000000pt;}
.y18_c00464{bottom:19.575200pt;}
.y1f_c00464{bottom:19.575333pt;}
.y17_c00464{bottom:42.935067pt;}
.y1e_c00464{bottom:42.935200pt;}
.y16_c00464{bottom:66.294933pt;}
.y1d_c00464{bottom:66.296133pt;}
.y15_c00464{bottom:89.654800pt;}
.y1c_c00464{bottom:89.656000pt;}
.y14_c00464{bottom:113.014667pt;}
.y1b_c00464{bottom:113.015867pt;}
.y13_c00464{bottom:136.374533pt;}
.y19_c00464{bottom:136.374667pt;}
.y20_c00464{bottom:138.614533pt;}
.y1a_c00464{bottom:146.774667pt;}
.y5_c00464{bottom:167.733200pt;}
.y12_c00464{bottom:186.613200pt;}
.y7_c00464{bottom:200.853200pt;}
.y8_c00464{bottom:238.933200pt;}
.y6_c00464{bottom:263.573200pt;}
.y9_c00464{bottom:277.013200pt;}
.ya_c00464{bottom:314.933200pt;}
.yb_c00464{bottom:353.013200pt;}
.yc_c00464{bottom:391.093200pt;}
.yd_c00464{bottom:429.173200pt;}
.ye_c00464{bottom:467.093200pt;}
.yf_c00464{bottom:505.173200pt;}
.y10_c00464{bottom:543.253200pt;}
.y11_c00464{bottom:581.173200pt;}
.y4_c00464{bottom:586.453200pt;}
.y3_c00464{bottom:596.533413pt;}
.y2_c00464{bottom:606.453200pt;}
.y1_c00464{bottom:628.373200pt;}
.y27_c00464{bottom:657.333200pt;}
.y24_c00464{bottom:667.572933pt;}
.y26_c00464{bottom:673.493200pt;}
.y23_c00464{bottom:690.613067pt;}
.y21_c00464{bottom:697.013200pt;}
.y25_c00464{bottom:706.293200pt;}
.y22_c00464{bottom:713.653200pt;}
.h3_c00464{height:29.610755pt;}
.h4_c00464{height:38.996047pt;}
.h2_c00464{height:44.207762pt;}
.h6_c00464{height:51.298942pt;}
.h5_c00464{height:73.401464pt;}
.h0_c00464{height:793.332933pt;}
.h1_c00464{height:793.333333pt;}
.w0_c00464{width:1122.666400pt;}
.w1_c00464{width:1122.666667pt;}
.x0_c00464{left:0.000000pt;}
.xa_c00464{left:24.147333pt;}
.x11_c00464{left:31.347333pt;}
.x15_c00464{left:34.227600pt;}
.x6_c00464{left:38.867733pt;}
.x9_c00464{left:46.867200pt;}
.x8_c00464{left:52.787467pt;}
.x7_c00464{left:58.707333pt;}
.x3_c00464{left:82.547591pt;}
.x4_c00464{left:164.788000pt;}
.x1_c00464{left:203.028000pt;}
.x2_c00464{left:255.508000pt;}
.x5_c00464{left:370.228000pt;}
.xe_c00464{left:426.386140pt;}
.xf_c00464{left:437.586137pt;}
.xd_c00464{left:444.305991pt;}
.xb_c00464{left:445.585664pt;}
.xc_c00464{left:470.355680pt;}
.x13_c00464{left:504.468000pt;}
.x14_c00464{left:569.428000pt;}
.x12_c00464{left:744.146667pt;}
.x10_c00464{left:780.948000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_405b01c9168fe2dc367c52da.woff2')format("woff");}.ff1_c00465{font-family:ff1_c00465;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00465{transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);}
.m1_c00465{transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);}
.m4_c00465{transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);}
.m3_c00465{transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);}
.m0_c00465{transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);}
.v0_c00465{vertical-align:0.000000px;}
.v1_c00465{vertical-align:20.880600px;}
.ls1_c00465{letter-spacing:0.000000px;}
.ls0_c00465{letter-spacing:1.174340px;}
.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;}
}
.ws8_c00465{word-spacing:-31.532206px;}
.ws9_c00465{word-spacing:-22.037282px;}
.ws5_c00465{word-spacing:-13.894692px;}
.ws4_c00465{word-spacing:-12.720351px;}
.ws7_c00465{word-spacing:-8.778801px;}
.wsa_c00465{word-spacing:0.000000px;}
.ws6_c00465{word-spacing:83.472601px;}
.ws3_c00465{word-spacing:269.959261px;}
.ws1_c00465{word-spacing:1129.022707px;}
.ws0_c00465{word-spacing:1892.379401px;}
.ws2_c00465{word-spacing:4131.625069px;}
._a_c00465{margin-left:-1.174340px;}
._0_c00465{width:1.927205px;}
._1_c00465{width:3.578508px;}
._e_c00465{width:123.098455px;}
._17_c00465{width:135.002093px;}
._b_c00465{width:155.081320px;}
._11_c00465{width:156.097143px;}
._14_c00465{width:162.375998px;}
._d_c00465{width:182.391467px;}
._f_c00465{width:207.201036px;}
._15_c00465{width:220.640991px;}
._12_c00465{width:247.295292px;}
._9_c00465{width:294.223388px;}
._4_c00465{width:295.661959px;}
._6_c00465{width:313.608876px;}
._c_c00465{width:314.898471px;}
._8_c00465{width:332.288085px;}
._7_c00465{width:342.606009px;}
._10_c00465{width:367.678773px;}
._16_c00465{width:380.393128px;}
._3_c00465{width:389.856116px;}
._5_c00465{width:403.050224px;}
._13_c00465{width:407.761036px;}
._18_c00465{width:436.860973px;}
._2_c00465{width:1166.924601px;}
.fc1_c00465{color:transparent;}
.fc0_c00465{color:rgb(0,0,0);}
.fs2_c00465{font-size:31.578420px;}
.fs1_c00465{font-size:45.756660px;}
.fs0_c00465{font-size:68.313000px;}
.fs4_c00465{font-size:79.270800px;}
.fs3_c00465{font-size:113.425200px;}
.y0_c00465{bottom:0.000000px;}
.y18_c00465{bottom:22.022100px;}
.y1e_c00465{bottom:22.022250px;}
.y17_c00465{bottom:48.301950px;}
.y1d_c00465{bottom:48.302100px;}
.y16_c00465{bottom:74.581800px;}
.y1c_c00465{bottom:74.583150px;}
.y15_c00465{bottom:100.861650px;}
.y1b_c00465{bottom:100.863000px;}
.y14_c00465{bottom:127.141500px;}
.y1a_c00465{bottom:127.142850px;}
.y13_c00465{bottom:153.421350px;}
.y19_c00465{bottom:153.421500px;}
.y1f_c00465{bottom:155.941350px;}
.y5_c00465{bottom:188.699850px;}
.y12_c00465{bottom:209.939850px;}
.y7_c00465{bottom:225.959850px;}
.y8_c00465{bottom:268.799850px;}
.y6_c00465{bottom:296.519850px;}
.y9_c00465{bottom:311.639850px;}
.ya_c00465{bottom:354.299850px;}
.yb_c00465{bottom:397.139850px;}
.yc_c00465{bottom:439.979850px;}
.yd_c00465{bottom:482.819850px;}
.ye_c00465{bottom:525.479850px;}
.yf_c00465{bottom:568.319850px;}
.y10_c00465{bottom:611.159850px;}
.y11_c00465{bottom:653.819850px;}
.y4_c00465{bottom:659.759850px;}
.y3_c00465{bottom:671.100090px;}
.y2_c00465{bottom:682.259850px;}
.y1_c00465{bottom:706.919850px;}
.y26_c00465{bottom:739.499850px;}
.y23_c00465{bottom:751.019550px;}
.y25_c00465{bottom:757.679850px;}
.y22_c00465{bottom:776.939700px;}
.y20_c00465{bottom:784.139850px;}
.y24_c00465{bottom:794.579850px;}
.y21_c00465{bottom:802.859850px;}
.h3_c00465{height:33.312100px;}
.h4_c00465{height:43.870553px;}
.h2_c00465{height:49.733732px;}
.h6_c00465{height:57.711310px;}
.h5_c00465{height:82.576647px;}
.h0_c00465{height:892.499550px;}
.h1_c00465{height:892.500000px;}
.w0_c00465{width:1262.999700px;}
.w1_c00465{width:1263.000000px;}
.x0_c00465{left:0.000000px;}
.xa_c00465{left:27.165750px;}
.x10_c00465{left:35.265750px;}
.x14_c00465{left:38.506050px;}
.x6_c00465{left:43.726200px;}
.x9_c00465{left:52.725600px;}
.x8_c00465{left:59.385900px;}
.x7_c00465{left:66.045750px;}
.x3_c00465{left:92.866040px;}
.x4_c00465{left:185.386500px;}
.x1_c00465{left:228.406500px;}
.x2_c00465{left:287.446500px;}
.x5_c00465{left:416.506500px;}
.xd_c00465{left:476.263618px;}
.xb_c00465{left:482.203883px;}
.xe_c00465{left:492.283724px;}
.xc_c00465{left:499.844130px;}
.x12_c00465{left:567.526500px;}
.x13_c00465{left:640.606500px;}
.x11_c00465{left:837.165000px;}
.xf_c00465{left:878.566500px;}
@media print{
.v0_c00465{vertical-align:0.000000pt;}
.v1_c00465{vertical-align:18.560533pt;}
.ls1_c00465{letter-spacing:0.000000pt;}
.ls0_c00465{letter-spacing:1.043858pt;}
.ws8_c00465{word-spacing:-28.028627pt;}
.ws9_c00465{word-spacing:-19.588695pt;}
.ws5_c00465{word-spacing:-12.350837pt;}
.ws4_c00465{word-spacing:-11.306979pt;}
.ws7_c00465{word-spacing:-7.803378pt;}
.wsa_c00465{word-spacing:0.000000pt;}
.ws6_c00465{word-spacing:74.197868pt;}
.ws3_c00465{word-spacing:239.963787pt;}
.ws1_c00465{word-spacing:1003.575740pt;}
.ws0_c00465{word-spacing:1682.115023pt;}
.ws2_c00465{word-spacing:3672.555617pt;}
._a_c00465{margin-left:-1.043858pt;}
._0_c00465{width:1.713071pt;}
._1_c00465{width:3.180896pt;}
._e_c00465{width:109.420849pt;}
._17_c00465{width:120.001860pt;}
._b_c00465{width:137.850063pt;}
._11_c00465{width:138.753016pt;}
._14_c00465{width:144.334220pt;}
._d_c00465{width:162.125749pt;}
._f_c00465{width:184.178698pt;}
._15_c00465{width:196.125326pt;}
._12_c00465{width:219.818038pt;}
._9_c00465{width:261.531900pt;}
._4_c00465{width:262.810630pt;}
._6_c00465{width:278.763446pt;}
._c_c00465{width:279.909752pt;}
._8_c00465{width:295.367186pt;}
._7_c00465{width:304.538675pt;}
._10_c00465{width:326.825576pt;}
._16_c00465{width:338.127225pt;}
._3_c00465{width:346.538770pt;}
._5_c00465{width:358.266866pt;}
._13_c00465{width:362.454254pt;}
._18_c00465{width:388.320865pt;}
._2_c00465{width:1037.266312pt;}
.fs2_c00465{font-size:28.069707pt;}
.fs1_c00465{font-size:40.672587pt;}
.fs0_c00465{font-size:60.722667pt;}
.fs4_c00465{font-size:70.462933pt;}
.fs3_c00465{font-size:100.822400pt;}
.y0_c00465{bottom:0.000000pt;}
.y18_c00465{bottom:19.575200pt;}
.y1e_c00465{bottom:19.575333pt;}
.y17_c00465{bottom:42.935067pt;}
.y1d_c00465{bottom:42.935200pt;}
.y16_c00465{bottom:66.294933pt;}
.y1c_c00465{bottom:66.296133pt;}
.y15_c00465{bottom:89.654800pt;}
.y1b_c00465{bottom:89.656000pt;}
.y14_c00465{bottom:113.014667pt;}
.y1a_c00465{bottom:113.015867pt;}
.y13_c00465{bottom:136.374533pt;}
.y19_c00465{bottom:136.374667pt;}
.y1f_c00465{bottom:138.614533pt;}
.y5_c00465{bottom:167.733200pt;}
.y12_c00465{bottom:186.613200pt;}
.y7_c00465{bottom:200.853200pt;}
.y8_c00465{bottom:238.933200pt;}
.y6_c00465{bottom:263.573200pt;}
.y9_c00465{bottom:277.013200pt;}
.ya_c00465{bottom:314.933200pt;}
.yb_c00465{bottom:353.013200pt;}
.yc_c00465{bottom:391.093200pt;}
.yd_c00465{bottom:429.173200pt;}
.ye_c00465{bottom:467.093200pt;}
.yf_c00465{bottom:505.173200pt;}
.y10_c00465{bottom:543.253200pt;}
.y11_c00465{bottom:581.173200pt;}
.y4_c00465{bottom:586.453200pt;}
.y3_c00465{bottom:596.533413pt;}
.y2_c00465{bottom:606.453200pt;}
.y1_c00465{bottom:628.373200pt;}
.y26_c00465{bottom:657.333200pt;}
.y23_c00465{bottom:667.572933pt;}
.y25_c00465{bottom:673.493200pt;}
.y22_c00465{bottom:690.613067pt;}
.y20_c00465{bottom:697.013200pt;}
.y24_c00465{bottom:706.293200pt;}
.y21_c00465{bottom:713.653200pt;}
.h3_c00465{height:29.610755pt;}
.h4_c00465{height:38.996047pt;}
.h2_c00465{height:44.207762pt;}
.h6_c00465{height:51.298942pt;}
.h5_c00465{height:73.401464pt;}
.h0_c00465{height:793.332933pt;}
.h1_c00465{height:793.333333pt;}
.w0_c00465{width:1122.666400pt;}
.w1_c00465{width:1122.666667pt;}
.x0_c00465{left:0.000000pt;}
.xa_c00465{left:24.147333pt;}
.x10_c00465{left:31.347333pt;}
.x14_c00465{left:34.227600pt;}
.x6_c00465{left:38.867733pt;}
.x9_c00465{left:46.867200pt;}
.x8_c00465{left:52.787467pt;}
.x7_c00465{left:58.707333pt;}
.x3_c00465{left:82.547591pt;}
.x4_c00465{left:164.788000pt;}
.x1_c00465{left:203.028000pt;}
.x2_c00465{left:255.508000pt;}
.x5_c00465{left:370.228000pt;}
.xd_c00465{left:423.345438pt;}
.xb_c00465{left:428.625674pt;}
.xe_c00465{left:437.585533pt;}
.xc_c00465{left:444.305894pt;}
.x12_c00465{left:504.468000pt;}
.x13_c00465{left:569.428000pt;}
.x11_c00465{left:744.146667pt;}
.xf_c00465{left:780.948000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7331dc6734218bdbc5e64fd0.woff2')format("woff");}.ff1_c00466{font-family:ff1_c00466;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00466{transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);}
.m1_c00466{transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);}
.m4_c00466{transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);}
.m3_c00466{transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);}
.m0_c00466{transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);}
.v0_c00466{vertical-align:0.000000px;}
.v1_c00466{vertical-align:20.880600px;}
.ls1_c00466{letter-spacing:0.000000px;}
.ls0_c00466{letter-spacing:1.174340px;}
.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;}
}
.ws8_c00466{word-spacing:-31.532206px;}
.ws9_c00466{word-spacing:-22.037282px;}
.ws5_c00466{word-spacing:-13.894692px;}
.ws4_c00466{word-spacing:-12.720351px;}
.ws7_c00466{word-spacing:-8.778801px;}
.wsa_c00466{word-spacing:0.000000px;}
.ws6_c00466{word-spacing:83.472601px;}
.ws3_c00466{word-spacing:269.959261px;}
.ws1_c00466{word-spacing:1129.022707px;}
.ws0_c00466{word-spacing:1892.379401px;}
.ws2_c00466{word-spacing:4131.625069px;}
._a_c00466{margin-left:-1.174340px;}
._0_c00466{width:1.927205px;}
._1_c00466{width:3.578508px;}
._e_c00466{width:123.098455px;}
._17_c00466{width:135.002093px;}
._b_c00466{width:155.081320px;}
._11_c00466{width:156.097143px;}
._14_c00466{width:162.375998px;}
._d_c00466{width:182.391467px;}
._f_c00466{width:207.201036px;}
._15_c00466{width:220.640991px;}
._12_c00466{width:247.295292px;}
._9_c00466{width:294.223388px;}
._4_c00466{width:295.661959px;}
._6_c00466{width:313.608876px;}
._c_c00466{width:314.898471px;}
._8_c00466{width:332.288085px;}
._7_c00466{width:342.606009px;}
._10_c00466{width:367.678773px;}
._16_c00466{width:380.393128px;}
._3_c00466{width:389.856116px;}
._5_c00466{width:403.050224px;}
._13_c00466{width:407.761036px;}
._18_c00466{width:451.496754px;}
._2_c00466{width:1166.924601px;}
.fc1_c00466{color:transparent;}
.fc0_c00466{color:rgb(0,0,0);}
.fs2_c00466{font-size:31.578420px;}
.fs1_c00466{font-size:45.756660px;}
.fs0_c00466{font-size:68.313000px;}
.fs4_c00466{font-size:79.270800px;}
.fs3_c00466{font-size:113.425200px;}
.y0_c00466{bottom:0.000000px;}
.y18_c00466{bottom:22.022100px;}
.y1e_c00466{bottom:22.022250px;}
.y17_c00466{bottom:48.301950px;}
.y1d_c00466{bottom:48.302100px;}
.y16_c00466{bottom:74.581800px;}
.y1c_c00466{bottom:74.583150px;}
.y15_c00466{bottom:100.861650px;}
.y1b_c00466{bottom:100.863000px;}
.y14_c00466{bottom:127.141500px;}
.y1a_c00466{bottom:127.142850px;}
.y13_c00466{bottom:153.421350px;}
.y19_c00466{bottom:153.421500px;}
.y1f_c00466{bottom:155.941350px;}
.y5_c00466{bottom:188.699850px;}
.y12_c00466{bottom:209.939850px;}
.y7_c00466{bottom:225.959850px;}
.y8_c00466{bottom:268.799850px;}
.y6_c00466{bottom:296.519850px;}
.y9_c00466{bottom:311.639850px;}
.ya_c00466{bottom:354.299850px;}
.yb_c00466{bottom:397.139850px;}
.yc_c00466{bottom:439.979850px;}
.yd_c00466{bottom:482.819850px;}
.ye_c00466{bottom:525.479850px;}
.yf_c00466{bottom:568.319850px;}
.y10_c00466{bottom:611.159850px;}
.y11_c00466{bottom:653.819850px;}
.y4_c00466{bottom:659.759850px;}
.y3_c00466{bottom:671.100090px;}
.y2_c00466{bottom:682.259850px;}
.y1_c00466{bottom:706.919850px;}
.y26_c00466{bottom:739.499850px;}
.y23_c00466{bottom:751.019550px;}
.y25_c00466{bottom:757.679850px;}
.y22_c00466{bottom:776.939700px;}
.y20_c00466{bottom:784.139850px;}
.y24_c00466{bottom:794.579850px;}
.y21_c00466{bottom:802.859850px;}
.h3_c00466{height:33.312100px;}
.h4_c00466{height:43.870553px;}
.h2_c00466{height:49.733732px;}
.h6_c00466{height:57.711310px;}
.h5_c00466{height:82.576647px;}
.h0_c00466{height:892.499550px;}
.h1_c00466{height:892.500000px;}
.w0_c00466{width:1262.999700px;}
.w1_c00466{width:1263.000000px;}
.x0_c00466{left:0.000000px;}
.xa_c00466{left:27.165750px;}
.xf_c00466{left:35.265750px;}
.x13_c00466{left:38.506050px;}
.x6_c00466{left:43.726200px;}
.x9_c00466{left:52.725600px;}
.x8_c00466{left:59.385900px;}
.x7_c00466{left:66.045750px;}
.x3_c00466{left:92.866040px;}
.x4_c00466{left:185.386500px;}
.x1_c00466{left:228.406500px;}
.x2_c00466{left:287.446500px;}
.x5_c00466{left:416.506500px;}
.xc_c00466{left:479.686231px;}
.xd_c00466{left:492.286228px;}
.xb_c00466{left:500.206279px;}
.x11_c00466{left:567.526500px;}
.x12_c00466{left:640.606500px;}
.x10_c00466{left:837.165000px;}
.xe_c00466{left:878.566500px;}
@media print{
.v0_c00466{vertical-align:0.000000pt;}
.v1_c00466{vertical-align:18.560533pt;}
.ls1_c00466{letter-spacing:0.000000pt;}
.ls0_c00466{letter-spacing:1.043858pt;}
.ws8_c00466{word-spacing:-28.028627pt;}
.ws9_c00466{word-spacing:-19.588695pt;}
.ws5_c00466{word-spacing:-12.350837pt;}
.ws4_c00466{word-spacing:-11.306979pt;}
.ws7_c00466{word-spacing:-7.803378pt;}
.wsa_c00466{word-spacing:0.000000pt;}
.ws6_c00466{word-spacing:74.197868pt;}
.ws3_c00466{word-spacing:239.963787pt;}
.ws1_c00466{word-spacing:1003.575740pt;}
.ws0_c00466{word-spacing:1682.115023pt;}
.ws2_c00466{word-spacing:3672.555617pt;}
._a_c00466{margin-left:-1.043858pt;}
._0_c00466{width:1.713071pt;}
._1_c00466{width:3.180896pt;}
._e_c00466{width:109.420849pt;}
._17_c00466{width:120.001860pt;}
._b_c00466{width:137.850063pt;}
._11_c00466{width:138.753016pt;}
._14_c00466{width:144.334220pt;}
._d_c00466{width:162.125749pt;}
._f_c00466{width:184.178698pt;}
._15_c00466{width:196.125326pt;}
._12_c00466{width:219.818038pt;}
._9_c00466{width:261.531900pt;}
._4_c00466{width:262.810630pt;}
._6_c00466{width:278.763446pt;}
._c_c00466{width:279.909752pt;}
._8_c00466{width:295.367186pt;}
._7_c00466{width:304.538675pt;}
._10_c00466{width:326.825576pt;}
._16_c00466{width:338.127225pt;}
._3_c00466{width:346.538770pt;}
._5_c00466{width:358.266866pt;}
._13_c00466{width:362.454254pt;}
._18_c00466{width:401.330448pt;}
._2_c00466{width:1037.266312pt;}
.fs2_c00466{font-size:28.069707pt;}
.fs1_c00466{font-size:40.672587pt;}
.fs0_c00466{font-size:60.722667pt;}
.fs4_c00466{font-size:70.462933pt;}
.fs3_c00466{font-size:100.822400pt;}
.y0_c00466{bottom:0.000000pt;}
.y18_c00466{bottom:19.575200pt;}
.y1e_c00466{bottom:19.575333pt;}
.y17_c00466{bottom:42.935067pt;}
.y1d_c00466{bottom:42.935200pt;}
.y16_c00466{bottom:66.294933pt;}
.y1c_c00466{bottom:66.296133pt;}
.y15_c00466{bottom:89.654800pt;}
.y1b_c00466{bottom:89.656000pt;}
.y14_c00466{bottom:113.014667pt;}
.y1a_c00466{bottom:113.015867pt;}
.y13_c00466{bottom:136.374533pt;}
.y19_c00466{bottom:136.374667pt;}
.y1f_c00466{bottom:138.614533pt;}
.y5_c00466{bottom:167.733200pt;}
.y12_c00466{bottom:186.613200pt;}
.y7_c00466{bottom:200.853200pt;}
.y8_c00466{bottom:238.933200pt;}
.y6_c00466{bottom:263.573200pt;}
.y9_c00466{bottom:277.013200pt;}
.ya_c00466{bottom:314.933200pt;}
.yb_c00466{bottom:353.013200pt;}
.yc_c00466{bottom:391.093200pt;}
.yd_c00466{bottom:429.173200pt;}
.ye_c00466{bottom:467.093200pt;}
.yf_c00466{bottom:505.173200pt;}
.y10_c00466{bottom:543.253200pt;}
.y11_c00466{bottom:581.173200pt;}
.y4_c00466{bottom:586.453200pt;}
.y3_c00466{bottom:596.533413pt;}
.y2_c00466{bottom:606.453200pt;}
.y1_c00466{bottom:628.373200pt;}
.y26_c00466{bottom:657.333200pt;}
.y23_c00466{bottom:667.572933pt;}
.y25_c00466{bottom:673.493200pt;}
.y22_c00466{bottom:690.613067pt;}
.y20_c00466{bottom:697.013200pt;}
.y24_c00466{bottom:706.293200pt;}
.y21_c00466{bottom:713.653200pt;}
.h3_c00466{height:29.610755pt;}
.h4_c00466{height:38.996047pt;}
.h2_c00466{height:44.207762pt;}
.h6_c00466{height:51.298942pt;}
.h5_c00466{height:73.401464pt;}
.h0_c00466{height:793.332933pt;}
.h1_c00466{height:793.333333pt;}
.w0_c00466{width:1122.666400pt;}
.w1_c00466{width:1122.666667pt;}
.x0_c00466{left:0.000000pt;}
.xa_c00466{left:24.147333pt;}
.xf_c00466{left:31.347333pt;}
.x13_c00466{left:34.227600pt;}
.x6_c00466{left:38.867733pt;}
.x9_c00466{left:46.867200pt;}
.x8_c00466{left:52.787467pt;}
.x7_c00466{left:58.707333pt;}
.x3_c00466{left:82.547591pt;}
.x4_c00466{left:164.788000pt;}
.x1_c00466{left:203.028000pt;}
.x2_c00466{left:255.508000pt;}
.x5_c00466{left:370.228000pt;}
.xc_c00466{left:426.387761pt;}
.xd_c00466{left:437.587758pt;}
.xb_c00466{left:444.627804pt;}
.x11_c00466{left:504.468000pt;}
.x12_c00466{left:569.428000pt;}
.x10_c00466{left:744.146667pt;}
.xe_c00466{left:780.948000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0941f72a0dc6040a31bfe158.woff2')format("woff");}.ff1_c00467{font-family:ff1_c00467;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00467{transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);}
.m1_c00467{transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);}
.m4_c00467{transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);}
.m3_c00467{transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);}
.m0_c00467{transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);}
.v0_c00467{vertical-align:0.000000px;}
.v1_c00467{vertical-align:20.880600px;}
.ls1_c00467{letter-spacing:0.000000px;}
.ls0_c00467{letter-spacing:1.174340px;}
.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;}
}
.ws8_c00467{word-spacing:-31.532206px;}
.ws9_c00467{word-spacing:-22.037282px;}
.ws5_c00467{word-spacing:-13.894692px;}
.ws4_c00467{word-spacing:-12.720351px;}
.ws7_c00467{word-spacing:-8.778801px;}
.wsa_c00467{word-spacing:0.000000px;}
.ws6_c00467{word-spacing:83.472601px;}
.ws3_c00467{word-spacing:269.959261px;}
.ws1_c00467{word-spacing:1129.022707px;}
.ws0_c00467{word-spacing:1892.379401px;}
.ws2_c00467{word-spacing:4131.625069px;}
._a_c00467{margin-left:-1.174340px;}
._0_c00467{width:1.927205px;}
._1_c00467{width:3.578508px;}
._e_c00467{width:123.098455px;}
._17_c00467{width:135.002093px;}
._b_c00467{width:155.081320px;}
._11_c00467{width:156.097143px;}
._14_c00467{width:162.375998px;}
._d_c00467{width:182.391467px;}
._f_c00467{width:207.201036px;}
._15_c00467{width:220.640991px;}
._12_c00467{width:247.295292px;}
._9_c00467{width:294.223388px;}
._4_c00467{width:295.661959px;}
._6_c00467{width:313.608876px;}
._c_c00467{width:314.898471px;}
._8_c00467{width:332.288085px;}
._7_c00467{width:342.606009px;}
._10_c00467{width:367.678773px;}
._16_c00467{width:380.393128px;}
._3_c00467{width:389.856116px;}
._5_c00467{width:403.050224px;}
._13_c00467{width:407.761036px;}
._18_c00467{width:436.860973px;}
._2_c00467{width:1166.924601px;}
.fc1_c00467{color:transparent;}
.fc0_c00467{color:rgb(0,0,0);}
.fs2_c00467{font-size:31.578420px;}
.fs1_c00467{font-size:45.756660px;}
.fs0_c00467{font-size:68.313000px;}
.fs4_c00467{font-size:79.270800px;}
.fs3_c00467{font-size:113.425200px;}
.y0_c00467{bottom:0.000000px;}
.y18_c00467{bottom:22.022100px;}
.y1e_c00467{bottom:22.022250px;}
.y17_c00467{bottom:48.301950px;}
.y1d_c00467{bottom:48.302100px;}
.y16_c00467{bottom:74.581800px;}
.y1c_c00467{bottom:74.583150px;}
.y15_c00467{bottom:100.861650px;}
.y1b_c00467{bottom:100.863000px;}
.y14_c00467{bottom:127.141500px;}
.y1a_c00467{bottom:127.142850px;}
.y13_c00467{bottom:153.421350px;}
.y19_c00467{bottom:153.421500px;}
.y1f_c00467{bottom:155.941350px;}
.y5_c00467{bottom:188.699850px;}
.y12_c00467{bottom:209.939850px;}
.y7_c00467{bottom:225.959850px;}
.y8_c00467{bottom:268.799850px;}
.y6_c00467{bottom:296.519850px;}
.y9_c00467{bottom:311.639850px;}
.ya_c00467{bottom:354.299850px;}
.yb_c00467{bottom:397.139850px;}
.yc_c00467{bottom:439.979850px;}
.yd_c00467{bottom:482.819850px;}
.ye_c00467{bottom:525.479850px;}
.yf_c00467{bottom:568.319850px;}
.y10_c00467{bottom:611.159850px;}
.y11_c00467{bottom:653.819850px;}
.y4_c00467{bottom:659.759850px;}
.y3_c00467{bottom:671.100090px;}
.y2_c00467{bottom:682.259850px;}
.y1_c00467{bottom:706.919850px;}
.y26_c00467{bottom:739.499850px;}
.y23_c00467{bottom:751.019550px;}
.y25_c00467{bottom:757.679850px;}
.y22_c00467{bottom:776.939700px;}
.y20_c00467{bottom:784.139850px;}
.y24_c00467{bottom:794.579850px;}
.y21_c00467{bottom:802.859850px;}
.h3_c00467{height:33.312100px;}
.h4_c00467{height:43.870553px;}
.h2_c00467{height:49.733732px;}
.h6_c00467{height:57.711310px;}
.h5_c00467{height:82.576647px;}
.h0_c00467{height:892.499550px;}
.h1_c00467{height:892.500000px;}
.w0_c00467{width:1262.999700px;}
.w1_c00467{width:1263.000000px;}
.x0_c00467{left:0.000000px;}
.xa_c00467{left:27.165750px;}
.xf_c00467{left:35.265750px;}
.x13_c00467{left:38.506050px;}
.x6_c00467{left:43.726200px;}
.x9_c00467{left:52.725600px;}
.x8_c00467{left:59.385900px;}
.x7_c00467{left:66.045750px;}
.x3_c00467{left:92.866040px;}
.x4_c00467{left:185.386500px;}
.x1_c00467{left:228.406500px;}
.x2_c00467{left:287.446500px;}
.x5_c00467{left:416.506500px;}
.xc_c00467{left:479.686231px;}
.xd_c00467{left:492.286228px;}
.xb_c00467{left:500.206279px;}
.x11_c00467{left:567.526500px;}
.x12_c00467{left:640.606500px;}
.x10_c00467{left:837.165000px;}
.xe_c00467{left:878.566500px;}
@media print{
.v0_c00467{vertical-align:0.000000pt;}
.v1_c00467{vertical-align:18.560533pt;}
.ls1_c00467{letter-spacing:0.000000pt;}
.ls0_c00467{letter-spacing:1.043858pt;}
.ws8_c00467{word-spacing:-28.028627pt;}
.ws9_c00467{word-spacing:-19.588695pt;}
.ws5_c00467{word-spacing:-12.350837pt;}
.ws4_c00467{word-spacing:-11.306979pt;}
.ws7_c00467{word-spacing:-7.803378pt;}
.wsa_c00467{word-spacing:0.000000pt;}
.ws6_c00467{word-spacing:74.197868pt;}
.ws3_c00467{word-spacing:239.963787pt;}
.ws1_c00467{word-spacing:1003.575740pt;}
.ws0_c00467{word-spacing:1682.115023pt;}
.ws2_c00467{word-spacing:3672.555617pt;}
._a_c00467{margin-left:-1.043858pt;}
._0_c00467{width:1.713071pt;}
._1_c00467{width:3.180896pt;}
._e_c00467{width:109.420849pt;}
._17_c00467{width:120.001860pt;}
._b_c00467{width:137.850063pt;}
._11_c00467{width:138.753016pt;}
._14_c00467{width:144.334220pt;}
._d_c00467{width:162.125749pt;}
._f_c00467{width:184.178698pt;}
._15_c00467{width:196.125326pt;}
._12_c00467{width:219.818038pt;}
._9_c00467{width:261.531900pt;}
._4_c00467{width:262.810630pt;}
._6_c00467{width:278.763446pt;}
._c_c00467{width:279.909752pt;}
._8_c00467{width:295.367186pt;}
._7_c00467{width:304.538675pt;}
._10_c00467{width:326.825576pt;}
._16_c00467{width:338.127225pt;}
._3_c00467{width:346.538770pt;}
._5_c00467{width:358.266866pt;}
._13_c00467{width:362.454254pt;}
._18_c00467{width:388.320865pt;}
._2_c00467{width:1037.266312pt;}
.fs2_c00467{font-size:28.069707pt;}
.fs1_c00467{font-size:40.672587pt;}
.fs0_c00467{font-size:60.722667pt;}
.fs4_c00467{font-size:70.462933pt;}
.fs3_c00467{font-size:100.822400pt;}
.y0_c00467{bottom:0.000000pt;}
.y18_c00467{bottom:19.575200pt;}
.y1e_c00467{bottom:19.575333pt;}
.y17_c00467{bottom:42.935067pt;}
.y1d_c00467{bottom:42.935200pt;}
.y16_c00467{bottom:66.294933pt;}
.y1c_c00467{bottom:66.296133pt;}
.y15_c00467{bottom:89.654800pt;}
.y1b_c00467{bottom:89.656000pt;}
.y14_c00467{bottom:113.014667pt;}
.y1a_c00467{bottom:113.015867pt;}
.y13_c00467{bottom:136.374533pt;}
.y19_c00467{bottom:136.374667pt;}
.y1f_c00467{bottom:138.614533pt;}
.y5_c00467{bottom:167.733200pt;}
.y12_c00467{bottom:186.613200pt;}
.y7_c00467{bottom:200.853200pt;}
.y8_c00467{bottom:238.933200pt;}
.y6_c00467{bottom:263.573200pt;}
.y9_c00467{bottom:277.013200pt;}
.ya_c00467{bottom:314.933200pt;}
.yb_c00467{bottom:353.013200pt;}
.yc_c00467{bottom:391.093200pt;}
.yd_c00467{bottom:429.173200pt;}
.ye_c00467{bottom:467.093200pt;}
.yf_c00467{bottom:505.173200pt;}
.y10_c00467{bottom:543.253200pt;}
.y11_c00467{bottom:581.173200pt;}
.y4_c00467{bottom:586.453200pt;}
.y3_c00467{bottom:596.533413pt;}
.y2_c00467{bottom:606.453200pt;}
.y1_c00467{bottom:628.373200pt;}
.y26_c00467{bottom:657.333200pt;}
.y23_c00467{bottom:667.572933pt;}
.y25_c00467{bottom:673.493200pt;}
.y22_c00467{bottom:690.613067pt;}
.y20_c00467{bottom:697.013200pt;}
.y24_c00467{bottom:706.293200pt;}
.y21_c00467{bottom:713.653200pt;}
.h3_c00467{height:29.610755pt;}
.h4_c00467{height:38.996047pt;}
.h2_c00467{height:44.207762pt;}
.h6_c00467{height:51.298942pt;}
.h5_c00467{height:73.401464pt;}
.h0_c00467{height:793.332933pt;}
.h1_c00467{height:793.333333pt;}
.w0_c00467{width:1122.666400pt;}
.w1_c00467{width:1122.666667pt;}
.x0_c00467{left:0.000000pt;}
.xa_c00467{left:24.147333pt;}
.xf_c00467{left:31.347333pt;}
.x13_c00467{left:34.227600pt;}
.x6_c00467{left:38.867733pt;}
.x9_c00467{left:46.867200pt;}
.x8_c00467{left:52.787467pt;}
.x7_c00467{left:58.707333pt;}
.x3_c00467{left:82.547591pt;}
.x4_c00467{left:164.788000pt;}
.x1_c00467{left:203.028000pt;}
.x2_c00467{left:255.508000pt;}
.x5_c00467{left:370.228000pt;}
.xc_c00467{left:426.387761pt;}
.xd_c00467{left:437.587758pt;}
.xb_c00467{left:444.627804pt;}
.x11_c00467{left:504.468000pt;}
.x12_c00467{left:569.428000pt;}
.x10_c00467{left:744.146667pt;}
.xe_c00467{left:780.948000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0bbfb7271c9fac6cf72f6903.woff2')format("woff");}.ff1_c00468{font-family:ff1_c00468;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00468{transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);}
.m1_c00468{transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);}
.m4_c00468{transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);}
.m3_c00468{transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);}
.m0_c00468{transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);}
.v0_c00468{vertical-align:0.000000px;}
.v1_c00468{vertical-align:20.880600px;}
.ls1_c00468{letter-spacing:0.000000px;}
.ls0_c00468{letter-spacing:1.174340px;}
.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;}
}
.ws8_c00468{word-spacing:-31.532206px;}
.ws9_c00468{word-spacing:-22.037282px;}
.ws5_c00468{word-spacing:-13.894692px;}
.ws4_c00468{word-spacing:-12.720351px;}
.ws7_c00468{word-spacing:-8.778801px;}
.wsa_c00468{word-spacing:0.000000px;}
.ws6_c00468{word-spacing:83.472601px;}
.ws3_c00468{word-spacing:269.959261px;}
.ws1_c00468{word-spacing:1129.022707px;}
.ws0_c00468{word-spacing:1892.379401px;}
.ws2_c00468{word-spacing:4131.625069px;}
._a_c00468{margin-left:-1.174340px;}
._0_c00468{width:1.927205px;}
._1_c00468{width:3.578508px;}
._e_c00468{width:123.098455px;}
._17_c00468{width:135.002093px;}
._b_c00468{width:155.081320px;}
._11_c00468{width:156.097143px;}
._14_c00468{width:162.375998px;}
._d_c00468{width:182.391467px;}
._f_c00468{width:207.201036px;}
._15_c00468{width:220.640991px;}
._12_c00468{width:247.295292px;}
._9_c00468{width:294.223388px;}
._4_c00468{width:295.661959px;}
._6_c00468{width:313.608876px;}
._c_c00468{width:314.898471px;}
._8_c00468{width:332.288085px;}
._7_c00468{width:342.606009px;}
._10_c00468{width:367.678773px;}
._16_c00468{width:380.393128px;}
._3_c00468{width:389.856116px;}
._5_c00468{width:403.050224px;}
._13_c00468{width:407.761036px;}
._18_c00468{width:436.860973px;}
._2_c00468{width:1166.924601px;}
.fc1_c00468{color:transparent;}
.fc0_c00468{color:rgb(0,0,0);}
.fs2_c00468{font-size:31.578420px;}
.fs1_c00468{font-size:45.756660px;}
.fs0_c00468{font-size:68.313000px;}
.fs4_c00468{font-size:79.270800px;}
.fs3_c00468{font-size:113.425200px;}
.y0_c00468{bottom:0.000000px;}
.y18_c00468{bottom:22.022100px;}
.y1f_c00468{bottom:22.022250px;}
.y17_c00468{bottom:48.301950px;}
.y1e_c00468{bottom:48.302100px;}
.y16_c00468{bottom:74.581800px;}
.y1d_c00468{bottom:74.583150px;}
.y15_c00468{bottom:100.861650px;}
.y1c_c00468{bottom:100.863000px;}
.y14_c00468{bottom:127.141500px;}
.y1b_c00468{bottom:127.142850px;}
.y13_c00468{bottom:153.421350px;}
.y19_c00468{bottom:153.421500px;}
.y20_c00468{bottom:155.941350px;}
.y1a_c00468{bottom:165.121500px;}
.y5_c00468{bottom:188.699850px;}
.y12_c00468{bottom:209.939850px;}
.y7_c00468{bottom:225.959850px;}
.y8_c00468{bottom:268.799850px;}
.y6_c00468{bottom:296.519850px;}
.y9_c00468{bottom:311.639850px;}
.ya_c00468{bottom:354.299850px;}
.yb_c00468{bottom:397.139850px;}
.yc_c00468{bottom:439.979850px;}
.yd_c00468{bottom:482.819850px;}
.ye_c00468{bottom:525.479850px;}
.yf_c00468{bottom:568.319850px;}
.y10_c00468{bottom:611.159850px;}
.y11_c00468{bottom:653.819850px;}
.y4_c00468{bottom:659.759850px;}
.y3_c00468{bottom:671.100090px;}
.y2_c00468{bottom:682.259850px;}
.y1_c00468{bottom:706.919850px;}
.y27_c00468{bottom:739.499850px;}
.y24_c00468{bottom:751.019550px;}
.y26_c00468{bottom:757.679850px;}
.y23_c00468{bottom:776.939700px;}
.y21_c00468{bottom:784.139850px;}
.y25_c00468{bottom:794.579850px;}
.y22_c00468{bottom:802.859850px;}
.h3_c00468{height:33.312100px;}
.h4_c00468{height:43.870553px;}
.h2_c00468{height:49.733732px;}
.h6_c00468{height:57.711310px;}
.h5_c00468{height:82.576647px;}
.h0_c00468{height:892.499550px;}
.h1_c00468{height:892.500000px;}
.w0_c00468{width:1262.999700px;}
.w1_c00468{width:1263.000000px;}
.x0_c00468{left:0.000000px;}
.xa_c00468{left:27.165750px;}
.x11_c00468{left:35.265750px;}
.x15_c00468{left:38.506050px;}
.x6_c00468{left:43.726200px;}
.x9_c00468{left:52.725600px;}
.x8_c00468{left:59.385900px;}
.x7_c00468{left:66.045750px;}
.x3_c00468{left:92.866040px;}
.x4_c00468{left:185.386500px;}
.x1_c00468{left:228.406500px;}
.x2_c00468{left:287.446500px;}
.x5_c00468{left:416.506500px;}
.xe_c00468{left:479.683793px;}
.xb_c00468{left:490.483935px;}
.xf_c00468{left:492.282619px;}
.xd_c00468{left:499.843625px;}
.xc_c00468{left:518.349603px;}
.x13_c00468{left:567.526500px;}
.x14_c00468{left:640.606500px;}
.x12_c00468{left:837.165000px;}
.x10_c00468{left:878.566500px;}
@media print{
.v0_c00468{vertical-align:0.000000pt;}
.v1_c00468{vertical-align:18.560533pt;}
.ls1_c00468{letter-spacing:0.000000pt;}
.ls0_c00468{letter-spacing:1.043858pt;}
.ws8_c00468{word-spacing:-28.028627pt;}
.ws9_c00468{word-spacing:-19.588695pt;}
.ws5_c00468{word-spacing:-12.350837pt;}
.ws4_c00468{word-spacing:-11.306979pt;}
.ws7_c00468{word-spacing:-7.803378pt;}
.wsa_c00468{word-spacing:0.000000pt;}
.ws6_c00468{word-spacing:74.197868pt;}
.ws3_c00468{word-spacing:239.963787pt;}
.ws1_c00468{word-spacing:1003.575740pt;}
.ws0_c00468{word-spacing:1682.115023pt;}
.ws2_c00468{word-spacing:3672.555617pt;}
._a_c00468{margin-left:-1.043858pt;}
._0_c00468{width:1.713071pt;}
._1_c00468{width:3.180896pt;}
._e_c00468{width:109.420849pt;}
._17_c00468{width:120.001860pt;}
._b_c00468{width:137.850063pt;}
._11_c00468{width:138.753016pt;}
._14_c00468{width:144.334220pt;}
._d_c00468{width:162.125749pt;}
._f_c00468{width:184.178698pt;}
._15_c00468{width:196.125326pt;}
._12_c00468{width:219.818038pt;}
._9_c00468{width:261.531900pt;}
._4_c00468{width:262.810630pt;}
._6_c00468{width:278.763446pt;}
._c_c00468{width:279.909752pt;}
._8_c00468{width:295.367186pt;}
._7_c00468{width:304.538675pt;}
._10_c00468{width:326.825576pt;}
._16_c00468{width:338.127225pt;}
._3_c00468{width:346.538770pt;}
._5_c00468{width:358.266866pt;}
._13_c00468{width:362.454254pt;}
._18_c00468{width:388.320865pt;}
._2_c00468{width:1037.266312pt;}
.fs2_c00468{font-size:28.069707pt;}
.fs1_c00468{font-size:40.672587pt;}
.fs0_c00468{font-size:60.722667pt;}
.fs4_c00468{font-size:70.462933pt;}
.fs3_c00468{font-size:100.822400pt;}
.y0_c00468{bottom:0.000000pt;}
.y18_c00468{bottom:19.575200pt;}
.y1f_c00468{bottom:19.575333pt;}
.y17_c00468{bottom:42.935067pt;}
.y1e_c00468{bottom:42.935200pt;}
.y16_c00468{bottom:66.294933pt;}
.y1d_c00468{bottom:66.296133pt;}
.y15_c00468{bottom:89.654800pt;}
.y1c_c00468{bottom:89.656000pt;}
.y14_c00468{bottom:113.014667pt;}
.y1b_c00468{bottom:113.015867pt;}
.y13_c00468{bottom:136.374533pt;}
.y19_c00468{bottom:136.374667pt;}
.y20_c00468{bottom:138.614533pt;}
.y1a_c00468{bottom:146.774667pt;}
.y5_c00468{bottom:167.733200pt;}
.y12_c00468{bottom:186.613200pt;}
.y7_c00468{bottom:200.853200pt;}
.y8_c00468{bottom:238.933200pt;}
.y6_c00468{bottom:263.573200pt;}
.y9_c00468{bottom:277.013200pt;}
.ya_c00468{bottom:314.933200pt;}
.yb_c00468{bottom:353.013200pt;}
.yc_c00468{bottom:391.093200pt;}
.yd_c00468{bottom:429.173200pt;}
.ye_c00468{bottom:467.093200pt;}
.yf_c00468{bottom:505.173200pt;}
.y10_c00468{bottom:543.253200pt;}
.y11_c00468{bottom:581.173200pt;}
.y4_c00468{bottom:586.453200pt;}
.y3_c00468{bottom:596.533413pt;}
.y2_c00468{bottom:606.453200pt;}
.y1_c00468{bottom:628.373200pt;}
.y27_c00468{bottom:657.333200pt;}
.y24_c00468{bottom:667.572933pt;}
.y26_c00468{bottom:673.493200pt;}
.y23_c00468{bottom:690.613067pt;}
.y21_c00468{bottom:697.013200pt;}
.y25_c00468{bottom:706.293200pt;}
.y22_c00468{bottom:713.653200pt;}
.h3_c00468{height:29.610755pt;}
.h4_c00468{height:38.996047pt;}
.h2_c00468{height:44.207762pt;}
.h6_c00468{height:51.298942pt;}
.h5_c00468{height:73.401464pt;}
.h0_c00468{height:793.332933pt;}
.h1_c00468{height:793.333333pt;}
.w0_c00468{width:1122.666400pt;}
.w1_c00468{width:1122.666667pt;}
.x0_c00468{left:0.000000pt;}
.xa_c00468{left:24.147333pt;}
.x11_c00468{left:31.347333pt;}
.x15_c00468{left:34.227600pt;}
.x6_c00468{left:38.867733pt;}
.x9_c00468{left:46.867200pt;}
.x8_c00468{left:52.787467pt;}
.x7_c00468{left:58.707333pt;}
.x3_c00468{left:82.547591pt;}
.x4_c00468{left:164.788000pt;}
.x1_c00468{left:203.028000pt;}
.x2_c00468{left:255.508000pt;}
.x5_c00468{left:370.228000pt;}
.xe_c00468{left:426.385594pt;}
.xb_c00468{left:435.985720pt;}
.xf_c00468{left:437.584550pt;}
.xd_c00468{left:444.305444pt;}
.xc_c00468{left:460.755202pt;}
.x13_c00468{left:504.468000pt;}
.x14_c00468{left:569.428000pt;}
.x12_c00468{left:744.146667pt;}
.x10_c00468{left:780.948000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2fdd14134920ef9d5bb64a3d.woff2')format("woff");}.ff1_c00469{font-family:ff1_c00469;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00469{transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);}
.m1_c00469{transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);}
.m4_c00469{transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);}
.m3_c00469{transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);}
.m0_c00469{transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);}
.v0_c00469{vertical-align:0.000000px;}
.v1_c00469{vertical-align:20.880600px;}
.ls1_c00469{letter-spacing:0.000000px;}
.ls0_c00469{letter-spacing:1.174340px;}
.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;}
}
.ws8_c00469{word-spacing:-31.532206px;}
.ws9_c00469{word-spacing:-22.037282px;}
.ws5_c00469{word-spacing:-13.894692px;}
.ws4_c00469{word-spacing:-12.720351px;}
.ws7_c00469{word-spacing:-8.778801px;}
.wsa_c00469{word-spacing:0.000000px;}
.ws6_c00469{word-spacing:83.472601px;}
.ws3_c00469{word-spacing:269.959261px;}
.ws1_c00469{word-spacing:1129.022707px;}
.ws0_c00469{word-spacing:1892.379401px;}
.ws2_c00469{word-spacing:4131.625069px;}
._a_c00469{margin-left:-1.174340px;}
._0_c00469{width:1.927205px;}
._1_c00469{width:3.578508px;}
._e_c00469{width:123.098455px;}
._17_c00469{width:135.002093px;}
._b_c00469{width:155.081320px;}
._11_c00469{width:156.097143px;}
._14_c00469{width:162.375998px;}
._d_c00469{width:182.391467px;}
._f_c00469{width:207.201036px;}
._15_c00469{width:220.640991px;}
._12_c00469{width:247.295292px;}
._9_c00469{width:294.223388px;}
._4_c00469{width:295.661959px;}
._6_c00469{width:313.608876px;}
._c_c00469{width:314.898471px;}
._8_c00469{width:332.288085px;}
._7_c00469{width:342.606009px;}
._10_c00469{width:367.678773px;}
._16_c00469{width:380.393128px;}
._3_c00469{width:389.856116px;}
._5_c00469{width:403.050224px;}
._13_c00469{width:407.761036px;}
._18_c00469{width:436.860973px;}
._2_c00469{width:1166.924601px;}
.fc1_c00469{color:transparent;}
.fc0_c00469{color:rgb(0,0,0);}
.fs2_c00469{font-size:31.578420px;}
.fs1_c00469{font-size:45.756660px;}
.fs0_c00469{font-size:68.313000px;}
.fs4_c00469{font-size:79.270800px;}
.fs3_c00469{font-size:113.425200px;}
.y0_c00469{bottom:0.000000px;}
.y18_c00469{bottom:22.022100px;}
.y1e_c00469{bottom:22.022250px;}
.y17_c00469{bottom:48.301950px;}
.y1d_c00469{bottom:48.302100px;}
.y16_c00469{bottom:74.581800px;}
.y1c_c00469{bottom:74.583150px;}
.y15_c00469{bottom:100.861650px;}
.y1b_c00469{bottom:100.863000px;}
.y14_c00469{bottom:127.141500px;}
.y1a_c00469{bottom:127.142850px;}
.y13_c00469{bottom:153.421350px;}
.y19_c00469{bottom:153.421500px;}
.y1f_c00469{bottom:155.941350px;}
.y5_c00469{bottom:188.699850px;}
.y12_c00469{bottom:209.939850px;}
.y7_c00469{bottom:225.959850px;}
.y8_c00469{bottom:268.799850px;}
.y6_c00469{bottom:296.519850px;}
.y9_c00469{bottom:311.639850px;}
.ya_c00469{bottom:354.299850px;}
.yb_c00469{bottom:397.139850px;}
.yc_c00469{bottom:439.979850px;}
.yd_c00469{bottom:482.819850px;}
.ye_c00469{bottom:525.479850px;}
.yf_c00469{bottom:568.319850px;}
.y10_c00469{bottom:611.159850px;}
.y11_c00469{bottom:653.819850px;}
.y4_c00469{bottom:659.759850px;}
.y3_c00469{bottom:671.100090px;}
.y2_c00469{bottom:682.259850px;}
.y1_c00469{bottom:706.919850px;}
.y26_c00469{bottom:739.499850px;}
.y23_c00469{bottom:751.019550px;}
.y25_c00469{bottom:757.679850px;}
.y22_c00469{bottom:776.939700px;}
.y20_c00469{bottom:784.139850px;}
.y24_c00469{bottom:794.579850px;}
.y21_c00469{bottom:802.859850px;}
.h3_c00469{height:33.312100px;}
.h4_c00469{height:43.870553px;}
.h2_c00469{height:49.733732px;}
.h6_c00469{height:57.711310px;}
.h5_c00469{height:82.576647px;}
.h0_c00469{height:892.499550px;}
.h1_c00469{height:892.500000px;}
.w0_c00469{width:1262.999700px;}
.w1_c00469{width:1263.000000px;}
.x0_c00469{left:0.000000px;}
.xa_c00469{left:27.165750px;}
.xf_c00469{left:35.265750px;}
.x13_c00469{left:38.506050px;}
.x6_c00469{left:43.726200px;}
.x9_c00469{left:52.725600px;}
.x8_c00469{left:59.385900px;}
.x7_c00469{left:66.045750px;}
.x3_c00469{left:92.866040px;}
.x4_c00469{left:185.386500px;}
.x1_c00469{left:228.406500px;}
.x2_c00469{left:287.446500px;}
.x5_c00469{left:416.506500px;}
.xc_c00469{left:479.686231px;}
.xd_c00469{left:492.286228px;}
.xb_c00469{left:500.206279px;}
.x11_c00469{left:567.526500px;}
.x12_c00469{left:640.606500px;}
.x10_c00469{left:837.165000px;}
.xe_c00469{left:878.566500px;}
@media print{
.v0_c00469{vertical-align:0.000000pt;}
.v1_c00469{vertical-align:18.560533pt;}
.ls1_c00469{letter-spacing:0.000000pt;}
.ls0_c00469{letter-spacing:1.043858pt;}
.ws8_c00469{word-spacing:-28.028627pt;}
.ws9_c00469{word-spacing:-19.588695pt;}
.ws5_c00469{word-spacing:-12.350837pt;}
.ws4_c00469{word-spacing:-11.306979pt;}
.ws7_c00469{word-spacing:-7.803378pt;}
.wsa_c00469{word-spacing:0.000000pt;}
.ws6_c00469{word-spacing:74.197868pt;}
.ws3_c00469{word-spacing:239.963787pt;}
.ws1_c00469{word-spacing:1003.575740pt;}
.ws0_c00469{word-spacing:1682.115023pt;}
.ws2_c00469{word-spacing:3672.555617pt;}
._a_c00469{margin-left:-1.043858pt;}
._0_c00469{width:1.713071pt;}
._1_c00469{width:3.180896pt;}
._e_c00469{width:109.420849pt;}
._17_c00469{width:120.001860pt;}
._b_c00469{width:137.850063pt;}
._11_c00469{width:138.753016pt;}
._14_c00469{width:144.334220pt;}
._d_c00469{width:162.125749pt;}
._f_c00469{width:184.178698pt;}
._15_c00469{width:196.125326pt;}
._12_c00469{width:219.818038pt;}
._9_c00469{width:261.531900pt;}
._4_c00469{width:262.810630pt;}
._6_c00469{width:278.763446pt;}
._c_c00469{width:279.909752pt;}
._8_c00469{width:295.367186pt;}
._7_c00469{width:304.538675pt;}
._10_c00469{width:326.825576pt;}
._16_c00469{width:338.127225pt;}
._3_c00469{width:346.538770pt;}
._5_c00469{width:358.266866pt;}
._13_c00469{width:362.454254pt;}
._18_c00469{width:388.320865pt;}
._2_c00469{width:1037.266312pt;}
.fs2_c00469{font-size:28.069707pt;}
.fs1_c00469{font-size:40.672587pt;}
.fs0_c00469{font-size:60.722667pt;}
.fs4_c00469{font-size:70.462933pt;}
.fs3_c00469{font-size:100.822400pt;}
.y0_c00469{bottom:0.000000pt;}
.y18_c00469{bottom:19.575200pt;}
.y1e_c00469{bottom:19.575333pt;}
.y17_c00469{bottom:42.935067pt;}
.y1d_c00469{bottom:42.935200pt;}
.y16_c00469{bottom:66.294933pt;}
.y1c_c00469{bottom:66.296133pt;}
.y15_c00469{bottom:89.654800pt;}
.y1b_c00469{bottom:89.656000pt;}
.y14_c00469{bottom:113.014667pt;}
.y1a_c00469{bottom:113.015867pt;}
.y13_c00469{bottom:136.374533pt;}
.y19_c00469{bottom:136.374667pt;}
.y1f_c00469{bottom:138.614533pt;}
.y5_c00469{bottom:167.733200pt;}
.y12_c00469{bottom:186.613200pt;}
.y7_c00469{bottom:200.853200pt;}
.y8_c00469{bottom:238.933200pt;}
.y6_c00469{bottom:263.573200pt;}
.y9_c00469{bottom:277.013200pt;}
.ya_c00469{bottom:314.933200pt;}
.yb_c00469{bottom:353.013200pt;}
.yc_c00469{bottom:391.093200pt;}
.yd_c00469{bottom:429.173200pt;}
.ye_c00469{bottom:467.093200pt;}
.yf_c00469{bottom:505.173200pt;}
.y10_c00469{bottom:543.253200pt;}
.y11_c00469{bottom:581.173200pt;}
.y4_c00469{bottom:586.453200pt;}
.y3_c00469{bottom:596.533413pt;}
.y2_c00469{bottom:606.453200pt;}
.y1_c00469{bottom:628.373200pt;}
.y26_c00469{bottom:657.333200pt;}
.y23_c00469{bottom:667.572933pt;}
.y25_c00469{bottom:673.493200pt;}
.y22_c00469{bottom:690.613067pt;}
.y20_c00469{bottom:697.013200pt;}
.y24_c00469{bottom:706.293200pt;}
.y21_c00469{bottom:713.653200pt;}
.h3_c00469{height:29.610755pt;}
.h4_c00469{height:38.996047pt;}
.h2_c00469{height:44.207762pt;}
.h6_c00469{height:51.298942pt;}
.h5_c00469{height:73.401464pt;}
.h0_c00469{height:793.332933pt;}
.h1_c00469{height:793.333333pt;}
.w0_c00469{width:1122.666400pt;}
.w1_c00469{width:1122.666667pt;}
.x0_c00469{left:0.000000pt;}
.xa_c00469{left:24.147333pt;}
.xf_c00469{left:31.347333pt;}
.x13_c00469{left:34.227600pt;}
.x6_c00469{left:38.867733pt;}
.x9_c00469{left:46.867200pt;}
.x8_c00469{left:52.787467pt;}
.x7_c00469{left:58.707333pt;}
.x3_c00469{left:82.547591pt;}
.x4_c00469{left:164.788000pt;}
.x1_c00469{left:203.028000pt;}
.x2_c00469{left:255.508000pt;}
.x5_c00469{left:370.228000pt;}
.xc_c00469{left:426.387761pt;}
.xd_c00469{left:437.587758pt;}
.xb_c00469{left:444.627804pt;}
.x11_c00469{left:504.468000pt;}
.x12_c00469{left:569.428000pt;}
.x10_c00469{left:744.146667pt;}
.xe_c00469{left:780.948000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_661a1a6b638f4796891c80ae.woff2')format("woff");}.ff1_c00470{font-family:ff1_c00470;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00470{transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);}
.m1_c00470{transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);}
.m4_c00470{transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);}
.m3_c00470{transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);}
.m0_c00470{transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);}
.v0_c00470{vertical-align:0.000000px;}
.v1_c00470{vertical-align:20.880600px;}
.ls1_c00470{letter-spacing:0.000000px;}
.ls0_c00470{letter-spacing:1.174340px;}
.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;}
}
.ws8_c00470{word-spacing:-31.532206px;}
.ws9_c00470{word-spacing:-22.037282px;}
.ws5_c00470{word-spacing:-13.894692px;}
.ws4_c00470{word-spacing:-12.720351px;}
.ws7_c00470{word-spacing:-8.778801px;}
.wsa_c00470{word-spacing:0.000000px;}
.ws6_c00470{word-spacing:83.472601px;}
.ws3_c00470{word-spacing:269.959261px;}
.ws1_c00470{word-spacing:1129.022707px;}
.ws0_c00470{word-spacing:1892.379401px;}
.ws2_c00470{word-spacing:4131.625069px;}
._a_c00470{margin-left:-1.174340px;}
._0_c00470{width:1.927205px;}
._1_c00470{width:3.578508px;}
._e_c00470{width:123.098455px;}
._17_c00470{width:135.002093px;}
._b_c00470{width:155.081320px;}
._11_c00470{width:156.097143px;}
._14_c00470{width:162.375998px;}
._d_c00470{width:182.391467px;}
._f_c00470{width:207.201036px;}
._15_c00470{width:220.640991px;}
._12_c00470{width:247.295292px;}
._9_c00470{width:294.223388px;}
._4_c00470{width:295.661959px;}
._6_c00470{width:313.608876px;}
._c_c00470{width:314.898471px;}
._8_c00470{width:332.288085px;}
._7_c00470{width:342.606009px;}
._10_c00470{width:367.678773px;}
._16_c00470{width:380.393128px;}
._3_c00470{width:389.856116px;}
._5_c00470{width:403.050224px;}
._13_c00470{width:407.761036px;}
._18_c00470{width:436.860973px;}
._2_c00470{width:1166.924601px;}
.fc1_c00470{color:transparent;}
.fc0_c00470{color:rgb(0,0,0);}
.fs2_c00470{font-size:31.578420px;}
.fs1_c00470{font-size:45.756660px;}
.fs0_c00470{font-size:68.313000px;}
.fs4_c00470{font-size:79.270800px;}
.fs3_c00470{font-size:113.425200px;}
.y0_c00470{bottom:0.000000px;}
.y18_c00470{bottom:22.022100px;}
.y1e_c00470{bottom:22.022250px;}
.y17_c00470{bottom:48.301950px;}
.y1d_c00470{bottom:48.302100px;}
.y16_c00470{bottom:74.581800px;}
.y1c_c00470{bottom:74.583150px;}
.y15_c00470{bottom:100.861650px;}
.y1b_c00470{bottom:100.863000px;}
.y14_c00470{bottom:127.141500px;}
.y1a_c00470{bottom:127.142850px;}
.y13_c00470{bottom:153.421350px;}
.y19_c00470{bottom:153.421500px;}
.y1f_c00470{bottom:155.941350px;}
.y5_c00470{bottom:188.699850px;}
.y12_c00470{bottom:209.939850px;}
.y7_c00470{bottom:225.959850px;}
.y8_c00470{bottom:268.799850px;}
.y6_c00470{bottom:296.519850px;}
.y9_c00470{bottom:311.639850px;}
.ya_c00470{bottom:354.299850px;}
.yb_c00470{bottom:397.139850px;}
.yc_c00470{bottom:439.979850px;}
.yd_c00470{bottom:482.819850px;}
.ye_c00470{bottom:525.479850px;}
.yf_c00470{bottom:568.319850px;}
.y10_c00470{bottom:611.159850px;}
.y11_c00470{bottom:653.819850px;}
.y4_c00470{bottom:659.759850px;}
.y3_c00470{bottom:671.100090px;}
.y2_c00470{bottom:682.259850px;}
.y1_c00470{bottom:706.919850px;}
.y26_c00470{bottom:739.499850px;}
.y23_c00470{bottom:751.019550px;}
.y25_c00470{bottom:757.679850px;}
.y22_c00470{bottom:776.939700px;}
.y20_c00470{bottom:784.139850px;}
.y24_c00470{bottom:794.579850px;}
.y21_c00470{bottom:802.859850px;}
.h3_c00470{height:33.312100px;}
.h4_c00470{height:43.870553px;}
.h2_c00470{height:49.733732px;}
.h6_c00470{height:57.711310px;}
.h5_c00470{height:82.576647px;}
.h0_c00470{height:892.499550px;}
.h1_c00470{height:892.500000px;}
.w0_c00470{width:1262.999700px;}
.w1_c00470{width:1263.000000px;}
.x0_c00470{left:0.000000px;}
.xa_c00470{left:27.165750px;}
.xf_c00470{left:35.265750px;}
.x13_c00470{left:38.506050px;}
.x6_c00470{left:43.726200px;}
.x9_c00470{left:52.725600px;}
.x8_c00470{left:59.385900px;}
.x7_c00470{left:66.045750px;}
.x3_c00470{left:92.866040px;}
.x4_c00470{left:185.386500px;}
.x1_c00470{left:228.406500px;}
.x2_c00470{left:287.446500px;}
.x5_c00470{left:416.506500px;}
.xc_c00470{left:479.686231px;}
.xd_c00470{left:492.286228px;}
.xb_c00470{left:500.206279px;}
.x11_c00470{left:567.526500px;}
.x12_c00470{left:640.606500px;}
.x10_c00470{left:837.165000px;}
.xe_c00470{left:878.566500px;}
@media print{
.v0_c00470{vertical-align:0.000000pt;}
.v1_c00470{vertical-align:18.560533pt;}
.ls1_c00470{letter-spacing:0.000000pt;}
.ls0_c00470{letter-spacing:1.043858pt;}
.ws8_c00470{word-spacing:-28.028627pt;}
.ws9_c00470{word-spacing:-19.588695pt;}
.ws5_c00470{word-spacing:-12.350837pt;}
.ws4_c00470{word-spacing:-11.306979pt;}
.ws7_c00470{word-spacing:-7.803378pt;}
.wsa_c00470{word-spacing:0.000000pt;}
.ws6_c00470{word-spacing:74.197868pt;}
.ws3_c00470{word-spacing:239.963787pt;}
.ws1_c00470{word-spacing:1003.575740pt;}
.ws0_c00470{word-spacing:1682.115023pt;}
.ws2_c00470{word-spacing:3672.555617pt;}
._a_c00470{margin-left:-1.043858pt;}
._0_c00470{width:1.713071pt;}
._1_c00470{width:3.180896pt;}
._e_c00470{width:109.420849pt;}
._17_c00470{width:120.001860pt;}
._b_c00470{width:137.850063pt;}
._11_c00470{width:138.753016pt;}
._14_c00470{width:144.334220pt;}
._d_c00470{width:162.125749pt;}
._f_c00470{width:184.178698pt;}
._15_c00470{width:196.125326pt;}
._12_c00470{width:219.818038pt;}
._9_c00470{width:261.531900pt;}
._4_c00470{width:262.810630pt;}
._6_c00470{width:278.763446pt;}
._c_c00470{width:279.909752pt;}
._8_c00470{width:295.367186pt;}
._7_c00470{width:304.538675pt;}
._10_c00470{width:326.825576pt;}
._16_c00470{width:338.127225pt;}
._3_c00470{width:346.538770pt;}
._5_c00470{width:358.266866pt;}
._13_c00470{width:362.454254pt;}
._18_c00470{width:388.320865pt;}
._2_c00470{width:1037.266312pt;}
.fs2_c00470{font-size:28.069707pt;}
.fs1_c00470{font-size:40.672587pt;}
.fs0_c00470{font-size:60.722667pt;}
.fs4_c00470{font-size:70.462933pt;}
.fs3_c00470{font-size:100.822400pt;}
.y0_c00470{bottom:0.000000pt;}
.y18_c00470{bottom:19.575200pt;}
.y1e_c00470{bottom:19.575333pt;}
.y17_c00470{bottom:42.935067pt;}
.y1d_c00470{bottom:42.935200pt;}
.y16_c00470{bottom:66.294933pt;}
.y1c_c00470{bottom:66.296133pt;}
.y15_c00470{bottom:89.654800pt;}
.y1b_c00470{bottom:89.656000pt;}
.y14_c00470{bottom:113.014667pt;}
.y1a_c00470{bottom:113.015867pt;}
.y13_c00470{bottom:136.374533pt;}
.y19_c00470{bottom:136.374667pt;}
.y1f_c00470{bottom:138.614533pt;}
.y5_c00470{bottom:167.733200pt;}
.y12_c00470{bottom:186.613200pt;}
.y7_c00470{bottom:200.853200pt;}
.y8_c00470{bottom:238.933200pt;}
.y6_c00470{bottom:263.573200pt;}
.y9_c00470{bottom:277.013200pt;}
.ya_c00470{bottom:314.933200pt;}
.yb_c00470{bottom:353.013200pt;}
.yc_c00470{bottom:391.093200pt;}
.yd_c00470{bottom:429.173200pt;}
.ye_c00470{bottom:467.093200pt;}
.yf_c00470{bottom:505.173200pt;}
.y10_c00470{bottom:543.253200pt;}
.y11_c00470{bottom:581.173200pt;}
.y4_c00470{bottom:586.453200pt;}
.y3_c00470{bottom:596.533413pt;}
.y2_c00470{bottom:606.453200pt;}
.y1_c00470{bottom:628.373200pt;}
.y26_c00470{bottom:657.333200pt;}
.y23_c00470{bottom:667.572933pt;}
.y25_c00470{bottom:673.493200pt;}
.y22_c00470{bottom:690.613067pt;}
.y20_c00470{bottom:697.013200pt;}
.y24_c00470{bottom:706.293200pt;}
.y21_c00470{bottom:713.653200pt;}
.h3_c00470{height:29.610755pt;}
.h4_c00470{height:38.996047pt;}
.h2_c00470{height:44.207762pt;}
.h6_c00470{height:51.298942pt;}
.h5_c00470{height:73.401464pt;}
.h0_c00470{height:793.332933pt;}
.h1_c00470{height:793.333333pt;}
.w0_c00470{width:1122.666400pt;}
.w1_c00470{width:1122.666667pt;}
.x0_c00470{left:0.000000pt;}
.xa_c00470{left:24.147333pt;}
.xf_c00470{left:31.347333pt;}
.x13_c00470{left:34.227600pt;}
.x6_c00470{left:38.867733pt;}
.x9_c00470{left:46.867200pt;}
.x8_c00470{left:52.787467pt;}
.x7_c00470{left:58.707333pt;}
.x3_c00470{left:82.547591pt;}
.x4_c00470{left:164.788000pt;}
.x1_c00470{left:203.028000pt;}
.x2_c00470{left:255.508000pt;}
.x5_c00470{left:370.228000pt;}
.xc_c00470{left:426.387761pt;}
.xd_c00470{left:437.587758pt;}
.xb_c00470{left:444.627804pt;}
.x11_c00470{left:504.468000pt;}
.x12_c00470{left:569.428000pt;}
.x10_c00470{left:744.146667pt;}
.xe_c00470{left:780.948000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d778642b33f2cd47f643ca61.woff2')format("woff");}.ff1_c00471{font-family:ff1_c00471;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00471{transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);}
.m1_c00471{transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);}
.m4_c00471{transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);}
.m3_c00471{transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);}
.m0_c00471{transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);}
.v0_c00471{vertical-align:0.000000px;}
.v1_c00471{vertical-align:20.880600px;}
.ls1_c00471{letter-spacing:0.000000px;}
.ls0_c00471{letter-spacing:1.174340px;}
.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;}
}
.ws8_c00471{word-spacing:-31.532206px;}
.ws9_c00471{word-spacing:-22.037282px;}
.ws5_c00471{word-spacing:-13.894692px;}
.ws4_c00471{word-spacing:-12.720351px;}
.ws7_c00471{word-spacing:-8.778801px;}
.wsa_c00471{word-spacing:0.000000px;}
.ws6_c00471{word-spacing:83.472601px;}
.ws3_c00471{word-spacing:269.959261px;}
.ws1_c00471{word-spacing:1129.022707px;}
.ws0_c00471{word-spacing:1892.379401px;}
.ws2_c00471{word-spacing:4131.625069px;}
._a_c00471{margin-left:-1.174340px;}
._0_c00471{width:1.927205px;}
._1_c00471{width:3.578508px;}
._e_c00471{width:123.098455px;}
._17_c00471{width:135.002093px;}
._b_c00471{width:155.081320px;}
._11_c00471{width:156.097143px;}
._14_c00471{width:162.375998px;}
._d_c00471{width:182.391467px;}
._f_c00471{width:207.201036px;}
._15_c00471{width:220.640991px;}
._12_c00471{width:247.295292px;}
._9_c00471{width:294.223388px;}
._4_c00471{width:295.661959px;}
._6_c00471{width:313.608876px;}
._c_c00471{width:314.898471px;}
._8_c00471{width:332.288085px;}
._7_c00471{width:342.606009px;}
._10_c00471{width:367.678773px;}
._16_c00471{width:380.393128px;}
._3_c00471{width:389.856116px;}
._5_c00471{width:403.050224px;}
._13_c00471{width:407.761036px;}
._18_c00471{width:436.860973px;}
._2_c00471{width:1166.924601px;}
.fc1_c00471{color:transparent;}
.fc0_c00471{color:rgb(0,0,0);}
.fs2_c00471{font-size:31.578420px;}
.fs1_c00471{font-size:45.756660px;}
.fs0_c00471{font-size:68.313000px;}
.fs4_c00471{font-size:79.270800px;}
.fs3_c00471{font-size:113.425200px;}
.y0_c00471{bottom:0.000000px;}
.y18_c00471{bottom:22.022100px;}
.y1e_c00471{bottom:22.022250px;}
.y17_c00471{bottom:48.301950px;}
.y1d_c00471{bottom:48.302100px;}
.y16_c00471{bottom:74.581800px;}
.y1c_c00471{bottom:74.583150px;}
.y15_c00471{bottom:100.861650px;}
.y1b_c00471{bottom:100.863000px;}
.y14_c00471{bottom:127.141500px;}
.y1a_c00471{bottom:127.142850px;}
.y13_c00471{bottom:153.421350px;}
.y19_c00471{bottom:153.421500px;}
.y1f_c00471{bottom:155.941350px;}
.y5_c00471{bottom:188.699850px;}
.y12_c00471{bottom:209.939850px;}
.y7_c00471{bottom:225.959850px;}
.y8_c00471{bottom:268.799850px;}
.y6_c00471{bottom:296.519850px;}
.y9_c00471{bottom:311.639850px;}
.ya_c00471{bottom:354.299850px;}
.yb_c00471{bottom:397.139850px;}
.yc_c00471{bottom:439.979850px;}
.yd_c00471{bottom:482.819850px;}
.ye_c00471{bottom:525.479850px;}
.yf_c00471{bottom:568.319850px;}
.y10_c00471{bottom:611.159850px;}
.y11_c00471{bottom:653.819850px;}
.y4_c00471{bottom:659.759850px;}
.y3_c00471{bottom:671.100090px;}
.y2_c00471{bottom:682.259850px;}
.y1_c00471{bottom:706.919850px;}
.y26_c00471{bottom:739.499850px;}
.y23_c00471{bottom:751.019550px;}
.y25_c00471{bottom:757.679850px;}
.y22_c00471{bottom:776.939700px;}
.y20_c00471{bottom:784.139850px;}
.y24_c00471{bottom:794.579850px;}
.y21_c00471{bottom:802.859850px;}
.h3_c00471{height:33.312100px;}
.h4_c00471{height:43.870553px;}
.h2_c00471{height:49.733732px;}
.h6_c00471{height:57.711310px;}
.h5_c00471{height:82.576647px;}
.h0_c00471{height:892.499550px;}
.h1_c00471{height:892.500000px;}
.w0_c00471{width:1262.999700px;}
.w1_c00471{width:1263.000000px;}
.x0_c00471{left:0.000000px;}
.xa_c00471{left:27.165750px;}
.xf_c00471{left:35.265750px;}
.x13_c00471{left:38.506050px;}
.x6_c00471{left:43.726200px;}
.x9_c00471{left:52.725600px;}
.x8_c00471{left:59.385900px;}
.x7_c00471{left:66.045750px;}
.x3_c00471{left:92.866040px;}
.x4_c00471{left:185.386500px;}
.x1_c00471{left:228.406500px;}
.x2_c00471{left:287.446500px;}
.x5_c00471{left:416.506500px;}
.xc_c00471{left:482.566615px;}
.xd_c00471{left:492.286153px;}
.xb_c00471{left:500.206279px;}
.x11_c00471{left:567.526500px;}
.x12_c00471{left:640.606500px;}
.x10_c00471{left:837.165000px;}
.xe_c00471{left:878.566500px;}
@media print{
.v0_c00471{vertical-align:0.000000pt;}
.v1_c00471{vertical-align:18.560533pt;}
.ls1_c00471{letter-spacing:0.000000pt;}
.ls0_c00471{letter-spacing:1.043858pt;}
.ws8_c00471{word-spacing:-28.028627pt;}
.ws9_c00471{word-spacing:-19.588695pt;}
.ws5_c00471{word-spacing:-12.350837pt;}
.ws4_c00471{word-spacing:-11.306979pt;}
.ws7_c00471{word-spacing:-7.803378pt;}
.wsa_c00471{word-spacing:0.000000pt;}
.ws6_c00471{word-spacing:74.197868pt;}
.ws3_c00471{word-spacing:239.963787pt;}
.ws1_c00471{word-spacing:1003.575740pt;}
.ws0_c00471{word-spacing:1682.115023pt;}
.ws2_c00471{word-spacing:3672.555617pt;}
._a_c00471{margin-left:-1.043858pt;}
._0_c00471{width:1.713071pt;}
._1_c00471{width:3.180896pt;}
._e_c00471{width:109.420849pt;}
._17_c00471{width:120.001860pt;}
._b_c00471{width:137.850063pt;}
._11_c00471{width:138.753016pt;}
._14_c00471{width:144.334220pt;}
._d_c00471{width:162.125749pt;}
._f_c00471{width:184.178698pt;}
._15_c00471{width:196.125326pt;}
._12_c00471{width:219.818038pt;}
._9_c00471{width:261.531900pt;}
._4_c00471{width:262.810630pt;}
._6_c00471{width:278.763446pt;}
._c_c00471{width:279.909752pt;}
._8_c00471{width:295.367186pt;}
._7_c00471{width:304.538675pt;}
._10_c00471{width:326.825576pt;}
._16_c00471{width:338.127225pt;}
._3_c00471{width:346.538770pt;}
._5_c00471{width:358.266866pt;}
._13_c00471{width:362.454254pt;}
._18_c00471{width:388.320865pt;}
._2_c00471{width:1037.266312pt;}
.fs2_c00471{font-size:28.069707pt;}
.fs1_c00471{font-size:40.672587pt;}
.fs0_c00471{font-size:60.722667pt;}
.fs4_c00471{font-size:70.462933pt;}
.fs3_c00471{font-size:100.822400pt;}
.y0_c00471{bottom:0.000000pt;}
.y18_c00471{bottom:19.575200pt;}
.y1e_c00471{bottom:19.575333pt;}
.y17_c00471{bottom:42.935067pt;}
.y1d_c00471{bottom:42.935200pt;}
.y16_c00471{bottom:66.294933pt;}
.y1c_c00471{bottom:66.296133pt;}
.y15_c00471{bottom:89.654800pt;}
.y1b_c00471{bottom:89.656000pt;}
.y14_c00471{bottom:113.014667pt;}
.y1a_c00471{bottom:113.015867pt;}
.y13_c00471{bottom:136.374533pt;}
.y19_c00471{bottom:136.374667pt;}
.y1f_c00471{bottom:138.614533pt;}
.y5_c00471{bottom:167.733200pt;}
.y12_c00471{bottom:186.613200pt;}
.y7_c00471{bottom:200.853200pt;}
.y8_c00471{bottom:238.933200pt;}
.y6_c00471{bottom:263.573200pt;}
.y9_c00471{bottom:277.013200pt;}
.ya_c00471{bottom:314.933200pt;}
.yb_c00471{bottom:353.013200pt;}
.yc_c00471{bottom:391.093200pt;}
.yd_c00471{bottom:429.173200pt;}
.ye_c00471{bottom:467.093200pt;}
.yf_c00471{bottom:505.173200pt;}
.y10_c00471{bottom:543.253200pt;}
.y11_c00471{bottom:581.173200pt;}
.y4_c00471{bottom:586.453200pt;}
.y3_c00471{bottom:596.533413pt;}
.y2_c00471{bottom:606.453200pt;}
.y1_c00471{bottom:628.373200pt;}
.y26_c00471{bottom:657.333200pt;}
.y23_c00471{bottom:667.572933pt;}
.y25_c00471{bottom:673.493200pt;}
.y22_c00471{bottom:690.613067pt;}
.y20_c00471{bottom:697.013200pt;}
.y24_c00471{bottom:706.293200pt;}
.y21_c00471{bottom:713.653200pt;}
.h3_c00471{height:29.610755pt;}
.h4_c00471{height:38.996047pt;}
.h2_c00471{height:44.207762pt;}
.h6_c00471{height:51.298942pt;}
.h5_c00471{height:73.401464pt;}
.h0_c00471{height:793.332933pt;}
.h1_c00471{height:793.333333pt;}
.w0_c00471{width:1122.666400pt;}
.w1_c00471{width:1122.666667pt;}
.x0_c00471{left:0.000000pt;}
.xa_c00471{left:24.147333pt;}
.xf_c00471{left:31.347333pt;}
.x13_c00471{left:34.227600pt;}
.x6_c00471{left:38.867733pt;}
.x9_c00471{left:46.867200pt;}
.x8_c00471{left:52.787467pt;}
.x7_c00471{left:58.707333pt;}
.x3_c00471{left:82.547591pt;}
.x4_c00471{left:164.788000pt;}
.x1_c00471{left:203.028000pt;}
.x2_c00471{left:255.508000pt;}
.x5_c00471{left:370.228000pt;}
.xc_c00471{left:428.948102pt;}
.xd_c00471{left:437.587691pt;}
.xb_c00471{left:444.627804pt;}
.x11_c00471{left:504.468000pt;}
.x12_c00471{left:569.428000pt;}
.x10_c00471{left:744.146667pt;}
.xe_c00471{left:780.948000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9f478f0141250d13b9b9eb2b.woff2')format("woff");}.ff1_c00472{font-family:ff1_c00472;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00472{transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);}
.m1_c00472{transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);}
.m4_c00472{transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);}
.m3_c00472{transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);}
.m0_c00472{transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);}
.v0_c00472{vertical-align:0.000000px;}
.v1_c00472{vertical-align:20.880600px;}
.ls1_c00472{letter-spacing:0.000000px;}
.ls0_c00472{letter-spacing:1.174340px;}
.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:-31.532206px;}
.ws9_c00472{word-spacing:-22.037282px;}
.ws5_c00472{word-spacing:-13.894692px;}
.ws4_c00472{word-spacing:-12.720351px;}
.ws7_c00472{word-spacing:-8.778801px;}
.wsa_c00472{word-spacing:0.000000px;}
.ws6_c00472{word-spacing:83.472601px;}
.ws3_c00472{word-spacing:269.959261px;}
.ws1_c00472{word-spacing:1129.022707px;}
.ws0_c00472{word-spacing:1892.379401px;}
.ws2_c00472{word-spacing:4131.625069px;}
._a_c00472{margin-left:-1.174340px;}
._0_c00472{width:1.927205px;}
._1_c00472{width:3.578508px;}
._e_c00472{width:123.098455px;}
._17_c00472{width:135.002093px;}
._b_c00472{width:155.081320px;}
._11_c00472{width:156.097143px;}
._14_c00472{width:162.375998px;}
._d_c00472{width:182.391467px;}
._f_c00472{width:207.201036px;}
._15_c00472{width:220.640991px;}
._12_c00472{width:247.295292px;}
._9_c00472{width:294.223388px;}
._4_c00472{width:295.661959px;}
._6_c00472{width:313.608876px;}
._c_c00472{width:314.898471px;}
._8_c00472{width:332.288085px;}
._7_c00472{width:342.606009px;}
._10_c00472{width:367.678773px;}
._16_c00472{width:380.393128px;}
._3_c00472{width:389.856116px;}
._5_c00472{width:403.050224px;}
._13_c00472{width:407.761036px;}
._18_c00472{width:436.860973px;}
._2_c00472{width:1166.924601px;}
.fc1_c00472{color:transparent;}
.fc0_c00472{color:rgb(0,0,0);}
.fs2_c00472{font-size:31.578420px;}
.fs1_c00472{font-size:45.756660px;}
.fs0_c00472{font-size:68.313000px;}
.fs4_c00472{font-size:79.270800px;}
.fs3_c00472{font-size:113.425200px;}
.y0_c00472{bottom:0.000000px;}
.y18_c00472{bottom:22.022100px;}
.y1e_c00472{bottom:22.022250px;}
.y17_c00472{bottom:48.301950px;}
.y1d_c00472{bottom:48.302100px;}
.y16_c00472{bottom:74.581800px;}
.y1c_c00472{bottom:74.583150px;}
.y15_c00472{bottom:100.861650px;}
.y1b_c00472{bottom:100.863000px;}
.y14_c00472{bottom:127.141500px;}
.y1a_c00472{bottom:127.142850px;}
.y13_c00472{bottom:153.421350px;}
.y19_c00472{bottom:153.421500px;}
.y1f_c00472{bottom:155.941350px;}
.y5_c00472{bottom:188.699850px;}
.y12_c00472{bottom:209.939850px;}
.y7_c00472{bottom:225.959850px;}
.y8_c00472{bottom:268.799850px;}
.y6_c00472{bottom:296.519850px;}
.y9_c00472{bottom:311.639850px;}
.ya_c00472{bottom:354.299850px;}
.yb_c00472{bottom:397.139850px;}
.yc_c00472{bottom:439.979850px;}
.yd_c00472{bottom:482.819850px;}
.ye_c00472{bottom:525.479850px;}
.yf_c00472{bottom:568.319850px;}
.y10_c00472{bottom:611.159850px;}
.y11_c00472{bottom:653.819850px;}
.y4_c00472{bottom:659.759850px;}
.y3_c00472{bottom:671.100090px;}
.y2_c00472{bottom:682.259850px;}
.y1_c00472{bottom:706.919850px;}
.y26_c00472{bottom:739.499850px;}
.y23_c00472{bottom:751.019550px;}
.y25_c00472{bottom:757.679850px;}
.y22_c00472{bottom:776.939700px;}
.y20_c00472{bottom:784.139850px;}
.y24_c00472{bottom:794.579850px;}
.y21_c00472{bottom:802.859850px;}
.h3_c00472{height:33.312100px;}
.h4_c00472{height:43.870553px;}
.h2_c00472{height:49.733732px;}
.h6_c00472{height:57.711310px;}
.h5_c00472{height:82.576647px;}
.h0_c00472{height:892.499550px;}
.h1_c00472{height:892.500000px;}
.w0_c00472{width:1262.999700px;}
.w1_c00472{width:1263.000000px;}
.x0_c00472{left:0.000000px;}
.xa_c00472{left:27.165750px;}
.xf_c00472{left:35.265750px;}
.x13_c00472{left:38.506050px;}
.x6_c00472{left:43.726200px;}
.x9_c00472{left:52.725600px;}
.x8_c00472{left:59.385900px;}
.x7_c00472{left:66.045750px;}
.x3_c00472{left:92.866040px;}
.x4_c00472{left:185.386500px;}
.x1_c00472{left:228.406500px;}
.x2_c00472{left:287.446500px;}
.x5_c00472{left:416.506500px;}
.xc_c00472{left:479.686231px;}
.xd_c00472{left:492.286228px;}
.xb_c00472{left:500.206279px;}
.x11_c00472{left:567.526500px;}
.x12_c00472{left:640.606500px;}
.x10_c00472{left:837.165000px;}
.xe_c00472{left:878.566500px;}
@media print{
.v0_c00472{vertical-align:0.000000pt;}
.v1_c00472{vertical-align:18.560533pt;}
.ls1_c00472{letter-spacing:0.000000pt;}
.ls0_c00472{letter-spacing:1.043858pt;}
.ws8_c00472{word-spacing:-28.028627pt;}
.ws9_c00472{word-spacing:-19.588695pt;}
.ws5_c00472{word-spacing:-12.350837pt;}
.ws4_c00472{word-spacing:-11.306979pt;}
.ws7_c00472{word-spacing:-7.803378pt;}
.wsa_c00472{word-spacing:0.000000pt;}
.ws6_c00472{word-spacing:74.197868pt;}
.ws3_c00472{word-spacing:239.963787pt;}
.ws1_c00472{word-spacing:1003.575740pt;}
.ws0_c00472{word-spacing:1682.115023pt;}
.ws2_c00472{word-spacing:3672.555617pt;}
._a_c00472{margin-left:-1.043858pt;}
._0_c00472{width:1.713071pt;}
._1_c00472{width:3.180896pt;}
._e_c00472{width:109.420849pt;}
._17_c00472{width:120.001860pt;}
._b_c00472{width:137.850063pt;}
._11_c00472{width:138.753016pt;}
._14_c00472{width:144.334220pt;}
._d_c00472{width:162.125749pt;}
._f_c00472{width:184.178698pt;}
._15_c00472{width:196.125326pt;}
._12_c00472{width:219.818038pt;}
._9_c00472{width:261.531900pt;}
._4_c00472{width:262.810630pt;}
._6_c00472{width:278.763446pt;}
._c_c00472{width:279.909752pt;}
._8_c00472{width:295.367186pt;}
._7_c00472{width:304.538675pt;}
._10_c00472{width:326.825576pt;}
._16_c00472{width:338.127225pt;}
._3_c00472{width:346.538770pt;}
._5_c00472{width:358.266866pt;}
._13_c00472{width:362.454254pt;}
._18_c00472{width:388.320865pt;}
._2_c00472{width:1037.266312pt;}
.fs2_c00472{font-size:28.069707pt;}
.fs1_c00472{font-size:40.672587pt;}
.fs0_c00472{font-size:60.722667pt;}
.fs4_c00472{font-size:70.462933pt;}
.fs3_c00472{font-size:100.822400pt;}
.y0_c00472{bottom:0.000000pt;}
.y18_c00472{bottom:19.575200pt;}
.y1e_c00472{bottom:19.575333pt;}
.y17_c00472{bottom:42.935067pt;}
.y1d_c00472{bottom:42.935200pt;}
.y16_c00472{bottom:66.294933pt;}
.y1c_c00472{bottom:66.296133pt;}
.y15_c00472{bottom:89.654800pt;}
.y1b_c00472{bottom:89.656000pt;}
.y14_c00472{bottom:113.014667pt;}
.y1a_c00472{bottom:113.015867pt;}
.y13_c00472{bottom:136.374533pt;}
.y19_c00472{bottom:136.374667pt;}
.y1f_c00472{bottom:138.614533pt;}
.y5_c00472{bottom:167.733200pt;}
.y12_c00472{bottom:186.613200pt;}
.y7_c00472{bottom:200.853200pt;}
.y8_c00472{bottom:238.933200pt;}
.y6_c00472{bottom:263.573200pt;}
.y9_c00472{bottom:277.013200pt;}
.ya_c00472{bottom:314.933200pt;}
.yb_c00472{bottom:353.013200pt;}
.yc_c00472{bottom:391.093200pt;}
.yd_c00472{bottom:429.173200pt;}
.ye_c00472{bottom:467.093200pt;}
.yf_c00472{bottom:505.173200pt;}
.y10_c00472{bottom:543.253200pt;}
.y11_c00472{bottom:581.173200pt;}
.y4_c00472{bottom:586.453200pt;}
.y3_c00472{bottom:596.533413pt;}
.y2_c00472{bottom:606.453200pt;}
.y1_c00472{bottom:628.373200pt;}
.y26_c00472{bottom:657.333200pt;}
.y23_c00472{bottom:667.572933pt;}
.y25_c00472{bottom:673.493200pt;}
.y22_c00472{bottom:690.613067pt;}
.y20_c00472{bottom:697.013200pt;}
.y24_c00472{bottom:706.293200pt;}
.y21_c00472{bottom:713.653200pt;}
.h3_c00472{height:29.610755pt;}
.h4_c00472{height:38.996047pt;}
.h2_c00472{height:44.207762pt;}
.h6_c00472{height:51.298942pt;}
.h5_c00472{height:73.401464pt;}
.h0_c00472{height:793.332933pt;}
.h1_c00472{height:793.333333pt;}
.w0_c00472{width:1122.666400pt;}
.w1_c00472{width:1122.666667pt;}
.x0_c00472{left:0.000000pt;}
.xa_c00472{left:24.147333pt;}
.xf_c00472{left:31.347333pt;}
.x13_c00472{left:34.227600pt;}
.x6_c00472{left:38.867733pt;}
.x9_c00472{left:46.867200pt;}
.x8_c00472{left:52.787467pt;}
.x7_c00472{left:58.707333pt;}
.x3_c00472{left:82.547591pt;}
.x4_c00472{left:164.788000pt;}
.x1_c00472{left:203.028000pt;}
.x2_c00472{left:255.508000pt;}
.x5_c00472{left:370.228000pt;}
.xc_c00472{left:426.387761pt;}
.xd_c00472{left:437.587758pt;}
.xb_c00472{left:444.627804pt;}
.x11_c00472{left:504.468000pt;}
.x12_c00472{left:569.428000pt;}
.x10_c00472{left:744.146667pt;}
.xe_c00472{left:780.948000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_19f3976fc559bbb681f8f166.woff2')format("woff");}.ff1_c00473{font-family:ff1_c00473;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00473{transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);}
.m1_c00473{transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);}
.m4_c00473{transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);}
.m3_c00473{transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);}
.m0_c00473{transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);}
.v0_c00473{vertical-align:0.000000px;}
.v1_c00473{vertical-align:20.880600px;}
.ls1_c00473{letter-spacing:0.000000px;}
.ls0_c00473{letter-spacing:1.174340px;}
.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;}
}
.ws8_c00473{word-spacing:-31.532206px;}
.ws9_c00473{word-spacing:-22.037282px;}
.ws5_c00473{word-spacing:-13.894692px;}
.ws4_c00473{word-spacing:-12.720351px;}
.ws7_c00473{word-spacing:-8.778801px;}
.wsa_c00473{word-spacing:0.000000px;}
.ws6_c00473{word-spacing:83.472601px;}
.ws3_c00473{word-spacing:269.959261px;}
.ws1_c00473{word-spacing:1129.022707px;}
.ws0_c00473{word-spacing:1892.379401px;}
.ws2_c00473{word-spacing:4131.625069px;}
._a_c00473{margin-left:-1.174340px;}
._0_c00473{width:1.927205px;}
._1_c00473{width:3.578508px;}
._e_c00473{width:123.098455px;}
._17_c00473{width:135.002093px;}
._b_c00473{width:155.081320px;}
._11_c00473{width:156.097143px;}
._14_c00473{width:162.375998px;}
._d_c00473{width:182.391467px;}
._f_c00473{width:207.201036px;}
._15_c00473{width:220.640991px;}
._12_c00473{width:247.295292px;}
._9_c00473{width:294.223388px;}
._4_c00473{width:295.661959px;}
._6_c00473{width:313.608876px;}
._c_c00473{width:314.898471px;}
._8_c00473{width:332.288085px;}
._7_c00473{width:342.606009px;}
._10_c00473{width:367.678773px;}
._16_c00473{width:380.393128px;}
._3_c00473{width:389.856116px;}
._5_c00473{width:403.050224px;}
._13_c00473{width:407.761036px;}
._18_c00473{width:436.860973px;}
._2_c00473{width:1166.924601px;}
.fc1_c00473{color:transparent;}
.fc0_c00473{color:rgb(0,0,0);}
.fs2_c00473{font-size:31.578420px;}
.fs1_c00473{font-size:45.756660px;}
.fs0_c00473{font-size:68.313000px;}
.fs4_c00473{font-size:79.270800px;}
.fs3_c00473{font-size:113.425200px;}
.y0_c00473{bottom:0.000000px;}
.y18_c00473{bottom:22.022100px;}
.y1e_c00473{bottom:22.022250px;}
.y17_c00473{bottom:48.301950px;}
.y1d_c00473{bottom:48.302100px;}
.y16_c00473{bottom:74.581800px;}
.y1c_c00473{bottom:74.583150px;}
.y15_c00473{bottom:100.861650px;}
.y1b_c00473{bottom:100.863000px;}
.y14_c00473{bottom:127.141500px;}
.y1a_c00473{bottom:127.142850px;}
.y13_c00473{bottom:153.421350px;}
.y19_c00473{bottom:153.421500px;}
.y1f_c00473{bottom:155.941350px;}
.y5_c00473{bottom:188.699850px;}
.y12_c00473{bottom:209.939850px;}
.y7_c00473{bottom:225.959850px;}
.y8_c00473{bottom:268.799850px;}
.y6_c00473{bottom:296.519850px;}
.y9_c00473{bottom:311.639850px;}
.ya_c00473{bottom:354.299850px;}
.yb_c00473{bottom:397.139850px;}
.yc_c00473{bottom:439.979850px;}
.yd_c00473{bottom:482.819850px;}
.ye_c00473{bottom:525.479850px;}
.yf_c00473{bottom:568.319850px;}
.y10_c00473{bottom:611.159850px;}
.y11_c00473{bottom:653.819850px;}
.y4_c00473{bottom:659.759850px;}
.y3_c00473{bottom:671.100090px;}
.y2_c00473{bottom:682.259850px;}
.y1_c00473{bottom:706.919850px;}
.y26_c00473{bottom:739.499850px;}
.y23_c00473{bottom:751.019550px;}
.y25_c00473{bottom:757.679850px;}
.y22_c00473{bottom:776.939700px;}
.y20_c00473{bottom:784.139850px;}
.y24_c00473{bottom:794.579850px;}
.y21_c00473{bottom:802.859850px;}
.h3_c00473{height:33.312100px;}
.h4_c00473{height:43.870553px;}
.h2_c00473{height:49.733732px;}
.h6_c00473{height:57.711310px;}
.h5_c00473{height:82.576647px;}
.h0_c00473{height:892.499550px;}
.h1_c00473{height:892.500000px;}
.w0_c00473{width:1262.999700px;}
.w1_c00473{width:1263.000000px;}
.x0_c00473{left:0.000000px;}
.xa_c00473{left:27.165750px;}
.xf_c00473{left:35.265750px;}
.x13_c00473{left:38.506050px;}
.x6_c00473{left:43.726200px;}
.x9_c00473{left:52.725600px;}
.x8_c00473{left:59.385900px;}
.x7_c00473{left:66.045750px;}
.x3_c00473{left:92.866040px;}
.x4_c00473{left:185.386500px;}
.x1_c00473{left:228.406500px;}
.x2_c00473{left:287.446500px;}
.x5_c00473{left:416.506500px;}
.xc_c00473{left:479.325883px;}
.xd_c00473{left:492.286228px;}
.xb_c00473{left:500.206279px;}
.x11_c00473{left:567.526500px;}
.x12_c00473{left:640.606500px;}
.x10_c00473{left:837.165000px;}
.xe_c00473{left:878.566500px;}
@media print{
.v0_c00473{vertical-align:0.000000pt;}
.v1_c00473{vertical-align:18.560533pt;}
.ls1_c00473{letter-spacing:0.000000pt;}
.ls0_c00473{letter-spacing:1.043858pt;}
.ws8_c00473{word-spacing:-28.028627pt;}
.ws9_c00473{word-spacing:-19.588695pt;}
.ws5_c00473{word-spacing:-12.350837pt;}
.ws4_c00473{word-spacing:-11.306979pt;}
.ws7_c00473{word-spacing:-7.803378pt;}
.wsa_c00473{word-spacing:0.000000pt;}
.ws6_c00473{word-spacing:74.197868pt;}
.ws3_c00473{word-spacing:239.963787pt;}
.ws1_c00473{word-spacing:1003.575740pt;}
.ws0_c00473{word-spacing:1682.115023pt;}
.ws2_c00473{word-spacing:3672.555617pt;}
._a_c00473{margin-left:-1.043858pt;}
._0_c00473{width:1.713071pt;}
._1_c00473{width:3.180896pt;}
._e_c00473{width:109.420849pt;}
._17_c00473{width:120.001860pt;}
._b_c00473{width:137.850063pt;}
._11_c00473{width:138.753016pt;}
._14_c00473{width:144.334220pt;}
._d_c00473{width:162.125749pt;}
._f_c00473{width:184.178698pt;}
._15_c00473{width:196.125326pt;}
._12_c00473{width:219.818038pt;}
._9_c00473{width:261.531900pt;}
._4_c00473{width:262.810630pt;}
._6_c00473{width:278.763446pt;}
._c_c00473{width:279.909752pt;}
._8_c00473{width:295.367186pt;}
._7_c00473{width:304.538675pt;}
._10_c00473{width:326.825576pt;}
._16_c00473{width:338.127225pt;}
._3_c00473{width:346.538770pt;}
._5_c00473{width:358.266866pt;}
._13_c00473{width:362.454254pt;}
._18_c00473{width:388.320865pt;}
._2_c00473{width:1037.266312pt;}
.fs2_c00473{font-size:28.069707pt;}
.fs1_c00473{font-size:40.672587pt;}
.fs0_c00473{font-size:60.722667pt;}
.fs4_c00473{font-size:70.462933pt;}
.fs3_c00473{font-size:100.822400pt;}
.y0_c00473{bottom:0.000000pt;}
.y18_c00473{bottom:19.575200pt;}
.y1e_c00473{bottom:19.575333pt;}
.y17_c00473{bottom:42.935067pt;}
.y1d_c00473{bottom:42.935200pt;}
.y16_c00473{bottom:66.294933pt;}
.y1c_c00473{bottom:66.296133pt;}
.y15_c00473{bottom:89.654800pt;}
.y1b_c00473{bottom:89.656000pt;}
.y14_c00473{bottom:113.014667pt;}
.y1a_c00473{bottom:113.015867pt;}
.y13_c00473{bottom:136.374533pt;}
.y19_c00473{bottom:136.374667pt;}
.y1f_c00473{bottom:138.614533pt;}
.y5_c00473{bottom:167.733200pt;}
.y12_c00473{bottom:186.613200pt;}
.y7_c00473{bottom:200.853200pt;}
.y8_c00473{bottom:238.933200pt;}
.y6_c00473{bottom:263.573200pt;}
.y9_c00473{bottom:277.013200pt;}
.ya_c00473{bottom:314.933200pt;}
.yb_c00473{bottom:353.013200pt;}
.yc_c00473{bottom:391.093200pt;}
.yd_c00473{bottom:429.173200pt;}
.ye_c00473{bottom:467.093200pt;}
.yf_c00473{bottom:505.173200pt;}
.y10_c00473{bottom:543.253200pt;}
.y11_c00473{bottom:581.173200pt;}
.y4_c00473{bottom:586.453200pt;}
.y3_c00473{bottom:596.533413pt;}
.y2_c00473{bottom:606.453200pt;}
.y1_c00473{bottom:628.373200pt;}
.y26_c00473{bottom:657.333200pt;}
.y23_c00473{bottom:667.572933pt;}
.y25_c00473{bottom:673.493200pt;}
.y22_c00473{bottom:690.613067pt;}
.y20_c00473{bottom:697.013200pt;}
.y24_c00473{bottom:706.293200pt;}
.y21_c00473{bottom:713.653200pt;}
.h3_c00473{height:29.610755pt;}
.h4_c00473{height:38.996047pt;}
.h2_c00473{height:44.207762pt;}
.h6_c00473{height:51.298942pt;}
.h5_c00473{height:73.401464pt;}
.h0_c00473{height:793.332933pt;}
.h1_c00473{height:793.333333pt;}
.w0_c00473{width:1122.666400pt;}
.w1_c00473{width:1122.666667pt;}
.x0_c00473{left:0.000000pt;}
.xa_c00473{left:24.147333pt;}
.xf_c00473{left:31.347333pt;}
.x13_c00473{left:34.227600pt;}
.x6_c00473{left:38.867733pt;}
.x9_c00473{left:46.867200pt;}
.x8_c00473{left:52.787467pt;}
.x7_c00473{left:58.707333pt;}
.x3_c00473{left:82.547591pt;}
.x4_c00473{left:164.788000pt;}
.x1_c00473{left:203.028000pt;}
.x2_c00473{left:255.508000pt;}
.x5_c00473{left:370.228000pt;}
.xc_c00473{left:426.067452pt;}
.xd_c00473{left:437.587758pt;}
.xb_c00473{left:444.627804pt;}
.x11_c00473{left:504.468000pt;}
.x12_c00473{left:569.428000pt;}
.x10_c00473{left:744.146667pt;}
.xe_c00473{left:780.948000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1651bb7a035dce4e84f42400.woff2')format("woff");}.ff1_c00474{font-family:ff1_c00474;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00474{transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);}
.m1_c00474{transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);}
.m4_c00474{transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);}
.m3_c00474{transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);}
.m0_c00474{transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);}
.v0_c00474{vertical-align:0.000000px;}
.v1_c00474{vertical-align:20.880600px;}
.ls1_c00474{letter-spacing:0.000000px;}
.ls0_c00474{letter-spacing:1.174340px;}
.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;}
}
.ws8_c00474{word-spacing:-31.532206px;}
.ws9_c00474{word-spacing:-22.037282px;}
.ws5_c00474{word-spacing:-13.894692px;}
.ws4_c00474{word-spacing:-12.720351px;}
.ws7_c00474{word-spacing:-8.778801px;}
.wsa_c00474{word-spacing:0.000000px;}
.ws6_c00474{word-spacing:83.472601px;}
.ws3_c00474{word-spacing:269.959261px;}
.ws1_c00474{word-spacing:1129.022707px;}
.ws0_c00474{word-spacing:1892.379401px;}
.ws2_c00474{word-spacing:4131.625069px;}
._a_c00474{margin-left:-1.174340px;}
._0_c00474{width:1.927205px;}
._1_c00474{width:3.578508px;}
._e_c00474{width:123.098455px;}
._17_c00474{width:135.002093px;}
._b_c00474{width:155.081320px;}
._11_c00474{width:156.097143px;}
._14_c00474{width:162.375998px;}
._d_c00474{width:182.391467px;}
._f_c00474{width:207.201036px;}
._15_c00474{width:220.640991px;}
._12_c00474{width:247.295292px;}
._9_c00474{width:294.223388px;}
._4_c00474{width:295.661959px;}
._6_c00474{width:313.608876px;}
._c_c00474{width:314.898471px;}
._8_c00474{width:332.288085px;}
._7_c00474{width:342.606009px;}
._10_c00474{width:367.678773px;}
._16_c00474{width:380.393128px;}
._3_c00474{width:389.856116px;}
._5_c00474{width:403.050224px;}
._13_c00474{width:407.761036px;}
._18_c00474{width:436.860973px;}
._2_c00474{width:1166.924601px;}
.fc1_c00474{color:transparent;}
.fc0_c00474{color:rgb(0,0,0);}
.fs2_c00474{font-size:31.578420px;}
.fs1_c00474{font-size:45.756660px;}
.fs0_c00474{font-size:68.313000px;}
.fs4_c00474{font-size:79.270800px;}
.fs3_c00474{font-size:113.425200px;}
.y0_c00474{bottom:0.000000px;}
.y18_c00474{bottom:22.022100px;}
.y1e_c00474{bottom:22.022250px;}
.y17_c00474{bottom:48.301950px;}
.y1d_c00474{bottom:48.302100px;}
.y16_c00474{bottom:74.581800px;}
.y1c_c00474{bottom:74.583150px;}
.y15_c00474{bottom:100.861650px;}
.y1b_c00474{bottom:100.863000px;}
.y14_c00474{bottom:127.141500px;}
.y1a_c00474{bottom:127.142850px;}
.y13_c00474{bottom:153.421350px;}
.y19_c00474{bottom:153.421500px;}
.y1f_c00474{bottom:155.941350px;}
.y5_c00474{bottom:188.699850px;}
.y12_c00474{bottom:209.939850px;}
.y7_c00474{bottom:225.959850px;}
.y8_c00474{bottom:268.799850px;}
.y6_c00474{bottom:296.519850px;}
.y9_c00474{bottom:311.639850px;}
.ya_c00474{bottom:354.299850px;}
.yb_c00474{bottom:397.139850px;}
.yc_c00474{bottom:439.979850px;}
.yd_c00474{bottom:482.819850px;}
.ye_c00474{bottom:525.479850px;}
.yf_c00474{bottom:568.319850px;}
.y10_c00474{bottom:611.159850px;}
.y11_c00474{bottom:653.819850px;}
.y4_c00474{bottom:659.759850px;}
.y3_c00474{bottom:671.100090px;}
.y2_c00474{bottom:682.259850px;}
.y1_c00474{bottom:706.919850px;}
.y26_c00474{bottom:739.499850px;}
.y23_c00474{bottom:751.019550px;}
.y25_c00474{bottom:757.679850px;}
.y22_c00474{bottom:776.939700px;}
.y20_c00474{bottom:784.139850px;}
.y24_c00474{bottom:794.579850px;}
.y21_c00474{bottom:802.859850px;}
.h3_c00474{height:33.312100px;}
.h4_c00474{height:43.870553px;}
.h2_c00474{height:49.733732px;}
.h6_c00474{height:57.711310px;}
.h5_c00474{height:82.576647px;}
.h0_c00474{height:892.499550px;}
.h1_c00474{height:892.500000px;}
.w0_c00474{width:1262.999700px;}
.w1_c00474{width:1263.000000px;}
.x0_c00474{left:0.000000px;}
.xa_c00474{left:27.165750px;}
.xf_c00474{left:35.265750px;}
.x13_c00474{left:38.506050px;}
.x6_c00474{left:43.726200px;}
.x9_c00474{left:52.725600px;}
.x8_c00474{left:59.385900px;}
.x7_c00474{left:66.045750px;}
.x3_c00474{left:92.866040px;}
.x4_c00474{left:185.386500px;}
.x1_c00474{left:228.406500px;}
.x2_c00474{left:287.446500px;}
.x5_c00474{left:416.506500px;}
.xc_c00474{left:479.325883px;}
.xd_c00474{left:492.286228px;}
.xb_c00474{left:500.206279px;}
.x11_c00474{left:567.526500px;}
.x12_c00474{left:640.606500px;}
.x10_c00474{left:837.165000px;}
.xe_c00474{left:878.566500px;}
@media print{
.v0_c00474{vertical-align:0.000000pt;}
.v1_c00474{vertical-align:18.560533pt;}
.ls1_c00474{letter-spacing:0.000000pt;}
.ls0_c00474{letter-spacing:1.043858pt;}
.ws8_c00474{word-spacing:-28.028627pt;}
.ws9_c00474{word-spacing:-19.588695pt;}
.ws5_c00474{word-spacing:-12.350837pt;}
.ws4_c00474{word-spacing:-11.306979pt;}
.ws7_c00474{word-spacing:-7.803378pt;}
.wsa_c00474{word-spacing:0.000000pt;}
.ws6_c00474{word-spacing:74.197868pt;}
.ws3_c00474{word-spacing:239.963787pt;}
.ws1_c00474{word-spacing:1003.575740pt;}
.ws0_c00474{word-spacing:1682.115023pt;}
.ws2_c00474{word-spacing:3672.555617pt;}
._a_c00474{margin-left:-1.043858pt;}
._0_c00474{width:1.713071pt;}
._1_c00474{width:3.180896pt;}
._e_c00474{width:109.420849pt;}
._17_c00474{width:120.001860pt;}
._b_c00474{width:137.850063pt;}
._11_c00474{width:138.753016pt;}
._14_c00474{width:144.334220pt;}
._d_c00474{width:162.125749pt;}
._f_c00474{width:184.178698pt;}
._15_c00474{width:196.125326pt;}
._12_c00474{width:219.818038pt;}
._9_c00474{width:261.531900pt;}
._4_c00474{width:262.810630pt;}
._6_c00474{width:278.763446pt;}
._c_c00474{width:279.909752pt;}
._8_c00474{width:295.367186pt;}
._7_c00474{width:304.538675pt;}
._10_c00474{width:326.825576pt;}
._16_c00474{width:338.127225pt;}
._3_c00474{width:346.538770pt;}
._5_c00474{width:358.266866pt;}
._13_c00474{width:362.454254pt;}
._18_c00474{width:388.320865pt;}
._2_c00474{width:1037.266312pt;}
.fs2_c00474{font-size:28.069707pt;}
.fs1_c00474{font-size:40.672587pt;}
.fs0_c00474{font-size:60.722667pt;}
.fs4_c00474{font-size:70.462933pt;}
.fs3_c00474{font-size:100.822400pt;}
.y0_c00474{bottom:0.000000pt;}
.y18_c00474{bottom:19.575200pt;}
.y1e_c00474{bottom:19.575333pt;}
.y17_c00474{bottom:42.935067pt;}
.y1d_c00474{bottom:42.935200pt;}
.y16_c00474{bottom:66.294933pt;}
.y1c_c00474{bottom:66.296133pt;}
.y15_c00474{bottom:89.654800pt;}
.y1b_c00474{bottom:89.656000pt;}
.y14_c00474{bottom:113.014667pt;}
.y1a_c00474{bottom:113.015867pt;}
.y13_c00474{bottom:136.374533pt;}
.y19_c00474{bottom:136.374667pt;}
.y1f_c00474{bottom:138.614533pt;}
.y5_c00474{bottom:167.733200pt;}
.y12_c00474{bottom:186.613200pt;}
.y7_c00474{bottom:200.853200pt;}
.y8_c00474{bottom:238.933200pt;}
.y6_c00474{bottom:263.573200pt;}
.y9_c00474{bottom:277.013200pt;}
.ya_c00474{bottom:314.933200pt;}
.yb_c00474{bottom:353.013200pt;}
.yc_c00474{bottom:391.093200pt;}
.yd_c00474{bottom:429.173200pt;}
.ye_c00474{bottom:467.093200pt;}
.yf_c00474{bottom:505.173200pt;}
.y10_c00474{bottom:543.253200pt;}
.y11_c00474{bottom:581.173200pt;}
.y4_c00474{bottom:586.453200pt;}
.y3_c00474{bottom:596.533413pt;}
.y2_c00474{bottom:606.453200pt;}
.y1_c00474{bottom:628.373200pt;}
.y26_c00474{bottom:657.333200pt;}
.y23_c00474{bottom:667.572933pt;}
.y25_c00474{bottom:673.493200pt;}
.y22_c00474{bottom:690.613067pt;}
.y20_c00474{bottom:697.013200pt;}
.y24_c00474{bottom:706.293200pt;}
.y21_c00474{bottom:713.653200pt;}
.h3_c00474{height:29.610755pt;}
.h4_c00474{height:38.996047pt;}
.h2_c00474{height:44.207762pt;}
.h6_c00474{height:51.298942pt;}
.h5_c00474{height:73.401464pt;}
.h0_c00474{height:793.332933pt;}
.h1_c00474{height:793.333333pt;}
.w0_c00474{width:1122.666400pt;}
.w1_c00474{width:1122.666667pt;}
.x0_c00474{left:0.000000pt;}
.xa_c00474{left:24.147333pt;}
.xf_c00474{left:31.347333pt;}
.x13_c00474{left:34.227600pt;}
.x6_c00474{left:38.867733pt;}
.x9_c00474{left:46.867200pt;}
.x8_c00474{left:52.787467pt;}
.x7_c00474{left:58.707333pt;}
.x3_c00474{left:82.547591pt;}
.x4_c00474{left:164.788000pt;}
.x1_c00474{left:203.028000pt;}
.x2_c00474{left:255.508000pt;}
.x5_c00474{left:370.228000pt;}
.xc_c00474{left:426.067452pt;}
.xd_c00474{left:437.587758pt;}
.xb_c00474{left:444.627804pt;}
.x11_c00474{left:504.468000pt;}
.x12_c00474{left:569.428000pt;}
.x10_c00474{left:744.146667pt;}
.xe_c00474{left:780.948000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ece509366f3f2802e4b778c4.woff2')format("woff");}.ff1_c00475{font-family:ff1_c00475;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00475{transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);}
.m1_c00475{transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);}
.m4_c00475{transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);}
.m3_c00475{transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);}
.m0_c00475{transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);}
.v0_c00475{vertical-align:0.000000px;}
.v1_c00475{vertical-align:20.880600px;}
.ls1_c00475{letter-spacing:0.000000px;}
.ls0_c00475{letter-spacing:1.174340px;}
.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;}
}
.ws8_c00475{word-spacing:-31.532206px;}
.ws9_c00475{word-spacing:-22.037282px;}
.ws5_c00475{word-spacing:-13.894692px;}
.ws4_c00475{word-spacing:-12.720351px;}
.ws7_c00475{word-spacing:-8.778801px;}
.wsa_c00475{word-spacing:0.000000px;}
.ws6_c00475{word-spacing:83.472601px;}
.ws3_c00475{word-spacing:269.959261px;}
.ws1_c00475{word-spacing:1129.022707px;}
.ws0_c00475{word-spacing:1892.379401px;}
.ws2_c00475{word-spacing:4131.625069px;}
._a_c00475{margin-left:-1.174340px;}
._0_c00475{width:1.927205px;}
._1_c00475{width:3.578508px;}
._e_c00475{width:123.098455px;}
._17_c00475{width:135.002093px;}
._b_c00475{width:155.081320px;}
._11_c00475{width:156.097143px;}
._14_c00475{width:162.375998px;}
._d_c00475{width:182.391467px;}
._f_c00475{width:207.201036px;}
._15_c00475{width:220.640991px;}
._12_c00475{width:247.295292px;}
._9_c00475{width:294.223388px;}
._4_c00475{width:295.661959px;}
._6_c00475{width:313.608876px;}
._c_c00475{width:314.898471px;}
._8_c00475{width:332.288085px;}
._7_c00475{width:342.606009px;}
._10_c00475{width:367.678773px;}
._16_c00475{width:380.393128px;}
._3_c00475{width:389.856116px;}
._5_c00475{width:403.050224px;}
._13_c00475{width:407.761036px;}
._18_c00475{width:436.860973px;}
._2_c00475{width:1166.924601px;}
.fc1_c00475{color:transparent;}
.fc0_c00475{color:rgb(0,0,0);}
.fs2_c00475{font-size:31.578420px;}
.fs1_c00475{font-size:45.756660px;}
.fs0_c00475{font-size:68.313000px;}
.fs4_c00475{font-size:79.270800px;}
.fs3_c00475{font-size:113.425200px;}
.y0_c00475{bottom:0.000000px;}
.y18_c00475{bottom:22.022100px;}
.y1e_c00475{bottom:22.022250px;}
.y17_c00475{bottom:48.301950px;}
.y1d_c00475{bottom:48.302100px;}
.y16_c00475{bottom:74.581800px;}
.y1c_c00475{bottom:74.583150px;}
.y15_c00475{bottom:100.861650px;}
.y1b_c00475{bottom:100.863000px;}
.y14_c00475{bottom:127.141500px;}
.y1a_c00475{bottom:127.142850px;}
.y13_c00475{bottom:153.421350px;}
.y19_c00475{bottom:153.421500px;}
.y1f_c00475{bottom:155.941350px;}
.y5_c00475{bottom:188.699850px;}
.y12_c00475{bottom:209.939850px;}
.y7_c00475{bottom:225.959850px;}
.y8_c00475{bottom:268.799850px;}
.y6_c00475{bottom:296.519850px;}
.y9_c00475{bottom:311.639850px;}
.ya_c00475{bottom:354.299850px;}
.yb_c00475{bottom:397.139850px;}
.yc_c00475{bottom:439.979850px;}
.yd_c00475{bottom:482.819850px;}
.ye_c00475{bottom:525.479850px;}
.yf_c00475{bottom:568.319850px;}
.y10_c00475{bottom:611.159850px;}
.y11_c00475{bottom:653.819850px;}
.y4_c00475{bottom:659.759850px;}
.y3_c00475{bottom:671.100090px;}
.y2_c00475{bottom:682.259850px;}
.y1_c00475{bottom:706.919850px;}
.y26_c00475{bottom:739.499850px;}
.y23_c00475{bottom:751.019550px;}
.y25_c00475{bottom:757.679850px;}
.y22_c00475{bottom:776.939700px;}
.y20_c00475{bottom:784.139850px;}
.y24_c00475{bottom:794.579850px;}
.y21_c00475{bottom:802.859850px;}
.h3_c00475{height:33.312100px;}
.h4_c00475{height:43.870553px;}
.h2_c00475{height:49.733732px;}
.h6_c00475{height:57.711310px;}
.h5_c00475{height:82.576647px;}
.h0_c00475{height:892.499550px;}
.h1_c00475{height:892.500000px;}
.w0_c00475{width:1262.999700px;}
.w1_c00475{width:1263.000000px;}
.x0_c00475{left:0.000000px;}
.xa_c00475{left:27.165750px;}
.x10_c00475{left:35.265750px;}
.x14_c00475{left:38.506050px;}
.x6_c00475{left:43.726200px;}
.x9_c00475{left:52.725600px;}
.x8_c00475{left:59.385900px;}
.x7_c00475{left:66.045750px;}
.x3_c00475{left:92.866040px;}
.x4_c00475{left:185.386500px;}
.x1_c00475{left:228.406500px;}
.x2_c00475{left:287.446500px;}
.x5_c00475{left:416.506500px;}
.xd_c00475{left:479.684178px;}
.xe_c00475{left:492.284175px;}
.xc_c00475{left:499.844010px;}
.xb_c00475{left:512.444006px;}
.x12_c00475{left:567.526500px;}
.x13_c00475{left:640.606500px;}
.x11_c00475{left:837.165000px;}
.xf_c00475{left:878.566500px;}
@media print{
.v0_c00475{vertical-align:0.000000pt;}
.v1_c00475{vertical-align:18.560533pt;}
.ls1_c00475{letter-spacing:0.000000pt;}
.ls0_c00475{letter-spacing:1.043858pt;}
.ws8_c00475{word-spacing:-28.028627pt;}
.ws9_c00475{word-spacing:-19.588695pt;}
.ws5_c00475{word-spacing:-12.350837pt;}
.ws4_c00475{word-spacing:-11.306979pt;}
.ws7_c00475{word-spacing:-7.803378pt;}
.wsa_c00475{word-spacing:0.000000pt;}
.ws6_c00475{word-spacing:74.197868pt;}
.ws3_c00475{word-spacing:239.963787pt;}
.ws1_c00475{word-spacing:1003.575740pt;}
.ws0_c00475{word-spacing:1682.115023pt;}
.ws2_c00475{word-spacing:3672.555617pt;}
._a_c00475{margin-left:-1.043858pt;}
._0_c00475{width:1.713071pt;}
._1_c00475{width:3.180896pt;}
._e_c00475{width:109.420849pt;}
._17_c00475{width:120.001860pt;}
._b_c00475{width:137.850063pt;}
._11_c00475{width:138.753016pt;}
._14_c00475{width:144.334220pt;}
._d_c00475{width:162.125749pt;}
._f_c00475{width:184.178698pt;}
._15_c00475{width:196.125326pt;}
._12_c00475{width:219.818038pt;}
._9_c00475{width:261.531900pt;}
._4_c00475{width:262.810630pt;}
._6_c00475{width:278.763446pt;}
._c_c00475{width:279.909752pt;}
._8_c00475{width:295.367186pt;}
._7_c00475{width:304.538675pt;}
._10_c00475{width:326.825576pt;}
._16_c00475{width:338.127225pt;}
._3_c00475{width:346.538770pt;}
._5_c00475{width:358.266866pt;}
._13_c00475{width:362.454254pt;}
._18_c00475{width:388.320865pt;}
._2_c00475{width:1037.266312pt;}
.fs2_c00475{font-size:28.069707pt;}
.fs1_c00475{font-size:40.672587pt;}
.fs0_c00475{font-size:60.722667pt;}
.fs4_c00475{font-size:70.462933pt;}
.fs3_c00475{font-size:100.822400pt;}
.y0_c00475{bottom:0.000000pt;}
.y18_c00475{bottom:19.575200pt;}
.y1e_c00475{bottom:19.575333pt;}
.y17_c00475{bottom:42.935067pt;}
.y1d_c00475{bottom:42.935200pt;}
.y16_c00475{bottom:66.294933pt;}
.y1c_c00475{bottom:66.296133pt;}
.y15_c00475{bottom:89.654800pt;}
.y1b_c00475{bottom:89.656000pt;}
.y14_c00475{bottom:113.014667pt;}
.y1a_c00475{bottom:113.015867pt;}
.y13_c00475{bottom:136.374533pt;}
.y19_c00475{bottom:136.374667pt;}
.y1f_c00475{bottom:138.614533pt;}
.y5_c00475{bottom:167.733200pt;}
.y12_c00475{bottom:186.613200pt;}
.y7_c00475{bottom:200.853200pt;}
.y8_c00475{bottom:238.933200pt;}
.y6_c00475{bottom:263.573200pt;}
.y9_c00475{bottom:277.013200pt;}
.ya_c00475{bottom:314.933200pt;}
.yb_c00475{bottom:353.013200pt;}
.yc_c00475{bottom:391.093200pt;}
.yd_c00475{bottom:429.173200pt;}
.ye_c00475{bottom:467.093200pt;}
.yf_c00475{bottom:505.173200pt;}
.y10_c00475{bottom:543.253200pt;}
.y11_c00475{bottom:581.173200pt;}
.y4_c00475{bottom:586.453200pt;}
.y3_c00475{bottom:596.533413pt;}
.y2_c00475{bottom:606.453200pt;}
.y1_c00475{bottom:628.373200pt;}
.y26_c00475{bottom:657.333200pt;}
.y23_c00475{bottom:667.572933pt;}
.y25_c00475{bottom:673.493200pt;}
.y22_c00475{bottom:690.613067pt;}
.y20_c00475{bottom:697.013200pt;}
.y24_c00475{bottom:706.293200pt;}
.y21_c00475{bottom:713.653200pt;}
.h3_c00475{height:29.610755pt;}
.h4_c00475{height:38.996047pt;}
.h2_c00475{height:44.207762pt;}
.h6_c00475{height:51.298942pt;}
.h5_c00475{height:73.401464pt;}
.h0_c00475{height:793.332933pt;}
.h1_c00475{height:793.333333pt;}
.w0_c00475{width:1122.666400pt;}
.w1_c00475{width:1122.666667pt;}
.x0_c00475{left:0.000000pt;}
.xa_c00475{left:24.147333pt;}
.x10_c00475{left:31.347333pt;}
.x14_c00475{left:34.227600pt;}
.x6_c00475{left:38.867733pt;}
.x9_c00475{left:46.867200pt;}
.x8_c00475{left:52.787467pt;}
.x7_c00475{left:58.707333pt;}
.x3_c00475{left:82.547591pt;}
.x4_c00475{left:164.788000pt;}
.x1_c00475{left:203.028000pt;}
.x2_c00475{left:255.508000pt;}
.x5_c00475{left:370.228000pt;}
.xd_c00475{left:426.385936pt;}
.xe_c00475{left:437.585933pt;}
.xc_c00475{left:444.305787pt;}
.xb_c00475{left:455.505783pt;}
.x12_c00475{left:504.468000pt;}
.x13_c00475{left:569.428000pt;}
.x11_c00475{left:744.146667pt;}
.xf_c00475{left:780.948000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_661a1a6b638f4796891c80ae.woff2')format("woff");}.ff1_c00476{font-family:ff1_c00476;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00476{transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);}
.m1_c00476{transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);}
.m4_c00476{transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);}
.m3_c00476{transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);}
.m0_c00476{transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);}
.v0_c00476{vertical-align:0.000000px;}
.v1_c00476{vertical-align:20.880600px;}
.ls1_c00476{letter-spacing:0.000000px;}
.ls0_c00476{letter-spacing:1.174340px;}
.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;}
}
.ws8_c00476{word-spacing:-31.532206px;}
.ws9_c00476{word-spacing:-22.037282px;}
.ws5_c00476{word-spacing:-13.894692px;}
.ws4_c00476{word-spacing:-12.720351px;}
.ws7_c00476{word-spacing:-8.778801px;}
.wsa_c00476{word-spacing:0.000000px;}
.ws6_c00476{word-spacing:83.472601px;}
.ws3_c00476{word-spacing:269.959261px;}
.ws1_c00476{word-spacing:1129.022707px;}
.ws0_c00476{word-spacing:1892.379401px;}
.ws2_c00476{word-spacing:4131.625069px;}
._a_c00476{margin-left:-1.174340px;}
._0_c00476{width:1.927205px;}
._1_c00476{width:3.578508px;}
._e_c00476{width:123.098455px;}
._17_c00476{width:135.002093px;}
._b_c00476{width:155.081320px;}
._11_c00476{width:156.097143px;}
._14_c00476{width:162.375998px;}
._d_c00476{width:182.391467px;}
._f_c00476{width:207.201036px;}
._15_c00476{width:220.640991px;}
._12_c00476{width:247.295292px;}
._9_c00476{width:294.223388px;}
._4_c00476{width:295.661959px;}
._6_c00476{width:313.608876px;}
._c_c00476{width:314.898471px;}
._8_c00476{width:332.288085px;}
._7_c00476{width:342.606009px;}
._10_c00476{width:367.678773px;}
._16_c00476{width:380.393128px;}
._3_c00476{width:389.856116px;}
._5_c00476{width:403.050224px;}
._13_c00476{width:407.761036px;}
._18_c00476{width:436.860973px;}
._2_c00476{width:1166.924601px;}
.fc1_c00476{color:transparent;}
.fc0_c00476{color:rgb(0,0,0);}
.fs2_c00476{font-size:31.578420px;}
.fs1_c00476{font-size:45.756660px;}
.fs0_c00476{font-size:68.313000px;}
.fs4_c00476{font-size:79.270800px;}
.fs3_c00476{font-size:113.425200px;}
.y0_c00476{bottom:0.000000px;}
.y18_c00476{bottom:22.022100px;}
.y1e_c00476{bottom:22.022250px;}
.y17_c00476{bottom:48.301950px;}
.y1d_c00476{bottom:48.302100px;}
.y16_c00476{bottom:74.581800px;}
.y1c_c00476{bottom:74.583150px;}
.y15_c00476{bottom:100.861650px;}
.y1b_c00476{bottom:100.863000px;}
.y14_c00476{bottom:127.141500px;}
.y1a_c00476{bottom:127.142850px;}
.y13_c00476{bottom:153.421350px;}
.y19_c00476{bottom:153.421500px;}
.y1f_c00476{bottom:155.941350px;}
.y5_c00476{bottom:188.699850px;}
.y12_c00476{bottom:209.939850px;}
.y7_c00476{bottom:225.959850px;}
.y8_c00476{bottom:268.799850px;}
.y6_c00476{bottom:296.519850px;}
.y9_c00476{bottom:311.639850px;}
.ya_c00476{bottom:354.299850px;}
.yb_c00476{bottom:397.139850px;}
.yc_c00476{bottom:439.979850px;}
.yd_c00476{bottom:482.819850px;}
.ye_c00476{bottom:525.479850px;}
.yf_c00476{bottom:568.319850px;}
.y10_c00476{bottom:611.159850px;}
.y11_c00476{bottom:653.819850px;}
.y4_c00476{bottom:659.759850px;}
.y3_c00476{bottom:671.100090px;}
.y2_c00476{bottom:682.259850px;}
.y1_c00476{bottom:706.919850px;}
.y26_c00476{bottom:739.499850px;}
.y23_c00476{bottom:751.019550px;}
.y25_c00476{bottom:757.679850px;}
.y22_c00476{bottom:776.939700px;}
.y20_c00476{bottom:784.139850px;}
.y24_c00476{bottom:794.579850px;}
.y21_c00476{bottom:802.859850px;}
.h3_c00476{height:33.312100px;}
.h4_c00476{height:43.870553px;}
.h2_c00476{height:49.733732px;}
.h6_c00476{height:57.711310px;}
.h5_c00476{height:82.576647px;}
.h0_c00476{height:892.499550px;}
.h1_c00476{height:892.500000px;}
.w0_c00476{width:1262.999700px;}
.w1_c00476{width:1263.000000px;}
.x0_c00476{left:0.000000px;}
.xa_c00476{left:27.165750px;}
.xf_c00476{left:35.265750px;}
.x13_c00476{left:38.506050px;}
.x6_c00476{left:43.726200px;}
.x9_c00476{left:52.725600px;}
.x8_c00476{left:59.385900px;}
.x7_c00476{left:66.045750px;}
.x3_c00476{left:92.866040px;}
.x4_c00476{left:185.386500px;}
.x1_c00476{left:228.406500px;}
.x2_c00476{left:287.446500px;}
.x5_c00476{left:416.506500px;}
.xc_c00476{left:479.686231px;}
.xd_c00476{left:492.286228px;}
.xb_c00476{left:500.206279px;}
.x11_c00476{left:567.526500px;}
.x12_c00476{left:640.606500px;}
.x10_c00476{left:837.165000px;}
.xe_c00476{left:878.566500px;}
@media print{
.v0_c00476{vertical-align:0.000000pt;}
.v1_c00476{vertical-align:18.560533pt;}
.ls1_c00476{letter-spacing:0.000000pt;}
.ls0_c00476{letter-spacing:1.043858pt;}
.ws8_c00476{word-spacing:-28.028627pt;}
.ws9_c00476{word-spacing:-19.588695pt;}
.ws5_c00476{word-spacing:-12.350837pt;}
.ws4_c00476{word-spacing:-11.306979pt;}
.ws7_c00476{word-spacing:-7.803378pt;}
.wsa_c00476{word-spacing:0.000000pt;}
.ws6_c00476{word-spacing:74.197868pt;}
.ws3_c00476{word-spacing:239.963787pt;}
.ws1_c00476{word-spacing:1003.575740pt;}
.ws0_c00476{word-spacing:1682.115023pt;}
.ws2_c00476{word-spacing:3672.555617pt;}
._a_c00476{margin-left:-1.043858pt;}
._0_c00476{width:1.713071pt;}
._1_c00476{width:3.180896pt;}
._e_c00476{width:109.420849pt;}
._17_c00476{width:120.001860pt;}
._b_c00476{width:137.850063pt;}
._11_c00476{width:138.753016pt;}
._14_c00476{width:144.334220pt;}
._d_c00476{width:162.125749pt;}
._f_c00476{width:184.178698pt;}
._15_c00476{width:196.125326pt;}
._12_c00476{width:219.818038pt;}
._9_c00476{width:261.531900pt;}
._4_c00476{width:262.810630pt;}
._6_c00476{width:278.763446pt;}
._c_c00476{width:279.909752pt;}
._8_c00476{width:295.367186pt;}
._7_c00476{width:304.538675pt;}
._10_c00476{width:326.825576pt;}
._16_c00476{width:338.127225pt;}
._3_c00476{width:346.538770pt;}
._5_c00476{width:358.266866pt;}
._13_c00476{width:362.454254pt;}
._18_c00476{width:388.320865pt;}
._2_c00476{width:1037.266312pt;}
.fs2_c00476{font-size:28.069707pt;}
.fs1_c00476{font-size:40.672587pt;}
.fs0_c00476{font-size:60.722667pt;}
.fs4_c00476{font-size:70.462933pt;}
.fs3_c00476{font-size:100.822400pt;}
.y0_c00476{bottom:0.000000pt;}
.y18_c00476{bottom:19.575200pt;}
.y1e_c00476{bottom:19.575333pt;}
.y17_c00476{bottom:42.935067pt;}
.y1d_c00476{bottom:42.935200pt;}
.y16_c00476{bottom:66.294933pt;}
.y1c_c00476{bottom:66.296133pt;}
.y15_c00476{bottom:89.654800pt;}
.y1b_c00476{bottom:89.656000pt;}
.y14_c00476{bottom:113.014667pt;}
.y1a_c00476{bottom:113.015867pt;}
.y13_c00476{bottom:136.374533pt;}
.y19_c00476{bottom:136.374667pt;}
.y1f_c00476{bottom:138.614533pt;}
.y5_c00476{bottom:167.733200pt;}
.y12_c00476{bottom:186.613200pt;}
.y7_c00476{bottom:200.853200pt;}
.y8_c00476{bottom:238.933200pt;}
.y6_c00476{bottom:263.573200pt;}
.y9_c00476{bottom:277.013200pt;}
.ya_c00476{bottom:314.933200pt;}
.yb_c00476{bottom:353.013200pt;}
.yc_c00476{bottom:391.093200pt;}
.yd_c00476{bottom:429.173200pt;}
.ye_c00476{bottom:467.093200pt;}
.yf_c00476{bottom:505.173200pt;}
.y10_c00476{bottom:543.253200pt;}
.y11_c00476{bottom:581.173200pt;}
.y4_c00476{bottom:586.453200pt;}
.y3_c00476{bottom:596.533413pt;}
.y2_c00476{bottom:606.453200pt;}
.y1_c00476{bottom:628.373200pt;}
.y26_c00476{bottom:657.333200pt;}
.y23_c00476{bottom:667.572933pt;}
.y25_c00476{bottom:673.493200pt;}
.y22_c00476{bottom:690.613067pt;}
.y20_c00476{bottom:697.013200pt;}
.y24_c00476{bottom:706.293200pt;}
.y21_c00476{bottom:713.653200pt;}
.h3_c00476{height:29.610755pt;}
.h4_c00476{height:38.996047pt;}
.h2_c00476{height:44.207762pt;}
.h6_c00476{height:51.298942pt;}
.h5_c00476{height:73.401464pt;}
.h0_c00476{height:793.332933pt;}
.h1_c00476{height:793.333333pt;}
.w0_c00476{width:1122.666400pt;}
.w1_c00476{width:1122.666667pt;}
.x0_c00476{left:0.000000pt;}
.xa_c00476{left:24.147333pt;}
.xf_c00476{left:31.347333pt;}
.x13_c00476{left:34.227600pt;}
.x6_c00476{left:38.867733pt;}
.x9_c00476{left:46.867200pt;}
.x8_c00476{left:52.787467pt;}
.x7_c00476{left:58.707333pt;}
.x3_c00476{left:82.547591pt;}
.x4_c00476{left:164.788000pt;}
.x1_c00476{left:203.028000pt;}
.x2_c00476{left:255.508000pt;}
.x5_c00476{left:370.228000pt;}
.xc_c00476{left:426.387761pt;}
.xd_c00476{left:437.587758pt;}
.xb_c00476{left:444.627804pt;}
.x11_c00476{left:504.468000pt;}
.x12_c00476{left:569.428000pt;}
.x10_c00476{left:744.146667pt;}
.xe_c00476{left:780.948000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6e242377719928337c765842.woff2')format("woff");}.ff1_c00477{font-family:ff1_c00477;line-height:0.929199;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00477;src:url('chunks/assets/font_c519e6b7ba0b2437d7b05373.woff2')format("woff");}.ff2_c00477{font-family:ff2_c00477;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00477{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00477{vertical-align:0.000000px;}
.ls0_c00477{letter-spacing:0.000000px;}
.sc__c00477{text-shadow:none;}
.sc0_c00477{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00477{-webkit-text-stroke:0px transparent;}
.sc0_c00477{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00477{word-spacing:0.000000px;}
._0_c00477{margin-left:-1.126373px;}
._1_c00477{width:845.705952px;}
.fc1_c00477{color:rgb(64,64,64);}
.fc0_c00477{color:rgb(0,0,0);}
.fs1_c00477{font-size:66.240000px;}
.fs0_c00477{font-size:95.760000px;}
.y0_c00477{bottom:0.000000px;}
.y3_c00477{bottom:734.145000px;}
.y2_c00477{bottom:771.765000px;}
.y1_c00477{bottom:814.965000px;}
.h3_c00477{height:48.224531px;}
.h2_c00477{height:68.827500px;}
.h0_c00477{height:1262.879850px;}
.h1_c00477{height:1263.000000px;}
.w0_c00477{width:892.979850px;}
.w1_c00477{width:893.250000px;}
.x0_c00477{left:0.000000px;}
.x2_c00477{left:118.476000px;}
.x1_c00477{left:427.755000px;}
.x3_c00477{left:446.475000px;}
@media print{
.v0_c00477{vertical-align:0.000000pt;}
.ls0_c00477{letter-spacing:0.000000pt;}
.ws0_c00477{word-spacing:0.000000pt;}
._0_c00477{margin-left:-1.001220pt;}
._1_c00477{width:751.738624pt;}
.fs1_c00477{font-size:58.880000pt;}
.fs0_c00477{font-size:85.120000pt;}
.y0_c00477{bottom:0.000000pt;}
.y3_c00477{bottom:652.573333pt;}
.y2_c00477{bottom:686.013333pt;}
.y1_c00477{bottom:724.413333pt;}
.h3_c00477{height:42.866250pt;}
.h2_c00477{height:61.180000pt;}
.h0_c00477{height:1122.559867pt;}
.h1_c00477{height:1122.666667pt;}
.w0_c00477{width:793.759867pt;}
.w1_c00477{width:794.000000pt;}
.x0_c00477{left:0.000000pt;}
.x2_c00477{left:105.312000pt;}
.x1_c00477{left:380.226667pt;}
.x3_c00477{left:396.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_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_746794f144d948efeabdb050.woff2')format("woff");}.ff1_c00478{font-family:ff1_c00478;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00478;src:url('chunks/assets/font_d362eb834eb340dd81cabbb6.woff2')format("woff");}.ff2_c00478{font-family:ff2_c00478;line-height:0.932000;font-style:normal;font-weight:normal;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_d409e09ced84d86c194ac7c6.woff2')format("woff");}.ff3_c00478{font-family:ff3_c00478;line-height:0.995000;font-style:normal;font-weight:normal;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_7f5cb302c585a1f4598e2d2d.woff2')format("woff");}.ff4_c00478{font-family:ff4_c00478;line-height:1.105000;font-style:normal;font-weight:normal;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_3b9181e3453e9002dcf29ba6.woff2')format("woff");}.ff5_c00478{font-family:ff5_c00478;line-height:0.993000;font-style:normal;font-weight:normal;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_f590788b7d1bac9d8dfa02b1.woff2')format("woff");}.ff6_c00478{font-family:ff6_c00478;line-height:0.666504;font-style:normal;font-weight:normal;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_3554bff470ead02c939ce4b2.woff2')format("woff");}.ff7_c00478{font-family:ff7_c00478;line-height:0.666504;font-style: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:2.880468px;}
.ls7_c00478{letter-spacing:0.000000px;}
.ls6_c00478{letter-spacing:0.493920px;}
.ls1_c00478{letter-spacing:5.760000px;}
.ls3_c00478{letter-spacing:103.961880px;}
.ls5_c00478{letter-spacing:110.447280px;}
.ls2_c00478{letter-spacing:139.801800px;}
.ls4_c00478{letter-spacing:146.712000px;}
.ls0_c00478{letter-spacing:149.592600px;}
.sc__c00478{text-shadow:none;}
.sc0_c00478{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00478{-webkit-text-stroke:0px transparent;}
.sc0_c00478{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00478{word-spacing:-18.000000px;}
.ws1_c00478{word-spacing:-16.560000px;}
.ws2_c00478{word-spacing:-10.440000px;}
.ws3_c00478{word-spacing:0.000000px;}
._3_c00478{margin-left:-5.199616px;}
._2_c00478{margin-left:-3.179847px;}
._1_c00478{margin-left:-1.297131px;}
._0_c00478{width:1.054688px;}
._8_c00478{width:2.124249px;}
._6_c00478{width:4.067463px;}
._4_c00478{width:5.100988px;}
._5_c00478{width:6.349563px;}
._7_c00478{width:7.945507px;}
.fc2_c00478{color:rgb(148,193,28);}
.fc1_c00478{color:rgb(255,0,0);}
.fc0_c00478{color:rgb(0,0,0);}
.fs4_c00478{font-size:41.760000px;}
.fs1_c00478{font-size:48.240000px;}
.fs3_c00478{font-size:54.000000px;}
.fs0_c00478{font-size:66.240000px;}
.fs2_c00478{font-size:72.000000px;}
.y0_c00478{bottom:0.000000px;}
.y39_c00478{bottom:3.960000px;}
.y37_c00478{bottom:3.960900px;}
.y3c_c00478{bottom:5.040000px;}
.y3b_c00478{bottom:5.400000px;}
.y5_c00478{bottom:7.920150px;}
.y21_c00478{bottom:14.759700px;}
.y36_c00478{bottom:20.521200px;}
.y1e_c00478{bottom:22.140469px;}
.y1f_c00478{bottom:31.140000px;}
.y4_c00478{bottom:31.176000px;}
.y20_c00478{bottom:32.220000px;}
.y1d_c00478{bottom:35.460000px;}
.y35_c00478{bottom:36.901050px;}
.y3_c00478{bottom:41.220150px;}
.y34_c00478{bottom:54.001050px;}
.y33_c00478{bottom:70.561350px;}
.y32_c00478{bottom:87.121650px;}
.y2_c00478{bottom:88.956000px;}
.y31_c00478{bottom:103.501500px;}
.y7_c00478{bottom:113.070000px;}
.y30_c00478{bottom:120.106350px;}
.y2f_c00478{bottom:136.666050px;}
.y27_c00478{bottom:151.245150px;}
.y2e_c00478{bottom:154.845900px;}
.y26_c00478{bottom:171.045150px;}
.y2d_c00478{bottom:171.766050px;}
.y2c_c00478{bottom:188.145900px;}
.y25_c00478{bottom:192.105450px;}
.y1b_c00478{bottom:198.030600px;}
.y2b_c00478{bottom:204.705600px;}
.y24_c00478{bottom:212.985300px;}
.y1a_c00478{bottom:218.190300px;}
.y2a_c00478{bottom:221.265300px;}
.y23_c00478{bottom:234.045000px;}
.y28_c00478{bottom:235.305000px;}
.y29_c00478{bottom:237.825000px;}
.y19_c00478{bottom:238.350600px;}
.y18_c00478{bottom:267.510300px;}
.y17_c00478{bottom:296.310300px;}
.y16_c00478{bottom:326.730450px;}
.y15_c00478{bottom:355.935300px;}
.y14_c00478{bottom:376.095600px;}
.y13_c00478{bottom:405.255300px;}
.y12_c00478{bottom:434.775450px;}
.y11_c00478{bottom:457.095000px;}
.y10_c00478{bottom:488.955300px;}
.yf_c00478{bottom:509.115900px;}
.ye_c00478{bottom:529.275600px;}
.yd_c00478{bottom:549.435900px;}
.yc_c00478{bottom:578.955450px;}
.yb_c00478{bottom:601.095750px;}
.ya_c00478{bottom:624.705450px;}
.y9_c00478{bottom:648.285300px;}
.y8_c00478{bottom:680.145000px;}
.y3a_c00478{bottom:725.505000px;}
.y38_c00478{bottom:743.505000px;}
.y22_c00478{bottom:766.005000px;}
.y1c_c00478{bottom:1016.970000px;}
.y6_c00478{bottom:1092.930000px;}
.y1_c00478{bottom:1247.400000px;}
.h13_c00478{height:18.000000px;}
.h11_c00478{height:22.500000px;}
.hd_c00478{height:30.401280px;}
.h3_c00478{height:35.118720px;}
.hc_c00478{height:37.918080px;}
.h12_c00478{height:39.906000px;}
.h10_c00478{height:40.176000px;}
.hf_c00478{height:43.801920px;}
.hb_c00478{height:46.800000px;}
.h4_c00478{height:48.455850px;}
.ha_c00478{height:48.951360px;}
.h7_c00478{height:49.032000px;}
.h2_c00478{height:49.282560px;}
.h8_c00478{height:53.064000px;}
.h9_c00478{height:53.208000px;}
.h5_c00478{height:53.568000px;}
.h6_c00478{height:127.655850px;}
.he_c00478{height:250.950000px;}
.h1_c00478{height:1263.000000px;}
.h0_c00478{height:1263.059850px;}
.w5_c00478{width:50.940300px;}
.w8_c00478{width:212.611500px;}
.w6_c00478{width:255.135000px;}
.w9_c00478{width:276.508500px;}
.w3_c00478{width:438.016500px;}
.w4_c00478{width:438.195000px;}
.w2_c00478{width:597.526500px;}
.w7_c00478{width:744.270000px;}
.w0_c00478{width:892.979850px;}
.w1_c00478{width:893.250000px;}
.x0_c00478{left:0.000000px;}
.x4_c00478{left:10.800000px;}
.x3_c00478{left:97.776000px;}
.x2_c00478{left:106.416000px;}
.x7_c00478{left:319.035000px;}
.x5_c00478{left:544.605000px;}
.x6_c00478{left:595.545000px;}
.x1_c00478{left:850.680000px;}
@media print{
.v0_c00478{vertical-align:0.000000pt;}
.v1_c00478{vertical-align:2.560416pt;}
.ls7_c00478{letter-spacing:0.000000pt;}
.ls6_c00478{letter-spacing:0.439040pt;}
.ls1_c00478{letter-spacing:5.120000pt;}
.ls3_c00478{letter-spacing:92.410560pt;}
.ls5_c00478{letter-spacing:98.175360pt;}
.ls2_c00478{letter-spacing:124.268267pt;}
.ls4_c00478{letter-spacing:130.410667pt;}
.ls0_c00478{letter-spacing:132.971200pt;}
.ws0_c00478{word-spacing:-16.000000pt;}
.ws1_c00478{word-spacing:-14.720000pt;}
.ws2_c00478{word-spacing:-9.280000pt;}
.ws3_c00478{word-spacing:0.000000pt;}
._3_c00478{margin-left:-4.621881pt;}
._2_c00478{margin-left:-2.826531pt;}
._1_c00478{margin-left:-1.153005pt;}
._0_c00478{width:0.937500pt;}
._8_c00478{width:1.888221pt;}
._6_c00478{width:3.615523pt;}
._4_c00478{width:4.534212pt;}
._5_c00478{width:5.644056pt;}
._7_c00478{width:7.062672pt;}
.fs4_c00478{font-size:37.120000pt;}
.fs1_c00478{font-size:42.880000pt;}
.fs3_c00478{font-size:48.000000pt;}
.fs0_c00478{font-size:58.880000pt;}
.fs2_c00478{font-size:64.000000pt;}
.y0_c00478{bottom:0.000000pt;}
.y39_c00478{bottom:3.520000pt;}
.y37_c00478{bottom:3.520800pt;}
.y3c_c00478{bottom:4.480000pt;}
.y3b_c00478{bottom:4.800000pt;}
.y5_c00478{bottom:7.040133pt;}
.y21_c00478{bottom:13.119733pt;}
.y36_c00478{bottom:18.241067pt;}
.y1e_c00478{bottom:19.680417pt;}
.y1f_c00478{bottom:27.680000pt;}
.y4_c00478{bottom:27.712000pt;}
.y20_c00478{bottom:28.640000pt;}
.y1d_c00478{bottom:31.520000pt;}
.y35_c00478{bottom:32.800933pt;}
.y3_c00478{bottom:36.640133pt;}
.y34_c00478{bottom:48.000933pt;}
.y33_c00478{bottom:62.721200pt;}
.y32_c00478{bottom:77.441467pt;}
.y2_c00478{bottom:79.072000pt;}
.y31_c00478{bottom:92.001333pt;}
.y7_c00478{bottom:100.506667pt;}
.y30_c00478{bottom:106.761200pt;}
.y2f_c00478{bottom:121.480933pt;}
.y27_c00478{bottom:134.440133pt;}
.y2e_c00478{bottom:137.640800pt;}
.y26_c00478{bottom:152.040133pt;}
.y2d_c00478{bottom:152.680933pt;}
.y2c_c00478{bottom:167.240800pt;}
.y25_c00478{bottom:170.760400pt;}
.y1b_c00478{bottom:176.027200pt;}
.y2b_c00478{bottom:181.960533pt;}
.y24_c00478{bottom:189.320267pt;}
.y1a_c00478{bottom:193.946933pt;}
.y2a_c00478{bottom:196.680267pt;}
.y23_c00478{bottom:208.040000pt;}
.y28_c00478{bottom:209.160000pt;}
.y29_c00478{bottom:211.400000pt;}
.y19_c00478{bottom:211.867200pt;}
.y18_c00478{bottom:237.786933pt;}
.y17_c00478{bottom:263.386933pt;}
.y16_c00478{bottom:290.427067pt;}
.y15_c00478{bottom:316.386933pt;}
.y14_c00478{bottom:334.307200pt;}
.y13_c00478{bottom:360.226933pt;}
.y12_c00478{bottom:386.467067pt;}
.y11_c00478{bottom:406.306667pt;}
.y10_c00478{bottom:434.626933pt;}
.yf_c00478{bottom:452.547467pt;}
.ye_c00478{bottom:470.467200pt;}
.yd_c00478{bottom:488.387467pt;}
.yc_c00478{bottom:514.627067pt;}
.yb_c00478{bottom:534.307333pt;}
.ya_c00478{bottom:555.293733pt;}
.y9_c00478{bottom:576.253600pt;}
.y8_c00478{bottom:604.573333pt;}
.y3a_c00478{bottom:644.893333pt;}
.y38_c00478{bottom:660.893333pt;}
.y22_c00478{bottom:680.893333pt;}
.y1c_c00478{bottom:903.973333pt;}
.y6_c00478{bottom:971.493333pt;}
.y1_c00478{bottom:1108.800000pt;}
.h13_c00478{height:16.000000pt;}
.h11_c00478{height:20.000000pt;}
.hd_c00478{height:27.023360pt;}
.h3_c00478{height:31.216640pt;}
.hc_c00478{height:33.704960pt;}
.h12_c00478{height:35.472000pt;}
.h10_c00478{height:35.712000pt;}
.hf_c00478{height:38.935040pt;}
.hb_c00478{height:41.600000pt;}
.h4_c00478{height:43.071867pt;}
.ha_c00478{height:43.512320pt;}
.h7_c00478{height:43.584000pt;}
.h2_c00478{height:43.806720pt;}
.h8_c00478{height:47.168000pt;}
.h9_c00478{height:47.296000pt;}
.h5_c00478{height:47.616000pt;}
.h6_c00478{height:113.471867pt;}
.he_c00478{height:223.066667pt;}
.h1_c00478{height:1122.666667pt;}
.h0_c00478{height:1122.719867pt;}
.w5_c00478{width:45.280267pt;}
.w8_c00478{width:188.988000pt;}
.w6_c00478{width:226.786667pt;}
.w9_c00478{width:245.785333pt;}
.w3_c00478{width:389.348000pt;}
.w4_c00478{width:389.506667pt;}
.w2_c00478{width:531.134667pt;}
.w7_c00478{width:661.573333pt;}
.w0_c00478{width:793.759867pt;}
.w1_c00478{width:794.000000pt;}
.x0_c00478{left:0.000000pt;}
.x4_c00478{left:9.600000pt;}
.x3_c00478{left:86.912000pt;}
.x2_c00478{left:94.592000pt;}
.x7_c00478{left:283.586667pt;}
.x5_c00478{left:484.093333pt;}
.x6_c00478{left:529.373333pt;}
.x1_c00478{left:756.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_66d39d2716a4585863e71a47.woff2')format("woff");}.ff1_c00479{font-family:ff1_c00479;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00479;src:url('chunks/assets/font_7a685247c4d63a91d6dbea52.woff2')format("woff");}.ff2_c00479{font-family:ff2_c00479;line-height:1.105000;font-style:normal;font-weight:normal;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_4b0e12878d36f693a9079097.woff2')format("woff");}.ff3_c00479{font-family:ff3_c00479;line-height:0.666504;font-style:normal;font-weight:normal;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_55e3eacafe713d788bec6470.woff2')format("woff");}.ff4_c00479{font-family:ff4_c00479;line-height:0.932000;font-style:normal;font-weight:normal;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_0d93fa96d991ec78c78f4e80.woff2')format("woff");}.ff5_c00479{font-family:ff5_c00479;line-height:0.869000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00479{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00479{vertical-align:0.000000px;}
.ls0_c00479{letter-spacing:0.000000px;}
.sc__c00479{text-shadow:none;}
.sc0_c00479{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00479{-webkit-text-stroke:0px transparent;}
.sc0_c00479{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00479{word-spacing:-12.060000px;}
.ws1_c00479{word-spacing:0.000000px;}
._0_c00479{margin-left:-1.117246px;}
._1_c00479{width:1.344834px;}
.fc0_c00479{color:rgb(0,0,0);}
.fs1_c00479{font-size:48.240000px;}
.fs2_c00479{font-size:54.000000px;}
.fs0_c00479{font-size:66.240000px;}
.y0_c00479{bottom:0.000000px;}
.y2_c00479{bottom:46.260000px;}
.y1a_c00479{bottom:70.021050px;}
.y19_c00479{bottom:99.217200px;}
.y18_c00479{bottom:128.376900px;}
.y17_c00479{bottom:157.711200px;}
.y16_c00479{bottom:186.870900px;}
.y15_c00479{bottom:216.030600px;}
.y14_c00479{bottom:245.190300px;}
.y13_c00479{bottom:274.350000px;}
.y12_c00479{bottom:303.509700px;}
.y11_c00479{bottom:332.669400px;}
.y10_c00479{bottom:361.874850px;}
.yf_c00479{bottom:391.035150px;}
.ye_c00479{bottom:420.195450px;}
.yd_c00479{bottom:449.355750px;}
.yc_c00479{bottom:478.516050px;}
.yb_c00479{bottom:507.676350px;}
.ya_c00479{bottom:536.836650px;}
.y9_c00479{bottom:565.996950px;}
.y8_c00479{bottom:595.157250px;}
.y7_c00479{bottom:624.346350px;}
.y6_c00479{bottom:653.505600px;}
.y5_c00479{bottom:682.664850px;}
.y4_c00479{bottom:716.864850px;}
.y3_c00479{bottom:748.185000px;}
.y1_c00479{bottom:1054.410000px;}
.h5_c00479{height:40.176000px;}
.h3_c00479{height:43.801920px;}
.h4_c00479{height:44.149219px;}
.h2_c00479{height:49.282560px;}
.h1_c00479{height:1263.000000px;}
.h0_c00479{height:1263.059850px;}
.w0_c00479{width:892.979850px;}
.w1_c00479{width:893.250000px;}
.x0_c00479{left:0.000000px;}
.x1_c00479{left:106.415700px;}
.x3_c00479{left:183.450000px;}
.x2_c00479{left:773.610000px;}
@media print{
.v0_c00479{vertical-align:0.000000pt;}
.ls0_c00479{letter-spacing:0.000000pt;}
.ws0_c00479{word-spacing:-10.720000pt;}
.ws1_c00479{word-spacing:0.000000pt;}
._0_c00479{margin-left:-0.993107pt;}
._1_c00479{width:1.195408pt;}
.fs1_c00479{font-size:42.880000pt;}
.fs2_c00479{font-size:48.000000pt;}
.fs0_c00479{font-size:58.880000pt;}
.y0_c00479{bottom:0.000000pt;}
.y2_c00479{bottom:41.120000pt;}
.y1a_c00479{bottom:62.240933pt;}
.y19_c00479{bottom:88.193067pt;}
.y18_c00479{bottom:114.112800pt;}
.y17_c00479{bottom:140.187733pt;}
.y16_c00479{bottom:166.107467pt;}
.y15_c00479{bottom:192.027200pt;}
.y14_c00479{bottom:217.946933pt;}
.y13_c00479{bottom:243.866667pt;}
.y12_c00479{bottom:269.786400pt;}
.y11_c00479{bottom:295.706133pt;}
.y10_c00479{bottom:321.666533pt;}
.yf_c00479{bottom:347.586800pt;}
.ye_c00479{bottom:373.507067pt;}
.yd_c00479{bottom:399.427333pt;}
.yc_c00479{bottom:425.347600pt;}
.yb_c00479{bottom:451.267867pt;}
.ya_c00479{bottom:477.188133pt;}
.y9_c00479{bottom:503.108400pt;}
.y8_c00479{bottom:529.028667pt;}
.y7_c00479{bottom:554.974533pt;}
.y6_c00479{bottom:580.893867pt;}
.y5_c00479{bottom:606.813200pt;}
.y4_c00479{bottom:637.213200pt;}
.y3_c00479{bottom:665.053333pt;}
.y1_c00479{bottom:937.253333pt;}
.h5_c00479{height:35.712000pt;}
.h3_c00479{height:38.935040pt;}
.h4_c00479{height:39.243750pt;}
.h2_c00479{height:43.806720pt;}
.h1_c00479{height:1122.666667pt;}
.h0_c00479{height:1122.719867pt;}
.w0_c00479{width:793.759867pt;}
.w1_c00479{width:794.000000pt;}
.x0_c00479{left:0.000000pt;}
.x1_c00479{left:94.591733pt;}
.x3_c00479{left:163.066667pt;}
.x2_c00479{left:687.653333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_9286e57d8990e0e7597fd16e.woff2')format("woff");}.ff1_c00480{font-family:ff1_c00480;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00480;src:url('chunks/assets/font_7a685247c4d63a91d6dbea52.woff2')format("woff");}.ff2_c00480{font-family:ff2_c00480;line-height:1.105000;font-style:normal;font-weight:normal;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_4b0e12878d36f693a9079097.woff2')format("woff");}.ff3_c00480{font-family:ff3_c00480;line-height:0.666504;font-style:normal;font-weight:normal;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_11c79c2ff83fc5ed5b815a72.woff2')format("woff");}.ff4_c00480{font-family:ff4_c00480;line-height:0.932000;font-style:normal;font-weight:normal;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_03c0eaa8dd0bdc5b6eec68de.woff2')format("woff");}.ff5_c00480{font-family:ff5_c00480;line-height:0.995000;font-style:normal;font-weight:normal;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_f590788b7d1bac9d8dfa02b1.woff2')format("woff");}.ff6_c00480{font-family:ff6_c00480;line-height:0.666504;font-style: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;}
.ls2_c00480{letter-spacing:0.000000px;}
.ls1_c00480{letter-spacing:102.523080px;}
.ls0_c00480{letter-spacing:138.363000px;}
.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;}
}
.ws1_c00480{word-spacing:-18.000000px;}
.ws2_c00480{word-spacing:-16.560000px;}
.ws0_c00480{word-spacing:-12.060000px;}
.ws3_c00480{word-spacing:0.000000px;}
._0_c00480{margin-left:-1.117246px;}
.fc0_c00480{color:rgb(0,0,0);}
.fs1_c00480{font-size:48.240000px;}
.fs0_c00480{font-size:66.240000px;}
.fs2_c00480{font-size:72.000000px;}
.y0_c00480{bottom:0.000000px;}
.y2_c00480{bottom:46.260000px;}
.y4_c00480{bottom:994.110450px;}
.y3_c00480{bottom:1023.630000px;}
.y1_c00480{bottom:1054.410000px;}
.h3_c00480{height:43.801920px;}
.h5_c00480{height:48.951360px;}
.h2_c00480{height:49.282560px;}
.h4_c00480{height:53.208000px;}
.h1_c00480{height:1263.000000px;}
.h0_c00480{height:1263.059850px;}
.w0_c00480{width:892.979850px;}
.w1_c00480{width:893.250000px;}
.x0_c00480{left:0.000000px;}
.x1_c00480{left:106.415700px;}
@media print{
.v0_c00480{vertical-align:0.000000pt;}
.ls2_c00480{letter-spacing:0.000000pt;}
.ls1_c00480{letter-spacing:91.131627pt;}
.ls0_c00480{letter-spacing:122.989333pt;}
.ws1_c00480{word-spacing:-16.000000pt;}
.ws2_c00480{word-spacing:-14.720000pt;}
.ws0_c00480{word-spacing:-10.720000pt;}
.ws3_c00480{word-spacing:0.000000pt;}
._0_c00480{margin-left:-0.993107pt;}
.fs1_c00480{font-size:42.880000pt;}
.fs0_c00480{font-size:58.880000pt;}
.fs2_c00480{font-size:64.000000pt;}
.y0_c00480{bottom:0.000000pt;}
.y2_c00480{bottom:41.120000pt;}
.y4_c00480{bottom:883.653733pt;}
.y3_c00480{bottom:909.893333pt;}
.y1_c00480{bottom:937.253333pt;}
.h3_c00480{height:38.935040pt;}
.h5_c00480{height:43.512320pt;}
.h2_c00480{height:43.806720pt;}
.h4_c00480{height:47.296000pt;}
.h1_c00480{height:1122.666667pt;}
.h0_c00480{height:1122.719867pt;}
.w0_c00480{width:793.759867pt;}
.w1_c00480{width:794.000000pt;}
.x0_c00480{left:0.000000pt;}
.x1_c00480{left:94.591733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_504a96fd4c5bf6b9ab4c93ed.woff2')format("woff");}.ff1_c00481{font-family:ff1_c00481;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00481;src:url('chunks/assets/font_7a685247c4d63a91d6dbea52.woff2')format("woff");}.ff2_c00481{font-family:ff2_c00481;line-height:1.105000;font-style:normal;font-weight:normal;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_4b0e12878d36f693a9079097.woff2')format("woff");}.ff3_c00481{font-family:ff3_c00481;line-height:0.666504;font-style:normal;font-weight:normal;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_611802c96acf850a09606a29.woff2')format("woff");}.ff4_c00481{font-family:ff4_c00481;line-height:0.932000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00481{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00481{vertical-align:0.000000px;}
.ls0_c00481{letter-spacing:0.000000px;}
.sc__c00481{text-shadow:none;}
.sc0_c00481{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00481{-webkit-text-stroke:0px transparent;}
.sc0_c00481{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00481{word-spacing:-12.060000px;}
.ws1_c00481{word-spacing:0.000000px;}
._0_c00481{margin-left:-1.117246px;}
._1_c00481{width:1.092841px;}
.fc0_c00481{color:rgb(0,0,0);}
.fs1_c00481{font-size:48.240000px;}
.fs2_c00481{font-size:54.000000px;}
.fs0_c00481{font-size:66.240000px;}
.y0_c00481{bottom:0.000000px;}
.y2_c00481{bottom:46.260000px;}
.y4_c00481{bottom:75.996150px;}
.y3_c00481{bottom:97.776000px;}
.y1_c00481{bottom:1054.410000px;}
.h4_c00481{height:40.176000px;}
.h3_c00481{height:43.801920px;}
.h2_c00481{height:49.282560px;}
.h1_c00481{height:1263.000000px;}
.h0_c00481{height:1263.059850px;}
.w0_c00481{width:892.979850px;}
.w1_c00481{width:893.250000px;}
.x0_c00481{left:0.000000px;}
.x1_c00481{left:106.415700px;}
.x3_c00481{left:200.191500px;}
.x2_c00481{left:790.350000px;}
@media print{
.v0_c00481{vertical-align:0.000000pt;}
.ls0_c00481{letter-spacing:0.000000pt;}
.ws0_c00481{word-spacing:-10.720000pt;}
.ws1_c00481{word-spacing:0.000000pt;}
._0_c00481{margin-left:-0.993107pt;}
._1_c00481{width:0.971414pt;}
.fs1_c00481{font-size:42.880000pt;}
.fs2_c00481{font-size:48.000000pt;}
.fs0_c00481{font-size:58.880000pt;}
.y0_c00481{bottom:0.000000pt;}
.y2_c00481{bottom:41.120000pt;}
.y4_c00481{bottom:67.552133pt;}
.y3_c00481{bottom:86.912000pt;}
.y1_c00481{bottom:937.253333pt;}
.h4_c00481{height:35.712000pt;}
.h3_c00481{height:38.935040pt;}
.h2_c00481{height:43.806720pt;}
.h1_c00481{height:1122.666667pt;}
.h0_c00481{height:1122.719867pt;}
.w0_c00481{width:793.759867pt;}
.w1_c00481{width:794.000000pt;}
.x0_c00481{left:0.000000pt;}
.x1_c00481{left:94.591733pt;}
.x3_c00481{left:177.948000pt;}
.x2_c00481{left:702.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_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_56bf480446101939534b2e1a.woff2')format("woff");}.ff1_c00482{font-family:ff1_c00482;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00482;src:url('chunks/assets/font_7a685247c4d63a91d6dbea52.woff2')format("woff");}.ff2_c00482{font-family:ff2_c00482;line-height:1.105000;font-style:normal;font-weight:normal;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_4b0e12878d36f693a9079097.woff2')format("woff");}.ff3_c00482{font-family:ff3_c00482;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00482;src:url('chunks/assets/font_7e9a4bbfede80e0bdbfc9f97.woff2')format("woff");}.ff4_c00482{font-family:ff4_c00482;line-height:0.932000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00482{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00482{vertical-align:0.000000px;}
.ls0_c00482{letter-spacing:0.000000px;}
.sc__c00482{text-shadow:none;}
.sc0_c00482{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00482{-webkit-text-stroke:0px transparent;}
.sc0_c00482{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00482{word-spacing:-12.060000px;}
.ws1_c00482{word-spacing:0.000000px;}
._0_c00482{margin-left:-1.117246px;}
._1_c00482{width:1.052529px;}
.fc0_c00482{color:rgb(0,0,0);}
.fs1_c00482{font-size:48.240000px;}
.fs2_c00482{font-size:54.000000px;}
.fs0_c00482{font-size:66.240000px;}
.y0_c00482{bottom:0.000000px;}
.y2_c00482{bottom:46.260000px;}
.y6_c00482{bottom:110.735850px;}
.y5_c00482{bottom:144.935850px;}
.y4_c00482{bottom:176.250750px;}
.y3_c00482{bottom:198.210000px;}
.y1_c00482{bottom:1054.410000px;}
.h4_c00482{height:40.176000px;}
.h3_c00482{height:43.801920px;}
.h2_c00482{height:49.282560px;}
.h1_c00482{height:1263.000000px;}
.h0_c00482{height:1263.059850px;}
.w0_c00482{width:892.979850px;}
.w1_c00482{width:893.250000px;}
.x0_c00482{left:0.000000px;}
.x1_c00482{left:106.415700px;}
.x3_c00482{left:235.110000px;}
.x2_c00482{left:759.210000px;}
@media print{
.v0_c00482{vertical-align:0.000000pt;}
.ls0_c00482{letter-spacing:0.000000pt;}
.ws0_c00482{word-spacing:-10.720000pt;}
.ws1_c00482{word-spacing:0.000000pt;}
._0_c00482{margin-left:-0.993107pt;}
._1_c00482{width:0.935581pt;}
.fs1_c00482{font-size:42.880000pt;}
.fs2_c00482{font-size:48.000000pt;}
.fs0_c00482{font-size:58.880000pt;}
.y0_c00482{bottom:0.000000pt;}
.y2_c00482{bottom:41.120000pt;}
.y6_c00482{bottom:98.431867pt;}
.y5_c00482{bottom:128.831867pt;}
.y4_c00482{bottom:156.667333pt;}
.y3_c00482{bottom:176.186667pt;}
.y1_c00482{bottom:937.253333pt;}
.h4_c00482{height:35.712000pt;}
.h3_c00482{height:38.935040pt;}
.h2_c00482{height:43.806720pt;}
.h1_c00482{height:1122.666667pt;}
.h0_c00482{height:1122.719867pt;}
.w0_c00482{width:793.759867pt;}
.w1_c00482{width:794.000000pt;}
.x0_c00482{left:0.000000pt;}
.x1_c00482{left:94.591733pt;}
.x3_c00482{left:208.986667pt;}
.x2_c00482{left:674.853333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f80553c715e2c74c660e3fd9.woff2')format("woff");}.ff1_c00483{font-family:ff1_c00483;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00483;src:url('chunks/assets/font_7a685247c4d63a91d6dbea52.woff2')format("woff");}.ff2_c00483{font-family:ff2_c00483;line-height:1.105000;font-style:normal;font-weight:normal;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_4b0e12878d36f693a9079097.woff2')format("woff");}.ff3_c00483{font-family:ff3_c00483;line-height:0.666504;font-style:normal;font-weight:normal;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_456789389f6bb9c2c2c495d3.woff2')format("woff");}.ff4_c00483{font-family:ff4_c00483;line-height:0.932000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00483{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00483{vertical-align:0.000000px;}
.ls0_c00483{letter-spacing:0.000000px;}
.sc__c00483{text-shadow:none;}
.sc0_c00483{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00483{-webkit-text-stroke:0px transparent;}
.sc0_c00483{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00483{word-spacing:-12.060000px;}
.ws1_c00483{word-spacing:0.000000px;}
._0_c00483{margin-left:-1.117246px;}
._1_c00483{width:1.095927px;}
.fc0_c00483{color:rgb(0,0,0);}
.fs1_c00483{font-size:48.240000px;}
.fs2_c00483{font-size:54.000000px;}
.fs0_c00483{font-size:66.240000px;}
.y0_c00483{bottom:0.000000px;}
.y2_c00483{bottom:46.260000px;}
.y5_c00483{bottom:122.435850px;}
.y4_c00483{bottom:156.450750px;}
.y3_c00483{bottom:178.410000px;}
.y1_c00483{bottom:1054.410000px;}
.h4_c00483{height:40.176000px;}
.h3_c00483{height:43.801920px;}
.h2_c00483{height:49.282560px;}
.h1_c00483{height:1263.000000px;}
.h0_c00483{height:1263.059850px;}
.w0_c00483{width:892.979850px;}
.w1_c00483{width:893.250000px;}
.x0_c00483{left:0.000000px;}
.x1_c00483{left:106.415700px;}
.x3_c00483{left:158.250000px;}
.x2_c00483{left:764.610000px;}
@media print{
.v0_c00483{vertical-align:0.000000pt;}
.ls0_c00483{letter-spacing:0.000000pt;}
.ws0_c00483{word-spacing:-10.720000pt;}
.ws1_c00483{word-spacing:0.000000pt;}
._0_c00483{margin-left:-0.993107pt;}
._1_c00483{width:0.974157pt;}
.fs1_c00483{font-size:42.880000pt;}
.fs2_c00483{font-size:48.000000pt;}
.fs0_c00483{font-size:58.880000pt;}
.y0_c00483{bottom:0.000000pt;}
.y2_c00483{bottom:41.120000pt;}
.y5_c00483{bottom:108.831867pt;}
.y4_c00483{bottom:139.067333pt;}
.y3_c00483{bottom:158.586667pt;}
.y1_c00483{bottom:937.253333pt;}
.h4_c00483{height:35.712000pt;}
.h3_c00483{height:38.935040pt;}
.h2_c00483{height:43.806720pt;}
.h1_c00483{height:1122.666667pt;}
.h0_c00483{height:1122.719867pt;}
.w0_c00483{width:793.759867pt;}
.w1_c00483{width:794.000000pt;}
.x0_c00483{left:0.000000pt;}
.x1_c00483{left:94.591733pt;}
.x3_c00483{left:140.666667pt;}
.x2_c00483{left:679.653333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4f1dda1f1a23cc1bcafbefef.woff2')format("woff");}.ff1_c00484{font-family:ff1_c00484;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00484;src:url('chunks/assets/font_7a685247c4d63a91d6dbea52.woff2')format("woff");}.ff2_c00484{font-family:ff2_c00484;line-height:1.105000;font-style:normal;font-weight:normal;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_4b0e12878d36f693a9079097.woff2')format("woff");}.ff3_c00484{font-family:ff3_c00484;line-height:0.666504;font-style:normal;font-weight:normal;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_89dffa7884432a819853c799.woff2')format("woff");}.ff4_c00484{font-family:ff4_c00484;line-height:0.932000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00484{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00484{vertical-align:0.000000px;}
.ls0_c00484{letter-spacing:0.000000px;}
.sc__c00484{text-shadow:none;}
.sc0_c00484{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00484{-webkit-text-stroke:0px transparent;}
.sc0_c00484{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00484{word-spacing:-12.060000px;}
.ws1_c00484{word-spacing:0.000000px;}
._0_c00484{margin-left:-1.117246px;}
._1_c00484{width:1.048349px;}
.fc0_c00484{color:rgb(0,0,0);}
.fs1_c00484{font-size:48.240000px;}
.fs2_c00484{font-size:54.000000px;}
.fs0_c00484{font-size:66.240000px;}
.y0_c00484{bottom:0.000000px;}
.y2_c00484{bottom:46.260000px;}
.y5_c00484{bottom:135.935850px;}
.y4_c00484{bottom:169.950750px;}
.y3_c00484{bottom:191.910000px;}
.y1_c00484{bottom:1054.410000px;}
.h4_c00484{height:40.176000px;}
.h3_c00484{height:43.801920px;}
.h2_c00484{height:49.282560px;}
.h1_c00484{height:1263.000000px;}
.h0_c00484{height:1263.059850px;}
.w0_c00484{width:892.979850px;}
.w1_c00484{width:893.250000px;}
.x0_c00484{left:0.000000px;}
.x1_c00484{left:106.415700px;}
.x3_c00484{left:198.750000px;}
.x2_c00484{left:772.350000px;}
@media print{
.v0_c00484{vertical-align:0.000000pt;}
.ls0_c00484{letter-spacing:0.000000pt;}
.ws0_c00484{word-spacing:-10.720000pt;}
.ws1_c00484{word-spacing:0.000000pt;}
._0_c00484{margin-left:-0.993107pt;}
._1_c00484{width:0.931866pt;}
.fs1_c00484{font-size:42.880000pt;}
.fs2_c00484{font-size:48.000000pt;}
.fs0_c00484{font-size:58.880000pt;}
.y0_c00484{bottom:0.000000pt;}
.y2_c00484{bottom:41.120000pt;}
.y5_c00484{bottom:120.831867pt;}
.y4_c00484{bottom:151.067333pt;}
.y3_c00484{bottom:170.586667pt;}
.y1_c00484{bottom:937.253333pt;}
.h4_c00484{height:35.712000pt;}
.h3_c00484{height:38.935040pt;}
.h2_c00484{height:43.806720pt;}
.h1_c00484{height:1122.666667pt;}
.h0_c00484{height:1122.719867pt;}
.w0_c00484{width:793.759867pt;}
.w1_c00484{width:794.000000pt;}
.x0_c00484{left:0.000000pt;}
.x1_c00484{left:94.591733pt;}
.x3_c00484{left:176.666667pt;}
.x2_c00484{left:686.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_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_8c083bb0a9a0ba67ff7f1fa2.woff2')format("woff");}.ff1_c00485{font-family:ff1_c00485;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00485;src:url('chunks/assets/font_7a685247c4d63a91d6dbea52.woff2')format("woff");}.ff2_c00485{font-family:ff2_c00485;line-height:1.105000;font-style:normal;font-weight:normal;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_4b0e12878d36f693a9079097.woff2')format("woff");}.ff3_c00485{font-family:ff3_c00485;line-height:0.666504;font-style:normal;font-weight:normal;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_62e18b595503759c8ee4ae14.woff2')format("woff");}.ff4_c00485{font-family:ff4_c00485;line-height:0.932000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00485{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00485{vertical-align:0.000000px;}
.ls0_c00485{letter-spacing:0.000000px;}
.sc__c00485{text-shadow:none;}
.sc0_c00485{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00485{-webkit-text-stroke:0px transparent;}
.sc0_c00485{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00485{word-spacing:-12.060000px;}
.ws1_c00485{word-spacing:0.000000px;}
._0_c00485{margin-left:-1.117246px;}
._1_c00485{width:1.164736px;}
.fc0_c00485{color:rgb(0,0,0);}
.fs1_c00485{font-size:48.240000px;}
.fs2_c00485{font-size:54.000000px;}
.fs0_c00485{font-size:66.240000px;}
.y0_c00485{bottom:0.000000px;}
.y2_c00485{bottom:46.260000px;}
.y5_c00485{bottom:134.135850px;}
.y4_c00485{bottom:168.150750px;}
.y3_c00485{bottom:190.110000px;}
.y1_c00485{bottom:1054.410000px;}
.h4_c00485{height:40.176000px;}
.h3_c00485{height:43.801920px;}
.h2_c00485{height:49.282560px;}
.h1_c00485{height:1263.000000px;}
.h0_c00485{height:1263.059850px;}
.w0_c00485{width:892.979850px;}
.w1_c00485{width:893.250000px;}
.x0_c00485{left:0.000000px;}
.x1_c00485{left:106.415700px;}
.x3_c00485{left:210.450000px;}
.x2_c00485{left:770.010000px;}
@media print{
.v0_c00485{vertical-align:0.000000pt;}
.ls0_c00485{letter-spacing:0.000000pt;}
.ws0_c00485{word-spacing:-10.720000pt;}
.ws1_c00485{word-spacing:0.000000pt;}
._0_c00485{margin-left:-0.993107pt;}
._1_c00485{width:1.035321pt;}
.fs1_c00485{font-size:42.880000pt;}
.fs2_c00485{font-size:48.000000pt;}
.fs0_c00485{font-size:58.880000pt;}
.y0_c00485{bottom:0.000000pt;}
.y2_c00485{bottom:41.120000pt;}
.y5_c00485{bottom:119.231867pt;}
.y4_c00485{bottom:149.467333pt;}
.y3_c00485{bottom:168.986667pt;}
.y1_c00485{bottom:937.253333pt;}
.h4_c00485{height:35.712000pt;}
.h3_c00485{height:38.935040pt;}
.h2_c00485{height:43.806720pt;}
.h1_c00485{height:1122.666667pt;}
.h0_c00485{height:1122.719867pt;}
.w0_c00485{width:793.759867pt;}
.w1_c00485{width:794.000000pt;}
.x0_c00485{left:0.000000pt;}
.x1_c00485{left:94.591733pt;}
.x3_c00485{left:187.066667pt;}
.x2_c00485{left:684.453333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_59778ba6686044546871e8b9.woff2')format("woff");}.ff1_c00486{font-family:ff1_c00486;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00486;src:url('chunks/assets/font_7a685247c4d63a91d6dbea52.woff2')format("woff");}.ff2_c00486{font-family:ff2_c00486;line-height:1.105000;font-style:normal;font-weight:normal;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_4b0e12878d36f693a9079097.woff2')format("woff");}.ff3_c00486{font-family:ff3_c00486;line-height:0.666504;font-style:normal;font-weight:normal;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_db7ed6c602c9194bbf8245a0.woff2')format("woff");}.ff4_c00486{font-family:ff4_c00486;line-height:0.932000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00486{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00486{vertical-align:0.000000px;}
.ls0_c00486{letter-spacing:0.000000px;}
.sc__c00486{text-shadow:none;}
.sc0_c00486{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00486{-webkit-text-stroke:0px transparent;}
.sc0_c00486{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00486{word-spacing:-12.060000px;}
.ws1_c00486{word-spacing:0.000000px;}
._0_c00486{margin-left:-1.117246px;}
._1_c00486{width:1.538814px;}
.fc0_c00486{color:rgb(0,0,0);}
.fs1_c00486{font-size:48.240000px;}
.fs2_c00486{font-size:54.000000px;}
.fs0_c00486{font-size:66.240000px;}
.y0_c00486{bottom:0.000000px;}
.y2_c00486{bottom:46.260000px;}
.y5_c00486{bottom:122.435850px;}
.y4_c00486{bottom:156.450750px;}
.y3_c00486{bottom:178.410000px;}
.y1_c00486{bottom:1054.410000px;}
.h4_c00486{height:40.176000px;}
.h3_c00486{height:43.801920px;}
.h2_c00486{height:49.282560px;}
.h1_c00486{height:1263.000000px;}
.h0_c00486{height:1263.059850px;}
.w0_c00486{width:892.979850px;}
.w1_c00486{width:893.250000px;}
.x0_c00486{left:0.000000px;}
.x1_c00486{left:106.415700px;}
.x3_c00486{left:207.030000px;}
.x2_c00486{left:770.010000px;}
@media print{
.v0_c00486{vertical-align:0.000000pt;}
.ls0_c00486{letter-spacing:0.000000pt;}
.ws0_c00486{word-spacing:-10.720000pt;}
.ws1_c00486{word-spacing:0.000000pt;}
._0_c00486{margin-left:-0.993107pt;}
._1_c00486{width:1.367834pt;}
.fs1_c00486{font-size:42.880000pt;}
.fs2_c00486{font-size:48.000000pt;}
.fs0_c00486{font-size:58.880000pt;}
.y0_c00486{bottom:0.000000pt;}
.y2_c00486{bottom:41.120000pt;}
.y5_c00486{bottom:108.831867pt;}
.y4_c00486{bottom:139.067333pt;}
.y3_c00486{bottom:158.586667pt;}
.y1_c00486{bottom:937.253333pt;}
.h4_c00486{height:35.712000pt;}
.h3_c00486{height:38.935040pt;}
.h2_c00486{height:43.806720pt;}
.h1_c00486{height:1122.666667pt;}
.h0_c00486{height:1122.719867pt;}
.w0_c00486{width:793.759867pt;}
.w1_c00486{width:794.000000pt;}
.x0_c00486{left:0.000000pt;}
.x1_c00486{left:94.591733pt;}
.x3_c00486{left:184.026667pt;}
.x2_c00486{left:684.453333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a33eef5c7b2193f0099d409d.woff2')format("woff");}.ff1_c00487{font-family:ff1_c00487;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00487;src:url('chunks/assets/font_7a685247c4d63a91d6dbea52.woff2')format("woff");}.ff2_c00487{font-family:ff2_c00487;line-height:1.105000;font-style:normal;font-weight:normal;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_4b0e12878d36f693a9079097.woff2')format("woff");}.ff3_c00487{font-family:ff3_c00487;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00487;src:url('chunks/assets/font_a1baf77e8ac5198a14c3d3d7.woff2')format("woff");}.ff4_c00487{font-family:ff4_c00487;line-height:0.932000;font-style: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:-12.060000px;}
.ws1_c00487{word-spacing:0.000000px;}
._0_c00487{margin-left:-1.148410px;}
._1_c00487{width:1.008398px;}
.fc0_c00487{color:rgb(0,0,0);}
.fs1_c00487{font-size:48.240000px;}
.fs2_c00487{font-size:54.000000px;}
.fs0_c00487{font-size:66.240000px;}
.y0_c00487{bottom:0.000000px;}
.y2_c00487{bottom:46.260000px;}
.y5_c00487{bottom:134.135850px;}
.y4_c00487{bottom:168.150750px;}
.y3_c00487{bottom:190.110000px;}
.y1_c00487{bottom:1054.410000px;}
.h4_c00487{height:40.176000px;}
.h3_c00487{height:43.801920px;}
.h2_c00487{height:49.282560px;}
.h1_c00487{height:1263.000000px;}
.h0_c00487{height:1263.059850px;}
.w0_c00487{width:892.979850px;}
.w1_c00487{width:893.250000px;}
.x0_c00487{left:0.000000px;}
.x1_c00487{left:106.415700px;}
.x3_c00487{left:209.010000px;}
.x2_c00487{left:772.350000px;}
@media print{
.v0_c00487{vertical-align:0.000000pt;}
.ls0_c00487{letter-spacing:0.000000pt;}
.ws0_c00487{word-spacing:-10.720000pt;}
.ws1_c00487{word-spacing:0.000000pt;}
._0_c00487{margin-left:-1.020809pt;}
._1_c00487{width:0.896354pt;}
.fs1_c00487{font-size:42.880000pt;}
.fs2_c00487{font-size:48.000000pt;}
.fs0_c00487{font-size:58.880000pt;}
.y0_c00487{bottom:0.000000pt;}
.y2_c00487{bottom:41.120000pt;}
.y5_c00487{bottom:119.231867pt;}
.y4_c00487{bottom:149.467333pt;}
.y3_c00487{bottom:168.986667pt;}
.y1_c00487{bottom:937.253333pt;}
.h4_c00487{height:35.712000pt;}
.h3_c00487{height:38.935040pt;}
.h2_c00487{height:43.806720pt;}
.h1_c00487{height:1122.666667pt;}
.h0_c00487{height:1122.719867pt;}
.w0_c00487{width:793.759867pt;}
.w1_c00487{width:794.000000pt;}
.x0_c00487{left:0.000000pt;}
.x1_c00487{left:94.591733pt;}
.x3_c00487{left:185.786667pt;}
.x2_c00487{left:686.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_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_a2a5cfb8d7978f658b4e209c.woff2')format("woff");}.ff1_c00488{font-family:ff1_c00488;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00488;src:url('chunks/assets/font_7a685247c4d63a91d6dbea52.woff2')format("woff");}.ff2_c00488{font-family:ff2_c00488;line-height:1.105000;font-style:normal;font-weight:normal;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_4b0e12878d36f693a9079097.woff2')format("woff");}.ff3_c00488{font-family:ff3_c00488;line-height:0.666504;font-style:normal;font-weight:normal;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_456789389f6bb9c2c2c495d3.woff2')format("woff");}.ff4_c00488{font-family:ff4_c00488;line-height:0.932000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00488{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00488{vertical-align:0.000000px;}
.ls0_c00488{letter-spacing:0.000000px;}
.sc__c00488{text-shadow:none;}
.sc0_c00488{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00488{-webkit-text-stroke:0px transparent;}
.sc0_c00488{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00488{word-spacing:-12.060000px;}
.ws1_c00488{word-spacing:0.000000px;}
._0_c00488{margin-left:-1.148410px;}
._1_c00488{width:1.015578px;}
.fc0_c00488{color:rgb(0,0,0);}
.fs1_c00488{font-size:48.240000px;}
.fs2_c00488{font-size:54.000000px;}
.fs0_c00488{font-size:66.240000px;}
.y0_c00488{bottom:0.000000px;}
.y2_c00488{bottom:46.260000px;}
.y5_c00488{bottom:131.435850px;}
.y4_c00488{bottom:165.450750px;}
.y3_c00488{bottom:187.410000px;}
.y1_c00488{bottom:1054.410000px;}
.h4_c00488{height:40.176000px;}
.h3_c00488{height:43.801920px;}
.h2_c00488{height:49.282560px;}
.h1_c00488{height:1263.000000px;}
.h0_c00488{height:1263.059850px;}
.w0_c00488{width:892.979850px;}
.w1_c00488{width:893.250000px;}
.x0_c00488{left:0.000000px;}
.x1_c00488{left:106.415700px;}
.x3_c00488{left:185.430000px;}
.x2_c00488{left:770.010000px;}
@media print{
.v0_c00488{vertical-align:0.000000pt;}
.ls0_c00488{letter-spacing:0.000000pt;}
.ws0_c00488{word-spacing:-10.720000pt;}
.ws1_c00488{word-spacing:0.000000pt;}
._0_c00488{margin-left:-1.020809pt;}
._1_c00488{width:0.902736pt;}
.fs1_c00488{font-size:42.880000pt;}
.fs2_c00488{font-size:48.000000pt;}
.fs0_c00488{font-size:58.880000pt;}
.y0_c00488{bottom:0.000000pt;}
.y2_c00488{bottom:41.120000pt;}
.y5_c00488{bottom:116.831867pt;}
.y4_c00488{bottom:147.067333pt;}
.y3_c00488{bottom:166.586667pt;}
.y1_c00488{bottom:937.253333pt;}
.h4_c00488{height:35.712000pt;}
.h3_c00488{height:38.935040pt;}
.h2_c00488{height:43.806720pt;}
.h1_c00488{height:1122.666667pt;}
.h0_c00488{height:1122.719867pt;}
.w0_c00488{width:793.759867pt;}
.w1_c00488{width:794.000000pt;}
.x0_c00488{left:0.000000pt;}
.x1_c00488{left:94.591733pt;}
.x3_c00488{left:164.826667pt;}
.x2_c00488{left:684.453333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5f6de13007c557cadd25f017.woff2')format("woff");}.ff1_c00489{font-family:ff1_c00489;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00489;src:url('chunks/assets/font_7a685247c4d63a91d6dbea52.woff2')format("woff");}.ff2_c00489{font-family:ff2_c00489;line-height:1.105000;font-style:normal;font-weight:normal;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_4b0e12878d36f693a9079097.woff2')format("woff");}.ff3_c00489{font-family:ff3_c00489;line-height:0.666504;font-style:normal;font-weight:normal;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_55e3eacafe713d788bec6470.woff2')format("woff");}.ff4_c00489{font-family:ff4_c00489;line-height:0.932000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00489{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00489{vertical-align:0.000000px;}
.ls0_c00489{letter-spacing:0.000000px;}
.sc__c00489{text-shadow:none;}
.sc0_c00489{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00489{-webkit-text-stroke:0px transparent;}
.sc0_c00489{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00489{word-spacing:-12.060000px;}
.ws1_c00489{word-spacing:0.000000px;}
._0_c00489{margin-left:-1.148410px;}
._1_c00489{width:1.054911px;}
.fc0_c00489{color:rgb(0,0,0);}
.fs1_c00489{font-size:48.240000px;}
.fs2_c00489{font-size:54.000000px;}
.fs0_c00489{font-size:66.240000px;}
.y0_c00489{bottom:0.000000px;}
.y2_c00489{bottom:46.260000px;}
.y5_c00489{bottom:102.636000px;}
.y4_c00489{bottom:136.655550px;}
.y3_c00489{bottom:158.610000px;}
.y1_c00489{bottom:1054.410000px;}
.h4_c00489{height:40.176000px;}
.h3_c00489{height:43.801920px;}
.h2_c00489{height:49.282560px;}
.h1_c00489{height:1263.000000px;}
.h0_c00489{height:1263.059850px;}
.w0_c00489{width:892.979850px;}
.w1_c00489{width:893.250000px;}
.x0_c00489{left:0.000000px;}
.x1_c00489{left:106.415700px;}
.x3_c00489{left:185.250000px;}
.x2_c00489{left:772.350000px;}
@media print{
.v0_c00489{vertical-align:0.000000pt;}
.ls0_c00489{letter-spacing:0.000000pt;}
.ws0_c00489{word-spacing:-10.720000pt;}
.ws1_c00489{word-spacing:0.000000pt;}
._0_c00489{margin-left:-1.020809pt;}
._1_c00489{width:0.937698pt;}
.fs1_c00489{font-size:42.880000pt;}
.fs2_c00489{font-size:48.000000pt;}
.fs0_c00489{font-size:58.880000pt;}
.y0_c00489{bottom:0.000000pt;}
.y2_c00489{bottom:41.120000pt;}
.y5_c00489{bottom:91.232000pt;}
.y4_c00489{bottom:121.471600pt;}
.y3_c00489{bottom:140.986667pt;}
.y1_c00489{bottom:937.253333pt;}
.h4_c00489{height:35.712000pt;}
.h3_c00489{height:38.935040pt;}
.h2_c00489{height:43.806720pt;}
.h1_c00489{height:1122.666667pt;}
.h0_c00489{height:1122.719867pt;}
.w0_c00489{width:793.759867pt;}
.w1_c00489{width:794.000000pt;}
.x0_c00489{left:0.000000pt;}
.x1_c00489{left:94.591733pt;}
.x3_c00489{left:164.666667pt;}
.x2_c00489{left:686.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_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_2badadb57b9c07b027989eaf.woff2')format("woff");}.ff1_c00490{font-family:ff1_c00490;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00490;src:url('chunks/assets/font_7a685247c4d63a91d6dbea52.woff2')format("woff");}.ff2_c00490{font-family:ff2_c00490;line-height:1.105000;font-style:normal;font-weight:normal;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_4b0e12878d36f693a9079097.woff2')format("woff");}.ff3_c00490{font-family:ff3_c00490;line-height:0.666504;font-style:normal;font-weight:normal;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_11c79c2ff83fc5ed5b815a72.woff2')format("woff");}.ff4_c00490{font-family:ff4_c00490;line-height:0.932000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00490{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00490{vertical-align:0.000000px;}
.ls0_c00490{letter-spacing:0.000000px;}
.sc__c00490{text-shadow:none;}
.sc0_c00490{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00490{-webkit-text-stroke:0px transparent;}
.sc0_c00490{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00490{word-spacing:-12.060000px;}
.ws1_c00490{word-spacing:0.000000px;}
._0_c00490{margin-left:-1.148410px;}
._1_c00490{width:1.153857px;}
.fc0_c00490{color:rgb(0,0,0);}
.fs1_c00490{font-size:48.240000px;}
.fs2_c00490{font-size:54.000000px;}
.fs0_c00490{font-size:66.240000px;}
.y0_c00490{bottom:0.000000px;}
.y2_c00490{bottom:46.260000px;}
.y5_c00490{bottom:115.236000px;}
.y4_c00490{bottom:149.255550px;}
.y3_c00490{bottom:171.210000px;}
.y1_c00490{bottom:1054.410000px;}
.h4_c00490{height:40.176000px;}
.h3_c00490{height:43.801920px;}
.h2_c00490{height:49.282560px;}
.h1_c00490{height:1263.000000px;}
.h0_c00490{height:1263.059850px;}
.w0_c00490{width:892.979850px;}
.w1_c00490{width:893.250000px;}
.x0_c00490{left:0.000000px;}
.x1_c00490{left:106.415700px;}
.x3_c00490{left:211.350000px;}
.x2_c00490{left:772.350000px;}
@media print{
.v0_c00490{vertical-align:0.000000pt;}
.ls0_c00490{letter-spacing:0.000000pt;}
.ws0_c00490{word-spacing:-10.720000pt;}
.ws1_c00490{word-spacing:0.000000pt;}
._0_c00490{margin-left:-1.020809pt;}
._1_c00490{width:1.025651pt;}
.fs1_c00490{font-size:42.880000pt;}
.fs2_c00490{font-size:48.000000pt;}
.fs0_c00490{font-size:58.880000pt;}
.y0_c00490{bottom:0.000000pt;}
.y2_c00490{bottom:41.120000pt;}
.y5_c00490{bottom:102.432000pt;}
.y4_c00490{bottom:132.671600pt;}
.y3_c00490{bottom:152.186667pt;}
.y1_c00490{bottom:937.253333pt;}
.h4_c00490{height:35.712000pt;}
.h3_c00490{height:38.935040pt;}
.h2_c00490{height:43.806720pt;}
.h1_c00490{height:1122.666667pt;}
.h0_c00490{height:1122.719867pt;}
.w0_c00490{width:793.759867pt;}
.w1_c00490{width:794.000000pt;}
.x0_c00490{left:0.000000pt;}
.x1_c00490{left:94.591733pt;}
.x3_c00490{left:187.866667pt;}
.x2_c00490{left:686.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_d8f616d8549ccce7b99bc981.woff2')format("woff");}.ff1_c00491{font-family:ff1_c00491;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00491;src:url('chunks/assets/font_7a685247c4d63a91d6dbea52.woff2')format("woff");}.ff2_c00491{font-family:ff2_c00491;line-height:1.105000;font-style:normal;font-weight:normal;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_4b0e12878d36f693a9079097.woff2')format("woff");}.ff3_c00491{font-family:ff3_c00491;line-height:0.666504;font-style:normal;font-weight:normal;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_611802c96acf850a09606a29.woff2')format("woff");}.ff4_c00491{font-family:ff4_c00491;line-height:0.932000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00491{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00491{vertical-align:0.000000px;}
.ls0_c00491{letter-spacing:0.000000px;}
.sc__c00491{text-shadow:none;}
.sc0_c00491{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00491{-webkit-text-stroke:0px transparent;}
.sc0_c00491{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00491{word-spacing:-12.060000px;}
.ws1_c00491{word-spacing:0.000000px;}
._0_c00491{margin-left:-1.148410px;}
._1_c00491{width:1.009939px;}
.fc0_c00491{color:rgb(0,0,0);}
.fs1_c00491{font-size:48.240000px;}
.fs2_c00491{font-size:54.000000px;}
.fs0_c00491{font-size:66.240000px;}
.y0_c00491{bottom:0.000000px;}
.y2_c00491{bottom:46.260000px;}
.y5_c00491{bottom:117.935850px;}
.y4_c00491{bottom:151.950750px;}
.y3_c00491{bottom:173.910000px;}
.y1_c00491{bottom:1054.410000px;}
.h4_c00491{height:40.176000px;}
.h3_c00491{height:43.801920px;}
.h2_c00491{height:49.282560px;}
.h1_c00491{height:1263.000000px;}
.h0_c00491{height:1263.059850px;}
.w0_c00491{width:892.979850px;}
.w1_c00491{width:893.250000px;}
.x0_c00491{left:0.000000px;}
.x1_c00491{left:106.415700px;}
.x3_c00491{left:232.590000px;}
.x2_c00491{left:772.350000px;}
@media print{
.v0_c00491{vertical-align:0.000000pt;}
.ls0_c00491{letter-spacing:0.000000pt;}
.ws0_c00491{word-spacing:-10.720000pt;}
.ws1_c00491{word-spacing:0.000000pt;}
._0_c00491{margin-left:-1.020809pt;}
._1_c00491{width:0.897723pt;}
.fs1_c00491{font-size:42.880000pt;}
.fs2_c00491{font-size:48.000000pt;}
.fs0_c00491{font-size:58.880000pt;}
.y0_c00491{bottom:0.000000pt;}
.y2_c00491{bottom:41.120000pt;}
.y5_c00491{bottom:104.831867pt;}
.y4_c00491{bottom:135.067333pt;}
.y3_c00491{bottom:154.586667pt;}
.y1_c00491{bottom:937.253333pt;}
.h4_c00491{height:35.712000pt;}
.h3_c00491{height:38.935040pt;}
.h2_c00491{height:43.806720pt;}
.h1_c00491{height:1122.666667pt;}
.h0_c00491{height:1122.719867pt;}
.w0_c00491{width:793.759867pt;}
.w1_c00491{width:794.000000pt;}
.x0_c00491{left:0.000000pt;}
.x1_c00491{left:94.591733pt;}
.x3_c00491{left:206.746667pt;}
.x2_c00491{left:686.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_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_8be1a41ec316abcf264f779c.woff2')format("woff");}.ff1_c00492{font-family:ff1_c00492;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00492;src:url('chunks/assets/font_7a685247c4d63a91d6dbea52.woff2')format("woff");}.ff2_c00492{font-family:ff2_c00492;line-height:1.105000;font-style:normal;font-weight:normal;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_4b0e12878d36f693a9079097.woff2')format("woff");}.ff3_c00492{font-family:ff3_c00492;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00492;src:url('chunks/assets/font_7e9a4bbfede80e0bdbfc9f97.woff2')format("woff");}.ff4_c00492{font-family:ff4_c00492;line-height:0.932000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00492{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00492{vertical-align:0.000000px;}
.ls0_c00492{letter-spacing:0.000000px;}
.sc__c00492{text-shadow:none;}
.sc0_c00492{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00492{-webkit-text-stroke:0px transparent;}
.sc0_c00492{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00492{word-spacing:-12.060000px;}
.ws1_c00492{word-spacing:0.000000px;}
._0_c00492{margin-left:-1.148410px;}
._1_c00492{width:1.253791px;}
.fc0_c00492{color:rgb(0,0,0);}
.fs1_c00492{font-size:48.240000px;}
.fs2_c00492{font-size:54.000000px;}
.fs0_c00492{font-size:66.240000px;}
.y0_c00492{bottom:0.000000px;}
.y2_c00492{bottom:46.260000px;}
.y6_c00492{bottom:82.295700px;}
.y5_c00492{bottom:111.636000px;}
.y4_c00492{bottom:145.655550px;}
.y3_c00492{bottom:167.610000px;}
.y1_c00492{bottom:1054.410000px;}
.h4_c00492{height:40.176000px;}
.h3_c00492{height:43.801920px;}
.h2_c00492{height:49.282560px;}
.h1_c00492{height:1263.000000px;}
.h0_c00492{height:1263.059850px;}
.w0_c00492{width:892.979850px;}
.w1_c00492{width:893.250000px;}
.x0_c00492{left:0.000000px;}
.x1_c00492{left:106.415700px;}
.x3_c00492{left:176.070000px;}
.x2_c00492{left:768.210000px;}
@media print{
.v0_c00492{vertical-align:0.000000pt;}
.ls0_c00492{letter-spacing:0.000000pt;}
.ws0_c00492{word-spacing:-10.720000pt;}
.ws1_c00492{word-spacing:0.000000pt;}
._0_c00492{margin-left:-1.020809pt;}
._1_c00492{width:1.114481pt;}
.fs1_c00492{font-size:42.880000pt;}
.fs2_c00492{font-size:48.000000pt;}
.fs0_c00492{font-size:58.880000pt;}
.y0_c00492{bottom:0.000000pt;}
.y2_c00492{bottom:41.120000pt;}
.y6_c00492{bottom:73.151733pt;}
.y5_c00492{bottom:99.232000pt;}
.y4_c00492{bottom:129.471600pt;}
.y3_c00492{bottom:148.986667pt;}
.y1_c00492{bottom:937.253333pt;}
.h4_c00492{height:35.712000pt;}
.h3_c00492{height:38.935040pt;}
.h2_c00492{height:43.806720pt;}
.h1_c00492{height:1122.666667pt;}
.h0_c00492{height:1122.719867pt;}
.w0_c00492{width:793.759867pt;}
.w1_c00492{width:794.000000pt;}
.x0_c00492{left:0.000000pt;}
.x1_c00492{left:94.591733pt;}
.x3_c00492{left:156.506667pt;}
.x2_c00492{left:682.853333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_00b3074fbcfa6b58276f6b1f.woff2')format("woff");}.ff1_c00493{font-family:ff1_c00493;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00493;src:url('chunks/assets/font_7a685247c4d63a91d6dbea52.woff2')format("woff");}.ff2_c00493{font-family:ff2_c00493;line-height:1.105000;font-style:normal;font-weight:normal;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_4b0e12878d36f693a9079097.woff2')format("woff");}.ff3_c00493{font-family:ff3_c00493;line-height:0.666504;font-style:normal;font-weight:normal;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_456789389f6bb9c2c2c495d3.woff2')format("woff");}.ff4_c00493{font-family:ff4_c00493;line-height:0.932000;font-style:normal;font-weight:normal;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_456d50a016027f11bfba2ebc.woff2')format("woff");}.ff5_c00493{font-family:ff5_c00493;line-height:0.995000;font-style:normal;font-weight:normal;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_f590788b7d1bac9d8dfa02b1.woff2')format("woff");}.ff6_c00493{font-family:ff6_c00493;line-height:0.666504;font-style:normal;font-weight:normal;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_929346b19ef3ee5ba55c3a87.woff2')format("woff");}.ff7_c00493{font-family:ff7_c00493;line-height:0.995000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00493;src:url('chunks/assets/font_1dbd8e5368e8ce6686cfff7e.woff2')format("woff");}.ff8_c00493{font-family:ff8_c00493;line-height:0.869000;font-style: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;}
.ls1_c00493{letter-spacing:0.000000px;}
.ls0_c00493{letter-spacing:147.001800px;}
.sc__c00493{text-shadow:none;}
.sc0_c00493{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00493{-webkit-text-stroke:0px transparent;}
.sc0_c00493{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00493{word-spacing:-18.000000px;}
.ws2_c00493{word-spacing:-16.560000px;}
.ws0_c00493{word-spacing:-12.060000px;}
.ws3_c00493{word-spacing:0.000000px;}
._7_c00493{margin-left:-3.599124px;}
._0_c00493{margin-left:-1.148410px;}
._1_c00493{width:1.555197px;}
._5_c00493{width:7.485766px;}
._6_c00493{width:9.126666px;}
._4_c00493{width:19.824805px;}
._2_c00493{width:22.123100px;}
._3_c00493{width:24.973316px;}
._c_c00493{width:35.871143px;}
._b_c00493{width:153.359510px;}
._a_c00493{width:181.620144px;}
._8_c00493{width:195.839885px;}
._9_c00493{width:1059.959232px;}
.fc1_c00493{color:transparent;}
.fc0_c00493{color:rgb(0,0,0);}
.fs1_c00493{font-size:48.240000px;}
.fs3_c00493{font-size:59.760000px;}
.fs0_c00493{font-size:66.240000px;}
.fs2_c00493{font-size:72.000000px;}
.y0_c00493{bottom:0.000000px;}
.y6_c00493{bottom:13.500000px;}
.yb_c00493{bottom:13.500150px;}
.ya_c00493{bottom:33.705000px;}
.y2_c00493{bottom:46.260000px;}
.y9_c00493{bottom:54.044700px;}
.y8_c00493{bottom:74.205000px;}
.y16_c00493{bottom:414.792900px;}
.y15_c00493{bottom:443.953200px;}
.y14_c00493{bottom:459.612900px;}
.y13_c00493{bottom:632.982900px;}
.y12_c00493{bottom:662.143200px;}
.y11_c00493{bottom:691.303500px;}
.y10_c00493{bottom:720.463800px;}
.yf_c00493{bottom:749.624100px;}
.ye_c00493{bottom:778.784400px;}
.yd_c00493{bottom:807.944700px;}
.yc_c00493{bottom:837.105000px;}
.y7_c00493{bottom:856.005000px;}
.y5_c00493{bottom:950.370000px;}
.y4_c00493{bottom:995.010450px;}
.y3_c00493{bottom:1023.630000px;}
.y1_c00493{bottom:1054.410000px;}
.h6_c00493{height:29.159700px;}
.h5_c00493{height:39.830273px;}
.h3_c00493{height:43.801920px;}
.h2_c00493{height:49.282560px;}
.h4_c00493{height:53.208000px;}
.h7_c00493{height:53.568000px;}
.h8_c00493{height:89.855850px;}
.h1_c00493{height:1263.000000px;}
.h0_c00493{height:1263.059850px;}
.w2_c00493{width:19.259700px;}
.w3_c00493{width:675.643500px;}
.w0_c00493{width:892.979850px;}
.w1_c00493{width:893.250000px;}
.x0_c00493{left:0.000000px;}
.x3_c00493{left:1.259700px;}
.x1_c00493{left:106.415700px;}
.x2_c00493{left:108.576000px;}
.x4_c00493{left:130.176000px;}
.x5_c00493{left:315.614700px;}
@media print{
.v0_c00493{vertical-align:0.000000pt;}
.ls1_c00493{letter-spacing:0.000000pt;}
.ls0_c00493{letter-spacing:130.668267pt;}
.ws1_c00493{word-spacing:-16.000000pt;}
.ws2_c00493{word-spacing:-14.720000pt;}
.ws0_c00493{word-spacing:-10.720000pt;}
.ws3_c00493{word-spacing:0.000000pt;}
._7_c00493{margin-left:-3.199221pt;}
._0_c00493{margin-left:-1.020809pt;}
._1_c00493{width:1.382397pt;}
._5_c00493{width:6.654014pt;}
._6_c00493{width:8.112592pt;}
._4_c00493{width:17.622049pt;}
._2_c00493{width:19.664978pt;}
._3_c00493{width:22.198503pt;}
._c_c00493{width:31.885461pt;}
._b_c00493{width:136.319565pt;}
._a_c00493{width:161.440128pt;}
._8_c00493{width:174.079898pt;}
._9_c00493{width:942.185984pt;}
.fs1_c00493{font-size:42.880000pt;}
.fs3_c00493{font-size:53.120000pt;}
.fs0_c00493{font-size:58.880000pt;}
.fs2_c00493{font-size:64.000000pt;}
.y0_c00493{bottom:0.000000pt;}
.y6_c00493{bottom:12.000000pt;}
.yb_c00493{bottom:12.000133pt;}
.ya_c00493{bottom:29.960000pt;}
.y2_c00493{bottom:41.120000pt;}
.y9_c00493{bottom:48.039733pt;}
.y8_c00493{bottom:65.960000pt;}
.y16_c00493{bottom:368.704800pt;}
.y15_c00493{bottom:394.625067pt;}
.y14_c00493{bottom:408.544800pt;}
.y13_c00493{bottom:562.651467pt;}
.y12_c00493{bottom:588.571733pt;}
.y11_c00493{bottom:614.492000pt;}
.y10_c00493{bottom:640.412267pt;}
.yf_c00493{bottom:666.332533pt;}
.ye_c00493{bottom:692.252800pt;}
.yd_c00493{bottom:718.173067pt;}
.yc_c00493{bottom:744.093333pt;}
.y7_c00493{bottom:760.893333pt;}
.y5_c00493{bottom:844.773333pt;}
.y4_c00493{bottom:884.453733pt;}
.y3_c00493{bottom:909.893333pt;}
.y1_c00493{bottom:937.253333pt;}
.h6_c00493{height:25.919733pt;}
.h5_c00493{height:35.404688pt;}
.h3_c00493{height:38.935040pt;}
.h2_c00493{height:43.806720pt;}
.h4_c00493{height:47.296000pt;}
.h7_c00493{height:47.616000pt;}
.h8_c00493{height:79.871867pt;}
.h1_c00493{height:1122.666667pt;}
.h0_c00493{height:1122.719867pt;}
.w2_c00493{width:17.119733pt;}
.w3_c00493{width:600.572000pt;}
.w0_c00493{width:793.759867pt;}
.w1_c00493{width:794.000000pt;}
.x0_c00493{left:0.000000pt;}
.x3_c00493{left:1.119733pt;}
.x1_c00493{left:94.591733pt;}
.x2_c00493{left:96.512000pt;}
.x4_c00493{left:115.712000pt;}
.x5_c00493{left:280.546400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_df7bd3d41c178ca9fa233a1d.woff2')format("woff");}.ff1_c00494{font-family:ff1_c00494;line-height:0.929199;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00494;src:url('chunks/assets/font_47bc2d69e4ba5403f06f27a7.woff2')format("woff");}.ff2_c00494{font-family:ff2_c00494;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00494{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00494{vertical-align:0.000000px;}
.ls0_c00494{letter-spacing:0.000000px;}
.sc__c00494{text-shadow:none;}
.sc0_c00494{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00494{-webkit-text-stroke:0px transparent;}
.sc0_c00494{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00494{word-spacing:0.000000px;}
._0_c00494{margin-left:-1.260050px;}
._1_c00494{width:845.705952px;}
.fc1_c00494{color:rgb(64,64,64);}
.fc0_c00494{color:rgb(0,0,0);}
.fs1_c00494{font-size:66.240000px;}
.fs0_c00494{font-size:95.760000px;}
.y0_c00494{bottom:0.000000px;}
.y4_c00494{bottom:705.705000px;}
.y3_c00494{bottom:743.144850px;}
.y2_c00494{bottom:771.765000px;}
.y1_c00494{bottom:814.965000px;}
.h3_c00494{height:48.224531px;}
.h2_c00494{height:68.827500px;}
.h0_c00494{height:1262.879850px;}
.h1_c00494{height:1263.000000px;}
.w0_c00494{width:892.979850px;}
.w1_c00494{width:893.250000px;}
.x0_c00494{left:0.000000px;}
.x2_c00494{left:115.776000px;}
.x3_c00494{left:375.915000px;}
.x1_c00494{left:427.755000px;}
.x4_c00494{left:446.475000px;}
@media print{
.v0_c00494{vertical-align:0.000000pt;}
.ls0_c00494{letter-spacing:0.000000pt;}
.ws0_c00494{word-spacing:0.000000pt;}
._0_c00494{margin-left:-1.120045pt;}
._1_c00494{width:751.738624pt;}
.fs1_c00494{font-size:58.880000pt;}
.fs0_c00494{font-size:85.120000pt;}
.y0_c00494{bottom:0.000000pt;}
.y4_c00494{bottom:627.293333pt;}
.y3_c00494{bottom:660.573200pt;}
.y2_c00494{bottom:686.013333pt;}
.y1_c00494{bottom:724.413333pt;}
.h3_c00494{height:42.866250pt;}
.h2_c00494{height:61.180000pt;}
.h0_c00494{height:1122.559867pt;}
.h1_c00494{height:1122.666667pt;}
.w0_c00494{width:793.759867pt;}
.w1_c00494{width:794.000000pt;}
.x0_c00494{left:0.000000pt;}
.x2_c00494{left:102.912000pt;}
.x3_c00494{left:334.146667pt;}
.x1_c00494{left:380.226667pt;}
.x4_c00494{left:396.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_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_0fce43a0d382d67f09a8e8fe.woff2')format("woff");}.ff1_c00495{font-family:ff1_c00495;line-height:0.871094;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00495;src:url('chunks/assets/font_a667f73c1002e61eefffc9eb.woff2')format("woff");}.ff2_c00495{font-family:ff2_c00495;line-height:0.861816;font-style:normal;font-weight:normal;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_1bb8be6628d41729dace0819.woff2')format("woff");}.ff3_c00495{font-family:ff3_c00495;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00495{transform:matrix(0.249720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249720,0.000000,0.000000,0.250000,0,0);}
.v0_c00495{vertical-align:0.000000px;}
.ls0_c00495{letter-spacing:0.000000px;}
.sc__c00495{text-shadow:none;}
.sc0_c00495{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00495{-webkit-text-stroke:0px transparent;}
.sc0_c00495{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00495{word-spacing:0.000000px;}
._0_c00495{width:107.500781px;}
._1_c00495{width:109.477267px;}
._2_c00495{width:3442.442976px;}
.fc0_c00495{color:rgb(0,0,0);}
.fs0_c00495{font-size:60.480000px;}
.y0_c00495{bottom:0.000000px;}
.y3_c00495{bottom:4.138500px;}
.y1b_c00495{bottom:38.400600px;}
.y1a_c00495{bottom:209.761500px;}
.y19_c00495{bottom:229.561500px;}
.y18_c00495{bottom:249.361500px;}
.y17_c00495{bottom:269.161500px;}
.y16_c00495{bottom:288.961500px;}
.y15_c00495{bottom:328.561500px;}
.y14_c00495{bottom:348.361500px;}
.y13_c00495{bottom:368.161500px;}
.y12_c00495{bottom:387.961500px;}
.y11_c00495{bottom:407.761500px;}
.y10_c00495{bottom:447.361500px;}
.yf_c00495{bottom:467.161500px;}
.ye_c00495{bottom:486.961500px;}
.yd_c00495{bottom:506.761500px;}
.yc_c00495{bottom:526.561500px;}
.yb_c00495{bottom:566.161500px;}
.ya_c00495{bottom:585.961500px;}
.y9_c00495{bottom:605.761500px;}
.y8_c00495{bottom:625.561500px;}
.y7_c00495{bottom:645.361500px;}
.y6_c00495{bottom:704.761500px;}
.y5_c00495{bottom:724.561500px;}
.y4_c00495{bottom:744.361500px;}
.y2_c00495{bottom:764.161500px;}
.y1_c00495{bottom:788.100000px;}
.h3_c00495{height:18.360300px;}
.h4_c00495{height:41.343750px;}
.h2_c00495{height:41.904844px;}
.h5_c00495{height:44.031094px;}
.h0_c00495{height:892.499850px;}
.h1_c00495{height:892.500000px;}
.wa_c00495{width:7.739655px;}
.wb_c00495{width:7.740240px;}
.wf_c00495{width:15.479850px;}
.w10_c00495{width:15.480450px;}
.wc_c00495{width:40.679850px;}
.w11_c00495{width:44.820150px;}
.w7_c00495{width:47.340300px;}
.we_c00495{width:56.340300px;}
.w4_c00495{width:57.240300px;}
.w6_c00495{width:69.479850px;}
.w5_c00495{width:72.719550px;}
.w3_c00495{width:81.179850px;}
.w8_c00495{width:81.899400px;}
.wd_c00495{width:139.859700px;}
.w12_c00495{width:143.279850px;}
.w2_c00495{width:167.220000px;}
.w9_c00495{width:172.440000px;}
.w0_c00495{width:1262.999850px;}
.w1_c00495{width:1263.000000px;}
.x0_c00495{left:0.000000px;}
.x12_c00495{left:76.845750px;}
.x2_c00495{left:78.826200px;}
.x3_c00495{left:394.905000px;}
.xf_c00495{left:470.325000px;}
.xb_c00495{left:478.066500px;}
.x4_c00495{left:491.025000px;}
.xc_c00495{left:541.066500px;}
.x5_c00495{left:561.766500px;}
.xd_c00495{left:628.366500px;}
.x11_c00495{left:636.105000px;}
.x1_c00495{left:649.066500px;}
.xe_c00495{left:796.485000px;}
.x8_c00495{left:804.225000px;}
.x6_c00495{left:817.185000px;}
.x9_c00495{left:862.905000px;}
.x7_c00495{left:875.866500px;}
.x10_c00495{left:957.945000px;}
.xa_c00495{left:970.905000px;}
@media print{
.v0_c00495{vertical-align:0.000000pt;}
.ls0_c00495{letter-spacing:0.000000pt;}
.ws0_c00495{word-spacing:0.000000pt;}
._0_c00495{width:95.556250pt;}
._1_c00495{width:97.313126pt;}
._2_c00495{width:3059.949312pt;}
.fs0_c00495{font-size:53.760000pt;}
.y0_c00495{bottom:0.000000pt;}
.y3_c00495{bottom:3.678667pt;}
.y1b_c00495{bottom:34.133867pt;}
.y1a_c00495{bottom:186.454667pt;}
.y19_c00495{bottom:204.054667pt;}
.y18_c00495{bottom:221.654667pt;}
.y17_c00495{bottom:239.254667pt;}
.y16_c00495{bottom:256.854667pt;}
.y15_c00495{bottom:292.054667pt;}
.y14_c00495{bottom:309.654667pt;}
.y13_c00495{bottom:327.254667pt;}
.y12_c00495{bottom:344.854667pt;}
.y11_c00495{bottom:362.454667pt;}
.y10_c00495{bottom:397.654667pt;}
.yf_c00495{bottom:415.254667pt;}
.ye_c00495{bottom:432.854667pt;}
.yd_c00495{bottom:450.454667pt;}
.yc_c00495{bottom:468.054667pt;}
.yb_c00495{bottom:503.254667pt;}
.ya_c00495{bottom:520.854667pt;}
.y9_c00495{bottom:538.454667pt;}
.y8_c00495{bottom:556.054667pt;}
.y7_c00495{bottom:573.654667pt;}
.y6_c00495{bottom:626.454667pt;}
.y5_c00495{bottom:644.054667pt;}
.y4_c00495{bottom:661.654667pt;}
.y2_c00495{bottom:679.254667pt;}
.y1_c00495{bottom:700.533333pt;}
.h3_c00495{height:16.320267pt;}
.h4_c00495{height:36.750000pt;}
.h2_c00495{height:37.248750pt;}
.h5_c00495{height:39.138750pt;}
.h0_c00495{height:793.333200pt;}
.h1_c00495{height:793.333333pt;}
.wa_c00495{width:6.879693pt;}
.wb_c00495{width:6.880213pt;}
.wf_c00495{width:13.759867pt;}
.w10_c00495{width:13.760400pt;}
.wc_c00495{width:36.159867pt;}
.w11_c00495{width:39.840133pt;}
.w7_c00495{width:42.080267pt;}
.we_c00495{width:50.080267pt;}
.w4_c00495{width:50.880267pt;}
.w6_c00495{width:61.759867pt;}
.w5_c00495{width:64.639600pt;}
.w3_c00495{width:72.159867pt;}
.w8_c00495{width:72.799467pt;}
.wd_c00495{width:124.319733pt;}
.w12_c00495{width:127.359867pt;}
.w2_c00495{width:148.640000pt;}
.w9_c00495{width:153.280000pt;}
.w0_c00495{width:1122.666533pt;}
.w1_c00495{width:1122.666667pt;}
.x0_c00495{left:0.000000pt;}
.x12_c00495{left:68.307333pt;}
.x2_c00495{left:70.067733pt;}
.x3_c00495{left:351.026667pt;}
.xf_c00495{left:418.066667pt;}
.xb_c00495{left:424.948000pt;}
.x4_c00495{left:436.466667pt;}
.xc_c00495{left:480.948000pt;}
.x5_c00495{left:499.348000pt;}
.xd_c00495{left:558.548000pt;}
.x11_c00495{left:565.426667pt;}
.x1_c00495{left:576.948000pt;}
.xe_c00495{left:707.986667pt;}
.x8_c00495{left:714.866667pt;}
.x6_c00495{left:726.386667pt;}
.x9_c00495{left:767.026667pt;}
.x7_c00495{left:778.548000pt;}
.x10_c00495{left:851.506667pt;}
.xa_c00495{left:863.026667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_37d4ed79eafd0174990dc823.woff2')format("woff");}.ff1_c00496{font-family:ff1_c00496;line-height:0.861816;font-style:normal;font-weight:normal;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_bdbc6fd8a7c7a3108def5682.woff2')format("woff");}.ff2_c00496{font-family:ff2_c00496;line-height:0.871094;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00496;src:url('chunks/assets/font_2671ba678c2c3ca410ac302f.woff2')format("woff");}.ff3_c00496{font-family:ff3_c00496;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00496{transform:matrix(0.249720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249720,0.000000,0.000000,0.250000,0,0);}
.v0_c00496{vertical-align:0.000000px;}
.ls0_c00496{letter-spacing:0.000000px;}
.sc__c00496{text-shadow:none;}
.sc0_c00496{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00496{-webkit-text-stroke:0px transparent;}
.sc0_c00496{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00496{word-spacing:0.000000px;}
._0_c00496{width:3442.442976px;}
.fc0_c00496{color:rgb(0,0,0);}
.fs0_c00496{font-size:60.480000px;}
.y0_c00496{bottom:0.000000px;}
.y2_c00496{bottom:4.138500px;}
.y1f_c00496{bottom:4.139550px;}
.y1c_c00496{bottom:4.140000px;}
.y22_c00496{bottom:38.400600px;}
.y21_c00496{bottom:94.920750px;}
.y20_c00496{bottom:114.720750px;}
.y1e_c00496{bottom:134.520750px;}
.y1d_c00496{bottom:154.320000px;}
.y1b_c00496{bottom:174.120000px;}
.y1a_c00496{bottom:213.721500px;}
.y19_c00496{bottom:233.521500px;}
.y18_c00496{bottom:253.321500px;}
.y17_c00496{bottom:273.121500px;}
.y16_c00496{bottom:292.921500px;}
.y15_c00496{bottom:332.521500px;}
.y14_c00496{bottom:352.321500px;}
.y13_c00496{bottom:372.121500px;}
.y12_c00496{bottom:391.921500px;}
.y11_c00496{bottom:411.721500px;}
.y10_c00496{bottom:451.321500px;}
.yf_c00496{bottom:471.121500px;}
.ye_c00496{bottom:490.921500px;}
.yd_c00496{bottom:510.721500px;}
.yc_c00496{bottom:530.521500px;}
.yb_c00496{bottom:570.121500px;}
.ya_c00496{bottom:589.921500px;}
.y9_c00496{bottom:609.721500px;}
.y8_c00496{bottom:629.521500px;}
.y7_c00496{bottom:649.321500px;}
.y6_c00496{bottom:688.921500px;}
.y5_c00496{bottom:708.721500px;}
.y4_c00496{bottom:728.521500px;}
.y3_c00496{bottom:748.321500px;}
.y1_c00496{bottom:768.121500px;}
.h2_c00496{height:18.359700px;}
.h3_c00496{height:41.343750px;}
.h4_c00496{height:41.904844px;}
.h5_c00496{height:44.031094px;}
.h0_c00496{height:892.499850px;}
.h1_c00496{height:892.500000px;}
.w9_c00496{width:7.739655px;}
.w10_c00496{width:7.740240px;}
.wd_c00496{width:15.479850px;}
.we_c00496{width:15.480450px;}
.wa_c00496{width:40.679850px;}
.wf_c00496{width:44.820150px;}
.w6_c00496{width:47.340300px;}
.wc_c00496{width:56.340300px;}
.w3_c00496{width:57.240300px;}
.w5_c00496{width:69.479850px;}
.w4_c00496{width:72.719550px;}
.w2_c00496{width:81.179850px;}
.w7_c00496{width:81.899400px;}
.wb_c00496{width:139.859700px;}
.w11_c00496{width:173.160000px;}
.w8_c00496{width:184.500000px;}
.w0_c00496{width:1262.999850px;}
.w1_c00496{width:1263.000000px;}
.x0_c00496{left:0.000000px;}
.x14_c00496{left:76.845750px;}
.x7_c00496{left:78.826200px;}
.x1_c00496{left:394.905000px;}
.x12_c00496{left:470.325000px;}
.xa_c00496{left:478.066500px;}
.x2_c00496{left:491.025000px;}
.xb_c00496{left:541.066500px;}
.x10_c00496{left:548.805000px;}
.x3_c00496{left:561.766500px;}
.xc_c00496{left:628.366500px;}
.x11_c00496{left:636.105000px;}
.x4_c00496{left:649.066500px;}
.xd_c00496{left:796.485000px;}
.x8_c00496{left:804.225000px;}
.x5_c00496{left:817.185000px;}
.x13_c00496{left:855.166500px;}
.xe_c00496{left:862.905000px;}
.x6_c00496{left:875.866500px;}
.xf_c00496{left:957.945000px;}
.x9_c00496{left:970.905000px;}
@media print{
.v0_c00496{vertical-align:0.000000pt;}
.ls0_c00496{letter-spacing:0.000000pt;}
.ws0_c00496{word-spacing:0.000000pt;}
._0_c00496{width:3059.949312pt;}
.fs0_c00496{font-size:53.760000pt;}
.y0_c00496{bottom:0.000000pt;}
.y2_c00496{bottom:3.678667pt;}
.y1f_c00496{bottom:3.679600pt;}
.y1c_c00496{bottom:3.680000pt;}
.y22_c00496{bottom:34.133867pt;}
.y21_c00496{bottom:84.374000pt;}
.y20_c00496{bottom:101.974000pt;}
.y1e_c00496{bottom:119.574000pt;}
.y1d_c00496{bottom:137.173333pt;}
.y1b_c00496{bottom:154.773333pt;}
.y1a_c00496{bottom:189.974667pt;}
.y19_c00496{bottom:207.574667pt;}
.y18_c00496{bottom:225.174667pt;}
.y17_c00496{bottom:242.774667pt;}
.y16_c00496{bottom:260.374667pt;}
.y15_c00496{bottom:295.574667pt;}
.y14_c00496{bottom:313.174667pt;}
.y13_c00496{bottom:330.774667pt;}
.y12_c00496{bottom:348.374667pt;}
.y11_c00496{bottom:365.974667pt;}
.y10_c00496{bottom:401.174667pt;}
.yf_c00496{bottom:418.774667pt;}
.ye_c00496{bottom:436.374667pt;}
.yd_c00496{bottom:453.974667pt;}
.yc_c00496{bottom:471.574667pt;}
.yb_c00496{bottom:506.774667pt;}
.ya_c00496{bottom:524.374667pt;}
.y9_c00496{bottom:541.974667pt;}
.y8_c00496{bottom:559.574667pt;}
.y7_c00496{bottom:577.174667pt;}
.y6_c00496{bottom:612.374667pt;}
.y5_c00496{bottom:629.974667pt;}
.y4_c00496{bottom:647.574667pt;}
.y3_c00496{bottom:665.174667pt;}
.y1_c00496{bottom:682.774667pt;}
.h2_c00496{height:16.319733pt;}
.h3_c00496{height:36.750000pt;}
.h4_c00496{height:37.248750pt;}
.h5_c00496{height:39.138750pt;}
.h0_c00496{height:793.333200pt;}
.h1_c00496{height:793.333333pt;}
.w9_c00496{width:6.879693pt;}
.w10_c00496{width:6.880213pt;}
.wd_c00496{width:13.759867pt;}
.we_c00496{width:13.760400pt;}
.wa_c00496{width:36.159867pt;}
.wf_c00496{width:39.840133pt;}
.w6_c00496{width:42.080267pt;}
.wc_c00496{width:50.080267pt;}
.w3_c00496{width:50.880267pt;}
.w5_c00496{width:61.759867pt;}
.w4_c00496{width:64.639600pt;}
.w2_c00496{width:72.159867pt;}
.w7_c00496{width:72.799467pt;}
.wb_c00496{width:124.319733pt;}
.w11_c00496{width:153.920000pt;}
.w8_c00496{width:164.000000pt;}
.w0_c00496{width:1122.666533pt;}
.w1_c00496{width:1122.666667pt;}
.x0_c00496{left:0.000000pt;}
.x14_c00496{left:68.307333pt;}
.x7_c00496{left:70.067733pt;}
.x1_c00496{left:351.026667pt;}
.x12_c00496{left:418.066667pt;}
.xa_c00496{left:424.948000pt;}
.x2_c00496{left:436.466667pt;}
.xb_c00496{left:480.948000pt;}
.x10_c00496{left:487.826667pt;}
.x3_c00496{left:499.348000pt;}
.xc_c00496{left:558.548000pt;}
.x11_c00496{left:565.426667pt;}
.x4_c00496{left:576.948000pt;}
.xd_c00496{left:707.986667pt;}
.x8_c00496{left:714.866667pt;}
.x5_c00496{left:726.386667pt;}
.x13_c00496{left:760.148000pt;}
.xe_c00496{left:767.026667pt;}
.x6_c00496{left:778.548000pt;}
.xf_c00496{left:851.506667pt;}
.x9_c00496{left:863.026667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c3769d727f87b6bc6cc9e4ce.woff2')format("woff");}.ff1_c00497{font-family:ff1_c00497;line-height:0.861816;font-style:normal;font-weight:normal;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_481b742ab8e50f6cc4011fb1.woff2')format("woff");}.ff2_c00497{font-family:ff2_c00497;line-height:0.871094;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00497;src:url('chunks/assets/font_0cc982b6f5f6fd26e3370797.woff2')format("woff");}.ff3_c00497{font-family:ff3_c00497;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00497{transform:matrix(0.249720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249720,0.000000,0.000000,0.250000,0,0);}
.v0_c00497{vertical-align:0.000000px;}
.ls0_c00497{letter-spacing:0.000000px;}
.sc__c00497{text-shadow:none;}
.sc0_c00497{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00497{-webkit-text-stroke:0px transparent;}
.sc0_c00497{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00497{word-spacing:0.000000px;}
._0_c00497{width:3442.442976px;}
.fc0_c00497{color:rgb(0,0,0);}
.fs0_c00497{font-size:60.480000px;}
.y0_c00497{bottom:0.000000px;}
.y2_c00497{bottom:4.138500px;}
.y1c_c00497{bottom:38.400600px;}
.y1b_c00497{bottom:213.721500px;}
.y1a_c00497{bottom:233.521500px;}
.y19_c00497{bottom:253.321500px;}
.y18_c00497{bottom:273.121500px;}
.y17_c00497{bottom:292.921500px;}
.y16_c00497{bottom:332.521500px;}
.y15_c00497{bottom:352.321500px;}
.y14_c00497{bottom:372.121500px;}
.y13_c00497{bottom:391.921500px;}
.y12_c00497{bottom:411.721500px;}
.y11_c00497{bottom:451.321500px;}
.y10_c00497{bottom:471.121500px;}
.yf_c00497{bottom:490.921500px;}
.ye_c00497{bottom:510.721500px;}
.yd_c00497{bottom:530.521500px;}
.yc_c00497{bottom:570.121500px;}
.yb_c00497{bottom:589.921500px;}
.ya_c00497{bottom:609.721500px;}
.y9_c00497{bottom:629.521500px;}
.y8_c00497{bottom:649.321500px;}
.y7_c00497{bottom:669.121500px;}
.y6_c00497{bottom:688.921500px;}
.y5_c00497{bottom:708.721500px;}
.y4_c00497{bottom:728.521500px;}
.y3_c00497{bottom:748.321500px;}
.y1_c00497{bottom:768.121500px;}
.h2_c00497{height:18.359700px;}
.h3_c00497{height:41.343750px;}
.h4_c00497{height:41.904844px;}
.h5_c00497{height:44.031094px;}
.h0_c00497{height:892.499850px;}
.h1_c00497{height:892.500000px;}
.wb_c00497{width:7.739655px;}
.wf_c00497{width:7.740240px;}
.wd_c00497{width:15.479850px;}
.we_c00497{width:15.480450px;}
.w12_c00497{width:31.140300px;}
.w9_c00497{width:40.679850px;}
.w10_c00497{width:44.820150px;}
.w6_c00497{width:47.340300px;}
.wc_c00497{width:56.340300px;}
.w3_c00497{width:57.240300px;}
.w13_c00497{width:61.199400px;}
.w5_c00497{width:69.479850px;}
.w4_c00497{width:72.719550px;}
.w2_c00497{width:81.179850px;}
.w7_c00497{width:81.899400px;}
.wa_c00497{width:139.859700px;}
.w11_c00497{width:140.579850px;}
.w15_c00497{width:143.279850px;}
.w14_c00497{width:172.440000px;}
.w8_c00497{width:185.220000px;}
.w0_c00497{width:1262.999850px;}
.w1_c00497{width:1263.000000px;}
.x0_c00497{left:0.000000px;}
.x13_c00497{left:76.845750px;}
.x7_c00497{left:78.826200px;}
.x1_c00497{left:394.905000px;}
.xa_c00497{left:478.066500px;}
.x2_c00497{left:491.025000px;}
.xb_c00497{left:541.066500px;}
.x12_c00497{left:548.805000px;}
.x3_c00497{left:561.766500px;}
.xc_c00497{left:628.366500px;}
.x11_c00497{left:636.105000px;}
.x4_c00497{left:649.066500px;}
.xd_c00497{left:796.485000px;}
.x9_c00497{left:804.225000px;}
.x5_c00497{left:817.185000px;}
.x10_c00497{left:855.166500px;}
.xe_c00497{left:862.905000px;}
.x6_c00497{left:875.866500px;}
.xf_c00497{left:957.945000px;}
.x8_c00497{left:970.905000px;}
@media print{
.v0_c00497{vertical-align:0.000000pt;}
.ls0_c00497{letter-spacing:0.000000pt;}
.ws0_c00497{word-spacing:0.000000pt;}
._0_c00497{width:3059.949312pt;}
.fs0_c00497{font-size:53.760000pt;}
.y0_c00497{bottom:0.000000pt;}
.y2_c00497{bottom:3.678667pt;}
.y1c_c00497{bottom:34.133867pt;}
.y1b_c00497{bottom:189.974667pt;}
.y1a_c00497{bottom:207.574667pt;}
.y19_c00497{bottom:225.174667pt;}
.y18_c00497{bottom:242.774667pt;}
.y17_c00497{bottom:260.374667pt;}
.y16_c00497{bottom:295.574667pt;}
.y15_c00497{bottom:313.174667pt;}
.y14_c00497{bottom:330.774667pt;}
.y13_c00497{bottom:348.374667pt;}
.y12_c00497{bottom:365.974667pt;}
.y11_c00497{bottom:401.174667pt;}
.y10_c00497{bottom:418.774667pt;}
.yf_c00497{bottom:436.374667pt;}
.ye_c00497{bottom:453.974667pt;}
.yd_c00497{bottom:471.574667pt;}
.yc_c00497{bottom:506.774667pt;}
.yb_c00497{bottom:524.374667pt;}
.ya_c00497{bottom:541.974667pt;}
.y9_c00497{bottom:559.574667pt;}
.y8_c00497{bottom:577.174667pt;}
.y7_c00497{bottom:594.774667pt;}
.y6_c00497{bottom:612.374667pt;}
.y5_c00497{bottom:629.974667pt;}
.y4_c00497{bottom:647.574667pt;}
.y3_c00497{bottom:665.174667pt;}
.y1_c00497{bottom:682.774667pt;}
.h2_c00497{height:16.319733pt;}
.h3_c00497{height:36.750000pt;}
.h4_c00497{height:37.248750pt;}
.h5_c00497{height:39.138750pt;}
.h0_c00497{height:793.333200pt;}
.h1_c00497{height:793.333333pt;}
.wb_c00497{width:6.879693pt;}
.wf_c00497{width:6.880213pt;}
.wd_c00497{width:13.759867pt;}
.we_c00497{width:13.760400pt;}
.w12_c00497{width:27.680267pt;}
.w9_c00497{width:36.159867pt;}
.w10_c00497{width:39.840133pt;}
.w6_c00497{width:42.080267pt;}
.wc_c00497{width:50.080267pt;}
.w3_c00497{width:50.880267pt;}
.w13_c00497{width:54.399467pt;}
.w5_c00497{width:61.759867pt;}
.w4_c00497{width:64.639600pt;}
.w2_c00497{width:72.159867pt;}
.w7_c00497{width:72.799467pt;}
.wa_c00497{width:124.319733pt;}
.w11_c00497{width:124.959867pt;}
.w15_c00497{width:127.359867pt;}
.w14_c00497{width:153.280000pt;}
.w8_c00497{width:164.640000pt;}
.w0_c00497{width:1122.666533pt;}
.w1_c00497{width:1122.666667pt;}
.x0_c00497{left:0.000000pt;}
.x13_c00497{left:68.307333pt;}
.x7_c00497{left:70.067733pt;}
.x1_c00497{left:351.026667pt;}
.xa_c00497{left:424.948000pt;}
.x2_c00497{left:436.466667pt;}
.xb_c00497{left:480.948000pt;}
.x12_c00497{left:487.826667pt;}
.x3_c00497{left:499.348000pt;}
.xc_c00497{left:558.548000pt;}
.x11_c00497{left:565.426667pt;}
.x4_c00497{left:576.948000pt;}
.xd_c00497{left:707.986667pt;}
.x9_c00497{left:714.866667pt;}
.x5_c00497{left:726.386667pt;}
.x10_c00497{left:760.148000pt;}
.xe_c00497{left:767.026667pt;}
.x6_c00497{left:778.548000pt;}
.xf_c00497{left:851.506667pt;}
.x8_c00497{left:863.026667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_884e5654f6156a3ae612a91c.woff2')format("woff");}.ff1_c00498{font-family:ff1_c00498;line-height:0.861816;font-style:normal;font-weight:normal;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_ef5caf20f1aeac6ed3e463f7.woff2')format("woff");}.ff2_c00498{font-family:ff2_c00498;line-height:0.871094;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00498;src:url('chunks/assets/font_a86793c275bdadffc5107c2b.woff2')format("woff");}.ff3_c00498{font-family:ff3_c00498;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00498{transform:matrix(0.249720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249720,0.000000,0.000000,0.250000,0,0);}
.v0_c00498{vertical-align:0.000000px;}
.ls0_c00498{letter-spacing:0.000000px;}
.sc__c00498{text-shadow:none;}
.sc0_c00498{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00498{-webkit-text-stroke:0px transparent;}
.sc0_c00498{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00498{word-spacing:0.000000px;}
._0_c00498{width:3442.442976px;}
.fc0_c00498{color:rgb(0,0,0);}
.fs0_c00498{font-size:60.480000px;}
.y0_c00498{bottom:0.000000px;}
.y2_c00498{bottom:4.138500px;}
.y1f_c00498{bottom:4.139550px;}
.y1c_c00498{bottom:4.140000px;}
.y22_c00498{bottom:38.400600px;}
.y21_c00498{bottom:94.920750px;}
.y20_c00498{bottom:114.720750px;}
.y1e_c00498{bottom:134.520750px;}
.y1d_c00498{bottom:154.320000px;}
.y1b_c00498{bottom:174.120000px;}
.y1a_c00498{bottom:213.721500px;}
.y19_c00498{bottom:233.521500px;}
.y18_c00498{bottom:253.321500px;}
.y17_c00498{bottom:273.121500px;}
.y16_c00498{bottom:292.921500px;}
.y15_c00498{bottom:332.521500px;}
.y14_c00498{bottom:352.321500px;}
.y13_c00498{bottom:372.121500px;}
.y12_c00498{bottom:391.921500px;}
.y11_c00498{bottom:411.721500px;}
.y10_c00498{bottom:451.321500px;}
.yf_c00498{bottom:471.121500px;}
.ye_c00498{bottom:490.921500px;}
.yd_c00498{bottom:510.721500px;}
.yc_c00498{bottom:530.521500px;}
.yb_c00498{bottom:570.121500px;}
.ya_c00498{bottom:589.921500px;}
.y9_c00498{bottom:609.721500px;}
.y8_c00498{bottom:629.521500px;}
.y7_c00498{bottom:649.321500px;}
.y6_c00498{bottom:688.921500px;}
.y5_c00498{bottom:708.721500px;}
.y4_c00498{bottom:728.521500px;}
.y3_c00498{bottom:748.321500px;}
.y1_c00498{bottom:768.121500px;}
.h2_c00498{height:18.359700px;}
.h3_c00498{height:41.343750px;}
.h4_c00498{height:41.904844px;}
.h5_c00498{height:44.031094px;}
.h0_c00498{height:892.499850px;}
.h1_c00498{height:892.500000px;}
.wd_c00498{width:7.739655px;}
.wb_c00498{width:7.740240px;}
.we_c00498{width:15.479850px;}
.wf_c00498{width:15.480450px;}
.w9_c00498{width:40.679850px;}
.w10_c00498{width:44.820150px;}
.w6_c00498{width:47.340300px;}
.wc_c00498{width:56.340300px;}
.w3_c00498{width:57.240300px;}
.w5_c00498{width:69.479850px;}
.w4_c00498{width:72.719550px;}
.w2_c00498{width:81.179850px;}
.w7_c00498{width:81.899400px;}
.wa_c00498{width:139.859700px;}
.w8_c00498{width:172.440000px;}
.w12_c00498{width:173.160000px;}
.w11_c00498{width:184.500000px;}
.w0_c00498{width:1262.999850px;}
.w1_c00498{width:1263.000000px;}
.x0_c00498{left:0.000000px;}
.x12_c00498{left:76.845750px;}
.x7_c00498{left:78.826200px;}
.x1_c00498{left:394.905000px;}
.xa_c00498{left:478.066500px;}
.x2_c00498{left:491.025000px;}
.xb_c00498{left:541.066500px;}
.x9_c00498{left:548.805000px;}
.x3_c00498{left:561.766500px;}
.xc_c00498{left:628.366500px;}
.x10_c00498{left:636.105000px;}
.x4_c00498{left:649.066500px;}
.xd_c00498{left:796.485000px;}
.x11_c00498{left:804.225000px;}
.x5_c00498{left:817.185000px;}
.xe_c00498{left:862.905000px;}
.x6_c00498{left:875.866500px;}
.xf_c00498{left:957.945000px;}
.x8_c00498{left:970.905000px;}
@media print{
.v0_c00498{vertical-align:0.000000pt;}
.ls0_c00498{letter-spacing:0.000000pt;}
.ws0_c00498{word-spacing:0.000000pt;}
._0_c00498{width:3059.949312pt;}
.fs0_c00498{font-size:53.760000pt;}
.y0_c00498{bottom:0.000000pt;}
.y2_c00498{bottom:3.678667pt;}
.y1f_c00498{bottom:3.679600pt;}
.y1c_c00498{bottom:3.680000pt;}
.y22_c00498{bottom:34.133867pt;}
.y21_c00498{bottom:84.374000pt;}
.y20_c00498{bottom:101.974000pt;}
.y1e_c00498{bottom:119.574000pt;}
.y1d_c00498{bottom:137.173333pt;}
.y1b_c00498{bottom:154.773333pt;}
.y1a_c00498{bottom:189.974667pt;}
.y19_c00498{bottom:207.574667pt;}
.y18_c00498{bottom:225.174667pt;}
.y17_c00498{bottom:242.774667pt;}
.y16_c00498{bottom:260.374667pt;}
.y15_c00498{bottom:295.574667pt;}
.y14_c00498{bottom:313.174667pt;}
.y13_c00498{bottom:330.774667pt;}
.y12_c00498{bottom:348.374667pt;}
.y11_c00498{bottom:365.974667pt;}
.y10_c00498{bottom:401.174667pt;}
.yf_c00498{bottom:418.774667pt;}
.ye_c00498{bottom:436.374667pt;}
.yd_c00498{bottom:453.974667pt;}
.yc_c00498{bottom:471.574667pt;}
.yb_c00498{bottom:506.774667pt;}
.ya_c00498{bottom:524.374667pt;}
.y9_c00498{bottom:541.974667pt;}
.y8_c00498{bottom:559.574667pt;}
.y7_c00498{bottom:577.174667pt;}
.y6_c00498{bottom:612.374667pt;}
.y5_c00498{bottom:629.974667pt;}
.y4_c00498{bottom:647.574667pt;}
.y3_c00498{bottom:665.174667pt;}
.y1_c00498{bottom:682.774667pt;}
.h2_c00498{height:16.319733pt;}
.h3_c00498{height:36.750000pt;}
.h4_c00498{height:37.248750pt;}
.h5_c00498{height:39.138750pt;}
.h0_c00498{height:793.333200pt;}
.h1_c00498{height:793.333333pt;}
.wd_c00498{width:6.879693pt;}
.wb_c00498{width:6.880213pt;}
.we_c00498{width:13.759867pt;}
.wf_c00498{width:13.760400pt;}
.w9_c00498{width:36.159867pt;}
.w10_c00498{width:39.840133pt;}
.w6_c00498{width:42.080267pt;}
.wc_c00498{width:50.080267pt;}
.w3_c00498{width:50.880267pt;}
.w5_c00498{width:61.759867pt;}
.w4_c00498{width:64.639600pt;}
.w2_c00498{width:72.159867pt;}
.w7_c00498{width:72.799467pt;}
.wa_c00498{width:124.319733pt;}
.w8_c00498{width:153.280000pt;}
.w12_c00498{width:153.920000pt;}
.w11_c00498{width:164.000000pt;}
.w0_c00498{width:1122.666533pt;}
.w1_c00498{width:1122.666667pt;}
.x0_c00498{left:0.000000pt;}
.x12_c00498{left:68.307333pt;}
.x7_c00498{left:70.067733pt;}
.x1_c00498{left:351.026667pt;}
.xa_c00498{left:424.948000pt;}
.x2_c00498{left:436.466667pt;}
.xb_c00498{left:480.948000pt;}
.x9_c00498{left:487.826667pt;}
.x3_c00498{left:499.348000pt;}
.xc_c00498{left:558.548000pt;}
.x10_c00498{left:565.426667pt;}
.x4_c00498{left:576.948000pt;}
.xd_c00498{left:707.986667pt;}
.x11_c00498{left:714.866667pt;}
.x5_c00498{left:726.386667pt;}
.xe_c00498{left:767.026667pt;}
.x6_c00498{left:778.548000pt;}
.xf_c00498{left:851.506667pt;}
.x8_c00498{left:863.026667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_975a3a95668e68adac985093.woff2')format("woff");}.ff1_c00499{font-family:ff1_c00499;line-height:0.861816;font-style:normal;font-weight:normal;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_2e637ab08cf3200932e546ed.woff2')format("woff");}.ff2_c00499{font-family:ff2_c00499;line-height:0.871094;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00499;src:url('chunks/assets/font_f815f196c43ead1d042d164b.woff2')format("woff");}.ff3_c00499{font-family:ff3_c00499;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00499{transform:matrix(0.249720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249720,0.000000,0.000000,0.250000,0,0);}
.v0_c00499{vertical-align:0.000000px;}
.ls0_c00499{letter-spacing:0.000000px;}
.sc__c00499{text-shadow:none;}
.sc0_c00499{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00499{-webkit-text-stroke:0px transparent;}
.sc0_c00499{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00499{word-spacing:0.000000px;}
._0_c00499{width:3442.442976px;}
.fc0_c00499{color:rgb(0,0,0);}
.fs0_c00499{font-size:60.480000px;}
.y0_c00499{bottom:0.000000px;}
.y2_c00499{bottom:4.138500px;}
.y16_c00499{bottom:38.400600px;}
.y15_c00499{bottom:332.521500px;}
.y14_c00499{bottom:352.321500px;}
.y13_c00499{bottom:372.121500px;}
.y12_c00499{bottom:391.921500px;}
.y11_c00499{bottom:411.721500px;}
.y10_c00499{bottom:451.321500px;}
.yf_c00499{bottom:471.121500px;}
.ye_c00499{bottom:490.921500px;}
.yd_c00499{bottom:510.721500px;}
.yc_c00499{bottom:530.521500px;}
.yb_c00499{bottom:570.121500px;}
.ya_c00499{bottom:589.921500px;}
.y9_c00499{bottom:609.721500px;}
.y8_c00499{bottom:629.521500px;}
.y7_c00499{bottom:649.321500px;}
.y6_c00499{bottom:688.921500px;}
.y5_c00499{bottom:708.721500px;}
.y4_c00499{bottom:728.521500px;}
.y3_c00499{bottom:748.321500px;}
.y1_c00499{bottom:768.121500px;}
.h2_c00499{height:18.359700px;}
.h3_c00499{height:41.343750px;}
.h4_c00499{height:41.904844px;}
.h5_c00499{height:44.031094px;}
.h0_c00499{height:892.499850px;}
.h1_c00499{height:892.500000px;}
.wc_c00499{width:7.739655px;}
.w10_c00499{width:7.740240px;}
.wd_c00499{width:15.479850px;}
.we_c00499{width:15.480450px;}
.w9_c00499{width:40.679850px;}
.wf_c00499{width:44.820150px;}
.w6_c00499{width:47.340300px;}
.wb_c00499{width:56.340300px;}
.w3_c00499{width:57.240300px;}
.w5_c00499{width:69.479850px;}
.w4_c00499{width:72.719550px;}
.w2_c00499{width:81.179850px;}
.w7_c00499{width:81.899400px;}
.wa_c00499{width:139.859700px;}
.w8_c00499{width:173.160000px;}
.w11_c00499{width:185.220000px;}
.w0_c00499{width:1262.999850px;}
.w1_c00499{width:1263.000000px;}
.x0_c00499{left:0.000000px;}
.xf_c00499{left:76.845750px;}
.x7_c00499{left:78.826200px;}
.x1_c00499{left:394.905000px;}
.x9_c00499{left:478.066500px;}
.x2_c00499{left:491.025000px;}
.xa_c00499{left:541.066500px;}
.x3_c00499{left:561.766500px;}
.xb_c00499{left:628.366500px;}
.x4_c00499{left:649.066500px;}
.xc_c00499{left:796.485000px;}
.x5_c00499{left:817.185000px;}
.xd_c00499{left:862.905000px;}
.x6_c00499{left:875.866500px;}
.xe_c00499{left:957.945000px;}
.x8_c00499{left:970.905000px;}
@media print{
.v0_c00499{vertical-align:0.000000pt;}
.ls0_c00499{letter-spacing:0.000000pt;}
.ws0_c00499{word-spacing:0.000000pt;}
._0_c00499{width:3059.949312pt;}
.fs0_c00499{font-size:53.760000pt;}
.y0_c00499{bottom:0.000000pt;}
.y2_c00499{bottom:3.678667pt;}
.y16_c00499{bottom:34.133867pt;}
.y15_c00499{bottom:295.574667pt;}
.y14_c00499{bottom:313.174667pt;}
.y13_c00499{bottom:330.774667pt;}
.y12_c00499{bottom:348.374667pt;}
.y11_c00499{bottom:365.974667pt;}
.y10_c00499{bottom:401.174667pt;}
.yf_c00499{bottom:418.774667pt;}
.ye_c00499{bottom:436.374667pt;}
.yd_c00499{bottom:453.974667pt;}
.yc_c00499{bottom:471.574667pt;}
.yb_c00499{bottom:506.774667pt;}
.ya_c00499{bottom:524.374667pt;}
.y9_c00499{bottom:541.974667pt;}
.y8_c00499{bottom:559.574667pt;}
.y7_c00499{bottom:577.174667pt;}
.y6_c00499{bottom:612.374667pt;}
.y5_c00499{bottom:629.974667pt;}
.y4_c00499{bottom:647.574667pt;}
.y3_c00499{bottom:665.174667pt;}
.y1_c00499{bottom:682.774667pt;}
.h2_c00499{height:16.319733pt;}
.h3_c00499{height:36.750000pt;}
.h4_c00499{height:37.248750pt;}
.h5_c00499{height:39.138750pt;}
.h0_c00499{height:793.333200pt;}
.h1_c00499{height:793.333333pt;}
.wc_c00499{width:6.879693pt;}
.w10_c00499{width:6.880213pt;}
.wd_c00499{width:13.759867pt;}
.we_c00499{width:13.760400pt;}
.w9_c00499{width:36.159867pt;}
.wf_c00499{width:39.840133pt;}
.w6_c00499{width:42.080267pt;}
.wb_c00499{width:50.080267pt;}
.w3_c00499{width:50.880267pt;}
.w5_c00499{width:61.759867pt;}
.w4_c00499{width:64.639600pt;}
.w2_c00499{width:72.159867pt;}
.w7_c00499{width:72.799467pt;}
.wa_c00499{width:124.319733pt;}
.w8_c00499{width:153.920000pt;}
.w11_c00499{width:164.640000pt;}
.w0_c00499{width:1122.666533pt;}
.w1_c00499{width:1122.666667pt;}
.x0_c00499{left:0.000000pt;}
.xf_c00499{left:68.307333pt;}
.x7_c00499{left:70.067733pt;}
.x1_c00499{left:351.026667pt;}
.x9_c00499{left:424.948000pt;}
.x2_c00499{left:436.466667pt;}
.xa_c00499{left:480.948000pt;}
.x3_c00499{left:499.348000pt;}
.xb_c00499{left:558.548000pt;}
.x4_c00499{left:576.948000pt;}
.xc_c00499{left:707.986667pt;}
.x5_c00499{left:726.386667pt;}
.xd_c00499{left:767.026667pt;}
.x6_c00499{left:778.548000pt;}
.xe_c00499{left:851.506667pt;}
.x8_c00499{left:863.026667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_72e9ce9845def3344e029d7b.woff2')format("woff");}.ff1_c00001{font-family:ff1_c00001;line-height:0.861816;font-style:normal;font-weight:normal;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_6173a9ba81c9c048d20f26dd.woff2')format("woff");}.ff2_c00001{font-family:ff2_c00001;line-height:0.871094;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00001;src:url('chunks/assets/font_9ae074a117d5b9c0e234225b.woff2')format("woff");}.ff3_c00001{font-family:ff3_c00001;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00001;src:url('chunks/assets/font_fbd09e7838886f38af8fd253.woff2')format("woff");}.ff4_c00001{font-family:ff4_c00001;line-height:0.929199;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00001;src:url('chunks/assets/font_6f0507882f7c00354700b9eb.woff2')format("woff");}.ff5_c00001{font-family:ff5_c00001;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00001;src:url('chunks/assets/font_9aa5d3bf57673d8ffb2bc841.woff2')format("woff");}.ff6_c00001{font-family:ff6_c00001;line-height:0.938965;font-style:normal;font-weight:normal;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_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff7_c00001{font-family:ff7_c00001;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00001;src:url('chunks/assets/font_4a9c12128366f2a1d6fe2d43.woff2')format("woff");}.ff8_c00001{font-family:ff8_c00001;line-height:0.929199;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00001;src:url('chunks/assets/font_b3068615ae1f9c132d45c0f6.woff2')format("woff");}.ff9_c00001{font-family:ff9_c00001;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00001;src:url('chunks/assets/font_581afcd39e7eb38bcb64d41b.woff2')format("woff");}.ffa_c00001{font-family:ffa_c00001;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00001;src:url('chunks/assets/font_f363d9f49fb3c22ebac3d09f.woff2')format("woff");}.ffb_c00001{font-family:ffb_c00001;line-height:0.926270;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc_c00001;src:url('chunks/assets/font_cc53a05ae9f7f152f9ac94cc.woff2')format("woff");}.ffc_c00001{font-family:ffc_c00001;line-height:1.070312;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd_c00001;src:url('chunks/assets/font_1fe9a9d54d3572e5566c6ce2.woff2')format("woff");}.ffd_c00001{font-family:ffd_c00001;line-height:0.740234;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe_c00001;src:url('chunks/assets/font_c5b4c860d302870a7ec24cf7.woff2')format("woff");}.ffe_c00001{font-family:ffe_c00001;line-height:1.070312;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff_c00001;src:url('chunks/assets/font_d45ce4700ff6f72c472c168d.woff2')format("woff");}.fff_c00001{font-family:fff_c00001;line-height:0.926270;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10_c00001;src:url('chunks/assets/font_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff10_c00001{font-family:ff10_c00001;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11_c00001;src:url('chunks/assets/font_857f1554cfa19ce9bd8d56c0.woff2')format("woff");}.ff11_c00001{font-family:ff11_c00001;line-height:0.971191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12_c00001;src:url('chunks/assets/font_9ef73583d99554a9a7c7763e.woff2')format("woff");}.ff12_c00001{font-family:ff12_c00001;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13_c00001;src:url('chunks/assets/font_9363ae8fd9cc381beee4308f.woff2')format("woff");}.ff13_c00001{font-family:ff13_c00001;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14_c00001;src:url('chunks/assets/font_52fe4a9bdaa78a638855ff47.woff2')format("woff");}.ff14_c00001{font-family:ff14_c00001;line-height:0.861816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15_c00001;src:url('chunks/assets/font_6ba7ffe9af3499922568e1a7.woff2')format("woff");}.ff15_c00001{font-family:ff15_c00001;line-height:0.861816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16_c00001;src:url('chunks/assets/font_b0714d821eda31091b843777.woff2')format("woff");}.ff16_c00001{font-family:ff16_c00001;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17_c00001;src:url('chunks/assets/font_9363ae8fd9cc381beee4308f.woff2')format("woff");}.ff17_c00001{font-family:ff17_c00001;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18_c00001;src:url('chunks/assets/font_20c2d535262b9a1ba81dfe3e.woff2')format("woff");}.ff18_c00001{font-family:ff18_c00001;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19_c00001;src:url('chunks/assets/font_c7d79dd971c4746e9c95115c.woff2')format("woff");}.ff19_c00001{font-family:ff19_c00001;line-height:0.971191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a_c00001;src:url('chunks/assets/font_c0f6ee123fd997072daf9edb.woff2')format("woff");}.ff1a_c00001{font-family:ff1a_c00001;line-height:0.986816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b_c00001;src:url('chunks/assets/font_04684181deec77de58dbc830.woff2')format("woff");}.ff1b_c00001{font-family:ff1b_c00001;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c_c00001;src:url('chunks/assets/font_829d51284206241b66f20484.woff2')format("woff");}.ff1c_c00001{font-family:ff1c_c00001;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d_c00001;src:url('chunks/assets/font_6371fb6c6ec92560738efb2b.woff2')format("woff");}.ff1d_c00001{font-family:ff1d_c00001;line-height:0.861816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e_c00001;src:url('chunks/assets/font_20c2d535262b9a1ba81dfe3e.woff2')format("woff");}.ff1e_c00001{font-family:ff1e_c00001;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f_c00001;src:url('chunks/assets/font_f7e715830f4535452930e48c.woff2')format("woff");}.ff1f_c00001{font-family:ff1f_c00001;line-height:0.926270;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20_c00001;src:url('chunks/assets/font_2f50f1f47da56976bd9f5203.woff2')format("woff");}.ff20_c00001{font-family:ff20_c00001;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21_c00001;src:url('chunks/assets/font_450a790d3bc4d3f78f6ed677.woff2')format("woff");}.ff21_c00001{font-family:ff21_c00001;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22_c00001;src:url('chunks/assets/font_d289d601f2431864ead2bde4.woff2')format("woff");}.ff22_c00001{font-family:ff22_c00001;line-height:0.882324;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23_c00001;src:url('chunks/assets/font_9363ae8fd9cc381beee4308f.woff2')format("woff");}.ff23_c00001{font-family:ff23_c00001;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24_c00001;src:url('chunks/assets/font_1221ca473783d35b9e74994f.woff2')format("woff");}.ff24_c00001{font-family:ff24_c00001;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25_c00001;src:url('chunks/assets/font_27d5f0f5ea10c38c383e851f.woff2')format("woff");}.ff25_c00001{font-family:ff25_c00001;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26_c00001;src:url('chunks/assets/font_9363ae8fd9cc381beee4308f.woff2')format("woff");}.ff26_c00001{font-family:ff26_c00001;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27_c00001;src:url('chunks/assets/font_221a4282cce500809a1d2d9d.woff2')format("woff");}.ff27_c00001{font-family:ff27_c00001;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28_c00001;src:url('chunks/assets/font_1d0379da46a9aac100e5a10c.woff2')format("woff");}.ff28_c00001{font-family:ff28_c00001;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29_c00001;src:url('chunks/assets/font_9363ae8fd9cc381beee4308f.woff2')format("woff");}.ff29_c00001{font-family:ff29_c00001;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a_c00001;src:url('chunks/assets/font_4e56d72b395475eb563e6d9c.woff2')format("woff");}.ff2a_c00001{font-family:ff2a_c00001;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b_c00001;src:url('chunks/assets/font_93df1a17b98dc41d16206e6d.woff2')format("woff");}.ff2b_c00001{font-family:ff2b_c00001;line-height:0.971191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c_c00001;src:url('chunks/assets/font_91cbafcdcfb2e8bebddc23be.woff2')format("woff");}.ff2c_c00001{font-family:ff2c_c00001;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d_c00001;src:url('chunks/assets/font_04684181deec77de58dbc830.woff2')format("woff");}.ff2d_c00001{font-family:ff2d_c00001;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e_c00001;src:url('chunks/assets/font_829d51284206241b66f20484.woff2')format("woff");}.ff2e_c00001{font-family:ff2e_c00001;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f_c00001;src:url('chunks/assets/font_b4bcbe5c5353483d133212cd.woff2')format("woff");}.ff2f_c00001{font-family:ff2f_c00001;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff30_c00001;src:url('chunks/assets/font_efecf8dc0f790ffceffdd276.woff2')format("woff");}.ff30_c00001{font-family:ff30_c00001;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff31_c00001;src:url('chunks/assets/font_4e603a34f992284945b47870.woff2')format("woff");}.ff31_c00001{font-family:ff31_c00001;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff32_c00001;src:url('chunks/assets/font_10f0a1ba0e2df43feacfca88.woff2')format("woff");}.ff32_c00001{font-family:ff32_c00001;line-height:0.931152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff33_c00001;src:url('chunks/assets/font_d3145ad485e3d9410658970d.woff2')format("woff");}.ff33_c00001{font-family:ff33_c00001;line-height:0.931152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff34_c00001;src:url('chunks/assets/font_aac8d546811e9bb442831aee.woff2')format("woff");}.ff34_c00001{font-family:ff34_c00001;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff35_c00001;src:url('chunks/assets/font_aa4944e27dd8ac92c239a5f9.woff2')format("woff");}.ff35_c00001{font-family:ff35_c00001;line-height:0.731445;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff36_c00001;src:url('chunks/assets/font_0335de1d7804664fdc5304df.woff2')format("woff");}.ff36_c00001{font-family:ff36_c00001;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff37_c00001;src:url('chunks/assets/font_91cbafcdcfb2e8bebddc23be.woff2')format("woff");}.ff37_c00001{font-family:ff37_c00001;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff38_c00001;src:url('chunks/assets/font_e4660f63d16add976e65ec1b.woff2')format("woff");}.ff38_c00001{font-family:ff38_c00001;line-height:0.693359;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff39_c00001;src:url('chunks/assets/font_175c3525e76f4cb2102cc7d1.woff2')format("woff");}.ff39_c00001{font-family:ff39_c00001;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3a_c00001;src:url('chunks/assets/font_990d5e8fedfcde794663f463.woff2')format("woff");}.ff3a_c00001{font-family:ff3a_c00001;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3b_c00001;src:url('chunks/assets/font_17d3a4590bd8f6155c60aa73.woff2')format("woff");}.ff3b_c00001{font-family:ff3b_c00001;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3c_c00001;src:url('chunks/assets/font_b839f65419a51240907cb1af.woff2')format("woff");}.ff3c_c00001{font-family:ff3c_c00001;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3d_c00001;src:url('chunks/assets/font_3bfb7d12c670c9f2ec17813e.woff2')format("woff");}.ff3d_c00001{font-family:ff3d_c00001;line-height:0.893066;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3e_c00001;src:url('chunks/assets/font_77b628e031e69bf5a9664a04.woff2')format("woff");}.ff3e_c00001{font-family:ff3e_c00001;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3f_c00001;src:url('chunks/assets/font_e9256a8de33901cdea8c2ed7.woff2')format("woff");}.ff3f_c00001{font-family:ff3f_c00001;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff40_c00001;src:url('chunks/assets/font_9ccb4a1fbffa78e329d0af83.woff2')format("woff");}.ff40_c00001{font-family:ff40_c00001;line-height:1.075000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff41_c00001;src:url('chunks/assets/font_02e9b7600beac16e49ad0d2e.woff2')format("woff");}.ff41_c00001{font-family:ff41_c00001;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff42_c00001;src:url('chunks/assets/font_4c24b8a3d9bae5d0e2159e3c.woff2')format("woff");}.ff42_c00001{font-family:ff42_c00001;line-height:1.070312;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff43_c00001;src:url('chunks/assets/font_3d22119b6ade360165698b7b.woff2')format("woff");}.ff43_c00001{font-family:ff43_c00001;line-height:1.084961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff44_c00001;src:url('chunks/assets/font_757b5acfea6b7520970e2f6d.woff2')format("woff");}.ff44_c00001{font-family:ff44_c00001;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff45_c00001;src:url('chunks/assets/font_1919d191c76d723cb28d866c.woff2')format("woff");}.ff45_c00001{font-family:ff45_c00001;line-height:0.764000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff46_c00001;src:url('chunks/assets/font_b2b343a7be6622bbdd7426e4.woff2')format("woff");}.ff46_c00001{font-family:ff46_c00001;line-height:0.959000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff47_c00001;src:url('chunks/assets/font_6a20e71a3e2122c07b340f3c.woff2')format("woff");}.ff47_c00001{font-family:ff47_c00001;line-height:0.959000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff48_c00001;src:url('chunks/assets/font_9ccb4a1fbffa78e329d0af83.woff2')format("woff");}.ff48_c00001{font-family:ff48_c00001;line-height:1.075000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff49_c00001;src:url('chunks/assets/font_7c7a6996d753e2817c554f77.woff2')format("woff");}.ff49_c00001{font-family:ff49_c00001;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4a_c00001;src:url('chunks/assets/font_0aff2ec4f95c2802ef4fa75f.woff2')format("woff");}.ff4a_c00001{font-family:ff4a_c00001;line-height:1.070312;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4b_c00001;src:url('chunks/assets/font_ba508dd1539d9eb69504150c.woff2')format("woff");}.ff4b_c00001{font-family:ff4b_c00001;line-height:1.084961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4c_c00001;src:url('chunks/assets/font_8a283333757241a86266a70b.woff2')format("woff");}.ff4c_c00001{font-family:ff4c_c00001;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4d_c00001;src:url('chunks/assets/font_ea0a5d114971b10c629d3863.woff2')format("woff");}.ff4d_c00001{font-family:ff4d_c00001;line-height:0.959000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4e_c00001;src:url('chunks/assets/font_d180abc3ac04808f76d7e0be.woff2')format("woff");}.ff4e_c00001{font-family:ff4e_c00001;line-height:0.764000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m6_c00001{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.ma_c00001{transform:matrix(0.000000,-0.244537,0.244537,0.051979,0,0);-ms-transform:matrix(0.000000,-0.244537,0.244537,0.051979,0,0);-webkit-transform:matrix(0.000000,-0.244537,0.244537,0.051979,0,0);}
.m9_c00001{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.mb_c00001{transform:matrix(0.244537,0.000000,-0.051979,0.244537,0,0);-ms-transform:matrix(0.244537,0.000000,-0.051979,0.244537,0,0);-webkit-transform:matrix(0.244537,0.000000,-0.051979,0.244537,0,0);}
.m1_c00001{transform:matrix(0.249648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249648,0.000000,0.000000,0.250000,0,0);}
.m0_c00001{transform:matrix(0.249720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249720,0.000000,0.000000,0.250000,0,0);}
.m3_c00001{transform:matrix(0.249771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249771,0.000000,0.000000,0.250000,0,0);}
.m4_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);}
.m7_c00001{transform:matrix(0.250032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250032,0.000000,0.000000,0.250000,0,0);}
.m2_c00001{transform:matrix(0.250632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250632,0.000000,0.000000,0.250000,0,0);}
.m8_c00001{transform:matrix(0.256230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256230,0.000000,0.000000,0.250000,0,0);}
.m5_c00001{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.vd_c00001{vertical-align:-27.358620px;}
.vf_c00001{vertical-align:-15.839040px;}
.v1_c00001{vertical-align:-5.758596px;}
.v2_c00001{vertical-align:-2.878128px;}
.v0_c00001{vertical-align:0.000000px;}
.v7_c00001{vertical-align:2.880468px;}
.v3_c00001{vertical-align:5.758596px;}
.vb_c00001{vertical-align:15.119520px;}
.ve_c00001{vertical-align:20.880480px;}
.v4_c00001{vertical-align:23.758620px;}
.vc_c00001{vertical-align:27.358620px;}
.v9_c00001{vertical-align:43.200000px;}
.va_c00001{vertical-align:46.080468px;}
.v6_c00001{vertical-align:48.239340px;}
.v5_c00001{vertical-align:54.721860px;}
.v8_c00001{vertical-align:57.599988px;}
.ls23_c00001{letter-spacing:-0.852000px;}
.ls24_c00001{letter-spacing:-0.129600px;}
.ls22_c00001{letter-spacing:-0.069000px;}
.ls0_c00001{letter-spacing:0.000000px;}
.ls10_c00001{letter-spacing:0.000003px;}
.ls3b_c00001{letter-spacing:0.001380px;}
.ls1e_c00001{letter-spacing:0.001860px;}
.lsa_c00001{letter-spacing:0.020399px;}
.ls8_c00001{letter-spacing:0.022739px;}
.ls3a_c00001{letter-spacing:0.053193px;}
.ls1d_c00001{letter-spacing:0.054720px;}
.ls3d_c00001{letter-spacing:0.070200px;}
.ls41_c00001{letter-spacing:0.072480px;}
.lsc_c00001{letter-spacing:0.072840px;}
.lsf_c00001{letter-spacing:0.073200px;}
.ls20_c00001{letter-spacing:0.084480px;}
.lsb_c00001{letter-spacing:0.132000px;}
.ls5_c00001{letter-spacing:0.144000px;}
.ls21_c00001{letter-spacing:0.144480px;}
.ls29_c00001{letter-spacing:0.179010px;}
.ls25_c00001{letter-spacing:0.187200px;}
.ls6_c00001{letter-spacing:0.255840px;}
.ls3_c00001{letter-spacing:0.261600px;}
.ls42_c00001{letter-spacing:0.285180px;}
.ls9_c00001{letter-spacing:0.288960px;}
.ls30_c00001{letter-spacing:0.297949px;}
.ls40_c00001{letter-spacing:0.325380px;}
.ls1a_c00001{letter-spacing:0.357600px;}
.ls34_c00001{letter-spacing:0.359033px;}
.ls14_c00001{letter-spacing:0.359040px;}
.ls19_c00001{letter-spacing:0.360000px;}
.ls2e_c00001{letter-spacing:0.360420px;}
.ls27_c00001{letter-spacing:0.360480px;}
.ls11_c00001{letter-spacing:0.361380px;}
.ls1f_c00001{letter-spacing:0.365640px;}
.ls2f_c00001{letter-spacing:0.366177px;}
.ls7_c00001{letter-spacing:0.680100px;}
.ls3c_c00001{letter-spacing:0.718620px;}
.ls16_c00001{letter-spacing:1.296960px;}
.ls3f_c00001{letter-spacing:2.338590px;}
.ls3e_c00001{letter-spacing:2.340930px;}
.ls43_c00001{letter-spacing:4.501830px;}
.ls17_c00001{letter-spacing:15.480960px;}
.ls15_c00001{letter-spacing:16.198140px;}
.ls18_c00001{letter-spacing:16.524000px;}
.ls1_c00001{letter-spacing:17.890080px;}
.ls2_c00001{letter-spacing:18.790080px;}
.ls12_c00001{letter-spacing:19.798140px;}
.ls38_c00001{letter-spacing:20.457668px;}
.ls13_c00001{letter-spacing:20.501400px;}
.ls37_c00001{letter-spacing:21.407902px;}
.ls36_c00001{letter-spacing:28.194960px;}
.ls35_c00001{letter-spacing:28.197300px;}
.ls32_c00001{letter-spacing:33.955860px;}
.ls31_c00001{letter-spacing:36.304800px;}
.ls28_c00001{letter-spacing:44.261880px;}
.ls33_c00001{letter-spacing:44.788800px;}
.ls1b_c00001{letter-spacing:52.703400px;}
.ls1c_c00001{letter-spacing:54.836400px;}
.lse_c00001{letter-spacing:59.315880px;}
.lsd_c00001{letter-spacing:59.318280px;}
.ls26_c00001{letter-spacing:64.422480px;}
.ls2c_c00001{letter-spacing:78.546447px;}
.ls2a_c00001{letter-spacing:78.719847px;}
.ls2d_c00001{letter-spacing:78.722247px;}
.ls2b_c00001{letter-spacing:78.726447px;}
.ls39_c00001{letter-spacing:87.984000px;}
.ls45_c00001{letter-spacing:297.607224px;}
.ls44_c00001{letter-spacing:297.609624px;}
.ls4_c00001{letter-spacing:845.711280px;}
.sc__c00001{text-shadow:none;}
.sc1_c00001{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc0_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;}
.sc1_c00001{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0_c00001{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1e_c00001{word-spacing:-64.848960px;}
.ws39_c00001{word-spacing:-43.200000px;}
.ws26_c00001{word-spacing:-41.472000px;}
.ws36_c00001{word-spacing:-39.528000px;}
.ws18_c00001{word-spacing:-36.829440px;}
.ws38_c00001{word-spacing:-36.365760px;}
.ws28_c00001{word-spacing:-35.856000px;}
.ws2a_c00001{word-spacing:-33.120000px;}
.ws1f_c00001{word-spacing:-30.470400px;}
.ws27_c00001{word-spacing:-27.174240px;}
.ws3f_c00001{word-spacing:-26.688000px;}
.ws19_c00001{word-spacing:-21.641760px;}
.ws30_c00001{word-spacing:-21.067200px;}
.ws32_c00001{word-spacing:-21.060000px;}
.ws29_c00001{word-spacing:-19.038240px;}
.ws3_c00001{word-spacing:-18.454752px;}
.ws4_c00001{word-spacing:-18.414720px;}
.ws34_c00001{word-spacing:-18.000000px;}
.ws3a_c00001{word-spacing:-17.921100px;}
.ws3e_c00001{word-spacing:-16.679983px;}
.ws17_c00001{word-spacing:-16.613297px;}
.ws37_c00001{word-spacing:-16.560000px;}
.ws20_c00001{word-spacing:-16.272003px;}
.ws1b_c00001{word-spacing:-16.272000px;}
.ws24_c00001{word-spacing:-16.200000px;}
.ws23_c00001{word-spacing:-15.840000px;}
.ws1_c00001{word-spacing:-15.012000px;}
.ws44_c00001{word-spacing:-15.011983px;}
.ws1c_c00001{word-spacing:-14.970240px;}
.ws33_c00001{word-spacing:-14.940030px;}
.ws2f_c00001{word-spacing:-14.760000px;}
.ws2b_c00001{word-spacing:-14.572800px;}
.ws2c_c00001{word-spacing:-14.503800px;}
.ws2e_c00001{word-spacing:-14.443200px;}
.ws3c_c00001{word-spacing:-14.220030px;}
.ws2d_c00001{word-spacing:-13.720800px;}
.ws42_c00001{word-spacing:-13.344000px;}
.ws35_c00001{word-spacing:-12.060030px;}
.ws45_c00001{word-spacing:-11.675983px;}
.ws15_c00001{word-spacing:-11.609280px;}
.ws1a_c00001{word-spacing:-10.902267px;}
.ws16_c00001{word-spacing:-10.808640px;}
.ws47_c00001{word-spacing:-10.007983px;}
.ws1d_c00001{word-spacing:-9.437760px;}
.ws31_c00001{word-spacing:-9.187200px;}
.ws21_c00001{word-spacing:-3.961200px;}
.ws3b_c00001{word-spacing:-0.071684px;}
.ws0_c00001{word-spacing:0.000000px;}
.wsa_c00001{word-spacing:2.495658px;}
.wsc_c00001{word-spacing:42.337031px;}
.ws9_c00001{word-spacing:44.536332px;}
.ws2_c00001{word-spacing:51.578438px;}
.ws7_c00001{word-spacing:51.695683px;}
.wse_c00001{word-spacing:57.636749px;}
.wsf_c00001{word-spacing:61.656854px;}
.ws12_c00001{word-spacing:63.529459px;}
.ws8_c00001{word-spacing:64.656864px;}
.wsd_c00001{word-spacing:66.397651px;}
.ws11_c00001{word-spacing:73.175990px;}
.ws6_c00001{word-spacing:79.537018px;}
.ws5_c00001{word-spacing:90.120339px;}
.ws10_c00001{word-spacing:99.578592px;}
.ws14_c00001{word-spacing:122.556586px;}
.wsb_c00001{word-spacing:159.998083px;}
.ws22_c00001{word-spacing:190.646888px;}
.ws13_c00001{word-spacing:195.456355px;}
.ws25_c00001{word-spacing:272.476506px;}
.ws4c_c00001{word-spacing:323.286518px;}
.ws3d_c00001{word-spacing:372.540227px;}
.ws46_c00001{word-spacing:382.509600px;}
.ws43_c00001{word-spacing:382.519200px;}
.ws49_c00001{word-spacing:743.449240px;}
.ws4b_c00001{word-spacing:743.455240px;}
.ws41_c00001{word-spacing:749.221240px;}
.ws4a_c00001{word-spacing:866.269117px;}
.ws48_c00001{word-spacing:866.275117px;}
.ws40_c00001{word-spacing:872.035117px;}
._91_c00001{margin-left:-2638.847998px;}
._87_c00001{margin-left:-2594.472208px;}
._83_c00001{margin-left:-2542.255181px;}
._86_c00001{margin-left:-2506.598137px;}
._82_c00001{margin-left:-2452.262356px;}
._76_c00001{margin-left:-2445.075782px;}
._85_c00001{margin-left:-2427.785289px;}
._92_c00001{margin-left:-2355.482453px;}
._84_c00001{margin-left:-2339.911218px;}
._89_c00001{margin-left:-2298.835424px;}
._8b_c00001{margin-left:-2276.611281px;}
._90_c00001{margin-left:-2266.531291px;}
._75_c00001{margin-left:-2260.694218px;}
._73_c00001{margin-left:-2249.611308px;}
._74_c00001{margin-left:-2240.714238px;}
._6f_c00001{margin-left:-2230.694248px;}
._88_c00001{margin-left:-2210.954267px;}
._8a_c00001{margin-left:-2186.618457px;}
._8f_c00001{margin-left:-2168.875554px;}
._80_c00001{margin-left:-2121.014357px;}
._8e_c00001{margin-left:-2080.994397px;}
._78_c00001{margin-left:-2030.714448px;}
._7a_c00001{margin-left:-2025.117374px;}
._8d_c00001{margin-left:-1997.534481px;}
._7e_c00001{margin-left:-1945.137454px;}
._7c_c00001{margin-left:-1938.470375px;}
._8c_c00001{margin-left:-1907.541657px;}
._7f_c00001{margin-left:-1898.630415px;}
._7d_c00001{margin-left:-1878.477521px;}
._7b_c00001{margin-left:-1872.873361px;}
._81_c00001{margin-left:-1466.896690px;}
._77_c00001{margin-left:-1451.524704px;}
._6e_c00001{margin-left:-1378.799700px;}
._79_c00001{margin-left:-1212.806866px;}
._71_c00001{margin-left:-955.282066px;}
._6d_c00001{margin-left:-865.919134px;}
._70_c00001{margin-left:-711.695510px;}
._67_c00001{margin-left:-211.801541px;}
._61_c00001{margin-left:-167.957953px;}
._62_c00001{margin-left:-166.254045px;}
._65_c00001{margin-left:-149.915019px;}
._63_c00001{margin-left:-136.821147px;}
._66_c00001{margin-left:-135.820988px;}
._64_c00001{margin-left:-111.779767px;}
._30_c00001{margin-left:-19.712077px;}
._68_c00001{margin-left:-11.547621px;}
._3c_c00001{margin-left:-7.149272px;}
._34_c00001{margin-left:-5.043951px;}
._19_c00001{margin-left:-3.842095px;}
._f_c00001{margin-left:-2.118753px;}
._5_c00001{margin-left:-1.062919px;}
._10_c00001{width:1.120250px;}
._e_c00001{width:2.195757px;}
._13_c00001{width:3.642392px;}
._14_c00001{width:4.772587px;}
._12_c00001{width:5.962037px;}
._24_c00001{width:7.484699px;}
._25_c00001{width:8.571740px;}
._1d_c00001{width:9.603451px;}
._1e_c00001{width:10.795367px;}
._41_c00001{width:12.056436px;}
._a_c00001{width:13.182399px;}
._b_c00001{width:14.211870px;}
._2c_c00001{width:16.030755px;}
._2d_c00001{width:17.369478px;}
._48_c00001{width:19.071724px;}
._50_c00001{width:20.106677px;}
._44_c00001{width:21.235627px;}
._45_c00001{width:22.809749px;}
._4a_c00001{width:23.974233px;}
._3f_c00001{width:25.962915px;}
._36_c00001{width:28.091808px;}
._35_c00001{width:29.676122px;}
._4f_c00001{width:31.191819px;}
._47_c00001{width:32.244891px;}
._3d_c00001{width:33.992619px;}
._3e_c00001{width:35.003561px;}
._4d_c00001{width:36.934245px;}
._42_c00001{width:39.576581px;}
._43_c00001{width:40.670653px;}
._26_c00001{width:42.226601px;}
._40_c00001{width:43.623141px;}
._1a_c00001{width:50.960144px;}
._58_c00001{width:52.345200px;}
._49_c00001{width:55.943301px;}
._29_c00001{width:57.158572px;}
._5d_c00001{width:62.275394px;}
._1c_c00001{width:63.950648px;}
._56_c00001{width:65.519904px;}
._4e_c00001{width:71.032583px;}
._4c_c00001{width:73.071975px;}
._4b_c00001{width:74.158643px;}
._54_c00001{width:75.851160px;}
._16_c00001{width:78.714417px;}
._18_c00001{width:85.183206px;}
._17_c00001{width:86.259354px;}
._d_c00001{width:88.195439px;}
._2a_c00001{width:89.702720px;}
._3_c00001{width:93.775558px;}
._2b_c00001{width:98.571272px;}
._32_c00001{width:100.431954px;}
._1b_c00001{width:101.444006px;}
._28_c00001{width:103.012664px;}
._c_c00001{width:106.602777px;}
._23_c00001{width:109.650720px;}
._22_c00001{width:111.261153px;}
._53_c00001{width:114.735464px;}
._15_c00001{width:116.263881px;}
._31_c00001{width:118.724697px;}
._27_c00001{width:121.422652px;}
._6b_c00001{width:124.892610px;}
._9_c00001{width:126.534482px;}
._2f_c00001{width:128.202979px;}
._39_c00001{width:130.839175px;}
._2e_c00001{width:136.132002px;}
._57_c00001{width:137.377284px;}
._60_c00001{width:138.384226px;}
._5f_c00001{width:140.400000px;}
._46_c00001{width:146.347635px;}
._38_c00001{width:158.929823px;}
._59_c00001{width:161.091208px;}
._6a_c00001{width:164.852595px;}
._37_c00001{width:177.583574px;}
._55_c00001{width:179.677292px;}
._69_c00001{width:184.866209px;}
._6c_c00001{width:188.826194px;}
._5e_c00001{width:193.629776px;}
._21_c00001{width:196.673375px;}
._5a_c00001{width:197.827085px;}
._20_c00001{width:215.022422px;}
._33_c00001{width:231.951474px;}
._52_c00001{width:298.348644px;}
._51_c00001{width:325.658524px;}
._1f_c00001{width:398.440224px;}
._72_c00001{width:780.671075px;}
._3a_c00001{width:837.502596px;}
._6_c00001{width:845.705952px;}
._8_c00001{width:991.977120px;}
._3b_c00001{width:995.547456px;}
._7_c00001{width:1257.579648px;}
._5c_c00001{width:1301.335200px;}
._5b_c00001{width:1320.775200px;}
._11_c00001{width:1342.539072px;}
._1_c00001{width:3433.946976px;}
._0_c00001{width:3442.442976px;}
._2_c00001{width:3505.627800px;}
._4_c00001{width:3609.768530px;}
.fc9_c00001{color:rgb(100,101,103);}
.fc7_c00001{color:rgb(255,102,0);}
.fc6_c00001{color:rgb(0,0,255);}
.fc5_c00001{color:transparent;}
.fc4_c00001{color:rgb(255,0,0);}
.fc3_c00001{color:rgb(0,0,10);}
.fc8_c00001{color:rgb(255,255,255);}
.fc2_c00001{color:rgb(89,89,89);}
.fc1_c00001{color:rgb(64,64,64);}
.fc0_c00001{color:rgb(0,0,0);}
.fs18_c00001{font-size:12.000000px;}
.fs21_c00001{font-size:17.999940px;}
.fs20_c00001{font-size:29.999940px;}
.fs22_c00001{font-size:30.670203px;}
.fs1f_c00001{font-size:35.999940px;}
.fsb_c00001{font-size:38.880000px;}
.fsa_c00001{font-size:41.760000px;}
.fs1e_c00001{font-size:41.999940px;}
.fs19_c00001{font-size:48.000000px;}
.fse_c00001{font-size:48.240120px;}
.fs23_c00001{font-size:49.072385px;}
.fs3_c00001{font-size:51.840060px;}
.fs1d_c00001{font-size:53.999940px;}
.fs6_c00001{font-size:54.000000px;}
.fs11_c00001{font-size:54.000120px;}
.fs15_c00001{font-size:56.880120px;}
.fs9_c00001{font-size:59.760060px;}
.fsf_c00001{font-size:59.760120px;}
.fs12_c00001{font-size:59.904120px;}
.fs1a_c00001{font-size:59.999940px;}
.fs0_c00001{font-size:60.480000px;}
.fs2_c00001{font-size:61.200000px;}
.fs1_c00001{font-size:61.920000px;}
.fs5_c00001{font-size:66.240000px;}
.fs7_c00001{font-size:66.384000px;}
.fs16_c00001{font-size:71.568600px;}
.fs17_c00001{font-size:71.684400px;}
.fsd_c00001{font-size:72.000000px;}
.fs13_c00001{font-size:74.880000px;}
.fs8_c00001{font-size:79.200000px;}
.fs1c_c00001{font-size:84.000000px;}
.fs10_c00001{font-size:84.240000px;}
.fs4_c00001{font-size:95.760000px;}
.fs1b_c00001{font-size:96.000000px;}
.fs14_c00001{font-size:108.000000px;}
.fsc_c00001{font-size:120.240000px;}
.y0_c00001{bottom:0.000000px;}
.y104d_c00001{bottom:0.055500px;}
.yb20_c00001{bottom:0.057000px;}
.y1594_c00001{bottom:0.058500px;}
.yf05_c00001{bottom:0.059100px;}
.yfa2_c00001{bottom:0.059250px;}
.y152b_c00001{bottom:0.060000px;}
.yfa4_c00001{bottom:0.061500px;}
.y143a_c00001{bottom:0.062100px;}
.y1207_c00001{bottom:0.063000px;}
.yf4a_c00001{bottom:0.064500px;}
.y18dc_c00001{bottom:0.070500px;}
.yb22_c00001{bottom:0.076500px;}
.y1438_c00001{bottom:0.115500px;}
.y1dea_c00001{bottom:0.118500px;}
.yfee_c00001{bottom:0.121350px;}
.y152d_c00001{bottom:0.121500px;}
.y1035_c00001{bottom:2.505000px;}
.y1531_c00001{bottom:2.516880px;}
.yf0b_c00001{bottom:2.517000px;}
.yf08_c00001{bottom:2.518380px;}
.yf10_c00001{bottom:2.518500px;}
.y1528_c00001{bottom:2.519880px;}
.yf12_c00001{bottom:2.520000px;}
.y18d9_c00001{bottom:2.520015px;}
.y18b1_c00001{bottom:2.520030px;}
.y1436_c00001{bottom:2.520180px;}
.y1038_c00001{bottom:2.521380px;}
.y1441_c00001{bottom:2.521500px;}
.y1cb9_c00001{bottom:2.533500px;}
.yf0d_c00001{bottom:2.577000px;}
.y143d_c00001{bottom:2.577570px;}
.y1cb6_c00001{bottom:2.581995px;}
.y498_c00001{bottom:3.240300px;}
.y5ac_c00001{bottom:3.413100px;}
.y5ad_c00001{bottom:3.413250px;}
.y4d2_c00001{bottom:3.417150px;}
.y635_c00001{bottom:3.417600px;}
.y67_c00001{bottom:3.418500px;}
.y53a_c00001{bottom:3.418650px;}
.y42c_c00001{bottom:3.418800px;}
.y490_c00001{bottom:3.418950px;}
.y5d4_c00001{bottom:3.419100px;}
.y441_c00001{bottom:3.419550px;}
.y4da_c00001{bottom:3.419700px;}
.y436_c00001{bottom:3.419850px;}
.y539_c00001{bottom:3.420000px;}
.y3ce_c00001{bottom:3.420150px;}
.y3f6_c00001{bottom:3.420300px;}
.y409_c00001{bottom:3.420600px;}
.y519_c00001{bottom:3.420900px;}
.y4a3_c00001{bottom:3.421050px;}
.y45c_c00001{bottom:3.421200px;}
.y571_c00001{bottom:3.421350px;}
.y580_c00001{bottom:3.421500px;}
.y3f1_c00001{bottom:3.421650px;}
.y3b6_c00001{bottom:3.422850px;}
.y554_c00001{bottom:3.598500px;}
.y3e2_c00001{bottom:3.598650px;}
.y5bb_c00001{bottom:3.598950px;}
.y46b_c00001{bottom:3.599100px;}
.y3ea_c00001{bottom:3.599250px;}
.y5c0_c00001{bottom:3.599400px;}
.y444_c00001{bottom:3.599550px;}
.y4ad_c00001{bottom:3.599700px;}
.y44a_c00001{bottom:3.599850px;}
.y3f9_c00001{bottom:3.600000px;}
.y432_c00001{bottom:3.600150px;}
.y3dc_c00001{bottom:3.600300px;}
.y44e_c00001{bottom:3.600450px;}
.y3bd_c00001{bottom:3.601350px;}
.y541_c00001{bottom:3.601500px;}
.y462_c00001{bottom:3.601650px;}
.y43a_c00001{bottom:3.603150px;}
.y592_c00001{bottom:3.645000px;}
.y9b2_c00001{bottom:3.754500px;}
.y9bc_c00001{bottom:3.760500px;}
.y9be_c00001{bottom:3.760508px;}
.y2_c00001{bottom:4.138500px;}
.y2f_c00001{bottom:4.139550px;}
.y61_c00001{bottom:4.139700px;}
.y2c_c00001{bottom:4.140000px;}
.y64_c00001{bottom:4.140150px;}
.y67a_c00001{bottom:4.356450px;}
.y7d0_c00001{bottom:4.498500px;}
.y81d_c00001{bottom:4.500000px;}
.y607_c00001{bottom:4.501650px;}
.y417_c00001{bottom:4.678050px;}
.y4c4_c00001{bottom:4.678500px;}
.y402_c00001{bottom:4.678650px;}
.y39d_c00001{bottom:4.680000px;}
.y396_c00001{bottom:4.680150px;}
.y4ed_c00001{bottom:4.680600px;}
.y410_c00001{bottom:4.681050px;}
.y419_c00001{bottom:4.681350px;}
.y4c7_c00001{bottom:4.681500px;}
.y481_c00001{bottom:4.682100px;}
.y528_c00001{bottom:4.725150px;}
.y423_c00001{bottom:4.853400px;}
.y527_c00001{bottom:4.858500px;}
.y405_c00001{bottom:4.860000px;}
.y500_c00001{bottom:4.861500px;}
.y5fd_c00001{bottom:5.220000px;}
.y552_c00001{bottom:5.759850px;}
.yf47_c00001{bottom:5.850000px;}
.y54c_c00001{bottom:5.940000px;}
.y57a_c00001{bottom:5.940150px;}
.y54f_c00001{bottom:5.940450px;}
.y1b1b_c00001{bottom:5.969175px;}
.ydaa_c00001{bottom:6.749580px;}
.y1c99_c00001{bottom:6.750255px;}
.ydc5_c00001{bottom:6.750450px;}
.ydfc_c00001{bottom:6.750555px;}
.ye1d_c00001{bottom:6.750855px;}
.ye49_c00001{bottom:6.751455px;}
.y6cd_c00001{bottom:7.559700px;}
.y6cf_c00001{bottom:7.559850px;}
.y6c5_c00001{bottom:7.560000px;}
.y6c4_c00001{bottom:7.561500px;}
.y122e_c00001{bottom:8.786970px;}
.y1278_c00001{bottom:8.787120px;}
.y11ae_c00001{bottom:8.787270px;}
.y1190_c00001{bottom:8.787870px;}
.y1254_c00001{bottom:8.788470px;}
.y1142_c00001{bottom:8.791500px;}
.y10e8_c00001{bottom:8.850000px;}
.yac_c00001{bottom:8.925000px;}
.ya3_c00001{bottom:8.970000px;}
.y9d_c00001{bottom:9.000000px;}
.y3c5_c00001{bottom:9.178500px;}
.y3c8_c00001{bottom:9.180000px;}
.y1bdb_c00001{bottom:9.744300px;}
.y1b67_c00001{bottom:9.748350px;}
.y1b79_c00001{bottom:9.751050px;}
.y1bae_c00001{bottom:9.751350px;}
.y1b8f_c00001{bottom:9.752100px;}
.y116b_c00001{bottom:10.048470px;}
.y644_c00001{bottom:10.073550px;}
.y382_c00001{bottom:10.078500px;}
.y3c1_c00001{bottom:10.080000px;}
.y663_c00001{bottom:10.258500px;}
.y627_c00001{bottom:10.258650px;}
.y3b2_c00001{bottom:10.260000px;}
.y630_c00001{bottom:10.260150px;}
.y62e_c00001{bottom:10.261350px;}
.y3ee_c00001{bottom:10.261500px;}
.y667_c00001{bottom:10.305000px;}
.yd1_c00001{bottom:10.470000px;}
.yd4_c00001{bottom:10.515000px;}
.yd7_c00001{bottom:10.545000px;}
.ycb_c00001{bottom:10.590000px;}
.ydc_c00001{bottom:10.620000px;}
.y3ff_c00001{bottom:10.798500px;}
.y923_c00001{bottom:11.699550px;}
.y9a2_c00001{bottom:11.700000px;}
.y911_c00001{bottom:11.700150px;}
.y90b_c00001{bottom:11.701350px;}
.y9ac_c00001{bottom:11.701500px;}
.y9aa_c00001{bottom:11.730000px;}
.y9d8_c00001{bottom:11.878500px;}
.y917_c00001{bottom:11.879700px;}
.y92a_c00001{bottom:11.879850px;}
.y999_c00001{bottom:11.880000px;}
.y92c_c00001{bottom:11.880450px;}
.y91a_c00001{bottom:11.881350px;}
.y920_c00001{bottom:11.881800px;}
.y6c2_c00001{bottom:12.240000px;}
.y622_c00001{bottom:12.418500px;}
.y50a_c00001{bottom:12.419550px;}
.y479_c00001{bottom:12.958500px;}
.y47b_c00001{bottom:12.958650px;}
.y50e_c00001{bottom:12.959400px;}
.y40b_c00001{bottom:12.959850px;}
.y52a_c00001{bottom:12.960000px;}
.y3b8_c00001{bottom:12.961500px;}
.y465_c00001{bottom:12.961650px;}
.y1def_c00001{bottom:13.051020px;}
.yf01_c00001{bottom:13.054200px;}
.y45f_c00001{bottom:13.141500px;}
.y19df_c00001{bottom:13.889325px;}
.y4c2_c00001{bottom:14.038500px;}
.y4ee_c00001{bottom:14.039700px;}
.y412_c00001{bottom:14.040000px;}
.y47f_c00001{bottom:14.041500px;}
.y421_c00001{bottom:14.213400px;}
.y4eb_c00001{bottom:14.213550px;}
.y384_c00001{bottom:14.218500px;}
.y425_c00001{bottom:14.219550px;}
.y38a_c00001{bottom:14.220000px;}
.y40d_c00001{bottom:14.221500px;}
.y4fc_c00001{bottom:14.265000px;}
.y1afa_c00001{bottom:14.725860px;}
.y1b32_c00001{bottom:14.726175px;}
.y1b05_c00001{bottom:14.726850px;}
.y1b51_c00001{bottom:14.727375px;}
.y625_c00001{bottom:14.758650px;}
.y3c9_c00001{bottom:14.760000px;}
.y485_c00001{bottom:14.761500px;}
.y1530_c00001{bottom:15.837000px;}
.yf07_c00001{bottom:15.838500px;}
.y18d8_c00001{bottom:15.839550px;}
.y1527_c00001{bottom:15.840000px;}
.y18b0_c00001{bottom:15.840150px;}
.y1435_c00001{bottom:15.840300px;}
.y1037_c00001{bottom:15.841500px;}
.y1d13_c00001{bottom:16.470990px;}
.y102d_c00001{bottom:16.471005px;}
.y1db4_c00001{bottom:16.471725px;}
.y1a2d_c00001{bottom:16.770600px;}
.y1a99_c00001{bottom:16.773825px;}
.y1a7a_c00001{bottom:16.774875px;}
.y1a56_c00001{bottom:16.775175px;}
.y597_c00001{bottom:16.948500px;}
.yc55_c00001{bottom:17.125665px;}
.ybf7_c00001{bottom:17.129550px;}
.y12d3_c00001{bottom:17.130600px;}
.y113_c00001{bottom:17.175000px;}
.yc7f_c00001{bottom:17.181615px;}
.yc27_c00001{bottom:17.188065px;}
.y12d_c00001{bottom:17.205000px;}
.y215_c00001{bottom:17.250000px;}
.yc2_c00001{bottom:17.280000px;}
.y1b1a_c00001{bottom:17.427180px;}
.y10bf_c00001{bottom:17.606700px;}
.y10a6_c00001{bottom:17.606955px;}
.y1101_c00001{bottom:17.607450px;}
.y111b_c00001{bottom:17.669790px;}
.y9b4_c00001{bottom:17.724407px;}
.y9c0_c00001{bottom:17.751585px;}
.y1817_c00001{bottom:17.966310px;}
.y16b9_c00001{bottom:17.967630px;}
.y137e_c00001{bottom:17.968230px;}
.y17f5_c00001{bottom:17.968710px;}
.y135c_c00001{bottom:17.968830px;}
.y1323_c00001{bottom:17.969250px;}
.y160e_c00001{bottom:17.969430px;}
.y1565_c00001{bottom:17.969580px;}
.y13ab_c00001{bottom:17.970030px;}
.y18fb_c00001{bottom:17.970180px;}
.y163c_c00001{bottom:17.971380px;}
.y598_c00001{bottom:18.390000px;}
.y605_c00001{bottom:18.541500px;}
.y38e_c00001{bottom:18.720000px;}
.y494_c00001{bottom:18.899550px;}
.y3a6_c00001{bottom:19.260000px;}
.y3a8_c00001{bottom:19.439700px;}
.y39f_c00001{bottom:19.485000px;}
.y497_c00001{bottom:20.340300px;}
.y10e7_c00001{bottom:20.368950px;}
.y51c_c00001{bottom:20.700000px;}
.y92f_c00001{bottom:21.600000px;}
.y92e_c00001{bottom:21.779850px;}
.y18de_c00001{bottom:21.869430px;}
.y14d6_c00001{bottom:21.869580px;}
.y16c3_c00001{bottom:21.869730px;}
.y1388_c00001{bottom:21.870330px;}
.y1618_c00001{bottom:21.871530px;}
.y48f_c00001{bottom:22.139100px;}
.y5b8_c00001{bottom:22.139850px;}
.y518_c00001{bottom:22.141050px;}
.y584_c00001{bottom:22.143000px;}
.yd3e_c00001{bottom:22.171575px;}
.y4a2_c00001{bottom:22.186350px;}
.y4d1_c00001{bottom:22.317150px;}
.y453_c00001{bottom:22.318500px;}
.y566_c00001{bottom:22.318650px;}
.y5d6_c00001{bottom:22.319550px;}
.y4d9_c00001{bottom:22.319700px;}
.y4ac_c00001{bottom:22.319850px;}
.y447_c00001{bottom:22.320000px;}
.y3d7_c00001{bottom:22.320150px;}
.y43d_c00001{bottom:22.321500px;}
.y43e_c00001{bottom:22.321650px;}
.y3f5_c00001{bottom:22.350150px;}
.y57c_c00001{bottom:22.365000px;}
.y57d_c00001{bottom:22.365150px;}
.y577_c00001{bottom:22.493100px;}
.y3db_c00001{bottom:22.493250px;}
.y476_c00001{bottom:22.493400px;}
.y47c_c00001{bottom:22.498500px;}
.y3e1_c00001{bottom:22.498650px;}
.y435_c00001{bottom:22.499100px;}
.y443_c00001{bottom:22.499550px;}
.y449_c00001{bottom:22.499850px;}
.y3ba_c00001{bottom:22.500000px;}
.y431_c00001{bottom:22.500150px;}
.y563_c00001{bottom:22.500300px;}
.y408_c00001{bottom:22.500450px;}
.y3bc_c00001{bottom:22.501350px;}
.y3f0_c00001{bottom:22.501500px;}
.y461_c00001{bottom:22.501650px;}
.y3b5_c00001{bottom:22.502100px;}
.y439_c00001{bottom:22.502550px;}
.y5ba_c00001{bottom:22.530000px;}
.y46a_c00001{bottom:22.530150px;}
.y593_c00001{bottom:22.545000px;}
.y3d4_c00001{bottom:22.545150px;}
.y3e9_c00001{bottom:22.545600px;}
.y19f7_c00001{bottom:22.708875px;}
.y1a10_c00001{bottom:22.709190px;}
.y19b8_c00001{bottom:22.709850px;}
.y79d_c00001{bottom:22.710000px;}
.y19a0_c00001{bottom:22.710540px;}
.yda9_c00001{bottom:22.949580px;}
.ydc4_c00001{bottom:22.950450px;}
.ye1c_c00001{bottom:22.950855px;}
.y1e7d_c00001{bottom:22.954140px;}
.yfe9_c00001{bottom:22.954740px;}
.y1c98_c00001{bottom:23.009955px;}
.ye48_c00001{bottom:23.010705px;}
.y463_c00001{bottom:23.221500px;}
.ya57_c00001{bottom:23.250240px;}
.y4ec_c00001{bottom:23.573550px;}
.y4c3_c00001{bottom:23.578500px;}
.y39c_c00001{bottom:23.580000px;}
.y480_c00001{bottom:23.581500px;}
.y422_c00001{bottom:23.753400px;}
.y401_c00001{bottom:23.758500px;}
.y426_c00001{bottom:23.759850px;}
.y395_c00001{bottom:23.760000px;}
.y40f_c00001{bottom:23.761500px;}
.y4fd_c00001{bottom:23.805000px;}
.y640_c00001{bottom:24.120000px;}
.y63d_c00001{bottom:24.165000px;}
.y65e_c00001{bottom:24.293100px;}
.y638_c00001{bottom:24.298500px;}
.y65b_c00001{bottom:24.300000px;}
.y66e_c00001{bottom:24.328500px;}
.y91e_c00001{bottom:24.481500px;}
.y679_c00001{bottom:24.516750px;}
.y914_c00001{bottom:24.659700px;}
.y909_c00001{bottom:24.660000px;}
.y91c_c00001{bottom:24.661500px;}
.y927_c00001{bottom:24.705000px;}
.y54e_c00001{bottom:24.833400px;}
.y5c9_c00001{bottom:24.838500px;}
.y551_c00001{bottom:24.839700px;}
.y54b_c00001{bottom:24.840000px;}
.y579_c00001{bottom:24.840150px;}
.y91b_c00001{bottom:24.841500px;}
.y926_c00001{bottom:24.885000px;}
.y118f_c00001{bottom:24.987870px;}
.y1253_c00001{bottom:24.988470px;}
.y1141_c00001{bottom:24.991500px;}
.y5ca_c00001{bottom:25.018500px;}
.y5c8_c00001{bottom:25.019550px;}
.y5c1_c00001{bottom:25.020000px;}
.y122d_c00001{bottom:25.049070px;}
.y1277_c00001{bottom:25.049220px;}
.y11ad_c00001{bottom:25.049370px;}
.y5bc_c00001{bottom:25.050000px;}
.y116a_c00001{bottom:25.050270px;}
.y19de_c00001{bottom:25.409445px;}
.ydfb_c00001{bottom:25.709805px;}
.y4dd_c00001{bottom:25.739550px;}
.y193b_c00001{bottom:25.885200px;}
.y176e_c00001{bottom:25.885800px;}
.y1957_c00001{bottom:25.887300px;}
.y12ac_c00001{bottom:25.887600px;}
.y1295_c00001{bottom:25.887660px;}
.y12e9_c00001{bottom:25.888200px;}
.y178a_c00001{bottom:25.888500px;}
.y1304_c00001{bottom:25.891350px;}
.y1bda_c00001{bottom:25.944300px;}
.y1b66_c00001{bottom:25.948350px;}
.y1b78_c00001{bottom:25.951050px;}
.y1bad_c00001{bottom:25.951350px;}
.y1b8e_c00001{bottom:25.952100px;}
.y61e_c00001{bottom:26.278500px;}
.y672_c00001{bottom:26.280000px;}
.y5a2_c00001{bottom:26.281200px;}
.y1dee_c00001{bottom:26.371140px;}
.yf00_c00001{bottom:26.374320px;}
.y5f8_c00001{bottom:26.458500px;}
.y620_c00001{bottom:26.460000px;}
.y458_c00001{bottom:26.460150px;}
.ybc6_c00001{bottom:26.723820px;}
.yb64_c00001{bottom:26.726550px;}
.yba2_c00001{bottom:26.727120px;}
.yb47_c00001{bottom:26.730000px;}
.yb86_c00001{bottom:26.730420px;}
.y3f3_c00001{bottom:26.850000px;}
.y3f8_c00001{bottom:27.000000px;}
.y3d1_c00001{bottom:27.045000px;}
.y3d9_c00001{bottom:27.533250px;}
.y3e4_c00001{bottom:27.538500px;}
.y3d6_c00001{bottom:27.540000px;}
.y3e7_c00001{bottom:27.585000px;}
.y3df_c00001{bottom:27.720000px;}
.y3c4_c00001{bottom:28.078500px;}
.y3c7_c00001{bottom:28.080000px;}
.y642_c00001{bottom:28.253400px;}
.y63f_c00001{bottom:28.260000px;}
.y63c_c00001{bottom:28.305000px;}
.y65d_c00001{bottom:28.433100px;}
.y637_c00001{bottom:28.438500px;}
.y492_c00001{bottom:28.440000px;}
.y66d_c00001{bottom:28.468500px;}
.y665_c00001{bottom:28.485000px;}
.y12d2_c00001{bottom:28.588605px;}
.y9b3_c00001{bottom:28.991396px;}
.y9bd_c00001{bottom:29.037899px;}
.y9bf_c00001{bottom:29.037914px;}
.y392_c00001{bottom:29.700000px;}
.y1e8f_c00001{bottom:29.790990px;}
.y1de6_c00001{bottom:29.794260px;}
.y51a_c00001{bottom:30.060300px;}
.y1b19_c00001{bottom:30.387525px;}
.yd19_c00001{bottom:30.925650px;}
.yd03_c00001{bottom:30.926100px;}
.yd54_c00001{bottom:30.926475px;}
.y1cdb_c00001{bottom:30.927675px;}
.yd72_c00001{bottom:30.988725px;}
.y1cf8_c00001{bottom:30.989325px;}
.y509_c00001{bottom:31.139700px;}
.y603_c00001{bottom:31.320150px;}
.y634_c00001{bottom:31.498050px;}
.y610_c00001{bottom:31.499100px;}
.y619_c00001{bottom:31.499550px;}
.y5fa_c00001{bottom:31.500000px;}
.y45b_c00001{bottom:31.500450px;}
.y653_c00001{bottom:31.530150px;}
.y659_c00001{bottom:31.545000px;}
.y64c_c00001{bottom:31.546200px;}
.y930_c00001{bottom:31.679850px;}
.y429_c00001{bottom:31.858500px;}
.y46f_c00001{bottom:31.860000px;}
.y3b7_c00001{bottom:31.861500px;}
.y40a_c00001{bottom:31.905000px;}
.ya1f_c00001{bottom:32.005800px;}
.ya32_c00001{bottom:32.006100px;}
.ya94_c00001{bottom:32.007030px;}
.ya75_c00001{bottom:32.007390px;}
.y473_c00001{bottom:32.033250px;}
.y42e_c00001{bottom:32.038500px;}
.y46d_c00001{bottom:32.040000px;}
.y45e_c00001{bottom:32.041500px;}
.y467_c00001{bottom:32.070000px;}
.y606_c00001{bottom:32.581500px;}
.y1e1c_c00001{bottom:32.855040px;}
.y1ebf_c00001{bottom:32.857440px;}
.y1085_c00001{bottom:32.858040px;}
.y1a2c_c00001{bottom:32.970600px;}
.y10e6_c00001{bottom:33.328710px;}
.yc7e_c00001{bottom:33.381615px;}
.yc54_c00001{bottom:33.384915px;}
.yc26_c00001{bottom:33.388065px;}
.ybf6_c00001{bottom:33.388800px;}
.yd3d_c00001{bottom:33.691110px;}
.y624_c00001{bottom:33.838500px;}
.y1816_c00001{bottom:34.166310px;}
.y16b8_c00001{bottom:34.167630px;}
.y137d_c00001{bottom:34.168230px;}
.y1322_c00001{bottom:34.169250px;}
.y160d_c00001{bottom:34.169430px;}
.y1333_c00001{bottom:34.169850px;}
.y183d_c00001{bottom:34.225560px;}
.y14f4_c00001{bottom:34.228080px;}
.y1564_c00001{bottom:34.228830px;}
.y13aa_c00001{bottom:34.229280px;}
.y18fa_c00001{bottom:34.229430px;}
.y17f4_c00001{bottom:34.230810px;}
.y135b_c00001{bottom:34.230930px;}
.y163b_c00001{bottom:34.231080px;}
.y1a55_c00001{bottom:34.235475px;}
.ya56_c00001{bottom:34.708245px;}
.y4db_c00001{bottom:35.280000px;}
.y63a_c00001{bottom:35.460000px;}
.y632_c00001{bottom:35.638500px;}
.y651_c00001{bottom:35.670000px;}
.y657_c00001{bottom:35.685000px;}
.y1e7c_c00001{bottom:36.274260px;}
.yfe8_c00001{bottom:36.274860px;}
.y1938_c00001{bottom:36.632820px;}
.y1910_c00001{bottom:36.634410px;}
.y1984_c00001{bottom:36.635790px;}
.y3cb_c00001{bottom:37.080000px;}
.y4a7_c00001{bottom:37.260000px;}
.ya9b_c00001{bottom:37.499400px;}
.y7b_c00001{bottom:37.500600px;}
.y916_c00001{bottom:37.620000px;}
.y496_c00001{bottom:37.620150px;}
.y910_c00001{bottom:37.620300px;}
.y90a_c00001{bottom:37.621500px;}
.y929_c00001{bottom:37.800000px;}
.y919_c00001{bottom:37.801500px;}
.y925_c00001{bottom:37.845000px;}
.y493_c00001{bottom:37.980000px;}
.y14d5_c00001{bottom:38.128830px;}
.y643_c00001{bottom:38.153400px;}
.y662_c00001{bottom:38.158500px;}
.y669_c00001{bottom:38.160000px;}
.y666_c00001{bottom:38.205000px;}
.y626_c00001{bottom:38.338500px;}
.y62d_c00001{bottom:38.340000px;}
.y19dd_c00001{bottom:38.369205px;}
.y16_c00001{bottom:38.400600px;}
.y1af9_c00001{bottom:39.205710px;}
.y1b31_c00001{bottom:39.206625px;}
.y1b04_c00001{bottom:39.206700px;}
.y1b50_c00001{bottom:39.207225px;}
.yda8_c00001{bottom:39.208830px;}
.y1c97_c00001{bottom:39.209955px;}
.ye1b_c00001{bottom:39.210105px;}
.ydc3_c00001{bottom:39.210150px;}
.ye47_c00001{bottom:39.210705px;}
.y48e_c00001{bottom:39.418950px;}
.y4b7_c00001{bottom:39.420000px;}
.y5b7_c00001{bottom:39.420300px;}
.y517_c00001{bottom:39.420900px;}
.y583_c00001{bottom:39.422850px;}
.y4a1_c00001{bottom:39.466200px;}
.y4ab_c00001{bottom:39.599700px;}
.y51b_c00001{bottom:39.600000px;}
.yf9e_c00001{bottom:39.691275px;}
.y1e4e_c00001{bottom:39.695025px;}
.y1f29_c00001{bottom:40.233420px;}
.y621_c00001{bottom:40.318500px;}
.y122c_c00001{bottom:41.249070px;}
.y1276_c00001{bottom:41.249220px;}
.y11ac_c00001{bottom:41.249370px;}
.y118e_c00001{bottom:41.249970px;}
.y1169_c00001{bottom:41.250270px;}
.y1252_c00001{bottom:41.250570px;}
.y1140_c00001{bottom:41.253600px;}
.y3da_c00001{bottom:41.393250px;}
.y475_c00001{bottom:41.393400px;}
.y434_c00001{bottom:41.398500px;}
.y42b_c00001{bottom:41.398650px;}
.y3cd_c00001{bottom:41.400000px;}
.y430_c00001{bottom:41.400150px;}
.y3b4_c00001{bottom:41.401500px;}
.y4cc_c00001{bottom:41.427900px;}
.y4d0_c00001{bottom:41.428050px;}
.y3f4_c00001{bottom:41.430000px;}
.y469_c00001{bottom:41.430150px;}
.y3e8_c00001{bottom:41.445000px;}
.y3d3_c00001{bottom:41.445150px;}
.y12d1_c00001{bottom:41.548365px;}
.y44d_c00001{bottom:41.573250px;}
.y3e0_c00001{bottom:41.578500px;}
.y3bb_c00001{bottom:41.580000px;}
.y460_c00001{bottom:41.581500px;}
.y438_c00001{bottom:41.583000px;}
.y1b18_c00001{bottom:41.907645px;}
.ydfa_c00001{bottom:41.909805px;}
.y10be_c00001{bottom:42.086550px;}
.y10a5_c00001{bottom:42.086805px;}
.y1100_c00001{bottom:42.087300px;}
.y111a_c00001{bottom:42.088140px;}
.y1b65_c00001{bottom:42.148350px;}
.y1b77_c00001{bottom:42.151050px;}
.y1bac_c00001{bottom:42.151350px;}
.y1bd9_c00001{bottom:42.206400px;}
.yb63_c00001{bottom:42.926550px;}
.yba1_c00001{bottom:42.927120px;}
.yb46_c00001{bottom:42.930000px;}
.ybc5_c00001{bottom:42.983070px;}
.yb85_c00001{bottom:42.989670px;}
.yd7e_c00001{bottom:43.033410px;}
.yd77_c00001{bottom:43.033665px;}
.yaa6_c00001{bottom:43.033935px;}
.y1124_c00001{bottom:43.034310px;}
.yaa2_c00001{bottom:43.034520px;}
.y1e8e_c00001{bottom:43.111110px;}
.y1de5_c00001{bottom:43.113795px;}
.y10e5_c00001{bottom:44.787300px;}
.y4dc_c00001{bottom:44.820000px;}
.y1b8d_c00001{bottom:44.911350px;}
.y79b_c00001{bottom:45.102300px;}
.y5a1_c00001{bottom:45.181200px;}
.y455_c00001{bottom:45.360000px;}
.y457_c00001{bottom:45.360150px;}
.y4b2_c00001{bottom:45.718650px;}
.y488_c00001{bottom:45.720150px;}
.y49c_c00001{bottom:45.765150px;}
.y3d0_c00001{bottom:45.945000px;}
.y1e1b_c00001{bottom:46.115970px;}
.y1ebe_c00001{bottom:46.118370px;}
.y1084_c00001{bottom:46.118970px;}
.y17e2_c00001{bottom:46.532820px;}
.y17a2_c00001{bottom:46.536210px;}
.y14c6_c00001{bottom:46.536660px;}
.y4a5_c00001{bottom:46.620000px;}
.yd3c_c00001{bottom:46.649700px;}
.y19f6_c00001{bottom:47.127225px;}
.y19b7_c00001{bottom:47.128200px;}
.y199f_c00001{bottom:47.128890px;}
.y1a0f_c00001{bottom:47.189040px;}
.ya55_c00001{bottom:47.668005px;}
.y508_c00001{bottom:48.419550px;}
.y391_c00001{bottom:48.600000px;}
.y648_c00001{bottom:49.500000px;}
.y64a_c00001{bottom:49.545000px;}
.yc7d_c00001{bottom:49.581615px;}
.yc53_c00001{bottom:49.584915px;}
.yc25_c00001{bottom:49.588065px;}
.ybf5_c00001{bottom:49.588800px;}
.yb1c_c00001{bottom:49.826460px;}
.y19dc_c00001{bottom:49.889325px;}
.y1937_c00001{bottom:49.952940px;}
.y190f_c00001{bottom:49.954530px;}
.y1983_c00001{bottom:49.955910px;}
.y176d_c00001{bottom:50.365050px;}
.y12ab_c00001{bottom:50.367450px;}
.y1294_c00001{bottom:50.367510px;}
.y1956_c00001{bottom:50.367750px;}
.y1789_c00001{bottom:50.368950px;}
.y1303_c00001{bottom:50.371800px;}
.y183c_c00001{bottom:50.425560px;}
.y14f3_c00001{bottom:50.428080px;}
.y1815_c00001{bottom:50.428410px;}
.y1563_c00001{bottom:50.428830px;}
.y13a9_c00001{bottom:50.429280px;}
.y18f9_c00001{bottom:50.429430px;}
.y16b7_c00001{bottom:50.429730px;}
.y137c_c00001{bottom:50.430330px;}
.y17f3_c00001{bottom:50.430810px;}
.y135a_c00001{bottom:50.430930px;}
.y163a_c00001{bottom:50.431080px;}
.y1321_c00001{bottom:50.431350px;}
.y913_c00001{bottom:50.579850px;}
.y90d_c00001{bottom:50.580000px;}
.y41d_c00001{bottom:50.940000px;}
.y4ca_c00001{bottom:50.968500px;}
.y59d_c00001{bottom:51.478650px;}
.y126_c00001{bottom:51.870000px;}
.y11e_c00001{bottom:51.945000px;}
.y1a9c_c00001{bottom:52.413975px;}
.y2c9_c00001{bottom:52.635000px;}
.yf9d_c00001{bottom:53.011395px;}
.y1e4d_c00001{bottom:53.014560px;}
.y12d0_c00001{bottom:53.068485px;}
.yd7d_c00001{bottom:53.535165px;}
.yd76_c00001{bottom:53.535420px;}
.yaa5_c00001{bottom:53.535690px;}
.y1123_c00001{bottom:53.536065px;}
.yaa1_c00001{bottom:53.536275px;}
.y1f28_c00001{bottom:53.553540px;}
.y1aec_c00001{bottom:54.270000px;}
.y14d4_c00001{bottom:54.328830px;}
.y5a9_c00001{bottom:54.713550px;}
.y1b17_c00001{bottom:54.867405px;}
.y495_c00001{bottom:54.900000px;}
.y2b1_c00001{bottom:54.930000px;}
.y4b0_c00001{bottom:55.258500px;}
.y489_c00001{bottom:55.260000px;}
.y49a_c00001{bottom:55.305000px;}
.yd02_c00001{bottom:55.405950px;}
.yd18_c00001{bottom:55.406100px;}
.yd53_c00001{bottom:55.406925px;}
.y1cda_c00001{bottom:55.407525px;}
.yda7_c00001{bottom:55.408830px;}
.y1c96_c00001{bottom:55.409955px;}
.yd71_c00001{bottom:55.410075px;}
.ye1a_c00001{bottom:55.410105px;}
.ydc2_c00001{bottom:55.410150px;}
.y1cf7_c00001{bottom:55.410675px;}
.ye46_c00001{bottom:55.410705px;}
.y4a6_c00001{bottom:56.160000px;}
.ya31_c00001{bottom:56.427450px;}
.ya1e_c00001{bottom:56.427750px;}
.ya74_c00001{bottom:56.428740px;}
.y102c_c00001{bottom:56.430705px;}
.y1d12_c00001{bottom:56.431290px;}
.y1db3_c00001{bottom:56.432025px;}
.y16b2_c00001{bottom:56.432055px;}
.y1662_c00001{bottom:56.432370px;}
.y175e_c00001{bottom:56.434440px;}
.y1433_c00001{bottom:56.435175px;}
.y1726_c00001{bottom:56.437575px;}
.ya93_c00001{bottom:56.486280px;}
.y94_c00001{bottom:56.556000px;}
.y37e_c00001{bottom:56.556450px;}
.ydf9_c00001{bottom:56.668395px;}
.y48d_c00001{bottom:56.698800px;}
.y4aa_c00001{bottom:56.699700px;}
.y4b6_c00001{bottom:56.699850px;}
.y5b6_c00001{bottom:56.700150px;}
.y516_c00001{bottom:56.700750px;}
.y582_c00001{bottom:56.701500px;}
.y4a0_c00001{bottom:56.746050px;}
.y3a4_c00001{bottom:57.053550px;}
.y113f_c00001{bottom:57.453600px;}
.y721_c00001{bottom:57.456450px;}
.y10e4_c00001{bottom:57.747060px;}
.yd3b_c00001{bottom:58.108290px;}
.y1bd8_c00001{bottom:58.406400px;}
.y1b64_c00001{bottom:58.407000px;}
.y1bab_c00001{bottom:58.410600px;}
.y1b76_c00001{bottom:58.410750px;}
.y1168_c00001{bottom:58.710570px;}
.ybc4_c00001{bottom:59.183070px;}
.yb62_c00001{bottom:59.185800px;}
.yba0_c00001{bottom:59.186370px;}
.ya54_c00001{bottom:59.188125px;}
.yb45_c00001{bottom:59.189250px;}
.yb84_c00001{bottom:59.190270px;}
.y5fb_c00001{bottom:59.400000px;}
.y45a_c00001{bottom:59.400450px;}
.y633_c00001{bottom:59.428500px;}
.y1d97_c00001{bottom:59.436705px;}
.y618_c00001{bottom:59.444700px;}
.y658_c00001{bottom:59.445000px;}
.y64b_c00001{bottom:59.445600px;}
.y60f_c00001{bottom:59.578950px;}
.y60c_c00001{bottom:59.580000px;}
.y652_c00001{bottom:59.610000px;}
.y184_c00001{bottom:59.685000px;}
.y17e1_c00001{bottom:59.852940px;}
.y17a1_c00001{bottom:59.855745px;}
.y14c5_c00001{bottom:59.856195px;}
.y1f59_c00001{bottom:59.972490px;}
.y3cc_c00001{bottom:60.300000px;}
.y4d8_c00001{bottom:60.300150px;}
.y4cf_c00001{bottom:60.328050px;}
.y4cb_c00001{bottom:60.328500px;}
.y474_c00001{bottom:60.473250px;}
.y42a_c00001{bottom:60.478500px;}
.y42f_c00001{bottom:60.480000px;}
.y468_c00001{bottom:60.510000px;}
.y3d2_c00001{bottom:60.525000px;}
.y1b8c_c00001{bottom:61.111350px;}
.y138_c00001{bottom:62.430000px;}
.y794_c00001{bottom:62.666700px;}
.y524_c00001{bottom:62.686350px;}
.y19db_c00001{bottom:62.849085px;}
.yb1b_c00001{bottom:63.087390px;}
.y90f_c00001{bottom:63.539850px;}
.y1b4f_c00001{bottom:63.625575px;}
.y1af8_c00001{bottom:63.627060px;}
.y1b30_c00001{bottom:63.627375px;}
.y1b03_c00001{bottom:63.628050px;}
.yaa4_c00001{bottom:64.034520px;}
.yd7c_c00001{bottom:64.035165px;}
.yd75_c00001{bottom:64.035420px;}
.y1122_c00001{bottom:64.036065px;}
.yaa0_c00001{bottom:64.036275px;}
.y399_c00001{bottom:64.260000px;}
.y5a0_c00001{bottom:64.261050px;}
.y456_c00001{bottom:64.440000px;}
.y34c_c00001{bottom:64.515000px;}
.y4b1_c00001{bottom:64.798500px;}
.y487_c00001{bottom:64.800000px;}
.y49b_c00001{bottom:64.845000px;}
.y323_c00001{bottom:65.160000px;}
.y255_c00001{bottom:65.340000px;}
.y507_c00001{bottom:65.699400px;}
.yc7c_c00001{bottom:65.781615px;}
.yc52_c00001{bottom:65.784915px;}
.yc24_c00001{bottom:65.788065px;}
.ybf4_c00001{bottom:65.788800px;}
.y12cf_c00001{bottom:66.028830px;}
.y2f0_c00001{bottom:66.165000px;}
.y219_c00001{bottom:66.240000px;}
.y1ded_c00001{bottom:66.331440px;}
.yeff_c00001{bottom:66.334020px;}
.y1591_c00001{bottom:66.334890px;}
.y1752_c00001{bottom:66.336135px;}
.y15da_c00001{bottom:66.336390px;}
.y1b16_c00001{bottom:66.387525px;}
.y99_c00001{bottom:66.495000px;}
.y10bd_c00001{bottom:66.566400px;}
.y10a4_c00001{bottom:66.566655px;}
.y10ff_c00001{bottom:66.567150px;}
.y1119_c00001{bottom:66.567990px;}
.y183b_c00001{bottom:66.625560px;}
.y14f2_c00001{bottom:66.628080px;}
.y18f8_c00001{bottom:66.628230px;}
.y1814_c00001{bottom:66.628410px;}
.y1562_c00001{bottom:66.628830px;}
.y13a8_c00001{bottom:66.629280px;}
.y16b6_c00001{bottom:66.629730px;}
.y137b_c00001{bottom:66.630330px;}
.y17f2_c00001{bottom:66.630810px;}
.y1639_c00001{bottom:66.631080px;}
.y1320_c00001{bottom:66.631350px;}
.y1c5d_c00001{bottom:66.873135px;}
.y889_c00001{bottom:67.176000px;}
.yc7_c00001{bottom:67.395000px;}
.y6d1_c00001{bottom:68.616750px;}
.y10e3_c00001{bottom:69.267180px;}
.y1359_c00001{bottom:69.330930px;}
.y102b_c00001{bottom:69.750240px;}
.y1d11_c00001{bottom:69.750825px;}
.y1db2_c00001{bottom:69.751560px;}
.y16b1_c00001{bottom:69.752175px;}
.y1661_c00001{bottom:69.752490px;}
.y175d_c00001{bottom:69.753975px;}
.y1432_c00001{bottom:69.755295px;}
.y1725_c00001{bottom:69.757695px;}
.y59c_c00001{bottom:70.378650px;}
.y11f1_c00001{bottom:70.470000px;}
.yd3a_c00001{bottom:71.068050px;}
.y19f5_c00001{bottom:71.607075px;}
.y1a0e_c00001{bottom:71.607390px;}
.y19b6_c00001{bottom:71.608050px;}
.y199e_c00001{bottom:71.608140px;}
.yda6_c00001{bottom:71.608830px;}
.y1c95_c00001{bottom:71.609955px;}
.ye19_c00001{bottom:71.610105px;}
.ydc1_c00001{bottom:71.610150px;}
.ye45_c00001{bottom:71.610705px;}
.ya53_c00001{bottom:72.148470px;}
.y1d96_c00001{bottom:72.756825px;}
.y1497_c00001{bottom:73.174695px;}
.y1702_c00001{bottom:73.175625px;}
.y1f58_c00001{bottom:73.292610px;}
.y5a8_c00001{bottom:73.433100px;}
.y5ff_c00001{bottom:73.440000px;}
.y581_c00001{bottom:73.801500px;}
.y515_c00001{bottom:73.973550px;}
.y48c_c00001{bottom:73.979250px;}
.y4b5_c00001{bottom:73.979700px;}
.y5b5_c00001{bottom:73.980000px;}
.y4a9_c00001{bottom:73.980150px;}
.y49f_c00001{bottom:74.025900px;}
.y19da_c00001{bottom:74.307675px;}
.ydf8_c00001{bottom:74.309745px;}
.yd7b_c00001{bottom:74.533995px;}
.yd74_c00001{bottom:74.534250px;}
.yaa3_c00001{bottom:74.534520px;}
.y1121_c00001{bottom:74.534895px;}
.ya9f_c00001{bottom:74.535105px;}
.y1bd7_c00001{bottom:74.606400px;}
.y1b63_c00001{bottom:74.607600px;}
.y1baa_c00001{bottom:74.610600px;}
.y1b75_c00001{bottom:74.610750px;}
.y1a54_c00001{bottom:74.613525px;}
.y193a_c00001{bottom:74.784600px;}
.y176c_c00001{bottom:74.785200px;}
.y1955_c00001{bottom:74.785500px;}
.y1788_c00001{bottom:74.786700px;}
.y12e8_c00001{bottom:74.787600px;}
.y12aa_c00001{bottom:74.788800px;}
.y1293_c00001{bottom:74.788860px;}
.y1302_c00001{bottom:74.789550px;}
.ybc3_c00001{bottom:75.383070px;}
.yb61_c00001{bottom:75.385800px;}
.yb9f_c00001{bottom:75.386370px;}
.yb44_c00001{bottom:75.389250px;}
.yb83_c00001{bottom:75.390870px;}
.y1b8b_c00001{bottom:75.871110px;}
.y1e7b_c00001{bottom:76.234560px;}
.yfe7_c00001{bottom:76.235160px;}
.yb1a_c00001{bottom:76.407510px;}
.y912_c00001{bottom:76.500000px;}
.y58e_c00001{bottom:76.545150px;}
.y1eed_c00001{bottom:76.712895px;}
.y1231_c00001{bottom:76.827720px;}
.y127b_c00001{bottom:76.828170px;}
.y11b1_c00001{bottom:76.828320px;}
.y12ce_c00001{bottom:77.489775px;}
.y720_c00001{bottom:77.616750px;}
.y6a2_c00001{bottom:77.798250px;}
.ycde_c00001{bottom:79.051800px;}
.y1b15_c00001{bottom:79.288110px;}
.y5ea_c00001{bottom:79.378500px;}
.y41f_c00001{bottom:79.379850px;}
.y4d7_c00001{bottom:79.380000px;}
.y4ce_c00001{bottom:79.408500px;}
.y1dec_c00001{bottom:79.650975px;}
.yefe_c00001{bottom:79.654140px;}
.y1590_c00001{bottom:79.655010px;}
.y15d9_c00001{bottom:79.655925px;}
.y1751_c00001{bottom:79.656255px;}
.yd01_c00001{bottom:79.885800px;}
.yd17_c00001{bottom:79.886550px;}
.yd52_c00001{bottom:79.887375px;}
.yd70_c00001{bottom:79.889925px;}
.y1cf6_c00001{bottom:79.890525px;}
.y5db_c00001{bottom:79.913400px;}
.y1c5c_c00001{bottom:80.192670px;}
.ya30_c00001{bottom:80.907300px;}
.ya1d_c00001{bottom:80.907600px;}
.ya73_c00001{bottom:80.908590px;}
.y523_c00001{bottom:81.406500px;}
.yc7b_c00001{bottom:82.043115px;}
.yc51_c00001{bottom:82.047015px;}
.yc23_c00001{bottom:82.047315px;}
.ybf3_c00001{bottom:82.048050px;}
.y10e2_c00001{bottom:82.226940px;}
.yd39_c00001{bottom:82.588170px;}
.y4c0_c00001{bottom:82.620150px;}
.y183a_c00001{bottom:82.825560px;}
.y14f1_c00001{bottom:82.828080px;}
.y18f7_c00001{bottom:82.828230px;}
.y1813_c00001{bottom:82.828410px;}
.y1561_c00001{bottom:82.828830px;}
.y13a7_c00001{bottom:82.829280px;}
.y16b5_c00001{bottom:82.829730px;}
.y137a_c00001{bottom:82.830330px;}
.y1638_c00001{bottom:82.831080px;}
.y131f_c00001{bottom:82.831350px;}
.y550_c00001{bottom:82.836900px;}
.y506_c00001{bottom:83.010300px;}
.y102a_c00001{bottom:83.070360px;}
.y1d10_c00001{bottom:83.070945px;}
.y1db1_c00001{bottom:83.071680px;}
.y1609_c00001{bottom:83.072010px;}
.y1de4_c00001{bottom:83.074095px;}
.y59f_c00001{bottom:83.161050px;}
.y578_c00001{bottom:83.196750px;}
.y1a2b_c00001{bottom:83.370600px;}
.y1a79_c00001{bottom:83.374875px;}
.y3a3_c00001{bottom:83.513250px;}
.ya52_c00001{bottom:83.609415px;}
.y17f1_c00001{bottom:85.530810px;}
.y1358_c00001{bottom:85.530930px;}
.y124a_c00001{bottom:85.531500px;}
.y1e1a_c00001{bottom:86.076270px;}
.y1ebd_c00001{bottom:86.078670px;}
.y1083_c00001{bottom:86.079270px;}
.y1a53_c00001{bottom:86.133645px;}
.y6d0_c00001{bottom:86.436900px;}
.y1496_c00001{bottom:86.494815px;}
.y1701_c00001{bottom:86.495745px;}
.y19d9_c00001{bottom:87.267435px;}
.y602_c00001{bottom:87.300000px;}
.y459_c00001{bottom:87.345000px;}
.y60e_c00001{bottom:87.479550px;}
.y617_c00001{bottom:87.524550px;}
.y4e6_c00001{bottom:87.652950px;}
.yda5_c00001{bottom:87.808830px;}
.ye18_c00001{bottom:87.810105px;}
.ydc0_c00001{bottom:87.810150px;}
.y1c94_c00001{bottom:87.869205px;}
.ye44_c00001{bottom:87.869955px;}
.y1b4e_c00001{bottom:88.105425px;}
.y1af7_c00001{bottom:88.106910px;}
.y1b2f_c00001{bottom:88.107225px;}
.y1b02_c00001{bottom:88.107900px;}
.y2b3_c00001{bottom:88.274550px;}
.y63_c00001{bottom:88.440300px;}
.y512_c00001{bottom:88.776600px;}
.y931_c00001{bottom:89.136900px;}
.y59b_c00001{bottom:89.278650px;}
.yaa7_c00001{bottom:89.293950px;}
.y4df_c00001{bottom:89.316750px;}
.y90e_c00001{bottom:89.460000px;}
.y1e7a_c00001{bottom:89.554095px;}
.yfe6_c00001{bottom:89.554695px;}
.yb19_c00001{bottom:89.727630px;}
.y1936_c00001{bottom:89.912640px;}
.y190e_c00001{bottom:89.914830px;}
.y1982_c00001{bottom:89.916210px;}
.y1eec_c00001{bottom:90.033015px;}
.y12cd_c00001{bottom:90.449535px;}
.y1cd9_c00001{bottom:90.450000px;}
.ydf7_c00001{bottom:90.571245px;}
.y5a7_c00001{bottom:90.713550px;}
.y1bd6_c00001{bottom:90.807000px;}
.y1b62_c00001{bottom:90.808200px;}
.y1b14_c00001{bottom:90.808230px;}
.y1ba9_c00001{bottom:90.810600px;}
.y1b74_c00001{bottom:90.810750px;}
.y44f_c00001{bottom:90.936900px;}
.y10bc_c00001{bottom:90.987150px;}
.y10a3_c00001{bottom:90.987405px;}
.y10fe_c00001{bottom:90.987900px;}
.y1118_c00001{bottom:90.988740px;}
.y514_c00001{bottom:91.073550px;}
.y4b4_c00001{bottom:91.259550px;}
.y4a8_c00001{bottom:91.260000px;}
.y48b_c00001{bottom:91.290150px;}
.y49e_c00001{bottom:91.305150px;}
.yb60_c00001{bottom:91.585800px;}
.yb9e_c00001{bottom:91.586370px;}
.yb43_c00001{bottom:91.589250px;}
.ya9a_c00001{bottom:91.634250px;}
.ybc2_c00001{bottom:91.645170px;}
.yb82_c00001{bottom:91.651770px;}
.y185_c00001{bottom:92.370300px;}
.y18ad_c00001{bottom:92.434080px;}
.yf9c_c00001{bottom:92.971095px;}
.y1525_c00001{bottom:92.973210px;}
.yefd_c00001{bottom:92.974260px;}
.y1e4c_c00001{bottom:92.974860px;}
.y1b8a_c00001{bottom:93.511410px;}
.y1f27_c00001{bottom:93.513840px;}
.y9a0_c00001{bottom:93.636450px;}
.y10e1_c00001{bottom:93.687885px;}
.y2ca_c00001{bottom:93.750300px;}
.y846_c00001{bottom:93.817350px;}
.y139_c00001{bottom:93.989700px;}
.y19f_c00001{bottom:94.215000px;}
.y1b9_c00001{bottom:94.216950px;}
.y1d3_c00001{bottom:94.218300px;}
.y1ed_c00001{bottom:94.219650px;}
.y207_c00001{bottom:94.221000px;}
.y58d_c00001{bottom:95.445150px;}
.yd38_c00001{bottom:95.547930px;}
.ycdd_c00001{bottom:95.611500px;}
.y153_c00001{bottom:95.655000px;}
.y17a_c00001{bottom:95.655750px;}
.y1a0d_c00001{bottom:96.086640px;}
.y19f4_c00001{bottom:96.086925px;}
.y19b5_c00001{bottom:96.087900px;}
.y199d_c00001{bottom:96.087990px;}
.y1029_c00001{bottom:96.390480px;}
.y1d0f_c00001{bottom:96.391065px;}
.y1db0_c00001{bottom:96.391800px;}
.y1608_c00001{bottom:96.392130px;}
.y1de3_c00001{bottom:96.394215px;}
.y2d1_c00001{bottom:96.870000px;}
.y2d7_c00001{bottom:96.870450px;}
.y2dd_c00001{bottom:96.870900px;}
.y2e3_c00001{bottom:96.871350px;}
.y2e9_c00001{bottom:96.871800px;}
.ya2f_c00001{bottom:97.107300px;}
.ya1c_c00001{bottom:97.107600px;}
.ya72_c00001{bottom:97.108590px;}
.y1205_c00001{bottom:97.110000px;}
.ya92_c00001{bottom:97.166730px;}
.ya51_c00001{bottom:97.168005px;}
.y325_c00001{bottom:98.130150px;}
.y2f2_c00001{bottom:98.205300px;}
.yc7a_c00001{bottom:98.244315px;}
.yc50_c00001{bottom:98.247015px;}
.yc22_c00001{bottom:98.247315px;}
.ybf2_c00001{bottom:98.248050px;}
.y21b_c00001{bottom:98.250450px;}
.y4d6_c00001{bottom:98.280000px;}
.y4cd_c00001{bottom:98.308500px;}
.y257_c00001{bottom:98.310750px;}
.y41e_c00001{bottom:98.325000px;}
.y5da_c00001{bottom:98.633550px;}
.y6f4_c00001{bottom:98.676900px;}
.y97f_c00001{bottom:98.677050px;}
.y522_c00001{bottom:98.686350px;}
.y19d8_c00001{bottom:98.787555px;}
.y1812_c00001{bottom:99.028410px;}
.y16b4_c00001{bottom:99.029730px;}
.y1379_c00001{bottom:99.030330px;}
.y131e_c00001{bottom:99.031350px;}
.y424_c00001{bottom:99.036900px;}
.y1839_c00001{bottom:99.087660px;}
.y1167_c00001{bottom:99.089820px;}
.y14f0_c00001{bottom:99.090180px;}
.y1560_c00001{bottom:99.090930px;}
.y13a6_c00001{bottom:99.091380px;}
.y18f6_c00001{bottom:99.091530px;}
.y1637_c00001{bottom:99.093180px;}
.y1a52_c00001{bottom:99.093990px;}
.y176b_c00001{bottom:99.264450px;}
.y1954_c00001{bottom:99.265350px;}
.y1787_c00001{bottom:99.265950px;}
.y12e7_c00001{bottom:99.266850px;}
.y12a9_c00001{bottom:99.268650px;}
.y1292_c00001{bottom:99.268710px;}
.y1301_c00001{bottom:99.268800px;}
.y1e19_c00001{bottom:99.396390px;}
.y5a4_c00001{bottom:99.396750px;}
.y1ebc_c00001{bottom:99.398790px;}
.y1082_c00001{bottom:99.399390px;}
.y17e0_c00001{bottom:99.813240px;}
.y17a0_c00001{bottom:99.816045px;}
.y14c4_c00001{bottom:99.816495px;}
.y505_c00001{bottom:100.290150px;}
.y3a9_c00001{bottom:100.296750px;}
.y1357_c00001{bottom:100.349880px;}
.y77f_c00001{bottom:101.016900px;}
.y2c1_c00001{bottom:101.159700px;}
.y2bb_c00001{bottom:101.160000px;}
.y612_c00001{bottom:101.385000px;}
.y4bf_c00001{bottom:101.520150px;}
.y5e6_c00001{bottom:101.565300px;}
.y5c7_c00001{bottom:101.736900px;}
.y17f0_c00001{bottom:101.790060px;}
.y12cc_c00001{bottom:101.969655px;}
.y795_c00001{bottom:102.131400px;}
.y59e_c00001{bottom:102.241500px;}
.y477_c00001{bottom:102.276600px;}
.y1cc7_c00001{bottom:102.568695px;}
.y3a2_c00001{bottom:102.593100px;}
.y18d5_c00001{bottom:102.814305px;}
.y1e79_c00001{bottom:102.815025px;}
.yfe5_c00001{bottom:102.815625px;}
.y1935_c00001{bottom:103.232760px;}
.y190d_c00001{bottom:103.234950px;}
.y1981_c00001{bottom:103.235745px;}
.y1b13_c00001{bottom:103.768575px;}
.ye17_c00001{bottom:104.069355px;}
.y1c93_c00001{bottom:104.069805px;}
.ye43_c00001{bottom:104.069955px;}
.yda4_c00001{bottom:104.070930px;}
.ydbf_c00001{bottom:104.072250px;}
.y3dd_c00001{bottom:104.256450px;}
.yd16_c00001{bottom:104.307300px;}
.yd00_c00001{bottom:104.307750px;}
.yd51_c00001{bottom:104.308125px;}
.yd6f_c00001{bottom:104.308275px;}
.y1cf5_c00001{bottom:104.308875px;}
.y7c6_c00001{bottom:104.438400px;}
.y388_c00001{bottom:104.985000px;}
.y6a1_c00001{bottom:105.698250px;}
.y9f0_c00001{bottom:105.750000px;}
.y18ac_c00001{bottom:105.754200px;}
.y864_c00001{bottom:106.236600px;}
.y5dc_c00001{bottom:106.236900px;}
.yf9b_c00001{bottom:106.291215px;}
.y1524_c00001{bottom:106.293330px;}
.yefc_c00001{bottom:106.294380px;}
.y1e4b_c00001{bottom:106.294980px;}
.y4e5_c00001{bottom:106.373100px;}
.y92d_c00001{bottom:106.596750px;}
.y10e0_c00001{bottom:106.648230px;}
.ydf6_c00001{bottom:106.771245px;}
.y1f26_c00001{bottom:106.833375px;}
.y1b61_c00001{bottom:107.008800px;}
.yd37_c00001{bottom:107.008875px;}
.y1ba8_c00001{bottom:107.010600px;}
.y1b73_c00001{bottom:107.010750px;}
.y1bd5_c00001{bottom:107.066250px;}
.y2b2_c00001{bottom:107.250150px;}
.y136_c00001{bottom:107.497050px;}
.ybc1_c00001{bottom:107.845170px;}
.yb5f_c00001{bottom:107.847900px;}
.yb9d_c00001{bottom:107.848470px;}
.y118d_c00001{bottom:107.849970px;}
.y1a2a_c00001{bottom:107.850450px;}
.y1251_c00001{bottom:107.850570px;}
.yb42_c00001{bottom:107.851350px;}
.yb81_c00001{bottom:107.851770px;}
.y113e_c00001{bottom:107.853600px;}
.y1a78_c00001{bottom:107.854725px;}
.y5a6_c00001{bottom:107.993400px;}
.y513_c00001{bottom:108.353400px;}
.y59a_c00001{bottom:108.358500px;}
.y7fd_c00001{bottom:108.397200px;}
.y62_c00001{bottom:108.420750px;}
.y4b3_c00001{bottom:108.540000px;}
.y48a_c00001{bottom:108.570000px;}
.y49d_c00001{bottom:108.585000px;}
.y11f_c00001{bottom:108.795600px;}
.y65f_c00001{bottom:109.296750px;}
.y742_c00001{bottom:109.475400px;}
.y1028_c00001{bottom:109.710600px;}
.y1daf_c00001{bottom:109.711335px;}
.y1660_c00001{bottom:109.712190px;}
.y16b0_c00001{bottom:109.712475px;}
.y175c_c00001{bottom:109.714275px;}
.y1de2_c00001{bottom:109.714335px;}
.y1431_c00001{bottom:109.715595px;}
.y1724_c00001{bottom:109.717995px;}
.y1b89_c00001{bottom:109.770060px;}
.yf04_c00001{bottom:110.101200px;}
.y1166_c00001{bottom:110.550765px;}
.y1a51_c00001{bottom:110.554935px;}
.yf46_c00001{bottom:110.669280px;}
.y18af_c00001{bottom:110.759250px;}
.y309_c00001{bottom:110.880000px;}
.y31a_c00001{bottom:110.881350px;}
.y232_c00001{bottom:110.955000px;}
.y245_c00001{bottom:110.955900px;}
.y26d_c00001{bottom:111.135000px;}
.y279_c00001{bottom:111.136050px;}
.y285_c00001{bottom:111.136950px;}
.y291_c00001{bottom:111.137850px;}
.y29d_c00001{bottom:111.138300px;}
.y1529_c00001{bottom:111.298800px;}
.y19d7_c00001{bottom:111.747315px;}
.y9a_c00001{bottom:112.289550px;}
.y1af6_c00001{bottom:112.527660px;}
.y1b2e_c00001{bottom:112.527975px;}
.y1b01_c00001{bottom:112.528650px;}
.y1b4d_c00001{bottom:112.585275px;}
.y1e18_c00001{bottom:112.716510px;}
.y6ce_c00001{bottom:112.716750px;}
.y1d95_c00001{bottom:112.717125px;}
.y1ebb_c00001{bottom:112.718910px;}
.y1081_c00001{bottom:112.719510px;}
.y17df_c00001{bottom:113.132775px;}
.y179f_c00001{bottom:113.136165px;}
.y14c3_c00001{bottom:113.136615px;}
.y1f57_c00001{bottom:113.252910px;}
.ya2e_c00001{bottom:113.366550px;}
.ya91_c00001{bottom:113.366730px;}
.ya1b_c00001{bottom:113.366850px;}
.ya71_c00001{bottom:113.367840px;}
.ya50_c00001{bottom:113.368005px;}
.y645_c00001{bottom:113.436900px;}
.y58c_c00001{bottom:114.345150px;}
.y122_c00001{bottom:114.375000px;}
.yc79_c00001{bottom:114.445515px;}
.yc4f_c00001{bottom:114.447015px;}
.yc21_c00001{bottom:114.447315px;}
.ybf1_c00001{bottom:114.448050px;}
.y1434_c00001{bottom:114.659700px;}
.y30_c00001{bottom:114.720750px;}
.yc8_c00001{bottom:114.735300px;}
.y12cb_c00001{bottom:114.929415px;}
.y903_c00001{bottom:115.056750px;}
.y1811_c00001{bottom:115.287660px;}
.y1b12_c00001{bottom:115.288110px;}
.y16b3_c00001{bottom:115.288980px;}
.y1378_c00001{bottom:115.289580px;}
.y14ef_c00001{bottom:115.290180px;}
.y18f5_c00001{bottom:115.290330px;}
.y1332_c00001{bottom:115.290600px;}
.y155f_c00001{bottom:115.290930px;}
.y131d_c00001{bottom:115.291050px;}
.y13a5_c00001{bottom:115.291380px;}
.y1636_c00001{bottom:115.293180px;}
.yfed_c00001{bottom:115.379850px;}
.y60d_c00001{bottom:115.410000px;}
.y616_c00001{bottom:115.424550px;}
.y601_c00001{bottom:115.425000px;}
.y10bb_c00001{bottom:115.467000px;}
.y10a2_c00001{bottom:115.467255px;}
.y10fd_c00001{bottom:115.468350px;}
.y1117_c00001{bottom:115.468590px;}
.y1cc6_c00001{bottom:115.888815px;}
.y5d9_c00001{bottom:115.913400px;}
.y9d2_c00001{bottom:115.956000px;}
.y521_c00001{bottom:115.966200px;}
.yad_c00001{bottom:116.130000px;}
.yb7_c00001{bottom:116.130300px;}
.y18d4_c00001{bottom:116.134425px;}
.y1e78_c00001{bottom:116.135145px;}
.yfe4_c00001{bottom:116.135745px;}
.y8a8_c00001{bottom:116.136900px;}
.y562_c00001{bottom:116.316750px;}
.yb18_c00001{bottom:116.367330px;}
.y17ef_c00001{bottom:116.549820px;}
.y1934_c00001{bottom:116.552880px;}
.y190c_c00001{bottom:116.554485px;}
.y1980_c00001{bottom:116.555865px;}
.y1c71_c00001{bottom:117.090000px;}
.y324_c00001{bottom:117.105150px;}
.y4d5_c00001{bottom:117.180000px;}
.y2f1_c00001{bottom:117.180300px;}
.y21a_c00001{bottom:117.210150px;}
.y8c8_c00001{bottom:117.215550px;}
.y256_c00001{bottom:117.285750px;}
.y44c_c00001{bottom:117.396750px;}
.y504_c00001{bottom:117.570000px;}
.y1d98_c00001{bottom:117.720150px;}
.y8e8_c00001{bottom:117.756900px;}
.y127_c00001{bottom:117.929700px;}
.y3a0_c00001{bottom:117.936900px;}
.y1356_c00001{bottom:117.990180px;}
.y10df_c00001{bottom:118.167765px;}
.y1f5a_c00001{bottom:118.259700px;}
.y94c_c00001{bottom:118.656450px;}
.y13a_c00001{bottom:118.694550px;}
.ye1_c00001{bottom:118.799850px;}
.yea_c00001{bottom:118.800600px;}
.yf4_c00001{bottom:118.800750px;}
.yfe_c00001{bottom:118.800900px;}
.y108_c00001{bottom:118.801500px;}
.y186_c00001{bottom:119.310000px;}
.yf9a_c00001{bottom:119.611335px;}
.yefb_c00001{bottom:119.614500px;}
.y1e4a_c00001{bottom:119.615100px;}
.y158f_c00001{bottom:119.615310px;}
.y15d8_c00001{bottom:119.616225px;}
.y1750_c00001{bottom:119.616555px;}
.yd36_c00001{bottom:119.968635px;}
.yfec_c00001{bottom:120.001200px;}
.y1c5b_c00001{bottom:120.152370px;}
.y1f25_c00001{bottom:120.153495px;}
.ye16_c00001{bottom:120.269355px;}
.y1c92_c00001{bottom:120.269805px;}
.ye42_c00001{bottom:120.269955px;}
.yda3_c00001{bottom:120.270930px;}
.ydbe_c00001{bottom:120.272250px;}
.y154_c00001{bottom:120.314700px;}
.y16d_c00001{bottom:120.315300px;}
.y4be_c00001{bottom:120.420150px;}
.y19f3_c00001{bottom:120.507675px;}
.y1a0c_c00001{bottom:120.508590px;}
.y19b4_c00001{bottom:120.508650px;}
.y199c_c00001{bottom:120.509340px;}
.y61c_c00001{bottom:120.636600px;}
.y5e5_c00001{bottom:120.645150px;}
.y1a0_c00001{bottom:121.110750px;}
.y1ba_c00001{bottom:121.112100px;}
.y1d4_c00001{bottom:121.113450px;}
.y1ee_c00001{bottom:121.114800px;}
.y208_c00001{bottom:121.116150px;}
.y18d7_c00001{bottom:121.140300px;}
.y3a1_c00001{bottom:121.493100px;}
.y845_c00001{bottom:121.717350px;}
.y1deb_c00001{bottom:122.279250px;}
.ydf5_c00001{bottom:122.971245px;}
.y1027_c00001{bottom:123.030720px;}
.y1dae_c00001{bottom:123.031455px;}
.y165f_c00001{bottom:123.032310px;}
.y16af_c00001{bottom:123.032595px;}
.y1de1_c00001{bottom:123.033870px;}
.y175b_c00001{bottom:123.034395px;}
.y1430_c00001{bottom:123.035130px;}
.y1723_c00001{bottom:123.037530px;}
.y34d_c00001{bottom:123.090000px;}
.y19d6_c00001{bottom:123.208260px;}
.y1bd4_c00001{bottom:123.266250px;}
.y1b60_c00001{bottom:123.267450px;}
.y1ba7_c00001{bottom:123.269850px;}
.y1b72_c00001{bottom:123.270450px;}
.y768_c00001{bottom:123.336450px;}
.y1165_c00001{bottom:123.510525px;}
.y1a50_c00001{bottom:123.514695px;}
.y71f_c00001{bottom:123.516750px;}
.y4e4_c00001{bottom:123.652950px;}
.y176a_c00001{bottom:123.686400px;}
.y12e6_c00001{bottom:123.688800px;}
.y12a8_c00001{bottom:123.689400px;}
.y1291_c00001{bottom:123.689460px;}
.y1786_c00001{bottom:123.745200px;}
.y1300_c00001{bottom:123.748050px;}
.y387_c00001{bottom:123.885000px;}
.yf45_c00001{bottom:123.930210px;}
.ybc0_c00001{bottom:124.045170px;}
.yb5e_c00001{bottom:124.047900px;}
.yb9c_c00001{bottom:124.048470px;}
.yb41_c00001{bottom:124.051350px;}
.yb80_c00001{bottom:124.051770px;}
.y6f3_c00001{bottom:124.056150px;}
.y596_c00001{bottom:124.417200px;}
.y1592_c00001{bottom:124.559700px;}
.y99f_c00001{bottom:124.596750px;}
.y12a_c00001{bottom:124.920000px;}
.y1c5e_c00001{bottom:125.100000px;}
.y5a5_c00001{bottom:125.273250px;}
.y1089_c00001{bottom:125.279850px;}
.y1b88_c00001{bottom:125.970060px;}
.y1e17_c00001{bottom:126.036045px;}
.y1d94_c00001{bottom:126.036660px;}
.y1eba_c00001{bottom:126.038445px;}
.y1080_c00001{bottom:126.039045px;}
.y7c5_c00001{bottom:126.398100px;}
.y12ca_c00001{bottom:126.449535px;}
.y17de_c00001{bottom:126.452895px;}
.y1495_c00001{bottom:126.454515px;}
.y1700_c00001{bottom:126.455445px;}
.y179e_c00001{bottom:126.455700px;}
.y14c2_c00001{bottom:126.456150px;}
.y1f56_c00001{bottom:126.572445px;}
.y1de9_c00001{bottom:126.840750px;}
.y599_c00001{bottom:127.258500px;}
.y6a0_c00001{bottom:127.657950px;}
.y2cc_c00001{bottom:128.010000px;}
.y79c_c00001{bottom:128.011500px;}
.y1b11_c00001{bottom:128.248455px;}
.y60_c00001{bottom:128.400600px;}
.ycff_c00001{bottom:128.786400px;}
.yd15_c00001{bottom:128.787150px;}
.yd50_c00001{bottom:128.787975px;}
.yd6e_c00001{bottom:128.788125px;}
.y1cf4_c00001{bottom:128.788725px;}
.y354_c00001{bottom:128.910000px;}
.y35b_c00001{bottom:128.910300px;}
.y367_c00001{bottom:128.910600px;}
.y36a_c00001{bottom:128.910750px;}
.y370_c00001{bottom:128.911050px;}
.y472_c00001{bottom:128.916750px;}
.y1914_c00001{bottom:129.118950px;}
.y1cc5_c00001{bottom:129.208935px;}
.y1e77_c00001{bottom:129.454680px;}
.yfe3_c00001{bottom:129.455280px;}
.ya2d_c00001{bottom:129.566550px;}
.ya90_c00001{bottom:129.566730px;}
.ya1a_c00001{bottom:129.566850px;}
.ya70_c00001{bottom:129.567840px;}
.ya4f_c00001{bottom:129.568005px;}
.y97e_c00001{bottom:129.636750px;}
.yb17_c00001{bottom:129.687450px;}
.y1933_c00001{bottom:129.873000px;}
.y190b_c00001{bottom:129.874605px;}
.y197f_c00001{bottom:129.875985px;}
.y1088_c00001{bottom:129.901200px;}
.y1eeb_c00001{bottom:129.992715px;}
.y5b2_c00001{bottom:130.005300px;}
.yc4e_c00001{bottom:130.647015px;}
.ybf0_c00001{bottom:130.648050px;}
.yc78_c00001{bottom:130.704765px;}
.yc20_c00001{bottom:130.708815px;}
.y3d8_c00001{bottom:130.896750px;}
.y10de_c00001{bottom:131.128110px;}
.y1498_c00001{bottom:131.400000px;}
.y1810_c00001{bottom:131.487660px;}
.yd35_c00001{bottom:131.488170px;}
.y1377_c00001{bottom:131.489580px;}
.y14ee_c00001{bottom:131.490180px;}
.y18f4_c00001{bottom:131.490330px;}
.y1331_c00001{bottom:131.490600px;}
.y155e_c00001{bottom:131.490930px;}
.y131c_c00001{bottom:131.491050px;}
.y13a4_c00001{bottom:131.491380px;}
.y1635_c00001{bottom:131.493180px;}
.yfa3_c00001{bottom:132.179250px;}
.y118c_c00001{bottom:132.329820px;}
.y1a29_c00001{bottom:132.330300px;}
.y1250_c00001{bottom:132.330420px;}
.y113d_c00001{bottom:132.333450px;}
.y1a98_c00001{bottom:132.334125px;}
.y1a77_c00001{bottom:132.335175px;}
.y1f2d_c00001{bottom:132.718950px;}
.yf99_c00001{bottom:132.872265px;}
.yefa_c00001{bottom:132.875430px;}
.y1e49_c00001{bottom:132.876030px;}
.y54d_c00001{bottom:132.876600px;}
.y158e_c00001{bottom:132.934845px;}
.y174f_c00001{bottom:132.936090px;}
.y15d7_c00001{bottom:132.936345px;}
.y5d8_c00001{bottom:133.013400px;}
.y576_c00001{bottom:133.236900px;}
.y520_c00001{bottom:133.246050px;}
.y1c5a_c00001{bottom:133.413300px;}
.y1f24_c00001{bottom:133.414425px;}
.y58b_c00001{bottom:133.425000px;}
.y1913_c00001{bottom:133.740300px;}
.y17ee_c00001{bottom:134.190120px;}
.y1355_c00001{bottom:134.190180px;}
.y863_c00001{bottom:134.316450px;}
.y4ae_c00001{bottom:134.496750px;}
.y2e_c00001{bottom:134.520750px;}
.y2af_c00001{bottom:134.676450px;}
.y1eee_c00001{bottom:135.000000px;}
.y1164_c00001{bottom:135.030645px;}
.y1a4f_c00001{bottom:135.034815px;}
.y2b5_c00001{bottom:135.464850px;}
.y65c_c00001{bottom:135.936900px;}
.y19d5_c00001{bottom:136.168605px;}
.y7fc_c00001{bottom:136.297200px;}
.y1d0e_c00001{bottom:136.350255px;}
.y1026_c00001{bottom:136.350840px;}
.y1dad_c00001{bottom:136.350990px;}
.y1607_c00001{bottom:136.351830px;}
.y16ae_c00001{bottom:136.352130px;}
.y165e_c00001{bottom:136.352430px;}
.y175a_c00001{bottom:136.353930px;}
.y1de0_c00001{bottom:136.353990px;}
.y142f_c00001{bottom:136.355250px;}
.y1722_c00001{bottom:136.357650px;}
.ye15_c00001{bottom:136.469355px;}
.y1c91_c00001{bottom:136.469805px;}
.ye41_c00001{bottom:136.469955px;}
.yda2_c00001{bottom:136.470930px;}
.ydbd_c00001{bottom:136.472250px;}
.yfa1_c00001{bottom:136.740750px;}
.y1b4c_c00001{bottom:137.006625px;}
.y1af5_c00001{bottom:137.007510px;}
.y1b2d_c00001{bottom:137.007825px;}
.y1b00_c00001{bottom:137.008500px;}
.yf44_c00001{bottom:137.250330px;}
.y1f2c_c00001{bottom:137.281050px;}
.y135_c00001{bottom:137.556750px;}
.y6cc_c00001{bottom:138.996750px;}
.y14ca_c00001{bottom:139.018950px;}
.ydf4_c00001{bottom:139.171245px;}
.y1e16_c00001{bottom:139.355580px;}
.y4ea_c00001{bottom:139.356450px;}
.y1d93_c00001{bottom:139.356780px;}
.y1eb9_c00001{bottom:139.357980px;}
.y107f_c00001{bottom:139.358580px;}
.y12c9_c00001{bottom:139.409880px;}
.y1bd3_c00001{bottom:139.466250px;}
.y1b5f_c00001{bottom:139.467450px;}
.y1ba6_c00001{bottom:139.469850px;}
.y1b71_c00001{bottom:139.470450px;}
.y4bd_c00001{bottom:139.500000px;}
.y5e4_c00001{bottom:139.545150px;}
.y1b10_c00001{bottom:139.709400px;}
.y17dd_c00001{bottom:139.773015px;}
.y1494_c00001{bottom:139.774635px;}
.y16ff_c00001{bottom:139.775565px;}
.y179d_c00001{bottom:139.775820px;}
.y14c1_c00001{bottom:139.776270px;}
.y10ba_c00001{bottom:139.888350px;}
.y10a1_c00001{bottom:139.888605px;}
.y10fc_c00001{bottom:139.889100px;}
.y1f55_c00001{bottom:139.892565px;}
.y1116_c00001{bottom:139.948440px;}
.y641_c00001{bottom:140.076600px;}
.ybbf_c00001{bottom:140.245170px;}
.yb5d_c00001{bottom:140.247900px;}
.yb9b_c00001{bottom:140.248470px;}
.yb40_c00001{bottom:140.251350px;}
.y89f_c00001{bottom:140.436450px;}
.y2d2_c00001{bottom:140.655300px;}
.y2d8_c00001{bottom:140.655750px;}
.y2de_c00001{bottom:140.656200px;}
.y2ea_c00001{bottom:140.656500px;}
.y2e4_c00001{bottom:140.656650px;}
.y4e3_c00001{bottom:140.752950px;}
.y160a_c00001{bottom:141.300000px;}
.y796_c00001{bottom:141.551550px;}
.y1b87_c00001{bottom:142.170060px;}
.y1cc4_c00001{bottom:142.529055px;}
.y10dd_c00001{bottom:142.648230px;}
.y2f4_c00001{bottom:142.770000px;}
.y1e76_c00001{bottom:142.774800px;}
.yfe2_c00001{bottom:142.775400px;}
.y21d_c00001{bottom:142.815750px;}
.yb7f_c00001{bottom:142.952370px;}
.y1932_c00001{bottom:143.193120px;}
.y190a_c00001{bottom:143.194140px;}
.y197e_c00001{bottom:143.196105px;}
.y1eea_c00001{bottom:143.312835px;}
.y615_c00001{bottom:143.324550px;}
.y600_c00001{bottom:143.325000px;}
.y13b_c00001{bottom:143.354850px;}
.y14c9_c00001{bottom:143.640300px;}
.y71e_c00001{bottom:143.675550px;}
.yd34_c00001{bottom:144.448515px;}
.y327_c00001{bottom:144.614850px;}
.y259_c00001{bottom:144.751050px;}
.y1a0b_c00001{bottom:144.987840px;}
.y19f2_c00001{bottom:144.988125px;}
.y199b_c00001{bottom:144.988590px;}
.y19b3_c00001{bottom:144.989100px;}
.y155_c00001{bottom:145.005000px;}
.y16e_c00001{bottom:145.005600px;}
.y96d_c00001{bottom:145.116300px;}
.y18ab_c00001{bottom:145.714500px;}
.ya2c_c00001{bottom:145.766550px;}
.ya8f_c00001{bottom:145.766730px;}
.ya19_c00001{bottom:145.766850px;}
.ya6f_c00001{bottom:145.767840px;}
.ya4e_c00001{bottom:145.768005px;}
.y187_c00001{bottom:146.189850px;}
.yf98_c00001{bottom:146.192385px;}
.yef9_c00001{bottom:146.195550px;}
.y1e48_c00001{bottom:146.196150px;}
.y902_c00001{bottom:146.197050px;}
.y1523_c00001{bottom:146.253030px;}
.y158d_c00001{bottom:146.254965px;}
.y15d6_c00001{bottom:146.255880px;}
.y174e_c00001{bottom:146.256210px;}
.yc1f_c00001{bottom:146.368515px;}
.y1c59_c00001{bottom:146.733420px;}
.y1f23_c00001{bottom:146.733960px;}
.y2cb_c00001{bottom:147.030150px;}
.y9d1_c00001{bottom:147.096750px;}
.y677_c00001{bottom:147.097500px;}
.y8a7_c00001{bottom:147.276900px;}
.y180f_c00001{bottom:147.687660px;}
.y19d4_c00001{bottom:147.688140px;}
.y1376_c00001{bottom:147.689580px;}
.y14ed_c00001{bottom:147.690180px;}
.y18f3_c00001{bottom:147.690330px;}
.y1330_c00001{bottom:147.690600px;}
.y155d_c00001{bottom:147.690930px;}
.y131b_c00001{bottom:147.691050px;}
.y13a3_c00001{bottom:147.691380px;}
.y1634_c00001{bottom:147.693180px;}
.y1163_c00001{bottom:147.990405px;}
.y1a4e_c00001{bottom:147.994575px;}
.y1a1_c00001{bottom:148.035750px;}
.y1bb_c00001{bottom:148.037100px;}
.y1d5_c00001{bottom:148.038450px;}
.y1ef_c00001{bottom:148.039800px;}
.y209_c00001{bottom:148.041150px;}
.y1953_c00001{bottom:148.165950px;}
.y1769_c00001{bottom:148.166250px;}
.y1785_c00001{bottom:148.166550px;}
.y12e5_c00001{bottom:148.168050px;}
.y12ff_c00001{bottom:148.169400px;}
.y12a7_c00001{bottom:148.169850px;}
.y1290_c00001{bottom:148.169910px;}
.y8c7_c00001{bottom:148.175250px;}
.y2c2_c00001{bottom:148.349400px;}
.y2bc_c00001{bottom:148.349700px;}
.y7c4_c00001{bottom:148.357800px;}
.y5f_c00001{bottom:148.380450px;}
.y5b1_c00001{bottom:148.724850px;}
.y8e7_c00001{bottom:148.897200px;}
.y1439_c00001{bottom:148.918950px;}
.y420_c00001{bottom:149.076600px;}
.y6f2_c00001{bottom:149.256150px;}
.y5ab_c00001{bottom:149.436900px;}
.y1025_c00001{bottom:149.670375px;}
.y1dac_c00001{bottom:149.671110px;}
.y1606_c00001{bottom:149.671950px;}
.y16ad_c00001{bottom:149.672250px;}
.y165d_c00001{bottom:149.672550px;}
.y1759_c00001{bottom:149.674050px;}
.y1ddf_c00001{bottom:149.674110px;}
.y142e_c00001{bottom:149.675370px;}
.y1721_c00001{bottom:149.677770px;}
.y77e_c00001{bottom:149.796750px;}
.y844_c00001{bottom:149.797200px;}
.y5d7_c00001{bottom:150.338400px;}
.y51f_c00001{bottom:150.346650px;}
.y17ed_c00001{bottom:150.390120px;}
.y1354_c00001{bottom:150.390180px;}
.yf43_c00001{bottom:150.570450px;}
.y18ae_c00001{bottom:150.660000px;}
.y12c8_c00001{bottom:150.870825px;}
.y1526_c00001{bottom:151.200000px;}
.y767_c00001{bottom:151.229400px;}
.y1d9a_c00001{bottom:151.920000px;}
.y5c6_c00001{bottom:151.950000px;}
.y58a_c00001{bottom:152.325000px;}
.y1f5c_c00001{bottom:152.460000px;}
.y1b0f_c00001{bottom:152.669160px;}
.ye14_c00001{bottom:152.669355px;}
.yda1_c00001{bottom:152.670930px;}
.ydbc_c00001{bottom:152.672250px;}
.y1e15_c00001{bottom:152.675700px;}
.y1d92_c00001{bottom:152.676900px;}
.y1eb8_c00001{bottom:152.678100px;}
.y107e_c00001{bottom:152.678700px;}
.y1c90_c00001{bottom:152.731905px;}
.ye40_c00001{bottom:152.732055px;}
.y92b_c00001{bottom:153.030000px;}
.y17dc_c00001{bottom:153.093135px;}
.y1493_c00001{bottom:153.094755px;}
.y179c_c00001{bottom:153.095355px;}
.y16fe_c00001{bottom:153.095685px;}
.y14c0_c00001{bottom:153.095805px;}
.yd14_c00001{bottom:153.208500px;}
.ycfe_c00001{bottom:153.208800px;}
.yd4f_c00001{bottom:153.209325px;}
.y1f54_c00001{bottom:153.212685px;}
.yd6d_c00001{bottom:153.266325px;}
.y1cf3_c00001{bottom:153.266925px;}
.y1437_c00001{bottom:153.481500px;}
.y2d_c00001{bottom:154.320000px;}
.y2b4_c00001{bottom:154.439850px;}
.y595_c00001{bottom:154.470000px;}
.yc4d_c00001{bottom:155.126865px;}
.ybef_c00001{bottom:155.128500px;}
.ydf3_c00001{bottom:155.430495px;}
.y30a_c00001{bottom:155.444700px;}
.y314_c00001{bottom:155.446050px;}
.y233_c00001{bottom:155.489700px;}
.y246_c00001{bottom:155.490150px;}
.y10dc_c00001{bottom:155.607990px;}
.y1bd2_c00001{bottom:155.666250px;}
.y1b5e_c00001{bottom:155.667450px;}
.y1ba5_c00001{bottom:155.669850px;}
.y1b70_c00001{bottom:155.670450px;}
.y99e_c00001{bottom:155.729400px;}
.y69f_c00001{bottom:155.730150px;}
.y2ae_c00001{bottom:155.730300px;}
.y1cc3_c00001{bottom:155.849175px;}
.yd33_c00001{bottom:155.968635px;}
.y1e75_c00001{bottom:156.094335px;}
.y18d3_c00001{bottom:156.094725px;}
.yfe1_c00001{bottom:156.094935px;}
.yb5c_c00001{bottom:156.447900px;}
.yb9a_c00001{bottom:156.448470px;}
.yb3f_c00001{bottom:156.451350px;}
.ybbe_c00001{bottom:156.504420px;}
.y1931_c00001{bottom:156.513240px;}
.y1909_c00001{bottom:156.514260px;}
.y197d_c00001{bottom:156.516225px;}
.y1d99_c00001{bottom:156.541500px;}
.y1ee9_c00001{bottom:156.632955px;}
.y118b_c00001{bottom:156.746970px;}
.y122b_c00001{bottom:156.747270px;}
.y1275_c00001{bottom:156.747420px;}
.y124f_c00001{bottom:156.747570px;}
.y1a28_c00001{bottom:156.748650px;}
.y113c_c00001{bottom:156.751800px;}
.y1a97_c00001{bottom:156.751875px;}
.y1a76_c00001{bottom:156.752925px;}
.y1f5b_c00001{bottom:157.081500px;}
.y345_c00001{bottom:157.470000px;}
.y33a_c00001{bottom:157.470300px;}
.y26e_c00001{bottom:157.575300px;}
.y27a_c00001{bottom:157.576350px;}
.y286_c00001{bottom:157.577250px;}
.y292_c00001{bottom:157.578150px;}
.y29e_c00001{bottom:157.579050px;}
.yc1e_c00001{bottom:157.827105px;}
.y4e2_c00001{bottom:158.032800px;}
.y1b86_c00001{bottom:158.370060px;}
.y4bc_c00001{bottom:158.400000px;}
.y5e3_c00001{bottom:158.445150px;}
.y1595_c00001{bottom:158.818500px;}
.y94b_c00001{bottom:158.968050px;}
.y18aa_c00001{bottom:159.034035px;}
.y1aeb_c00001{bottom:159.087090px;}
.yb7e_c00001{bottom:159.211020px;}
.y1c60_c00001{bottom:159.300000px;}
.y1162_c00001{bottom:159.448410px;}
.y1a4d_c00001{bottom:159.453165px;}
.yf97_c00001{bottom:159.511920px;}
.yef8_c00001{bottom:159.515670px;}
.y1e47_c00001{bottom:159.516270px;}
.y1522_c00001{bottom:159.573150px;}
.y158c_c00001{bottom:159.575085px;}
.y15d5_c00001{bottom:159.576000px;}
.y174d_c00001{bottom:159.576330px;}
.y1c58_c00001{bottom:160.053540px;}
.y1f22_c00001{bottom:160.054080px;}
.y19d3_c00001{bottom:160.647900px;}
.y1258_c00001{bottom:160.648320px;}
.y97d_c00001{bottom:160.770000px;}
.y18d6_c00001{bottom:161.100000px;}
.y4a4_c00001{bottom:161.130000px;}
.y1b4b_c00001{bottom:161.486475px;}
.y1b2c_c00001{bottom:161.487675px;}
.y1af4_c00001{bottom:161.487960px;}
.y1aff_c00001{bottom:161.488350px;}
.y2f3_c00001{bottom:161.745000px;}
.y21c_c00001{bottom:161.790750px;}
.ya2b_c00001{bottom:161.966550px;}
.ya18_c00001{bottom:161.966850px;}
.ya6e_c00001{bottom:161.967840px;}
.ya8e_c00001{bottom:162.028230px;}
.ya4d_c00001{bottom:162.029505px;}
.y862_c00001{bottom:162.209400px;}
.y4f7_c00001{bottom:162.721350px;}
.y1024_c00001{bottom:162.931305px;}
.y1dab_c00001{bottom:162.932040px;}
.y1dde_c00001{bottom:162.935040px;}
.y1605_c00001{bottom:162.992070px;}
.y16ac_c00001{bottom:162.992370px;}
.y165c_c00001{bottom:162.992670px;}
.y1758_c00001{bottom:162.994170px;}
.y142d_c00001{bottom:162.994905px;}
.y1720_c00001{bottom:162.997305px;}
.y1593_c00001{bottom:163.381500px;}
.y326_c00001{bottom:163.590450px;}
.y258_c00001{bottom:163.726050px;}
.y12c7_c00001{bottom:163.830585px;}
.y180e_c00001{bottom:163.887660px;}
.y1375_c00001{bottom:163.889580px;}
.yf42_c00001{bottom:163.890570px;}
.y132f_c00001{bottom:163.890600px;}
.y131a_c00001{bottom:163.891050px;}
.y1c5f_c00001{bottom:163.920000px;}
.y1838_c00001{bottom:163.946910px;}
.y14ec_c00001{bottom:163.949430px;}
.y18f2_c00001{bottom:163.949580px;}
.y155c_c00001{bottom:163.950180px;}
.y13a2_c00001{bottom:163.950630px;}
.y1633_c00001{bottom:163.952880px;}
.y1b0e_c00001{bottom:164.189280px;}
.y7fb_c00001{bottom:164.190150px;}
.y10b9_c00001{bottom:164.368200px;}
.y10a0_c00001{bottom:164.368455px;}
.y10fb_c00001{bottom:164.368950px;}
.y1115_c00001{bottom:164.369190px;}
.y6cb_c00001{bottom:165.270000px;}
.y149a_c00001{bottom:165.658500px;}
.y1e14_c00001{bottom:165.995235px;}
.y1d91_c00001{bottom:165.996435px;}
.y1eb7_c00001{bottom:165.997635px;}
.y107d_c00001{bottom:165.998235px;}
.y5b0_c00001{bottom:166.005300px;}
.y17db_c00001{bottom:166.413255px;}
.y1492_c00001{bottom:166.414875px;}
.y179b_c00001{bottom:166.415475px;}
.y16fd_c00001{bottom:166.415805px;}
.y14bf_c00001{bottom:166.415925px;}
.y1f53_c00001{bottom:166.532805px;}
.y17ec_c00001{bottom:166.649370px;}
.y1353_c00001{bottom:166.649430px;}
.y71d_c00001{bottom:166.888650px;}
.y10db_c00001{bottom:167.068935px;}
.y134_c00001{bottom:167.610600px;}
.y51e_c00001{bottom:167.626500px;}
.y676_c00001{bottom:167.970300px;}
.y13c_c00001{bottom:168.044550px;}
.y3a7_c00001{bottom:168.150000px;}
.y5e_c00001{bottom:168.360000px;}
.y61b_c00001{bottom:168.510000px;}
.yd32_c00001{bottom:168.928395px;}
.yda0_c00001{bottom:168.930630px;}
.ye13_c00001{bottom:168.931455px;}
.ydbb_c00001{bottom:168.931500px;}
.y1c8f_c00001{bottom:168.931905px;}
.ye3f_c00001{bottom:168.932055px;}
.y96c_c00001{bottom:169.050150px;}
.y1cc2_c00001{bottom:169.110105px;}
.y1ef0_c00001{bottom:169.200000px;}
.yae_c00001{bottom:169.230000px;}
.yb8_c00001{bottom:169.230300px;}
.y19f1_c00001{bottom:169.408875px;}
.y19b2_c00001{bottom:169.409850px;}
.y199a_c00001{bottom:169.409940px;}
.y1e74_c00001{bottom:169.414455px;}
.y18d2_c00001{bottom:169.414845px;}
.yfe0_c00001{bottom:169.415055px;}
.y1a0a_c00001{bottom:169.467090px;}
.y156_c00001{bottom:169.709850px;}
.y16f_c00001{bottom:169.710450px;}
.y17b_c00001{bottom:169.710600px;}
.y1930_c00001{bottom:169.833360px;}
.y1908_c00001{bottom:169.833795px;}
.y197c_c00001{bottom:169.836345px;}
.y1ee8_c00001{bottom:169.953075px;}
.y1499_c00001{bottom:170.280000px;}
.y7c3_c00001{bottom:170.310600px;}
.y511_c00001{bottom:170.850000px;}
.y820_c00001{bottom:171.030000px;}
.yc77_c00001{bottom:171.326115px;}
.yc4c_c00001{bottom:171.326865px;}
.yc1d_c00001{bottom:171.327105px;}
.ybee_c00001{bottom:171.328500px;}
.y614_c00001{bottom:171.405000px;}
.ydf2_c00001{bottom:171.630495px;}
.y1b5d_c00001{bottom:171.867450px;}
.y1ba4_c00001{bottom:171.868050px;}
.y1b6f_c00001{bottom:171.870450px;}
.y1bd1_c00001{bottom:171.925500px;}
.y19d2_c00001{bottom:172.168605px;}
.y18a9_c00001{bottom:172.354155px;}
.y1aea_c00001{bottom:172.407210px;}
.y1161_c00001{bottom:172.408755px;}
.y1a4c_c00001{bottom:172.412925px;}
.y1952_c00001{bottom:172.645800px;}
.y1768_c00001{bottom:172.646100px;}
.y1784_c00001{bottom:172.646400px;}
.y12e4_c00001{bottom:172.647300px;}
.y12fe_c00001{bottom:172.649250px;}
.y128f_c00001{bottom:172.649760px;}
.y12a6_c00001{bottom:172.650300px;}
.ybbd_c00001{bottom:172.704420px;}
.yb5b_c00001{bottom:172.707150px;}
.yb99_c00001{bottom:172.708170px;}
.yb3e_c00001{bottom:172.710000px;}
.yf96_c00001{bottom:172.832040px;}
.y1521_c00001{bottom:172.834080px;}
.yef7_c00001{bottom:172.835790px;}
.y158b_c00001{bottom:172.836015px;}
.y1e46_c00001{bottom:172.836390px;}
.y15d4_c00001{bottom:172.836930px;}
.y174c_c00001{bottom:172.837260px;}
.y188_c00001{bottom:173.130150px;}
.y1f21_c00001{bottom:173.373615px;}
.y1c57_c00001{bottom:173.373660px;}
.y1eef_c00001{bottom:173.820000px;}
.y2b_c00001{bottom:174.120000px;}
.y6f1_c00001{bottom:174.449100px;}
.y121_c00001{bottom:174.570000px;}
.y9b_c00001{bottom:174.599850px;}
.y1b85_c00001{bottom:174.631560px;}
.y1a2_c00001{bottom:174.930900px;}
.y1bc_c00001{bottom:174.932250px;}
.y1d6_c00001{bottom:174.933600px;}
.y1f0_c00001{bottom:174.934950px;}
.y20a_c00001{bottom:174.936300px;}
.ydd_c00001{bottom:174.990000px;}
.ye2_c00001{bottom:174.990150px;}
.yeb_c00001{bottom:174.990900px;}
.yf5_c00001{bottom:174.991050px;}
.yff_c00001{bottom:174.991200px;}
.y109_c00001{bottom:174.991800px;}
.y4e1_c00001{bottom:175.313250px;}
.y790_c00001{bottom:175.347540px;}
.y11f0_c00001{bottom:175.348020px;}
.y12c6_c00001{bottom:175.350705px;}
.yb7d_c00001{bottom:175.411020px;}
.y160c_c00001{bottom:175.558500px;}
.y1023_c00001{bottom:176.251425px;}
.y1daa_c00001{bottom:176.252160px;}
.y1ddd_c00001{bottom:176.255160px;}
.y1604_c00001{bottom:176.312190px;}
.y165b_c00001{bottom:176.312205px;}
.y16ab_c00001{bottom:176.312490px;}
.y1757_c00001{bottom:176.314290px;}
.y142c_c00001{bottom:176.315025px;}
.y171f_c00001{bottom:176.317425px;}
.y1b0d_c00001{bottom:177.149040px;}
.y901_c00001{bottom:177.149850px;}
.yf41_c00001{bottom:177.210690px;}
.y4bb_c00001{bottom:177.479850px;}
.y5e2_c00001{bottom:177.525000px;}
.yd6c_c00001{bottom:177.687075px;}
.ycfd_c00001{bottom:177.687450px;}
.y1cf2_c00001{bottom:177.688275px;}
.yd13_c00001{bottom:177.688350px;}
.yd4e_c00001{bottom:177.689175px;}
.y843_c00001{bottom:177.690150px;}
.y89e_c00001{bottom:178.048950px;}
.y9d0_c00001{bottom:178.049550px;}
.ya8d_c00001{bottom:178.228230px;}
.ya2a_c00001{bottom:178.228650px;}
.ya17_c00001{bottom:178.228950px;}
.ya4c_c00001{bottom:178.229505px;}
.y8a6_c00001{bottom:178.229700px;}
.ya6d_c00001{bottom:178.229940px;}
.ycdc_c00001{bottom:179.131950px;}
.y8c6_c00001{bottom:179.308500px;}
.y766_c00001{bottom:179.310450px;}
.y1e13_c00001{bottom:179.315355px;}
.y1d90_c00001{bottom:179.316555px;}
.y1eb6_c00001{bottom:179.317755px;}
.y107c_c00001{bottom:179.318355px;}
.y17da_c00001{bottom:179.733375px;}
.y1491_c00001{bottom:179.734410px;}
.y179a_c00001{bottom:179.735010px;}
.y14be_c00001{bottom:179.735460px;}
.y16fc_c00001{bottom:179.735925px;}
.y8e6_c00001{bottom:179.850000px;}
.y1f52_c00001{bottom:179.852925px;}
.y10da_c00001{bottom:180.028695px;}
.y160b_c00001{bottom:180.120000px;}
.y180d_c00001{bottom:180.146910px;}
.y1374_c00001{bottom:180.148830px;}
.y14eb_c00001{bottom:180.149430px;}
.y18f1_c00001{bottom:180.149580px;}
.y155b_c00001{bottom:180.150180px;}
.y1319_c00001{bottom:180.150300px;}
.yc9_c00001{bottom:180.150600px;}
.y13a1_c00001{bottom:180.150630px;}
.y1632_c00001{bottom:180.152880px;}
.yd31_c00001{bottom:180.389340px;}
.y797_c00001{bottom:181.002750px;}
.y594_c00001{bottom:181.110000px;}
.y118a_c00001{bottom:181.226820px;}
.y122a_c00001{bottom:181.227120px;}
.y1274_c00001{bottom:181.227270px;}
.y124e_c00001{bottom:181.227420px;}
.y1a27_c00001{bottom:181.228500px;}
.y113b_c00001{bottom:181.231650px;}
.y1a96_c00001{bottom:181.231725px;}
.y1a75_c00001{bottom:181.233375px;}
.y2cd_c00001{bottom:181.289850px;}
.y4f6_c00001{bottom:181.440900px;}
.y1e73_c00001{bottom:182.733990px;}
.y18d1_c00001{bottom:182.734380px;}
.yfdf_c00001{bottom:182.734590px;}
.y17eb_c00001{bottom:182.849370px;}
.y1352_c00001{bottom:182.849430px;}
.y54a_c00001{bottom:182.910000px;}
.y192f_c00001{bottom:183.153480px;}
.y1907_c00001{bottom:183.153915px;}
.y197b_c00001{bottom:183.155880px;}
.y575_c00001{bottom:183.270000px;}
.y1ee7_c00001{bottom:183.273195px;}
.y5af_c00001{bottom:183.285150px;}
.y69e_c00001{bottom:183.630150px;}
.y1160_c00001{bottom:183.928875px;}
.y1a4b_c00001{bottom:183.933045px;}
.y216_c00001{bottom:184.065150px;}
.y44b_c00001{bottom:184.170000px;}
.y2d3_c00001{bottom:184.425450px;}
.y2d9_c00001{bottom:184.425900px;}
.y2df_c00001{bottom:184.426350px;}
.y2e5_c00001{bottom:184.426800px;}
.y2eb_c00001{bottom:184.427250px;}
.y2ed_c00001{bottom:184.427400px;}
.y18b3_c00001{bottom:184.918500px;}
.y1257_c00001{bottom:185.128170px;}
.y19d1_c00001{bottom:185.128365px;}
.ydf1_c00001{bottom:185.130495px;}
.yd9f_c00001{bottom:185.130630px;}
.ye12_c00001{bottom:185.131455px;}
.ydba_c00001{bottom:185.131500px;}
.y1c8e_c00001{bottom:185.131905px;}
.ye3e_c00001{bottom:185.132055px;}
.y152c_c00001{bottom:185.400000px;}
.y18a8_c00001{bottom:185.674275px;}
.y1ae9_c00001{bottom:185.726745px;}
.y1af3_c00001{bottom:185.905710px;}
.y1b2b_c00001{bottom:185.906025px;}
.y1afe_c00001{bottom:185.906700px;}
.y1b4a_c00001{bottom:185.907225px;}
.yf95_c00001{bottom:186.152160px;}
.y1520_c00001{bottom:186.154200px;}
.yef6_c00001{bottom:186.155910px;}
.y158a_c00001{bottom:186.156135px;}
.y1e45_c00001{bottom:186.156510px;}
.y15d3_c00001{bottom:186.157050px;}
.y174b_c00001{bottom:186.157380px;}
.y99d_c00001{bottom:186.689700px;}
.y1f20_c00001{bottom:186.693735px;}
.y1c56_c00001{bottom:186.693780px;}
.y2f6_c00001{bottom:187.351050px;}
.y21f_c00001{bottom:187.381050px;}
.yc4b_c00001{bottom:187.526865px;}
.ybed_c00001{bottom:187.528500px;}
.yc76_c00001{bottom:187.585365px;}
.yc1c_c00001{bottom:187.588605px;}
.y1bd0_c00001{bottom:188.125500px;}
.y1b5c_c00001{bottom:188.129550px;}
.y1ba3_c00001{bottom:188.131950px;}
.y1b6e_c00001{bottom:188.132550px;}
.y12c5_c00001{bottom:188.310465px;}
.y11ef_c00001{bottom:188.606610px;}
.y1b0c_c00001{bottom:188.607630px;}
.y10b8_c00001{bottom:188.848050px;}
.y109f_c00001{bottom:188.848305px;}
.y10fa_c00001{bottom:188.848800px;}
.y1114_c00001{bottom:188.849040px;}
.ybbc_c00001{bottom:188.904420px;}
.yb5a_c00001{bottom:188.907150px;}
.yb98_c00001{bottom:188.908170px;}
.yb3d_c00001{bottom:188.910000px;}
.yb7c_c00001{bottom:188.911020px;}
.y4e9_c00001{bottom:189.390000px;}
.y18b2_c00001{bottom:189.481500px;}
.y1603_c00001{bottom:189.632310px;}
.y165a_c00001{bottom:189.632325px;}
.y16aa_c00001{bottom:189.632610px;}
.y1756_c00001{bottom:189.634410px;}
.y142b_c00001{bottom:189.634560px;}
.y171e_c00001{bottom:189.636960px;}
.y123_c00001{bottom:189.644550px;}
.y71c_c00001{bottom:189.928350px;}
.y152a_c00001{bottom:190.020000px;}
.y861_c00001{bottom:190.109400px;}
.y1249_c00001{bottom:190.349055px;}
.y1022_c00001{bottom:190.530720px;}
.y1da9_c00001{bottom:190.531455px;}
.y1ddc_c00001{bottom:190.534455px;}
.y1b84_c00001{bottom:190.831560px;}
.y329_c00001{bottom:191.130150px;}
.y25b_c00001{bottom:191.235750px;}
.y10d9_c00001{bottom:191.548815px;}
.y6ca_c00001{bottom:191.550000px;}
.y97c_c00001{bottom:191.729250px;}
.y887_c00001{bottom:191.730000px;}
.y2b6_c00001{bottom:192.164850px;}
.yb16_c00001{bottom:192.207000px;}
.y7fa_c00001{bottom:192.270000px;}
.y7c2_c00001{bottom:192.270300px;}
.ycdb_c00001{bottom:192.451485px;}
.y1e12_c00001{bottom:192.634890px;}
.y1d8f_c00001{bottom:192.636090px;}
.y1eb5_c00001{bottom:192.637290px;}
.y107b_c00001{bottom:192.637890px;}
.y4e0_c00001{bottom:192.638250px;}
.y13d_c00001{bottom:192.750000px;}
.y96b_c00001{bottom:192.809400px;}
.y17d9_c00001{bottom:193.053495px;}
.y1490_c00001{bottom:193.054530px;}
.y1799_c00001{bottom:193.055130px;}
.y14bd_c00001{bottom:193.055580px;}
.y16fb_c00001{bottom:193.056045px;}
.y1f51_c00001{bottom:193.173045px;}
.yd30_c00001{bottom:193.349685px;}
.y120_c00001{bottom:193.530300px;}
.y1a09_c00001{bottom:193.887240px;}
.y19f0_c00001{bottom:193.888725px;}
.y19b1_c00001{bottom:193.889700px;}
.y1999_c00001{bottom:193.890390px;}
.y157_c00001{bottom:194.400150px;}
.y17c_c00001{bottom:194.400900px;}
.ya8c_c00001{bottom:194.428230px;}
.ya29_c00001{bottom:194.428650px;}
.ya16_c00001{bottom:194.428950px;}
.ya4b_c00001{bottom:194.429505px;}
.ya6c_c00001{bottom:194.429940px;}
.y1d51_c00001{bottom:195.265305px;}
.y1cd8_c00001{bottom:195.266355px;}
.y18db_c00001{bottom:195.286500px;}
.y2c3_c00001{bottom:195.554850px;}
.y2bd_c00001{bottom:195.555150px;}
.y1cc1_c00001{bottom:195.749805px;}
.y1e72_c00001{bottom:196.054110px;}
.y18d0_c00001{bottom:196.054500px;}
.yfde_c00001{bottom:196.054710px;}
.y180c_c00001{bottom:196.346910px;}
.y1373_c00001{bottom:196.348830px;}
.y14ea_c00001{bottom:196.349430px;}
.y18f0_c00001{bottom:196.349580px;}
.y155a_c00001{bottom:196.350180px;}
.y1318_c00001{bottom:196.350300px;}
.y13a0_c00001{bottom:196.350630px;}
.y1631_c00001{bottom:196.352880px;}
.y4ba_c00001{bottom:196.425000px;}
.y1906_c00001{bottom:196.473450px;}
.y192e_c00001{bottom:196.473600px;}
.y197a_c00001{bottom:196.476000px;}
.y19d0_c00001{bottom:196.589310px;}
.y1ee6_c00001{bottom:196.592730px;}
.y115f_c00001{bottom:196.888635px;}
.y1a4a_c00001{bottom:196.892805px;}
.y1767_c00001{bottom:197.064450px;}
.y12e3_c00001{bottom:197.065650px;}
.y1951_c00001{bottom:197.067150px;}
.y1783_c00001{bottom:197.067750px;}
.y12a5_c00001{bottom:197.068050px;}
.y128e_c00001{bottom:197.068110px;}
.y12fd_c00001{bottom:197.070600px;}
.y133_c00001{bottom:197.491050px;}
.y94a_c00001{bottom:197.668050px;}
.y3d5_c00001{bottom:197.670000px;}
.y675_c00001{bottom:198.030000px;}
.y77d_c00001{bottom:198.389700px;}
.y4f5_c00001{bottom:198.721350px;}
.y81f_c00001{bottom:198.930000px;}
.y18a7_c00001{bottom:198.993810px;}
.y1ae8_c00001{bottom:199.046865px;}
.y17ea_c00001{bottom:199.049370px;}
.y1351_c00001{bottom:199.049430px;}
.y41c_c00001{bottom:199.290000px;}
.y613_c00001{bottom:199.305000px;}
.y5aa_c00001{bottom:199.470000px;}
.y5d0_c00001{bottom:199.470300px;}
.y151f_c00001{bottom:199.474320px;}
.y1589_c00001{bottom:199.475670px;}
.y174a_c00001{bottom:199.476915px;}
.y15d2_c00001{bottom:199.477170px;}
.y12c4_c00001{bottom:199.768470px;}
.y18da_c00001{bottom:199.920000px;}
.y189_c00001{bottom:200.010000px;}
.y31b_c00001{bottom:200.011200px;}
.y1f1f_c00001{bottom:200.013270px;}
.y1c55_c00001{bottom:200.013900px;}
.y234_c00001{bottom:200.055000px;}
.y23e_c00001{bottom:200.055450px;}
.y247_c00001{bottom:200.055900px;}
.y1021_c00001{bottom:200.430720px;}
.yf94_c00001{bottom:200.431455px;}
.y1ddb_c00001{bottom:200.434455px;}
.yef5_c00001{bottom:200.435205px;}
.y1e44_c00001{bottom:200.435805px;}
.y5ae_c00001{bottom:200.565000px;}
.yd9e_c00001{bottom:201.330630px;}
.ye11_c00001{bottom:201.331455px;}
.y1c8d_c00001{bottom:201.391155px;}
.ye3d_c00001{bottom:201.391305px;}
.y1b0b_c00001{bottom:201.567390px;}
.y34e_c00001{bottom:201.750300px;}
.y1a3_c00001{bottom:201.855900px;}
.y1bd_c00001{bottom:201.857250px;}
.y1d7_c00001{bottom:201.858600px;}
.y1f1_c00001{bottom:201.859950px;}
.y20b_c00001{bottom:201.861300px;}
.y1204_c00001{bottom:201.926055px;}
.y11ee_c00001{bottom:201.926145px;}
.y5c5_c00001{bottom:201.990000px;}
.ycfc_c00001{bottom:202.105800px;}
.yd12_c00001{bottom:202.106700px;}
.yd4d_c00001{bottom:202.107525px;}
.y129_c00001{bottom:202.109700px;}
.yd6b_c00001{bottom:202.166925px;}
.y1cf1_c00001{bottom:202.167525px;}
.ydf0_c00001{bottom:202.590795px;}
.y1602_c00001{bottom:202.893240px;}
.y1659_c00001{bottom:202.893255px;}
.y16a9_c00001{bottom:202.893540px;}
.y1755_c00001{bottom:202.895340px;}
.y142a_c00001{bottom:202.895490px;}
.y171d_c00001{bottom:202.897890px;}
.y1248_c00001{bottom:203.669760px;}
.yc75_c00001{bottom:203.785365px;}
.yc4a_c00001{bottom:203.786565px;}
.yc1b_c00001{bottom:203.789205px;}
.ybec_c00001{bottom:203.790000px;}
.yf40_c00001{bottom:203.850390px;}
.y344_c00001{bottom:203.939850px;}
.y26f_c00001{bottom:204.045450px;}
.y27b_c00001{bottom:204.046500px;}
.y287_c00001{bottom:204.047400px;}
.y293_c00001{bottom:204.048300px;}
.y29f_c00001{bottom:204.049200px;}
.y1bcf_c00001{bottom:204.325500px;}
.y1b5b_c00001{bottom:204.329550px;}
.y1b83_c00001{bottom:204.331560px;}
.y1ba2_c00001{bottom:204.331950px;}
.y1b6d_c00001{bottom:204.332550px;}
.y10d8_c00001{bottom:204.509160px;}
.yd2f_c00001{bottom:204.869220px;}
.ybbb_c00001{bottom:205.104420px;}
.yb59_c00001{bottom:205.107150px;}
.yb97_c00001{bottom:205.108170px;}
.yb3c_c00001{bottom:205.110000px;}
.y104a_c00001{bottom:205.290000px;}
.y928_c00001{bottom:205.590000px;}
.y842_c00001{bottom:205.590150px;}
.y1189_c00001{bottom:205.648770px;}
.y1a26_c00001{bottom:205.649250px;}
.y124d_c00001{bottom:205.649370px;}
.y113a_c00001{bottom:205.653000px;}
.y1a74_c00001{bottom:205.654125px;}
.y11ab_c00001{bottom:205.706670px;}
.y1229_c00001{bottom:205.706970px;}
.y1273_c00001{bottom:205.707120px;}
.y1a95_c00001{bottom:205.711575px;}
.ycda_c00001{bottom:205.771605px;}
.y1e11_c00001{bottom:205.955010px;}
.y1d8e_c00001{bottom:205.956210px;}
.y1eb4_c00001{bottom:205.957410px;}
.y107a_c00001{bottom:205.958010px;}
.y65a_c00001{bottom:206.130000px;}
.y2f5_c00001{bottom:206.310750px;}
.y21e_c00001{bottom:206.356050px;}
.y17d8_c00001{bottom:206.373615px;}
.y148f_c00001{bottom:206.374065px;}
.y1798_c00001{bottom:206.374665px;}
.y14bc_c00001{bottom:206.375115px;}
.y16fa_c00001{bottom:206.376165px;}
.y1f50_c00001{bottom:206.492580px;}
.y765_c00001{bottom:207.211050px;}
.y355_c00001{bottom:207.614850px;}
.y35c_c00001{bottom:207.615150px;}
.y368_c00001{bottom:207.615450px;}
.y361_c00001{bottom:207.615600px;}
.y371_c00001{bottom:207.615900px;}
.yb7b_c00001{bottom:207.811620px;}
.y900_c00001{bottom:208.290150px;}
.y5d_c00001{bottom:208.321500px;}
.y115e_c00001{bottom:208.408755px;}
.y1a49_c00001{bottom:208.412925px;}
.y1d50_c00001{bottom:208.585425px;}
.y1cd7_c00001{bottom:208.586475px;}
.y2ad_c00001{bottom:209.010150px;}
.y1cc0_c00001{bottom:209.069925px;}
.y9cf_c00001{bottom:209.189250px;}
.y8a5_c00001{bottom:209.190000px;}
.y2c8_c00001{bottom:209.340000px;}
.y18cf_c00001{bottom:209.374620px;}
.y19cf_c00001{bottom:209.549070px;}
.y1256_c00001{bottom:209.608020px;}
.y1905_c00001{bottom:209.793570px;}
.y192d_c00001{bottom:209.793720px;}
.y1979_c00001{bottom:209.796120px;}
.y1ee5_c00001{bottom:209.912850px;}
.y328_c00001{bottom:210.090450px;}
.yb15_c00001{bottom:210.150450px;}
.y25a_c00001{bottom:210.210750px;}
.y8c5_c00001{bottom:210.268200px;}
.y63e_c00001{bottom:210.270000px;}
.y1d0d_c00001{bottom:210.330720px;}
.y1020_c00001{bottom:210.331305px;}
.yf93_c00001{bottom:210.331455px;}
.y1e71_c00001{bottom:210.333405px;}
.yfdd_c00001{bottom:210.334005px;}
.y1dda_c00001{bottom:210.334455px;}
.yef4_c00001{bottom:210.335205px;}
.y1e43_c00001{bottom:210.335805px;}
.y1af2_c00001{bottom:210.386160px;}
.y1b2a_c00001{bottom:210.386475px;}
.y1afd_c00001{bottom:210.386550px;}
.y1b49_c00001{bottom:210.387675px;}
.ya8b_c00001{bottom:210.628230px;}
.ya28_c00001{bottom:210.628650px;}
.ya15_c00001{bottom:210.628950px;}
.ya4a_c00001{bottom:210.629505px;}
.ya6b_c00001{bottom:210.629940px;}
.y8e5_c00001{bottom:210.990300px;}
.y89d_c00001{bottom:211.348950px;}
.y69d_c00001{bottom:211.531350px;}
.y217_c00001{bottom:211.604700px;}
.y18a6_c00001{bottom:212.254740px;}
.y1ae7_c00001{bottom:212.366985px;}
.y180b_c00001{bottom:212.546910px;}
.y16d9_c00001{bottom:212.548230px;}
.y1559_c00001{bottom:212.548980px;}
.y1372_c00001{bottom:212.549430px;}
.y18ef_c00001{bottom:212.549580px;}
.y17c2_c00001{bottom:212.550180px;}
.y1317_c00001{bottom:212.550300px;}
.y1630_c00001{bottom:212.551680px;}
.y12c3_c00001{bottom:212.728815px;}
.y151e_c00001{bottom:212.793855px;}
.y1588_c00001{bottom:212.795790px;}
.y1749_c00001{bottom:212.797035px;}
.y15d1_c00001{bottom:212.797290px;}
.y886_c00001{bottom:212.970000px;}
.y1b0a_c00001{bottom:213.087510px;}
.y71b_c00001{bottom:213.148500px;}
.y61a_c00001{bottom:213.150000px;}
.y10b7_c00001{bottom:213.266400px;}
.y109e_c00001{bottom:213.266655px;}
.y10f9_c00001{bottom:213.267150px;}
.y1113_c00001{bottom:213.267390px;}
.y1f1e_c00001{bottom:213.333390px;}
.y1c54_c00001{bottom:213.334020px;}
.y7c1_c00001{bottom:214.230000px;}
.y471_c00001{bottom:214.590000px;}
.y6f0_c00001{bottom:214.769850px;}
.y1203_c00001{bottom:215.246175px;}
.y11ed_c00001{bottom:215.246265px;}
.y17e9_c00001{bottom:215.311470px;}
.y1350_c00001{bottom:215.311530px;}
.y10d7_c00001{bottom:215.967165px;}
.y741_c00001{bottom:216.028650px;}
.y81e_c00001{bottom:216.030000px;}
.y4f4_c00001{bottom:216.046350px;}
.y1601_c00001{bottom:216.213360px;}
.y1658_c00001{bottom:216.213375px;}
.y16a8_c00001{bottom:216.213660px;}
.y1429_c00001{bottom:216.215025px;}
.y1754_c00001{bottom:216.215460px;}
.y171c_c00001{bottom:216.217425px;}
.y96a_c00001{bottom:216.569700px;}
.y1247_c00001{bottom:216.989880px;}
.yf3f_c00001{bottom:217.169925px;}
.y13e_c00001{bottom:217.439700px;}
.ydef_c00001{bottom:217.588455px;}
.yd9d_c00001{bottom:217.589880px;}
.ye10_c00001{bottom:217.590705px;}
.ydb9_c00001{bottom:217.590750px;}
.y1c8c_c00001{bottom:217.591155px;}
.ye3c_c00001{bottom:217.591305px;}
.y6c9_c00001{bottom:217.650000px;}
.y99c_c00001{bottom:217.829400px;}
.yd2e_c00001{bottom:217.829565px;}
.y860_c00001{bottom:218.189250px;}
.y3a5_c00001{bottom:218.190000px;}
.y1a08_c00001{bottom:218.367090px;}
.y19ef_c00001{bottom:218.369175px;}
.y19b0_c00001{bottom:218.369550px;}
.y9e_c00001{bottom:218.445000px;}
.y5cf_c00001{bottom:218.550150px;}
.y12b_c00001{bottom:218.595000px;}
.y158_c00001{bottom:219.089850px;}
.y17d_c00001{bottom:219.090600px;}
.ycd9_c00001{bottom:219.091725px;}
.y1998_c00001{bottom:219.566790px;}
.y17d7_c00001{bottom:219.634545px;}
.y148e_c00001{bottom:219.634995px;}
.y1797_c00001{bottom:219.635595px;}
.y14bb_c00001{bottom:219.636045px;}
.y16f9_c00001{bottom:219.637095px;}
.y1f4f_c00001{bottom:219.812700px;}
.yc74_c00001{bottom:219.985365px;}
.yc49_c00001{bottom:219.987165px;}
.yc1a_c00001{bottom:219.989805px;}
.ybeb_c00001{bottom:219.990000px;}
.y7f9_c00001{bottom:220.170000px;}
.y1d0c_c00001{bottom:220.230720px;}
.y101f_c00001{bottom:220.231305px;}
.yf92_c00001{bottom:220.231455px;}
.y1e70_c00001{bottom:220.233405px;}
.yfdc_c00001{bottom:220.234005px;}
.y1e10_c00001{bottom:220.234305px;}
.y1dd9_c00001{bottom:220.234455px;}
.yef3_c00001{bottom:220.235205px;}
.y1d8d_c00001{bottom:220.235505px;}
.y1e42_c00001{bottom:220.235805px;}
.y1eb3_c00001{bottom:220.236705px;}
.y1079_c00001{bottom:220.237305px;}
.y798_c00001{bottom:220.468050px;}
.y1bce_c00001{bottom:220.525500px;}
.y1b5a_c00001{bottom:220.529550px;}
.y1ba1_c00001{bottom:220.530150px;}
.yf22_c00001{bottom:220.711500px;}
.y510_c00001{bottom:220.890000px;}
.y19ce_c00001{bottom:221.069190px;}
.y128_c00001{bottom:221.070000px;}
.yb58_c00001{bottom:221.307150px;}
.yb96_c00001{bottom:221.308170px;}
.yb3b_c00001{bottom:221.310000px;}
.ybba_c00001{bottom:221.363070px;}
.y115d_c00001{bottom:221.368515px;}
.y1a48_c00001{bottom:221.372685px;}
.y1766_c00001{bottom:221.544300px;}
.y12e2_c00001{bottom:221.545500px;}
.y1950_c00001{bottom:221.547000px;}
.y1782_c00001{bottom:221.547600px;}
.y128d_c00001{bottom:221.547960px;}
.y12a4_c00001{bottom:221.548500px;}
.y12fc_c00001{bottom:221.550450px;}
.y1b82_c00001{bottom:221.791860px;}
.y1d4f_c00001{bottom:221.905545px;}
.y1cd6_c00001{bottom:221.906595px;}
.y1e8d_c00001{bottom:221.906730px;}
.y1c70_c00001{bottom:221.907780px;}
.yaf_c00001{bottom:222.300150px;}
.yb9_c00001{bottom:222.300450px;}
.yce3_c00001{bottom:222.566925px;}
.y18ce_c00001{bottom:222.694740px;}
.y97b_c00001{bottom:222.868950px;}
.yb14_c00001{bottom:223.231500px;}
.y1ee4_c00001{bottom:223.232970px;}
.yb7a_c00001{bottom:224.070270px;}
.y1904_c00001{bottom:224.072865px;}
.y192c_c00001{bottom:224.073015px;}
.y1978_c00001{bottom:224.075415px;}
.y78f_c00001{bottom:224.127390px;}
.y12c2_c00001{bottom:224.248935px;}
.y674_c00001{bottom:224.670000px;}
.y2ce_c00001{bottom:225.075150px;}
.y18a5_c00001{bottom:225.574275px;}
.y1ae6_c00001{bottom:225.687105px;}
.y1b09_c00001{bottom:226.047270px;}
.y151d_c00001{bottom:226.113975px;}
.y1587_c00001{bottom:226.115325px;}
.y1748_c00001{bottom:226.116570px;}
.y15d0_c00001{bottom:226.117410px;}
.ycfb_c00001{bottom:226.585650px;}
.yd11_c00001{bottom:226.586550px;}
.yd4c_c00001{bottom:226.587375px;}
.yd6a_c00001{bottom:226.588875px;}
.y1cf0_c00001{bottom:226.589475px;}
.ya27_c00001{bottom:226.828650px;}
.ya14_c00001{bottom:226.828950px;}
.ya6a_c00001{bottom:226.829940px;}
.ya8a_c00001{bottom:226.887930px;}
.ya49_c00001{bottom:226.888755px;}
.y18a_c00001{bottom:226.950300px;}
.ycc_c00001{bottom:227.085000px;}
.y132_c00001{bottom:227.550750px;}
.y1f1d_c00001{bottom:227.610930px;}
.y1c53_c00001{bottom:227.613315px;}
.y2d4_c00001{bottom:228.210150px;}
.y2da_c00001{bottom:228.210600px;}
.y2e0_c00001{bottom:228.211050px;}
.y2e6_c00001{bottom:228.211500px;}
.y5c_c00001{bottom:228.301500px;}
.y1202_c00001{bottom:228.566295px;}
.y11ec_c00001{bottom:228.566385px;}
.y1a4_c00001{bottom:228.751050px;}
.y1be_c00001{bottom:228.752400px;}
.y1d8_c00001{bottom:228.753750px;}
.y1f2_c00001{bottom:228.755100px;}
.y1837_c00001{bottom:228.806160px;}
.y16d8_c00001{bottom:228.807480px;}
.y1558_c00001{bottom:228.808230px;}
.y139f_c00001{bottom:228.808680px;}
.y18ee_c00001{bottom:228.808830px;}
.y180a_c00001{bottom:228.809010px;}
.y17c1_c00001{bottom:228.809430px;}
.y1371_c00001{bottom:228.810330px;}
.y162f_c00001{bottom:228.810930px;}
.y134f_c00001{bottom:228.811530px;}
.y1316_c00001{bottom:228.812400px;}
.y10d6_c00001{bottom:228.926925px;}
.yd2d_c00001{bottom:229.287570px;}
.y1600_c00001{bottom:229.532895px;}
.y16a7_c00001{bottom:229.533195px;}
.y1657_c00001{bottom:229.533495px;}
.y1753_c00001{bottom:229.534995px;}
.y1428_c00001{bottom:229.535145px;}
.y171b_c00001{bottom:229.537545px;}
.y15_c00001{bottom:229.561500px;}
.y11aa_c00001{bottom:230.127420px;}
.y1272_c00001{bottom:230.127870px;}
.y1228_c00001{bottom:230.128320px;}
.y1188_c00001{bottom:230.128620px;}
.y1a25_c00001{bottom:230.129700px;}
.y101e_c00001{bottom:230.131305px;}
.yf91_c00001{bottom:230.131455px;}
.y1a94_c00001{bottom:230.132325px;}
.y1139_c00001{bottom:230.132850px;}
.y1e6f_c00001{bottom:230.133405px;}
.y1a73_c00001{bottom:230.133975px;}
.yfdb_c00001{bottom:230.134005px;}
.y1e0f_c00001{bottom:230.134305px;}
.y1dd8_c00001{bottom:230.134455px;}
.yef2_c00001{bottom:230.135205px;}
.y1d8c_c00001{bottom:230.135505px;}
.y1e41_c00001{bottom:230.135805px;}
.y1eb2_c00001{bottom:230.136705px;}
.y1078_c00001{bottom:230.137305px;}
.y5e1_c00001{bottom:230.220000px;}
.y1246_c00001{bottom:230.309415px;}
.y589_c00001{bottom:231.150000px;}
.yde_c00001{bottom:231.194850px;}
.ye3_c00001{bottom:231.195000px;}
.yec_c00001{bottom:231.195750px;}
.yf6_c00001{bottom:231.195900px;}
.y100_c00001{bottom:231.196050px;}
.y10a_c00001{bottom:231.196650px;}
.y17e8_c00001{bottom:231.511470px;}
.y1d22_c00001{bottom:231.871500px;}
.y2f8_c00001{bottom:231.915750px;}
.y221_c00001{bottom:231.945750px;}
.y115c_c00001{bottom:232.829460px;}
.y1a47_c00001{bottom:232.833630px;}
.y549_c00001{bottom:233.130000px;}
.yb13_c00001{bottom:233.131500px;}
.y1f4e_c00001{bottom:233.132820px;}
.y4f3_c00001{bottom:233.326200px;}
.y574_c00001{bottom:233.490000px;}
.y2a_c00001{bottom:233.521500px;}
.y841_c00001{bottom:233.670000px;}
.y69c_c00001{bottom:233.671050px;}
.yd9c_c00001{bottom:233.789880px;}
.ye0f_c00001{bottom:233.790705px;}
.ydb8_c00001{bottom:233.790750px;}
.y1c8b_c00001{bottom:233.791155px;}
.ye3b_c00001{bottom:233.791305px;}
.y1903_c00001{bottom:233.913690px;}
.y17d6_c00001{bottom:233.913840px;}
.y148d_c00001{bottom:233.914290px;}
.y1796_c00001{bottom:233.914890px;}
.y14ba_c00001{bottom:233.915340px;}
.y1977_c00001{bottom:233.916240px;}
.y16f8_c00001{bottom:233.916390px;}
.y19cd_c00001{bottom:234.029535px;}
.y885_c00001{bottom:234.029700px;}
.y1255_c00001{bottom:234.029970px;}
.y14d3_c00001{bottom:234.031500px;}
.y1b29_c00001{bottom:234.807225px;}
.y1afc_c00001{bottom:234.807300px;}
.y1b48_c00001{bottom:234.867525px;}
.ydee_c00001{bottom:235.048155px;}
.y764_c00001{bottom:235.111650px;}
.y1d4e_c00001{bottom:235.223910px;}
.y1cd5_c00001{bottom:235.224960px;}
.y1e8c_c00001{bottom:235.225095px;}
.y1c6f_c00001{bottom:235.226145px;}
.y1cbf_c00001{bottom:235.530225px;}
.y18cd_c00001{bottom:236.014860px;}
.y1af1_c00001{bottom:236.068410px;}
.yc73_c00001{bottom:236.185365px;}
.yc48_c00001{bottom:236.187765px;}
.y7c0_c00001{bottom:236.190000px;}
.yc19_c00001{bottom:236.190405px;}
.y71a_c00001{bottom:236.369850px;}
.y949_c00001{bottom:236.547900px;}
.y1b59_c00001{bottom:236.729550px;}
.y1ba0_c00001{bottom:236.730150px;}
.y1b6c_c00001{bottom:236.732550px;}
.y1bcd_c00001{bottom:236.787600px;}
.y1b81_c00001{bottom:236.790690px;}
.y12c1_c00001{bottom:237.208695px;}
.y5ce_c00001{bottom:237.450150px;}
.y1f1c_c00001{bottom:237.510930px;}
.y1ee3_c00001{bottom:237.512265px;}
.y1c52_c00001{bottom:237.513315px;}
.ybb9_c00001{bottom:237.563670px;}
.yb57_c00001{bottom:237.566400px;}
.y1b08_c00001{bottom:237.567390px;}
.yb95_c00001{bottom:237.567420px;}
.yb3a_c00001{bottom:237.569700px;}
.y32b_c00001{bottom:237.600300px;}
.y25d_c00001{bottom:237.676050px;}
.y10b6_c00001{bottom:237.746250px;}
.y10f8_c00001{bottom:237.747000px;}
.y1112_c00001{bottom:237.747240px;}
.y18a4_c00001{bottom:238.894395px;}
.y109d_c00001{bottom:239.008005px;}
.y8ff_c00001{bottom:239.249850px;}
.y2b7_c00001{bottom:239.369700px;}
.y151c_c00001{bottom:239.434095px;}
.y1586_c00001{bottom:239.435445px;}
.y1747_c00001{bottom:239.436690px;}
.y15cf_c00001{bottom:239.436945px;}
.y4e8_c00001{bottom:239.610000px;}
.y6ef_c00001{bottom:239.969850px;}
.y101d_c00001{bottom:239.972130px;}
.yf90_c00001{bottom:239.972280px;}
.y1e6e_c00001{bottom:239.974230px;}
.yfda_c00001{bottom:239.974830px;}
.y1e0e_c00001{bottom:239.975130px;}
.y1dd7_c00001{bottom:239.975280px;}
.yef1_c00001{bottom:239.976030px;}
.y1d8b_c00001{bottom:239.976330px;}
.y1e40_c00001{bottom:239.976630px;}
.y1eb1_c00001{bottom:239.977530px;}
.y1077_c00001{bottom:239.978130px;}
.y9ce_c00001{bottom:240.149550px;}
.yb79_c00001{bottom:240.270270px;}
.y8a4_c00001{bottom:240.328622px;}
.y969_c00001{bottom:240.329400px;}
.y10d5_c00001{bottom:240.447045px;}
.y8c4_c00001{bottom:241.408500px;}
.y1201_c00001{bottom:241.886415px;}
.y11eb_c00001{bottom:241.886505px;}
.y611_c00001{bottom:241.950000px;}
.y8e4_c00001{bottom:241.950600px;}
.y13f_c00001{bottom:242.130000px;}
.yd2c_c00001{bottom:242.247330px;}
.y2c4_c00001{bottom:242.744550px;}
.y2be_c00001{bottom:242.744850px;}
.y1a07_c00001{bottom:242.784840px;}
.y19ee_c00001{bottom:242.786925px;}
.y19af_c00001{bottom:242.787900px;}
.ya26_c00001{bottom:243.087900px;}
.ya89_c00001{bottom:243.087930px;}
.ya13_c00001{bottom:243.088650px;}
.ya48_c00001{bottom:243.088755px;}
.ya69_c00001{bottom:243.089640px;}
.y1245_c00001{bottom:243.629535px;}
.yf3e_c00001{bottom:243.630225px;}
.y159_c00001{bottom:243.750150px;}
.y170_c00001{bottom:243.750750px;}
.y15ff_c00001{bottom:243.812190px;}
.y16a6_c00001{bottom:243.812490px;}
.y1656_c00001{bottom:243.812790px;}
.y1902_c00001{bottom:243.813690px;}
.y17d5_c00001{bottom:243.813840px;}
.y148c_c00001{bottom:243.814290px;}
.y1427_c00001{bottom:243.814440px;}
.y1795_c00001{bottom:243.814890px;}
.y14b9_c00001{bottom:243.815340px;}
.y1976_c00001{bottom:243.816240px;}
.y16f7_c00001{bottom:243.816390px;}
.y171a_c00001{bottom:243.816840px;}
.y6c8_c00001{bottom:243.930000px;}
.y1997_c00001{bottom:244.046640px;}
.y81c_c00001{bottom:244.110000px;}
.y30b_c00001{bottom:244.589850px;}
.y31c_c00001{bottom:244.591050px;}
.y235_c00001{bottom:244.619700px;}
.y23f_c00001{bottom:244.620150px;}
.y248_c00001{bottom:244.620600px;}
.y1836_c00001{bottom:245.006160px;}
.y16d7_c00001{bottom:245.007480px;}
.y1557_c00001{bottom:245.008230px;}
.y139e_c00001{bottom:245.008680px;}
.y18ed_c00001{bottom:245.008830px;}
.y1809_c00001{bottom:245.009010px;}
.y17c0_c00001{bottom:245.009430px;}
.y1370_c00001{bottom:245.010330px;}
.y162e_c00001{bottom:245.010930px;}
.y17e7_c00001{bottom:245.011470px;}
.y1315_c00001{bottom:245.012400px;}
.yb21_c00001{bottom:245.205000px;}
.y19cc_c00001{bottom:245.487540px;}
.ycd8_c00001{bottom:245.732025px;}
.y115b_c00001{bottom:245.789805px;}
.y1a46_c00001{bottom:245.793975px;}
.y194f_c00001{bottom:245.965350px;}
.y1765_c00001{bottom:245.965650px;}
.y1781_c00001{bottom:245.965950px;}
.y12e1_c00001{bottom:245.966850px;}
.y128c_c00001{bottom:245.968710px;}
.y12fb_c00001{bottom:245.968800px;}
.y12a3_c00001{bottom:245.969250px;}
.y85f_c00001{bottom:246.089250px;}
.yb12_c00001{bottom:246.150705px;}
.y134e_c00001{bottom:246.271230px;}
.y77c_c00001{bottom:247.169550px;}
.y1d06_c00001{bottom:247.287000px;}
.y1f1b_c00001{bottom:247.410930px;}
.y1f4d_c00001{bottom:247.412115px;}
.y1ee2_c00001{bottom:247.412265px;}
.y1c51_c00001{bottom:247.413315px;}
.y7f8_c00001{bottom:248.250000px;}
.y5b_c00001{bottom:248.281500px;}
.y1d4d_c00001{bottom:248.544030px;}
.y1cd4_c00001{bottom:248.545080px;}
.y1e8b_c00001{bottom:248.545215px;}
.y1c6e_c00001{bottom:248.546265px;}
.y12c0_c00001{bottom:248.728815px;}
.y99b_c00001{bottom:248.789700px;}
.y1cbe_c00001{bottom:248.849760px;}
.y5e0_c00001{bottom:248.940150px;}
.y18cc_c00001{bottom:249.334395px;}
.y14_c00001{bottom:249.361500px;}
.y561_c00001{bottom:249.690000px;}
.yb1f_c00001{bottom:249.840000px;}
.y182_c00001{bottom:249.870300px;}
.yded_c00001{bottom:249.989565px;}
.yd9b_c00001{bottom:249.989880px;}
.y33b_c00001{bottom:250.410000px;}
.y270_c00001{bottom:250.485750px;}
.y27c_c00001{bottom:250.486200px;}
.y288_c00001{bottom:250.487100px;}
.y294_c00001{bottom:250.488000px;}
.y2a0_c00001{bottom:250.488900px;}
.y1b07_c00001{bottom:250.527150px;}
.y4f2_c00001{bottom:250.606050px;}
.y448_c00001{bottom:250.770000px;}
.y2f7_c00001{bottom:250.890750px;}
.y220_c00001{bottom:250.921350px;}
.yd10_c00001{bottom:251.066400px;}
.yd4b_c00001{bottom:251.067225px;}
.yd69_c00001{bottom:251.068125px;}
.y1cef_c00001{bottom:251.069325px;}
.y5c4_c00001{bottom:252.030000px;}
.y18a3_c00001{bottom:252.213930px;}
.y1ae5_c00001{bottom:252.326805px;}
.ycfa_c00001{bottom:252.327000px;}
.yc72_c00001{bottom:252.445065px;}
.yc47_c00001{bottom:252.447015px;}
.ybea_c00001{bottom:252.449250px;}
.yc18_c00001{bottom:252.449655px;}
.y1bcc_c00001{bottom:252.987600px;}
.y1b58_c00001{bottom:252.988800px;}
.y1b9f_c00001{bottom:252.989400px;}
.y1b6b_c00001{bottom:252.991800px;}
.y29_c00001{bottom:253.321500px;}
.y10d4_c00001{bottom:253.407390px;}
.y15fe_c00001{bottom:253.712190px;}
.y16a5_c00001{bottom:253.712490px;}
.y1655_c00001{bottom:253.712790px;}
.y151b_c00001{bottom:253.713390px;}
.y1901_c00001{bottom:253.713690px;}
.y17d4_c00001{bottom:253.713840px;}
.y148b_c00001{bottom:253.714290px;}
.y1426_c00001{bottom:253.714440px;}
.y1585_c00001{bottom:253.714740px;}
.y1794_c00001{bottom:253.714890px;}
.y14b8_c00001{bottom:253.715340px;}
.y15ce_c00001{bottom:253.716240px;}
.y16f6_c00001{bottom:253.716390px;}
.y1719_c00001{bottom:253.716840px;}
.y1746_c00001{bottom:253.717155px;}
.ybb8_c00001{bottom:253.763670px;}
.yb56_c00001{bottom:253.766400px;}
.yb94_c00001{bottom:253.767420px;}
.yd2b_c00001{bottom:253.768035px;}
.yb39_c00001{bottom:253.769700px;}
.y97a_c00001{bottom:253.829250px;}
.y18b_c00001{bottom:253.830150px;}
.ye20_c00001{bottom:253.949655px;}
.y1b80_c00001{bottom:254.250990px;}
.y11a9_c00001{bottom:254.607270px;}
.y1271_c00001{bottom:254.607720px;}
.y1227_c00001{bottom:254.608170px;}
.y1187_c00001{bottom:254.608470px;}
.y1a24_c00001{bottom:254.610150px;}
.y1a93_c00001{bottom:254.612175px;}
.y1138_c00001{bottom:254.612700px;}
.y1a72_c00001{bottom:254.613825px;}
.y884_c00001{bottom:255.090000px;}
.y1200_c00001{bottom:255.206535px;}
.y69b_c00001{bottom:255.631350px;}
.y1a5_c00001{bottom:255.676050px;}
.y1bf_c00001{bottom:255.677400px;}
.y1d9_c00001{bottom:255.678750px;}
.y1f3_c00001{bottom:255.680100px;}
.y740_c00001{bottom:256.168950px;}
.y5cd_c00001{bottom:256.350150px;}
.yb78_c00001{bottom:256.470270px;}
.y32a_c00001{bottom:256.575300px;}
.y25c_c00001{bottom:256.651050px;}
.ye6f_c00001{bottom:256.769190px;}
.y719_c00001{bottom:256.890000px;}
.y1244_c00001{bottom:256.949655px;}
.yf3d_c00001{bottom:256.949760px;}
.y1f1a_c00001{bottom:257.252340px;}
.y1f4c_c00001{bottom:257.252940px;}
.y1ee1_c00001{bottom:257.253090px;}
.y1c50_c00001{bottom:257.254140px;}
.y115a_c00001{bottom:257.309340px;}
.y1a45_c00001{bottom:257.314095px;}
.y1996_c00001{bottom:258.986880px;}
.y19ed_c00001{bottom:258.986925px;}
.y19ae_c00001{bottom:258.987900px;}
.y1a06_c00001{bottom:259.048140px;}
.ycd7_c00001{bottom:259.052145px;}
.y1b47_c00001{bottom:259.285875px;}
.y1afb_c00001{bottom:259.287150px;}
.y1b28_c00001{bottom:259.287675px;}
.ya25_c00001{bottom:259.287900px;}
.ya88_c00001{bottom:259.287930px;}
.ya12_c00001{bottom:259.288650px;}
.ya47_c00001{bottom:259.288755px;}
.ya68_c00001{bottom:259.289640px;}
.y924_c00001{bottom:259.590000px;}
.y799_c00001{bottom:259.887600px;}
.yeab_c00001{bottom:260.071680px;}
.y1af0_c00001{bottom:260.548260px;}
.y1f35_c00001{bottom:260.607000px;}
.y1835_c00001{bottom:261.206160px;}
.y16d6_c00001{bottom:261.208080px;}
.y1556_c00001{bottom:261.208230px;}
.y139d_c00001{bottom:261.208680px;}
.y18ec_c00001{bottom:261.208830px;}
.y1808_c00001{bottom:261.209010px;}
.y17bf_c00001{bottom:261.209430px;}
.y136f_c00001{bottom:261.210330px;}
.y162d_c00001{bottom:261.210930px;}
.y134d_c00001{bottom:261.211470px;}
.y1314_c00001{bottom:261.212400px;}
.y840_c00001{bottom:261.570300px;}
.y12bf_c00001{bottom:261.689160px;}
.y19cb_c00001{bottom:261.749640px;}
.y1d4c_c00001{bottom:261.864150px;}
.y1cd3_c00001{bottom:261.865200px;}
.y1e8a_c00001{bottom:261.865335px;}
.y1c6d_c00001{bottom:261.866385px;}
.y1b06_c00001{bottom:261.988680px;}
.ya0_c00001{bottom:262.079700px;}
.y10b5_c00001{bottom:262.167600px;}
.y10f7_c00001{bottom:262.168350px;}
.y1cbd_c00001{bottom:262.169880px;}
.y1111_c00001{bottom:262.227690px;}
.y9ef_c00001{bottom:262.468800px;}
.y17e6_c00001{bottom:262.471170px;}
.y793_c00001{bottom:262.544700px;}
.y763_c00001{bottom:263.191500px;}
.y109c_c00001{bottom:263.428755px;}
.y15fd_c00001{bottom:263.612190px;}
.y16a4_c00001{bottom:263.612490px;}
.y1654_c00001{bottom:263.612790px;}
.y151a_c00001{bottom:263.613390px;}
.y18cb_c00001{bottom:263.613690px;}
.y17d3_c00001{bottom:263.613840px;}
.y148a_c00001{bottom:263.614290px;}
.y1425_c00001{bottom:263.614440px;}
.y1584_c00001{bottom:263.614740px;}
.y1793_c00001{bottom:263.614890px;}
.y14b7_c00001{bottom:263.615340px;}
.y15cd_c00001{bottom:263.616240px;}
.y16f5_c00001{bottom:263.616390px;}
.y1718_c00001{bottom:263.616840px;}
.y1745_c00001{bottom:263.617155px;}
.y968_c00001{bottom:264.269700px;}
.y7bf_c00001{bottom:264.269850px;}
.y3cf_c00001{bottom:264.270000px;}
.y10d3_c00001{bottom:264.926925px;}
.y78e_c00001{bottom:264.987690px;}
.y6ee_c00001{bottom:265.349100px;}
.y18a2_c00001{bottom:265.534050px;}
.y1ae4_c00001{bottom:265.646925px;}
.y5df_c00001{bottom:266.040150px;}
.yd9a_c00001{bottom:266.189880px;}
.ye22_c00001{bottom:266.190405px;}
.ydb7_c00001{bottom:266.190750px;}
.y791_c00001{bottom:266.220000px;}
.y1c8a_c00001{bottom:266.250405px;}
.ye3a_c00001{bottom:266.250555px;}
.ydec_c00001{bottom:266.251665px;}
.y131_c00001{bottom:266.430600px;}
.yd2a_c00001{bottom:266.727795px;}
.y140_c00001{bottom:266.834850px;}
.y1f19_c00001{bottom:267.152340px;}
.y1f4b_c00001{bottom:267.152940px;}
.y1ee0_c00001{bottom:267.153090px;}
.y1c4f_c00001{bottom:267.154140px;}
.y4f1_c00001{bottom:267.886500px;}
.yc17_c00001{bottom:268.109955px;}
.y39e_c00001{bottom:268.230000px;}
.y5a_c00001{bottom:268.261500px;}
.y15a_c00001{bottom:268.455000px;}
.y171_c00001{bottom:268.455600px;}
.y17e_c00001{bottom:268.456350px;}
.y11ff_c00001{bottom:268.526070px;}
.y11ea_c00001{bottom:268.526805px;}
.ye8a_c00001{bottom:268.830750px;}
.yff3_c00001{bottom:268.832130px;}
.yf67_c00001{bottom:268.833330px;}
.y1d67_c00001{bottom:268.834530px;}
.yfb6_c00001{bottom:268.835130px;}
.yec9_c00001{bottom:268.835730px;}
.y1052_c00001{bottom:268.836330px;}
.y2cf_c00001{bottom:268.844700px;}
.y1d0b_c00001{bottom:268.892880px;}
.yf8f_c00001{bottom:268.893030px;}
.y101c_c00001{bottom:268.893480px;}
.y1e6d_c00001{bottom:268.894980px;}
.yfd9_c00001{bottom:268.895580px;}
.y1dd6_c00001{bottom:268.896030px;}
.y1e0d_c00001{bottom:268.896480px;}
.yef0_c00001{bottom:268.896780px;}
.y1e3f_c00001{bottom:268.897380px;}
.y1d8a_c00001{bottom:268.897680px;}
.y1eb0_c00001{bottom:268.898880px;}
.y1076_c00001{bottom:268.899480px;}
.y13_c00001{bottom:269.161500px;}
.y1b57_c00001{bottom:269.188800px;}
.y1b7f_c00001{bottom:269.190645px;}
.ybb7_c00001{bottom:269.966070px;}
.yb55_c00001{bottom:269.966400px;}
.yb93_c00001{bottom:269.967420px;}
.yb38_c00001{bottom:269.969700px;}
.yb77_c00001{bottom:269.970270px;}
.ye6e_c00001{bottom:270.089310px;}
.ye1f_c00001{bottom:270.149655px;}
.y6c7_c00001{bottom:270.210000px;}
.y1159_c00001{bottom:270.269685px;}
.yf3c_c00001{bottom:270.269880px;}
.y1a44_c00001{bottom:270.273855px;}
.y8fe_c00001{bottom:270.390150px;}
.y1780_c00001{bottom:270.445200px;}
.y1764_c00001{bottom:270.445500px;}
.y12e0_c00001{bottom:270.446700px;}
.y12fa_c00001{bottom:270.448050px;}
.y12a2_c00001{bottom:270.449100px;}
.y181_c00001{bottom:270.930000px;}
.y8a3_c00001{bottom:271.287150px;}
.y9cd_c00001{bottom:271.289250px;}
.yeaa_c00001{bottom:271.591800px;}
.y128b_c00001{bottom:271.709010px;}
.y11c_c00001{bottom:271.830750px;}
.y2d5_c00001{bottom:271.980300px;}
.y2db_c00001{bottom:271.980750px;}
.y2e1_c00001{bottom:271.981200px;}
.y2e7_c00001{bottom:271.981650px;}
.y2ee_c00001{bottom:271.982250px;}
.y8c3_c00001{bottom:272.368200px;}
.yff9_c00001{bottom:272.792880px;}
.yf6d_c00001{bottom:272.794080px;}
.y1d6d_c00001{bottom:272.795280px;}
.yfbc_c00001{bottom:272.795880px;}
.yecf_c00001{bottom:272.796480px;}
.y1058_c00001{bottom:272.797080px;}
.y8e3_c00001{bottom:273.090300px;}
.y28_c00001{bottom:273.121500px;}
.y1bb1_c00001{bottom:273.148350px;}
.y12be_c00001{bottom:273.150105px;}
.y15fc_c00001{bottom:273.512190px;}
.y16a3_c00001{bottom:273.512490px;}
.y1653_c00001{bottom:273.512790px;}
.y1519_c00001{bottom:273.513390px;}
.y18ca_c00001{bottom:273.513690px;}
.y17d2_c00001{bottom:273.513840px;}
.y1489_c00001{bottom:273.514290px;}
.y1424_c00001{bottom:273.514440px;}
.y1583_c00001{bottom:273.514740px;}
.y1792_c00001{bottom:273.514890px;}
.y14b6_c00001{bottom:273.515340px;}
.y15cc_c00001{bottom:273.516240px;}
.y16f4_c00001{bottom:273.516390px;}
.y1717_c00001{bottom:273.516840px;}
.y1744_c00001{bottom:273.517155px;}
.yce_c00001{bottom:273.810000px;}
.y124_c00001{bottom:273.885000px;}
.y144f_c00001{bottom:273.927000px;}
.y85e_c00001{bottom:274.167900px;}
.yb11_c00001{bottom:274.351905px;}
.y1e89_c00001{bottom:275.185455px;}
.y1c6c_c00001{bottom:275.186505px;}
.y1a05_c00001{bottom:275.248140px;}
.y1995_c00001{bottom:275.248980px;}
.y19ec_c00001{bottom:275.249025px;}
.y19ad_c00001{bottom:275.250000px;}
.yb0_c00001{bottom:275.400150px;}
.yba_c00001{bottom:275.400450px;}
.y948_c00001{bottom:275.427750px;}
.y5cc_c00001{bottom:275.430000px;}
.y1b46_c00001{bottom:275.485875px;}
.yd68_c00001{bottom:275.486475px;}
.y1b27_c00001{bottom:275.487675px;}
.yd0f_c00001{bottom:275.487750px;}
.ya24_c00001{bottom:275.487900px;}
.ya87_c00001{bottom:275.487930px;}
.y1aef_c00001{bottom:275.488500px;}
.yd4a_c00001{bottom:275.488575px;}
.ya11_c00001{bottom:275.488650px;}
.ya46_c00001{bottom:275.488755px;}
.ya67_c00001{bottom:275.489640px;}
.y1cbc_c00001{bottom:275.490000px;}
.y7f7_c00001{bottom:276.149850px;}
.y499_c00001{bottom:276.150000px;}
.y656_c00001{bottom:276.330000px;}
.y2fa_c00001{bottom:276.481050px;}
.y223_c00001{bottom:276.481200px;}
.ycf9_c00001{bottom:276.747750px;}
.yc46_c00001{bottom:276.868365px;}
.ybe9_c00001{bottom:276.870600px;}
.y1807_c00001{bottom:277.409010px;}
.y136e_c00001{bottom:277.410330px;}
.y1313_c00001{bottom:277.412400px;}
.y1834_c00001{bottom:277.468260px;}
.y16d5_c00001{bottom:277.468980px;}
.y1555_c00001{bottom:277.469730px;}
.y139c_c00001{bottom:277.470180px;}
.y18eb_c00001{bottom:277.470330px;}
.y17be_c00001{bottom:277.470930px;}
.y17e5_c00001{bottom:277.471170px;}
.y162c_c00001{bottom:277.472430px;}
.y19ca_c00001{bottom:277.949640px;}
.yd29_c00001{bottom:278.247330px;}
.y10b4_c00001{bottom:278.426850px;}
.y10f6_c00001{bottom:278.427600px;}
.y1110_c00001{bottom:278.427690px;}
.y109b_c00001{bottom:278.428755px;}
.y718_c00001{bottom:278.490000px;}
.y134c_c00001{bottom:278.671170px;}
.y1226_c00001{bottom:279.028920px;}
.y1270_c00001{bottom:279.029070px;}
.y11a8_c00001{bottom:279.029220px;}
.y1186_c00001{bottom:279.030420px;}
.y1a23_c00001{bottom:279.030900px;}
.y1a92_c00001{bottom:279.033525px;}
.y1137_c00001{bottom:279.034050px;}
.y1a71_c00001{bottom:279.035175px;}
.y792_c00001{bottom:279.105000px;}
.yc16_c00001{bottom:279.570900px;}
.y18a1_c00001{bottom:279.813345px;}
.y99a_c00001{bottom:279.930000px;}
.y34f_c00001{bottom:280.440000px;}
.y63b_c00001{bottom:280.470000px;}
.y18c_c00001{bottom:280.770450px;}
.y9f_c00001{bottom:281.054700px;}
.y10d2_c00001{bottom:281.126925px;}
.y591_c00001{bottom:281.190000px;}
.y73f_c00001{bottom:281.593950px;}
.y1158_c00001{bottom:281.730630px;}
.y1a43_c00001{bottom:281.734800px;}
.y11e9_c00001{bottom:281.846925px;}
.ycd6_c00001{bottom:282.092445px;}
.ye21_c00001{bottom:282.449655px;}
.y1c89_c00001{bottom:282.450405px;}
.ye39_c00001{bottom:282.450555px;}
.yd99_c00001{bottom:282.451380px;}
.ydeb_c00001{bottom:282.451665px;}
.ydb6_c00001{bottom:282.452250px;}
.y1a6_c00001{bottom:282.571200px;}
.y1c0_c00001{bottom:282.572550px;}
.y1da_c00001{bottom:282.573900px;}
.y1f4_c00001{bottom:282.575250px;}
.y81b_c00001{bottom:283.214400px;}
.y548_c00001{bottom:283.215000px;}
.y15fb_c00001{bottom:283.353015px;}
.y16a2_c00001{bottom:283.353315px;}
.y1652_c00001{bottom:283.353615px;}
.y1518_c00001{bottom:283.354215px;}
.y18c9_c00001{bottom:283.354515px;}
.y17d1_c00001{bottom:283.354665px;}
.y1488_c00001{bottom:283.355115px;}
.y1423_c00001{bottom:283.355265px;}
.y1582_c00001{bottom:283.355565px;}
.y1791_c00001{bottom:283.355715px;}
.y14b5_c00001{bottom:283.356165px;}
.y15cb_c00001{bottom:283.357065px;}
.y16f3_c00001{bottom:283.357215px;}
.y1716_c00001{bottom:283.357665px;}
.y1743_c00001{bottom:283.358565px;}
.y5de_c00001{bottom:283.365150px;}
.y573_c00001{bottom:283.575000px;}
.y69a_c00001{bottom:283.575900px;}
.y1243_c00001{bottom:283.589955px;}
.yf3b_c00001{bottom:283.590000px;}
.y1c0a_c00001{bottom:283.592940px;}
.y32d_c00001{bottom:284.070450px;}
.y25f_c00001{bottom:284.115750px;}
.ye6d_c00001{bottom:284.908260px;}
.y979_c00001{bottom:285.013500px;}
.y1bb3_c00001{bottom:285.387450px;}
.y1bcb_c00001{bottom:285.387600px;}
.y1b56_c00001{bottom:285.388800px;}
.y1b7e_c00001{bottom:285.390645px;}
.y1b6a_c00001{bottom:285.391800px;}
.y12bd_c00001{bottom:286.109865px;}
.yb54_c00001{bottom:286.166400px;}
.yb92_c00001{bottom:286.167420px;}
.yb37_c00001{bottom:286.169700px;}
.ybb6_c00001{bottom:286.225320px;}
.y356_c00001{bottom:286.275150px;}
.y35d_c00001{bottom:286.275450px;}
.y36b_c00001{bottom:286.275900px;}
.y372_c00001{bottom:286.276200px;}
.ye1e_c00001{bottom:286.409355px;}
.y2b8_c00001{bottom:286.560000px;}
.yb10_c00001{bottom:287.130030px;}
.y1da7_c00001{bottom:287.247000px;}
.ye4_c00001{bottom:287.385300px;}
.yed_c00001{bottom:287.386050px;}
.yf7_c00001{bottom:287.386200px;}
.y101_c00001{bottom:287.386350px;}
.y10b_c00001{bottom:287.386950px;}
.y50f_c00001{bottom:287.715000px;}
.y967_c00001{bottom:288.074550px;}
.yea9_c00001{bottom:288.151500px;}
.y59_c00001{bottom:288.241500px;}
.y1d4b_c00001{bottom:288.445200px;}
.y1cd2_c00001{bottom:288.446250px;}
.y1e88_c00001{bottom:288.446385px;}
.y1c6b_c00001{bottom:288.447435px;}
.yb76_c00001{bottom:288.931770px;}
.y12_c00001{bottom:288.961500px;}
.y30c_c00001{bottom:289.155150px;}
.y315_c00001{bottom:289.155750px;}
.y31d_c00001{bottom:289.156350px;}
.y236_c00001{bottom:289.185000px;}
.y249_c00001{bottom:289.185900px;}
.y1bb0_c00001{bottom:289.348350px;}
.y4e7_c00001{bottom:289.695000px;}
.y83f_c00001{bottom:289.695300px;}
.y18a0_c00001{bottom:289.713345px;}
.y2c5_c00001{bottom:289.949400px;}
.y2bf_c00001{bottom:289.949700px;}
.y6ed_c00001{bottom:290.594850px;}
.y762_c00001{bottom:291.136650px;}
.y1a04_c00001{bottom:291.446940px;}
.y1994_c00001{bottom:291.448980px;}
.y19eb_c00001{bottom:291.449025px;}
.y19ac_c00001{bottom:291.450000px;}
.y141_c00001{bottom:291.494550px;}
.y1b26_c00001{bottom:291.746325px;}
.yd0e_c00001{bottom:291.746400px;}
.ya23_c00001{bottom:291.746550px;}
.ya86_c00001{bottom:291.747180px;}
.yd49_c00001{bottom:291.747225px;}
.yd28_c00001{bottom:291.747330px;}
.y1b45_c00001{bottom:291.747375px;}
.ycf8_c00001{bottom:291.747750px;}
.yd67_c00001{bottom:291.747975px;}
.ya10_c00001{bottom:291.748350px;}
.ya45_c00001{bottom:291.748455px;}
.y1cee_c00001{bottom:291.748575px;}
.ya66_c00001{bottom:291.748890px;}
.y1ae3_c00001{bottom:292.107225px;}
.y7be_c00001{bottom:292.215000px;}
.y1bf9_c00001{bottom:292.351650px;}
.y1f18_c00001{bottom:292.352340px;}
.y1f4a_c00001{bottom:292.352940px;}
.y1edf_c00001{bottom:292.353090px;}
.y1c27_c00001{bottom:292.353690px;}
.y1c4e_c00001{bottom:292.354140px;}
.y19c9_c00001{bottom:292.709400px;}
.ycd_c00001{bottom:292.785000px;}
.y27_c00001{bottom:292.921500px;}
.yc45_c00001{bottom:293.068365px;}
.ybe8_c00001{bottom:293.070600px;}
.yc71_c00001{bottom:293.124915px;}
.y15b_c00001{bottom:293.144700px;}
.y9ee_c00001{bottom:293.473650px;}
.y1bed_c00001{bottom:293.613075px;}
.y134b_c00001{bottom:293.671170px;}
.y1312_c00001{bottom:293.672100px;}
.yc15_c00001{bottom:294.330660px;}
.y10b3_c00001{bottom:294.626850px;}
.y10f5_c00001{bottom:294.627600px;}
.y110f_c00001{bottom:294.627690px;}
.y109a_c00001{bottom:294.628755px;}
.y1157_c00001{bottom:294.690390px;}
.y1a42_c00001{bottom:294.694560px;}
.y1763_c00001{bottom:294.866850px;}
.y12df_c00001{bottom:294.868050px;}
.y12a1_c00001{bottom:294.870450px;}
.y673_c00001{bottom:294.915000px;}
.y177f_c00001{bottom:294.925050px;}
.y12f9_c00001{bottom:294.927900px;}
.y1c09_c00001{bottom:295.112475px;}
.y11fe_c00001{bottom:295.166820px;}
.ycd5_c00001{bottom:295.411980px;}
.y2f9_c00001{bottom:295.456050px;}
.y222_c00001{bottom:295.486050px;}
.y77b_c00001{bottom:295.814700px;}
.y128a_c00001{bottom:296.129760px;}
.y1c2d_c00001{bottom:296.313690px;}
.y6c6_c00001{bottom:296.535000px;}
.y346_c00001{bottom:296.895000px;}
.y33c_c00001{bottom:296.895300px;}
.y1242_c00001{bottom:296.910075px;}
.ye89_c00001{bottom:296.969850px;}
.y271_c00001{bottom:296.971050px;}
.y27d_c00001{bottom:296.971500px;}
.y289_c00001{bottom:296.972400px;}
.y295_c00001{bottom:296.973300px;}
.y101b_c00001{bottom:296.973330px;}
.yf8e_c00001{bottom:296.973480px;}
.y2a1_c00001{bottom:296.974200px;}
.yf66_c00001{bottom:296.974680px;}
.y1e6c_c00001{bottom:296.975430px;}
.y1d66_c00001{bottom:296.975880px;}
.yfd8_c00001{bottom:296.976030px;}
.y1e0c_c00001{bottom:296.976330px;}
.yfb5_c00001{bottom:296.976480px;}
.yeef_c00001{bottom:296.976630px;}
.yec8_c00001{bottom:296.977080px;}
.y1e3e_c00001{bottom:296.977230px;}
.y1d89_c00001{bottom:296.977530px;}
.y1051_c00001{bottom:296.977680px;}
.y1eaf_c00001{bottom:296.978730px;}
.y1075_c00001{bottom:296.979330px;}
.y10d1_c00001{bottom:297.326925px;}
.y883_c00001{bottom:297.435000px;}
.y181a_c00001{bottom:297.627810px;}
.y16bc_c00001{bottom:297.629130px;}
.y12bc_c00001{bottom:297.629400px;}
.y1381_c00001{bottom:297.629730px;}
.y1611_c00001{bottom:297.630930px;}
.ye6c_c00001{bottom:298.228380px;}
.yd98_c00001{bottom:298.470330px;}
.y717_c00001{bottom:298.696500px;}
.y79a_c00001{bottom:299.338800px;}
.y189f_c00001{bottom:299.613345px;}
.yea8_c00001{bottom:299.671620px;}
.y5a3_c00001{bottom:299.775000px;}
.y13e1_c00001{bottom:299.793615px;}
.y470_c00001{bottom:300.315000px;}
.yb0f_c00001{bottom:300.450150px;}
.y1ef8_c00001{bottom:300.567000px;}
.y5dd_c00001{bottom:300.645000px;}
.yff8_c00001{bottom:300.873330px;}
.yf6c_c00001{bottom:300.874530px;}
.y1d6c_c00001{bottom:300.875730px;}
.yfbb_c00001{bottom:300.876330px;}
.yece_c00001{bottom:300.876930px;}
.y1057_c00001{bottom:300.877530px;}
.y34b_c00001{bottom:301.034850px;}
.y8fd_c00001{bottom:301.395000px;}
.y1bb2_c00001{bottom:301.647150px;}
.y1bca_c00001{bottom:301.647300px;}
.y1b55_c00001{bottom:301.648500px;}
.y1b7d_c00001{bottom:301.649895px;}
.y1b69_c00001{bottom:301.650450px;}
.y1d4a_c00001{bottom:301.765320px;}
.y1cd1_c00001{bottom:301.766370px;}
.y85d_c00001{bottom:302.114250px;}
.y9cc_c00001{bottom:302.294100px;}
.y5c3_c00001{bottom:302.295000px;}
.ybb5_c00001{bottom:302.425320px;}
.yb53_c00001{bottom:302.428500px;}
.yb91_c00001{bottom:302.428920px;}
.yb36_c00001{bottom:302.431200px;}
.y8a2_c00001{bottom:302.471850px;}
.y32c_c00001{bottom:303.045450px;}
.y25e_c00001{bottom:303.121200px;}
.y11a7_c00001{bottom:303.508470px;}
.y1225_c00001{bottom:303.508770px;}
.y126f_c00001{bottom:303.508920px;}
.y1185_c00001{bottom:303.509670px;}
.y1a22_c00001{bottom:303.510750px;}
.y1136_c00001{bottom:303.513900px;}
.y1a70_c00001{bottom:303.515025px;}
.y8c2_c00001{bottom:303.553500px;}
.y130_c00001{bottom:303.915900px;}
.y7f6_c00001{bottom:304.095000px;}
.y8e2_c00001{bottom:304.095150px;}
.yb75_c00001{bottom:305.131770px;}
.y1ae2_c00001{bottom:305.427345px;}
.y699_c00001{bottom:305.535600px;}
.y1baf_c00001{bottom:305.548350px;}
.y1156_c00001{bottom:306.210510px;}
.y1a41_c00001{bottom:306.214680px;}
.y73e_c00001{bottom:306.793950px;}
.y1a03_c00001{bottom:307.646940px;}
.y1993_c00001{bottom:307.648980px;}
.y19ea_c00001{bottom:307.649025px;}
.y19ab_c00001{bottom:307.650000px;}
.y18d_c00001{bottom:307.650300px;}
.y1b25_c00001{bottom:307.946325px;}
.yd0d_c00001{bottom:307.946400px;}
.ya22_c00001{bottom:307.946550px;}
.ya0f_c00001{bottom:307.947150px;}
.ya85_c00001{bottom:307.947180px;}
.yd48_c00001{bottom:307.947225px;}
.yd27_c00001{bottom:307.947330px;}
.y1b44_c00001{bottom:307.947375px;}
.ycf7_c00001{bottom:307.947750px;}
.yd66_c00001{bottom:307.947975px;}
.ya44_c00001{bottom:307.948455px;}
.y1ced_c00001{bottom:307.948575px;}
.ya65_c00001{bottom:307.948890px;}
.y1c08_c00001{bottom:308.072820px;}
.y11e8_c00001{bottom:308.307225px;}
.y11fd_c00001{bottom:308.486940px;}
.y13ce_c00001{bottom:308.611950px;}
.y16a1_c00001{bottom:308.612565px;}
.y15fa_c00001{bottom:308.612715px;}
.y1670_c00001{bottom:308.612865px;}
.y1651_c00001{bottom:308.613315px;}
.y1517_c00001{bottom:308.613465px;}
.y18c8_c00001{bottom:308.613765px;}
.y192b_c00001{bottom:308.613915px;}
.y15aa_c00001{bottom:308.614065px;}
.y1487_c00001{bottom:308.614365px;}
.y1466_c00001{bottom:308.614665px;}
.y1422_c00001{bottom:308.614965px;}
.y13fd_c00001{bottom:308.615265px;}
.y14b4_c00001{bottom:308.615415px;}
.y1961_c00001{bottom:308.615865px;}
.y16f2_c00001{bottom:308.616465px;}
.y15ca_c00001{bottom:308.616765px;}
.y1742_c00001{bottom:308.617215px;}
.y1715_c00001{bottom:308.617365px;}
.yc70_c00001{bottom:309.324315px;}
.yc44_c00001{bottom:309.327615px;}
.ybe7_c00001{bottom:309.329250px;}
.y11b_c00001{bottom:309.496050px;}
.y1a7_c00001{bottom:309.496200px;}
.y1c1_c00001{bottom:309.497550px;}
.y1db_c00001{bottom:309.498900px;}
.y1f5_c00001{bottom:309.500250px;}
.y20c_c00001{bottom:309.501600px;}
.y13c2_c00001{bottom:309.813045px;}
.y181c_c00001{bottom:309.867510px;}
.y1833_c00001{bottom:309.868260px;}
.y16be_c00001{bottom:309.869430px;}
.y1383_c00001{bottom:309.870030px;}
.y14e9_c00001{bottom:309.870180px;}
.y1554_c00001{bottom:309.870330px;}
.y139b_c00001{bottom:309.870780px;}
.y17bd_c00001{bottom:309.870930px;}
.y134a_c00001{bottom:309.871170px;}
.y1613_c00001{bottom:309.871230px;}
.y132e_c00001{bottom:309.871650px;}
.y1311_c00001{bottom:309.872100px;}
.y162b_c00001{bottom:309.873030px;}
.y1049_c00001{bottom:310.107765px;}
.y19c8_c00001{bottom:310.347900px;}
.ydea_c00001{bottom:310.531515px;}
.yc14_c00001{bottom:310.589910px;}
.y10b2_c00001{bottom:310.826850px;}
.y10f4_c00001{bottom:310.827600px;}
.y110e_c00001{bottom:310.827690px;}
.y1099_c00001{bottom:310.828755px;}
.y194e_c00001{bottom:311.124450px;}
.y177e_c00001{bottom:311.125050px;}
.y1762_c00001{bottom:311.126100px;}
.y12de_c00001{bottom:311.127300px;}
.y12f8_c00001{bottom:311.127900px;}
.y12a0_c00001{bottom:311.129100px;}
.y12bb_c00001{bottom:311.129400px;}
.y1289_c00001{bottom:311.129760px;}
.y13e0_c00001{bottom:311.313150px;}
.yd97_c00001{bottom:311.790450px;}
.y966_c00001{bottom:311.834250px;}
.y10d0_c00001{bottom:312.087270px;}
.y922_c00001{bottom:312.195000px;}
.y1676_c00001{bottom:312.514365px;}
.y15b0_c00001{bottom:312.515565px;}
.y146c_c00001{bottom:312.516165px;}
.y1403_c00001{bottom:312.516765px;}
.y2d0_c00001{bottom:312.630000px;}
.y81a_c00001{bottom:312.734550px;}
.ye6b_c00001{bottom:313.169790px;}
.ye88_c00001{bottom:313.169850px;}
.yff2_c00001{bottom:313.170480px;}
.yea7_c00001{bottom:313.171620px;}
.yf65_c00001{bottom:313.171680px;}
.y1d65_c00001{bottom:313.172880px;}
.y101a_c00001{bottom:313.173330px;}
.yf8d_c00001{bottom:313.173480px;}
.y1e6b_c00001{bottom:313.173630px;}
.yec7_c00001{bottom:313.174080px;}
.yfd7_c00001{bottom:313.174230px;}
.y1050_c00001{bottom:313.174680px;}
.y1dd5_c00001{bottom:313.175880px;}
.y1e0b_c00001{bottom:313.176330px;}
.yeee_c00001{bottom:313.176630px;}
.y1e3d_c00001{bottom:313.177230px;}
.y1d88_c00001{bottom:313.177530px;}
.y1eae_c00001{bottom:313.178730px;}
.y1074_c00001{bottom:313.179330px;}
.y1819_c00001{bottom:313.827810px;}
.y16bb_c00001{bottom:313.829130px;}
.y1380_c00001{bottom:313.829730px;}
.y1610_c00001{bottom:313.830930px;}
.y1541_c00001{bottom:313.887000px;}
.y947_c00001{bottom:314.172900px;}
.y1e87_c00001{bottom:315.086085px;}
.y1c6a_c00001{bottom:315.087135px;}
.y12c_c00001{bottom:315.435000px;}
.y2d6_c00001{bottom:315.750450px;}
.y2dc_c00001{bottom:315.750900px;}
.y2e2_c00001{bottom:315.751350px;}
.y2e8_c00001{bottom:315.751800px;}
.y2ec_c00001{bottom:315.752400px;}
.y6ec_c00001{bottom:315.974700px;}
.y1862_c00001{bottom:315.992895px;}
.y142_c00001{bottom:316.184850px;}
.y560_c00001{bottom:316.335000px;}
.y1bf8_c00001{bottom:316.830900px;}
.y1f17_c00001{bottom:316.832190px;}
.y1f49_c00001{bottom:316.832790px;}
.y1ede_c00001{bottom:316.832940px;}
.y1c26_c00001{bottom:316.833540px;}
.y1c4d_c00001{bottom:316.833990px;}
.y446_c00001{bottom:317.595000px;}
.y1b7c_c00001{bottom:317.849895px;}
.y15c_c00001{bottom:317.850150px;}
.y172_c00001{bottom:317.850750px;}
.y1bec_c00001{bottom:318.092925px;}
.y882_c00001{bottom:318.135900px;}
.y39b_c00001{bottom:318.495000px;}
.ybb4_c00001{bottom:318.625320px;}
.yb52_c00001{bottom:318.628500px;}
.yb90_c00001{bottom:318.628920px;}
.yb35_c00001{bottom:318.631200px;}
.y1ae1_c00001{bottom:318.746880px;}
.y1b54_c00001{bottom:319.108200px;}
.y1155_c00001{bottom:319.170855px;}
.y83e_c00001{bottom:319.215450px;}
.y761_c00001{bottom:319.216500px;}
.y716_c00001{bottom:319.218300px;}
.y1c07_c00001{bottom:319.533765px;}
.y1a21_c00001{bottom:319.710750px;}
.y1a91_c00001{bottom:319.713375px;}
.y1a6f_c00001{bottom:319.713825px;}
.y7bd_c00001{bottom:320.115000px;}
.y1c2c_c00001{bottom:320.732040px;}
.y1a40_c00001{bottom:320.973270px;}
.y2fc_c00001{bottom:321.046350px;}
.y225_c00001{bottom:321.046500px;}
.yb74_c00001{bottom:321.330570px;}
.y11e7_c00001{bottom:321.627345px;}
.ycd4_c00001{bottom:322.052730px;}
.y978_c00001{bottom:322.813500px;}
.y41b_c00001{bottom:322.815000px;}
.y1241_c00001{bottom:323.368725px;}
.y1048_c00001{bottom:323.427300px;}
.y1992_c00001{bottom:323.848980px;}
.y19e9_c00001{bottom:323.849025px;}
.y19aa_c00001{bottom:323.850000px;}
.y44_c00001{bottom:323.881500px;}
.y1a02_c00001{bottom:323.906640px;}
.y998_c00001{bottom:324.075000px;}
.ycf6_c00001{bottom:324.145950px;}
.y1b24_c00001{bottom:324.146325px;}
.yd0c_c00001{bottom:324.146400px;}
.ya21_c00001{bottom:324.146550px;}
.ya0e_c00001{bottom:324.147150px;}
.ya84_c00001{bottom:324.147180px;}
.yd47_c00001{bottom:324.147225px;}
.y1b43_c00001{bottom:324.147375px;}
.yd65_c00001{bottom:324.147975px;}
.ya43_c00001{bottom:324.148455px;}
.y1cec_c00001{bottom:324.148575px;}
.ya64_c00001{bottom:324.148890px;}
.y180_c00001{bottom:324.255000px;}
.y13df_c00001{bottom:324.273495px;}
.y2ba_c00001{bottom:324.285000px;}
.y9ed_c00001{bottom:324.613950px;}
.y184f_c00001{bottom:324.811350px;}
.y189e_c00001{bottom:324.813345px;}
.y187d_c00001{bottom:324.813795px;}
.y12f_c00001{bottom:324.975150px;}
.yd26_c00001{bottom:325.407630px;}
.yc6f_c00001{bottom:325.524315px;}
.yc43_c00001{bottom:325.527615px;}
.ybe6_c00001{bottom:325.529250px;}
.yf21_c00001{bottom:325.530780px;}
.y183_c00001{bottom:325.620000px;}
.y181b_c00001{bottom:326.067510px;}
.y1832_c00001{bottom:326.068260px;}
.y16bd_c00001{bottom:326.069430px;}
.y16d4_c00001{bottom:326.069580px;}
.y1382_c00001{bottom:326.070030px;}
.y14e8_c00001{bottom:326.070180px;}
.y1310_c00001{bottom:326.070300px;}
.y1553_c00001{bottom:326.070330px;}
.y139a_c00001{bottom:326.070780px;}
.y17bc_c00001{bottom:326.070930px;}
.y1349_c00001{bottom:326.071170px;}
.y1612_c00001{bottom:326.071230px;}
.y132d_c00001{bottom:326.071650px;}
.y184a_c00001{bottom:326.072205px;}
.y162a_c00001{bottom:326.073030px;}
.y19c7_c00001{bottom:326.607600px;}
.yc13_c00001{bottom:326.789910px;}
.y10b1_c00001{bottom:327.026850px;}
.y1098_c00001{bottom:327.026955px;}
.y10f3_c00001{bottom:327.027600px;}
.y110d_c00001{bottom:327.089190px;}
.yb0e_c00001{bottom:327.090450px;}
.y194d_c00001{bottom:327.324450px;}
.y177d_c00001{bottom:327.325050px;}
.y1761_c00001{bottom:327.326100px;}
.y12dd_c00001{bottom:327.327300px;}
.y129f_c00001{bottom:327.327900px;}
.y12ba_c00001{bottom:327.328200px;}
.y1288_c00001{bottom:327.329760px;}
.y698_c00001{bottom:327.495300px;}
.y1861_c00001{bottom:327.513015px;}
.y79e_c00001{bottom:327.526500px;}
.y1184_c00001{bottom:327.928020px;}
.y1135_c00001{bottom:327.932250px;}
.y58_c00001{bottom:328.201500px;}
.y1d49_c00001{bottom:328.284870px;}
.y1cd0_c00001{bottom:328.285920px;}
.y1e86_c00001{bottom:328.405620px;}
.y1c69_c00001{bottom:328.406670px;}
.yb1_c00001{bottom:328.500150px;}
.ybb_c00001{bottom:328.500450px;}
.y1883_c00001{bottom:328.714545px;}
.yff1_c00001{bottom:329.369280px;}
.ye6a_c00001{bottom:329.369790px;}
.ye87_c00001{bottom:329.369850px;}
.yf64_c00001{bottom:329.370480px;}
.yea6_c00001{bottom:329.371620px;}
.y1d64_c00001{bottom:329.371680px;}
.yfb4_c00001{bottom:329.372280px;}
.yec6_c00001{bottom:329.372880px;}
.y1019_c00001{bottom:329.373330px;}
.yf8c_c00001{bottom:329.373480px;}
.y1e6a_c00001{bottom:329.373630px;}
.yfd6_c00001{bottom:329.374230px;}
.y1dd4_c00001{bottom:329.375880px;}
.y1e0a_c00001{bottom:329.376330px;}
.yeed_c00001{bottom:329.376630px;}
.y1e3c_c00001{bottom:329.377230px;}
.y1d87_c00001{bottom:329.377530px;}
.y1ead_c00001{bottom:329.378730px;}
.y1073_c00001{bottom:329.379330px;}
.y85c_c00001{bottom:329.654550px;}
.y10cf_c00001{bottom:329.790270px;}
.y1c9c_c00001{bottom:329.911905px;}
.ye4c_c00001{bottom:329.913105px;}
.y1818_c00001{bottom:330.027810px;}
.y16ba_c00001{bottom:330.029130px;}
.y137f_c00001{bottom:330.029730px;}
.y160f_c00001{bottom:330.030930px;}
.y32f_c00001{bottom:330.555150px;}
.y11a_c00001{bottom:330.555750px;}
.y261_c00001{bottom:330.585900px;}
.y1154_c00001{bottom:330.690390px;}
.y590_c00001{bottom:331.455000px;}
.y1ae0_c00001{bottom:332.067000px;}
.y73d_c00001{bottom:332.173800px;}
.y7f5_c00001{bottom:332.175000px;}
.y8fc_c00001{bottom:332.535300px;}
.y1bf7_c00001{bottom:333.030900px;}
.y1beb_c00001{bottom:333.031395px;}
.y1f16_c00001{bottom:333.032190px;}
.y15f9_c00001{bottom:333.032265px;}
.y13cd_c00001{bottom:333.032700px;}
.y1f48_c00001{bottom:333.032790px;}
.y1edd_c00001{bottom:333.032940px;}
.y1c4c_c00001{bottom:333.033390px;}
.y1c25_c00001{bottom:333.033540px;}
.y1c06_c00001{bottom:333.033765px;}
.y16a0_c00001{bottom:333.033915px;}
.y1650_c00001{bottom:333.034065px;}
.y1516_c00001{bottom:333.034215px;}
.y192a_c00001{bottom:333.034665px;}
.y17d0_c00001{bottom:333.035115px;}
.y15a9_c00001{bottom:333.035415px;}
.y1421_c00001{bottom:333.035715px;}
.y1465_c00001{bottom:333.036015px;}
.y1790_c00001{bottom:333.036315px;}
.y13fc_c00001{bottom:333.036615px;}
.y14b3_c00001{bottom:333.036765px;}
.y16f1_c00001{bottom:333.037215px;}
.y1975_c00001{bottom:333.037515px;}
.y15c9_c00001{bottom:333.038115px;}
.y1741_c00001{bottom:333.039165px;}
.y9cb_c00001{bottom:333.254400px;}
.y547_c00001{bottom:333.255000px;}
.y572_c00001{bottom:333.615000px;}
.y237_c00001{bottom:333.720300px;}
.y30d_c00001{bottom:333.720450px;}
.y24a_c00001{bottom:333.721200px;}
.y316_c00001{bottom:333.721500px;}
.y31e_c00001{bottom:333.721650px;}
.ya1_c00001{bottom:333.870000px;}
.y13c1_c00001{bottom:334.292895px;}
.y8c1_c00001{bottom:334.513200px;}
.y18e_c00001{bottom:334.590600px;}
.ybb3_c00001{bottom:334.825320px;}
.yb51_c00001{bottom:334.828500px;}
.yb8f_c00001{bottom:334.828920px;}
.yb34_c00001{bottom:334.830000px;}
.y11fc_c00001{bottom:334.946640px;}
.y11e6_c00001{bottom:334.946880px;}
.y8e1_c00001{bottom:335.236500px;}
.ycd3_c00001{bottom:335.372850px;}
.y965_c00001{bottom:335.594550px;}
.y13de_c00001{bottom:335.734440px;}
.y1a20_c00001{bottom:335.910750px;}
.y1a90_c00001{bottom:335.913375px;}
.y1a6e_c00001{bottom:335.913825px;}
.y1a8_c00001{bottom:336.390750px;}
.y1c2_c00001{bottom:336.392100px;}
.y1dc_c00001{bottom:336.393450px;}
.y1f6_c00001{bottom:336.394800px;}
.y20d_c00001{bottom:336.396150px;}
.y1047_c00001{bottom:336.688830px;}
.y1240_c00001{bottom:336.688845px;}
.y1d21_c00001{bottom:336.690195px;}
.y1675_c00001{bottom:336.932115px;}
.y15af_c00001{bottom:336.933315px;}
.y146b_c00001{bottom:336.933915px;}
.y1402_c00001{bottom:336.934515px;}
.y365_c00001{bottom:337.035450px;}
.y2c6_c00001{bottom:337.139700px;}
.y2c0_c00001{bottom:337.140000px;}
.y1a3f_c00001{bottom:337.173270px;}
.y1bde_c00001{bottom:337.225950px;}
.y881_c00001{bottom:337.396200px;}
.ybcc_c00001{bottom:337.585275px;}
.yb73_c00001{bottom:337.589820px;}
.y34a_c00001{bottom:338.475150px;}
.y14d2_c00001{bottom:338.850255px;}
.yf20_c00001{bottom:338.850315px;}
.y4de_c00001{bottom:339.735000px;}
.y2fb_c00001{bottom:340.020750px;}
.y224_c00001{bottom:340.020900px;}
.y8a1_c00001{bottom:340.092000px;}
.y1a01_c00001{bottom:340.106040px;}
.y19e8_c00001{bottom:340.108275px;}
.y1991_c00001{bottom:340.108680px;}
.y19a9_c00001{bottom:340.109250px;}
.ycf5_c00001{bottom:340.345950px;}
.y1b23_c00001{bottom:340.346325px;}
.yd0b_c00001{bottom:340.346400px;}
.ya20_c00001{bottom:340.346550px;}
.ya0d_c00001{bottom:340.347150px;}
.yd46_c00001{bottom:340.347225px;}
.ya63_c00001{bottom:340.348890px;}
.y1b42_c00001{bottom:340.406625px;}
.yd64_c00001{bottom:340.407675px;}
.y1ceb_c00001{bottom:340.408275px;}
.ya83_c00001{bottom:340.409280px;}
.yd25_c00001{bottom:340.409430px;}
.ya42_c00001{bottom:340.410555px;}
.yb0d_c00001{bottom:340.410570px;}
.y1860_c00001{bottom:340.473360px;}
.y143_c00001{bottom:340.889700px;}
.y6eb_c00001{bottom:341.174700px;}
.y715_c00001{bottom:341.178000px;}
.y1d48_c00001{bottom:341.604990px;}
.y1ccf_c00001{bottom:341.606040px;}
.yc6e_c00001{bottom:341.723715px;}
.yc42_c00001{bottom:341.727615px;}
.ybe5_c00001{bottom:341.728050px;}
.y7bc_c00001{bottom:342.076500px;}
.y1348_c00001{bottom:342.329820px;}
.y15d_c00001{bottom:342.539850px;}
.y173_c00001{bottom:342.540450px;}
.y19c6_c00001{bottom:342.807600px;}
.yc12_c00001{bottom:342.989910px;}
.y2b9_c00001{bottom:343.260000px;}
.y10b0_c00001{bottom:343.288950px;}
.y10f2_c00001{bottom:343.289100px;}
.y110c_c00001{bottom:343.289190px;}
.y1097_c00001{bottom:343.290855px;}
.y33d_c00001{bottom:343.410000px;}
.y272_c00001{bottom:343.410750px;}
.y27e_c00001{bottom:343.411200px;}
.y28a_c00001{bottom:343.412100px;}
.y296_c00001{bottom:343.413000px;}
.y2a2_c00001{bottom:343.413900px;}
.y194c_c00001{bottom:343.524450px;}
.y177c_c00001{bottom:343.525050px;}
.y1760_c00001{bottom:343.526100px;}
.y12dc_c00001{bottom:343.527300px;}
.y129e_c00001{bottom:343.527900px;}
.y130f_c00001{bottom:343.529550px;}
.y1287_c00001{bottom:343.529760px;}
.ye5_c00001{bottom:343.590150px;}
.yee_c00001{bottom:343.590900px;}
.yf8_c00001{bottom:343.591050px;}
.y102_c00001{bottom:343.591200px;}
.y10c_c00001{bottom:343.591800px;}
.y43_c00001{bottom:344.041500px;}
.y11a6_c00001{bottom:344.188320px;}
.y126e_c00001{bottom:344.188770px;}
.y1224_c00001{bottom:344.189220px;}
.y1183_c00001{bottom:344.189520px;}
.y1134_c00001{bottom:344.193750px;}
.y77a_c00001{bottom:344.594550px;}
.y12b9_c00001{bottom:344.788500px;}
.y1153_c00001{bottom:345.450735px;}
.ye69_c00001{bottom:345.631890px;}
.ye86_c00001{bottom:345.631950px;}
.y1d0a_c00001{bottom:345.631980px;}
.yf8b_c00001{bottom:345.632130px;}
.yff0_c00001{bottom:345.632580px;}
.y1e69_c00001{bottom:345.632880px;}
.yfd5_c00001{bottom:345.633480px;}
.yea5_c00001{bottom:345.633720px;}
.yf63_c00001{bottom:345.633780px;}
.y1d63_c00001{bottom:345.634980px;}
.y1dd3_c00001{bottom:345.635130px;}
.yfb3_c00001{bottom:345.635580px;}
.yeec_c00001{bottom:345.635880px;}
.yec5_c00001{bottom:345.636180px;}
.y1e3b_c00001{bottom:345.636480px;}
.y104f_c00001{bottom:345.636780px;}
.y1eac_c00001{bottom:345.637980px;}
.y1072_c00001{bottom:345.638580px;}
.y10ce_c00001{bottom:345.990270px;}
.y819_c00001{bottom:346.035750px;}
.y760_c00001{bottom:347.116500px;}
.y57_c00001{bottom:348.181500px;}
.y11fb_c00001{bottom:348.266760px;}
.y11e5_c00001{bottom:348.267000px;}
.y11_c00001{bottom:348.361500px;}
.ycf_c00001{bottom:348.689850px;}
.ycd2_c00001{bottom:348.692385px;}
.y6c3_c00001{bottom:349.095000px;}
.y1bea_c00001{bottom:349.230795px;}
.y1bf6_c00001{bottom:349.230900px;}
.y13c0_c00001{bottom:349.231365px;}
.y13cc_c00001{bottom:349.232700px;}
.y1c24_c00001{bottom:349.233540px;}
.y166f_c00001{bottom:349.234215px;}
.y187c_c00001{bottom:349.235145px;}
.y15a8_c00001{bottom:349.235415px;}
.y1464_c00001{bottom:349.236015px;}
.y13fb_c00001{bottom:349.236615px;}
.y1960_c00001{bottom:349.237215px;}
.y1f15_c00001{bottom:349.291440px;}
.y15f8_c00001{bottom:349.291515px;}
.y1f47_c00001{bottom:349.292040px;}
.y1edc_c00001{bottom:349.292190px;}
.y169f_c00001{bottom:349.292565px;}
.y1c05_c00001{bottom:349.293015px;}
.y1c4b_c00001{bottom:349.293090px;}
.y189d_c00001{bottom:349.293195px;}
.y164f_c00001{bottom:349.293315px;}
.y1515_c00001{bottom:349.293465px;}
.y13dd_c00001{bottom:349.293615px;}
.y1929_c00001{bottom:349.293915px;}
.y17cf_c00001{bottom:349.294365px;}
.y1420_c00001{bottom:349.294965px;}
.y14b2_c00001{bottom:349.295415px;}
.y178f_c00001{bottom:349.295565px;}
.y1581_c00001{bottom:349.295715px;}
.y1974_c00001{bottom:349.296765px;}
.y16f0_c00001{bottom:349.296915px;}
.y15c8_c00001{bottom:349.297365px;}
.y1740_c00001{bottom:349.298415px;}
.y32e_c00001{bottom:349.530150px;}
.y260_c00001{bottom:349.560900px;}
.y5e8_c00001{bottom:349.815000px;}
.y3ca_c00001{bottom:349.995000px;}
.y1046_c00001{bottom:350.008365px;}
.y123f_c00001{bottom:350.008380px;}
.y1d20_c00001{bottom:350.010315px;}
.y1849_c00001{bottom:350.492955px;}
.y639_c00001{bottom:350.715000px;}
.ybb2_c00001{bottom:351.085020px;}
.yb8e_c00001{bottom:351.088170px;}
.yb50_c00001{bottom:351.088200px;}
.yb33_c00001{bottom:351.089700px;}
.y185f_c00001{bottom:351.992895px;}
.y14d1_c00001{bottom:352.170375px;}
.yf1f_c00001{bottom:352.170435px;}
.y1a1f_c00001{bottom:352.170450px;}
.y1d05_c00001{bottom:352.170795px;}
.y1a8f_c00001{bottom:352.172625px;}
.y1a6d_c00001{bottom:352.173075px;}
.y26_c00001{bottom:352.321500px;}
.y5c2_c00001{bottom:352.335000px;}
.ybcb_c00001{bottom:352.345620px;}
.yd96_c00001{bottom:352.529550px;}
.y83d_c00001{bottom:352.874700px;}
.y946_c00001{bottom:353.052750px;}
.y1686_c00001{bottom:353.193765px;}
.y1882_c00001{bottom:353.193795px;}
.y15b6_c00001{bottom:353.195415px;}
.y1967_c00001{bottom:353.196015px;}
.y1569_c00001{bottom:353.196615px;}
.y149b_c00001{bottom:353.196765px;}
.y1a3e_c00001{bottom:353.432970px;}
.yb0c_c00001{bottom:353.668575px;}
.yb72_c00001{bottom:353.789820px;}
.y50d_c00001{bottom:354.315000px;}
.y1d47_c00001{bottom:354.865920px;}
.y1c68_c00001{bottom:354.866970px;}
.y8c0_c00001{bottom:355.213200px;}
.y9ec_c00001{bottom:355.573650px;}
.y697_c00001{bottom:355.575150px;}
.yde9_c00001{bottom:355.829715px;}
.y85b_c00001{bottom:356.294850px;}
.y1a00_c00001{bottom:356.306040px;}
.y19e7_c00001{bottom:356.308275px;}
.y1990_c00001{bottom:356.308680px;}
.y19a8_c00001{bottom:356.309250px;}
.y1b41_c00001{bottom:356.606625px;}
.yd63_c00001{bottom:356.607675px;}
.ycf4_c00001{bottom:356.608050px;}
.y1cea_c00001{bottom:356.608275px;}
.y1b22_c00001{bottom:356.608425px;}
.yd0a_c00001{bottom:356.608500px;}
.ya0c_c00001{bottom:356.608650px;}
.ya82_c00001{bottom:356.609280px;}
.yd45_c00001{bottom:356.609325px;}
.yd24_c00001{bottom:356.609430px;}
.ya99_c00001{bottom:356.610180px;}
.ya62_c00001{bottom:356.610390px;}
.y880_c00001{bottom:356.835900px;}
.y73c_c00001{bottom:357.373800px;}
.yc41_c00001{bottom:357.925815px;}
.ybe4_c00001{bottom:357.928050px;}
.yc6d_c00001{bottom:357.985815px;}
.y19c5_c00001{bottom:359.007600px;}
.y350_c00001{bottom:359.130750px;}
.yc11_c00001{bottom:359.249160px;}
.ya41_c00001{bottom:359.310555px;}
.y1b7b_c00001{bottom:359.429745px;}
.y10af_c00001{bottom:359.488950px;}
.y1096_c00001{bottom:359.489055px;}
.y10f1_c00001{bottom:359.489100px;}
.y110b_c00001{bottom:359.489190px;}
.y964_c00001{bottom:359.534250px;}
.y175f_c00001{bottom:359.785800px;}
.y194b_c00001{bottom:359.786550px;}
.y12db_c00001{bottom:359.787000px;}
.y129d_c00001{bottom:359.787150px;}
.y12b8_c00001{bottom:359.787330px;}
.y1286_c00001{bottom:359.789010px;}
.y12f7_c00001{bottom:359.790000px;}
.y7f4_c00001{bottom:360.076200px;}
.y11a5_c00001{bottom:360.387120px;}
.y126d_c00001{bottom:360.388770px;}
.y1223_c00001{bottom:360.389220px;}
.y1182_c00001{bottom:360.389520px;}
.y1133_c00001{bottom:360.393150px;}
.y655_c00001{bottom:361.155000px;}
.y18f_c00001{bottom:361.470450px;}
.y11fa_c00001{bottom:361.586880px;}
.y1152_c00001{bottom:361.649535px;}
.y1840_c00001{bottom:361.704960px;}
.y14f7_c00001{bottom:361.705980px;}
.y17c3_c00001{bottom:361.706730px;}
.y16da_c00001{bottom:361.707480px;}
.y1568_c00001{bottom:361.708230px;}
.y13ae_c00001{bottom:361.708680px;}
.y18fe_c00001{bottom:361.708830px;}
.y163f_c00001{bottom:361.710030px;}
.y1018_c00001{bottom:361.830780px;}
.yf8a_c00001{bottom:361.830930px;}
.yfef_c00001{bottom:361.831380px;}
.ye68_c00001{bottom:361.831890px;}
.ye85_c00001{bottom:361.831950px;}
.yf62_c00001{bottom:361.832580px;}
.y1e68_c00001{bottom:361.832880px;}
.yfd4_c00001{bottom:361.833480px;}
.yea4_c00001{bottom:361.833720px;}
.y1d62_c00001{bottom:361.833780px;}
.yfb2_c00001{bottom:361.834380px;}
.yec4_c00001{bottom:361.834980px;}
.y1dd2_c00001{bottom:361.835130px;}
.y104e_c00001{bottom:361.835580px;}
.yeeb_c00001{bottom:361.835880px;}
.y1e3a_c00001{bottom:361.836480px;}
.y1d86_c00001{bottom:361.836780px;}
.y1eab_c00001{bottom:361.837980px;}
.y1071_c00001{bottom:361.838580px;}
.ycd1_c00001{bottom:362.012505px;}
.y10cd_c00001{bottom:362.189070px;}
.y714_c00001{bottom:363.137250px;}
.y1a9_c00001{bottom:363.315750px;}
.y1c3_c00001{bottom:363.317100px;}
.y1dd_c00001{bottom:363.318450px;}
.y1f7_c00001{bottom:363.319800px;}
.y20e_c00001{bottom:363.321150px;}
.y1045_c00001{bottom:363.328485px;}
.y123e_c00001{bottom:363.328500px;}
.y1d1f_c00001{bottom:363.330435px;}
.y8fb_c00001{bottom:363.495000px;}
.y42_c00001{bottom:364.201500px;}
.y7bb_c00001{bottom:364.216350px;}
.y9ca_c00001{bottom:364.394700px;}
.y921_c00001{bottom:364.575000px;}
.ye0e_c00001{bottom:364.591305px;}
.ydb5_c00001{bottom:364.591950px;}
.y1c88_c00001{bottom:364.592355px;}
.ye38_c00001{bottom:364.592505px;}
.yc5_c00001{bottom:364.754850px;}
.y357_c00001{bottom:364.965450px;}
.y366_c00001{bottom:364.965750px;}
.y369_c00001{bottom:364.965900px;}
.y36c_c00001{bottom:364.966200px;}
.y373_c00001{bottom:364.966500px;}
.y1f34_c00001{bottom:365.431125px;}
.y1d04_c00001{bottom:365.431140px;}
.y14d0_c00001{bottom:365.490495px;}
.yf1e_c00001{bottom:365.490555px;}
.y1bf5_c00001{bottom:365.490600px;}
.y13bf_c00001{bottom:365.490615px;}
.y1f14_c00001{bottom:365.491440px;}
.y15f7_c00001{bottom:365.491515px;}
.y13cb_c00001{bottom:365.491950px;}
.y1f46_c00001{bottom:365.492040px;}
.y1edb_c00001{bottom:365.492190px;}
.y169e_c00001{bottom:365.492565px;}
.y1c23_c00001{bottom:365.492790px;}
.y166e_c00001{bottom:365.492865px;}
.y185e_c00001{bottom:365.492895px;}
.y1c04_c00001{bottom:365.493015px;}
.y1c4a_c00001{bottom:365.493090px;}
.y189c_c00001{bottom:365.493195px;}
.y164e_c00001{bottom:365.493315px;}
.y1514_c00001{bottom:365.493465px;}
.y13dc_c00001{bottom:365.493615px;}
.y187b_c00001{bottom:365.493795px;}
.y1928_c00001{bottom:365.493915px;}
.y15a7_c00001{bottom:365.494065px;}
.y17ce_c00001{bottom:365.494365px;}
.y1463_c00001{bottom:365.494665px;}
.y141f_c00001{bottom:365.494965px;}
.y13fa_c00001{bottom:365.495265px;}
.y14b1_c00001{bottom:365.495415px;}
.y178e_c00001{bottom:365.495565px;}
.y1580_c00001{bottom:365.495715px;}
.y195f_c00001{bottom:365.495865px;}
.y16ef_c00001{bottom:365.496315px;}
.y15c7_c00001{bottom:365.496765px;}
.y1714_c00001{bottom:365.497365px;}
.y173f_c00001{bottom:365.498415px;}
.y144_c00001{bottom:365.580000px;}
.y2fe_c00001{bottom:365.611050px;}
.y227_c00001{bottom:365.611200px;}
.yf39_c00001{bottom:365.849070px;}
.yd95_c00001{bottom:365.849670px;}
.y8e0_c00001{bottom:366.194700px;}
.y6ea_c00001{bottom:366.374700px;}
.y55f_c00001{bottom:366.375000px;}
.yb0b_c00001{bottom:366.988695px;}
.y15e_c00001{bottom:367.200150px;}
.y174_c00001{bottom:367.200750px;}
.ybb1_c00001{bottom:367.285020px;}
.yb8d_c00001{bottom:367.288170px;}
.yb4f_c00001{bottom:367.288200px;}
.yb32_c00001{bottom:367.289700px;}
.yde8_c00001{bottom:367.290660px;}
.y10_c00001{bottom:368.161500px;}
.y1d46_c00001{bottom:368.185455px;}
.y1c67_c00001{bottom:368.186505px;}
.y1bc9_c00001{bottom:368.247300px;}
.y1b9e_c00001{bottom:368.248650px;}
.y1b68_c00001{bottom:368.250450px;}
.y1a1e_c00001{bottom:368.370450px;}
.y1a8e_c00001{bottom:368.370825px;}
.y1a6c_c00001{bottom:368.373075px;}
.ye26_c00001{bottom:368.489955px;}
.y398_c00001{bottom:368.535000px;}
.yb71_c00001{bottom:368.549580px;}
.y1685_c00001{bottom:369.393765px;}
.y15b5_c00001{bottom:369.395415px;}
.y1966_c00001{bottom:369.396015px;}
.y1705_c00001{bottom:369.396615px;}
.y671_c00001{bottom:369.435000px;}
.y1b53_c00001{bottom:369.508200px;}
.y1a3d_c00001{bottom:369.632970px;}
.y1b7a_c00001{bottom:370.949865px;}
.y25_c00001{bottom:372.121500px;}
.y1bb7_c00001{bottom:372.144900px;}
.y19ff_c00001{bottom:372.506040px;}
.y19e6_c00001{bottom:372.508275px;}
.y198f_c00001{bottom:372.508680px;}
.y19a7_c00001{bottom:372.509250px;}
.y818_c00001{bottom:372.676500px;}
.y1b40_c00001{bottom:372.806625px;}
.yd62_c00001{bottom:372.807675px;}
.ycf3_c00001{bottom:372.808050px;}
.y1ce9_c00001{bottom:372.808275px;}
.y1b21_c00001{bottom:372.808425px;}
.yd09_c00001{bottom:372.808500px;}
.ya0b_c00001{bottom:372.808650px;}
.ya81_c00001{bottom:372.809280px;}
.yd44_c00001{bottom:372.809325px;}
.yd23_c00001{bottom:372.809430px;}
.ya61_c00001{bottom:372.810390px;}
.ya40_c00001{bottom:372.810555px;}
.y41a_c00001{bottom:373.035000px;}
.y8a0_c00001{bottom:373.392000px;}
.yc6c_c00001{bottom:374.185815px;}
.ybe3_c00001{bottom:374.187300px;}
.yc40_c00001{bottom:374.189115px;}
.yce2_c00001{bottom:374.580000px;}
.y977_c00001{bottom:374.653800px;}
.y11f9_c00001{bottom:374.907000px;}
.y75f_c00001{bottom:375.016500px;}
.y19c4_c00001{bottom:375.207600px;}
.ycd0_c00001{bottom:375.332625px;}
.yc10_c00001{bottom:375.449160px;}
.y10ae_c00001{bottom:375.688950px;}
.y1095_c00001{bottom:375.689055px;}
.y10f0_c00001{bottom:375.689100px;}
.y110a_c00001{bottom:375.689190px;}
.y8bf_c00001{bottom:375.913200px;}
.y253_c00001{bottom:375.915900px;}
.y12da_c00001{bottom:375.985800px;}
.y194a_c00001{bottom:375.986550px;}
.y129c_c00001{bottom:375.987150px;}
.y12b7_c00001{bottom:375.987330px;}
.y1285_c00001{bottom:375.989010px;}
.y12f6_c00001{bottom:375.990000px;}
.y87f_c00001{bottom:376.096200px;}
.y11a4_c00001{bottom:376.587120px;}
.y126c_c00001{bottom:376.588770px;}
.y1222_c00001{bottom:376.589220px;}
.y1181_c00001{bottom:376.589520px;}
.y1132_c00001{bottom:376.592550px;}
.y1044_c00001{bottom:376.648605px;}
.y1d1e_c00001{bottom:376.649970px;}
.y945_c00001{bottom:376.813050px;}
.y6c1_c00001{bottom:376.816500px;}
.y331_c00001{bottom:377.025300px;}
.y263_c00001{bottom:377.026200px;}
.y1151_c00001{bottom:377.849535px;}
.y1017_c00001{bottom:378.030780px;}
.yf89_c00001{bottom:378.030930px;}
.yf61_c00001{bottom:378.031380px;}
.ye67_c00001{bottom:378.031890px;}
.ye84_c00001{bottom:378.031950px;}
.y1d61_c00001{bottom:378.032580px;}
.y1e67_c00001{bottom:378.032880px;}
.yfd3_c00001{bottom:378.033480px;}
.yea3_c00001{bottom:378.033720px;}
.yec3_c00001{bottom:378.033780px;}
.yfb1_c00001{bottom:378.034380px;}
.y1dd1_c00001{bottom:378.035130px;}
.y1e09_c00001{bottom:378.035580px;}
.yeea_c00001{bottom:378.035880px;}
.y1e39_c00001{bottom:378.036480px;}
.y1d85_c00001{bottom:378.036780px;}
.y1eaa_c00001{bottom:378.037980px;}
.y1070_c00001{bottom:378.038580px;}
.y85a_c00001{bottom:378.254550px;}
.y12e_c00001{bottom:378.255000px;}
.y238_c00001{bottom:378.285000px;}
.y30e_c00001{bottom:378.285150px;}
.y240_c00001{bottom:378.285450px;}
.y317_c00001{bottom:378.286200px;}
.y31f_c00001{bottom:378.286350px;}
.y10cc_c00001{bottom:378.389070px;}
.y137_c00001{bottom:378.540000px;}
.y144e_c00001{bottom:378.751125px;}
.y1f33_c00001{bottom:378.751245px;}
.y1d03_c00001{bottom:378.751260px;}
.y14cf_c00001{bottom:378.810615px;}
.yf1d_c00001{bottom:378.810675px;}
.yf38_c00001{bottom:379.168605px;}
.yce1_c00001{bottom:379.203000px;}
.y2ef_c00001{bottom:379.515000px;}
.yb0a_c00001{bottom:380.308815px;}
.yd94_c00001{bottom:380.609430px;}
.y83c_c00001{bottom:380.774700px;}
.y58f_c00001{bottom:381.495000px;}
.y1e85_c00001{bottom:381.505575px;}
.y1c66_c00001{bottom:381.506625px;}
.yb2_c00001{bottom:381.600150px;}
.ybc_c00001{bottom:381.600450px;}
.y1be9_c00001{bottom:381.690495px;}
.y1bf4_c00001{bottom:381.690600px;}
.y13be_c00001{bottom:381.690615px;}
.y1f13_c00001{bottom:381.691440px;}
.y15f6_c00001{bottom:381.691515px;}
.y13ca_c00001{bottom:381.691950px;}
.y1f45_c00001{bottom:381.692040px;}
.y1eda_c00001{bottom:381.692190px;}
.y169d_c00001{bottom:381.692565px;}
.y1c22_c00001{bottom:381.692790px;}
.y166d_c00001{bottom:381.692865px;}
.y185d_c00001{bottom:381.692895px;}
.y1c03_c00001{bottom:381.693015px;}
.y1c49_c00001{bottom:381.693090px;}
.y189b_c00001{bottom:381.693195px;}
.y164d_c00001{bottom:381.693315px;}
.y1513_c00001{bottom:381.693465px;}
.y13db_c00001{bottom:381.693615px;}
.y187a_c00001{bottom:381.693795px;}
.y1927_c00001{bottom:381.693915px;}
.y15a6_c00001{bottom:381.694065px;}
.y17cd_c00001{bottom:381.694365px;}
.y1462_c00001{bottom:381.694665px;}
.y141e_c00001{bottom:381.694965px;}
.y13f9_c00001{bottom:381.695265px;}
.y14b0_c00001{bottom:381.695415px;}
.y178d_c00001{bottom:381.695565px;}
.y157f_c00001{bottom:381.695715px;}
.y195e_c00001{bottom:381.695865px;}
.y15c6_c00001{bottom:381.696165px;}
.y1973_c00001{bottom:381.696765px;}
.y1713_c00001{bottom:381.697365px;}
.y173e_c00001{bottom:381.698415px;}
.yfff_c00001{bottom:381.934530px;}
.y1e51_c00001{bottom:381.936630px;}
.yfbd_c00001{bottom:381.937230px;}
.y1dba_c00001{bottom:381.937680px;}
.y963_c00001{bottom:383.294550px;}
.y546_c00001{bottom:383.475000px;}
.ybb0_c00001{bottom:383.485020px;}
.yb8c_c00001{bottom:383.488170px;}
.yb4e_c00001{bottom:383.488200px;}
.yb31_c00001{bottom:383.489700px;}
.y570_c00001{bottom:383.835000px;}
.y119_c00001{bottom:383.835600px;}
.yde7_c00001{bottom:383.910210px;}
.y1347_c00001{bottom:383.910270px;}
.y445_c00001{bottom:384.195000px;}
.y41_c00001{bottom:384.361500px;}
.y1a1d_c00001{bottom:384.570450px;}
.y1a8d_c00001{bottom:384.570825px;}
.y1a6b_c00001{bottom:384.573075px;}
.y2fd_c00001{bottom:384.586050px;}
.y226_c00001{bottom:384.586200px;}
.yb70_c00001{bottom:384.749580px;}
.y696_c00001{bottom:385.095300px;}
.y713_c00001{bottom:385.096500px;}
.y125_c00001{bottom:385.200000px;}
.y1684_c00001{bottom:385.593765px;}
.y15b4_c00001{bottom:385.595415px;}
.y1965_c00001{bottom:385.596015px;}
.yc4_c00001{bottom:385.815150px;}
.y7ba_c00001{bottom:385.816350px;}
.y1a3c_c00001{bottom:385.832970px;}
.y46e_c00001{bottom:385.995000px;}
.y9eb_c00001{bottom:386.713950px;}
.ya4_c00001{bottom:386.970000px;}
.y1d45_c00001{bottom:387.685455px;}
.y1ade_c00001{bottom:387.686505px;}
.yf_c00001{bottom:387.961500px;}
.y56_c00001{bottom:388.141500px;}
.y190_c00001{bottom:388.410150px;}
.yccf_c00001{bottom:388.652160px;}
.y19e5_c00001{bottom:388.708275px;}
.y198e_c00001{bottom:388.708680px;}
.y19a6_c00001{bottom:388.709250px;}
.y19fe_c00001{bottom:388.765740px;}
.y1b3f_c00001{bottom:389.006625px;}
.yd61_c00001{bottom:389.007675px;}
.ycf2_c00001{bottom:389.008050px;}
.y1ce8_c00001{bottom:389.008275px;}
.y1b20_c00001{bottom:389.008425px;}
.yd08_c00001{bottom:389.008500px;}
.ya0a_c00001{bottom:389.008650px;}
.ya80_c00001{bottom:389.009280px;}
.yd43_c00001{bottom:389.009325px;}
.yd22_c00001{bottom:389.009430px;}
.ya98_c00001{bottom:389.010180px;}
.ya60_c00001{bottom:389.010390px;}
.y7f3_c00001{bottom:389.596350px;}
.y273_c00001{bottom:389.851050px;}
.y27f_c00001{bottom:389.851950px;}
.y28b_c00001{bottom:389.852400px;}
.y297_c00001{bottom:389.853300px;}
.y2a3_c00001{bottom:389.854200px;}
.y347_c00001{bottom:389.879700px;}
.y33e_c00001{bottom:389.880150px;}
.y4d4_c00001{bottom:389.955000px;}
.y1d1d_c00001{bottom:389.970090px;}
.y1aa_c00001{bottom:390.210900px;}
.y1c4_c00001{bottom:390.212250px;}
.y1de_c00001{bottom:390.213600px;}
.y1f8_c00001{bottom:390.214950px;}
.y20f_c00001{bottom:390.216300px;}
.y145_c00001{bottom:390.269700px;}
.yc6b_c00001{bottom:390.385815px;}
.ybe2_c00001{bottom:390.387300px;}
.yc3f_c00001{bottom:390.389115px;}
.y19c3_c00001{bottom:391.467300px;}
.yc0f_c00001{bottom:391.649160px;}
.ya3f_c00001{bottom:391.710555px;}
.y10ad_c00001{bottom:391.888950px;}
.y1094_c00001{bottom:391.889055px;}
.y10ef_c00001{bottom:391.889100px;}
.y15f_c00001{bottom:391.889850px;}
.y175_c00001{bottom:391.890450px;}
.y24_c00001{bottom:391.921500px;}
.y1109_c00001{bottom:391.948890px;}
.y1da6_c00001{bottom:392.068740px;}
.y144d_c00001{bottom:392.071245px;}
.y1f32_c00001{bottom:392.071365px;}
.y1d02_c00001{bottom:392.071380px;}
.y14ce_c00001{bottom:392.130735px;}
.yf1c_c00001{bottom:392.130795px;}
.y12d9_c00001{bottom:392.185800px;}
.y1949_c00001{bottom:392.186550px;}
.y129b_c00001{bottom:392.187150px;}
.y12b6_c00001{bottom:392.187330px;}
.y1284_c00001{bottom:392.189010px;}
.y12f5_c00001{bottom:392.190000px;}
.yf37_c00001{bottom:392.488725px;}
.y1806_c00001{bottom:392.668260px;}
.y136d_c00001{bottom:392.669580px;}
.y1b9d_c00001{bottom:392.670000px;}
.y132c_c00001{bottom:392.671650px;}
.ye0d_c00001{bottom:392.671755px;}
.ydb4_c00001{bottom:392.671800px;}
.y1bc8_c00001{bottom:392.726550px;}
.y1831_c00001{bottom:392.727510px;}
.y1552_c00001{bottom:392.728980px;}
.y16d3_c00001{bottom:392.729280px;}
.y14e7_c00001{bottom:392.729430px;}
.y18ea_c00001{bottom:392.729580px;}
.y17bb_c00001{bottom:392.730180px;}
.y1399_c00001{bottom:392.730480px;}
.y1c87_c00001{bottom:392.731455px;}
.ye37_c00001{bottom:392.731605px;}
.y1629_c00001{bottom:392.731680px;}
.y1180_c00001{bottom:392.789520px;}
.y1131_c00001{bottom:392.791950px;}
.y11a3_c00001{bottom:392.846370px;}
.y1221_c00001{bottom:392.847870px;}
.y126b_c00001{bottom:392.848020px;}
.y779_c00001{bottom:393.194550px;}
.yb09_c00001{bottom:393.628350px;}
.yd93_c00001{bottom:393.929550px;}
.y1150_c00001{bottom:394.049535px;}
.yf60_c00001{bottom:394.230180px;}
.y1d60_c00001{bottom:394.231380px;}
.ye66_c00001{bottom:394.231890px;}
.ye83_c00001{bottom:394.231950px;}
.yec2_c00001{bottom:394.232580px;}
.yfb0_c00001{bottom:394.233180px;}
.y1016_c00001{bottom:394.290030px;}
.yf88_c00001{bottom:394.290180px;}
.y1e66_c00001{bottom:394.292130px;}
.yfd2_c00001{bottom:394.292730px;}
.yea2_c00001{bottom:394.292970px;}
.y1e08_c00001{bottom:394.294230px;}
.y1dd0_c00001{bottom:394.294380px;}
.yee9_c00001{bottom:394.295130px;}
.y1d84_c00001{bottom:394.295430px;}
.y1e38_c00001{bottom:394.295730px;}
.y1ea9_c00001{bottom:394.296630px;}
.y106f_c00001{bottom:394.297230px;}
.y8fa_c00001{bottom:394.635300px;}
.y10cb_c00001{bottom:394.648320px;}
.y1e84_c00001{bottom:394.825695px;}
.y1c65_c00001{bottom:394.826745px;}
.y9c9_c00001{bottom:395.354400px;}
.yde6_c00001{bottom:395.428575px;}
.y1346_c00001{bottom:395.429805px;}
.y87e_c00001{bottom:395.535900px;}
.y262_c00001{bottom:396.001200px;}
.y330_c00001{bottom:396.030150px;}
.y8be_c00001{bottom:396.613200px;}
.y1bb6_c00001{bottom:396.624750px;}
.y1820_c00001{bottom:396.629310px;}
.y16c2_c00001{bottom:396.629730px;}
.y1387_c00001{bottom:396.630330px;}
.ye25_c00001{bottom:396.631305px;}
.y1617_c00001{bottom:396.631530px;}
.y252_c00001{bottom:396.975150px;}
.y8df_c00001{bottom:397.335000px;}
.y73b_c00001{bottom:397.693950px;}
.y1be8_c00001{bottom:397.890495px;}
.y1bf3_c00001{bottom:397.890600px;}
.y13bd_c00001{bottom:397.890615px;}
.y1f12_c00001{bottom:397.891440px;}
.y15f5_c00001{bottom:397.891515px;}
.y13c9_c00001{bottom:397.891950px;}
.y1f44_c00001{bottom:397.892040px;}
.y1ed9_c00001{bottom:397.892190px;}
.y169c_c00001{bottom:397.892565px;}
.y1c21_c00001{bottom:397.892790px;}
.y166c_c00001{bottom:397.892865px;}
.y185c_c00001{bottom:397.892895px;}
.y1c02_c00001{bottom:397.893015px;}
.y1c48_c00001{bottom:397.893090px;}
.y189a_c00001{bottom:397.893195px;}
.y164c_c00001{bottom:397.893315px;}
.y1512_c00001{bottom:397.893465px;}
.y13da_c00001{bottom:397.893615px;}
.y1879_c00001{bottom:397.893795px;}
.y1926_c00001{bottom:397.893915px;}
.y15a5_c00001{bottom:397.894065px;}
.y17cc_c00001{bottom:397.894365px;}
.y1461_c00001{bottom:397.894665px;}
.y141d_c00001{bottom:397.894965px;}
.y16ee_c00001{bottom:397.895115px;}
.y13f8_c00001{bottom:397.895265px;}
.y14af_c00001{bottom:397.895415px;}
.y15c5_c00001{bottom:397.895565px;}
.y157e_c00001{bottom:397.895715px;}
.y195d_c00001{bottom:397.895865px;}
.y173d_c00001{bottom:397.896615px;}
.y1972_c00001{bottom:397.896765px;}
.y1712_c00001{bottom:397.897365px;}
.y7a_c00001{bottom:398.401500px;}
.y97_c00001{bottom:398.415900px;}
.yb8b_c00001{bottom:399.688170px;}
.yb4d_c00001{bottom:399.688200px;}
.yb30_c00001{bottom:399.689700px;}
.ybaf_c00001{bottom:399.744720px;}
.ydf_c00001{bottom:399.779850px;}
.ye6_c00001{bottom:399.780900px;}
.yef_c00001{bottom:399.781200px;}
.yf9_c00001{bottom:399.781350px;}
.y103_c00001{bottom:399.781500px;}
.y10d_c00001{bottom:399.782100px;}
.y5e7_c00001{bottom:400.035000px;}
.y859_c00001{bottom:400.214250px;}
.y944_c00001{bottom:400.573350px;}
.y817_c00001{bottom:400.575900px;}
.y1a1c_c00001{bottom:400.770450px;}
.y1a6a_c00001{bottom:400.773075px;}
.y1a8c_c00001{bottom:400.830075px;}
.yb6f_c00001{bottom:400.949580px;}
.y1d44_c00001{bottom:401.005575px;}
.y1add_c00001{bottom:401.006625px;}
.y8f_c00001{bottom:401.641500px;}
.y1ec2_c00001{bottom:401.793540px;}
.y1683_c00001{bottom:401.793765px;}
.y15b3_c00001{bottom:401.795415px;}
.y1915_c00001{bottom:401.796015px;}
.y1a3b_c00001{bottom:402.032970px;}
.y5bf_c00001{bottom:402.375000px;}
.y1cbb_c00001{bottom:402.718500px;}
.y83b_c00001{bottom:402.914400px;}
.y75e_c00001{bottom:403.096350px;}
.y1043_c00001{bottom:403.288905px;}
.y1d1c_c00001{bottom:403.290210px;}
.y11e3_c00001{bottom:403.886820px;}
.y40_c00001{bottom:404.521500px;}
.y6e9_c00001{bottom:404.894850px;}
.yd2_c00001{bottom:404.895000px;}
.y19c2_c00001{bottom:404.967300px;}
.y198d_c00001{bottom:404.967330px;}
.ycf1_c00001{bottom:405.208050px;}
.y1b1f_c00001{bottom:405.208425px;}
.yd07_c00001{bottom:405.208500px;}
.ya09_c00001{bottom:405.208650px;}
.yd42_c00001{bottom:405.209325px;}
.ya5f_c00001{bottom:405.210390px;}
.y1b3e_c00001{bottom:405.265875px;}
.yd60_c00001{bottom:405.267375px;}
.y1ce7_c00001{bottom:405.267975px;}
.ya7f_c00001{bottom:405.268530px;}
.yd21_c00001{bottom:405.268680px;}
.y1ef7_c00001{bottom:405.388740px;}
.y1da5_c00001{bottom:405.388860px;}
.y144c_c00001{bottom:405.391365px;}
.y1f31_c00001{bottom:405.391485px;}
.y1d01_c00001{bottom:405.391500px;}
.y14cd_c00001{bottom:405.450270px;}
.y2c7_c00001{bottom:405.465000px;}
.y976_c00001{bottom:405.794550px;}
.yf36_c00001{bottom:405.808260px;}
.yc6a_c00001{bottom:406.585815px;}
.ybe1_c00001{bottom:406.587300px;}
.yc3e_c00001{bottom:406.587915px;}
.y712_c00001{bottom:406.696500px;}
.y962_c00001{bottom:407.054250px;}
.ye_c00001{bottom:407.761500px;}
.yc0e_c00001{bottom:407.849160px;}
.ya3e_c00001{bottom:407.970255px;}
.y55_c00001{bottom:408.121500px;}
.y10ac_c00001{bottom:408.148200px;}
.y1093_c00001{bottom:408.148305px;}
.y10ee_c00001{bottom:408.148350px;}
.y1108_c00001{bottom:408.148890px;}
.y12d8_c00001{bottom:408.385800px;}
.y129a_c00001{bottom:408.387150px;}
.yde5_c00001{bottom:408.388335px;}
.y1283_c00001{bottom:408.389010px;}
.y1345_c00001{bottom:408.390150px;}
.y1948_c00001{bottom:408.446250px;}
.y177b_c00001{bottom:408.446850px;}
.y12b5_c00001{bottom:408.449430px;}
.y12f4_c00001{bottom:408.449700px;}
.y491_c00001{bottom:408.495000px;}
.y11a2_c00001{bottom:409.046370px;}
.y1220_c00001{bottom:409.047870px;}
.y126a_c00001{bottom:409.048020px;}
.y117f_c00001{bottom:409.048770px;}
.y1130_c00001{bottom:409.051650px;}
.y300_c00001{bottom:410.191050px;}
.y229_c00001{bottom:410.191200px;}
.y114f_c00001{bottom:410.309235px;}
.yf5f_c00001{bottom:410.489880px;}
.y1015_c00001{bottom:410.490030px;}
.yf87_c00001{bottom:410.490180px;}
.y1d5f_c00001{bottom:410.491080px;}
.ye82_c00001{bottom:410.491200px;}
.ye65_c00001{bottom:410.491590px;}
.y1e65_c00001{bottom:410.492130px;}
.yec1_c00001{bottom:410.492280px;}
.yfd1_c00001{bottom:410.492730px;}
.yfaf_c00001{bottom:410.492880px;}
.yea1_c00001{bottom:410.492970px;}
.y1e07_c00001{bottom:410.494230px;}
.y1dcf_c00001{bottom:410.494380px;}
.yee8_c00001{bottom:410.495130px;}
.y1d83_c00001{bottom:410.495430px;}
.y1e37_c00001{bottom:410.495730px;}
.y1ea8_c00001{bottom:410.496630px;}
.y106e_c00001{bottom:410.497230px;}
.yf3a_c00001{bottom:410.818500px;}
.y10ca_c00001{bottom:410.848320px;}
.y23_c00001{bottom:411.721500px;}
.yc96_c00001{bottom:411.749100px;}
.ycbc_c00001{bottom:411.751410px;}
.yca8_c00001{bottom:411.808860px;}
.ycce_c00001{bottom:411.810810px;}
.y7b9_c00001{bottom:413.896200px;}
.y1be7_c00001{bottom:414.090495px;}
.y1bf2_c00001{bottom:414.090600px;}
.y13bc_c00001{bottom:414.090615px;}
.y13c8_c00001{bottom:414.091950px;}
.y1c20_c00001{bottom:414.092790px;}
.y166b_c00001{bottom:414.092865px;}
.y1878_c00001{bottom:414.093795px;}
.y15a4_c00001{bottom:414.094065px;}
.y1460_c00001{bottom:414.094665px;}
.y13f7_c00001{bottom:414.095265px;}
.y195c_c00001{bottom:414.095865px;}
.y15f4_c00001{bottom:414.150765px;}
.y185b_c00001{bottom:414.152145px;}
.y13d9_c00001{bottom:414.152265px;}
.y1899_c00001{bottom:414.152445px;}
.y164b_c00001{bottom:414.152565px;}
.y1511_c00001{bottom:414.153165px;}
.y1f11_c00001{bottom:414.153540px;}
.y17cb_c00001{bottom:414.153615px;}
.y18c7_c00001{bottom:414.154065px;}
.y1f43_c00001{bottom:414.154140px;}
.y141c_c00001{bottom:414.154215px;}
.y1ed8_c00001{bottom:414.154290px;}
.y1486_c00001{bottom:414.154665px;}
.y1c47_c00001{bottom:414.155190px;}
.y15c4_c00001{bottom:414.155265px;}
.y157d_c00001{bottom:414.155415px;}
.y173c_c00001{bottom:414.155865px;}
.y1971_c00001{bottom:414.156015px;}
.y1711_c00001{bottom:414.156615px;}
.y16ed_c00001{bottom:414.157215px;}
.y1e83_c00001{bottom:414.325695px;}
.y1c64_c00001{bottom:414.326745px;}
.y87d_c00001{bottom:414.796200px;}
.y146_c00001{bottom:414.930000px;}
.y191_c00001{bottom:415.290000px;}
.y79_c00001{bottom:415.321500px;}
.ybae_c00001{bottom:415.944720px;}
.yb8a_c00001{bottom:415.947420px;}
.yb4c_c00001{bottom:415.947900px;}
.yb2f_c00001{bottom:415.948950px;}
.y55e_c00001{bottom:416.595000px;}
.y160_c00001{bottom:416.595300px;}
.y1042_c00001{bottom:416.609025px;}
.yb07_c00001{bottom:416.788350px;}
.yaf6_c00001{bottom:416.788800px;}
.yac1_c00001{bottom:416.791200px;}
.y1a8b_c00001{bottom:417.030075px;}
.y1a1b_c00001{bottom:417.030150px;}
.y1a69_c00001{bottom:417.032775px;}
.y91f_c00001{bottom:417.135000px;}
.y1ab_c00001{bottom:417.135900px;}
.y1c5_c00001{bottom:417.137250px;}
.y1df_c00001{bottom:417.138600px;}
.y1f9_c00001{bottom:417.139950px;}
.y210_c00001{bottom:417.141300px;}
.y1bc7_c00001{bottom:417.146100px;}
.y1805_c00001{bottom:417.148110px;}
.y136c_c00001{bottom:417.148230px;}
.y1830_c00001{bottom:417.149460px;}
.yd92_c00001{bottom:417.149700px;}
.y1b9c_c00001{bottom:417.149850px;}
.y1551_c00001{bottom:417.150330px;}
.y16d2_c00001{bottom:417.150630px;}
.y14e6_c00001{bottom:417.150780px;}
.y132b_c00001{bottom:417.150900px;}
.y18e9_c00001{bottom:417.150930px;}
.y17ba_c00001{bottom:417.151530px;}
.ye0c_c00001{bottom:417.151605px;}
.ydb3_c00001{bottom:417.151650px;}
.y1398_c00001{bottom:417.151830px;}
.y1c86_c00001{bottom:417.152205px;}
.ye36_c00001{bottom:417.152955px;}
.y1628_c00001{bottom:417.153030px;}
.y11e2_c00001{bottom:417.206355px;}
.y9ea_c00001{bottom:417.673650px;}
.yae3_c00001{bottom:418.049700px;}
.y1682_c00001{bottom:418.053015px;}
.y1900_c00001{bottom:418.054065px;}
.y1470_c00001{bottom:418.054665px;}
.y178c_c00001{bottom:418.055265px;}
.y1704_c00001{bottom:418.055865px;}
.y1a3a_c00001{bottom:418.292670px;}
.y130e_c00001{bottom:418.409400px;}
.y8e_c00001{bottom:418.561500px;}
.y39a_c00001{bottom:418.575000px;}
.yb6e_c00001{bottom:418.648980px;}
.y1ef6_c00001{bottom:418.708860px;}
.y1da4_c00001{bottom:418.708980px;}
.y1540_c00001{bottom:418.709190px;}
.y144b_c00001{bottom:418.711485px;}
.y1f30_c00001{bottom:418.711605px;}
.y1d00_c00001{bottom:418.711620px;}
.y695_c00001{bottom:418.754550px;}
.y6c0_c00001{bottom:418.755000px;}
.yf1b_c00001{bottom:418.770495px;}
.y123c_c00001{bottom:418.947765px;}
.yf35_c00001{bottom:419.128380px;}
.y96_c00001{bottom:419.475150px;}
.yde4_c00001{bottom:419.849280px;}
.y1344_c00001{bottom:419.851095px;}
.y50c_c00001{bottom:420.916500px;}
.y181f_c00001{bottom:421.050660px;}
.y16c1_c00001{bottom:421.051080px;}
.y1386_c00001{bottom:421.051680px;}
.y1616_c00001{bottom:421.052880px;}
.y19fd_c00001{bottom:421.165740px;}
.y19c1_c00001{bottom:421.167300px;}
.y198c_c00001{bottom:421.167330px;}
.y19e4_c00001{bottom:421.167525px;}
.y19a5_c00001{bottom:421.168500px;}
.y1b3d_c00001{bottom:421.465875px;}
.ycf0_c00001{bottom:421.467300px;}
.yd5f_c00001{bottom:421.467375px;}
.y1b1e_c00001{bottom:421.467675px;}
.yd06_c00001{bottom:421.467750px;}
.ya08_c00001{bottom:421.467900px;}
.y1ce6_c00001{bottom:421.467975px;}
.ya7e_c00001{bottom:421.468530px;}
.yd41_c00001{bottom:421.468575px;}
.yd20_c00001{bottom:421.468680px;}
.ya5e_c00001{bottom:421.469640px;}
.y858_c00001{bottom:422.173500px;}
.ya97_c00001{bottom:422.727930px;}
.ybe0_c00001{bottom:422.787300px;}
.yc3d_c00001{bottom:422.787915px;}
.yc69_c00001{bottom:422.845065px;}
.y239_c00001{bottom:422.850300px;}
.y30f_c00001{bottom:422.850450px;}
.y241_c00001{bottom:422.850750px;}
.y24b_c00001{bottom:422.851050px;}
.y318_c00001{bottom:422.851500px;}
.y320_c00001{bottom:422.851650px;}
.y73a_c00001{bottom:422.893950px;}
.y418_c00001{bottom:423.075000px;}
.y7f2_c00001{bottom:423.435450px;}
.y265_c00001{bottom:423.511050px;}
.y333_c00001{bottom:423.540000px;}
.y997_c00001{bottom:423.976200px;}
.yc0d_c00001{bottom:424.109460px;}
.ya3d_c00001{bottom:424.170255px;}
.y943_c00001{bottom:424.333650px;}
.y1092_c00001{bottom:424.348305px;}
.y10c9_c00001{bottom:424.348320px;}
.y1947_c00001{bottom:424.644450px;}
.y177a_c00001{bottom:424.645050px;}
.y12d7_c00001{bottom:424.647900px;}
.y1299_c00001{bottom:424.649250px;}
.y12b4_c00001{bottom:424.649430px;}
.y1282_c00001{bottom:424.650510px;}
.y11a1_c00001{bottom:425.246370px;}
.y121f_c00001{bottom:425.247870px;}
.y1269_c00001{bottom:425.248020px;}
.y117e_c00001{bottom:425.248770px;}
.y112f_c00001{bottom:425.251650px;}
.y8f9_c00001{bottom:425.596800px;}
.y83a_c00001{bottom:425.774700px;}
.ye64_c00001{bottom:426.150840px;}
.yea0_c00001{bottom:426.152670px;}
.y9c8_c00001{bottom:426.494700px;}
.y114e_c00001{bottom:426.509235px;}
.y711_c00001{bottom:426.856200px;}
.y1e82_c00001{bottom:427.645230px;}
.y1d43_c00001{bottom:427.645275px;}
.y1c63_c00001{bottom:427.646280px;}
.y1adc_c00001{bottom:427.646325px;}
.yc95_c00001{bottom:428.008800px;}
.yca7_c00001{bottom:428.008860px;}
.ycbb_c00001{bottom:428.010660px;}
.yccd_c00001{bottom:428.010810px;}
.y8de_c00001{bottom:428.296500px;}
.y816_c00001{bottom:428.656350px;}
.y2ff_c00001{bottom:429.151350px;}
.y228_c00001{bottom:429.151500px;}
.y1cba_c00001{bottom:429.300000px;}
.y1d1b_c00001{bottom:429.871260px;}
.y1be6_c00001{bottom:430.349745px;}
.y13bb_c00001{bottom:430.349865px;}
.y1bf1_c00001{bottom:430.350300px;}
.y1f10_c00001{bottom:430.350540px;}
.y15f3_c00001{bottom:430.350765px;}
.y1f42_c00001{bottom:430.351140px;}
.y13c7_c00001{bottom:430.351200px;}
.y1ed7_c00001{bottom:430.351290px;}
.y1c1f_c00001{bottom:430.351440px;}
.y169b_c00001{bottom:430.351665px;}
.y166a_c00001{bottom:430.352115px;}
.y185a_c00001{bottom:430.352145px;}
.y13d8_c00001{bottom:430.352265px;}
.y1898_c00001{bottom:430.352445px;}
.y164a_c00001{bottom:430.352565px;}
.y1510_c00001{bottom:430.353165px;}
.y15a3_c00001{bottom:430.353315px;}
.y1877_c00001{bottom:430.353495px;}
.y17ca_c00001{bottom:430.353615px;}
.y145f_c00001{bottom:430.353915px;}
.y18c6_c00001{bottom:430.354065px;}
.y141b_c00001{bottom:430.354215px;}
.y13f6_c00001{bottom:430.354515px;}
.y1c46_c00001{bottom:430.354590px;}
.y1485_c00001{bottom:430.354665px;}
.y195b_c00001{bottom:430.355115px;}
.y15c3_c00001{bottom:430.355265px;}
.y157c_c00001{bottom:430.355415px;}
.y173b_c00001{bottom:430.355865px;}
.y1970_c00001{bottom:430.356015px;}
.y1710_c00001{bottom:430.356615px;}
.y11f7_c00001{bottom:430.526490px;}
.y961_c00001{bottom:430.814550px;}
.y75d_c00001{bottom:430.996350px;}
.y654_c00001{bottom:431.355000px;}
.y588_c00001{bottom:431.535000px;}
.yf49_c00001{bottom:431.697000px;}
.y1da3_c00001{bottom:432.028515px;}
.y153f_c00001{bottom:432.028725px;}
.y1ef5_c00001{bottom:432.028980px;}
.y144a_c00001{bottom:432.031020px;}
.y1f2f_c00001{bottom:432.031140px;}
.y14cc_c00001{bottom:432.090570px;}
.yf1a_c00001{bottom:432.090615px;}
.ybad_c00001{bottom:432.144120px;}
.yb89_c00001{bottom:432.147420px;}
.yb4b_c00001{bottom:432.147900px;}
.yb2e_c00001{bottom:432.148950px;}
.yb6d_c00001{bottom:432.148980px;}
.y78_c00001{bottom:432.241500px;}
.y123b_c00001{bottom:432.267300px;}
.yf34_c00001{bottom:432.447915px;}
.y1a39_c00001{bottom:432.692670px;}
.yde3_c00001{bottom:432.809625px;}
.y1343_c00001{bottom:432.810855px;}
.yb06_c00001{bottom:432.988350px;}
.yaf5_c00001{bottom:432.988800px;}
.yac0_c00001{bottom:432.990600px;}
.yacb_c00001{bottom:432.991200px;}
.ybca_c00001{bottom:433.407120px;}
.y545_c00001{bottom:433.516500px;}
.y56f_c00001{bottom:433.875000px;}
.yae2_c00001{bottom:434.249700px;}
.y1681_c00001{bottom:434.253015px;}
.y15b2_c00001{bottom:434.254665px;}
.y1964_c00001{bottom:434.255265px;}
.yb3_c00001{bottom:434.700150px;}
.ybd_c00001{bottom:434.700450px;}
.yf5e_c00001{bottom:434.911230px;}
.ye81_c00001{bottom:434.911950px;}
.y1d5e_c00001{bottom:434.912430px;}
.yec0_c00001{bottom:434.913630px;}
.yfae_c00001{bottom:434.914230px;}
.y1014_c00001{bottom:434.969880px;}
.yf86_c00001{bottom:434.970030px;}
.y1e64_c00001{bottom:434.971980px;}
.yfd0_c00001{bottom:434.972580px;}
.y1dce_c00001{bottom:434.974230px;}
.y1e06_c00001{bottom:434.974680px;}
.yee7_c00001{bottom:434.974980px;}
.y1e36_c00001{bottom:434.975580px;}
.y1d82_c00001{bottom:434.975880px;}
.y1ea7_c00001{bottom:434.977080px;}
.y106d_c00001{bottom:434.977680px;}
.y636_c00001{bottom:435.316500px;}
.y8d_c00001{bottom:435.481500px;}
.y8bd_c00001{bottom:435.493650px;}
.y3c6_c00001{bottom:435.675000px;}
.yf48_c00001{bottom:436.320000px;}
.y274_c00001{bottom:436.321200px;}
.y280_c00001{bottom:436.322100px;}
.y28c_c00001{bottom:436.322550px;}
.y298_c00001{bottom:436.323450px;}
.y2a4_c00001{bottom:436.324350px;}
.y348_c00001{bottom:436.349850px;}
.y33f_c00001{bottom:436.350300px;}
.y87c_c00001{bottom:436.396200px;}
.y975_c00001{bottom:436.753800px;}
.y19fc_c00001{bottom:437.365740px;}
.y198b_c00001{bottom:437.367330px;}
.y19e3_c00001{bottom:437.367525px;}
.y19a4_c00001{bottom:437.368500px;}
.ye63_c00001{bottom:437.611785px;}
.ycef_c00001{bottom:437.667300px;}
.ya07_c00001{bottom:437.667900px;}
.ya7d_c00001{bottom:437.668530px;}
.yd1f_c00001{bottom:437.668680px;}
.ya5d_c00001{bottom:437.669640px;}
.ye9f_c00001{bottom:437.672790px;}
.y351_c00001{bottom:437.790000px;}
.y19c0_c00001{bottom:438.626550px;}
.yff7_c00001{bottom:438.873330px;}
.yf6b_c00001{bottom:438.874530px;}
.y1d6b_c00001{bottom:438.875730px;}
.yfba_c00001{bottom:438.876330px;}
.yecd_c00001{bottom:438.876930px;}
.y1056_c00001{bottom:438.877530px;}
.yc68_c00001{bottom:439.044465px;}
.yc3c_c00001{bottom:439.047165px;}
.ybdf_c00001{bottom:439.049400px;}
.yc3_c00001{bottom:439.095000px;}
.y147_c00001{bottom:439.634850px;}
.ya6_c00001{bottom:440.070000px;}
.yc0c_c00001{bottom:440.309460px;}
.ya3c_c00001{bottom:440.370255px;}
.yc6_c00001{bottom:440.460000px;}
.y10ab_c00001{bottom:440.548200px;}
.y1091_c00001{bottom:440.548305px;}
.y10c8_c00001{bottom:440.548320px;}
.y10ed_c00001{bottom:440.548350px;}
.y1107_c00001{bottom:440.548890px;}
.y377_c00001{bottom:440.639850px;}
.y6bf_c00001{bottom:440.716500px;}
.y1946_c00001{bottom:440.844450px;}
.y1779_c00001{bottom:440.845050px;}
.y12d6_c00001{bottom:440.847900px;}
.y1298_c00001{bottom:440.849250px;}
.y12b3_c00001{bottom:440.849430px;}
.y1281_c00001{bottom:440.850510px;}
.y1d42_c00001{bottom:440.965395px;}
.y1adb_c00001{bottom:440.966445px;}
.y161_c00001{bottom:441.285000px;}
.y176_c00001{bottom:441.285600px;}
.y11a0_c00001{bottom:441.446370px;}
.y121e_c00001{bottom:441.447870px;}
.y1268_c00001{bottom:441.448020px;}
.y117d_c00001{bottom:441.448770px;}
.y1a1a_c00001{bottom:441.450900px;}
.y112e_c00001{bottom:441.451650px;}
.y1a68_c00001{bottom:441.454725px;}
.y1bc6_c00001{bottom:441.625350px;}
.y1804_c00001{bottom:441.627960px;}
.y136b_c00001{bottom:441.628080px;}
.y182f_c00001{bottom:441.628110px;}
.yd91_c00001{bottom:441.628950px;}
.y130d_c00001{bottom:441.629550px;}
.y1b9b_c00001{bottom:441.629700px;}
.y132a_c00001{bottom:441.630150px;}
.y1550_c00001{bottom:441.630180px;}
.y16d1_c00001{bottom:441.630480px;}
.y14e5_c00001{bottom:441.630630px;}
.y18e8_c00001{bottom:441.630780px;}
.y17b9_c00001{bottom:441.631380px;}
.ye0b_c00001{bottom:441.631455px;}
.ydb2_c00001{bottom:441.631500px;}
.y1397_c00001{bottom:441.631680px;}
.y1c85_c00001{bottom:441.632655px;}
.y1627_c00001{bottom:441.632880px;}
.ye35_c00001{bottom:441.633405px;}
.y778_c00001{bottom:441.975000px;}
.y192_c00001{bottom:442.230750px;}
.y264_c00001{bottom:442.471350px;}
.y332_c00001{bottom:442.515600px;}
.y114d_c00001{bottom:442.709235px;}
.y1041_c00001{bottom:443.068725px;}
.y1d1a_c00001{bottom:443.191380px;}
.y358_c00001{bottom:443.625150px;}
.y35e_c00001{bottom:443.625450px;}
.y362_c00001{bottom:443.625600px;}
.y36d_c00001{bottom:443.625900px;}
.y374_c00001{bottom:443.626200px;}
.y11f6_c00001{bottom:443.846610px;}
.y11e1_c00001{bottom:443.846655px;}
.y1ac_c00001{bottom:444.031050px;}
.y1c6_c00001{bottom:444.032400px;}
.y1e0_c00001{bottom:444.033750px;}
.y1fa_c00001{bottom:444.035100px;}
.y211_c00001{bottom:444.036450px;}
.y857_c00001{bottom:444.133200px;}
.y1a38_c00001{bottom:444.153615px;}
.yde2_c00001{bottom:444.329745px;}
.y1342_c00001{bottom:444.329805px;}
.y3f_c00001{bottom:444.841500px;}
.yc83_c00001{bottom:444.930480px;}
.y1da2_c00001{bottom:445.348635px;}
.y153e_c00001{bottom:445.348845px;}
.y1ef4_c00001{bottom:445.349100px;}
.y1449_c00001{bottom:445.351140px;}
.y1cff_c00001{bottom:445.351320px;}
.y14cb_c00001{bottom:445.351500px;}
.y17ab_c00001{bottom:445.531830px;}
.y1be5_c00001{bottom:446.009445px;}
.y1c01_c00001{bottom:446.011965px;}
.y13ba_c00001{bottom:446.549865px;}
.y15f2_c00001{bottom:446.550765px;}
.y13c6_c00001{bottom:446.551200px;}
.y169a_c00001{bottom:446.551665px;}
.y1669_c00001{bottom:446.552115px;}
.y1859_c00001{bottom:446.552145px;}
.y13d7_c00001{bottom:446.552265px;}
.y1897_c00001{bottom:446.552445px;}
.y150f_c00001{bottom:446.553165px;}
.y15a2_c00001{bottom:446.553315px;}
.y1876_c00001{bottom:446.553495px;}
.y17c9_c00001{bottom:446.553615px;}
.y145e_c00001{bottom:446.553915px;}
.y18c5_c00001{bottom:446.554065px;}
.y141a_c00001{bottom:446.554215px;}
.y13f5_c00001{bottom:446.554515px;}
.y1484_c00001{bottom:446.554665px;}
.y195a_c00001{bottom:446.555115px;}
.y15c2_c00001{bottom:446.555265px;}
.y157b_c00001{bottom:446.555415px;}
.y173a_c00001{bottom:446.555865px;}
.y196f_c00001{bottom:446.556015px;}
.y170f_c00001{bottom:446.556615px;}
.y694_c00001{bottom:446.655150px;}
.y710_c00001{bottom:447.376350px;}
.y7b8_c00001{bottom:447.555450px;}
.y54_c00001{bottom:448.081500px;}
.y739_c00001{bottom:448.093950px;}
.y6e8_c00001{bottom:448.273500px;}
.ybac_c00001{bottom:448.344120px;}
.yb88_c00001{bottom:448.347420px;}
.yb2d_c00001{bottom:448.348950px;}
.y9e9_c00001{bottom:448.813950px;}
.y77_c00001{bottom:449.161500px;}
.yb05_c00001{bottom:449.188350px;}
.yaf4_c00001{bottom:449.188800px;}
.yabf_c00001{bottom:449.190600px;}
.yaca_c00001{bottom:449.191200px;}
.y9af_c00001{bottom:449.535000px;}
.ybc9_c00001{bottom:449.607120px;}
.yb6c_c00001{bottom:449.608680px;}
.y996_c00001{bottom:449.895750px;}
.y5cb_c00001{bottom:450.075000px;}
.y251_c00001{bottom:450.255000px;}
.yae1_c00001{bottom:450.449700px;}
.y1680_c00001{bottom:450.453015px;}
.y15b1_c00001{bottom:450.454665px;}
.y1963_c00001{bottom:450.455265px;}
.y1703_c00001{bottom:450.455865px;}
.ye62_c00001{bottom:450.630735px;}
.ye9e_c00001{bottom:450.632550px;}
.y442_c00001{bottom:450.795000px;}
.y7f1_c00001{bottom:451.335450px;}
.y254_c00001{bottom:451.620000px;}
.yf33_c00001{bottom:452.127165px;}
.yf2a_c00001{bottom:452.127180px;}
.y8c_c00001{bottom:452.401500px;}
.y5be_c00001{bottom:452.595000px;}
.yf30_c00001{bottom:453.386865px;}
.y19fb_c00001{bottom:453.627840px;}
.y19bf_c00001{bottom:453.628950px;}
.y19e2_c00001{bottom:453.629625px;}
.y19a3_c00001{bottom:453.630000px;}
.y1b3c_c00001{bottom:453.865875px;}
.ycee_c00001{bottom:453.867300px;}
.yd5e_c00001{bottom:453.867375px;}
.y1b1d_c00001{bottom:453.867675px;}
.yd05_c00001{bottom:453.867750px;}
.ya06_c00001{bottom:453.867900px;}
.y1ce5_c00001{bottom:453.867975px;}
.ya7c_c00001{bottom:453.868530px;}
.yd40_c00001{bottom:453.868575px;}
.yd1e_c00001{bottom:453.868680px;}
.ya5c_c00001{bottom:453.869640px;}
.y1e81_c00001{bottom:454.285530px;}
.y1c62_c00001{bottom:454.286580px;}
.y22b_c00001{bottom:454.711350px;}
.y960_c00001{bottom:454.754250px;}
.y839_c00001{bottom:454.754550px;}
.y302_c00001{bottom:454.756350px;}
.y198a_c00001{bottom:454.827030px;}
.y1bf0_c00001{bottom:454.830150px;}
.y1f0f_c00001{bottom:454.830390px;}
.y1ed6_c00001{bottom:454.830540px;}
.y1f41_c00001{bottom:454.830990px;}
.y1c1e_c00001{bottom:454.831890px;}
.y1c45_c00001{bottom:454.834440px;}
.yc67_c00001{bottom:455.244465px;}
.yc3b_c00001{bottom:455.247165px;}
.ybde_c00001{bottom:455.249400px;}
.y1cb8_c00001{bottom:455.925000px;}
.ye7_c00001{bottom:455.940150px;}
.yf0_c00001{bottom:455.940900px;}
.yfa_c00001{bottom:455.941050px;}
.y104_c00001{bottom:455.941200px;}
.y10e_c00001{bottom:455.941800px;}
.y1040_c00001{bottom:456.388845px;}
.yc0b_c00001{bottom:456.509460px;}
.y8f8_c00001{bottom:456.556500px;}
.ya3b_c00001{bottom:456.570255px;}
.y10aa_c00001{bottom:456.748200px;}
.y1090_c00001{bottom:456.748305px;}
.y10ec_c00001{bottom:456.748350px;}
.y1106_c00001{bottom:456.808140px;}
.y12b2_c00001{bottom:457.049430px;}
.y1280_c00001{bottom:457.050510px;}
.y114c_c00001{bottom:457.109235px;}
.y11e0_c00001{bottom:457.166775px;}
.y75c_c00001{bottom:457.276200px;}
.yde1_c00001{bottom:457.289505px;}
.y1341_c00001{bottom:457.289565px;}
.y9c7_c00001{bottom:457.454400px;}
.y1be4_c00001{bottom:457.529565px;}
.y1c00_c00001{bottom:457.532085px;}
.y1a19_c00001{bottom:457.650900px;}
.y1a67_c00001{bottom:457.654125px;}
.y1a8a_c00001{bottom:457.710525px;}
.y10c7_c00001{bottom:458.067270px;}
.y815_c00001{bottom:458.176500px;}
.yf19_c00001{bottom:458.550915px;}
.y1da1_c00001{bottom:458.606640px;}
.y153d_c00001{bottom:458.606850px;}
.y1ef3_c00001{bottom:458.607105px;}
.y1cfe_c00001{bottom:458.671440px;}
.y1c2b_c00001{bottom:458.732040px;}
.y123a_c00001{bottom:458.907600px;}
.y1a37_c00001{bottom:458.974320px;}
.y1adf_c00001{bottom:459.238500px;}
.y8dd_c00001{bottom:459.256200px;}
.yf5d_c00001{bottom:459.391080px;}
.y1013_c00001{bottom:459.391230px;}
.yf85_c00001{bottom:459.391380px;}
.ye80_c00001{bottom:459.391800px;}
.y1d5d_c00001{bottom:459.392280px;}
.y1e63_c00001{bottom:459.393330px;}
.yebf_c00001{bottom:459.393480px;}
.yfcf_c00001{bottom:459.393930px;}
.yfad_c00001{bottom:459.394080px;}
.y1e05_c00001{bottom:459.395430px;}
.y1dcd_c00001{bottom:459.395580px;}
.yee6_c00001{bottom:459.396330px;}
.y1d81_c00001{bottom:459.396630px;}
.y1e35_c00001{bottom:459.396930px;}
.y1ea6_c00001{bottom:459.397830px;}
.y106c_c00001{bottom:459.398430px;}
.yd5_c00001{bottom:461.085000px;}
.ye61_c00001{bottom:462.091680px;}
.ye9d_c00001{bottom:462.093495px;}
.y13b9_c00001{bottom:462.210165px;}
.y13d6_c00001{bottom:462.211965px;}
.y6be_c00001{bottom:462.676200px;}
.y1848_c00001{bottom:462.749865px;}
.y184e_c00001{bottom:462.751200px;}
.y1858_c00001{bottom:462.752145px;}
.y1896_c00001{bottom:462.752445px;}
.y1875_c00001{bottom:462.753495px;}
.yff6_c00001{bottom:463.294680px;}
.yf6a_c00001{bottom:463.295880px;}
.y1d6a_c00001{bottom:463.297080px;}
.yfb9_c00001{bottom:463.297680px;}
.yecc_c00001{bottom:463.298280px;}
.y1055_c00001{bottom:463.298880px;}
.y148_c00001{bottom:464.325150px;}
.yb87_c00001{bottom:464.547420px;}
.yb4a_c00001{bottom:464.547900px;}
.yb2c_c00001{bottom:464.548950px;}
.ybab_c00001{bottom:464.606220px;}
.ybc8_c00001{bottom:464.607120px;}
.yb6b_c00001{bottom:464.611680px;}
.y3fa_c00001{bottom:464.835000px;}
.y3e_c00001{bottom:465.001500px;}
.yaf3_c00001{bottom:465.388800px;}
.yabe_c00001{bottom:465.390600px;}
.yac9_c00001{bottom:465.391200px;}
.yb04_c00001{bottom:465.447600px;}
.y670_c00001{bottom:465.914700px;}
.y117c_c00001{bottom:465.928620px;}
.yc94_c00001{bottom:465.929550px;}
.yca6_c00001{bottom:465.929610px;}
.yccc_c00001{bottom:465.930360px;}
.ycba_c00001{bottom:465.931410px;}
.y112d_c00001{bottom:465.931500px;}
.y162_c00001{bottom:465.989850px;}
.y177_c00001{bottom:465.990450px;}
.y1bc5_c00001{bottom:466.043700px;}
.y182e_c00001{bottom:466.046460px;}
.y154f_c00001{bottom:466.048530px;}
.y16d0_c00001{bottom:466.048830px;}
.y14e4_c00001{bottom:466.048980px;}
.y18e7_c00001{bottom:466.049130px;}
.y1803_c00001{bottom:466.049310px;}
.y136a_c00001{bottom:466.049430px;}
.y17b8_c00001{bottom:466.049730px;}
.ye0a_c00001{bottom:466.049805px;}
.y1396_c00001{bottom:466.050030px;}
.yd90_c00001{bottom:466.050300px;}
.y1c84_c00001{bottom:466.050405px;}
.y1b9a_c00001{bottom:466.050450px;}
.ye34_c00001{bottom:466.050555px;}
.y130c_c00001{bottom:466.050900px;}
.y1626_c00001{bottom:466.051230px;}
.y1329_c00001{bottom:466.052100px;}
.ydb1_c00001{bottom:466.052850px;}
.y76_c00001{bottom:466.081500px;}
.y87b_c00001{bottom:466.096200px;}
.y60b_c00001{bottom:466.455000px;}
.y55d_c00001{bottom:466.635000px;}
.yae0_c00001{bottom:466.708950px;}
.yd_c00001{bottom:467.161500px;}
.y23a_c00001{bottom:467.430150px;}
.y310_c00001{bottom:467.430300px;}
.y242_c00001{bottom:467.430600px;}
.y24c_c00001{bottom:467.430900px;}
.y319_c00001{bottom:467.431350px;}
.y321_c00001{bottom:467.431500px;}
.y1e80_c00001{bottom:467.605650px;}
.y1d41_c00001{bottom:467.605695px;}
.y1c61_c00001{bottom:467.606700px;}
.y1ada_c00001{bottom:467.606745px;}
.y974_c00001{bottom:467.894550px;}
.y53_c00001{bottom:468.061500px;}
.yf29_c00001{bottom:468.327180px;}
.y114b_c00001{bottom:468.629355px;}
.yde0_c00001{bottom:468.750450px;}
.y1340_c00001{bottom:468.750510px;}
.y397_c00001{bottom:468.795000px;}
.y70f_c00001{bottom:468.976350px;}
.y193_c00001{bottom:469.110000px;}
.y19be_c00001{bottom:469.288650px;}
.y8b_c00001{bottom:469.321500px;}
.yf2f_c00001{bottom:469.586865px;}
.y91d_c00001{bottom:469.695000px;}
.y103f_c00001{bottom:469.708965px;}
.y1d19_c00001{bottom:469.710330px;}
.y17aa_c00001{bottom:469.950180px;}
.y267_c00001{bottom:469.951350px;}
.y1b1c_c00001{bottom:470.067675px;}
.yd04_c00001{bottom:470.067750px;}
.ya05_c00001{bottom:470.067900px;}
.yd3f_c00001{bottom:470.068575px;}
.ya5b_c00001{bottom:470.069640px;}
.y1b3b_c00001{bottom:470.125125px;}
.yd5d_c00001{bottom:470.126625px;}
.ya96_c00001{bottom:470.126730px;}
.y1ce4_c00001{bottom:470.127225px;}
.ya7b_c00001{bottom:470.127780px;}
.yd1d_c00001{bottom:470.128380px;}
.y11f5_c00001{bottom:470.486910px;}
.y1be3_c00001{bottom:470.489910px;}
.y1bff_c00001{bottom:470.491845px;}
.y1ad_c00001{bottom:470.956050px;}
.y1c7_c00001{bottom:470.957400px;}
.y1e1_c00001{bottom:470.958750px;}
.y1fb_c00001{bottom:470.960100px;}
.y15f1_c00001{bottom:471.030615px;}
.y13c5_c00001{bottom:471.031050px;}
.y1649_c00001{bottom:471.031215px;}
.y1699_c00001{bottom:471.031515px;}
.y1668_c00001{bottom:471.031965px;}
.y150e_c00001{bottom:471.033015px;}
.y15a1_c00001{bottom:471.033165px;}
.y18c4_c00001{bottom:471.033315px;}
.y17c8_c00001{bottom:471.033465px;}
.y145d_c00001{bottom:471.033765px;}
.y1483_c00001{bottom:471.033915px;}
.y1419_c00001{bottom:471.034065px;}
.y13f4_c00001{bottom:471.034365px;}
.y14ae_c00001{bottom:471.034515px;}
.y157a_c00001{bottom:471.034665px;}
.y1959_c00001{bottom:471.034965px;}
.y1739_c00001{bottom:471.035715px;}
.y196e_c00001{bottom:471.035865px;}
.y170e_c00001{bottom:471.036465px;}
.y22_c00001{bottom:471.121500px;}
.yced_c00001{bottom:471.327000px;}
.yc66_c00001{bottom:471.444465px;}
.yc3a_c00001{bottom:471.447165px;}
.ybdd_c00001{bottom:471.449400px;}
.y46c_c00001{bottom:471.495000px;}
.yf18_c00001{bottom:471.870450px;}
.y153c_c00001{bottom:471.926970px;}
.y1ef2_c00001{bottom:471.927225px;}
.y1448_c00001{bottom:471.991440px;}
.y1f2e_c00001{bottom:471.991560px;}
.y856_c00001{bottom:472.033200px;}
.y1239_c00001{bottom:472.227720px;}
.yc0a_c00001{bottom:472.709460px;}
.y95_c00001{bottom:472.755000px;}
.ya3a_c00001{bottom:472.829505px;}
.y10a9_c00001{bottom:473.007450px;}
.y10c6_c00001{bottom:473.007510px;}
.y10eb_c00001{bottom:473.007600px;}
.y1105_c00001{bottom:473.008140px;}
.y218_c00001{bottom:473.040000px;}
.y416_c00001{bottom:473.116500px;}
.y12d5_c00001{bottom:473.247900px;}
.y1297_c00001{bottom:473.249250px;}
.y127f_c00001{bottom:473.250510px;}
.y7f0_c00001{bottom:473.295750px;}
.y1945_c00001{bottom:473.304150px;}
.y1778_c00001{bottom:473.304750px;}
.y12f3_c00001{bottom:473.307150px;}
.y12b1_c00001{bottom:473.308680px;}
.y738_c00001{bottom:473.473800px;}
.y13b8_c00001{bottom:473.729700px;}
.y301_c00001{bottom:473.731350px;}
.y22a_c00001{bottom:473.731500px;}
.y13d5_c00001{bottom:473.732085px;}
.y1a18_c00001{bottom:473.910150px;}
.y1a89_c00001{bottom:473.910525px;}
.y1a66_c00001{bottom:473.913825px;}
.y98_c00001{bottom:474.120000px;}
.y8bc_c00001{bottom:474.193650px;}
.y108f_c00001{bottom:474.267255px;}
.y693_c00001{bottom:474.734400px;}
.y1674_c00001{bottom:474.933315px;}
.y15ae_c00001{bottom:474.934515px;}
.y146a_c00001{bottom:474.935115px;}
.y1401_c00001{bottom:474.935715px;}
.y1a36_c00001{bottom:475.173120px;}
.y7b7_c00001{bottom:475.455450px;}
.ye60_c00001{bottom:475.469805px;}
.y11e4_c00001{bottom:475.503000px;}
.y9ae_c00001{bottom:476.535000px;}
.y6e7_c00001{bottom:476.714250px;}
.y19fa_c00001{bottom:478.045590px;}
.y19e1_c00001{bottom:478.047375px;}
.y1989_c00001{bottom:478.047780px;}
.y1847_c00001{bottom:478.410165px;}
.y1857_c00001{bottom:478.473495px;}
.y95f_c00001{bottom:478.514550px;}
.ye9c_c00001{bottom:478.713045px;}
.y1bef_c00001{bottom:479.250900px;}
.y1c1d_c00001{bottom:479.252640px;}
.y19a2_c00001{bottom:479.307000px;}
.y1f0e_c00001{bottom:479.313240px;}
.y1c44_c00001{bottom:479.313690px;}
.y1f40_c00001{bottom:479.313840px;}
.y1ed5_c00001{bottom:479.313990px;}
.y334_c00001{bottom:479.520450px;}
.y75b_c00001{bottom:479.596350px;}
.y1aee_c00001{bottom:480.181500px;}
.y19bd_c00001{bottom:480.747240px;}
.yb2b_c00001{bottom:480.811050px;}
.yb6a_c00001{bottom:480.811680px;}
.y1d40_c00001{bottom:480.925815px;}
.y1ad9_c00001{bottom:480.926865px;}
.yb03_c00001{bottom:481.647600px;}
.yaf2_c00001{bottom:481.648050px;}
.yabd_c00001{bottom:481.649850px;}
.yac8_c00001{bottom:481.650450px;}
.yddf_c00001{bottom:481.710795px;}
.y133f_c00001{bottom:481.710855px;}
.y587_c00001{bottom:481.755000px;}
.y1be2_c00001{bottom:481.950855px;}
.y1bfe_c00001{bottom:482.011965px;}
.y119f_c00001{bottom:482.126220px;}
.y1267_c00001{bottom:482.127870px;}
.y121d_c00001{bottom:482.128320px;}
.y117b_c00001{bottom:482.128620px;}
.yc93_c00001{bottom:482.129550px;}
.y112c_c00001{bottom:482.130900px;}
.ycb9_c00001{bottom:482.131410px;}
.yca5_c00001{bottom:482.188860px;}
.yccb_c00001{bottom:482.189610px;}
.y4d3_c00001{bottom:482.295000px;}
.y1cb7_c00001{bottom:482.523000px;}
.y838_c00001{bottom:482.654550px;}
.y275_c00001{bottom:482.760900px;}
.y281_c00001{bottom:482.761800px;}
.y28d_c00001{bottom:482.762250px;}
.y299_c00001{bottom:482.763150px;}
.y2a5_c00001{bottom:482.764050px;}
.y340_c00001{bottom:482.835000px;}
.yadf_c00001{bottom:482.908950px;}
.y103e_c00001{bottom:483.028500px;}
.y1d18_c00001{bottom:483.030450px;}
.y1c2a_c00001{bottom:483.212490px;}
.y114a_c00001{bottom:483.390885px;}
.y544_c00001{bottom:483.555000px;}
.y11f4_c00001{bottom:483.807030px;}
.y11df_c00001{bottom:483.807075px;}
.y56e_c00001{bottom:483.916500px;}
.ya8_c00001{bottom:483.945000px;}
.y6bd_c00001{bottom:484.636500px;}
.yba6_c00001{bottom:484.765920px;}
.y1aed_c00001{bottom:484.797000px;}
.y995_c00001{bottom:484.815900px;}
.y1cfd_c00001{bottom:485.131140px;}
.y3d_c00001{bottom:485.161500px;}
.yf17_c00001{bottom:485.190570px;}
.y153b_c00001{bottom:485.247090px;}
.y1da0_c00001{bottom:485.247390px;}
.y1447_c00001{bottom:485.311560px;}
.y3c3_c00001{bottom:485.716500px;}
.y120e_c00001{bottom:486.029670px;}
.y1b38_c00001{bottom:486.325875px;}
.yd5a_c00001{bottom:486.326775px;}
.ycec_c00001{bottom:486.327000px;}
.ya04_c00001{bottom:486.327150px;}
.yd1c_c00001{bottom:486.327180px;}
.y1ce1_c00001{bottom:486.327375px;}
.ya39_c00001{bottom:486.329505px;}
.y9e8_c00001{bottom:486.613950px;}
.y13b7_c00001{bottom:486.690045px;}
.y13d4_c00001{bottom:486.691845px;}
.yc_c00001{bottom:486.961500px;}
.y486_c00001{bottom:487.155000px;}
.y184d_c00001{bottom:487.231050px;}
.y1895_c00001{bottom:487.232295px;}
.y1874_c00001{bottom:487.232745px;}
.y87a_c00001{bottom:487.336500px;}
.yf5c_c00001{bottom:487.530180px;}
.y1012_c00001{bottom:487.530330px;}
.yf84_c00001{bottom:487.530480px;}
.y1d5c_c00001{bottom:487.531380px;}
.ye7f_c00001{bottom:487.531500px;}
.y1e62_c00001{bottom:487.532430px;}
.yebe_c00001{bottom:487.532580px;}
.yfce_c00001{bottom:487.533030px;}
.yfac_c00001{bottom:487.533180px;}
.y1e04_c00001{bottom:487.534530px;}
.y1dcc_c00001{bottom:487.534680px;}
.yee5_c00001{bottom:487.535430px;}
.y1d80_c00001{bottom:487.535730px;}
.y1e34_c00001{bottom:487.536030px;}
.y1ea5_c00001{bottom:487.536930px;}
.y106b_c00001{bottom:487.537530px;}
.y503_c00001{bottom:487.695000px;}
.y8f7_c00001{bottom:487.696800px;}
.yc65_c00001{bottom:487.703715px;}
.yc39_c00001{bottom:487.706415px;}
.yf4c_c00001{bottom:487.708050px;}
.ybdc_c00001{bottom:487.708650px;}
.yb4_c00001{bottom:487.800150px;}
.ybe_c00001{bottom:487.800450px;}
.y52_c00001{bottom:488.041500px;}
.y942_c00001{bottom:488.233650px;}
.y9c6_c00001{bottom:488.594700px;}
.y10c5_c00001{bottom:488.667210px;}
.ye5f_c00001{bottom:488.789340px;}
.y266_c00001{bottom:488.911050px;}
.yc09_c00001{bottom:488.968710px;}
.y149_c00001{bottom:489.030000px;}
.y70e_c00001{bottom:489.136050px;}
.y1944_c00001{bottom:489.504150px;}
.y1777_c00001{bottom:489.504750px;}
.y12f2_c00001{bottom:489.507150px;}
.y12d4_c00001{bottom:489.507600px;}
.y1296_c00001{bottom:489.508500px;}
.y12b0_c00001{bottom:489.508680px;}
.y1846_c00001{bottom:489.929700px;}
.y1856_c00001{bottom:489.932085px;}
.y1a17_c00001{bottom:490.110150px;}
.y1a88_c00001{bottom:490.110525px;}
.y1a65_c00001{bottom:490.113825px;}
.ye9b_c00001{bottom:490.232580px;}
.y1b35_c00001{bottom:490.286325px;}
.yd57_c00001{bottom:490.286625px;}
.y1cde_c00001{bottom:490.287225px;}
.y8dc_c00001{bottom:490.396500px;}
.y123d_c00001{bottom:490.500000px;}
.y1bc4_c00001{bottom:490.524150px;}
.y182d_c00001{bottom:490.526310px;}
.y154e_c00001{bottom:490.528380px;}
.y16cf_c00001{bottom:490.528680px;}
.y14e3_c00001{bottom:490.528830px;}
.y18e6_c00001{bottom:490.528980px;}
.y1802_c00001{bottom:490.529160px;}
.y1369_c00001{bottom:490.529280px;}
.y17b7_c00001{bottom:490.529580px;}
.ye09_c00001{bottom:490.529655px;}
.y1395_c00001{bottom:490.529880px;}
.y1c83_c00001{bottom:490.530255px;}
.ye33_c00001{bottom:490.530405px;}
.yd8f_c00001{bottom:490.530750px;}
.y1b99_c00001{bottom:490.530900px;}
.y1625_c00001{bottom:490.531080px;}
.y130b_c00001{bottom:490.531350px;}
.ydb0_c00001{bottom:490.532700px;}
.y777_c00001{bottom:490.575000px;}
.y163_c00001{bottom:490.650150px;}
.y178_c00001{bottom:490.650750px;}
.y127e_c00001{bottom:490.768260px;}
.y21_c00001{bottom:490.921500px;}
.y1881_c00001{bottom:491.133495px;}
.y1a35_c00001{bottom:491.371920px;}
.yff5_c00001{bottom:491.433780px;}
.yf69_c00001{bottom:491.434980px;}
.y1d69_c00001{bottom:491.436180px;}
.yfb8_c00001{bottom:491.436780px;}
.yecb_c00001{bottom:491.437380px;}
.y1054_c00001{bottom:491.437980px;}
.y3f7_c00001{bottom:491.475000px;}
.y814_c00001{bottom:491.836200px;}
.ydde_c00001{bottom:493.230330px;}
.y133e_c00001{bottom:493.230390px;}
.y1988_c00001{bottom:493.707030px;}
.y19bc_c00001{bottom:493.769115px;}
.y1d3f_c00001{bottom:494.245350px;}
.y1ad8_c00001{bottom:494.246400px;}
.y17a9_c00001{bottom:494.430030px;}
.y7ef_c00001{bottom:495.255450px;}
.y1be1_c00001{bottom:495.329565px;}
.y15f0_c00001{bottom:495.510465px;}
.y13c4_c00001{bottom:495.510900px;}
.y1648_c00001{bottom:495.511065px;}
.y1698_c00001{bottom:495.511965px;}
.y1667_c00001{bottom:495.512415px;}
.y150d_c00001{bottom:495.512865px;}
.y17c7_c00001{bottom:495.513315px;}
.y15a0_c00001{bottom:495.513615px;}
.y18c3_c00001{bottom:495.513765px;}
.y1418_c00001{bottom:495.513915px;}
.y145c_c00001{bottom:495.514215px;}
.y1482_c00001{bottom:495.514365px;}
.y16ec_c00001{bottom:495.514515px;}
.y13f3_c00001{bottom:495.514815px;}
.y14ad_c00001{bottom:495.514965px;}
.y1579_c00001{bottom:495.515115px;}
.y1738_c00001{bottom:495.516165px;}
.y196d_c00001{bottom:495.516315px;}
.y170d_c00001{bottom:495.516915px;}
.y194_c00001{bottom:496.050750px;}
.y1d17_c00001{bottom:496.291380px;}
.y11f3_c00001{bottom:496.381500px;}
.y692_c00001{bottom:496.694700px;}
.yba9_c00001{bottom:497.006220px;}
.yb49_c00001{bottom:497.008800px;}
.yb2a_c00001{bottom:497.011050px;}
.yb69_c00001{bottom:497.011680px;}
.y11de_c00001{bottom:497.126610px;}
.y7b6_c00001{bottom:497.415150px;}
.y108e_c00001{bottom:497.428155px;}
.y10ea_c00001{bottom:497.428350px;}
.y1104_c00001{bottom:497.487990px;}
.yb02_c00001{bottom:497.847600px;}
.yaf1_c00001{bottom:497.848050px;}
.yca4_c00001{bottom:497.848560px;}
.yabc_c00001{bottom:497.850450px;}
.yac7_c00001{bottom:497.851050px;}
.y1ae_c00001{bottom:497.851200px;}
.y1c8_c00001{bottom:497.852550px;}
.y1e2_c00001{bottom:497.853900px;}
.y1fc_c00001{bottom:497.855250px;}
.y212_c00001{bottom:497.856600px;}
.y13b6_c00001{bottom:498.210165px;}
.y13d3_c00001{bottom:498.211965px;}
.y117a_c00001{bottom:498.328620px;}
.y112b_c00001{bottom:498.330300px;}
.y119e_c00001{bottom:498.385470px;}
.y121c_c00001{bottom:498.386970px;}
.y1266_c00001{bottom:498.387120px;}
.y1cfc_c00001{bottom:498.451260px;}
.yf16_c00001{bottom:498.451500px;}
.y1d9f_c00001{bottom:498.566925px;}
.y1bfd_c00001{bottom:498.571665px;}
.y737_c00001{bottom:498.673800px;}
.y10a8_c00001{bottom:498.688500px;}
.y973_c00001{bottom:498.853800px;}
.y1238_c00001{bottom:498.868020px;}
.yade_c00001{bottom:499.108950px;}
.y22d_c00001{bottom:499.291350px;}
.y304_c00001{bottom:499.321050px;}
.y1673_c00001{bottom:499.413165px;}
.y15ad_c00001{bottom:499.414365px;}
.y1469_c00001{bottom:499.414965px;}
.y1400_c00001{bottom:499.415565px;}
.y1149_c00001{bottom:499.590885px;}
.y75_c00001{bottom:499.921500px;}
.y855_c00001{bottom:500.113650px;}
.y5d5_c00001{bottom:500.116500px;}
.y10c4_c00001{bottom:500.187330px;}
.yba5_c00001{bottom:500.965920px;}
.y11f2_c00001{bottom:500.997000px;}
.y6e6_c00001{bottom:501.914250px;}
.yd1b_c00001{bottom:501.986880px;}
.y11f8_c00001{bottom:502.077000px;}
.y120d_c00001{bottom:502.288320px;}
.y19f9_c00001{bottom:502.525440px;}
.ya03_c00001{bottom:502.527150px;}
.ya7a_c00001{bottom:502.527780px;}
.y19e0_c00001{bottom:502.527825px;}
.ya5a_c00001{bottom:502.528890px;}
.y5bd_c00001{bottom:502.635000px;}
.y1845_c00001{bottom:502.890045px;}
.y1855_c00001{bottom:502.953960px;}
.y8a_c00001{bottom:503.161500px;}
.y9ad_c00001{bottom:503.535000px;}
.ye5e_c00001{bottom:503.550270px;}
.y19a1_c00001{bottom:503.786850px;}
.ya38_c00001{bottom:503.789205px;}
.yc64_c00001{bottom:503.903715px;}
.yc38_c00001{bottom:503.906415px;}
.ybdb_c00001{bottom:503.908650px;}
.yc08_c00001{bottom:505.168710px;}
.y19bb_c00001{bottom:505.227120px;}
.y1987_c00001{bottom:505.227150px;}
.y3c_c00001{bottom:505.321500px;}
.y631_c00001{bottom:505.516500px;}
.y1941_c00001{bottom:505.704150px;}
.y1774_c00001{bottom:505.704750px;}
.y12ef_c00001{bottom:505.707150px;}
.y127d_c00001{bottom:505.708500px;}
.y12af_c00001{bottom:505.708680px;}
.yddd_c00001{bottom:506.190675px;}
.y133d_c00001{bottom:506.190735px;}
.y1a16_c00001{bottom:506.310150px;}
.y1a87_c00001{bottom:506.310525px;}
.y1a64_c00001{bottom:506.313825px;}
.y6bc_c00001{bottom:506.594550px;}
.yc92_c00001{bottom:506.609400px;}
.ycb8_c00001{bottom:506.611260px;}
.yb_c00001{bottom:506.761500px;}
.y1c73_c00001{bottom:506.823000px;}
.ye9a_c00001{bottom:506.852130px;}
.y1bee_c00001{bottom:507.390000px;}
.y1c1c_c00001{bottom:507.391740px;}
.y1f0d_c00001{bottom:507.393090px;}
.y1c43_c00001{bottom:507.393540px;}
.y1ed4_c00001{bottom:507.393840px;}
.y1f3f_c00001{bottom:507.394290px;}
.y1d3e_c00001{bottom:507.565470px;}
.y1ad7_c00001{bottom:507.566520px;}
.y1a34_c00001{bottom:507.570720px;}
.y75a_c00001{bottom:507.676800px;}
.y51_c00001{bottom:508.021500px;}
.yd8_c00001{bottom:508.065000px;}
.y879_c00001{bottom:508.396500px;}
.y1be0_c00001{bottom:508.649100px;}
.y1cb5_c00001{bottom:509.097000px;}
.y70d_c00001{bottom:509.116500px;}
.yca3_c00001{bottom:509.309505px;}
.y534_c00001{bottom:509.474550px;}
.y1d16_c00001{bottom:509.611500px;}
.y193e_c00001{bottom:509.665200px;}
.y1771_c00001{bottom:509.665800px;}
.y12ec_c00001{bottom:509.668200px;}
.yf2e_c00001{bottom:509.969115px;}
.y1bfc_c00001{bottom:510.091785px;}
.y11dd_c00001{bottom:510.446730px;}
.y837_c00001{bottom:510.554550px;}
.y20_c00001{bottom:510.721500px;}
.y1b3a_c00001{bottom:510.745875px;}
.y1b37_c00001{bottom:510.747225px;}
.yd5c_c00001{bottom:510.747375px;}
.yd59_c00001{bottom:510.747525px;}
.yceb_c00001{bottom:510.747750px;}
.y1ce3_c00001{bottom:510.747975px;}
.y1ce0_c00001{bottom:510.748125px;}
.y1c29_c00001{bottom:511.292340px;}
.y1c72_c00001{bottom:511.380000px;}
.y124c_c00001{bottom:511.438500px;}
.y13b5_c00001{bottom:511.530285px;}
.y184c_c00001{bottom:511.710900px;}
.y1873_c00001{bottom:511.712595px;}
.y1894_c00001{bottom:511.712745px;}
.y1446_c00001{bottom:511.771260px;}
.y1cfb_c00001{bottom:511.771380px;}
.y994_c00001{bottom:511.815900px;}
.y1ef1_c00001{bottom:511.887045px;}
.y153a_c00001{bottom:511.887390px;}
.y23b_c00001{bottom:511.950300px;}
.y243_c00001{bottom:511.950750px;}
.y24d_c00001{bottom:511.951050px;}
.y311_c00001{bottom:511.995000px;}
.y322_c00001{bottom:511.996200px;}
.yf1_c00001{bottom:512.131200px;}
.yfb_c00001{bottom:512.131350px;}
.y105_c00001{bottom:512.131950px;}
.y10f_c00001{bottom:512.132100px;}
.y1237_c00001{bottom:512.187555px;}
.y10c3_c00001{bottom:513.147675px;}
.y108d_c00001{bottom:513.147705px;}
.yba8_c00001{bottom:513.206220px;}
.yb48_c00001{bottom:513.208800px;}
.yb29_c00001{bottom:513.211050px;}
.yb68_c00001{bottom:513.211680px;}
.yd1a_c00001{bottom:513.507000px;}
.y14a_c00001{bottom:513.720300px;}
.y66f_c00001{bottom:513.975000px;}
.yb01_c00001{bottom:514.047600px;}
.yaf0_c00001{bottom:514.048050px;}
.yabb_c00001{bottom:514.051050px;}
.yac6_c00001{bottom:514.051650px;}
.y8bb_c00001{bottom:514.152900px;}
.y1844_c00001{bottom:514.410165px;}
.y1854_c00001{bottom:514.411965px;}
.y119d_c00001{bottom:514.585470px;}
.y121b_c00001{bottom:514.586970px;}
.y1265_c00001{bottom:514.587120px;}
.y1179_c00001{bottom:514.587870px;}
.y112a_c00001{bottom:514.590000px;}
.y1b34_c00001{bottom:514.707675px;}
.yd56_c00001{bottom:514.708575px;}
.y1cdd_c00001{bottom:514.709175px;}
.y13d2_c00001{bottom:514.834365px;}
.y1801_c00001{bottom:514.947510px;}
.y1368_c00001{bottom:514.947630px;}
.yd8e_c00001{bottom:514.949100px;}
.y1b98_c00001{bottom:514.949250px;}
.y1328_c00001{bottom:514.950300px;}
.ye08_c00001{bottom:514.950405px;}
.ydaf_c00001{bottom:514.951050px;}
.y1bc3_c00001{bottom:515.004600px;}
.y182c_c00001{bottom:515.009760px;}
.y1c82_c00001{bottom:515.010105px;}
.ye32_c00001{bottom:515.010255px;}
.y154d_c00001{bottom:515.011230px;}
.y16ce_c00001{bottom:515.011530px;}
.y14e2_c00001{bottom:515.011680px;}
.y18e5_c00001{bottom:515.011830px;}
.y17b6_c00001{bottom:515.012430px;}
.y1394_c00001{bottom:515.012730px;}
.y1624_c00001{bottom:515.013930px;}
.yadd_c00001{bottom:515.308950px;}
.y164_c00001{bottom:515.339850px;}
.yf5b_c00001{bottom:515.610030px;}
.y1011_c00001{bottom:515.610180px;}
.yf83_c00001{bottom:515.610330px;}
.y1d5b_c00001{bottom:515.611230px;}
.ye7e_c00001{bottom:515.611950px;}
.y1e61_c00001{bottom:515.612280px;}
.yebd_c00001{bottom:515.612430px;}
.y1880_c00001{bottom:515.612745px;}
.yfcd_c00001{bottom:515.612880px;}
.yfab_c00001{bottom:515.613030px;}
.y1e03_c00001{bottom:515.614380px;}
.y1dcb_c00001{bottom:515.614530px;}
.yee4_c00001{bottom:515.615280px;}
.y1d7f_c00001{bottom:515.615580px;}
.y1e33_c00001{bottom:515.615880px;}
.y1ea4_c00001{bottom:515.616780px;}
.y106a_c00001{bottom:515.617380px;}
.y1148_c00001{bottom:515.850585px;}
.y124b_c00001{bottom:516.060000px;}
.y269_c00001{bottom:516.391650px;}
.y352_c00001{bottom:516.495450px;}
.y55c_c00001{bottom:516.675000px;}
.y74_c00001{bottom:516.841500px;}
.ye5d_c00001{bottom:516.870390px;}
.yba4_c00001{bottom:517.165920px;}
.y95e_c00001{bottom:517.214550px;}
.y7ee_c00001{bottom:517.215750px;}
.y440_c00001{bottom:517.575000px;}
.yddc_c00001{bottom:517.710795px;}
.y133c_c00001{bottom:517.710855px;}
.y19ba_c00001{bottom:518.186880px;}
.y22c_c00001{bottom:518.251650px;}
.y303_c00001{bottom:518.296650px;}
.ye99_c00001{bottom:518.313075px;}
.y120c_c00001{bottom:518.488320px;}
.y691_c00001{bottom:518.654400px;}
.y8f6_c00001{bottom:518.656500px;}
.ya02_c00001{bottom:518.727150px;}
.yf32_c00001{bottom:518.727165px;}
.yf28_c00001{bottom:518.727180px;}
.ya37_c00001{bottom:518.730615px;}
.y394_c00001{bottom:518.835000px;}
.y17a8_c00001{bottom:518.909880px;}
.y7b5_c00001{bottom:519.375450px;}
.yff4_c00001{bottom:519.513630px;}
.yf68_c00001{bottom:519.514830px;}
.y1d68_c00001{bottom:519.516030px;}
.yfb7_c00001{bottom:519.516630px;}
.yeca_c00001{bottom:519.517230px;}
.y1053_c00001{bottom:519.517830px;}
.y9c5_c00001{bottom:519.554400px;}
.y813_c00001{bottom:519.736200px;}
.yf2c_c00001{bottom:519.987150px;}
.y89_c00001{bottom:520.081500px;}
.yc63_c00001{bottom:520.103715px;}
.yc37_c00001{bottom:520.106415px;}
.ybda_c00001{bottom:520.108650px;}
.y1d3d_c00001{bottom:520.885590px;}
.y1ad6_c00001{bottom:520.886640px;}
.y8db_c00001{bottom:521.356200px;}
.y12ae_c00001{bottom:521.368380px;}
.yc07_c00001{bottom:521.368710px;}
.yf2d_c00001{bottom:521.427120px;}
.y10e9_c00001{bottom:521.907000px;}
.y1103_c00001{bottom:521.909340px;}
.y854_c00001{bottom:522.073350px;}
.y918_c00001{bottom:522.075000px;}
.y378_c00001{bottom:522.329550px;}
.y359_c00001{bottom:522.330000px;}
.y35f_c00001{bottom:522.330300px;}
.y363_c00001{bottom:522.330450px;}
.y36e_c00001{bottom:522.330750px;}
.y375_c00001{bottom:522.331050px;}
.y1a15_c00001{bottom:522.510150px;}
.y1a63_c00001{bottom:522.513825px;}
.y1a86_c00001{bottom:522.572625px;}
.yc91_c00001{bottom:522.809400px;}
.ycb7_c00001{bottom:522.810060px;}
.yca2_c00001{bottom:522.868680px;}
.ycca_c00001{bottom:522.869460px;}
.y195_c00001{bottom:522.930600px;}
.y1208_c00001{bottom:523.023000px;}
.y1bfb_c00001{bottom:523.052130px;}
.y10a7_c00001{bottom:523.168350px;}
.y415_c00001{bottom:523.335000px;}
.y13c3_c00001{bottom:523.590750px;}
.y15ef_c00001{bottom:523.590915px;}
.y150c_c00001{bottom:523.591515px;}
.y1697_c00001{bottom:523.591815px;}
.y1925_c00001{bottom:523.591965px;}
.y1417_c00001{bottom:523.592115px;}
.y1666_c00001{bottom:523.592265px;}
.y159f_c00001{bottom:523.593465px;}
.y18c2_c00001{bottom:523.593615px;}
.y145b_c00001{bottom:523.594065px;}
.y1481_c00001{bottom:523.594215px;}
.y16eb_c00001{bottom:523.594365px;}
.y13f2_c00001{bottom:523.594665px;}
.y14ac_c00001{bottom:523.594815px;}
.y1578_c00001{bottom:523.594965px;}
.y1737_c00001{bottom:523.596015px;}
.y170c_c00001{bottom:523.596765px;}
.y11dc_c00001{bottom:523.766850px;}
.y1a33_c00001{bottom:523.832220px;}
.y736_c00001{bottom:524.053650px;}
.y10c2_c00001{bottom:524.608620px;}
.y108c_c00001{bottom:524.608650px;}
.y1af_c00001{bottom:524.776200px;}
.y1c9_c00001{bottom:524.777550px;}
.y1e3_c00001{bottom:524.778900px;}
.y1fd_c00001{bottom:524.780850px;}
.y13b4_c00001{bottom:524.850405px;}
.y1d9e_c00001{bottom:525.027225px;}
.y1445_c00001{bottom:525.091380px;}
.y1cfa_c00001{bottom:525.091500px;}
.y1539_c00001{bottom:525.207510px;}
.y3b_c00001{bottom:525.481500px;}
.y1236_c00001{bottom:525.507675px;}
.y335_c00001{bottom:525.990000px;}
.y13d1_c00001{bottom:526.292370px;}
.ya_c00001{bottom:526.561500px;}
.y1b39_c00001{bottom:527.005125px;}
.y1b36_c00001{bottom:527.006475px;}
.yd5b_c00001{bottom:527.006625px;}
.yd58_c00001{bottom:527.006775px;}
.ycea_c00001{bottom:527.007000px;}
.y1ce2_c00001{bottom:527.007225px;}
.y1cdf_c00001{bottom:527.007375px;}
.y6e5_c00001{bottom:527.114250px;}
.y1672_c00001{bottom:527.493615px;}
.y15ac_c00001{bottom:527.494815px;}
.y1468_c00001{bottom:527.495415px;}
.y13ff_c00001{bottom:527.496015px;}
.y1206_c00001{bottom:527.638500px;}
.y1843_c00001{bottom:527.730285px;}
.y50_c00001{bottom:528.001500px;}
.y9e7_c00001{bottom:528.193800px;}
.y941_c00001{bottom:528.373950px;}
.y276_c00001{bottom:529.231050px;}
.y282_c00001{bottom:529.231950px;}
.y28e_c00001{bottom:529.232400px;}
.y29a_c00001{bottom:529.233300px;}
.y2a7_c00001{bottom:529.233900px;}
.y2a6_c00001{bottom:529.234200px;}
.y70c_c00001{bottom:529.276200px;}
.y349_c00001{bottom:529.349850px;}
.y341_c00001{bottom:529.350300px;}
.yb67_c00001{bottom:529.470930px;}
.y19b9_c00001{bottom:529.707000px;}
.yadc_c00001{bottom:529.708950px;}
.y972_c00001{bottom:529.994550px;}
.y1940_c00001{bottom:530.126100px;}
.y1773_c00001{bottom:530.126700px;}
.y12ee_c00001{bottom:530.129100px;}
.y127c_c00001{bottom:530.129250px;}
.y1943_c00001{bottom:530.184600px;}
.y1776_c00001{bottom:530.185200px;}
.y12f1_c00001{bottom:530.187600px;}
.y1f_c00001{bottom:530.521500px;}
.y533_c00001{bottom:530.534250px;}
.y9ab_c00001{bottom:530.535000px;}
.yb28_c00001{bottom:530.670300px;}
.yddb_c00001{bottom:530.670555px;}
.y133b_c00001{bottom:530.670615px;}
.y89c_c00001{bottom:530.713950px;}
.y119c_c00001{bottom:530.785470px;}
.y121a_c00001{bottom:530.785770px;}
.y1264_c00001{bottom:530.787120px;}
.y1178_c00001{bottom:530.787870px;}
.y1129_c00001{bottom:530.790000px;}
.y19f8_c00001{bottom:530.905875px;}
.y1b33_c00001{bottom:530.907675px;}
.yd55_c00001{bottom:530.907975px;}
.y1cdc_c00001{bottom:530.909175px;}
.y1853_c00001{bottom:531.034365px;}
.y586_c00001{bottom:531.795000px;}
.yf5a_c00001{bottom:531.810030px;}
.y1d5a_c00001{bottom:531.811230px;}
.ye5c_c00001{bottom:531.811800px;}
.ye7d_c00001{bottom:531.811950px;}
.yebc_c00001{bottom:531.812430px;}
.yfaa_c00001{bottom:531.813030px;}
.y1c1b_c00001{bottom:531.813090px;}
.ye98_c00001{bottom:531.872250px;}
.y1010_c00001{bottom:531.872280px;}
.yf82_c00001{bottom:531.872430px;}
.y1ed3_c00001{bottom:531.872490px;}
.y1f0c_c00001{bottom:531.873540px;}
.y1c42_c00001{bottom:531.873990px;}
.y1e60_c00001{bottom:531.874380px;}
.yfcc_c00001{bottom:531.874980px;}
.y1e02_c00001{bottom:531.876480px;}
.y1dca_c00001{bottom:531.876630px;}
.yee3_c00001{bottom:531.877380px;}
.y1d7e_c00001{bottom:531.877680px;}
.y1e32_c00001{bottom:531.877980px;}
.y1ea3_c00001{bottom:531.878880px;}
.y1069_c00001{bottom:531.879480px;}
.y1147_c00001{bottom:532.050585px;}
.y993_c00001{bottom:532.515900px;}
.y4c9_c00001{bottom:532.516500px;}
.y12ad_c00001{bottom:532.888500px;}
.y1bdf_c00001{bottom:533.071050px;}
.y73_c00001{bottom:533.761500px;}
.y543_c00001{bottom:533.775000px;}
.y759_c00001{bottom:533.776800px;}
.y193d_c00001{bottom:534.085950px;}
.y1770_c00001{bottom:534.086550px;}
.y12eb_c00001{bottom:534.088950px;}
.y56d_c00001{bottom:534.135000px;}
.y1d3c_c00001{bottom:534.205710px;}
.y1ad5_c00001{bottom:534.206760px;}
.yf27_c00001{bottom:534.386880px;}
.ya36_c00001{bottom:534.389865px;}
.y1bfa_c00001{bottom:534.572250px;}
.y120b_c00001{bottom:534.687120px;}
.y268_c00001{bottom:535.396500px;}
.y3c2_c00001{bottom:535.755000px;}
.y1c28_c00001{bottom:535.772190px;}
.y878_c00001{bottom:536.293500px;}
.yc36_c00001{bottom:536.306415px;}
.ybd9_c00001{bottom:536.308650px;}
.yc62_c00001{bottom:536.365815px;}
.y88_c00001{bottom:537.001500px;}
.ya9_c00001{bottom:537.045000px;}
.y11db_c00001{bottom:537.086970px;}
.y10c1_c00001{bottom:537.568380px;}
.yc06_c00001{bottom:537.568710px;}
.y50b_c00001{bottom:537.735000px;}
.y1d9d_c00001{bottom:538.347345px;}
.y14b_c00001{bottom:538.380000px;}
.y1444_c00001{bottom:538.411500px;}
.yaef_c00001{bottom:538.527900px;}
.yaba_c00001{bottom:538.530900px;}
.yac5_c00001{bottom:538.531500px;}
.y836_c00001{bottom:538.634400px;}
.y1a14_c00001{bottom:538.772250px;}
.y1a85_c00001{bottom:538.772625px;}
.y1a62_c00001{bottom:538.775325px;}
.y1235_c00001{bottom:538.827795px;}
.yc90_c00001{bottom:539.068650px;}
.yca1_c00001{bottom:539.068680px;}
.ycb6_c00001{bottom:539.069310px;}
.ycc9_c00001{bottom:539.069460px;}
.y7ed_c00001{bottom:539.175450px;}
.y13d0_c00001{bottom:539.252715px;}
.y776_c00001{bottom:539.354850px;}
.y1bc2_c00001{bottom:539.425950px;}
.y1800_c00001{bottom:539.427360px;}
.y1367_c00001{bottom:539.427480px;}
.y182b_c00001{bottom:539.428110px;}
.yd8d_c00001{bottom:539.428950px;}
.y1b97_c00001{bottom:539.429100px;}
.y154c_c00001{bottom:539.429580px;}
.y16cd_c00001{bottom:539.429880px;}
.y14e1_c00001{bottom:539.430030px;}
.y1327_c00001{bottom:539.430150px;}
.y18e4_c00001{bottom:539.430180px;}
.ye07_c00001{bottom:539.430255px;}
.y17b5_c00001{bottom:539.430780px;}
.y1c81_c00001{bottom:539.430855px;}
.ydae_c00001{bottom:539.430900px;}
.ye31_c00001{bottom:539.431005px;}
.y1393_c00001{bottom:539.431080px;}
.y1623_c00001{bottom:539.432280px;}
.y184b_c00001{bottom:539.790750px;}
.y1872_c00001{bottom:539.792445px;}
.y1893_c00001{bottom:539.854095px;}
.y165_c00001{bottom:540.030150px;}
.y1a32_c00001{bottom:540.032220px;}
.y690_c00001{bottom:540.614700px;}
.yb5_c00001{bottom:540.900150px;}
.ybf_c00001{bottom:540.900450px;}
.y1842_c00001{bottom:541.050405px;}
.yadb_c00001{bottom:541.229070px;}
.y812_c00001{bottom:541.695450px;}
.ydda_c00001{bottom:542.128560px;}
.y133a_c00001{bottom:542.128620px;}
.y1852_c00001{bottom:542.554485px;}
.ya01_c00001{bottom:543.207000px;}
.yf31_c00001{bottom:543.207015px;}
.ya79_c00001{bottom:543.207630px;}
.y17a7_c00001{bottom:543.330630px;}
.y18dd_c00001{bottom:543.330930px;}
.y187f_c00001{bottom:543.753045px;}
.y650_c00001{bottom:543.855000px;}
.y22f_c00001{bottom:543.856650px;}
.y306_c00001{bottom:543.886800px;}
.y853_c00001{bottom:544.033050px;}
.yf2b_c00001{bottom:544.467000px;}
.ya95_c00001{bottom:544.467030px;}
.yf26_c00001{bottom:545.907000px;}
.ya35_c00001{bottom:545.909400px;}
.y1942_c00001{bottom:546.384600px;}
.y1775_c00001{bottom:546.385200px;}
.y193f_c00001{bottom:546.385350px;}
.y1772_c00001{bottom:546.385950px;}
.y12f0_c00001{bottom:546.387600px;}
.y12ed_c00001{bottom:546.388350px;}
.y108b_c00001{bottom:546.388500px;}
.yb27_c00001{bottom:546.389111px;}
.y6bb_c00001{bottom:546.554250px;}
.y119b_c00001{bottom:546.985470px;}
.y1219_c00001{bottom:546.985770px;}
.y1263_c00001{bottom:546.987120px;}
.y1177_c00001{bottom:546.987870px;}
.y1128_c00001{bottom:546.990000px;}
.ya76_c00001{bottom:547.167390px;}
.y7b4_c00001{bottom:547.455300px;}
.y1d3b_c00001{bottom:547.466640px;}
.y1ad4_c00001{bottom:547.467690px;}
.yf59_c00001{bottom:548.069730px;}
.y1ed2_c00001{bottom:548.070090px;}
.y1f0b_c00001{bottom:548.070540px;}
.y15ee_c00001{bottom:548.070765px;}
.y1d59_c00001{bottom:548.070930px;}
.ye5b_c00001{bottom:548.071050px;}
.ye7c_c00001{bottom:548.071200px;}
.y150b_c00001{bottom:548.071365px;}
.y1696_c00001{bottom:548.071665px;}
.y1c1a_c00001{bottom:548.071740px;}
.y17c6_c00001{bottom:548.071965px;}
.y1665_c00001{bottom:548.072115px;}
.yebb_c00001{bottom:548.072130px;}
.ye97_c00001{bottom:548.072250px;}
.y100f_c00001{bottom:548.072280px;}
.y1924_c00001{bottom:548.072415px;}
.yf81_c00001{bottom:548.072430px;}
.y1416_c00001{bottom:548.072565px;}
.yfa9_c00001{bottom:548.072730px;}
.y159e_c00001{bottom:548.073315px;}
.y18c1_c00001{bottom:548.073465px;}
.y145a_c00001{bottom:548.073915px;}
.y1c41_c00001{bottom:548.073990px;}
.y1480_c00001{bottom:548.074065px;}
.y16ea_c00001{bottom:548.074215px;}
.y1e5f_c00001{bottom:548.074380px;}
.y13f1_c00001{bottom:548.074515px;}
.y14ab_c00001{bottom:548.074665px;}
.y1577_c00001{bottom:548.074815px;}
.yfcb_c00001{bottom:548.074980px;}
.y1736_c00001{bottom:548.075265px;}
.y1e01_c00001{bottom:548.076480px;}
.y170b_c00001{bottom:548.076615px;}
.y1dc9_c00001{bottom:548.076630px;}
.yee2_c00001{bottom:548.077380px;}
.y1d7d_c00001{bottom:548.077680px;}
.y1e31_c00001{bottom:548.077980px;}
.y1ea2_c00001{bottom:548.078880px;}
.y1068_c00001{bottom:548.079480px;}
.y1146_c00001{bottom:548.250585px;}
.y1cb4_c00001{bottom:549.057000px;}
.y10c0_c00001{bottom:549.088500px;}
.y735_c00001{bottom:549.253650px;}
.y13b3_c00001{bottom:549.330255px;}
.y70b_c00001{bottom:549.436500px;}
.y8f5_c00001{bottom:549.793950px;}
.y196_c00001{bottom:549.870900px;}
.y5d3_c00001{bottom:550.335000px;}
.y193c_c00001{bottom:550.345200px;}
.y176f_c00001{bottom:550.345800px;}
.y12ea_c00001{bottom:550.348200px;}
.y1102_c00001{bottom:550.348950px;}
.y11da_c00001{bottom:550.407090px;}
.y72_c00001{bottom:550.681500px;}
.y9c4_c00001{bottom:550.694700px;}
.y13cf_c00001{bottom:550.772250px;}
.y120a_c00001{bottom:550.887120px;}
.y532_c00001{bottom:551.414700px;}
.y1538_c00001{bottom:551.666760px;}
.y1d9c_c00001{bottom:551.666880px;}
.y1b0_c00001{bottom:551.671950px;}
.y1ca_c00001{bottom:551.673300px;}
.y1e4_c00001{bottom:551.674650px;}
.y1fe_c00001{bottom:551.676000px;}
.y1671_c00001{bottom:551.972865px;}
.y15ab_c00001{bottom:551.974065px;}
.y1467_c00001{bottom:551.974665px;}
.y13fe_c00001{bottom:551.975265px;}
.y1962_c00001{bottom:551.975865px;}
.y940_c00001{bottom:552.134250px;}
.y1234_c00001{bottom:552.147915px;}
.y6e4_c00001{bottom:552.494100px;}
.y8da_c00001{bottom:552.496500px;}
.yc61_c00001{bottom:552.565815px;}
.ybd8_c00001{bottom:552.567900px;}
.yc35_c00001{bottom:552.568515px;}
.y5b9_c00001{bottom:552.675000px;}
.y87_c00001{bottom:553.921500px;}
.y8ba_c00001{bottom:554.293650px;}
.yb00_c00001{bottom:554.727450px;}
.yaee_c00001{bottom:554.727900px;}
.yab9_c00001{bottom:554.730900px;}
.yac4_c00001{bottom:554.731500px;}
.y1a13_c00001{bottom:554.972250px;}
.y1a84_c00001{bottom:554.972625px;}
.y1a61_c00001{bottom:554.974725px;}
.ydd9_c00001{bottom:555.088905px;}
.y1339_c00001{bottom:555.088965px;}
.yc05_c00001{bottom:555.267510px;}
.yc8f_c00001{bottom:555.268650px;}
.yca0_c00001{bottom:555.268680px;}
.ycb5_c00001{bottom:555.269310px;}
.ycc8_c00001{bottom:555.269460px;}
.y1851_c00001{bottom:555.514245px;}
.yada_c00001{bottom:555.990600px;}
.y95d_c00001{bottom:556.094400px;}
.y1a31_c00001{bottom:556.232220px;}
.y758_c00001{bottom:556.276800px;}
.y23c_c00001{bottom:556.530150px;}
.y24e_c00001{bottom:556.530900px;}
.y312_c00001{bottom:556.560750px;}
.y466_c00001{bottom:557.175000px;}
.y9a9_c00001{bottom:557.535000px;}
.y3f2_c00001{bottom:558.255000px;}
.y66c_c00001{bottom:558.616500px;}
.ya00_c00001{bottom:559.407000px;}
.ya78_c00001{bottom:559.407630px;}
.ya59_c00001{bottom:559.408740px;}
.ya34_c00001{bottom:559.409400px;}
.y1d3a_c00001{bottom:560.786760px;}
.y1ad3_c00001{bottom:560.787810px;}
.y971_c00001{bottom:560.953800px;}
.y7ec_c00001{bottom:561.135150px;}
.y89b_c00001{bottom:561.674250px;}
.y68f_c00001{bottom:562.575000px;}
.yd73_c00001{bottom:562.585725px;}
.y1b52_c00001{bottom:562.585875px;}
.y1a11_c00001{bottom:562.586190px;}
.y1cf9_c00001{bottom:562.586325px;}
.yf4b_c00001{bottom:562.588500px;}
.y22e_c00001{bottom:562.831650px;}
.y305_c00001{bottom:562.861800px;}
.y337_c00001{bottom:562.965600px;}
.y14c_c00001{bottom:563.069700px;}
.y1176_c00001{bottom:563.187870px;}
.y1127_c00001{bottom:563.190000px;}
.y119a_c00001{bottom:563.246970px;}
.y1218_c00001{bottom:563.247870px;}
.y1262_c00001{bottom:563.249220px;}
.y992_c00001{bottom:563.475600px;}
.y11d9_c00001{bottom:563.727210px;}
.y1bc1_c00001{bottom:563.904600px;}
.y17ff_c00001{bottom:563.907210px;}
.y1366_c00001{bottom:563.907330px;}
.y182a_c00001{bottom:563.907360px;}
.yd8c_c00001{bottom:563.908800px;}
.y1b96_c00001{bottom:563.908950px;}
.y154b_c00001{bottom:563.909430px;}
.y16cc_c00001{bottom:563.909730px;}
.y14e0_c00001{bottom:563.909880px;}
.y1326_c00001{bottom:563.910000px;}
.y18e3_c00001{bottom:563.910030px;}
.ye06_c00001{bottom:563.910105px;}
.y17b4_c00001{bottom:563.910630px;}
.ydad_c00001{bottom:563.910750px;}
.y1392_c00001{bottom:563.910930px;}
.y1c80_c00001{bottom:563.911305px;}
.ye30_c00001{bottom:563.911455px;}
.y1622_c00001{bottom:563.912130px;}
.y877_c00001{bottom:564.013650px;}
.yd9_c00001{bottom:564.224700px;}
.yf58_c00001{bottom:564.269730px;}
.y1f0a_c00001{bottom:564.269940px;}
.y1ed1_c00001{bottom:564.270090px;}
.y15ed_c00001{bottom:564.270765px;}
.y1d58_c00001{bottom:564.270930px;}
.ye5a_c00001{bottom:564.271050px;}
.ye7b_c00001{bottom:564.271200px;}
.y150a_c00001{bottom:564.271365px;}
.y1695_c00001{bottom:564.271665px;}
.y1c19_c00001{bottom:564.271740px;}
.y17c5_c00001{bottom:564.271965px;}
.y1664_c00001{bottom:564.272115px;}
.yeba_c00001{bottom:564.272130px;}
.ye96_c00001{bottom:564.272250px;}
.y100e_c00001{bottom:564.272280px;}
.y1871_c00001{bottom:564.272295px;}
.y1923_c00001{bottom:564.272415px;}
.yf80_c00001{bottom:564.272430px;}
.y1892_c00001{bottom:564.272445px;}
.y1415_c00001{bottom:564.272565px;}
.yfa8_c00001{bottom:564.272730px;}
.y159d_c00001{bottom:564.273315px;}
.y18c0_c00001{bottom:564.273465px;}
.y16e9_c00001{bottom:564.273615px;}
.y1459_c00001{bottom:564.273915px;}
.y1c40_c00001{bottom:564.273990px;}
.y147f_c00001{bottom:564.274065px;}
.y196c_c00001{bottom:564.274215px;}
.y1e5e_c00001{bottom:564.274380px;}
.y13f0_c00001{bottom:564.274515px;}
.y14aa_c00001{bottom:564.274665px;}
.y1576_c00001{bottom:564.274815px;}
.yfca_c00001{bottom:564.274980px;}
.y1735_c00001{bottom:564.275265px;}
.y1e00_c00001{bottom:564.276480px;}
.y170a_c00001{bottom:564.276615px;}
.y1dc8_c00001{bottom:564.276630px;}
.yee1_c00001{bottom:564.277380px;}
.y1d7c_c00001{bottom:564.277680px;}
.y1e30_c00001{bottom:564.277980px;}
.y1ea1_c00001{bottom:564.278880px;}
.y1067_c00001{bottom:564.279480px;}
.y1145_c00001{bottom:564.450585px;}
.y166_c00001{bottom:564.735000px;}
.y1537_c00001{bottom:564.986880px;}
.y1d9b_c00001{bottom:564.987000px;}
.y1233_c00001{bottom:565.468035px;}
.y1841_c00001{bottom:565.530255px;}
.y3a_c00001{bottom:565.801500px;}
.y9e6_c00001{bottom:565.845000px;}
.y835_c00001{bottom:566.565450px;}
.ydd8_c00001{bottom:566.609025px;}
.y1338_c00001{bottom:566.609085px;}
.yb66_c00001{bottom:566.851380px;}
.y55b_c00001{bottom:566.925000px;}
.y1850_c00001{bottom:566.972250px;}
.y1209_c00001{bottom:567.146370px;}
.y71_c00001{bottom:567.601500px;}
.y17a6_c00001{bottom:567.811080px;}
.y4f_c00001{bottom:567.961500px;}
.y187e_c00001{bottom:568.173795px;}
.yc04_c00001{bottom:568.227855px;}
.ye0_c00001{bottom:568.334850px;}
.ye8_c00001{bottom:568.335900px;}
.yf2_c00001{bottom:568.336050px;}
.yfc_c00001{bottom:568.336200px;}
.y106_c00001{bottom:568.336800px;}
.y110_c00001{bottom:568.336950px;}
.y6ba_c00001{bottom:568.725600px;}
.y393_c00001{bottom:568.905000px;}
.y7b3_c00001{bottom:569.446050px;}
.y70a_c00001{bottom:569.625750px;}
.y775_c00001{bottom:570.345150px;}
.y86_c00001{bottom:570.841500px;}
.yaed_c00001{bottom:570.927900px;}
.yab8_c00001{bottom:570.930900px;}
.yac3_c00001{bottom:570.931500px;}
.yaff_c00001{bottom:570.989550px;}
.y1a12_c00001{bottom:571.172250px;}
.y1a83_c00001{bottom:571.172625px;}
.y1a60_c00001{bottom:571.174125px;}
.y811_c00001{bottom:571.425900px;}
.yc8e_c00001{bottom:571.468650px;}
.yc9f_c00001{bottom:571.468680px;}
.ycb4_c00001{bottom:571.469310px;}
.ycc7_c00001{bottom:571.469460px;}
.y852_c00001{bottom:571.964100px;}
.yad9_c00001{bottom:572.190600px;}
.y26a_c00001{bottom:572.326350px;}
.y1a30_c00001{bottom:572.432220px;}
.y531_c00001{bottom:572.505000px;}
.y414_c00001{bottom:573.405000px;}
.y734_c00001{bottom:574.484700px;}
.y915_c00001{bottom:574.665000px;}
.yba7_c00001{bottom:575.604420px;}
.y9ff_c00001{bottom:575.607000px;}
.ya58_c00001{bottom:575.608740px;}
.y1cb3_c00001{bottom:575.640000px;}
.ybaa_c00001{bottom:575.665920px;}
.ya77_c00001{bottom:575.669730px;}
.y277_c00001{bottom:575.671350px;}
.ya33_c00001{bottom:575.671500px;}
.y283_c00001{bottom:575.672250px;}
.y28f_c00001{bottom:575.673150px;}
.y29b_c00001{bottom:575.673600px;}
.y342_c00001{bottom:575.821050px;}
.y93f_c00001{bottom:575.925000px;}
.y197_c00001{bottom:576.750750px;}
.ybc7_c00001{bottom:576.866820px;}
.yc34_c00001{bottom:576.986865px;}
.ybd7_c00001{bottom:576.989850px;}
.y11d8_c00001{bottom:577.046745px;}
.y6e3_c00001{bottom:577.725150px;}
.y1536_c00001{bottom:578.307000px;}
.yb65_c00001{bottom:578.371500px;}
.y1b1_c00001{bottom:578.596950px;}
.y1cb_c00001{bottom:578.598300px;}
.y1e5_c00001{bottom:578.599650px;}
.y1ff_c00001{bottom:578.601000px;}
.y1199_c00001{bottom:579.446970px;}
.y1217_c00001{bottom:579.447870px;}
.y1261_c00001{bottom:579.449220px;}
.y1175_c00001{bottom:579.449970px;}
.y1126_c00001{bottom:579.452100px;}
.yba3_c00001{bottom:579.564120px;}
.y1337_c00001{bottom:579.568845px;}
.yc03_c00001{bottom:579.688800px;}
.y1232_c00001{bottom:579.746745px;}
.yd8b_c00001{bottom:579.928950px;}
.y1d39_c00001{bottom:580.464360px;}
.y1d2b_c00001{bottom:580.464960px;}
.y1ad2_c00001{bottom:580.465410px;}
.y1ac6_c00001{bottom:580.466010px;}
.y1aaa_c00001{bottom:580.467000px;}
.y1f09_c00001{bottom:580.469340px;}
.yf57_c00001{bottom:580.469730px;}
.y1a9d_c00001{bottom:580.470000px;}
.y1ed0_c00001{bottom:580.470090px;}
.y15ec_c00001{bottom:580.470765px;}
.y1d57_c00001{bottom:580.470930px;}
.ye59_c00001{bottom:580.471050px;}
.ye7a_c00001{bottom:580.471200px;}
.y1509_c00001{bottom:580.471365px;}
.y1694_c00001{bottom:580.471665px;}
.y1c18_c00001{bottom:580.471740px;}
.y17c4_c00001{bottom:580.471965px;}
.y1663_c00001{bottom:580.472115px;}
.yeb9_c00001{bottom:580.472130px;}
.ye95_c00001{bottom:580.472250px;}
.y100d_c00001{bottom:580.472280px;}
.y1870_c00001{bottom:580.472295px;}
.y1922_c00001{bottom:580.472415px;}
.yf7f_c00001{bottom:580.472430px;}
.y1891_c00001{bottom:580.472445px;}
.y1414_c00001{bottom:580.472565px;}
.y159c_c00001{bottom:580.472715px;}
.yfa7_c00001{bottom:580.472730px;}
.y16e8_c00001{bottom:580.473015px;}
.y1458_c00001{bottom:580.473315px;}
.y18bf_c00001{bottom:580.473465px;}
.y196b_c00001{bottom:580.473615px;}
.y13ef_c00001{bottom:580.473915px;}
.y1c3f_c00001{bottom:580.473990px;}
.y147e_c00001{bottom:580.474065px;}
.y1e5d_c00001{bottom:580.474380px;}
.y14a9_c00001{bottom:580.474665px;}
.y1575_c00001{bottom:580.474815px;}
.yfc9_c00001{bottom:580.474980px;}
.y1734_c00001{bottom:580.475265px;}
.y1dc7_c00001{bottom:580.475430px;}
.yee0_c00001{bottom:580.476180px;}
.y1dff_c00001{bottom:580.476480px;}
.y1709_c00001{bottom:580.476615px;}
.y1e2f_c00001{bottom:580.476780px;}
.y1d7b_c00001{bottom:580.477680px;}
.y1ea0_c00001{bottom:580.478880px;}
.y1066_c00001{bottom:580.479480px;}
.y1144_c00001{bottom:580.712685px;}
.y8f4_c00001{bottom:580.784700px;}
.y9c3_c00001{bottom:581.685000px;}
.y585_c00001{bottom:581.865000px;}
.y1958_c00001{bottom:581.967300px;}
.y178b_c00001{bottom:581.968500px;}
.y336_c00001{bottom:581.970450px;}
.y111c_c00001{bottom:581.971290px;}
.y1305_c00001{bottom:581.971350px;}
.y7eb_c00001{bottom:583.125900px;}
.y1ab8_c00001{bottom:583.167510px;}
.ydd7_c00001{bottom:583.230975px;}
.y8d9_c00001{bottom:583.485150px;}
.y542_c00001{bottom:583.845000px;}
.y1cb0_c00001{bottom:583.965360px;}
.y43f_c00001{bottom:584.205000px;}
.y757_c00001{bottom:584.207250px;}
.y9a8_c00001{bottom:584.565000px;}
.y9_c00001{bottom:585.961500px;}
.y3c0_c00001{bottom:586.005000px;}
.y1a2f_c00001{bottom:586.890225px;}
.yafe_c00001{bottom:587.189550px;}
.yaec_c00001{bottom:587.190000px;}
.yab7_c00001{bottom:587.192400px;}
.yac2_c00001{bottom:587.193000px;}
.yce9_c00001{bottom:587.488031px;}
.yc8d_c00001{bottom:587.668650px;}
.ycb3_c00001{bottom:587.669310px;}
.yc9e_c00001{bottom:587.730780px;}
.ycc6_c00001{bottom:587.731560px;}
.y14d_c00001{bottom:587.775150px;}
.y502_c00001{bottom:587.805000px;}
.y4e_c00001{bottom:587.941500px;}
.y17fe_c00001{bottom:588.328560px;}
.y1365_c00001{bottom:588.328680px;}
.y1829_c00001{bottom:588.329310px;}
.y130a_c00001{bottom:588.329550px;}
.y154a_c00001{bottom:588.330780px;}
.y16cb_c00001{bottom:588.331080px;}
.y14df_c00001{bottom:588.331230px;}
.y1325_c00001{bottom:588.331350px;}
.y17b3_c00001{bottom:588.331380px;}
.y1391_c00001{bottom:588.332280px;}
.y1621_c00001{bottom:588.333480px;}
.y231_c00001{bottom:588.421950px;}
.y308_c00001{bottom:588.452100px;}
.y167_c00001{bottom:589.425300px;}
.y179_c00001{bottom:589.425750px;}
.y9e5_c00001{bottom:589.605000px;}
.y709_c00001{bottom:589.785000px;}
.y1e_c00001{bottom:589.921500px;}
.y876_c00001{bottom:590.144700px;}
.y62f_c00001{bottom:590.145000px;}
.y6b9_c00001{bottom:590.685300px;}
.y68e_c00001{bottom:590.685900px;}
.y1336_c00001{bottom:591.029790px;}
.yca_c00001{bottom:591.120000px;}
.y1bc0_c00001{bottom:591.984450px;}
.y1b95_c00001{bottom:591.988800px;}
.ye05_c00001{bottom:591.989955px;}
.ydac_c00001{bottom:591.990600px;}
.y1c7f_c00001{bottom:591.991155px;}
.ye2f_c00001{bottom:591.991305px;}
.y970_c00001{bottom:592.125750px;}
.y17a5_c00001{bottom:592.231830px;}
.y9fe_c00001{bottom:592.528211px;}
.y89a_c00001{bottom:592.845000px;}
.yc33_c00001{bottom:593.186865px;}
.ybd6_c00001{bottom:593.189850px;}
.yc60_c00001{bottom:593.245665px;}
.yd8a_c00001{bottom:593.249070px;}
.y530_c00001{bottom:593.564700px;}
.y851_c00001{bottom:593.924400px;}
.yb6_c00001{bottom:593.970300px;}
.yc0_c00001{bottom:593.970600px;}
.y8b9_c00001{bottom:594.464400px;}
.yc02_c00001{bottom:594.507750px;}
.y834_c00001{bottom:594.645300px;}
.y991_c00001{bottom:594.646350px;}
.ydd6_c00001{bottom:594.688980px;}
.y95c_c00001{bottom:595.005300px;}
.y353_c00001{bottom:595.155150px;}
.y1198_c00001{bottom:595.646970px;}
.y1216_c00001{bottom:595.647870px;}
.y1260_c00001{bottom:595.649220px;}
.y1174_c00001{bottom:595.649970px;}
.y1125_c00001{bottom:595.652100px;}
.y1a5f_c00001{bottom:595.654575px;}
.y774_c00001{bottom:595.725000px;}
.y1bb5_c00001{bottom:595.884750px;}
.ye24_c00001{bottom:595.891305px;}
.y1d2a_c00001{bottom:596.664960px;}
.y1ac5_c00001{bottom:596.666010px;}
.y1aa9_c00001{bottom:596.667000px;}
.y11d0_c00001{bottom:596.667495px;}
.y11b7_c00001{bottom:596.668200px;}
.ye58_c00001{bottom:596.669250px;}
.ye79_c00001{bottom:596.669400px;}
.yf56_c00001{bottom:596.669730px;}
.y13b2_c00001{bottom:596.670450px;}
.y1d56_c00001{bottom:596.670930px;}
.y1c17_c00001{bottom:596.671740px;}
.y159b_c00001{bottom:596.672115px;}
.yeb8_c00001{bottom:596.672130px;}
.y186f_c00001{bottom:596.672295px;}
.y1457_c00001{bottom:596.672715px;}
.yfa6_c00001{bottom:596.672730px;}
.y13ee_c00001{bottom:596.673315px;}
.y1d38_c00001{bottom:596.726460px;}
.y1ad1_c00001{bottom:596.727510px;}
.y11d7_c00001{bottom:596.728995px;}
.y1f08_c00001{bottom:596.730240px;}
.y100c_c00001{bottom:596.731530px;}
.y1ecf_c00001{bottom:596.731590px;}
.yf7e_c00001{bottom:596.731680px;}
.y15eb_c00001{bottom:596.732865px;}
.y1c3e_c00001{bottom:596.733240px;}
.y1508_c00001{bottom:596.733465px;}
.y1e5c_c00001{bottom:596.733630px;}
.ye94_c00001{bottom:596.733750px;}
.y1693_c00001{bottom:596.733765px;}
.y1921_c00001{bottom:596.733915px;}
.y1413_c00001{bottom:596.734065px;}
.y1dc6_c00001{bottom:596.734080px;}
.yfc8_c00001{bottom:596.734230px;}
.y1890_c00001{bottom:596.734545px;}
.yedf_c00001{bottom:596.734830px;}
.y16e7_c00001{bottom:596.735115px;}
.y1e2e_c00001{bottom:596.735430px;}
.y18be_c00001{bottom:596.735565px;}
.y196a_c00001{bottom:596.735715px;}
.y1dfe_c00001{bottom:596.735730px;}
.y147d_c00001{bottom:596.736165px;}
.y1574_c00001{bottom:596.736315px;}
.y14a8_c00001{bottom:596.736765px;}
.y1d7a_c00001{bottom:596.736930px;}
.y1733_c00001{bottom:596.737365px;}
.y1708_c00001{bottom:596.738115px;}
.y1e9f_c00001{bottom:596.738130px;}
.y1065_c00001{bottom:596.738730px;}
.y1143_c00001{bottom:596.912685px;}
.y1caf_c00001{bottom:597.284895px;}
.y7b2_c00001{bottom:597.346050px;}
.y1ab7_c00001{bottom:597.991140px;}
.y93e_c00001{bottom:598.065600px;}
.y1a2e_c00001{bottom:598.351170px;}
.yaa_c00001{bottom:599.324850px;}
.y11c3_c00001{bottom:599.431095px;}
.y733_c00001{bottom:599.864550px;}
.y5d2_c00001{bottom:600.405000px;}
.y379_c00001{bottom:601.019850px;}
.y35a_c00001{bottom:601.020300px;}
.y360_c00001{bottom:601.020600px;}
.y364_c00001{bottom:601.020750px;}
.y36f_c00001{bottom:601.021050px;}
.y376_c00001{bottom:601.021350px;}
.y23d_c00001{bottom:601.095450px;}
.y244_c00001{bottom:601.095900px;}
.y24f_c00001{bottom:601.096200px;}
.y313_c00001{bottom:601.126050px;}
.y70_c00001{bottom:601.441500px;}
.y1cb2_c00001{bottom:602.280000px;}
.y5b4_c00001{bottom:602.925000px;}
.y6e2_c00001{bottom:603.105000px;}
.yafd_c00001{bottom:603.389550px;}
.yaeb_c00001{bottom:603.390000px;}
.yab6_c00001{bottom:603.392400px;}
.y198_c00001{bottom:603.690450px;}
.yc8c_c00001{bottom:603.930750px;}
.yc9d_c00001{bottom:603.930780px;}
.ycb2_c00001{bottom:603.931410px;}
.ycc5_c00001{bottom:603.931560px;}
.y1309_c00001{bottom:604.408800px;}
.yad8_c00001{bottom:604.652100px;}
.y85_c00001{bottom:604.681500px;}
.y810_c00001{bottom:605.085600px;}
.y1b2_c00001{bottom:605.491500px;}
.y1cc_c00001{bottom:605.492850px;}
.y1e6_c00001{bottom:605.494200px;}
.y200_c00001{bottom:605.495550px;}
.y8_c00001{bottom:605.761500px;}
.y39_c00001{bottom:606.121500px;}
.y756_c00001{bottom:606.166950px;}
.y7ea_c00001{bottom:606.705150px;}
.y108a_c00001{bottom:606.869081px;}
.y60a_c00001{bottom:607.245000px;}
.y230_c00001{bottom:607.396350px;}
.y307_c00001{bottom:607.427100px;}
.y1335_c00001{bottom:607.648740px;}
.y9c2_c00001{bottom:607.785000px;}
.y4d_c00001{bottom:607.921500px;}
.yd89_c00001{bottom:608.008830px;}
.yce8_c00001{bottom:608.848931px;}
.y26c_c00001{bottom:609.301350px;}
.yc5f_c00001{bottom:609.445665px;}
.yc32_c00001{bottom:609.448965px;}
.ybd5_c00001{bottom:609.449100px;}
.y339_c00001{bottom:609.480300px;}
.y1d_c00001{bottom:609.721500px;}
.y708_c00001{bottom:609.944850px;}
.y103d_c00001{bottom:610.257000px;}
.yc01_c00001{bottom:610.707750px;}
.ydd5_c00001{bottom:611.310930px;}
.y8f3_c00001{bottom:611.925000px;}
.y14e_c00001{bottom:612.464850px;}
.y6b8_c00001{bottom:612.645000px;}
.y1d37_c00001{bottom:612.926460px;}
.y1d29_c00001{bottom:612.927060px;}
.y1ad0_c00001{bottom:612.927510px;}
.y1ac4_c00001{bottom:612.928110px;}
.y1aa8_c00001{bottom:612.928500px;}
.y11d6_c00001{bottom:612.928995px;}
.y1f07_c00001{bottom:612.930240px;}
.y11cf_c00001{bottom:612.930795px;}
.y11b6_c00001{bottom:612.931500px;}
.y100b_c00001{bottom:612.931530px;}
.y1ece_c00001{bottom:612.931590px;}
.yf7d_c00001{bottom:612.931680px;}
.yf55_c00001{bottom:612.931830px;}
.ye57_c00001{bottom:612.932550px;}
.ye78_c00001{bottom:612.932700px;}
.y15ea_c00001{bottom:612.932865px;}
.y1d55_c00001{bottom:612.933030px;}
.y1c3d_c00001{bottom:612.933240px;}
.y1507_c00001{bottom:612.933465px;}
.y1e5b_c00001{bottom:612.933630px;}
.ye93_c00001{bottom:612.933750px;}
.y1692_c00001{bottom:612.933765px;}
.y1c16_c00001{bottom:612.933840px;}
.y1920_c00001{bottom:612.933915px;}
.y1412_c00001{bottom:612.934065px;}
.y1dc5_c00001{bottom:612.934080px;}
.y159a_c00001{bottom:612.934215px;}
.yeb7_c00001{bottom:612.934230px;}
.y186e_c00001{bottom:612.934395px;}
.y16e6_c00001{bottom:612.934515px;}
.y188f_c00001{bottom:612.934545px;}
.y1456_c00001{bottom:612.934815px;}
.yede_c00001{bottom:612.934830px;}
.y1969_c00001{bottom:612.935115px;}
.y13ed_c00001{bottom:612.935415px;}
.y1e2d_c00001{bottom:612.935430px;}
.y18bd_c00001{bottom:612.935565px;}
.y1dfd_c00001{bottom:612.935730px;}
.y147c_c00001{bottom:612.936165px;}
.y1573_c00001{bottom:612.936315px;}
.y14a7_c00001{bottom:612.936765px;}
.y1d79_c00001{bottom:612.936930px;}
.y1732_c00001{bottom:612.937365px;}
.y1707_c00001{bottom:612.937515px;}
.y1e9e_c00001{bottom:612.938130px;}
.y1064_c00001{bottom:612.938730px;}
.y9a7_c00001{bottom:613.005000px;}
.y168_c00001{bottom:614.085000px;}
.y11c2_c00001{bottom:614.191440px;}
.y52f_c00001{bottom:614.444550px;}
.y1ab6_c00001{bottom:615.629640px;}
.y9fd_c00001{bottom:615.689111px;}
.y875_c00001{bottom:616.244700px;}
.y17fd_c00001{bottom:616.467660px;}
.y1364_c00001{bottom:616.467780px;}
.y1828_c00001{bottom:616.468410px;}
.y1549_c00001{bottom:616.469880px;}
.y16ca_c00001{bottom:616.470180px;}
.y14de_c00001{bottom:616.470330px;}
.y18e2_c00001{bottom:616.470480px;}
.y1324_c00001{bottom:616.471050px;}
.y17b2_c00001{bottom:616.471080px;}
.y1390_c00001{bottom:616.471380px;}
.y1620_c00001{bottom:616.472580px;}
.y9e4_c00001{bottom:616.605000px;}
.y167f_c00001{bottom:616.830015px;}
.y15de_c00001{bottom:616.831215px;}
.y55a_c00001{bottom:616.965000px;}
.y1308_c00001{bottom:617.669730px;}
.y6f_c00001{bottom:618.361500px;}
.y68d_c00001{bottom:618.585900px;}
.y390_c00001{bottom:619.125000px;}
.y1334_c00001{bottom:619.168860px;}
.y484_c00001{bottom:619.483500px;}
.yafc_c00001{bottom:619.589550px;}
.yaea_c00001{bottom:619.590000px;}
.yab5_c00001{bottom:619.591800px;}
.y1173_c00001{bottom:620.068320px;}
.y1b94_c00001{bottom:620.068650px;}
.ye04_c00001{bottom:620.069805px;}
.ydab_c00001{bottom:620.070450px;}
.y1a5e_c00001{bottom:620.072325px;}
.y1bbf_c00001{bottom:620.124150px;}
.y1c7e_c00001{bottom:620.130255px;}
.ye2e_c00001{bottom:620.130405px;}
.y1a82_c00001{bottom:620.132325px;}
.y181e_c00001{bottom:620.367660px;}
.y16c0_c00001{bottom:620.368080px;}
.y1385_c00001{bottom:620.368680px;}
.y1615_c00001{bottom:620.369880px;}
.y9c_c00001{bottom:620.820000px;}
.yc82_c00001{bottom:620.850480px;}
.yad7_c00001{bottom:620.852100px;}
.y773_c00001{bottom:620.925000px;}
.yd88_c00001{bottom:621.328950px;}
.y84_c00001{bottom:621.601500px;}
.y850_c00001{bottom:622.004250px;}
.y278_c00001{bottom:622.111050px;}
.y284_c00001{bottom:622.111950px;}
.y290_c00001{bottom:622.112850px;}
.y29c_c00001{bottom:622.113300px;}
.y343_c00001{bottom:622.290000px;}
.y2ac_c00001{bottom:622.725150px;}
.ydd4_c00001{bottom:622.831050px;}
.y96f_c00001{bottom:623.085000px;}
.y413_c00001{bottom:623.445000px;}
.y8d8_c00001{bottom:623.625450px;}
.y899_c00001{bottom:623.805300px;}
.y1bb4_c00001{bottom:624.024450px;}
.ye23_c00001{bottom:624.030405px;}
.y833_c00001{bottom:624.165450px;}
.ye9_c00001{bottom:624.525600px;}
.yf3_c00001{bottom:624.525750px;}
.yfd_c00001{bottom:624.525900px;}
.y107_c00001{bottom:624.526500px;}
.y111_c00001{bottom:624.526650px;}
.y3ef_c00001{bottom:624.883500px;}
.y7b1_c00001{bottom:625.426500px;}
.y7_c00001{bottom:625.561500px;}
.y990_c00001{bottom:625.606650px;}
.yc5e_c00001{bottom:625.645665px;}
.yc31_c00001{bottom:625.645965px;}
.ybd4_c00001{bottom:625.649100px;}
.yf15_c00001{bottom:625.680000px;}
.y38_c00001{bottom:626.281500px;}
.yc00_c00001{bottom:626.907750px;}
.y90c_c00001{bottom:627.225000px;}
.y4c_c00001{bottom:627.901500px;}
.yce7_c00001{bottom:628.229981px;}
.y26b_c00001{bottom:628.276350px;}
.y6e1_c00001{bottom:628.305000px;}
.y338_c00001{bottom:628.455900px;}
.y64f_c00001{bottom:628.665000px;}
.y66b_c00001{bottom:628.845000px;}
.y9fc_c00001{bottom:629.009231px;}
.y93d_c00001{bottom:629.025900px;}
.y1d36_c00001{bottom:629.126460px;}
.y1d28_c00001{bottom:629.127060px;}
.y1acf_c00001{bottom:629.127510px;}
.y1ac3_c00001{bottom:629.128110px;}
.y1aa7_c00001{bottom:629.128500px;}
.y11d5_c00001{bottom:629.128995px;}
.y11ce_c00001{bottom:629.129595px;}
.y11b5_c00001{bottom:629.129700px;}
.y1f06_c00001{bottom:629.130240px;}
.ye56_c00001{bottom:629.130750px;}
.ye77_c00001{bottom:629.130900px;}
.ye92_c00001{bottom:629.131350px;}
.y100a_c00001{bottom:629.131530px;}
.y1ecd_c00001{bottom:629.131590px;}
.yf7c_c00001{bottom:629.131680px;}
.yf54_c00001{bottom:629.131830px;}
.y13b1_c00001{bottom:629.131950px;}
.y15e9_c00001{bottom:629.132865px;}
.y1d54_c00001{bottom:629.133030px;}
.y1c3c_c00001{bottom:629.133240px;}
.y1506_c00001{bottom:629.133465px;}
.yeb6_c00001{bottom:629.133630px;}
.y1691_c00001{bottom:629.133765px;}
.y1c15_c00001{bottom:629.133840px;}
.y16e5_c00001{bottom:629.133915px;}
.y1411_c00001{bottom:629.134065px;}
.y1dc4_c00001{bottom:629.134080px;}
.y1599_c00001{bottom:629.134215px;}
.yfa5_c00001{bottom:629.134230px;}
.y186d_c00001{bottom:629.134395px;}
.y1968_c00001{bottom:629.134515px;}
.y188e_c00001{bottom:629.134545px;}
.y1455_c00001{bottom:629.134815px;}
.yedd_c00001{bottom:629.134830px;}
.y13ec_c00001{bottom:629.135415px;}
.y1e2c_c00001{bottom:629.135430px;}
.y15c1_c00001{bottom:629.135565px;}
.y1dfc_c00001{bottom:629.135730px;}
.y147b_c00001{bottom:629.136165px;}
.y1572_c00001{bottom:629.136315px;}
.y14a6_c00001{bottom:629.136765px;}
.y1706_c00001{bottom:629.136915px;}
.y1d78_c00001{bottom:629.136930px;}
.y1731_c00001{bottom:629.137365px;}
.y1e9d_c00001{bottom:629.138130px;}
.y1063_c00001{bottom:629.138730px;}
.y9bb_c00001{bottom:629.341500px;}
.y1c_c00001{bottom:629.521500px;}
.yda_c00001{bottom:629.640000px;}
.y199_c00001{bottom:630.570900px;}
.y1ab5_c00001{bottom:631.829640px;}
.y11c1_c00001{bottom:631.829940px;}
.y57f_c00001{bottom:632.083500px;}
.y1b3_c00001{bottom:632.416500px;}
.y1cd_c00001{bottom:632.417850px;}
.y1e7_c00001{bottom:632.419200px;}
.y201_c00001{bottom:632.420550px;}
.y1307_c00001{bottom:632.488680px;}
.y80f_c00001{bottom:632.985600px;}
.y167e_c00001{bottom:633.030015px;}
.y95b_c00001{bottom:633.705300px;}
.y540_c00001{bottom:633.883500px;}
.y56c_c00001{bottom:634.245000px;}
.y755_c00001{bottom:634.246800px;}
.y8b8_c00001{bottom:634.604700px;}
.y6b7_c00001{bottom:634.605300px;}
.y6e_c00001{bottom:635.281500px;}
.y52e_c00001{bottom:635.504850px;}
.yae9_c00001{bottom:635.790000px;}
.ydd3_c00001{bottom:635.790810px;}
.yab4_c00001{bottom:635.791200px;}
.yafb_c00001{bottom:635.848200px;}
.y609_c00001{bottom:635.865000px;}
.y103c_c00001{bottom:636.840000px;}
.y14f_c00001{bottom:637.170300px;}
.y1cae_c00001{bottom:637.244595px;}
.y4f0_c00001{bottom:638.025000px;}
.y83_c00001{bottom:638.521500px;}
.yad6_c00001{bottom:638.549100px;}
.y169_c00001{bottom:638.789850px;}
.yb08_c00001{bottom:639.751350px;}
.y732_c00001{bottom:640.004850px;}
.y9a6_c00001{bottom:640.005000px;}
.y7e9_c00001{bottom:640.545900px;}
.y68c_c00001{bottom:640.546200px;}
.yc9c_c00001{bottom:641.308830px;}
.yc5d_c00001{bottom:641.845665px;}
.yc30_c00001{bottom:641.845965px;}
.ybd3_c00001{bottom:641.849100px;}
.y1cb1_c00001{bottom:642.181500px;}
.y874_c00001{bottom:642.704400px;}
.y464_c00001{bottom:642.883500px;}
.y8f2_c00001{bottom:642.884700px;}
.ybff_c00001{bottom:643.107750px;}
.y9e3_c00001{bottom:643.605000px;}
.y1197_c00001{bottom:644.545170px;}
.y1215_c00001{bottom:644.546070px;}
.y1bbe_c00001{bottom:644.546100px;}
.y125f_c00001{bottom:644.547420px;}
.y17fc_c00001{bottom:644.547510px;}
.y1363_c00001{bottom:644.547630px;}
.y1172_c00001{bottom:644.548170px;}
.y1827_c00001{bottom:644.548260px;}
.y1b93_c00001{bottom:644.549100px;}
.y1548_c00001{bottom:644.549730px;}
.y16c9_c00001{bottom:644.550030px;}
.y14dd_c00001{bottom:644.550180px;}
.ye03_c00001{bottom:644.550255px;}
.yd87_c00001{bottom:644.550300px;}
.y18e1_c00001{bottom:644.550330px;}
.y1a81_c00001{bottom:644.550675px;}
.y17b1_c00001{bottom:644.550930px;}
.y1c7d_c00001{bottom:644.551005px;}
.ye2d_c00001{bottom:644.551155px;}
.y138f_c00001{bottom:644.551230px;}
.y1a5d_c00001{bottom:644.552175px;}
.y161f_c00001{bottom:644.552430px;}
.y1d35_c00001{bottom:645.326460px;}
.y1d27_c00001{bottom:645.327060px;}
.y1ace_c00001{bottom:645.327510px;}
.y1ac2_c00001{bottom:645.328110px;}
.y1aa6_c00001{bottom:645.328500px;}
.y11d4_c00001{bottom:645.328995px;}
.y11cd_c00001{bottom:645.329595px;}
.y11b4_c00001{bottom:645.329700px;}
.y1f05_c00001{bottom:645.330240px;}
.ye55_c00001{bottom:645.330750px;}
.ye76_c00001{bottom:645.330900px;}
.ye91_c00001{bottom:645.331350px;}
.y1009_c00001{bottom:645.331530px;}
.y1ecc_c00001{bottom:645.331590px;}
.yf7b_c00001{bottom:645.331680px;}
.yf53_c00001{bottom:645.331830px;}
.y13b0_c00001{bottom:645.331950px;}
.y15e8_c00001{bottom:645.332865px;}
.y1d53_c00001{bottom:645.333030px;}
.y1c3b_c00001{bottom:645.333240px;}
.y16e4_c00001{bottom:645.333315px;}
.y1505_c00001{bottom:645.333465px;}
.yeb5_c00001{bottom:645.333630px;}
.y1690_c00001{bottom:645.333765px;}
.y1c14_c00001{bottom:645.333840px;}
.y191f_c00001{bottom:645.333915px;}
.y1410_c00001{bottom:645.334065px;}
.y1dc3_c00001{bottom:645.334080px;}
.y1598_c00001{bottom:645.334215px;}
.yfc7_c00001{bottom:645.334230px;}
.y186c_c00001{bottom:645.334395px;}
.y188d_c00001{bottom:645.334545px;}
.y1454_c00001{bottom:645.334815px;}
.yedc_c00001{bottom:645.334830px;}
.y15c0_c00001{bottom:645.334965px;}
.y13eb_c00001{bottom:645.335415px;}
.y1e2b_c00001{bottom:645.335430px;}
.y18bc_c00001{bottom:645.335565px;}
.y1dfb_c00001{bottom:645.335730px;}
.y147a_c00001{bottom:645.336165px;}
.y1571_c00001{bottom:645.336315px;}
.y14a5_c00001{bottom:645.336765px;}
.y1d77_c00001{bottom:645.336930px;}
.y1730_c00001{bottom:645.337365px;}
.y1e9c_c00001{bottom:645.338130px;}
.y1062_c00001{bottom:645.338730px;}
.y6_c00001{bottom:645.361500px;}
.y1306_c00001{bottom:645.808800px;}
.y772_c00001{bottom:646.125000px;}
.y37_c00001{bottom:646.441500px;}
.y707_c00001{bottom:647.024700px;}
.ydd2_c00001{bottom:647.249400px;}
.y9c1_c00001{bottom:647.385000px;}
.y7b0_c00001{bottom:647.386200px;}
.yce6_c00001{bottom:647.548931px;}
.y9fb_c00001{bottom:647.608031px;}
.y4b_c00001{bottom:647.881500px;}
.y1ab4_c00001{bottom:648.088890px;}
.y11c0_c00001{bottom:648.089190px;}
.y181d_c00001{bottom:648.447510px;}
.y16bf_c00001{bottom:648.447930px;}
.y1384_c00001{bottom:648.448530px;}
.y1614_c00001{bottom:648.449730px;}
.y1c76_c00001{bottom:648.450855px;}
.y167d_c00001{bottom:649.230015px;}
.y1b_c00001{bottom:649.321500px;}
.y84f_c00001{bottom:649.904250px;}
.y3bf_c00001{bottom:650.084700px;}
.y96e_c00001{bottom:650.085000px;}
.yc8b_c00001{bottom:650.127750px;}
.ycb1_c00001{bottom:650.129610px;}
.y5d1_c00001{bottom:650.445000px;}
.y1cad_c00001{bottom:650.564130px;}
.y78d_c00001{bottom:650.805690px;}
.y43c_c00001{bottom:650.983500px;}
.y6d_c00001{bottom:652.201500px;}
.yf14_c00001{bottom:652.320000px;}
.yaae_c00001{bottom:652.768980px;}
.y2ab_c00001{bottom:652.784850px;}
.yc9b_c00001{bottom:652.828950px;}
.y6e0_c00001{bottom:653.505000px;}
.y898_c00001{bottom:654.945000px;}
.y80e_c00001{bottom:654.945900px;}
.y82_c00001{bottom:655.441500px;}
.y4b9_c00001{bottom:656.025000px;}
.y52d_c00001{bottom:656.564550px;}
.y6b6_c00001{bottom:656.565000px;}
.y8b7_c00001{bottom:656.745000px;}
.y98f_c00001{bottom:656.746350px;}
.y19a_c00001{bottom:657.510600px;}
.y832_c00001{bottom:657.825750px;}
.yc2f_c00001{bottom:658.045965px;}
.ybd2_c00001{bottom:658.049100px;}
.yc5c_c00001{bottom:658.104915px;}
.y1b4_c00001{bottom:659.311650px;}
.y1ce_c00001{bottom:659.313000px;}
.y1e8_c00001{bottom:659.314350px;}
.y202_c00001{bottom:659.315700px;}
.ybfe_c00001{bottom:659.369850px;}
.y93c_c00001{bottom:660.165600px;}
.ydd1_c00001{bottom:660.209160px;}
.y62c_c00001{bottom:660.345000px;}
.y754_c00001{bottom:660.346800px;}
.y1d34_c00001{bottom:661.585710px;}
.y1d26_c00001{bottom:661.586310px;}
.y1acd_c00001{bottom:661.586760px;}
.y1ac1_c00001{bottom:661.587360px;}
.y1aa5_c00001{bottom:661.587750px;}
.y11cc_c00001{bottom:661.588245px;}
.y11b3_c00001{bottom:661.589400px;}
.y1f04_c00001{bottom:661.589940px;}
.y1d09_c00001{bottom:661.590180px;}
.ye54_c00001{bottom:661.590450px;}
.ye75_c00001{bottom:661.590600px;}
.y1008_c00001{bottom:661.590780px;}
.y1f3e_c00001{bottom:661.590840px;}
.yf7a_c00001{bottom:661.590930px;}
.ye90_c00001{bottom:661.591050px;}
.y1ecb_c00001{bottom:661.591290px;}
.yf52_c00001{bottom:661.591530px;}
.y13af_c00001{bottom:661.591650px;}
.y15e7_c00001{bottom:661.592115px;}
.y1e5a_c00001{bottom:661.592280px;}
.y16e3_c00001{bottom:661.592565px;}
.y1504_c00001{bottom:661.592715px;}
.y1d52_c00001{bottom:661.592730px;}
.yfc6_c00001{bottom:661.592880px;}
.y1c3a_c00001{bottom:661.592940px;}
.y168f_c00001{bottom:661.593015px;}
.y1c13_c00001{bottom:661.593090px;}
.y191e_c00001{bottom:661.593165px;}
.y140f_c00001{bottom:661.593315px;}
.yeb4_c00001{bottom:661.593330px;}
.y186b_c00001{bottom:661.593645px;}
.y188c_c00001{bottom:661.593795px;}
.y1597_c00001{bottom:661.593915px;}
.y1e92_c00001{bottom:661.593930px;}
.yedb_c00001{bottom:661.594080px;}
.y1453_c00001{bottom:661.594515px;}
.y15bf_c00001{bottom:661.594665px;}
.y1e2a_c00001{bottom:661.594680px;}
.y18bb_c00001{bottom:661.594815px;}
.y1dfa_c00001{bottom:661.594980px;}
.y13ea_c00001{bottom:661.595115px;}
.y1479_c00001{bottom:661.595415px;}
.y14a4_c00001{bottom:661.596015px;}
.y1d76_c00001{bottom:661.596180px;}
.y172f_c00001{bottom:661.596615px;}
.y1e9b_c00001{bottom:661.597380px;}
.y1061_c00001{bottom:661.597980px;}
.y150_c00001{bottom:661.830000px;}
.y7e8_c00001{bottom:662.505150px;}
.y68b_c00001{bottom:662.506500px;}
.y103b_c00001{bottom:663.423000px;}
.y16a_c00001{bottom:663.480150px;}
.y8d7_c00001{bottom:663.585150px;}
.y1cac_c00001{bottom:663.884250px;}
.y1ab3_c00001{bottom:664.288890px;}
.y11bf_c00001{bottom:664.289190px;}
.y608_c00001{bottom:664.665000px;}
.y731_c00001{bottom:665.384700px;}
.yffe_c00001{bottom:665.491530px;}
.y167c_c00001{bottom:665.492115px;}
.yf71_c00001{bottom:665.492730px;}
.y1db9_c00001{bottom:665.494680px;}
.yed2_c00001{bottom:665.495280px;}
.y1e21_c00001{bottom:665.495880px;}
.y1443_c00001{bottom:665.581500px;}
.yc8a_c00001{bottom:666.327750px;}
.yc9a_c00001{bottom:666.328950px;}
.ycc4_c00001{bottom:666.329160px;}
.ycb0_c00001{bottom:666.329610px;}
.yce5_c00001{bottom:666.929981px;}
.y9fa_c00001{bottom:666.989081px;}
.y559_c00001{bottom:667.005000px;}
.y1bbd_c00001{bottom:669.025350px;}
.y1196_c00001{bottom:669.025620px;}
.y1214_c00001{bottom:669.025920px;}
.y125e_c00001{bottom:669.027270px;}
.y17fb_c00001{bottom:669.027360px;}
.y1362_c00001{bottom:669.027480px;}
.y1826_c00001{bottom:669.027510px;}
.y1171_c00001{bottom:669.028020px;}
.y1b92_c00001{bottom:669.028950px;}
.y1547_c00001{bottom:669.029580px;}
.y1c7c_c00001{bottom:669.029655px;}
.ye2c_c00001{bottom:669.029805px;}
.y16c8_c00001{bottom:669.029880px;}
.y14dc_c00001{bottom:669.030030px;}
.ye02_c00001{bottom:669.030105px;}
.yd86_c00001{bottom:669.030150px;}
.y18e0_c00001{bottom:669.030180px;}
.y1a80_c00001{bottom:669.030525px;}
.y17b0_c00001{bottom:669.030780px;}
.y138e_c00001{bottom:669.031080px;}
.y1a5c_c00001{bottom:669.032025px;}
.y161e_c00001{bottom:669.032280px;}
.y6c_c00001{bottom:669.121500px;}
.y38f_c00001{bottom:669.165000px;}
.y7af_c00001{bottom:669.345450px;}
.y483_c00001{bottom:669.525000px;}
.y9e2_c00001{bottom:670.605000px;}
.y873_c00001{bottom:670.784850px;}
.ydd0_c00001{bottom:671.729280px;}
.y81_c00001{bottom:672.361500px;}
.y95a_c00001{bottom:672.585150px;}
.y1c75_c00001{bottom:672.931305px;}
.yad5_c00001{bottom:673.230150px;}
.y411_c00001{bottom:673.665000px;}
.y8f1_c00001{bottom:674.025000px;}
.yc5b_c00001{bottom:674.304915px;}
.yc2e_c00001{bottom:674.308065px;}
.ybd1_c00001{bottom:674.310600px;}
.ybfd_c00001{bottom:675.569850px;}
.y1ccb_c00001{bottom:676.440000px;}
.y80d_c00001{bottom:677.085600px;}
.y1cab_c00001{bottom:677.145180px;}
.y8b6_c00001{bottom:677.444400px;}
.y84e_c00001{bottom:677.444550px;}
.y1d33_c00001{bottom:677.785710px;}
.y1d25_c00001{bottom:677.786310px;}
.y1acc_c00001{bottom:677.786760px;}
.y1ac0_c00001{bottom:677.787360px;}
.y1aa4_c00001{bottom:677.787750px;}
.y11cb_c00001{bottom:677.788245px;}
.y1f03_c00001{bottom:677.789340px;}
.y11b2_c00001{bottom:677.789400px;}
.ye74_c00001{bottom:677.790000px;}
.y1d08_c00001{bottom:677.790180px;}
.ye53_c00001{bottom:677.790450px;}
.y1007_c00001{bottom:677.790780px;}
.y1f3d_c00001{bottom:677.790840px;}
.yf79_c00001{bottom:677.790930px;}
.ye8f_c00001{bottom:677.791050px;}
.y1eca_c00001{bottom:677.791290px;}
.y15e6_c00001{bottom:677.791515px;}
.yf51_c00001{bottom:677.791530px;}
.y1647_c00001{bottom:677.792115px;}
.y1e59_c00001{bottom:677.792280px;}
.y16e2_c00001{bottom:677.792565px;}
.y1503_c00001{bottom:677.792715px;}
.yeb3_c00001{bottom:677.792730px;}
.yfc5_c00001{bottom:677.792880px;}
.y1c39_c00001{bottom:677.792940px;}
.y168e_c00001{bottom:677.793015px;}
.y1c12_c00001{bottom:677.793090px;}
.y191d_c00001{bottom:677.793165px;}
.y140e_c00001{bottom:677.793315px;}
.y1dc2_c00001{bottom:677.793330px;}
.y186a_c00001{bottom:677.793645px;}
.y188b_c00001{bottom:677.793795px;}
.y1596_c00001{bottom:677.793915px;}
.yeda_c00001{bottom:677.794080px;}
.y1452_c00001{bottom:677.794515px;}
.y15be_c00001{bottom:677.794665px;}
.y1e29_c00001{bottom:677.794680px;}
.y18ba_c00001{bottom:677.794815px;}
.y1df9_c00001{bottom:677.794980px;}
.y13e9_c00001{bottom:677.795115px;}
.y1478_c00001{bottom:677.795415px;}
.y14a3_c00001{bottom:677.796015px;}
.y1d75_c00001{bottom:677.796180px;}
.y172e_c00001{bottom:677.796615px;}
.y1e9a_c00001{bottom:677.797380px;}
.y1060_c00001{bottom:677.797980px;}
.yc1_c00001{bottom:677.805000px;}
.y6b5_c00001{bottom:678.527400px;}
.y250_c00001{bottom:678.885000px;}
.yf13_c00001{bottom:678.903000px;}
.y5f5_c00001{bottom:680.325600px;}
.y1ab2_c00001{bottom:680.488890px;}
.y11be_c00001{bottom:680.489190px;}
.y1cca_c00001{bottom:680.997000px;}
.y1efb_c00001{bottom:681.690990px;}
.yffd_c00001{bottom:681.691530px;}
.y167b_c00001{bottom:681.692115px;}
.yf70_c00001{bottom:681.692730px;}
.y1c31_c00001{bottom:681.693990px;}
.y1db8_c00001{bottom:681.694680px;}
.yed1_c00001{bottom:681.695280px;}
.y1e20_c00001{bottom:681.695880px;}
.yae8_c00001{bottom:681.988200px;}
.yab3_c00001{bottom:681.989400px;}
.yc89_c00001{bottom:682.527750px;}
.yc99_c00001{bottom:682.528950px;}
.ycc3_c00001{bottom:682.529160px;}
.ycaf_c00001{bottom:682.529610px;}
.y753_c00001{bottom:682.846800px;}
.y53f_c00001{bottom:684.105000px;}
.y19b_c00001{bottom:684.391050px;}
.y7e7_c00001{bottom:684.464850px;}
.y56b_c00001{bottom:684.465000px;}
.y68a_c00001{bottom:684.466800px;}
.ydcf_c00001{bottom:684.689040px;}
.yad4_c00001{bottom:684.749685px;}
.y897_c00001{bottom:685.905300px;}
.y831_c00001{bottom:685.905600px;}
.y1b5_c00001{bottom:686.236650px;}
.y1cf_c00001{bottom:686.238000px;}
.y1e9_c00001{bottom:686.239350px;}
.y203_c00001{bottom:686.240700px;}
.yce4_c00001{bottom:686.308031px;}
.y9f9_c00001{bottom:686.370131px;}
.y52c_c00001{bottom:686.445000px;}
.y771_c00001{bottom:686.448300px;}
.y151_c00001{bottom:686.519700px;}
.y36_c00001{bottom:686.761500px;}
.y98e_c00001{bottom:687.706650px;}
.y4a_c00001{bottom:687.841500px;}
.y501_c00001{bottom:688.065000px;}
.y16b_c00001{bottom:688.170450px;}
.y7d8_c00001{bottom:688.782900px;}
.y9ba_c00001{bottom:690.044700px;}
.y103a_c00001{bottom:690.061500px;}
.y1caa_c00001{bottom:690.465300px;}
.yc5a_c00001{bottom:690.504915px;}
.yc2d_c00001{bottom:690.508065px;}
.ybd0_c00001{bottom:690.510600px;}
.y730_c00001{bottom:690.584700px;}
.y5f6_c00001{bottom:690.585000px;}
.y7ae_c00001{bottom:691.305150px;}
.y3ed_c00001{bottom:691.483500px;}
.y2aa_c00001{bottom:691.665300px;}
.ybfc_c00001{bottom:691.769850px;}
.y1442_c00001{bottom:692.223000px;}
.y706_c00001{bottom:693.105150px;}
.y604_c00001{bottom:693.283500px;}
.y1195_c00001{bottom:693.446370px;}
.y1bbc_c00001{bottom:693.446700px;}
.y125d_c00001{bottom:693.446820px;}
.y1213_c00001{bottom:693.447270px;}
.y1170_c00001{bottom:693.447570px;}
.y17fa_c00001{bottom:693.448710px;}
.y1361_c00001{bottom:693.448830px;}
.ye01_c00001{bottom:693.449655px;}
.yd85_c00001{bottom:693.449700px;}
.y1825_c00001{bottom:693.449910px;}
.y1c7b_c00001{bottom:693.450405px;}
.ye2b_c00001{bottom:693.450555px;}
.y14db_c00001{bottom:693.450780px;}
.y1546_c00001{bottom:693.450930px;}
.y16c7_c00001{bottom:693.451230px;}
.y17af_c00001{bottom:693.451530px;}
.y1a7f_c00001{bottom:693.451875px;}
.y138d_c00001{bottom:693.452430px;}
.y1a5b_c00001{bottom:693.452775px;}
.y161d_c00001{bottom:693.453630px;}
.y1d32_c00001{bottom:693.985710px;}
.y1d24_c00001{bottom:693.986310px;}
.y1acb_c00001{bottom:693.986760px;}
.y1abf_c00001{bottom:693.987360px;}
.y1aa3_c00001{bottom:693.987750px;}
.y11ca_c00001{bottom:693.988245px;}
.y1f02_c00001{bottom:693.988740px;}
.ye73_c00001{bottom:693.989400px;}
.y1d07_c00001{bottom:693.990180px;}
.ye52_c00001{bottom:693.990450px;}
.y1006_c00001{bottom:693.990780px;}
.y1f3c_c00001{bottom:693.990840px;}
.y15e5_c00001{bottom:693.990915px;}
.yf78_c00001{bottom:693.990930px;}
.ye8e_c00001{bottom:693.991050px;}
.y1ec9_c00001{bottom:693.991290px;}
.yf50_c00001{bottom:693.991530px;}
.y1646_c00001{bottom:693.992115px;}
.y1e58_c00001{bottom:693.992280px;}
.y16e1_c00001{bottom:693.992565px;}
.y1502_c00001{bottom:693.992715px;}
.yeb2_c00001{bottom:693.992730px;}
.yfc4_c00001{bottom:693.992880px;}
.y1c38_c00001{bottom:693.992940px;}
.y168d_c00001{bottom:693.993015px;}
.y1c11_c00001{bottom:693.993090px;}
.y191c_c00001{bottom:693.993165px;}
.y140d_c00001{bottom:693.993315px;}
.y1dc1_c00001{bottom:693.993330px;}
.y1869_c00001{bottom:693.993645px;}
.y188a_c00001{bottom:693.993795px;}
.y14fa_c00001{bottom:693.993915px;}
.yed9_c00001{bottom:693.994080px;}
.y13e8_c00001{bottom:693.994515px;}
.y15bd_c00001{bottom:693.994665px;}
.y1e28_c00001{bottom:693.994680px;}
.y1570_c00001{bottom:693.994815px;}
.y1df8_c00001{bottom:693.994980px;}
.y1477_c00001{bottom:693.995415px;}
.y14a2_c00001{bottom:693.996015px;}
.y1d74_c00001{bottom:693.996180px;}
.y172d_c00001{bottom:693.996615px;}
.y1e99_c00001{bottom:693.997380px;}
.y105f_c00001{bottom:693.997980px;}
.y9a5_c00001{bottom:694.005000px;}
.ydce_c00001{bottom:696.209160px;}
.y6df_c00001{bottom:696.525150px;}
.y1ab1_c00001{bottom:696.688890px;}
.y11bd_c00001{bottom:696.689190px;}
.y78c_c00001{bottom:696.885540px;}
.y8d6_c00001{bottom:697.065000px;}
.y1c74_c00001{bottom:697.348455px;}
.y9e1_c00001{bottom:697.605000px;}
.yad3_c00001{bottom:697.709445px;}
.y1efa_c00001{bottom:697.890990px;}
.y167a_c00001{bottom:697.892115px;}
.y15dd_c00001{bottom:697.893315px;}
.y14fb_c00001{bottom:697.893915px;}
.y1c30_c00001{bottom:697.893990px;}
.y93b_c00001{bottom:697.965600px;}
.y3be_c00001{bottom:698.145000px;}
.y872_c00001{bottom:698.684850px;}
.yc88_c00001{bottom:698.727750px;}
.ycae_c00001{bottom:698.729610px;}
.yc98_c00001{bottom:698.789850px;}
.ycc2_c00001{bottom:698.790660px;}
.y64e_c00001{bottom:698.865000px;}
.y66a_c00001{bottom:699.045000px;}
.y80c_c00001{bottom:699.045900px;}
.y2a8_c00001{bottom:700.305000px;}
.y5b3_c00001{bottom:700.665000px;}
.y5f4_c00001{bottom:701.385300px;}
.y6b_c00001{bottom:702.961500px;}
.y1ca9_c00001{bottom:703.785420px;}
.y84d_c00001{bottom:704.084250px;}
.y5_c00001{bottom:704.761500px;}
.y752_c00001{bottom:704.807100px;}
.y8f0_c00001{bottom:704.985450px;}
.y9f8_c00001{bottom:705.329250px;}
.yf11_c00001{bottom:705.477000px;}
.y1535_c00001{bottom:705.543000px;}
.y80_c00001{bottom:706.201500px;}
.y4c8_c00001{bottom:706.245000px;}
.y689_c00001{bottom:706.427100px;}
.yae7_c00001{bottom:706.467450px;}
.yafa_c00001{bottom:706.467750px;}
.yab2_c00001{bottom:706.469850px;}
.yc2c_c00001{bottom:706.708065px;}
.ybcf_c00001{bottom:706.710600px;}
.yc59_c00001{bottom:706.764165px;}
.y35_c00001{bottom:706.921500px;}
.y49_c00001{bottom:707.821500px;}
.ybfb_c00001{bottom:707.969850px;}
.y8b5_c00001{bottom:708.404700px;}
.y1a_c00001{bottom:708.721500px;}
.ydcd_c00001{bottom:709.110330px;}
.yad2_c00001{bottom:709.167450px;}
.y45d_c00001{bottom:709.483500px;}
.y1d23_c00001{bottom:710.185710px;}
.y1abe_c00001{bottom:710.186760px;}
.y1aa2_c00001{bottom:710.187750px;}
.y11c9_c00001{bottom:710.188245px;}
.ye72_c00001{bottom:710.188800px;}
.ye51_c00001{bottom:710.189850px;}
.yf4f_c00001{bottom:710.191530px;}
.yeb1_c00001{bottom:710.192730px;}
.y1c10_c00001{bottom:710.193090px;}
.y1868_c00001{bottom:710.193645px;}
.y14f9_c00001{bottom:710.193915px;}
.y13e7_c00001{bottom:710.194515px;}
.y1d31_c00001{bottom:710.244360px;}
.y1aca_c00001{bottom:710.245410px;}
.y11d3_c00001{bottom:710.247495px;}
.y1f01_c00001{bottom:710.248440px;}
.y1f3b_c00001{bottom:710.250090px;}
.ye8d_c00001{bottom:710.250300px;}
.y1ec8_c00001{bottom:710.250540px;}
.y15e4_c00001{bottom:710.250615px;}
.y1645_c00001{bottom:710.251365px;}
.y16e0_c00001{bottom:710.251815px;}
.y1501_c00001{bottom:710.251965px;}
.y168c_c00001{bottom:710.252265px;}
.y1005_c00001{bottom:710.252280px;}
.y191b_c00001{bottom:710.252415px;}
.y140c_c00001{bottom:710.252565px;}
.y1889_c00001{bottom:710.253045px;}
.yf77_c00001{bottom:710.253630px;}
.y15bc_c00001{bottom:710.253915px;}
.y18b9_c00001{bottom:710.254065px;}
.y1e57_c00001{bottom:710.254380px;}
.y156f_c00001{bottom:710.254515px;}
.y1476_c00001{bottom:710.254665px;}
.yfc3_c00001{bottom:710.254980px;}
.y1c37_c00001{bottom:710.255040px;}
.y14a1_c00001{bottom:710.255265px;}
.y1dc0_c00001{bottom:710.255430px;}
.y172c_c00001{bottom:710.255865px;}
.yed8_c00001{bottom:710.256180px;}
.y1e27_c00001{bottom:710.256780px;}
.y1df7_c00001{bottom:710.257080px;}
.y1d73_c00001{bottom:710.258280px;}
.y1e98_c00001{bottom:710.259480px;}
.y105e_c00001{bottom:710.260080px;}
.y6b4_c00001{bottom:711.107850px;}
.y152_c00001{bottom:711.210000px;}
.y959_c00001{bottom:711.285150px;}
.y19c_c00001{bottom:711.330750px;}
.y1ab0_c00001{bottom:711.448650px;}
.y112_c00001{bottom:711.465000px;}
.y770_c00001{bottom:711.648300px;}
.y16c_c00001{bottom:712.875300px;}
.y11bc_c00001{bottom:712.948440px;}
.y52b_c00001{bottom:713.083500px;}
.y1b6_c00001{bottom:713.131800px;}
.y1d0_c00001{bottom:713.133150px;}
.y1ea_c00001{bottom:713.134500px;}
.y204_c00001{bottom:713.135850px;}
.y7ad_c00001{bottom:713.265450px;}
.y830_c00001{bottom:713.805600px;}
.y7e6_c00001{bottom:713.985000px;}
.yffc_c00001{bottom:714.150780px;}
.y1679_c00001{bottom:714.151365px;}
.yf6f_c00001{bottom:714.151980px;}
.y15dc_c00001{bottom:714.152565px;}
.y146f_c00001{bottom:714.153165px;}
.y1406_c00001{bottom:714.153765px;}
.y1db7_c00001{bottom:714.154380px;}
.yed0_c00001{bottom:714.154980px;}
.y1e1f_c00001{bottom:714.155580px;}
.yc87_c00001{bottom:714.989850px;}
.ycc1_c00001{bottom:714.990660px;}
.ycad_c00001{bottom:714.991110px;}
.y7d7_c00001{bottom:715.062750px;}
.y72f_c00001{bottom:715.964550px;}
.y1039_c00001{bottom:716.638500px;}
.y896_c00001{bottom:717.045600px;}
.y1ca8_c00001{bottom:717.105540px;}
.y558_c00001{bottom:717.225000px;}
.y43b_c00001{bottom:717.583500px;}
.y1bbb_c00001{bottom:717.925950px;}
.y1194_c00001{bottom:717.926820px;}
.y1212_c00001{bottom:717.927120px;}
.y125c_c00001{bottom:717.927270px;}
.y116f_c00001{bottom:717.928020px;}
.y17f9_c00001{bottom:717.928560px;}
.y1360_c00001{bottom:717.928680px;}
.ye00_c00001{bottom:717.929505px;}
.y1824_c00001{bottom:717.929760px;}
.yd84_c00001{bottom:717.930150px;}
.ye2a_c00001{bottom:717.930405px;}
.y14da_c00001{bottom:717.930630px;}
.y1545_c00001{bottom:717.930780px;}
.y1c7a_c00001{bottom:717.930855px;}
.y16c6_c00001{bottom:717.931080px;}
.y17ae_c00001{bottom:717.931380px;}
.y138c_c00001{bottom:717.931680px;}
.y1a7e_c00001{bottom:717.932325px;}
.y1a5a_c00001{bottom:717.932625px;}
.y161c_c00001{bottom:717.933480px;}
.y705_c00001{bottom:718.305150px;}
.y1440_c00001{bottom:718.797000px;}
.y98d_c00001{bottom:718.846350px;}
.y38d_c00001{bottom:719.205000px;}
.y482_c00001{bottom:719.565000px;}
.y6a_c00001{bottom:719.881500px;}
.ydcc_c00001{bottom:720.630450px;}
.y9a4_c00001{bottom:721.005000px;}
.yad1_c00001{bottom:722.127795px;}
.y5f3_c00001{bottom:722.445600px;}
.y80b_c00001{bottom:722.625750px;}
.yc58_c00001{bottom:722.964165px;}
.yc2b_c00001{bottom:722.967315px;}
.ybce_c00001{bottom:722.969850px;}
.y7f_c00001{bottom:723.121500px;}
.y9f7_c00001{bottom:723.688950px;}
.y40e_c00001{bottom:723.705000px;}
.ybfa_c00001{bottom:724.229550px;}
.y4_c00001{bottom:724.561500px;}
.y3b9_c00001{bottom:724.605000px;}
.y84c_c00001{bottom:726.044550px;}
.y1d30_c00001{bottom:726.444360px;}
.y1ac9_c00001{bottom:726.445410px;}
.y1abd_c00001{bottom:726.446010px;}
.y1aa1_c00001{bottom:726.447000px;}
.y11c8_c00001{bottom:726.447495px;}
.y1f00_c00001{bottom:726.448440px;}
.ye71_c00001{bottom:726.448500px;}
.ye50_c00001{bottom:726.449100px;}
.ye8c_c00001{bottom:726.449700px;}
.y1f3a_c00001{bottom:726.450090px;}
.y1ec7_c00001{bottom:726.450540px;}
.y15e3_c00001{bottom:726.450615px;}
.yf4e_c00001{bottom:726.450780px;}
.y1644_c00001{bottom:726.451365px;}
.y16df_c00001{bottom:726.451815px;}
.y1500_c00001{bottom:726.451965px;}
.yeb0_c00001{bottom:726.451980px;}
.y1c36_c00001{bottom:726.452040px;}
.y168b_c00001{bottom:726.452265px;}
.y1004_c00001{bottom:726.452280px;}
.y1c0f_c00001{bottom:726.452340px;}
.y191a_c00001{bottom:726.452415px;}
.y140b_c00001{bottom:726.452565px;}
.y1867_c00001{bottom:726.452895px;}
.y1888_c00001{bottom:726.453045px;}
.y14f8_c00001{bottom:726.453615px;}
.yf76_c00001{bottom:726.453630px;}
.y15bb_c00001{bottom:726.453915px;}
.y18b8_c00001{bottom:726.454065px;}
.y1df6_c00001{bottom:726.454080px;}
.y13e6_c00001{bottom:726.454215px;}
.y1e56_c00001{bottom:726.454380px;}
.y156e_c00001{bottom:726.454515px;}
.y1475_c00001{bottom:726.454665px;}
.yfc2_c00001{bottom:726.454980px;}
.y14a0_c00001{bottom:726.455265px;}
.y1d72_c00001{bottom:726.455280px;}
.y1dbf_c00001{bottom:726.455430px;}
.y172b_c00001{bottom:726.455865px;}
.yed7_c00001{bottom:726.456180px;}
.y1e97_c00001{bottom:726.456480px;}
.y1e26_c00001{bottom:726.456780px;}
.y105d_c00001{bottom:726.457080px;}
.y871_c00001{bottom:726.765300px;}
.y751_c00001{bottom:726.766350px;}
.y34_c00001{bottom:727.081500px;}
.y1aaf_c00001{bottom:727.707900px;}
.y11bb_c00001{bottom:727.708200px;}
.y48_c00001{bottom:727.801500px;}
.y688_c00001{bottom:728.386800px;}
.y19_c00001{bottom:728.521500px;}
.y57e_c00001{bottom:729.645000px;}
.y1ef9_c00001{bottom:730.350690px;}
.y1678_c00001{bottom:730.351365px;}
.y1c2f_c00001{bottom:730.353240px;}
.y1ca7_c00001{bottom:730.425660px;}
.y62b_c00001{bottom:730.545000px;}
.y1ccc_c00001{bottom:730.888500px;}
.yae6_c00001{bottom:730.888800px;}
.yab1_c00001{bottom:730.891200px;}
.y8d5_c00001{bottom:730.905300px;}
.yaf9_c00001{bottom:730.947600px;}
.yc86_c00001{bottom:731.189850px;}
.ycc0_c00001{bottom:731.190660px;}
.ycac_c00001{bottom:731.191110px;}
.y908_c00001{bottom:731.445000px;}
.yf0f_c00001{bottom:732.118500px;}
.ydcb_c00001{bottom:733.590210px;}
.yad0_c00001{bottom:733.647915px;}
.y56a_c00001{bottom:734.505000px;}
.y118_c00001{bottom:734.505600px;}
.y7ac_c00001{bottom:735.225150px;}
.yb24_c00001{bottom:735.690300px;}
.y8ef_c00001{bottom:736.125750px;}
.y678_c00001{bottom:736.126200px;}
.y78b_c00001{bottom:736.485540px;}
.y69_c00001{bottom:736.801500px;}
.y76f_c00001{bottom:737.028150px;}
.y4ff_c00001{bottom:738.105000px;}
.y19d_c00001{bottom:738.210600px;}
.yc57_c00001{bottom:739.164165px;}
.yc2a_c00001{bottom:739.167315px;}
.ybcd_c00001{bottom:739.169850px;}
.y8b4_c00001{bottom:739.545000px;}
.y7e_c00001{bottom:740.041500px;}
.y1b7_c00001{bottom:740.056800px;}
.y1d1_c00001{bottom:740.058150px;}
.y1eb_c00001{bottom:740.059500px;}
.y205_c00001{bottom:740.060850px;}
.ybf9_c00001{bottom:740.429550px;}
.y7d6_c00001{bottom:741.163350px;}
.y82f_c00001{bottom:741.705600px;}
.y116e_c00001{bottom:742.348770px;}
.y17f8_c00001{bottom:742.349310px;}
.y135f_c00001{bottom:742.349430px;}
.ydff_c00001{bottom:742.350855px;}
.y1b91_c00001{bottom:742.350900px;}
.yd83_c00001{bottom:742.351500px;}
.y1a59_c00001{bottom:742.353975px;}
.y1bba_c00001{bottom:742.405200px;}
.y1211_c00001{bottom:742.406970px;}
.y1193_c00001{bottom:742.407270px;}
.y125b_c00001{bottom:742.407720px;}
.y1823_c00001{bottom:742.409610px;}
.ye29_c00001{bottom:742.410255px;}
.y14d9_c00001{bottom:742.410480px;}
.y1544_c00001{bottom:742.410630px;}
.y1c79_c00001{bottom:742.410705px;}
.y138b_c00001{bottom:742.410930px;}
.y17ad_c00001{bottom:742.411230px;}
.y1a7d_c00001{bottom:742.412775px;}
.y161b_c00001{bottom:742.413330px;}
.y6de_c00001{bottom:742.605000px;}
.y1d2f_c00001{bottom:742.644360px;}
.y1ac8_c00001{bottom:742.645410px;}
.y1abc_c00001{bottom:742.646010px;}
.y1aa0_c00001{bottom:742.647000px;}
.y11c7_c00001{bottom:742.647495px;}
.y1eff_c00001{bottom:742.648440px;}
.ye70_c00001{bottom:742.648500px;}
.ye4f_c00001{bottom:742.649100px;}
.y1f39_c00001{bottom:742.650090px;}
.y1ec6_c00001{bottom:742.650540px;}
.y15e2_c00001{bottom:742.650615px;}
.yf4d_c00001{bottom:742.650780px;}
.y1c35_c00001{bottom:742.650840px;}
.y1643_c00001{bottom:742.651365px;}
.yeaf_c00001{bottom:742.651380px;}
.y16de_c00001{bottom:742.651815px;}
.y14ff_c00001{bottom:742.651965px;}
.y168a_c00001{bottom:742.652265px;}
.y1003_c00001{bottom:742.652280px;}
.y1c0e_c00001{bottom:742.652340px;}
.y1919_c00001{bottom:742.652415px;}
.y140a_c00001{bottom:742.652565px;}
.y1866_c00001{bottom:742.652895px;}
.y1887_c00001{bottom:742.653045px;}
.y13e5_c00001{bottom:742.653615px;}
.yf75_c00001{bottom:742.653630px;}
.y15ba_c00001{bottom:742.653915px;}
.y18b7_c00001{bottom:742.654065px;}
.y1df5_c00001{bottom:742.654080px;}
.y1e55_c00001{bottom:742.654380px;}
.y156d_c00001{bottom:742.654515px;}
.y1474_c00001{bottom:742.654665px;}
.yfc1_c00001{bottom:742.654980px;}
.y149f_c00001{bottom:742.655265px;}
.y1d71_c00001{bottom:742.655280px;}
.y1dbe_c00001{bottom:742.655430px;}
.y172a_c00001{bottom:742.655865px;}
.yed6_c00001{bottom:742.656180px;}
.y1e96_c00001{bottom:742.656480px;}
.y1e25_c00001{bottom:742.656780px;}
.y105c_c00001{bottom:742.657080px;}
.y92_c00001{bottom:743.144850px;}
.y37d_c00001{bottom:743.145000px;}
.y3fc_c00001{bottom:743.146350px;}
.y1036_c00001{bottom:743.277000px;}
.y5f2_c00001{bottom:743.505300px;}
.y1ca6_c00001{bottom:743.745780px;}
.y72e_c00001{bottom:743.865150px;}
.y1aae_c00001{bottom:743.907900px;}
.y11ba_c00001{bottom:743.908200px;}
.y3_c00001{bottom:744.361500px;}
.ydca_c00001{bottom:745.110330px;}
.y2a9_c00001{bottom:745.125000px;}
.y143f_c00001{bottom:745.437000px;}
.y2b0_c00001{bottom:746.460000px;}
.y1677_c00001{bottom:746.551365px;}
.y1da8_c00001{bottom:746.551980px;}
.y15db_c00001{bottom:746.552565px;}
.y146e_c00001{bottom:746.553165px;}
.y1405_c00001{bottom:746.553765px;}
.yacf_c00001{bottom:746.607675px;}
.y33_c00001{bottom:747.241500px;}
.y9f6_c00001{bottom:747.389550px;}
.yc85_c00001{bottom:747.389850px;}
.ycbf_c00001{bottom:747.390660px;}
.ycab_c00001{bottom:747.391110px;}
.y7e5_c00001{bottom:747.645300px;}
.y47_c00001{bottom:747.781500px;}
.y6b3_c00001{bottom:747.827400px;}
.y9a3_c00001{bottom:748.005000px;}
.y895_c00001{bottom:748.005300px;}
.y18_c00001{bottom:748.321500px;}
.y98c_c00001{bottom:749.806650px;}
.y93a_c00001{bottom:749.985750px;}
.y958_c00001{bottom:750.165000px;}
.y53e_c00001{bottom:750.705000px;}
.y9e0_c00001{bottom:751.605000px;}
.y5fe_c00001{bottom:752.145000px;}
.y9b9_c00001{bottom:752.145300px;}
.yb23_c00001{bottom:752.250000px;}
.y84b_c00001{bottom:753.584850px;}
.y68_c00001{bottom:753.721500px;}
.y870_c00001{bottom:754.665300px;}
.y750_c00001{bottom:754.666350px;}
.yc56_c00001{bottom:755.364165px;}
.yc29_c00001{bottom:755.367315px;}
.yaf8_c00001{bottom:755.368350px;}
.yae5_c00001{bottom:755.369250px;}
.yab0_c00001{bottom:755.369850px;}
.y3ec_c00001{bottom:755.565300px;}
.y4c6_c00001{bottom:756.283500px;}
.y80a_c00001{bottom:756.285000px;}
.y687_c00001{bottom:756.467250px;}
.ybf8_c00001{bottom:756.629550px;}
.y7d_c00001{bottom:756.961500px;}
.y1ca5_c00001{bottom:757.065900px;}
.y7ab_c00001{bottom:757.365450px;}
.yace_c00001{bottom:758.068620px;}
.ydc9_c00001{bottom:758.070090px;}
.y704_c00001{bottom:758.625300px;}
.yf0e_c00001{bottom:758.700000px;}
.y1534_c00001{bottom:758.757000px;}
.y1d2e_c00001{bottom:758.844360px;}
.y1abb_c00001{bottom:758.845410px;}
.y1a9f_c00001{bottom:758.847000px;}
.y11c6_c00001{bottom:758.847495px;}
.y1efe_c00001{bottom:758.848440px;}
.ye4e_c00001{bottom:758.848500px;}
.y1f38_c00001{bottom:758.850090px;}
.y1ec5_c00001{bottom:758.850540px;}
.y15e1_c00001{bottom:758.850615px;}
.yeae_c00001{bottom:758.850780px;}
.y1c34_c00001{bottom:758.850840px;}
.y1642_c00001{bottom:758.851365px;}
.y16dd_c00001{bottom:758.851815px;}
.y14fe_c00001{bottom:758.851965px;}
.y1689_c00001{bottom:758.852265px;}
.y1002_c00001{bottom:758.852280px;}
.y1c0d_c00001{bottom:758.852340px;}
.y1918_c00001{bottom:758.852415px;}
.y1409_c00001{bottom:758.852565px;}
.y1865_c00001{bottom:758.852895px;}
.y1886_c00001{bottom:758.853045px;}
.y13e4_c00001{bottom:758.853615px;}
.yf74_c00001{bottom:758.853630px;}
.y15b9_c00001{bottom:758.853915px;}
.y18b6_c00001{bottom:758.854065px;}
.y1df4_c00001{bottom:758.854080px;}
.y1e54_c00001{bottom:758.854380px;}
.y156c_c00001{bottom:758.854515px;}
.y1473_c00001{bottom:758.854665px;}
.yfc0_c00001{bottom:758.854980px;}
.y149e_c00001{bottom:758.855265px;}
.y1d70_c00001{bottom:758.855280px;}
.y1dbd_c00001{bottom:758.855430px;}
.y1729_c00001{bottom:758.855865px;}
.yed5_c00001{bottom:758.856180px;}
.y1e95_c00001{bottom:758.856480px;}
.y1e24_c00001{bottom:758.856780px;}
.y105b_c00001{bottom:758.857080px;}
.yd0_c00001{bottom:759.780000px;}
.y1aad_c00001{bottom:760.107900px;}
.y11b9_c00001{bottom:760.108200px;}
.y8d4_c00001{bottom:762.045600px;}
.y76e_c00001{bottom:762.228150px;}
.y18ff_c00001{bottom:762.752565px;}
.y146d_c00001{bottom:762.753165px;}
.y1404_c00001{bottom:762.753765px;}
.yc84_c00001{bottom:763.589850px;}
.ycaa_c00001{bottom:763.591110px;}
.yc97_c00001{bottom:763.649100px;}
.ycbe_c00001{bottom:763.649910px;}
.y1_c00001{bottom:764.161500px;}
.y5f1_c00001{bottom:764.385150px;}
.y117_c00001{bottom:764.565900px;}
.y37b_c00001{bottom:764.746350px;}
.y19e_c00001{bottom:765.150900px;}
.y1bb9_c00001{bottom:766.823550px;}
.y1210_c00001{bottom:766.827720px;}
.y1192_c00001{bottom:766.828020px;}
.y125a_c00001{bottom:766.828470px;}
.ye28_c00001{bottom:766.828605px;}
.y116d_c00001{bottom:766.828620px;}
.y1c78_c00001{bottom:766.829055px;}
.y17f7_c00001{bottom:766.829760px;}
.y135e_c00001{bottom:766.829880px;}
.y1822_c00001{bottom:766.830360px;}
.ydfe_c00001{bottom:766.830705px;}
.yd82_c00001{bottom:766.830750px;}
.y14d8_c00001{bottom:766.831230px;}
.y1543_c00001{bottom:766.831380px;}
.y17ac_c00001{bottom:766.831980px;}
.y16c5_c00001{bottom:766.832280px;}
.y138a_c00001{bottom:766.832880px;}
.y1a7c_c00001{bottom:766.833525px;}
.y1a58_c00001{bottom:766.833825px;}
.y161a_c00001{bottom:766.834080px;}
.y1b8_c00001{bottom:766.951950px;}
.y1d2_c00001{bottom:766.953300px;}
.y1ec_c00001{bottom:766.954650px;}
.y206_c00001{bottom:766.956000px;}
.y213_c00001{bottom:766.956600px;}
.y8ee_c00001{bottom:767.085450px;}
.y7d5_c00001{bottom:767.263950px;}
.y557_c00001{bottom:767.265000px;}
.y32_c00001{bottom:767.401500px;}
.y46_c00001{bottom:767.761500px;}
.y6dd_c00001{bottom:767.805000px;}
.y17_c00001{bottom:768.121500px;}
.y64d_c00001{bottom:769.065000px;}
.y668_c00001{bottom:769.245000px;}
.y386_c00001{bottom:769.425000px;}
.ydc8_c00001{bottom:769.531035px;}
.y7e4_c00001{bottom:769.605000px;}
.y47e_c00001{bottom:769.783500px;}
.y82e_c00001{bottom:769.785450px;}
.y6b2_c00001{bottom:769.787700px;}
.y8b3_c00001{bottom:770.504700px;}
.y66_c00001{bottom:770.641500px;}
.yacd_c00001{bottom:771.028965px;}
.y1ca4_c00001{bottom:771.344610px;}
.y3fb_c00001{bottom:771.766500px;}
.y143e_c00001{bottom:772.020000px;}
.y17f_c00001{bottom:773.385000px;}
.y40c_c00001{bottom:773.745000px;}
.y7c_c00001{bottom:773.881500px;}
.y9f5_c00001{bottom:774.088950px;}
.y9a1_c00001{bottom:775.005000px;}
.y1aba_c00001{bottom:775.045410px;}
.y1a9e_c00001{bottom:775.047000px;}
.y11c5_c00001{bottom:775.047495px;}
.ye4d_c00001{bottom:775.048500px;}
.yead_c00001{bottom:775.050180px;}
.y1c0c_c00001{bottom:775.052340px;}
.y1864_c00001{bottom:775.052895px;}
.y13e3_c00001{bottom:775.053615px;}
.y1d2d_c00001{bottom:775.106460px;}
.y1ac7_c00001{bottom:775.107510px;}
.y11d2_c00001{bottom:775.108995px;}
.y1aac_c00001{bottom:775.109700px;}
.ye8b_c00001{bottom:775.110000px;}
.y1efd_c00001{bottom:775.111140px;}
.y1001_c00001{bottom:775.111530px;}
.y1ec4_c00001{bottom:775.112040px;}
.y1f37_c00001{bottom:775.112190px;}
.yf73_c00001{bottom:775.112880px;}
.y1c33_c00001{bottom:775.112940px;}
.y15e0_c00001{bottom:775.113315px;}
.y1641_c00001{bottom:775.113465px;}
.y1e53_c00001{bottom:775.113630px;}
.y1688_c00001{bottom:775.113765px;}
.y16dc_c00001{bottom:775.113915px;}
.y14fd_c00001{bottom:775.114065px;}
.yfbf_c00001{bottom:775.114230px;}
.y1917_c00001{bottom:775.114515px;}
.y1885_c00001{bottom:775.114545px;}
.y1408_c00001{bottom:775.114665px;}
.y1dbc_c00001{bottom:775.114680px;}
.y15b8_c00001{bottom:775.115415px;}
.yed4_c00001{bottom:775.115430px;}
.y18b5_c00001{bottom:775.115565px;}
.y1df3_c00001{bottom:775.115580px;}
.y1e23_c00001{bottom:775.116030px;}
.y1472_c00001{bottom:775.116165px;}
.y156b_c00001{bottom:775.116615px;}
.y149d_c00001{bottom:775.116765px;}
.y1d6f_c00001{bottom:775.116780px;}
.y1728_c00001{bottom:775.117365px;}
.y1e94_c00001{bottom:775.117980px;}
.y105a_c00001{bottom:775.118580px;}
.y78a_c00001{bottom:775.365450px;}
.y454_c00001{bottom:776.265000px;}
.y11b8_c00001{bottom:776.308200px;}
.y9df_c00001{bottom:778.605000px;}
.yffb_c00001{bottom:779.012880px;}
.yf6e_c00001{bottom:779.014080px;}
.y894_c00001{bottom:779.145600px;}
.yc28_c00001{bottom:779.846565px;}
.yaaf_c00001{bottom:779.848500px;}
.yaf7_c00001{bottom:779.848800px;}
.yae4_c00001{bottom:779.849700px;}
.ycbd_c00001{bottom:779.849910px;}
.yca9_c00001{bottom:779.850360px;}
.y529_c00001{bottom:779.865000px;}
.ya2_c00001{bottom:780.120000px;}
.y7aa_c00001{bottom:780.225150px;}
.y91_c00001{bottom:780.765000px;}
.y37c_c00001{bottom:780.766500px;}
.y939_c00001{bottom:780.945450px;}
.y74f_c00001{bottom:780.946200px;}
.y98b_c00001{bottom:780.946950px;}
.y1ca3_c00001{bottom:781.244610px;}
.ydc7_c00001{bottom:782.491380px;}
.yacc_c00001{bottom:782.548500px;}
.y86f_c00001{bottom:782.565300px;}
.y9b8_c00001{bottom:783.105000px;}
.y1034_c00001{bottom:783.180000px;}
.y703_c00001{bottom:783.825300px;}
.y437_c00001{bottom:784.183500px;}
.y809_c00001{bottom:784.185000px;}
.y569_c00001{bottom:784.545000px;}
.y1533_c00001{bottom:785.340000px;}
.y5f0_c00001{bottom:785.445450px;}
.y686_c00001{bottom:785.986800px;}
.y31_c00001{bottom:787.561500px;}
.y76d_c00001{bottom:787.608000px;}
.y45_c00001{bottom:787.741500px;}
.y4fe_c00001{bottom:788.325000px;}
.y957_c00001{bottom:788.865000px;}
.y65_c00001{bottom:790.980000px;}
.y1ca2_c00001{bottom:791.144610px;}
.y1bb8_c00001{bottom:791.303400px;}
.y1d2c_c00001{bottom:791.306460px;}
.y1ab9_c00001{bottom:791.307510px;}
.y1191_c00001{bottom:791.307870px;}
.y120f_c00001{bottom:791.308170px;}
.y1259_c00001{bottom:791.308320px;}
.ye27_c00001{bottom:791.308455px;}
.y116c_c00001{bottom:791.308470px;}
.y11d1_c00001{bottom:791.308995px;}
.y1c77_c00001{bottom:791.309505px;}
.y11c4_c00001{bottom:791.309595px;}
.yd81_c00001{bottom:791.310000px;}
.y17f6_c00001{bottom:791.310210px;}
.y135d_c00001{bottom:791.310330px;}
.ydfd_c00001{bottom:791.310555px;}
.y1b90_c00001{bottom:791.310600px;}
.y1821_c00001{bottom:791.310810px;}
.y14d7_c00001{bottom:791.311080px;}
.y1efc_c00001{bottom:791.311140px;}
.y1000_c00001{bottom:791.311530px;}
.yeac_c00001{bottom:791.311680px;}
.y1542_c00001{bottom:791.311830px;}
.y1ec3_c00001{bottom:791.312040px;}
.y1f36_c00001{bottom:791.312190px;}
.y18df_c00001{bottom:791.312430px;}
.y15df_c00001{bottom:791.312715px;}
.y16c4_c00001{bottom:791.312730px;}
.yf72_c00001{bottom:791.312880px;}
.y1c32_c00001{bottom:791.312940px;}
.y1389_c00001{bottom:791.313330px;}
.y1a7b_c00001{bottom:791.313375px;}
.y1640_c00001{bottom:791.313465px;}
.y1e52_c00001{bottom:791.313630px;}
.y1a57_c00001{bottom:791.313675px;}
.y1687_c00001{bottom:791.313765px;}
.y16db_c00001{bottom:791.313915px;}
.y14fc_c00001{bottom:791.314065px;}
.yfbe_c00001{bottom:791.314230px;}
.y1863_c00001{bottom:791.314395px;}
.y1c0b_c00001{bottom:791.314440px;}
.y1916_c00001{bottom:791.314515px;}
.y1619_c00001{bottom:791.314530px;}
.y1884_c00001{bottom:791.314545px;}
.y1407_c00001{bottom:791.314665px;}
.y1dbb_c00001{bottom:791.314680px;}
.y13e2_c00001{bottom:791.315115px;}
.y15b7_c00001{bottom:791.315415px;}
.yed3_c00001{bottom:791.315430px;}
.y18b4_c00001{bottom:791.315565px;}
.y1df2_c00001{bottom:791.315580px;}
.y1e22_c00001{bottom:791.316030px;}
.y1471_c00001{bottom:791.316165px;}
.y156a_c00001{bottom:791.316615px;}
.y149c_c00001{bottom:791.316765px;}
.y1d6e_c00001{bottom:791.316780px;}
.y1727_c00001{bottom:791.317365px;}
.y1e93_c00001{bottom:791.317980px;}
.y1059_c00001{bottom:791.318580px;}
.y3b3_c00001{bottom:791.383500px;}
.y7e3_c00001{bottom:791.565300px;}
.y82d_c00001{bottom:791.745750px;}
.y6b1_c00001{bottom:791.748000px;}
.y72d_c00001{bottom:792.465150px;}
.y1aab_c00001{bottom:792.570000px;}
.y6dc_c00001{bottom:793.005000px;}
.y8d3_c00001{bottom:793.005300px;}
.y7d4_c00001{bottom:793.364550px;}
.ydc6_c00001{bottom:794.011500px;}
.y1c2e_c00001{bottom:795.210690px;}
.yffa_c00001{bottom:795.212880px;}
.y9f4_c00001{bottom:796.287750px;}
.y907_c00001{bottom:798.225000px;}
.y8ed_c00001{bottom:798.225750px;}
.yf0c_c00001{bottom:798.603000px;}
.y53d_c00001{bottom:800.745000px;}
.y1ca1_c00001{bottom:800.985435px;}
.y8b2_c00001{bottom:801.645000px;}
.y7a9_c00001{bottom:802.184850px;}
.yaad_c00001{bottom:803.010480px;}
.y74e_c00001{bottom:803.266950px;}
.y116_c00001{bottom:803.445750px;}
.y3eb_c00001{bottom:803.625000px;}
.y9de_c00001{bottom:805.605000px;}
.y4c5_c00001{bottom:806.325000px;}
.y5ef_c00001{bottom:806.505150px;}
.y808_c00001{bottom:807.765450px;}
.y702_c00001{bottom:809.205150px;}
.y1033_c00001{bottom:809.763000px;}
.y893_c00001{bottom:810.105300px;}
.y86e_c00001{bottom:810.645150px;}
.y1ca0_c00001{bottom:810.885435px;}
.y938_c00001{bottom:811.905150px;}
.y98a_c00001{bottom:811.906650px;}
.y1532_c00001{bottom:811.923000px;}
.y76c_c00001{bottom:812.807400px;}
.y82c_c00001{bottom:813.705000px;}
.y9b7_c00001{bottom:814.245300px;}
.y90_c00001{bottom:814.965000px;}
.y37a_c00001{bottom:814.966500px;}
.y789_c00001{bottom:815.505750px;}
.yd3_c00001{bottom:815.940000px;}
.yd80_c00001{bottom:816.209850px;}
.yaac_c00001{bottom:816.330600px;}
.y556_c00001{bottom:817.305000px;}
.y1030_c00001{bottom:818.068500px;}
.y6db_c00001{bottom:818.384850px;}
.y38c_c00001{bottom:819.465000px;}
.y7d3_c00001{bottom:819.465150px;}
.y7e2_c00001{bottom:819.645150px;}
.y685_c00001{bottom:819.647100px;}
.y47d_c00001{bottom:819.825000px;}
.y1c9f_c00001{bottom:820.785435px;}
.y6b0_c00001{bottom:821.268150px;}
.y72c_c00001{bottom:823.604850px;}
.y407_c00001{bottom:823.965000px;}
.y8d2_c00001{bottom:824.145600px;}
.y115_c00001{bottom:824.505000px;}
.yf0a_c00001{bottom:825.243000px;}
.y74d_c00001{bottom:825.407250px;}
.y214_c00001{bottom:826.305000px;}
.y62a_c00001{bottom:827.206200px;}
.y956_c00001{bottom:827.746800px;}
.y906_c00001{bottom:829.184700px;}
.y8ec_c00001{bottom:829.185000px;}
.y7a8_c00001{bottom:829.725150px;}
.y3e6_c00001{bottom:830.265000px;}
.y701_c00001{bottom:831.165450px;}
.y8b1_c00001{bottom:832.604700px;}
.y9dd_c00001{bottom:832.605000px;}
.ya5_c00001{bottom:833.220000px;}
.y84a_c00001{bottom:834.225150px;}
.y57b_c00001{bottom:834.405000px;}
.yaab_c00001{bottom:834.690900px;}
.y5ee_c00001{bottom:836.385000px;}
.y1032_c00001{bottom:836.403000px;}
.y76b_c00001{bottom:838.007400px;}
.y4fb_c00001{bottom:838.365000px;}
.y86d_c00001{bottom:838.545150px;}
.y143c_c00001{bottom:838.563000px;}
.y649_c00001{bottom:839.265000px;}
.y664_c00001{bottom:839.445000px;}
.y9b6_c00001{bottom:840.345300px;}
.y892_c00001{bottom:841.245600px;}
.y807_c00001{bottom:841.425150px;}
.y7e1_c00001{bottom:841.604850px;}
.y82b_c00001{bottom:841.605000px;}
.y937_c00001{bottom:843.045450px;}
.y6da_c00001{bottom:843.584850px;}
.y7d2_c00001{bottom:845.745000px;}
.y51d_c00001{bottom:846.465000px;}
.y684_c00001{bottom:847.772100px;}
.y72b_c00001{bottom:848.129850px;}
.y629_c00001{bottom:848.311650px;}
.y989_c00001{bottom:849.571950px;}
.y433_c00001{bottom:851.011500px;}
.y568_c00001{bottom:851.371500px;}
.yf09_c00001{bottom:851.818500px;}
.y700_c00001{bottom:853.170300px;}
.y74c_c00001{bottom:853.353000px;}
.y787_c00001{bottom:854.611065px;}
.y6af_c00001{bottom:854.974200px;}
.y8d1_c00001{bottom:855.150450px;}
.yc81_c00001{bottom:855.383265px;}
.y183f_c00001{bottom:855.383460px;}
.y1bdd_c00001{bottom:855.384450px;}
.y14f6_c00001{bottom:855.385980px;}
.y1567_c00001{bottom:855.386730px;}
.y1451_c00001{bottom:855.387150px;}
.y13ad_c00001{bottom:855.387180px;}
.y18fd_c00001{bottom:855.387330px;}
.yb1e_c00001{bottom:855.387510px;}
.y1230_c00001{bottom:855.387720px;}
.y127a_c00001{bottom:855.388170px;}
.y11b0_c00001{bottom:855.388320px;}
.y163e_c00001{bottom:855.388530px;}
.y1c9b_c00001{bottom:855.388905px;}
.y1cce_c00001{bottom:855.389700px;}
.y1cc9_c00001{bottom:855.390045px;}
.ye4b_c00001{bottom:855.390105px;}
.yf24_c00001{bottom:855.390150px;}
.yb26_c00001{bottom:855.390300px;}
.yce0_c00001{bottom:855.390450px;}
.y1c9e_c00001{bottom:855.390780px;}
.yfa0_c00001{bottom:855.392325px;}
.y1a9b_c00001{bottom:855.392475px;}
.y1e91_c00001{bottom:855.392640px;}
.y1df1_c00001{bottom:855.393570px;}
.y1939_c00001{bottom:855.393870px;}
.y1d15_c00001{bottom:855.394140px;}
.y102f_c00001{bottom:855.394155px;}
.y17e4_c00001{bottom:855.394470px;}
.y1f2b_c00001{bottom:855.395070px;}
.y1db6_c00001{bottom:855.395475px;}
.yf03_c00001{bottom:855.395850px;}
.y1de8_c00001{bottom:855.395910px;}
.y1912_c00001{bottom:855.396060px;}
.y1e50_c00001{bottom:855.396675px;}
.y17a4_c00001{bottom:855.397260px;}
.y1e7f_c00001{bottom:855.397290px;}
.y1986_c00001{bottom:855.397440px;}
.y14c8_c00001{bottom:855.397710px;}
.yfeb_c00001{bottom:855.397890px;}
.y1e1e_c00001{bottom:855.398190px;}
.y1ec1_c00001{bottom:855.400590px;}
.y1087_c00001{bottom:855.401190px;}
.y7a7_c00001{bottom:856.230000px;}
.y4c1_c00001{bottom:856.591500px;}
.y849_c00001{bottom:857.850150px;}
.y3b1_c00001{bottom:858.031500px;}
.y8eb_c00001{bottom:860.370000px;}
.y7d1_c00001{bottom:861.451500px;}
.y9b1_c00001{bottom:861.765000px;}
.y5ed_c00001{bottom:863.071500px;}
.y76a_c00001{bottom:863.432400px;}
.y786_c00001{bottom:863.971365px;}
.y143b_c00001{bottom:865.137000px;}
.y955_c00001{bottom:866.491950px;}
.y555_c00001{bottom:867.571500px;}
.y86c_c00001{bottom:868.109850px;}
.y6d9_c00001{bottom:868.830000px;}
.y7e0_c00001{bottom:869.550000px;}
.y806_c00001{bottom:869.550150px;}
.y38b_c00001{bottom:869.551500px;}
.y683_c00001{bottom:869.731800px;}
.y47a_c00001{bottom:869.911500px;}
.y8b0_c00001{bottom:870.449850px;}
.y82a_c00001{bottom:871.170300px;}
.yd6_c00001{bottom:872.100000px;}
.y72a_c00001{bottom:872.250000px;}
.y891_c00001{bottom:872.250450px;}
.y936_c00001{bottom:874.050300px;}
.y6ff_c00001{bottom:875.130600px;}
.yc80_c00001{bottom:875.363115px;}
.y183e_c00001{bottom:875.363310px;}
.y1bdc_c00001{bottom:875.364300px;}
.y14f5_c00001{bottom:875.365830px;}
.y1566_c00001{bottom:875.366580px;}
.y122f_c00001{bottom:875.366970px;}
.y1450_c00001{bottom:875.367000px;}
.y13ac_c00001{bottom:875.367030px;}
.y18fc_c00001{bottom:875.367180px;}
.yb1d_c00001{bottom:875.367960px;}
.y163d_c00001{bottom:875.368380px;}
.y1279_c00001{bottom:875.368620px;}
.y1cc8_c00001{bottom:875.368695px;}
.y1c9a_c00001{bottom:875.368755px;}
.y11af_c00001{bottom:875.368770px;}
.y1ccd_c00001{bottom:875.369550px;}
.ye4a_c00001{bottom:875.369955px;}
.yf23_c00001{bottom:875.370000px;}
.y1c9d_c00001{bottom:875.370030px;}
.yb25_c00001{bottom:875.370150px;}
.ycdf_c00001{bottom:875.370300px;}
.y1a9a_c00001{bottom:875.372325px;}
.y1e90_c00001{bottom:875.372490px;}
.yf9f_c00001{bottom:875.372775px;}
.y1d14_c00001{bottom:875.373990px;}
.y102e_c00001{bottom:875.374005px;}
.y1df0_c00001{bottom:875.374020px;}
.y17e3_c00001{bottom:875.374320px;}
.y1db5_c00001{bottom:875.374725px;}
.y1f2a_c00001{bottom:875.374920px;}
.yf02_c00001{bottom:875.375700px;}
.y1de7_c00001{bottom:875.375760px;}
.y1911_c00001{bottom:875.375910px;}
.y1e4f_c00001{bottom:875.376525px;}
.y1e7e_c00001{bottom:875.377140px;}
.y1985_c00001{bottom:875.377290px;}
.y17a3_c00001{bottom:875.377710px;}
.yfea_c00001{bottom:875.377740px;}
.y1e1d_c00001{bottom:875.378040px;}
.y14c7_c00001{bottom:875.378160px;}
.y1ec0_c00001{bottom:875.380440px;}
.y1086_c00001{bottom:875.381040px;}
.y1031_c00001{bottom:876.297000px;}
.y6ae_c00001{bottom:876.934500px;}
.y114_c00001{bottom:877.830000px;}
.y11d_c00001{bottom:878.040000px;}
.y152f_c00001{bottom:878.457000px;}
.y7a6_c00001{bottom:879.809850px;}
.y9b5_c00001{bottom:879.810000px;}
.y9dc_c00001{bottom:881.250000px;}
.y74b_c00001{bottom:882.872550px;}
.y988_c00001{bottom:884.492700px;}
.y788_c00001{bottom:886.110000px;}
.y785_c00001{bottom:886.111050px;}
.y8d0_c00001{bottom:886.290750px;}
.ya7_c00001{bottom:886.320000px;}
.y4fa_c00001{bottom:888.451500px;}
.y769_c00001{bottom:888.632400px;}
.y452_c00001{bottom:888.991500px;}
.y7cf_c00001{bottom:889.531500px;}
.y406_c00001{bottom:890.611500px;}
.y8ea_c00001{bottom:891.329700px;}
.y805_c00001{bottom:891.510450px;}
.y682_c00001{bottom:891.692100px;}
.yf06_c00001{bottom:891.777000px;}
.y7df_c00001{bottom:893.129850px;}
.y848_c00001{bottom:893.130000px;}
.y729_c00001{bottom:893.309700px;}
.y6d8_c00001{bottom:894.210450px;}
.y628_c00001{bottom:896.191500px;}
.y526_c00001{bottom:896.551500px;}
.y6fe_c00001{bottom:897.090900px;}
.y3e5_c00001{bottom:897.091500px;}
.yaaa_c00001{bottom:897.628800px;}
.y6ad_c00001{bottom:898.893750px;}
.y53c_c00001{bottom:901.051500px;}
.y86b_c00001{bottom:903.390300px;}
.y890_c00001{bottom:903.390750px;}
.y829_c00001{bottom:905.010600px;}
.y152e_c00001{bottom:905.097000px;}
.y935_c00001{bottom:905.190600px;}
.y9db_c00001{bottom:905.731500px;}
.y954_c00001{bottom:906.451650px;}
.y4b8_c00001{bottom:906.631500px;}
.y661_c00001{bottom:909.691500px;}
.y104c_c00001{bottom:910.563000px;}
.y987_c00001{bottom:912.751950px;}
.y5ec_c00001{bottom:913.291500px;}
.y681_c00001{bottom:913.651350px;}
.y74a_c00001{bottom:913.831800px;}
.y7a5_c00001{bottom:915.090300px;}
.y104b_c00001{bottom:915.120000px;}
.yaa9_c00001{bottom:916.231200px;}
.y728_c00001{bottom:917.250000px;}
.y8cf_c00001{bottom:917.250450px;}
.y42d_c00001{bottom:917.611500px;}
.y567_c00001{bottom:917.971500px;}
.y389_c00001{bottom:919.771500px;}
.y5fc_c00001{bottom:920.671500px;}
.y3b0_c00001{bottom:922.110300px;}
.y6fd_c00001{bottom:922.290900px;}
.y8af_c00001{bottom:922.470000px;}
.y9b0_c00001{bottom:922.470600px;}
.y784_c00001{bottom:924.091500px;}
.y7de_c00001{bottom:926.790150px;}
.y847_c00001{bottom:926.790300px;}
.y6ac_c00001{bottom:926.974200px;}
.y7ce_c00001{bottom:928.050450px;}
.yf25_c00001{bottom:930.600000px;}
.y828_c00001{bottom:932.910600px;}
.y9da_c00001{bottom:933.451500px;}
.y88f_c00001{bottom:934.350450px;}
.y6d7_c00001{bottom:934.530000px;}
.y934_c00001{bottom:936.150300px;}
.y478_c00001{bottom:936.691500px;}
.y86a_c00001{bottom:937.230000px;}
.y680_c00001{bottom:937.231200px;}
.yaa8_c00001{bottom:938.430000px;}
.y4f9_c00001{bottom:938.671500px;}
.y749_c00001{bottom:939.211650px;}
.y404_c00001{bottom:940.651500px;}
.y623_c00001{bottom:940.831500px;}
.y727_c00001{bottom:941.370150px;}
.y9f3_c00001{bottom:941.547000px;}
.y986_c00001{bottom:943.892250px;}
.y953_c00001{bottom:946.591950px;}
.y525_c00001{bottom:946.771500px;}
.y6fc_c00001{bottom:947.670750px;}
.y8ce_c00001{bottom:948.390750px;}
.y804_c00001{bottom:948.750000px;}
.y7a4_c00001{bottom:948.930000px;}
.y7dd_c00001{bottom:950.370000px;}
.y53b_c00001{bottom:951.091500px;}
.y647_c00001{bottom:951.991500px;}
.y5f9_c00001{bottom:952.891500px;}
.y8ae_c00001{bottom:953.429700px;}
.y905_c00001{bottom:953.430300px;}
.y7cd_c00001{bottom:954.330300px;}
.y783_c00001{bottom:954.331665px;}
.y6ab_c00001{bottom:954.874200px;}
.y451_c00001{bottom:955.591500px;}
.y827_c00001{bottom:956.490450px;}
.y4af_c00001{bottom:956.671500px;}
.y9f2_c00001{bottom:957.748830px;}
.y6d6_c00001{bottom:959.730000px;}
.y9d9_c00001{bottom:961.171500px;}
.y9f1_c00001{bottom:962.550000px;}
.y5eb_c00001{bottom:963.331500px;}
.y3e3_c00001{bottom:963.691500px;}
.y869_c00001{bottom:963.870000px;}
.y726_c00001{bottom:964.410450px;}
.y748_c00001{bottom:964.411650px;}
.y782_c00001{bottom:966.391500px;}
.y933_c00001{bottom:967.290600px;}
.y553_c00001{bottom:967.651500px;}
.y385_c00001{bottom:969.811500px;}
.y3af_c00001{bottom:970.170000px;}
.y88e_c00001{bottom:972.152250px;}
.y7a3_c00001{bottom:972.510450px;}
.y6fb_c00001{bottom:972.870750px;}
.y985_c00001{bottom:974.851950px;}
.y803_c00001{bottom:978.270150px;}
.y8cd_c00001{bottom:979.350450px;}
.y660_c00001{bottom:979.891500px;}
.y7cc_c00001{bottom:980.430300px;}
.y67f_c00001{bottom:982.951350px;}
.y6aa_c00001{bottom:982.954050px;}
.y7dc_c00001{bottom:983.670000px;}
.y8ad_c00001{bottom:984.570000px;}
.y904_c00001{bottom:984.570600px;}
.y565_c00001{bottom:984.751500px;}
.y6d5_c00001{bottom:984.930000px;}
.y952_c00001{bottom:986.912100px;}
.y932_c00001{bottom:988.530300px;}
.y4f8_c00001{bottom:988.711500px;}
.y9d7_c00001{bottom:988.891500px;}
.y725_c00001{bottom:989.250150px;}
.y747_c00001{bottom:989.792100px;}
.y403_c00001{bottom:990.871500px;}
.y826_c00001{bottom:991.770300px;}
.y3ae_c00001{bottom:996.811500px;}
.y6fa_c00001{bottom:998.070750px;}
.y428_c00001{bottom:1003.291500px;}
.y6a9_c00001{bottom:1004.913750px;}
.y984_c00001{bottom:1005.812250px;}
.y7a2_c00001{bottom:1006.170150px;}
.y7cb_c00001{bottom:1006.530300px;}
.y67e_c00001{bottom:1006.531200px;}
.y951_c00001{bottom:1010.673000px;}
.y61f_c00001{bottom:1011.031500px;}
.y868_c00001{bottom:1011.570000px;}
.y8cc_c00001{bottom:1012.650450px;}
.y7db_c00001{bottom:1013.370000px;}
.y5e9_c00001{bottom:1013.371500px;}
.y802_c00001{bottom:1013.550000px;}
.y746_c00001{bottom:1014.992100px;}
.y8ac_c00001{bottom:1015.529700px;}
.y8e9_c00001{bottom:1015.530300px;}
.y9d6_c00001{bottom:1016.791500px;}
.y538_c00001{bottom:1017.871500px;}
.y383_c00001{bottom:1019.851500px;}
.y450_c00001{bottom:1022.191500px;}
.y6f9_c00001{bottom:1023.450600px;}
.y88d_c00001{bottom:1024.171800px;}
.y825_c00001{bottom:1025.430000px;}
.y6d4_c00001{bottom:1027.950000px;}
.y781_c00001{bottom:1028.491500px;}
.y7a1_c00001{bottom:1029.750000px;}
.y3de_c00001{bottom:1030.291500px;}
.y724_c00001{bottom:1030.830000px;}
.y7ca_c00001{bottom:1032.630300px;}
.y6a8_c00001{bottom:1032.813750px;}
.y950_c00001{bottom:1034.253450px;}
.y983_c00001{bottom:1036.951950px;}
.y5f7_c00001{bottom:1037.491500px;}
.y4ef_c00001{bottom:1038.751500px;}
.y867_c00001{bottom:1039.650450px;}
.y67d_c00001{bottom:1040.191500px;}
.y745_c00001{bottom:1040.192100px;}
.ydb_c00001{bottom:1040.580000px;}
.y400_c00001{bottom:1040.911500px;}
.y9d5_c00001{bottom:1044.511500px;}
.yab_c00001{bottom:1045.620000px;}
.y8ab_c00001{bottom:1046.670000px;}
.y8cb_c00001{bottom:1046.670600px;}
.y3ad_c00001{bottom:1046.851500px;}
.y824_c00001{bottom:1049.011500px;}
.y801_c00001{bottom:1050.450000px;}
.y780_c00001{bottom:1050.451800px;}
.y564_c00001{bottom:1051.351500px;}
.y6a7_c00001{bottom:1054.774050px;}
.y7da_c00001{bottom:1056.031500px;}
.y7c9_c00001{bottom:1058.910750px;}
.y88c_c00001{bottom:1061.971800px;}
.y7a0_c00001{bottom:1063.050000px;}
.y6f8_c00001{bottom:1063.591950px;}
.y646_c00001{bottom:1064.491500px;}
.y744_c00001{bottom:1065.571950px;}
.y866_c00001{bottom:1067.550450px;}
.y537_c00001{bottom:1067.911500px;}
.y982_c00001{bottom:1067.912250px;}
.y381_c00001{bottom:1070.071500px;}
.y67c_c00001{bottom:1071.330000px;}
.y9d4_c00001{bottom:1071.511500px;}
.y94f_c00001{bottom:1074.393150px;}
.y8aa_c00001{bottom:1077.629700px;}
.y8ca_c00001{bottom:1077.632100px;}
.y723_c00001{bottom:1079.251800px;}
.y6d3_c00001{bottom:1079.252850px;}
.y823_c00001{bottom:1082.850000px;}
.y6a6_c00001{bottom:1082.853900px;}
.y7c8_c00001{bottom:1085.010750px;}
.y61d_c00001{bottom:1085.551500px;}
.y800_c00001{bottom:1087.171950px;}
.y427_c00001{bottom:1088.971500px;}
.y6f7_c00001{bottom:1088.971800px;}
.y865_c00001{bottom:1089.510750px;}
.y743_c00001{bottom:1090.771950px;}
.y3fe_c00001{bottom:1090.951500px;}
.y79f_c00001{bottom:1092.573000px;}
.y7d9_c00001{bottom:1092.753450px;}
.ya9e_c00001{bottom:1096.633605px;}
.y3ac_c00001{bottom:1097.071500px;}
.y88b_c00001{bottom:1098.152250px;}
.y9d3_c00001{bottom:1098.511500px;}
.y981_c00001{bottom:1099.051950px;}
.ya9d_c00001{bottom:1108.631850px;}
.yd7a_c00001{bottom:1108.633995px;}
.y1120_c00001{bottom:1108.634895px;}
.y8a9_c00001{bottom:1108.770000px;}
.y8c9_c00001{bottom:1108.771800px;}
.y6a5_c00001{bottom:1110.753900px;}
.y7c7_c00001{bottom:1111.472250px;}
.y822_c00001{bottom:1113.811500px;}
.y67b_c00001{bottom:1113.812550px;}
.y6f6_c00001{bottom:1114.171800px;}
.y94e_c00001{bottom:1114.713300px;}
.y536_c00001{bottom:1117.951500px;}
.yd79_c00001{bottom:1120.633995px;}
.y111f_c00001{bottom:1120.634895px;}
.y7ff_c00001{bottom:1128.032250px;}
.yd78_c00001{bottom:1132.635165px;}
.y111e_c00001{bottom:1132.636065px;}
.y722_c00001{bottom:1133.821950px;}
.y6d2_c00001{bottom:1133.823000px;}
.y380_c00001{bottom:1134.182250px;}
.y980_c00001{bottom:1136.883000px;}
.y94d_c00001{bottom:1138.323000px;}
.y6a4_c00001{bottom:1138.683150px;}
.y6f5_c00001{bottom:1139.581500px;}
.y88a_c00001{bottom:1139.761500px;}
.yd7f_c00001{bottom:1149.988410px;}
.ya9c_c00001{bottom:1149.988500px;}
.y111d_c00001{bottom:1149.988665px;}
.y821_c00001{bottom:1155.061500px;}
.y3fd_c00001{bottom:1155.061950px;}
.y37f_c00001{bottom:1155.241950px;}
.y6a3_c00001{bottom:1160.823450px;}
.y3ab_c00001{bottom:1161.182250px;}
.y7fe_c00001{bottom:1163.521950px;}
.y535_c00001{bottom:1182.061950px;}
.y3aa_c00001{bottom:1182.241950px;}
.y93_c00001{bottom:1185.300000px;}
.y888_c00001{bottom:1193.043000px;}
.hec_c00001{height:4.018950px;}
.hf6_c00001{height:4.019535px;}
.hf5_c00001{height:4.021875px;}
.hd8_c00001{height:9.900000px;}
.hf3_c00001{height:13.319535px;}
.hf4_c00001{height:13.320120px;}
.hed_c00001{height:15.477487px;}
.h15_c00001{height:15.659250px;}
.h13_c00001{height:15.659700px;}
.h16_c00001{height:15.660300px;}
.h6_c00001{height:18.359700px;}
.h2_c00001{height:18.360300px;}
.hc_c00001{height:18.539700px;}
.he_c00001{height:18.540300px;}
.h10_c00001{height:18.540750px;}
.ha_c00001{height:18.719550px;}
.h7_c00001{height:18.720150px;}
.he4_c00001{height:22.229956px;}
.hee_c00001{height:22.726620px;}
.h8e_c00001{height:25.379850px;}
.h90_c00001{height:25.559700px;}
.h92_c00001{height:25.560300px;}
.h91_c00001{height:25.597200px;}
.hc9_c00001{height:25.739700px;}
.hcb_c00001{height:25.740300px;}
.hd3_c00001{height:25.775400px;}
.hca_c00001{height:25.776600px;}
.hc8_c00001{height:25.919550px;}
.hc7_c00001{height:25.920150px;}
.hea_c00001{height:26.208941px;}
.hf2_c00001{height:26.639700px;}
.hf1_c00001{height:26.640300px;}
.hf7_c00001{height:26.640750px;}
.he7_c00001{height:26.675956px;}
.h70_c00001{height:27.899400px;}
.h72_c00001{height:27.900000px;}
.had_c00001{height:28.078650px;}
.h71_c00001{height:28.079850px;}
.hb1_c00001{height:28.080450px;}
.hb0_c00001{height:28.259700px;}
.he8_c00001{height:30.955027px;}
.he6_c00001{height:31.121956px;}
.he2_c00001{height:31.482369px;}
.h6d_c00001{height:31.500000px;}
.hf8_c00001{height:31.621240px;}
.hce_c00001{height:33.518404px;}
.h8c_c00001{height:34.919550px;}
.he9_c00001{height:34.945313px;}
.h14_c00001{height:35.437541px;}
.he3_c00001{height:35.568000px;}
.h12_c00001{height:35.918479px;}
.he1_c00001{height:36.114206px;}
.hef_c00001{height:36.362637px;}
.hf0_c00001{height:36.729440px;}
.h17_c00001{height:37.740981px;}
.ha1_c00001{height:38.252908px;}
.hdf_c00001{height:39.313433px;}
.hbe_c00001{height:40.501488px;}
.h2e_c00001{height:41.220150px;}
.h3b_c00001{height:41.255250px;}
.hd9_c00001{height:41.273438px;}
.h3_c00001{height:41.343750px;}
.h43_c00001{height:41.400000px;}
.h47_c00001{height:41.434050px;}
.hba_c00001{height:41.522779px;}
.hf_c00001{height:41.835938px;}
.h4_c00001{height:41.904844px;}
.heb_c00001{height:41.976563px;}
.h9_c00001{height:42.328125px;}
.hd_c00001{height:42.403711px;}
.ha9_c00001{height:42.820408px;}
.h8_c00001{height:42.902578px;}
.h8f_c00001{height:43.390282px;}
.h48_c00001{height:43.506958px;}
.h39_c00001{height:43.536137px;}
.h5_c00001{height:44.031094px;}
.h11_c00001{height:44.555273px;}
.hb_c00001{height:45.079453px;}
.h9a_c00001{height:45.281250px;}
.hc5_c00001{height:45.720150px;}
.hc0_c00001{height:46.025156px;}
.hcc_c00001{height:46.050000px;}
.hcf_c00001{height:46.123200px;}
.hde_c00001{height:46.432566px;}
.hb4_c00001{height:46.866094px;}
.he0_c00001{height:47.223580px;}
.hd2_c00001{height:47.230792px;}
.h8d_c00001{height:47.387908px;}
.h2f_c00001{height:47.415938px;}
.haa_c00001{height:47.502095px;}
.h99_c00001{height:47.545313px;}
.h9c_c00001{height:47.868750px;}
.hd4_c00001{height:48.075726px;}
.hac_c00001{height:48.095156px;}
.h1b_c00001{height:48.224531px;}
.h1d_c00001{height:48.256875px;}
.h20_c00001{height:48.361781px;}
.hcd_c00001{height:48.469555px;}
.hd1_c00001{height:48.547980px;}
.h21_c00001{height:48.779850px;}
.hbb_c00001{height:48.796875px;}
.h1f_c00001{height:48.959700px;}
.h98_c00001{height:49.218750px;}
.h34_c00001{height:49.319550px;}
.h31_c00001{height:49.320150px;}
.h33_c00001{height:49.355250px;}
.h57_c00001{height:49.356450px;}
.h36_c00001{height:49.357050px;}
.h30_c00001{height:49.500000px;}
.h5d_c00001{height:49.535100px;}
.h38_c00001{height:49.536900px;}
.hd0_c00001{height:49.808057px;}
.hb6_c00001{height:50.027344px;}
.hbc_c00001{height:50.032031px;}
.ha6_c00001{height:50.800781px;}
.hb3_c00001{height:50.941406px;}
.h4a_c00001{height:51.385481px;}
.hda_c00001{height:51.591745px;}
.hbd_c00001{height:51.659700px;}
.hc2_c00001{height:51.660300px;}
.h95_c00001{height:51.679688px;}
.hdd_c00001{height:51.748773px;}
.hb7_c00001{height:51.750000px;}
.hc4_c00001{height:51.839700px;}
.hc3_c00001{height:51.840300px;}
.hc1_c00001{height:51.876600px;}
.h25_c00001{height:52.019550px;}
.h24_c00001{height:52.020150px;}
.h8a_c00001{height:52.277344px;}
.h9b_c00001{height:52.307835px;}
.hdc_c00001{height:52.470651px;}
.h84_c00001{height:52.526250px;}
.h46_c00001{height:56.957344px;}
.hb8_c00001{height:57.092344px;}
.h87_c00001{height:57.093750px;}
.h22_c00001{height:57.698438px;}
.h6f_c00001{height:57.960300px;}
.ha0_c00001{height:58.218750px;}
.hae_c00001{height:58.384097px;}
.h96_c00001{height:58.386437px;}
.hb2_c00001{height:58.391117px;}
.h97_c00001{height:60.465234px;}
.hb9_c00001{height:60.877024px;}
.hc6_c00001{height:60.879364px;}
.h89_c00001{height:62.011528px;}
.ha7_c00001{height:62.013868px;}
.he5_c00001{height:62.244000px;}
.h93_c00001{height:65.460938px;}
.h5e_c00001{height:65.878650px;}
.h40_c00001{height:65.879850px;}
.h44_c00001{height:65.880450px;}
.h42_c00001{height:65.915100px;}
.h3c_c00001{height:65.915700px;}
.h45_c00001{height:65.916750px;}
.h41_c00001{height:66.059700px;}
.h3d_c00001{height:66.060300px;}
.h5f_c00001{height:66.094950px;}
.h4d_c00001{height:66.095550px;}
.h6a_c00001{height:66.096750px;}
.hab_c00001{height:66.799688px;}
.h9f_c00001{height:68.115938px;}
.haf_c00001{height:68.733984px;}
.h1a_c00001{height:68.827500px;}
.h7a_c00001{height:69.300000px;}
.h79_c00001{height:69.336900px;}
.h77_c00001{height:69.479850px;}
.h7f_c00001{height:69.480450px;}
.h80_c00001{height:69.515100px;}
.h81_c00001{height:69.516150px;}
.h83_c00001{height:69.516750px;}
.h88_c00001{height:69.528867px;}
.hd5_c00001{height:69.715898px;}
.h82_c00001{height:73.620150px;}
.h6b_c00001{height:73.799400px;}
.h76_c00001{height:73.800000px;}
.h75_c00001{height:73.834050px;}
.h7b_c00001{height:73.835100px;}
.h8b_c00001{height:75.934688px;}
.hb5_c00001{height:76.412109px;}
.h9d_c00001{height:77.430938px;}
.h50_c00001{height:77.939700px;}
.h5b_c00001{height:81.360300px;}
.h94_c00001{height:82.195312px;}
.h6c_c00001{height:83.879850px;}
.h78_c00001{height:83.916150px;}
.h7e_c00001{height:83.916750px;}
.hdb_c00001{height:83.953125px;}
.h7d_c00001{height:84.096750px;}
.h3e_c00001{height:84.779850px;}
.h4b_c00001{height:84.959700px;}
.h4c_c00001{height:84.960300px;}
.h3f_c00001{height:84.996750px;}
.h86_c00001{height:87.303164px;}
.h55_c00001{height:91.620150px;}
.h85_c00001{height:95.346563px;}
.h61_c00001{height:96.840300px;}
.ha5_c00001{height:96.881249px;}
.h67_c00001{height:97.020150px;}
.h9e_c00001{height:97.225313px;}
.h35_c00001{height:99.359700px;}
.hbf_c00001{height:103.500000px;}
.h60_c00001{height:103.859700px;}
.ha2_c00001{height:105.522641px;}
.ha3_c00001{height:106.458090px;}
.ha4_c00001{height:108.400769px;}
.h7c_c00001{height:111.779850px;}
.h4e_c00001{height:111.815100px;}
.h51_c00001{height:114.300000px;}
.h49_c00001{height:122.796750px;}
.h5a_c00001{height:131.400000px;}
.h4f_c00001{height:131.436900px;}
.h52_c00001{height:131.579850px;}
.h73_c00001{height:139.896750px;}
.h54_c00001{height:141.660300px;}
.h37_c00001{height:149.580450px;}
.h64_c00001{height:149.615100px;}
.h59_c00001{height:149.616750px;}
.h6e_c00001{height:167.790000px;}
.h63_c00001{height:199.620000px;}
.h65_c00001{height:199.650000px;}
.h3a_c00001{height:199.830000px;}
.h74_c00001{height:223.771500px;}
.h32_c00001{height:249.690000px;}
.h62_c00001{height:249.691500px;}
.h5c_c00001{height:249.868500px;}
.h56_c00001{height:299.730000px;}
.h53_c00001{height:299.908500px;}
.h68_c00001{height:299.911500px;}
.h26_c00001{height:303.660000px;}
.h27_c00001{height:345.240000px;}
.h66_c00001{height:349.950000px;}
.ha8_c00001{height:358.920000px;}
.h2d_c00001{height:409.320000px;}
.h2c_c00001{height:435.240000px;}
.h58_c00001{height:450.208500px;}
.h69_c00001{height:550.288500px;}
.h1e_c00001{height:707.580000px;}
.h2a_c00001{height:708.660000px;}
.h2b_c00001{height:730.080000px;}
.h23_c00001{height:741.240000px;}
.h28_c00001{height:803.160000px;}
.h29_c00001{height:856.080000px;}
.h0_c00001{height:892.499850px;}
.h1_c00001{height:892.500000px;}
.hd7_c00001{height:974.250000px;}
.h18_c00001{height:1262.879850px;}
.h1c_c00001{height:1262.880000px;}
.hd6_c00001{height:1262.999700px;}
.h19_c00001{height:1263.000000px;}
.w54_c00001{width:6.479880px;}
.w55_c00001{width:6.480465px;}
.wa_c00001{width:7.739655px;}
.w9_c00001{width:7.740240px;}
.w24_c00001{width:7.919535px;}
.w1e_c00001{width:7.920120px;}
.w5a_c00001{width:12.959760px;}
.w59_c00001{width:12.960345px;}
.wb_c00001{width:15.479850px;}
.wc_c00001{width:15.480450px;}
.w22_c00001{width:15.839700px;}
.w2e_c00001{width:15.840300px;}
.w32_c00001{width:31.859700px;}
.w14_c00001{width:32.040300px;}
.w56_c00001{width:35.099400px;}
.w65_c00001{width:35.100000px;}
.w5b_c00001{width:38.519550px;}
.w64_c00001{width:38.520150px;}
.wf_c00001{width:40.679850px;}
.w51_c00001{width:41.039700px;}
.w62_c00001{width:41.040300px;}
.w3c_c00001{width:41.399400px;}
.w4c_c00001{width:41.400000px;}
.w1f_c00001{width:41.579850px;}
.wd_c00001{width:44.820150px;}
.w3f_c00001{width:45.359700px;}
.w4b_c00001{width:45.360300px;}
.w23_c00001{width:45.720150px;}
.w3_c00001{width:47.339100px;}
.w39_c00001{width:48.059700px;}
.w48_c00001{width:48.060300px;}
.w58_c00001{width:48.419550px;}
.w1b_c00001{width:48.420150px;}
.w4f_c00001{width:49.320150px;}
.wcc_c00001{width:50.623800px;}
.wda_c00001{width:51.659700px;}
.we_c00001{width:56.339700px;}
.w3e_c00001{width:57.239700px;}
.w6_c00001{width:57.240300px;}
.w21_c00001{width:57.600000px;}
.w36_c00001{width:58.320150px;}
.w18_c00001{width:58.679850px;}
.wd3_c00001{width:59.938500px;}
.wbe_c00001{width:59.940300px;}
.w50_c00001{width:60.300000px;}
.w33_c00001{width:62.279850px;}
.w63_c00001{width:62.819550px;}
.w15_c00001{width:62.820150px;}
.wbb_c00001{width:64.259700px;}
.wc0_c00001{width:64.439700px;}
.w89_c00001{width:65.339700px;}
.w98_c00001{width:65.340300px;}
.w8e_c00001{width:65.519550px;}
.wa4_c00001{width:65.520150px;}
.wc8_c00001{width:65.557050px;}
.w93_c00001{width:65.700000px;}
.wca_c00001{width:65.736900px;}
.wa2_c00001{width:67.140300px;}
.w9f_c00001{width:67.500000px;}
.w79_c00001{width:68.939700px;}
.we0_c00001{width:69.155250px;}
.w4_c00001{width:69.479850px;}
.w4e_c00001{width:69.839700px;}
.w38_c00001{width:70.739700px;}
.w49_c00001{width:70.740300px;}
.wc1_c00001{width:70.955250px;}
.w52_c00001{width:71.099400px;}
.w1a_c00001{width:71.100000px;}
.w74_c00001{width:71.279850px;}
.w7f_c00001{width:72.179850px;}
.w85_c00001{width:72.180450px;}
.wbf_c00001{width:72.216750px;}
.w6f_c00001{width:72.540300px;}
.w5_c00001{width:72.720150px;}
.wd4_c00001{width:73.439700px;}
.wdd_c00001{width:73.440300px;}
.wde_c00001{width:73.476600px;}
.wbd_c00001{width:73.620150px;}
.w37_c00001{width:74.159700px;}
.w19_c00001{width:74.520150px;}
.wba_c00001{width:74.557050px;}
.w8a_c00001{width:79.379850px;}
.wa7_c00001{width:79.560300px;}
.we1_c00001{width:80.458650px;}
.we2_c00001{width:80.459250px;}
.wdf_c00001{width:81.000000px;}
.wdc_c00001{width:81.036300px;}
.w7_c00001{width:81.179850px;}
.wa8_c00001{width:81.216750px;}
.w2_c00001{width:81.900000px;}
.w7a_c00001{width:82.079850px;}
.w75_c00001{width:82.259700px;}
.w35_c00001{width:82.619550px;}
.w4a_c00001{width:82.620150px;}
.w82_c00001{width:82.979850px;}
.w70_c00001{width:82.980450px;}
.w17_c00001{width:83.160300px;}
.w3a_c00001{width:83.339700px;}
.w47_c00001{width:83.340300px;}
.w1c_c00001{width:83.879850px;}
.w30_c00001{width:83.880450px;}
.wc3_c00001{width:85.140300px;}
.wc2_c00001{width:85.500000px;}
.wc4_c00001{width:85.536300px;}
.wc5_c00001{width:85.536900px;}
.wc6_c00001{width:86.794950px;}
.w8f_c00001{width:86.940300px;}
.w94_c00001{width:87.840300px;}
.wd7_c00001{width:89.279850px;}
.wd8_c00001{width:89.280450px;}
.w99_c00001{width:89.459700px;}
.wce_c00001{width:89.639700px;}
.wd1_c00001{width:89.640300px;}
.wd5_c00001{width:89.640750px;}
.wd6_c00001{width:89.676600px;}
.wd9_c00001{width:89.677200px;}
.wb8_c00001{width:89.855250px;}
.wa0_c00001{width:90.000000px;}
.wb7_c00001{width:90.035100px;}
.wd2_c00001{width:90.035700px;}
.wcf_c00001{width:90.036300px;}
.wd0_c00001{width:90.036900px;}
.wa5_c00001{width:90.539700px;}
.w9c_c00001{width:92.159700px;}
.wdb_c00001{width:97.020150px;}
.wc9_c00001{width:104.616750px;}
.wcb_c00001{width:104.796750px;}
.w3d_c00001{width:116.640300px;}
.w20_c00001{width:117.900000px;}
.w57_c00001{width:119.340300px;}
.w5d_c00001{width:122.220150px;}
.w77_c00001{width:127.115100px;}
.waa_c00001{width:133.775400px;}
.w43_c00001{width:134.820150px;}
.w87_c00001{width:135.395550px;}
.w72_c00001{width:135.575400px;}
.w83_c00001{width:135.755250px;}
.w7e_c00001{width:137.375400px;}
.wc7_c00001{width:141.659700px;}
.w41_c00001{width:141.660300px;}
.w26_c00001{width:143.280450px;}
.w31_c00001{width:143.820150px;}
.w13_c00001{width:144.180450px;}
.w53_c00001{width:152.100000px;}
.w61_c00001{width:153.900000px;}
.w3b_c00001{width:155.880000px;}
.w8b_c00001{width:158.970000px;}
.w90_c00001{width:160.591500px;}
.w42_c00001{width:162.900000px;}
.w9a_c00001{width:163.650000px;}
.wb4_c00001{width:164.551500px;}
.w9d_c00001{width:165.631500px;}
.w95_c00001{width:165.811500px;}
.wa6_c00001{width:166.711500px;}
.w92_c00001{width:167.608500px;}
.w97_c00001{width:168.508500px;}
.w5e_c00001{width:169.380000px;}
.w8d_c00001{width:169.590000px;}
.w34_c00001{width:169.920000px;}
.w9b_c00001{width:170.670000px;}
.w16_c00001{width:171.180000px;}
.w5c_c00001{width:171.360000px;}
.wa1_c00001{width:171.388500px;}
.wcd_c00001{width:172.056000px;}
.w8_c00001{width:172.440000px;}
.w5f_c00001{width:172.620000px;}
.w11_c00001{width:173.160000px;}
.w8c_c00001{width:174.088500px;}
.wa9_c00001{width:176.040000px;}
.w71_c00001{width:177.871500px;}
.w80_c00001{width:178.051500px;}
.w86_c00001{width:178.231500px;}
.w40_c00001{width:178.740000px;}
.w76_c00001{width:180.750000px;}
.w7d_c00001{width:180.931500px;}
.w1d_c00001{width:181.800000px;}
.wa3_c00001{width:181.830000px;}
.w9e_c00001{width:182.010000px;}
.w7b_c00001{width:182.011500px;}
.w2d_c00001{width:183.240000px;}
.w10_c00001{width:184.500000px;}
.w12_c00001{width:185.220000px;}
.wb9_c00001{width:185.430000px;}
.w44_c00001{width:185.760000px;}
.w96_c00001{width:188.668500px;}
.w60_c00001{width:189.900000px;}
.w88_c00001{width:189.930000px;}
.w91_c00001{width:192.988500px;}
.w45_c00001{width:203.760000px;}
.w73_c00001{width:204.510000px;}
.w7c_c00001{width:204.690000px;}
.w81_c00001{width:206.130000px;}
.w27_c00001{width:206.280000px;}
.w6e_c00001{width:206.670000px;}
.wb3_c00001{width:206.671500px;}
.w84_c00001{width:206.850000px;}
.w78_c00001{width:207.030000px;}
.w29_c00001{width:208.800000px;}
.w4d_c00001{width:217.980000px;}
.w2a_c00001{width:221.400000px;}
.w2f_c00001{width:223.200000px;}
.w46_c00001{width:224.280000px;}
.w28_c00001{width:226.620000px;}
.w2b_c00001{width:248.580000px;}
.w25_c00001{width:266.040000px;}
.w2c_c00001{width:268.200000px;}
.wae_c00001{width:296.130000px;}
.wac_c00001{width:333.616500px;}
.wbc_c00001{width:334.876500px;}
.w6c_c00001{width:338.790000px;}
.w6d_c00001{width:339.016500px;}
.wb1_c00001{width:339.556500px;}
.wab_c00001{width:344.190000px;}
.wb0_c00001{width:350.130000px;}
.waf_c00001{width:381.675000px;}
.wb6_c00001{width:516.136500px;}
.w69_c00001{width:616.140000px;}
.wb5_c00001{width:648.000000px;}
.w6a_c00001{width:676.080000px;}
.wad_c00001{width:678.525000px;}
.w6b_c00001{width:722.160000px;}
.we5_c00001{width:771.120000px;}
.we6_c00001{width:774.303000px;}
.we3_c00001{width:892.499700px;}
.we4_c00001{width:892.500000px;}
.wb2_c00001{width:892.979700px;}
.w66_c00001{width:892.979850px;}
.w68_c00001{width:892.980000px;}
.w67_c00001{width:893.250000px;}
.w0_c00001{width:1262.999850px;}
.w1_c00001{width:1263.000000px;}
.x0_c00001{left:0.000000px;}
.x182_c00001{left:1.080000px;}
.x183_c00001{left:4.352018px;}
.x178_c00001{left:5.400000px;}
.x155_c00001{left:7.770000px;}
.x14a_c00001{left:9.720150px;}
.x150_c00001{left:11.160000px;}
.x81_c00001{left:12.525300px;}
.xc7_c00001{left:13.575000px;}
.xc1_c00001{left:15.015450px;}
.x79_c00001{left:16.200300px;}
.xba_c00001{left:17.895300px;}
.x118_c00001{left:18.974850px;}
.x12f_c00001{left:20.849100px;}
.x158_c00001{left:22.133400px;}
.x127_c00001{left:23.549100px;}
.x10d_c00001{left:25.349850px;}
.x153_c00001{left:27.360000px;}
.x10a_c00001{left:29.055300px;}
.x154_c00001{left:30.060000px;}
.xc6_c00001{left:31.935300px;}
.xfd_c00001{left:33.630300px;}
.xbb_c00001{left:35.250150px;}
.x157_c00001{left:36.353400px;}
.x133_c00001{left:37.365300px;}
.x102_c00001{left:39.090000px;}
.x117_c00001{left:41.010300px;}
.x15f_c00001{left:42.113400px;}
.x10f_c00001{left:43.770000px;}
.x11f_c00001{left:45.614550px;}
.x10c_c00001{left:47.370000px;}
.x156_c00001{left:48.749400px;}
.x134_c00001{left:50.115300px;}
.x160_c00001{left:52.193400px;}
.x7a_c00001{left:53.671050px;}
.x152_c00001{left:54.930000px;}
.xb8_c00001{left:56.085300px;}
.xc0_c00001{left:58.170300px;}
.x98_c00001{left:59.370300px;}
.x100_c00001{left:61.124850px;}
.x7d_c00001{left:62.970358px;}
.xf6_c00001{left:64.335300px;}
.x146_c00001{left:65.369805px;}
.x7f_c00001{left:66.570300px;}
.x80_c00001{left:67.830300px;}
.x15a_c00001{left:69.113400px;}
.x7e_c00001{left:70.170300px;}
.xf8_c00001{left:71.895300px;}
.xbc_c00001{left:72.900150px;}
.x14c_c00001{left:74.909955px;}
.x13_c00001{left:76.845750px;}
.x7_c00001{left:78.826200px;}
.x141_c00001{left:80.640300px;}
.x120_c00001{left:82.364550px;}
.x7b_c00001{left:84.075300px;}
.x15b_c00001{left:85.133100px;}
.x145_c00001{left:86.753400px;}
.x104_c00001{left:88.199700px;}
.x17d_c00001{left:89.279850px;}
.x14f_c00001{left:90.533400px;}
.x16f_c00001{left:92.026500px;}
.x144_c00001{left:93.773400px;}
.xff_c00001{left:95.070000px;}
.x148_c00001{left:97.927500px;}
.x103_c00001{left:99.210000px;}
.x93_c00001{left:100.649850px;}
.x128_c00001{left:102.449100px;}
.x166_c00001{left:103.853400px;}
.x68_c00001{left:104.926200px;}
.xfe_c00001{left:106.095000px;}
.x8f_c00001{left:107.610300px;}
.x2d_c00001{left:110.326200px;}
.x7c_c00001{left:113.475300px;}
.x97_c00001{left:114.585300px;}
.x96_c00001{left:117.105300px;}
.x10e_c00001{left:119.415150px;}
.x14d_c00001{left:120.593400px;}
.x101_c00001{left:121.680300px;}
.x14e_c00001{left:123.113400px;}
.x149_c00001{left:124.373400px;}
.xbe_c00001{left:125.610300px;}
.x76_c00001{left:127.641150px;}
.x177_c00001{left:128.917500px;}
.x126_c00001{left:129.990000px;}
.x94_c00001{left:131.053800px;}
.x105_c00001{left:132.689850px;}
.x167_c00001{left:133.770000px;}
.xfa_c00001{left:134.970300px;}
.xcd_c00001{left:137.310300px;}
.x18a_c00001{left:138.457815px;}
.x125_c00001{left:139.500300px;}
.x12e_c00001{left:140.505300px;}
.xf5_c00001{left:141.765300px;}
.x109_c00001{left:146.130300px;}
.x74_c00001{left:148.896150px;}
.x16a_c00001{left:150.653400px;}
.x10b_c00001{left:152.895000px;}
.x169_c00001{left:154.433400px;}
.x14b_c00001{left:155.490900px;}
.x11d_c00001{left:158.010300px;}
.x95_c00001{left:160.305300px;}
.x17a_c00001{left:165.450000px;}
.x168_c00001{left:168.158400px;}
.x18b_c00001{left:170.850000px;}
.x147_c00001{left:180.028455px;}
.x17f_c00001{left:187.410360px;}
.x15d_c00001{left:191.548200px;}
.x180_c00001{left:193.350000px;}
.x185_c00001{left:196.410000px;}
.x187_c00001{left:197.490000px;}
.x17b_c00001{left:205.410000px;}
.x193_c00001{left:207.076200px;}
.x90_c00001{left:208.650300px;}
.x16e_c00001{left:212.610300px;}
.x171_c00001{left:215.130778px;}
.x132_c00001{left:225.930300px;}
.x16d_c00001{left:228.269250px;}
.x139_c00001{left:230.505300px;}
.x142_c00001{left:233.825250px;}
.x13b_c00001{left:237.135420px;}
.x138_c00001{left:238.605300px;}
.x13a_c00001{left:240.690300px;}
.xc5_c00001{left:242.430300px;}
.x13d_c00001{left:244.515240px;}
.xcf_c00001{left:247.065300px;}
.x181_c00001{left:249.330000px;}
.x13c_c00001{left:254.445120px;}
.x176_c00001{left:256.290300px;}
.xd3_c00001{left:259.230285px;}
.xd0_c00001{left:261.330300px;}
.x72_c00001{left:262.650000px;}
.xd4_c00001{left:265.424805px;}
.x78_c00001{left:268.020300px;}
.xd1_c00001{left:271.590060px;}
.xb9_c00001{left:273.390300px;}
.xda_c00001{left:275.729730px;}
.x1_c00001{left:280.066500px;}
.xd9_c00001{left:281.309610px;}
.xd2_c00001{left:285.449835px;}
.x77_c00001{left:286.950150px;}
.xf7_c00001{left:290.700300px;}
.x13e_c00001{left:293.474871px;}
.x162_c00001{left:296.355000px;}
.x161_c00001{left:298.335000px;}
.xdb_c00001{left:299.849280px;}
.xdc_c00001{left:301.889430px;}
.x11e_c00001{left:303.915300px;}
.xca_c00001{left:309.675300px;}
.x135_c00001{left:312.735300px;}
.x92_c00001{left:314.850300px;}
.x121_c00001{left:317.235645px;}
.xbf_c00001{left:318.240300px;}
.xe0_c00001{left:320.399070px;}
.xd6_c00001{left:322.454820px;}
.xd7_c00001{left:324.539580px;}
.xde_c00001{left:326.594280px;}
.x9b_c00001{left:329.370189px;}
.x48_c00001{left:330.825000px;}
.x9a_c00001{left:332.250069px;}
.x99_c00001{left:333.690300px;}
.x63_c00001{left:335.145000px;}
.x110_c00001{left:336.855645px;}
.xa0_c00001{left:338.010474px;}
.xc2_c00001{left:339.225300px;}
.xa3_c00001{left:340.530675px;}
.x129_c00001{left:341.745300px;}
.x9c_c00001{left:343.410429px;}
.xdd_c00001{left:345.089430px;}
.xc9_c00001{left:347.970450px;}
.x13f_c00001{left:349.199799px;}
.x58_c00001{left:350.445000px;}
.x9e_c00001{left:352.050084px;}
.xdf_c00001{left:353.339430px;}
.x8_c00001{left:355.485000px;}
.x9d_c00001{left:357.810429px;}
.xd5_c00001{left:359.490105px;}
.x9f_c00001{left:360.690324px;}
.x163_c00001{left:362.775000px;}
.x136_c00001{left:364.215150px;}
.x111_c00001{left:365.370195px;}
.xc8_c00001{left:367.125300px;}
.x2_c00001{left:368.445000px;}
.x140_c00001{left:371.055399px;}
.x12a_c00001{left:374.400150px;}
.xa2_c00001{left:376.485525px;}
.xd8_c00001{left:377.999310px;}
.x137_c00001{left:380.910300px;}
.x12b_c00001{left:382.575150px;}
.x85_c00001{left:383.760645px;}
.xcb_c00001{left:386.280750px;}
.xbd_c00001{left:389.625300px;}
.x83_c00001{left:390.630765px;}
.x119_c00001{left:392.250150px;}
.x191_c00001{left:393.357930px;}
.xe5_c00001{left:394.484220px;}
.x82_c00001{left:396.150300px;}
.x84_c00001{left:398.910645px;}
.x69_c00001{left:399.945000px;}
.x86_c00001{left:401.686290px;}
.x175_c00001{left:403.305000px;}
.x107_c00001{left:405.615339px;}
.x27_c00001{left:406.785000px;}
.x15c_c00001{left:408.855000px;}
.x87_c00001{left:409.966170px;}
.x64_c00001{left:411.285000px;}
.xe4_c00001{left:415.048920px;}
.x19f_c00001{left:416.276550px;}
.xf9_c00001{left:417.345300px;}
.x49_c00001{left:419.205000px;}
.x3d_c00001{left:421.366500px;}
.x106_c00001{left:422.535414px;}
.x16b_c00001{left:425.235000px;}
.x71_c00001{left:427.755000px;}
.x18c_c00001{left:429.195000px;}
.x11a_c00001{left:430.485450px;}
.x122_c00001{left:432.210525px;}
.x59_c00001{left:433.245000px;}
.x112_c00001{left:434.550039px;}
.x14_c00001{left:436.125000px;}
.xa8_c00001{left:438.405705px;}
.xe7_c00001{left:439.739160px;}
.x19d_c00001{left:440.757708px;}
.x170_c00001{left:442.336500px;}
.x9_c00001{left:443.866500px;}
.x19b_c00001{left:444.897300px;}
.x73_c00001{left:446.475000px;}
.x194_c00001{left:448.320270px;}
.xe1_c00001{left:450.029490px;}
.xa7_c00001{left:451.335585px;}
.xc3_c00001{left:453.030795px;}
.x3_c00001{left:456.825000px;}
.x164_c00001{left:458.355000px;}
.x12c_c00001{left:460.725150px;}
.xa1_c00001{left:462.855675px;}
.xe2_c00001{left:464.429490px;}
.xea_c00001{left:466.483605px;}
.x143_c00001{left:467.895000px;}
.x70_c00001{left:469.425000px;}
.xe6_c00001{left:470.594070px;}
.x11b_c00001{left:472.830450px;}
.xe8_c00001{left:474.689160px;}
.x5d_c00001{left:476.085000px;}
.x16c_c00001{left:478.875000px;}
.x18_c00001{left:480.405000px;}
.x5c_c00001{left:482.745000px;}
.x2e_c00001{left:484.185000px;}
.x12d_c00001{left:485.250150px;}
.x56_c00001{left:486.885000px;}
.xfb_c00001{left:488.730600px;}
.x184_c00001{left:491.116500px;}
.x151_c00001{left:492.735000px;}
.x4e_c00001{left:494.625000px;}
.x28_c00001{left:497.325000px;}
.xe9_c00001{left:501.448950px;}
.x43_c00001{left:504.525000px;}
.xcc_c00001{left:505.875900px;}
.x4a_c00001{left:507.585000px;}
.xe3_c00001{left:509.684340px;}
.x11c_c00001{left:511.095150px;}
.x131_c00001{left:514.365201px;}
.x3e_c00001{left:517.485000px;}
.x130_c00001{left:518.760201px;}
.xa6_c00001{left:520.410585px;}
.x8b_c00001{left:521.671014px;}
.xa_c00001{left:524.505000px;}
.xaa_c00001{left:526.170405px;}
.x89_c00001{left:528.586284px;}
.xa4_c00001{left:530.490375px;}
.xf_c00001{left:532.245000px;}
.x88_c00001{left:534.091164px;}
.x123_c00001{left:535.215285px;}
.x8a_c00001{left:536.866164px;}
.x114_c00001{left:538.380549px;}
.x113_c00001{left:539.820099px;}
.xb0_c00001{left:542.011275px;}
.xa9_c00001{left:543.450255px;}
.x4_c00001{left:545.205000px;}
.x108_c00001{left:547.020333px;}
.x8c_c00001{left:548.430714px;}
.x8e_c00001{left:549.825231px;}
.x5e_c00001{left:551.325000px;}
.x8d_c00001{left:552.570354px;}
.xa5_c00001{left:554.970285px;}
.xfc_c00001{left:556.455648px;}
.x26_c00001{left:557.805000px;}
.xb1_c00001{left:559.291125px;}
.x65_c00001{left:563.566500px;}
.x1f_c00001{left:565.725000px;}
.x38_c00001{left:566.805000px;}
.x196_c00001{left:568.300800px;}
.x57_c00001{left:569.326500px;}
.x19e_c00001{left:570.836463px;}
.x172_c00001{left:572.147578px;}
.x2f_c00001{left:574.725000px;}
.xaf_c00001{left:576.541125px;}
.x19_c00001{left:578.866500px;}
.x53_c00001{left:583.005000px;}
.xc4_c00001{left:585.000195px;}
.xac_c00001{left:586.620405px;}
.x29_c00001{left:587.866500px;}
.xed_c00001{left:589.934145px;}
.xec_c00001{left:591.988515px;}
.xb2_c00001{left:593.820375px;}
.x4b_c00001{left:595.966500px;}
.xad_c00001{left:597.060645px;}
.x124_c00001{left:598.830465px;}
.xae_c00001{left:599.940525px;}
.xeb_c00001{left:602.278755px;}
.xab_c00001{left:604.261155px;}
.xb6_c00001{left:605.700273px;}
.xb5_c00001{left:608.581323px;}
.xb7_c00001{left:610.020393px;}
.xb4_c00001{left:611.461200px;}
.xb_c00001{left:612.885000px;}
.xb3_c00001{left:614.341080px;}
.x116_c00001{left:616.605525px;}
.x115_c00001{left:618.045180px;}
.x10_c00001{left:620.625000px;}
.x6a_c00001{left:621.705000px;}
.xee_c00001{left:622.829325px;}
.x15e_c00001{left:624.165000px;}
.x179_c00001{left:626.505000px;}
.x6e_c00001{left:628.366500px;}
.x20_c00001{left:630.166500px;}
.x195_c00001{left:632.339238px;}
.x5_c00001{left:633.585000px;}
.x192_c00001{left:636.538335px;}
.x24_c00001{left:638.085000px;}
.x66_c00001{left:639.705000px;}
.xf3_c00001{left:641.369100px;}
.xf2_c00001{left:646.048980px;}
.x188_c00001{left:647.565000px;}
.x1a_c00001{left:651.225000px;}
.x44_c00001{left:654.825000px;}
.xf1_c00001{left:656.309310px;}
.x30_c00001{left:657.345000px;}
.xef_c00001{left:658.364190px;}
.xf4_c00001{left:660.448935px;}
.x3f_c00001{left:662.566500px;}
.x4f_c00001{left:663.645000px;}
.x35_c00001{left:665.266500px;}
.xf0_c00001{left:666.614190px;}
.x159_c00001{left:670.065000px;}
.x54_c00001{left:671.385000px;}
.x165_c00001{left:673.125000px;}
.x3a_c00001{left:675.525000px;}
.x2a_c00001{left:678.405000px;}
.x17e_c00001{left:679.783500px;}
.x4c_c00001{left:684.345000px;}
.x18e_c00001{left:690.718500px;}
.x199_c00001{left:694.741500px;}
.x5f_c00001{left:695.866500px;}
.x6b_c00001{left:697.845000px;}
.x18f_c00001{left:698.998425px;}
.x19c_c00001{left:700.076883px;}
.xc_c00001{left:701.266500px;}
.x61_c00001{left:702.525000px;}
.x6f_c00001{left:704.505000px;}
.x11_c00001{left:709.005000px;}
.x18d_c00001{left:710.221500px;}
.x5a_c00001{left:713.866500px;}
.x67_c00001{left:715.845000px;}
.x198_c00001{left:717.898245px;}
.x21_c00001{left:719.625000px;}
.x6_c00001{left:721.966500px;}
.x1e_c00001{left:727.545000px;}
.x190_c00001{left:735.358170px;}
.x186_c00001{left:736.531500px;}
.x189_c00001{left:737.611500px;}
.x15_c00001{left:740.685000px;}
.x197_c00001{left:742.079985px;}
.x17c_c00001{left:744.270750px;}
.x62_c00001{left:746.266500px;}
.x31_c00001{left:747.885000px;}
.x50_c00001{left:752.025000px;}
.x174_c00001{left:754.351905px;}
.x36_c00001{left:755.805000px;}
.x55_c00001{left:759.766500px;}
.x5b_c00001{left:764.266500px;}
.x75_c00001{left:765.510150px;}
.x19a_c00001{left:767.460450px;}
.x2b_c00001{left:768.945000px;}
.x4d_c00001{left:772.725000px;}
.x173_c00001{left:775.591500px;}
.x6c_c00001{left:780.645000px;}
.x12_c00001{left:789.645000px;}
.x6d_c00001{left:791.985000px;}
.xd_c00001{left:797.385000px;}
.xe_c00001{left:810.345000px;}
.x45_c00001{left:822.945000px;}
.x91_c00001{left:826.169850px;}
.x40_c00001{left:830.685000px;}
.x60_c00001{left:834.825000px;}
.x32_c00001{left:838.425000px;}
.x3b_c00001{left:843.645000px;}
.x37_c00001{left:846.345000px;}
.x51_c00001{left:848.145000px;}
.x2c_c00001{left:859.485000px;}
.x52_c00001{left:861.105000px;}
.xce_c00001{left:871.169850px;}
.x47_c00001{left:881.625000px;}
.x41_c00001{left:889.366500px;}
.x22_c00001{left:891.525000px;}
.x1b_c00001{left:899.445000px;}
.x3c_c00001{left:902.325000px;}
.x16_c00001{left:912.585000px;}
.x39_c00001{left:928.966500px;}
.x33_c00001{left:936.885000px;}
.x34_c00001{left:950.025000px;}
.x25_c00001{left:951.466500px;}
.x1c_c00001{left:959.385000px;}
.x17_c00001{left:972.525000px;}
.x46_c00001{left:984.405000px;}
.x42_c00001{left:997.366500px;}
.x23_c00001{left:1056.766500px;}
.x1d_c00001{left:1069.905000px;}
@media print{
.vd_c00001{vertical-align:-24.318773pt;}
.vf_c00001{vertical-align:-14.079147pt;}
.v1_c00001{vertical-align:-5.118752pt;}
.v2_c00001{vertical-align:-2.558336pt;}
.v0_c00001{vertical-align:0.000000pt;}
.v7_c00001{vertical-align:2.560416pt;}
.v3_c00001{vertical-align:5.118752pt;}
.vb_c00001{vertical-align:13.439573pt;}
.ve_c00001{vertical-align:18.560427pt;}
.v4_c00001{vertical-align:21.118773pt;}
.vc_c00001{vertical-align:24.318773pt;}
.v9_c00001{vertical-align:38.400000pt;}
.va_c00001{vertical-align:40.960416pt;}
.v6_c00001{vertical-align:42.879413pt;}
.v5_c00001{vertical-align:48.641653pt;}
.v8_c00001{vertical-align:51.199989pt;}
.ls23_c00001{letter-spacing:-0.757333pt;}
.ls24_c00001{letter-spacing:-0.115200pt;}
.ls22_c00001{letter-spacing:-0.061333pt;}
.ls0_c00001{letter-spacing:0.000000pt;}
.ls10_c00001{letter-spacing:0.000003pt;}
.ls3b_c00001{letter-spacing:0.001227pt;}
.ls1e_c00001{letter-spacing:0.001653pt;}
.lsa_c00001{letter-spacing:0.018133pt;}
.ls8_c00001{letter-spacing:0.020213pt;}
.ls3a_c00001{letter-spacing:0.047283pt;}
.ls1d_c00001{letter-spacing:0.048640pt;}
.ls3d_c00001{letter-spacing:0.062400pt;}
.ls41_c00001{letter-spacing:0.064427pt;}
.lsc_c00001{letter-spacing:0.064747pt;}
.lsf_c00001{letter-spacing:0.065067pt;}
.ls20_c00001{letter-spacing:0.075093pt;}
.lsb_c00001{letter-spacing:0.117333pt;}
.ls5_c00001{letter-spacing:0.128000pt;}
.ls21_c00001{letter-spacing:0.128427pt;}
.ls29_c00001{letter-spacing:0.159120pt;}
.ls25_c00001{letter-spacing:0.166400pt;}
.ls6_c00001{letter-spacing:0.227413pt;}
.ls3_c00001{letter-spacing:0.232533pt;}
.ls42_c00001{letter-spacing:0.253493pt;}
.ls9_c00001{letter-spacing:0.256853pt;}
.ls30_c00001{letter-spacing:0.264844pt;}
.ls40_c00001{letter-spacing:0.289227pt;}
.ls1a_c00001{letter-spacing:0.317867pt;}
.ls34_c00001{letter-spacing:0.319141pt;}
.ls14_c00001{letter-spacing:0.319147pt;}
.ls19_c00001{letter-spacing:0.320000pt;}
.ls2e_c00001{letter-spacing:0.320373pt;}
.ls27_c00001{letter-spacing:0.320427pt;}
.ls11_c00001{letter-spacing:0.321227pt;}
.ls1f_c00001{letter-spacing:0.325013pt;}
.ls2f_c00001{letter-spacing:0.325491pt;}
.ls7_c00001{letter-spacing:0.604533pt;}
.ls3c_c00001{letter-spacing:0.638773pt;}
.ls16_c00001{letter-spacing:1.152853pt;}
.ls3f_c00001{letter-spacing:2.078747pt;}
.ls3e_c00001{letter-spacing:2.080827pt;}
.ls43_c00001{letter-spacing:4.001627pt;}
.ls17_c00001{letter-spacing:13.760853pt;}
.ls15_c00001{letter-spacing:14.398347pt;}
.ls18_c00001{letter-spacing:14.688000pt;}
.ls1_c00001{letter-spacing:15.902293pt;}
.ls2_c00001{letter-spacing:16.702293pt;}
.ls12_c00001{letter-spacing:17.598347pt;}
.ls38_c00001{letter-spacing:18.184594pt;}
.ls13_c00001{letter-spacing:18.223467pt;}
.ls37_c00001{letter-spacing:19.029246pt;}
.ls36_c00001{letter-spacing:25.062187pt;}
.ls35_c00001{letter-spacing:25.064267pt;}
.ls32_c00001{letter-spacing:30.182987pt;}
.ls31_c00001{letter-spacing:32.270933pt;}
.ls28_c00001{letter-spacing:39.343893pt;}
.ls33_c00001{letter-spacing:39.812267pt;}
.ls1b_c00001{letter-spacing:46.847467pt;}
.ls1c_c00001{letter-spacing:48.743467pt;}
.lse_c00001{letter-spacing:52.725227pt;}
.lsd_c00001{letter-spacing:52.727360pt;}
.ls26_c00001{letter-spacing:57.264427pt;}
.ls2c_c00001{letter-spacing:69.819064pt;}
.ls2a_c00001{letter-spacing:69.973197pt;}
.ls2d_c00001{letter-spacing:69.975330pt;}
.ls2b_c00001{letter-spacing:69.979064pt;}
.ls39_c00001{letter-spacing:78.208000pt;}
.ls45_c00001{letter-spacing:264.539755pt;}
.ls44_c00001{letter-spacing:264.541888pt;}
.ls4_c00001{letter-spacing:751.743360pt;}
.ws1e_c00001{word-spacing:-57.643520pt;}
.ws39_c00001{word-spacing:-38.400000pt;}
.ws26_c00001{word-spacing:-36.864000pt;}
.ws36_c00001{word-spacing:-35.136000pt;}
.ws18_c00001{word-spacing:-32.737280pt;}
.ws38_c00001{word-spacing:-32.325120pt;}
.ws28_c00001{word-spacing:-31.872000pt;}
.ws2a_c00001{word-spacing:-29.440000pt;}
.ws1f_c00001{word-spacing:-27.084800pt;}
.ws27_c00001{word-spacing:-24.154880pt;}
.ws3f_c00001{word-spacing:-23.722667pt;}
.ws19_c00001{word-spacing:-19.237120pt;}
.ws30_c00001{word-spacing:-18.726400pt;}
.ws32_c00001{word-spacing:-18.720000pt;}
.ws29_c00001{word-spacing:-16.922880pt;}
.ws3_c00001{word-spacing:-16.404224pt;}
.ws4_c00001{word-spacing:-16.368640pt;}
.ws34_c00001{word-spacing:-16.000000pt;}
.ws3a_c00001{word-spacing:-15.929867pt;}
.ws3e_c00001{word-spacing:-14.826652pt;}
.ws17_c00001{word-spacing:-14.767375pt;}
.ws37_c00001{word-spacing:-14.720000pt;}
.ws20_c00001{word-spacing:-14.464003pt;}
.ws1b_c00001{word-spacing:-14.464000pt;}
.ws24_c00001{word-spacing:-14.400000pt;}
.ws23_c00001{word-spacing:-14.080000pt;}
.ws1_c00001{word-spacing:-13.344000pt;}
.ws44_c00001{word-spacing:-13.343985pt;}
.ws1c_c00001{word-spacing:-13.306880pt;}
.ws33_c00001{word-spacing:-13.280027pt;}
.ws2f_c00001{word-spacing:-13.120000pt;}
.ws2b_c00001{word-spacing:-12.953600pt;}
.ws2c_c00001{word-spacing:-12.892267pt;}
.ws2e_c00001{word-spacing:-12.838400pt;}
.ws3c_c00001{word-spacing:-12.640027pt;}
.ws2d_c00001{word-spacing:-12.196267pt;}
.ws42_c00001{word-spacing:-11.861333pt;}
.ws35_c00001{word-spacing:-10.720027pt;}
.ws45_c00001{word-spacing:-10.378652pt;}
.ws15_c00001{word-spacing:-10.319360pt;}
.ws1a_c00001{word-spacing:-9.690904pt;}
.ws16_c00001{word-spacing:-9.607680pt;}
.ws47_c00001{word-spacing:-8.895985pt;}
.ws1d_c00001{word-spacing:-8.389120pt;}
.ws31_c00001{word-spacing:-8.166400pt;}
.ws21_c00001{word-spacing:-3.521067pt;}
.ws3b_c00001{word-spacing:-0.063719pt;}
.ws0_c00001{word-spacing:0.000000pt;}
.wsa_c00001{word-spacing:2.218363pt;}
.wsc_c00001{word-spacing:37.632916pt;}
.ws9_c00001{word-spacing:39.587850pt;}
.ws2_c00001{word-spacing:45.847501pt;}
.ws7_c00001{word-spacing:45.951718pt;}
.wse_c00001{word-spacing:51.232666pt;}
.wsf_c00001{word-spacing:54.806093pt;}
.ws12_c00001{word-spacing:56.470630pt;}
.ws8_c00001{word-spacing:57.472768pt;}
.wsd_c00001{word-spacing:59.020134pt;}
.ws11_c00001{word-spacing:65.045325pt;}
.ws6_c00001{word-spacing:70.699571pt;}
.ws5_c00001{word-spacing:80.106968pt;}
.ws10_c00001{word-spacing:88.514304pt;}
.ws14_c00001{word-spacing:108.939187pt;}
.wsb_c00001{word-spacing:142.220518pt;}
.ws22_c00001{word-spacing:169.463900pt;}
.ws13_c00001{word-spacing:173.738982pt;}
.ws25_c00001{word-spacing:242.201338pt;}
.ws4c_c00001{word-spacing:287.365794pt;}
.ws3d_c00001{word-spacing:331.146869pt;}
.ws46_c00001{word-spacing:340.008533pt;}
.ws43_c00001{word-spacing:340.017067pt;}
.ws49_c00001{word-spacing:660.843769pt;}
.ws4b_c00001{word-spacing:660.849102pt;}
.ws41_c00001{word-spacing:665.974435pt;}
.ws4a_c00001{word-spacing:770.016993pt;}
.ws48_c00001{word-spacing:770.022326pt;}
.ws40_c00001{word-spacing:775.142326pt;}
._91_c00001{margin-left:-2345.642665pt;}
._87_c00001{margin-left:-2306.197518pt;}
._83_c00001{margin-left:-2259.782383pt;}
._86_c00001{margin-left:-2228.087233pt;}
._82_c00001{margin-left:-2179.788761pt;}
._76_c00001{margin-left:-2173.400695pt;}
._85_c00001{margin-left:-2158.031368pt;}
._92_c00001{margin-left:-2093.762181pt;}
._84_c00001{margin-left:-2079.921083pt;}
._89_c00001{margin-left:-2043.409266pt;}
._8b_c00001{margin-left:-2023.654472pt;}
._90_c00001{margin-left:-2014.694481pt;}
._75_c00001{margin-left:-2009.505971pt;}
._73_c00001{margin-left:-1999.654496pt;}
._74_c00001{margin-left:-1991.745989pt;}
._6f_c00001{margin-left:-1982.839331pt;}
._88_c00001{margin-left:-1965.292682pt;}
._8a_c00001{margin-left:-1943.660851pt;}
._8f_c00001{margin-left:-1927.889381pt;}
._80_c00001{margin-left:-1885.346095pt;}
._8e_c00001{margin-left:-1849.772798pt;}
._78_c00001{margin-left:-1805.079509pt;}
._7a_c00001{margin-left:-1800.104332pt;}
._8d_c00001{margin-left:-1775.586205pt;}
._7e_c00001{margin-left:-1729.011070pt;}
._7c_c00001{margin-left:-1723.084778pt;}
._8c_c00001{margin-left:-1695.592584pt;}
._7f_c00001{margin-left:-1687.671480pt;}
._7d_c00001{margin-left:-1669.757796pt;}
._7b_c00001{margin-left:-1664.776321pt;}
._81_c00001{margin-left:-1303.908169pt;}
._77_c00001{margin-left:-1290.244181pt;}
._6e_c00001{margin-left:-1225.599733pt;}
._79_c00001{margin-left:-1078.050548pt;}
._71_c00001{margin-left:-849.139614pt;}
._6d_c00001{margin-left:-769.705897pt;}
._70_c00001{margin-left:-632.618231pt;}
._67_c00001{margin-left:-188.268036pt;}
._61_c00001{margin-left:-149.295958pt;}
._62_c00001{margin-left:-147.781373pt;}
._65_c00001{margin-left:-133.257795pt;}
._63_c00001{margin-left:-121.618797pt;}
._66_c00001{margin-left:-120.729767pt;}
._64_c00001{margin-left:-99.359793pt;}
._30_c00001{margin-left:-17.521847pt;}
._68_c00001{margin-left:-10.264552pt;}
._3c_c00001{margin-left:-6.354908pt;}
._34_c00001{margin-left:-4.483512pt;}
._19_c00001{margin-left:-3.415195pt;}
._f_c00001{margin-left:-1.883336pt;}
._5_c00001{margin-left:-0.944817pt;}
._10_c00001{width:0.995777pt;}
._e_c00001{width:1.951784pt;}
._13_c00001{width:3.237682pt;}
._14_c00001{width:4.242300pt;}
._12_c00001{width:5.299588pt;}
._24_c00001{width:6.653066pt;}
._25_c00001{width:7.619324pt;}
._1d_c00001{width:8.536401pt;}
._1e_c00001{width:9.595881pt;}
._41_c00001{width:10.716832pt;}
._a_c00001{width:11.717688pt;}
._b_c00001{width:12.632774pt;}
._2c_c00001{width:14.249560pt;}
._2d_c00001{width:15.439536pt;}
._48_c00001{width:16.952643pt;}
._50_c00001{width:17.872602pt;}
._44_c00001{width:18.876113pt;}
._45_c00001{width:20.275333pt;}
._4a_c00001{width:21.310430pt;}
._3f_c00001{width:23.078147pt;}
._36_c00001{width:24.970496pt;}
._35_c00001{width:26.378775pt;}
._4f_c00001{width:27.726061pt;}
._47_c00001{width:28.662125pt;}
._3d_c00001{width:30.215662pt;}
._3e_c00001{width:31.114276pt;}
._4d_c00001{width:32.830440pt;}
._42_c00001{width:35.179183pt;}
._43_c00001{width:36.151692pt;}
._26_c00001{width:37.534757pt;}
._40_c00001{width:38.776126pt;}
._1a_c00001{width:45.297906pt;}
._58_c00001{width:46.529067pt;}
._49_c00001{width:49.727379pt;}
._29_c00001{width:50.807620pt;}
._5d_c00001{width:55.355905pt;}
._1c_c00001{width:56.845020pt;}
._56_c00001{width:58.239915pt;}
._4e_c00001{width:63.140074pt;}
._4c_c00001{width:64.952867pt;}
._4b_c00001{width:65.918794pt;}
._54_c00001{width:67.423253pt;}
._16_c00001{width:69.968371pt;}
._18_c00001{width:75.718405pt;}
._17_c00001{width:76.674981pt;}
._d_c00001{width:78.395946pt;}
._2a_c00001{width:79.735751pt;}
._3_c00001{width:83.356052pt;}
._2b_c00001{width:87.618909pt;}
._32_c00001{width:89.272848pt;}
._1b_c00001{width:90.172450pt;}
._28_c00001{width:91.566813pt;}
._c_c00001{width:94.758024pt;}
._23_c00001{width:97.467307pt;}
._22_c00001{width:98.898803pt;}
._53_c00001{width:101.987079pt;}
._15_c00001{width:103.345672pt;}
._31_c00001{width:105.533064pt;}
._27_c00001{width:107.931246pt;}
._6b_c00001{width:111.015653pt;}
._9_c00001{width:112.475095pt;}
._2f_c00001{width:113.958203pt;}
._39_c00001{width:116.301489pt;}
._2e_c00001{width:121.006224pt;}
._57_c00001{width:122.113142pt;}
._60_c00001{width:123.008201pt;}
._5f_c00001{width:124.800000pt;}
._46_c00001{width:130.086787pt;}
._38_c00001{width:141.270954pt;}
._59_c00001{width:143.192185pt;}
._6a_c00001{width:146.535640pt;}
._37_c00001{width:157.852066pt;}
._55_c00001{width:159.713149pt;}
._69_c00001{width:164.325519pt;}
._6c_c00001{width:167.845506pt;}
._5e_c00001{width:172.115356pt;}
._21_c00001{width:174.820778pt;}
._5a_c00001{width:175.846298pt;}
._20_c00001{width:191.131042pt;}
._33_c00001{width:206.179088pt;}
._52_c00001{width:265.198795pt;}
._51_c00001{width:289.474243pt;}
._1f_c00001{width:354.169088pt;}
._72_c00001{width:693.929845pt;}
._3a_c00001{width:744.446752pt;}
._6_c00001{width:751.738624pt;}
._8_c00001{width:881.757440pt;}
._3b_c00001{width:884.931072pt;}
._7_c00001{width:1117.848576pt;}
._5c_c00001{width:1156.742400pt;}
._5b_c00001{width:1174.022400pt;}
._11_c00001{width:1193.368064pt;}
._1_c00001{width:3052.397312pt;}
._0_c00001{width:3059.949312pt;}
._2_c00001{width:3116.113600pt;}
._4_c00001{width:3208.683138pt;}
.fs18_c00001{font-size:10.666667pt;}
.fs21_c00001{font-size:15.999947pt;}
.fs20_c00001{font-size:26.666613pt;}
.fs22_c00001{font-size:27.262403pt;}
.fs1f_c00001{font-size:31.999947pt;}
.fsb_c00001{font-size:34.560000pt;}
.fsa_c00001{font-size:37.120000pt;}
.fs1e_c00001{font-size:37.333280pt;}
.fs19_c00001{font-size:42.666667pt;}
.fse_c00001{font-size:42.880107pt;}
.fs23_c00001{font-size:43.619898pt;}
.fs3_c00001{font-size:46.080053pt;}
.fs1d_c00001{font-size:47.999947pt;}
.fs6_c00001{font-size:48.000000pt;}
.fs11_c00001{font-size:48.000107pt;}
.fs15_c00001{font-size:50.560107pt;}
.fs9_c00001{font-size:53.120053pt;}
.fsf_c00001{font-size:53.120107pt;}
.fs12_c00001{font-size:53.248107pt;}
.fs1a_c00001{font-size:53.333280pt;}
.fs0_c00001{font-size:53.760000pt;}
.fs2_c00001{font-size:54.400000pt;}
.fs1_c00001{font-size:55.040000pt;}
.fs5_c00001{font-size:58.880000pt;}
.fs7_c00001{font-size:59.008000pt;}
.fs16_c00001{font-size:63.616533pt;}
.fs17_c00001{font-size:63.719467pt;}
.fsd_c00001{font-size:64.000000pt;}
.fs13_c00001{font-size:66.560000pt;}
.fs8_c00001{font-size:70.400000pt;}
.fs1c_c00001{font-size:74.666667pt;}
.fs10_c00001{font-size:74.880000pt;}
.fs4_c00001{font-size:85.120000pt;}
.fs1b_c00001{font-size:85.333333pt;}
.fs14_c00001{font-size:96.000000pt;}
.fsc_c00001{font-size:106.880000pt;}
.y0_c00001{bottom:0.000000pt;}
.y104d_c00001{bottom:0.049333pt;}
.yb20_c00001{bottom:0.050667pt;}
.y1594_c00001{bottom:0.052000pt;}
.yf05_c00001{bottom:0.052533pt;}
.yfa2_c00001{bottom:0.052667pt;}
.y152b_c00001{bottom:0.053333pt;}
.yfa4_c00001{bottom:0.054667pt;}
.y143a_c00001{bottom:0.055200pt;}
.y1207_c00001{bottom:0.056000pt;}
.yf4a_c00001{bottom:0.057333pt;}
.y18dc_c00001{bottom:0.062667pt;}
.yb22_c00001{bottom:0.068000pt;}
.y1438_c00001{bottom:0.102667pt;}
.y1dea_c00001{bottom:0.105333pt;}
.yfee_c00001{bottom:0.107867pt;}
.y152d_c00001{bottom:0.108000pt;}
.y1035_c00001{bottom:2.226667pt;}
.y1531_c00001{bottom:2.237227pt;}
.yf0b_c00001{bottom:2.237333pt;}
.yf08_c00001{bottom:2.238560pt;}
.yf10_c00001{bottom:2.238667pt;}
.y1528_c00001{bottom:2.239893pt;}
.yf12_c00001{bottom:2.240000pt;}
.y18d9_c00001{bottom:2.240013pt;}
.y18b1_c00001{bottom:2.240027pt;}
.y1436_c00001{bottom:2.240160pt;}
.y1038_c00001{bottom:2.241227pt;}
.y1441_c00001{bottom:2.241333pt;}
.y1cb9_c00001{bottom:2.252000pt;}
.yf0d_c00001{bottom:2.290667pt;}
.y143d_c00001{bottom:2.291173pt;}
.y1cb6_c00001{bottom:2.295107pt;}
.y498_c00001{bottom:2.880267pt;}
.y5ac_c00001{bottom:3.033867pt;}
.y5ad_c00001{bottom:3.034000pt;}
.y4d2_c00001{bottom:3.037467pt;}
.y635_c00001{bottom:3.037867pt;}
.y67_c00001{bottom:3.038667pt;}
.y53a_c00001{bottom:3.038800pt;}
.y42c_c00001{bottom:3.038933pt;}
.y490_c00001{bottom:3.039067pt;}
.y5d4_c00001{bottom:3.039200pt;}
.y441_c00001{bottom:3.039600pt;}
.y4da_c00001{bottom:3.039733pt;}
.y436_c00001{bottom:3.039867pt;}
.y539_c00001{bottom:3.040000pt;}
.y3ce_c00001{bottom:3.040133pt;}
.y3f6_c00001{bottom:3.040267pt;}
.y409_c00001{bottom:3.040533pt;}
.y519_c00001{bottom:3.040800pt;}
.y4a3_c00001{bottom:3.040933pt;}
.y45c_c00001{bottom:3.041067pt;}
.y571_c00001{bottom:3.041200pt;}
.y580_c00001{bottom:3.041333pt;}
.y3f1_c00001{bottom:3.041467pt;}
.y3b6_c00001{bottom:3.042533pt;}
.y554_c00001{bottom:3.198667pt;}
.y3e2_c00001{bottom:3.198800pt;}
.y5bb_c00001{bottom:3.199067pt;}
.y46b_c00001{bottom:3.199200pt;}
.y3ea_c00001{bottom:3.199333pt;}
.y5c0_c00001{bottom:3.199467pt;}
.y444_c00001{bottom:3.199600pt;}
.y4ad_c00001{bottom:3.199733pt;}
.y44a_c00001{bottom:3.199867pt;}
.y3f9_c00001{bottom:3.200000pt;}
.y432_c00001{bottom:3.200133pt;}
.y3dc_c00001{bottom:3.200267pt;}
.y44e_c00001{bottom:3.200400pt;}
.y3bd_c00001{bottom:3.201200pt;}
.y541_c00001{bottom:3.201333pt;}
.y462_c00001{bottom:3.201467pt;}
.y43a_c00001{bottom:3.202800pt;}
.y592_c00001{bottom:3.240000pt;}
.y9b2_c00001{bottom:3.337333pt;}
.y9bc_c00001{bottom:3.342667pt;}
.y9be_c00001{bottom:3.342673pt;}
.y2_c00001{bottom:3.678667pt;}
.y2f_c00001{bottom:3.679600pt;}
.y61_c00001{bottom:3.679733pt;}
.y2c_c00001{bottom:3.680000pt;}
.y64_c00001{bottom:3.680133pt;}
.y67a_c00001{bottom:3.872400pt;}
.y7d0_c00001{bottom:3.998667pt;}
.y81d_c00001{bottom:4.000000pt;}
.y607_c00001{bottom:4.001467pt;}
.y417_c00001{bottom:4.158267pt;}
.y4c4_c00001{bottom:4.158667pt;}
.y402_c00001{bottom:4.158800pt;}
.y39d_c00001{bottom:4.160000pt;}
.y396_c00001{bottom:4.160133pt;}
.y4ed_c00001{bottom:4.160533pt;}
.y410_c00001{bottom:4.160933pt;}
.y419_c00001{bottom:4.161200pt;}
.y4c7_c00001{bottom:4.161333pt;}
.y481_c00001{bottom:4.161867pt;}
.y528_c00001{bottom:4.200133pt;}
.y423_c00001{bottom:4.314133pt;}
.y527_c00001{bottom:4.318667pt;}
.y405_c00001{bottom:4.320000pt;}
.y500_c00001{bottom:4.321333pt;}
.y5fd_c00001{bottom:4.640000pt;}
.y552_c00001{bottom:5.119867pt;}
.yf47_c00001{bottom:5.200000pt;}
.y54c_c00001{bottom:5.280000pt;}
.y57a_c00001{bottom:5.280133pt;}
.y54f_c00001{bottom:5.280400pt;}
.y1b1b_c00001{bottom:5.305933pt;}
.ydaa_c00001{bottom:5.999627pt;}
.y1c99_c00001{bottom:6.000227pt;}
.ydc5_c00001{bottom:6.000400pt;}
.ydfc_c00001{bottom:6.000493pt;}
.ye1d_c00001{bottom:6.000760pt;}
.ye49_c00001{bottom:6.001293pt;}
.y6cd_c00001{bottom:6.719733pt;}
.y6cf_c00001{bottom:6.719867pt;}
.y6c5_c00001{bottom:6.720000pt;}
.y6c4_c00001{bottom:6.721333pt;}
.y122e_c00001{bottom:7.810640pt;}
.y1278_c00001{bottom:7.810773pt;}
.y11ae_c00001{bottom:7.810907pt;}
.y1190_c00001{bottom:7.811440pt;}
.y1254_c00001{bottom:7.811973pt;}
.y1142_c00001{bottom:7.814667pt;}
.y10e8_c00001{bottom:7.866667pt;}
.yac_c00001{bottom:7.933333pt;}
.ya3_c00001{bottom:7.973333pt;}
.y9d_c00001{bottom:8.000000pt;}
.y3c5_c00001{bottom:8.158667pt;}
.y3c8_c00001{bottom:8.160000pt;}
.y1bdb_c00001{bottom:8.661600pt;}
.y1b67_c00001{bottom:8.665200pt;}
.y1b79_c00001{bottom:8.667600pt;}
.y1bae_c00001{bottom:8.667867pt;}
.y1b8f_c00001{bottom:8.668533pt;}
.y116b_c00001{bottom:8.931973pt;}
.y644_c00001{bottom:8.954267pt;}
.y382_c00001{bottom:8.958667pt;}
.y3c1_c00001{bottom:8.960000pt;}
.y663_c00001{bottom:9.118667pt;}
.y627_c00001{bottom:9.118800pt;}
.y3b2_c00001{bottom:9.120000pt;}
.y630_c00001{bottom:9.120133pt;}
.y62e_c00001{bottom:9.121200pt;}
.y3ee_c00001{bottom:9.121333pt;}
.y667_c00001{bottom:9.160000pt;}
.yd1_c00001{bottom:9.306667pt;}
.yd4_c00001{bottom:9.346667pt;}
.yd7_c00001{bottom:9.373333pt;}
.ycb_c00001{bottom:9.413333pt;}
.ydc_c00001{bottom:9.440000pt;}
.y3ff_c00001{bottom:9.598667pt;}
.y923_c00001{bottom:10.399600pt;}
.y9a2_c00001{bottom:10.400000pt;}
.y911_c00001{bottom:10.400133pt;}
.y90b_c00001{bottom:10.401200pt;}
.y9ac_c00001{bottom:10.401333pt;}
.y9aa_c00001{bottom:10.426667pt;}
.y9d8_c00001{bottom:10.558667pt;}
.y917_c00001{bottom:10.559733pt;}
.y92a_c00001{bottom:10.559867pt;}
.y999_c00001{bottom:10.560000pt;}
.y92c_c00001{bottom:10.560400pt;}
.y91a_c00001{bottom:10.561200pt;}
.y920_c00001{bottom:10.561600pt;}
.y6c2_c00001{bottom:10.880000pt;}
.y622_c00001{bottom:11.038667pt;}
.y50a_c00001{bottom:11.039600pt;}
.y479_c00001{bottom:11.518667pt;}
.y47b_c00001{bottom:11.518800pt;}
.y50e_c00001{bottom:11.519467pt;}
.y40b_c00001{bottom:11.519867pt;}
.y52a_c00001{bottom:11.520000pt;}
.y3b8_c00001{bottom:11.521333pt;}
.y465_c00001{bottom:11.521467pt;}
.y1def_c00001{bottom:11.600907pt;}
.yf01_c00001{bottom:11.603733pt;}
.y45f_c00001{bottom:11.681333pt;}
.y19df_c00001{bottom:12.346067pt;}
.y4c2_c00001{bottom:12.478667pt;}
.y4ee_c00001{bottom:12.479733pt;}
.y412_c00001{bottom:12.480000pt;}
.y47f_c00001{bottom:12.481333pt;}
.y421_c00001{bottom:12.634133pt;}
.y4eb_c00001{bottom:12.634267pt;}
.y384_c00001{bottom:12.638667pt;}
.y425_c00001{bottom:12.639600pt;}
.y38a_c00001{bottom:12.640000pt;}
.y40d_c00001{bottom:12.641333pt;}
.y4fc_c00001{bottom:12.680000pt;}
.y1afa_c00001{bottom:13.089653pt;}
.y1b32_c00001{bottom:13.089933pt;}
.y1b05_c00001{bottom:13.090533pt;}
.y1b51_c00001{bottom:13.091000pt;}
.y625_c00001{bottom:13.118800pt;}
.y3c9_c00001{bottom:13.120000pt;}
.y485_c00001{bottom:13.121333pt;}
.y1530_c00001{bottom:14.077333pt;}
.yf07_c00001{bottom:14.078667pt;}
.y18d8_c00001{bottom:14.079600pt;}
.y1527_c00001{bottom:14.080000pt;}
.y18b0_c00001{bottom:14.080133pt;}
.y1435_c00001{bottom:14.080267pt;}
.y1037_c00001{bottom:14.081333pt;}
.y1d13_c00001{bottom:14.640880pt;}
.y102d_c00001{bottom:14.640893pt;}
.y1db4_c00001{bottom:14.641533pt;}
.y1a2d_c00001{bottom:14.907200pt;}
.y1a99_c00001{bottom:14.910067pt;}
.y1a7a_c00001{bottom:14.911000pt;}
.y1a56_c00001{bottom:14.911267pt;}
.y597_c00001{bottom:15.065333pt;}
.yc55_c00001{bottom:15.222813pt;}
.ybf7_c00001{bottom:15.226267pt;}
.y12d3_c00001{bottom:15.227200pt;}
.y113_c00001{bottom:15.266667pt;}
.yc7f_c00001{bottom:15.272547pt;}
.yc27_c00001{bottom:15.278280pt;}
.y12d_c00001{bottom:15.293333pt;}
.y215_c00001{bottom:15.333333pt;}
.yc2_c00001{bottom:15.360000pt;}
.y1b1a_c00001{bottom:15.490827pt;}
.y10bf_c00001{bottom:15.650400pt;}
.y10a6_c00001{bottom:15.650627pt;}
.y1101_c00001{bottom:15.651067pt;}
.y111b_c00001{bottom:15.706480pt;}
.y9b4_c00001{bottom:15.755029pt;}
.y9c0_c00001{bottom:15.779187pt;}
.y1817_c00001{bottom:15.970053pt;}
.y16b9_c00001{bottom:15.971227pt;}
.y137e_c00001{bottom:15.971760pt;}
.y17f5_c00001{bottom:15.972187pt;}
.y135c_c00001{bottom:15.972293pt;}
.y1323_c00001{bottom:15.972667pt;}
.y160e_c00001{bottom:15.972827pt;}
.y1565_c00001{bottom:15.972960pt;}
.y13ab_c00001{bottom:15.973360pt;}
.y18fb_c00001{bottom:15.973493pt;}
.y163c_c00001{bottom:15.974560pt;}
.y598_c00001{bottom:16.346667pt;}
.y605_c00001{bottom:16.481333pt;}
.y38e_c00001{bottom:16.640000pt;}
.y494_c00001{bottom:16.799600pt;}
.y3a6_c00001{bottom:17.120000pt;}
.y3a8_c00001{bottom:17.279733pt;}
.y39f_c00001{bottom:17.320000pt;}
.y497_c00001{bottom:18.080267pt;}
.y10e7_c00001{bottom:18.105733pt;}
.y51c_c00001{bottom:18.400000pt;}
.y92f_c00001{bottom:19.200000pt;}
.y92e_c00001{bottom:19.359867pt;}
.y18de_c00001{bottom:19.439493pt;}
.y14d6_c00001{bottom:19.439627pt;}
.y16c3_c00001{bottom:19.439760pt;}
.y1388_c00001{bottom:19.440293pt;}
.y1618_c00001{bottom:19.441360pt;}
.y48f_c00001{bottom:19.679200pt;}
.y5b8_c00001{bottom:19.679867pt;}
.y518_c00001{bottom:19.680933pt;}
.y584_c00001{bottom:19.682667pt;}
.yd3e_c00001{bottom:19.708067pt;}
.y4a2_c00001{bottom:19.721200pt;}
.y4d1_c00001{bottom:19.837467pt;}
.y453_c00001{bottom:19.838667pt;}
.y566_c00001{bottom:19.838800pt;}
.y5d6_c00001{bottom:19.839600pt;}
.y4d9_c00001{bottom:19.839733pt;}
.y4ac_c00001{bottom:19.839867pt;}
.y447_c00001{bottom:19.840000pt;}
.y3d7_c00001{bottom:19.840133pt;}
.y43d_c00001{bottom:19.841333pt;}
.y43e_c00001{bottom:19.841467pt;}
.y3f5_c00001{bottom:19.866800pt;}
.y57c_c00001{bottom:19.880000pt;}
.y57d_c00001{bottom:19.880133pt;}
.y577_c00001{bottom:19.993867pt;}
.y3db_c00001{bottom:19.994000pt;}
.y476_c00001{bottom:19.994133pt;}
.y47c_c00001{bottom:19.998667pt;}
.y3e1_c00001{bottom:19.998800pt;}
.y435_c00001{bottom:19.999200pt;}
.y443_c00001{bottom:19.999600pt;}
.y449_c00001{bottom:19.999867pt;}
.y3ba_c00001{bottom:20.000000pt;}
.y431_c00001{bottom:20.000133pt;}
.y563_c00001{bottom:20.000267pt;}
.y408_c00001{bottom:20.000400pt;}
.y3bc_c00001{bottom:20.001200pt;}
.y3f0_c00001{bottom:20.001333pt;}
.y461_c00001{bottom:20.001467pt;}
.y3b5_c00001{bottom:20.001867pt;}
.y439_c00001{bottom:20.002267pt;}
.y5ba_c00001{bottom:20.026667pt;}
.y46a_c00001{bottom:20.026800pt;}
.y593_c00001{bottom:20.040000pt;}
.y3d4_c00001{bottom:20.040133pt;}
.y3e9_c00001{bottom:20.040533pt;}
.y19f7_c00001{bottom:20.185667pt;}
.y1a10_c00001{bottom:20.185947pt;}
.y19b8_c00001{bottom:20.186533pt;}
.y79d_c00001{bottom:20.186667pt;}
.y19a0_c00001{bottom:20.187147pt;}
.yda9_c00001{bottom:20.399627pt;}
.ydc4_c00001{bottom:20.400400pt;}
.ye1c_c00001{bottom:20.400760pt;}
.y1e7d_c00001{bottom:20.403680pt;}
.yfe9_c00001{bottom:20.404213pt;}
.y1c98_c00001{bottom:20.453293pt;}
.ye48_c00001{bottom:20.453960pt;}
.y463_c00001{bottom:20.641333pt;}
.ya57_c00001{bottom:20.666880pt;}
.y4ec_c00001{bottom:20.954267pt;}
.y4c3_c00001{bottom:20.958667pt;}
.y39c_c00001{bottom:20.960000pt;}
.y480_c00001{bottom:20.961333pt;}
.y422_c00001{bottom:21.114133pt;}
.y401_c00001{bottom:21.118667pt;}
.y426_c00001{bottom:21.119867pt;}
.y395_c00001{bottom:21.120000pt;}
.y40f_c00001{bottom:21.121333pt;}
.y4fd_c00001{bottom:21.160000pt;}
.y640_c00001{bottom:21.440000pt;}
.y63d_c00001{bottom:21.480000pt;}
.y65e_c00001{bottom:21.593867pt;}
.y638_c00001{bottom:21.598667pt;}
.y65b_c00001{bottom:21.600000pt;}
.y66e_c00001{bottom:21.625333pt;}
.y91e_c00001{bottom:21.761333pt;}
.y679_c00001{bottom:21.792667pt;}
.y914_c00001{bottom:21.919733pt;}
.y909_c00001{bottom:21.920000pt;}
.y91c_c00001{bottom:21.921333pt;}
.y927_c00001{bottom:21.960000pt;}
.y54e_c00001{bottom:22.074133pt;}
.y5c9_c00001{bottom:22.078667pt;}
.y551_c00001{bottom:22.079733pt;}
.y54b_c00001{bottom:22.080000pt;}
.y579_c00001{bottom:22.080133pt;}
.y91b_c00001{bottom:22.081333pt;}
.y926_c00001{bottom:22.120000pt;}
.y118f_c00001{bottom:22.211440pt;}
.y1253_c00001{bottom:22.211973pt;}
.y1141_c00001{bottom:22.214667pt;}
.y5ca_c00001{bottom:22.238667pt;}
.y5c8_c00001{bottom:22.239600pt;}
.y5c1_c00001{bottom:22.240000pt;}
.y122d_c00001{bottom:22.265840pt;}
.y1277_c00001{bottom:22.265973pt;}
.y11ad_c00001{bottom:22.266107pt;}
.y5bc_c00001{bottom:22.266667pt;}
.y116a_c00001{bottom:22.266907pt;}
.y19de_c00001{bottom:22.586173pt;}
.ydfb_c00001{bottom:22.853160pt;}
.y4dd_c00001{bottom:22.879600pt;}
.y193b_c00001{bottom:23.009067pt;}
.y176e_c00001{bottom:23.009600pt;}
.y1957_c00001{bottom:23.010933pt;}
.y12ac_c00001{bottom:23.011200pt;}
.y1295_c00001{bottom:23.011253pt;}
.y12e9_c00001{bottom:23.011733pt;}
.y178a_c00001{bottom:23.012000pt;}
.y1304_c00001{bottom:23.014533pt;}
.y1bda_c00001{bottom:23.061600pt;}
.y1b66_c00001{bottom:23.065200pt;}
.y1b78_c00001{bottom:23.067600pt;}
.y1bad_c00001{bottom:23.067867pt;}
.y1b8e_c00001{bottom:23.068533pt;}
.y61e_c00001{bottom:23.358667pt;}
.y672_c00001{bottom:23.360000pt;}
.y5a2_c00001{bottom:23.361067pt;}
.y1dee_c00001{bottom:23.441013pt;}
.yf00_c00001{bottom:23.443840pt;}
.y5f8_c00001{bottom:23.518667pt;}
.y620_c00001{bottom:23.520000pt;}
.y458_c00001{bottom:23.520133pt;}
.ybc6_c00001{bottom:23.754507pt;}
.yb64_c00001{bottom:23.756933pt;}
.yba2_c00001{bottom:23.757440pt;}
.yb47_c00001{bottom:23.760000pt;}
.yb86_c00001{bottom:23.760373pt;}
.y3f3_c00001{bottom:23.866667pt;}
.y3f8_c00001{bottom:24.000000pt;}
.y3d1_c00001{bottom:24.040000pt;}
.y3d9_c00001{bottom:24.474000pt;}
.y3e4_c00001{bottom:24.478667pt;}
.y3d6_c00001{bottom:24.480000pt;}
.y3e7_c00001{bottom:24.520000pt;}
.y3df_c00001{bottom:24.640000pt;}
.y3c4_c00001{bottom:24.958667pt;}
.y3c7_c00001{bottom:24.960000pt;}
.y642_c00001{bottom:25.114133pt;}
.y63f_c00001{bottom:25.120000pt;}
.y63c_c00001{bottom:25.160000pt;}
.y65d_c00001{bottom:25.273867pt;}
.y637_c00001{bottom:25.278667pt;}
.y492_c00001{bottom:25.280000pt;}
.y66d_c00001{bottom:25.305333pt;}
.y665_c00001{bottom:25.320000pt;}
.y12d2_c00001{bottom:25.412093pt;}
.y9b3_c00001{bottom:25.770129pt;}
.y9bd_c00001{bottom:25.811466pt;}
.y9bf_c00001{bottom:25.811479pt;}
.y392_c00001{bottom:26.400000pt;}
.y1e8f_c00001{bottom:26.480880pt;}
.y1de6_c00001{bottom:26.483787pt;}
.y51a_c00001{bottom:26.720267pt;}
.y1b19_c00001{bottom:27.011133pt;}
.yd19_c00001{bottom:27.489467pt;}
.yd03_c00001{bottom:27.489867pt;}
.yd54_c00001{bottom:27.490200pt;}
.y1cdb_c00001{bottom:27.491267pt;}
.yd72_c00001{bottom:27.545533pt;}
.y1cf8_c00001{bottom:27.546067pt;}
.y509_c00001{bottom:27.679733pt;}
.y603_c00001{bottom:27.840133pt;}
.y634_c00001{bottom:27.998267pt;}
.y610_c00001{bottom:27.999200pt;}
.y619_c00001{bottom:27.999600pt;}
.y5fa_c00001{bottom:28.000000pt;}
.y45b_c00001{bottom:28.000400pt;}
.y653_c00001{bottom:28.026800pt;}
.y659_c00001{bottom:28.040000pt;}
.y64c_c00001{bottom:28.041067pt;}
.y930_c00001{bottom:28.159867pt;}
.y429_c00001{bottom:28.318667pt;}
.y46f_c00001{bottom:28.320000pt;}
.y3b7_c00001{bottom:28.321333pt;}
.y40a_c00001{bottom:28.360000pt;}
.ya1f_c00001{bottom:28.449600pt;}
.ya32_c00001{bottom:28.449867pt;}
.ya94_c00001{bottom:28.450693pt;}
.ya75_c00001{bottom:28.451013pt;}
.y473_c00001{bottom:28.474000pt;}
.y42e_c00001{bottom:28.478667pt;}
.y46d_c00001{bottom:28.480000pt;}
.y45e_c00001{bottom:28.481333pt;}
.y467_c00001{bottom:28.506667pt;}
.y606_c00001{bottom:28.961333pt;}
.y1e1c_c00001{bottom:29.204480pt;}
.y1ebf_c00001{bottom:29.206613pt;}
.y1085_c00001{bottom:29.207147pt;}
.y1a2c_c00001{bottom:29.307200pt;}
.y10e6_c00001{bottom:29.625520pt;}
.yc7e_c00001{bottom:29.672547pt;}
.yc54_c00001{bottom:29.675480pt;}
.yc26_c00001{bottom:29.678280pt;}
.ybf6_c00001{bottom:29.678933pt;}
.yd3d_c00001{bottom:29.947653pt;}
.y624_c00001{bottom:30.078667pt;}
.y1816_c00001{bottom:30.370053pt;}
.y16b8_c00001{bottom:30.371227pt;}
.y137d_c00001{bottom:30.371760pt;}
.y1322_c00001{bottom:30.372667pt;}
.y160d_c00001{bottom:30.372827pt;}
.y1333_c00001{bottom:30.373200pt;}
.y183d_c00001{bottom:30.422720pt;}
.y14f4_c00001{bottom:30.424960pt;}
.y1564_c00001{bottom:30.425627pt;}
.y13aa_c00001{bottom:30.426027pt;}
.y18fa_c00001{bottom:30.426160pt;}
.y17f4_c00001{bottom:30.427387pt;}
.y135b_c00001{bottom:30.427493pt;}
.y163b_c00001{bottom:30.427627pt;}
.y1a55_c00001{bottom:30.431533pt;}
.ya56_c00001{bottom:30.851773pt;}
.y4db_c00001{bottom:31.360000pt;}
.y63a_c00001{bottom:31.520000pt;}
.y632_c00001{bottom:31.678667pt;}
.y651_c00001{bottom:31.706667pt;}
.y657_c00001{bottom:31.720000pt;}
.y1e7c_c00001{bottom:32.243787pt;}
.yfe8_c00001{bottom:32.244320pt;}
.y1938_c00001{bottom:32.562507pt;}
.y1910_c00001{bottom:32.563920pt;}
.y1984_c00001{bottom:32.565147pt;}
.y3cb_c00001{bottom:32.960000pt;}
.y4a7_c00001{bottom:33.120000pt;}
.ya9b_c00001{bottom:33.332800pt;}
.y7b_c00001{bottom:33.333867pt;}
.y916_c00001{bottom:33.440000pt;}
.y496_c00001{bottom:33.440133pt;}
.y910_c00001{bottom:33.440267pt;}
.y90a_c00001{bottom:33.441333pt;}
.y929_c00001{bottom:33.600000pt;}
.y919_c00001{bottom:33.601333pt;}
.y925_c00001{bottom:33.640000pt;}
.y493_c00001{bottom:33.760000pt;}
.y14d5_c00001{bottom:33.892293pt;}
.y643_c00001{bottom:33.914133pt;}
.y662_c00001{bottom:33.918667pt;}
.y669_c00001{bottom:33.920000pt;}
.y666_c00001{bottom:33.960000pt;}
.y626_c00001{bottom:34.078667pt;}
.y62d_c00001{bottom:34.080000pt;}
.y19dd_c00001{bottom:34.105960pt;}
.y16_c00001{bottom:34.133867pt;}
.y1af9_c00001{bottom:34.849520pt;}
.y1b31_c00001{bottom:34.850333pt;}
.y1b04_c00001{bottom:34.850400pt;}
.y1b50_c00001{bottom:34.850867pt;}
.yda8_c00001{bottom:34.852293pt;}
.y1c97_c00001{bottom:34.853293pt;}
.ye1b_c00001{bottom:34.853427pt;}
.ydc3_c00001{bottom:34.853467pt;}
.ye47_c00001{bottom:34.853960pt;}
.y48e_c00001{bottom:35.039067pt;}
.y4b7_c00001{bottom:35.040000pt;}
.y5b7_c00001{bottom:35.040267pt;}
.y517_c00001{bottom:35.040800pt;}
.y583_c00001{bottom:35.042533pt;}
.y4a1_c00001{bottom:35.081067pt;}
.y4ab_c00001{bottom:35.199733pt;}
.y51b_c00001{bottom:35.200000pt;}
.yf9e_c00001{bottom:35.281133pt;}
.y1e4e_c00001{bottom:35.284467pt;}
.y1f29_c00001{bottom:35.763040pt;}
.y621_c00001{bottom:35.838667pt;}
.y122c_c00001{bottom:36.665840pt;}
.y1276_c00001{bottom:36.665973pt;}
.y11ac_c00001{bottom:36.666107pt;}
.y118e_c00001{bottom:36.666640pt;}
.y1169_c00001{bottom:36.666907pt;}
.y1252_c00001{bottom:36.667173pt;}
.y1140_c00001{bottom:36.669867pt;}
.y3da_c00001{bottom:36.794000pt;}
.y475_c00001{bottom:36.794133pt;}
.y434_c00001{bottom:36.798667pt;}
.y42b_c00001{bottom:36.798800pt;}
.y3cd_c00001{bottom:36.800000pt;}
.y430_c00001{bottom:36.800133pt;}
.y3b4_c00001{bottom:36.801333pt;}
.y4cc_c00001{bottom:36.824800pt;}
.y4d0_c00001{bottom:36.824933pt;}
.y3f4_c00001{bottom:36.826667pt;}
.y469_c00001{bottom:36.826800pt;}
.y3e8_c00001{bottom:36.840000pt;}
.y3d3_c00001{bottom:36.840133pt;}
.y12d1_c00001{bottom:36.931880pt;}
.y44d_c00001{bottom:36.954000pt;}
.y3e0_c00001{bottom:36.958667pt;}
.y3bb_c00001{bottom:36.960000pt;}
.y460_c00001{bottom:36.961333pt;}
.y438_c00001{bottom:36.962667pt;}
.y1b18_c00001{bottom:37.251240pt;}
.ydfa_c00001{bottom:37.253160pt;}
.y10be_c00001{bottom:37.410267pt;}
.y10a5_c00001{bottom:37.410493pt;}
.y1100_c00001{bottom:37.410933pt;}
.y111a_c00001{bottom:37.411680pt;}
.y1b65_c00001{bottom:37.465200pt;}
.y1b77_c00001{bottom:37.467600pt;}
.y1bac_c00001{bottom:37.467867pt;}
.y1bd9_c00001{bottom:37.516800pt;}
.yb63_c00001{bottom:38.156933pt;}
.yba1_c00001{bottom:38.157440pt;}
.yb46_c00001{bottom:38.160000pt;}
.ybc5_c00001{bottom:38.207173pt;}
.yb85_c00001{bottom:38.213040pt;}
.yd7e_c00001{bottom:38.251920pt;}
.yd77_c00001{bottom:38.252147pt;}
.yaa6_c00001{bottom:38.252387pt;}
.y1124_c00001{bottom:38.252720pt;}
.yaa2_c00001{bottom:38.252907pt;}
.y1e8e_c00001{bottom:38.320987pt;}
.y1de5_c00001{bottom:38.323373pt;}
.y10e5_c00001{bottom:39.810933pt;}
.y4dc_c00001{bottom:39.840000pt;}
.y1b8d_c00001{bottom:39.921200pt;}
.y79b_c00001{bottom:40.090933pt;}
.y5a1_c00001{bottom:40.161067pt;}
.y455_c00001{bottom:40.320000pt;}
.y457_c00001{bottom:40.320133pt;}
.y4b2_c00001{bottom:40.638800pt;}
.y488_c00001{bottom:40.640133pt;}
.y49c_c00001{bottom:40.680133pt;}
.y3d0_c00001{bottom:40.840000pt;}
.y1e1b_c00001{bottom:40.991973pt;}
.y1ebe_c00001{bottom:40.994107pt;}
.y1084_c00001{bottom:40.994640pt;}
.y17e2_c00001{bottom:41.362507pt;}
.y17a2_c00001{bottom:41.365520pt;}
.y14c6_c00001{bottom:41.365920pt;}
.y4a5_c00001{bottom:41.440000pt;}
.yd3c_c00001{bottom:41.466400pt;}
.y19f6_c00001{bottom:41.890867pt;}
.y19b7_c00001{bottom:41.891733pt;}
.y199f_c00001{bottom:41.892347pt;}
.y1a0f_c00001{bottom:41.945813pt;}
.ya55_c00001{bottom:42.371560pt;}
.y508_c00001{bottom:43.039600pt;}
.y391_c00001{bottom:43.200000pt;}
.y648_c00001{bottom:44.000000pt;}
.y64a_c00001{bottom:44.040000pt;}
.yc7d_c00001{bottom:44.072547pt;}
.yc53_c00001{bottom:44.075480pt;}
.yc25_c00001{bottom:44.078280pt;}
.ybf5_c00001{bottom:44.078933pt;}
.yb1c_c00001{bottom:44.290187pt;}
.y19dc_c00001{bottom:44.346067pt;}
.y1937_c00001{bottom:44.402613pt;}
.y190f_c00001{bottom:44.404027pt;}
.y1983_c00001{bottom:44.405253pt;}
.y176d_c00001{bottom:44.768933pt;}
.y12ab_c00001{bottom:44.771067pt;}
.y1294_c00001{bottom:44.771120pt;}
.y1956_c00001{bottom:44.771333pt;}
.y1789_c00001{bottom:44.772400pt;}
.y1303_c00001{bottom:44.774933pt;}
.y183c_c00001{bottom:44.822720pt;}
.y14f3_c00001{bottom:44.824960pt;}
.y1815_c00001{bottom:44.825253pt;}
.y1563_c00001{bottom:44.825627pt;}
.y13a9_c00001{bottom:44.826027pt;}
.y18f9_c00001{bottom:44.826160pt;}
.y16b7_c00001{bottom:44.826427pt;}
.y137c_c00001{bottom:44.826960pt;}
.y17f3_c00001{bottom:44.827387pt;}
.y135a_c00001{bottom:44.827493pt;}
.y163a_c00001{bottom:44.827627pt;}
.y1321_c00001{bottom:44.827867pt;}
.y913_c00001{bottom:44.959867pt;}
.y90d_c00001{bottom:44.960000pt;}
.y41d_c00001{bottom:45.280000pt;}
.y4ca_c00001{bottom:45.305333pt;}
.y59d_c00001{bottom:45.758800pt;}
.y126_c00001{bottom:46.106667pt;}
.y11e_c00001{bottom:46.173333pt;}
.y1a9c_c00001{bottom:46.590200pt;}
.y2c9_c00001{bottom:46.786667pt;}
.yf9d_c00001{bottom:47.121240pt;}
.y1e4d_c00001{bottom:47.124053pt;}
.y12d0_c00001{bottom:47.171987pt;}
.yd7d_c00001{bottom:47.586813pt;}
.yd76_c00001{bottom:47.587040pt;}
.yaa5_c00001{bottom:47.587280pt;}
.y1123_c00001{bottom:47.587613pt;}
.yaa1_c00001{bottom:47.587800pt;}
.y1f28_c00001{bottom:47.603147pt;}
.y1aec_c00001{bottom:48.240000pt;}
.y14d4_c00001{bottom:48.292293pt;}
.y5a9_c00001{bottom:48.634267pt;}
.y1b17_c00001{bottom:48.771027pt;}
.y495_c00001{bottom:48.800000pt;}
.y2b1_c00001{bottom:48.826667pt;}
.y4b0_c00001{bottom:49.118667pt;}
.y489_c00001{bottom:49.120000pt;}
.y49a_c00001{bottom:49.160000pt;}
.yd02_c00001{bottom:49.249733pt;}
.yd18_c00001{bottom:49.249867pt;}
.yd53_c00001{bottom:49.250600pt;}
.y1cda_c00001{bottom:49.251133pt;}
.yda7_c00001{bottom:49.252293pt;}
.y1c96_c00001{bottom:49.253293pt;}
.yd71_c00001{bottom:49.253400pt;}
.ye1a_c00001{bottom:49.253427pt;}
.ydc2_c00001{bottom:49.253467pt;}
.y1cf7_c00001{bottom:49.253933pt;}
.ye46_c00001{bottom:49.253960pt;}
.y4a6_c00001{bottom:49.920000pt;}
.ya31_c00001{bottom:50.157733pt;}
.ya1e_c00001{bottom:50.158000pt;}
.ya74_c00001{bottom:50.158880pt;}
.y102c_c00001{bottom:50.160627pt;}
.y1d12_c00001{bottom:50.161147pt;}
.y1db3_c00001{bottom:50.161800pt;}
.y16b2_c00001{bottom:50.161827pt;}
.y1662_c00001{bottom:50.162107pt;}
.y175e_c00001{bottom:50.163947pt;}
.y1433_c00001{bottom:50.164600pt;}
.y1726_c00001{bottom:50.166733pt;}
.ya93_c00001{bottom:50.210027pt;}
.y94_c00001{bottom:50.272000pt;}
.y37e_c00001{bottom:50.272400pt;}
.ydf9_c00001{bottom:50.371907pt;}
.y48d_c00001{bottom:50.398933pt;}
.y4aa_c00001{bottom:50.399733pt;}
.y4b6_c00001{bottom:50.399867pt;}
.y5b6_c00001{bottom:50.400133pt;}
.y516_c00001{bottom:50.400667pt;}
.y582_c00001{bottom:50.401333pt;}
.y4a0_c00001{bottom:50.440933pt;}
.y3a4_c00001{bottom:50.714267pt;}
.y113f_c00001{bottom:51.069867pt;}
.y721_c00001{bottom:51.072400pt;}
.y10e4_c00001{bottom:51.330720pt;}
.yd3b_c00001{bottom:51.651813pt;}
.y1bd8_c00001{bottom:51.916800pt;}
.y1b64_c00001{bottom:51.917333pt;}
.y1bab_c00001{bottom:51.920533pt;}
.y1b76_c00001{bottom:51.920667pt;}
.y1168_c00001{bottom:52.187173pt;}
.ybc4_c00001{bottom:52.607173pt;}
.yb62_c00001{bottom:52.609600pt;}
.yba0_c00001{bottom:52.610107pt;}
.ya54_c00001{bottom:52.611667pt;}
.yb45_c00001{bottom:52.612667pt;}
.yb84_c00001{bottom:52.613573pt;}
.y5fb_c00001{bottom:52.800000pt;}
.y45a_c00001{bottom:52.800400pt;}
.y633_c00001{bottom:52.825333pt;}
.y1d97_c00001{bottom:52.832627pt;}
.y618_c00001{bottom:52.839733pt;}
.y658_c00001{bottom:52.840000pt;}
.y64b_c00001{bottom:52.840533pt;}
.y60f_c00001{bottom:52.959067pt;}
.y60c_c00001{bottom:52.960000pt;}
.y652_c00001{bottom:52.986667pt;}
.y184_c00001{bottom:53.053333pt;}
.y17e1_c00001{bottom:53.202613pt;}
.y17a1_c00001{bottom:53.205107pt;}
.y14c5_c00001{bottom:53.205507pt;}
.y1f59_c00001{bottom:53.308880pt;}
.y3cc_c00001{bottom:53.600000pt;}
.y4d8_c00001{bottom:53.600133pt;}
.y4cf_c00001{bottom:53.624933pt;}
.y4cb_c00001{bottom:53.625333pt;}
.y474_c00001{bottom:53.754000pt;}
.y42a_c00001{bottom:53.758667pt;}
.y42f_c00001{bottom:53.760000pt;}
.y468_c00001{bottom:53.786667pt;}
.y3d2_c00001{bottom:53.800000pt;}
.y1b8c_c00001{bottom:54.321200pt;}
.y138_c00001{bottom:55.493333pt;}
.y794_c00001{bottom:55.703733pt;}
.y524_c00001{bottom:55.721200pt;}
.y19db_c00001{bottom:55.865853pt;}
.yb1b_c00001{bottom:56.077680pt;}
.y90f_c00001{bottom:56.479867pt;}
.y1b4f_c00001{bottom:56.556067pt;}
.y1af8_c00001{bottom:56.557387pt;}
.y1b30_c00001{bottom:56.557667pt;}
.y1b03_c00001{bottom:56.558267pt;}
.yaa4_c00001{bottom:56.919573pt;}
.yd7c_c00001{bottom:56.920147pt;}
.yd75_c00001{bottom:56.920373pt;}
.y1122_c00001{bottom:56.920947pt;}
.yaa0_c00001{bottom:56.921133pt;}
.y399_c00001{bottom:57.120000pt;}
.y5a0_c00001{bottom:57.120933pt;}
.y456_c00001{bottom:57.280000pt;}
.y34c_c00001{bottom:57.346667pt;}
.y4b1_c00001{bottom:57.598667pt;}
.y487_c00001{bottom:57.600000pt;}
.y49b_c00001{bottom:57.640000pt;}
.y323_c00001{bottom:57.920000pt;}
.y255_c00001{bottom:58.080000pt;}
.y507_c00001{bottom:58.399467pt;}
.yc7c_c00001{bottom:58.472547pt;}
.yc52_c00001{bottom:58.475480pt;}
.yc24_c00001{bottom:58.478280pt;}
.ybf4_c00001{bottom:58.478933pt;}
.y12cf_c00001{bottom:58.692293pt;}
.y2f0_c00001{bottom:58.813333pt;}
.y219_c00001{bottom:58.880000pt;}
.y1ded_c00001{bottom:58.961280pt;}
.yeff_c00001{bottom:58.963573pt;}
.y1591_c00001{bottom:58.964347pt;}
.y1752_c00001{bottom:58.965453pt;}
.y15da_c00001{bottom:58.965680pt;}
.y1b16_c00001{bottom:59.011133pt;}
.y99_c00001{bottom:59.106667pt;}
.y10bd_c00001{bottom:59.170133pt;}
.y10a4_c00001{bottom:59.170360pt;}
.y10ff_c00001{bottom:59.170800pt;}
.y1119_c00001{bottom:59.171547pt;}
.y183b_c00001{bottom:59.222720pt;}
.y14f2_c00001{bottom:59.224960pt;}
.y18f8_c00001{bottom:59.225093pt;}
.y1814_c00001{bottom:59.225253pt;}
.y1562_c00001{bottom:59.225627pt;}
.y13a8_c00001{bottom:59.226027pt;}
.y16b6_c00001{bottom:59.226427pt;}
.y137b_c00001{bottom:59.226960pt;}
.y17f2_c00001{bottom:59.227387pt;}
.y1639_c00001{bottom:59.227627pt;}
.y1320_c00001{bottom:59.227867pt;}
.y1c5d_c00001{bottom:59.442787pt;}
.y889_c00001{bottom:59.712000pt;}
.yc7_c00001{bottom:59.906667pt;}
.y6d1_c00001{bottom:60.992667pt;}
.y10e3_c00001{bottom:61.570827pt;}
.y1359_c00001{bottom:61.627493pt;}
.y102b_c00001{bottom:62.000213pt;}
.y1d11_c00001{bottom:62.000733pt;}
.y1db2_c00001{bottom:62.001387pt;}
.y16b1_c00001{bottom:62.001933pt;}
.y1661_c00001{bottom:62.002213pt;}
.y175d_c00001{bottom:62.003533pt;}
.y1432_c00001{bottom:62.004707pt;}
.y1725_c00001{bottom:62.006840pt;}
.y59c_c00001{bottom:62.558800pt;}
.y11f1_c00001{bottom:62.640000pt;}
.yd3a_c00001{bottom:63.171600pt;}
.y19f5_c00001{bottom:63.650733pt;}
.y1a0e_c00001{bottom:63.651013pt;}
.y19b6_c00001{bottom:63.651600pt;}
.y199e_c00001{bottom:63.651680pt;}
.yda6_c00001{bottom:63.652293pt;}
.y1c95_c00001{bottom:63.653293pt;}
.ye19_c00001{bottom:63.653427pt;}
.ydc1_c00001{bottom:63.653467pt;}
.ye45_c00001{bottom:63.653960pt;}
.ya53_c00001{bottom:64.131973pt;}
.y1d96_c00001{bottom:64.672733pt;}
.y1497_c00001{bottom:65.044173pt;}
.y1702_c00001{bottom:65.045000pt;}
.y1f58_c00001{bottom:65.148987pt;}
.y5a8_c00001{bottom:65.273867pt;}
.y5ff_c00001{bottom:65.280000pt;}
.y581_c00001{bottom:65.601333pt;}
.y515_c00001{bottom:65.754267pt;}
.y48c_c00001{bottom:65.759333pt;}
.y4b5_c00001{bottom:65.759733pt;}
.y5b5_c00001{bottom:65.760000pt;}
.y4a9_c00001{bottom:65.760133pt;}
.y49f_c00001{bottom:65.800800pt;}
.y19da_c00001{bottom:66.051267pt;}
.ydf8_c00001{bottom:66.053107pt;}
.yd7b_c00001{bottom:66.252440pt;}
.yd74_c00001{bottom:66.252667pt;}
.yaa3_c00001{bottom:66.252907pt;}
.y1121_c00001{bottom:66.253240pt;}
.ya9f_c00001{bottom:66.253427pt;}
.y1bd7_c00001{bottom:66.316800pt;}
.y1b63_c00001{bottom:66.317867pt;}
.y1baa_c00001{bottom:66.320533pt;}
.y1b75_c00001{bottom:66.320667pt;}
.y1a54_c00001{bottom:66.323133pt;}
.y193a_c00001{bottom:66.475200pt;}
.y176c_c00001{bottom:66.475733pt;}
.y1955_c00001{bottom:66.476000pt;}
.y1788_c00001{bottom:66.477067pt;}
.y12e8_c00001{bottom:66.477867pt;}
.y12aa_c00001{bottom:66.478933pt;}
.y1293_c00001{bottom:66.478987pt;}
.y1302_c00001{bottom:66.479600pt;}
.ybc3_c00001{bottom:67.007173pt;}
.yb61_c00001{bottom:67.009600pt;}
.yb9f_c00001{bottom:67.010107pt;}
.yb44_c00001{bottom:67.012667pt;}
.yb83_c00001{bottom:67.014107pt;}
.y1b8b_c00001{bottom:67.440987pt;}
.y1e7b_c00001{bottom:67.764053pt;}
.yfe7_c00001{bottom:67.764587pt;}
.yb1a_c00001{bottom:67.917787pt;}
.y912_c00001{bottom:68.000000pt;}
.y58e_c00001{bottom:68.040133pt;}
.y1eed_c00001{bottom:68.189240pt;}
.y1231_c00001{bottom:68.291307pt;}
.y127b_c00001{bottom:68.291707pt;}
.y11b1_c00001{bottom:68.291840pt;}
.y12ce_c00001{bottom:68.879800pt;}
.y720_c00001{bottom:68.992667pt;}
.y6a2_c00001{bottom:69.154000pt;}
.ycde_c00001{bottom:70.268267pt;}
.y1b15_c00001{bottom:70.478320pt;}
.y5ea_c00001{bottom:70.558667pt;}
.y41f_c00001{bottom:70.559867pt;}
.y4d7_c00001{bottom:70.560000pt;}
.y4ce_c00001{bottom:70.585333pt;}
.y1dec_c00001{bottom:70.800867pt;}
.yefe_c00001{bottom:70.803680pt;}
.y1590_c00001{bottom:70.804453pt;}
.y15d9_c00001{bottom:70.805267pt;}
.y1751_c00001{bottom:70.805560pt;}
.yd01_c00001{bottom:71.009600pt;}
.yd17_c00001{bottom:71.010267pt;}
.yd52_c00001{bottom:71.011000pt;}
.yd70_c00001{bottom:71.013267pt;}
.y1cf6_c00001{bottom:71.013800pt;}
.y5db_c00001{bottom:71.034133pt;}
.y1c5c_c00001{bottom:71.282373pt;}
.ya30_c00001{bottom:71.917600pt;}
.ya1d_c00001{bottom:71.917867pt;}
.ya73_c00001{bottom:71.918747pt;}
.y523_c00001{bottom:72.361333pt;}
.yc7b_c00001{bottom:72.927213pt;}
.yc51_c00001{bottom:72.930680pt;}
.yc23_c00001{bottom:72.930947pt;}
.ybf3_c00001{bottom:72.931600pt;}
.y10e2_c00001{bottom:73.090613pt;}
.yd39_c00001{bottom:73.411707pt;}
.y4c0_c00001{bottom:73.440133pt;}
.y183a_c00001{bottom:73.622720pt;}
.y14f1_c00001{bottom:73.624960pt;}
.y18f7_c00001{bottom:73.625093pt;}
.y1813_c00001{bottom:73.625253pt;}
.y1561_c00001{bottom:73.625627pt;}
.y13a7_c00001{bottom:73.626027pt;}
.y16b5_c00001{bottom:73.626427pt;}
.y137a_c00001{bottom:73.626960pt;}
.y1638_c00001{bottom:73.627627pt;}
.y131f_c00001{bottom:73.627867pt;}
.y550_c00001{bottom:73.632800pt;}
.y506_c00001{bottom:73.786933pt;}
.y102a_c00001{bottom:73.840320pt;}
.y1d10_c00001{bottom:73.840840pt;}
.y1db1_c00001{bottom:73.841493pt;}
.y1609_c00001{bottom:73.841787pt;}
.y1de4_c00001{bottom:73.843640pt;}
.y59f_c00001{bottom:73.920933pt;}
.y578_c00001{bottom:73.952667pt;}
.y1a2b_c00001{bottom:74.107200pt;}
.y1a79_c00001{bottom:74.111000pt;}
.y3a3_c00001{bottom:74.234000pt;}
.ya52_c00001{bottom:74.319480pt;}
.y17f1_c00001{bottom:76.027387pt;}
.y1358_c00001{bottom:76.027493pt;}
.y124a_c00001{bottom:76.028000pt;}
.y1e1a_c00001{bottom:76.512240pt;}
.y1ebd_c00001{bottom:76.514373pt;}
.y1083_c00001{bottom:76.514907pt;}
.y1a53_c00001{bottom:76.563240pt;}
.y6d0_c00001{bottom:76.832800pt;}
.y1496_c00001{bottom:76.884280pt;}
.y1701_c00001{bottom:76.885107pt;}
.y19d9_c00001{bottom:77.571053pt;}
.y602_c00001{bottom:77.600000pt;}
.y459_c00001{bottom:77.640000pt;}
.y60e_c00001{bottom:77.759600pt;}
.y617_c00001{bottom:77.799600pt;}
.y4e6_c00001{bottom:77.913733pt;}
.yda5_c00001{bottom:78.052293pt;}
.ye18_c00001{bottom:78.053427pt;}
.ydc0_c00001{bottom:78.053467pt;}
.y1c94_c00001{bottom:78.105960pt;}
.ye44_c00001{bottom:78.106627pt;}
.y1b4e_c00001{bottom:78.315933pt;}
.y1af7_c00001{bottom:78.317253pt;}
.y1b2f_c00001{bottom:78.317533pt;}
.y1b02_c00001{bottom:78.318133pt;}
.y2b3_c00001{bottom:78.466267pt;}
.y63_c00001{bottom:78.613600pt;}
.y512_c00001{bottom:78.912533pt;}
.y931_c00001{bottom:79.232800pt;}
.y59b_c00001{bottom:79.358800pt;}
.yaa7_c00001{bottom:79.372400pt;}
.y4df_c00001{bottom:79.392667pt;}
.y90e_c00001{bottom:79.520000pt;}
.y1e7a_c00001{bottom:79.603640pt;}
.yfe6_c00001{bottom:79.604173pt;}
.yb19_c00001{bottom:79.757893pt;}
.y1936_c00001{bottom:79.922347pt;}
.y190e_c00001{bottom:79.924293pt;}
.y1982_c00001{bottom:79.925520pt;}
.y1eec_c00001{bottom:80.029347pt;}
.y12cd_c00001{bottom:80.399587pt;}
.y1cd9_c00001{bottom:80.400000pt;}
.ydf7_c00001{bottom:80.507773pt;}
.y5a7_c00001{bottom:80.634267pt;}
.y1bd6_c00001{bottom:80.717333pt;}
.y1b62_c00001{bottom:80.718400pt;}
.y1b14_c00001{bottom:80.718427pt;}
.y1ba9_c00001{bottom:80.720533pt;}
.y1b74_c00001{bottom:80.720667pt;}
.y44f_c00001{bottom:80.832800pt;}
.y10bc_c00001{bottom:80.877467pt;}
.y10a3_c00001{bottom:80.877693pt;}
.y10fe_c00001{bottom:80.878133pt;}
.y1118_c00001{bottom:80.878880pt;}
.y514_c00001{bottom:80.954267pt;}
.y4b4_c00001{bottom:81.119600pt;}
.y4a8_c00001{bottom:81.120000pt;}
.y48b_c00001{bottom:81.146800pt;}
.y49e_c00001{bottom:81.160133pt;}
.yb60_c00001{bottom:81.409600pt;}
.yb9e_c00001{bottom:81.410107pt;}
.yb43_c00001{bottom:81.412667pt;}
.ya9a_c00001{bottom:81.452667pt;}
.ybc2_c00001{bottom:81.462373pt;}
.yb82_c00001{bottom:81.468240pt;}
.y185_c00001{bottom:82.106933pt;}
.y18ad_c00001{bottom:82.163627pt;}
.yf9c_c00001{bottom:82.640973pt;}
.y1525_c00001{bottom:82.642853pt;}
.yefd_c00001{bottom:82.643787pt;}
.y1e4c_c00001{bottom:82.644320pt;}
.y1b8a_c00001{bottom:83.121253pt;}
.y1f27_c00001{bottom:83.123413pt;}
.y9a0_c00001{bottom:83.232400pt;}
.y10e1_c00001{bottom:83.278120pt;}
.y2ca_c00001{bottom:83.333600pt;}
.y846_c00001{bottom:83.393200pt;}
.y139_c00001{bottom:83.546400pt;}
.y19f_c00001{bottom:83.746667pt;}
.y1b9_c00001{bottom:83.748400pt;}
.y1d3_c00001{bottom:83.749600pt;}
.y1ed_c00001{bottom:83.750800pt;}
.y207_c00001{bottom:83.752000pt;}
.y58d_c00001{bottom:84.840133pt;}
.yd38_c00001{bottom:84.931493pt;}
.ycdd_c00001{bottom:84.988000pt;}
.y153_c00001{bottom:85.026667pt;}
.y17a_c00001{bottom:85.027333pt;}
.y1a0d_c00001{bottom:85.410347pt;}
.y19f4_c00001{bottom:85.410600pt;}
.y19b5_c00001{bottom:85.411467pt;}
.y199d_c00001{bottom:85.411547pt;}
.y1029_c00001{bottom:85.680427pt;}
.y1d0f_c00001{bottom:85.680947pt;}
.y1db0_c00001{bottom:85.681600pt;}
.y1608_c00001{bottom:85.681893pt;}
.y1de3_c00001{bottom:85.683747pt;}
.y2d1_c00001{bottom:86.106667pt;}
.y2d7_c00001{bottom:86.107067pt;}
.y2dd_c00001{bottom:86.107467pt;}
.y2e3_c00001{bottom:86.107867pt;}
.y2e9_c00001{bottom:86.108267pt;}
.ya2f_c00001{bottom:86.317600pt;}
.ya1c_c00001{bottom:86.317867pt;}
.ya72_c00001{bottom:86.318747pt;}
.y1205_c00001{bottom:86.320000pt;}
.ya92_c00001{bottom:86.370427pt;}
.ya51_c00001{bottom:86.371560pt;}
.y325_c00001{bottom:87.226800pt;}
.y2f2_c00001{bottom:87.293600pt;}
.yc7a_c00001{bottom:87.328280pt;}
.yc50_c00001{bottom:87.330680pt;}
.yc22_c00001{bottom:87.330947pt;}
.ybf2_c00001{bottom:87.331600pt;}
.y21b_c00001{bottom:87.333733pt;}
.y4d6_c00001{bottom:87.360000pt;}
.y4cd_c00001{bottom:87.385333pt;}
.y257_c00001{bottom:87.387333pt;}
.y41e_c00001{bottom:87.400000pt;}
.y5da_c00001{bottom:87.674267pt;}
.y6f4_c00001{bottom:87.712800pt;}
.y97f_c00001{bottom:87.712933pt;}
.y522_c00001{bottom:87.721200pt;}
.y19d8_c00001{bottom:87.811160pt;}
.y1812_c00001{bottom:88.025253pt;}
.y16b4_c00001{bottom:88.026427pt;}
.y1379_c00001{bottom:88.026960pt;}
.y131e_c00001{bottom:88.027867pt;}
.y424_c00001{bottom:88.032800pt;}
.y1839_c00001{bottom:88.077920pt;}
.y1167_c00001{bottom:88.079840pt;}
.y14f0_c00001{bottom:88.080160pt;}
.y1560_c00001{bottom:88.080827pt;}
.y13a6_c00001{bottom:88.081227pt;}
.y18f6_c00001{bottom:88.081360pt;}
.y1637_c00001{bottom:88.082827pt;}
.y1a52_c00001{bottom:88.083547pt;}
.y176b_c00001{bottom:88.235067pt;}
.y1954_c00001{bottom:88.235867pt;}
.y1787_c00001{bottom:88.236400pt;}
.y12e7_c00001{bottom:88.237200pt;}
.y12a9_c00001{bottom:88.238800pt;}
.y1292_c00001{bottom:88.238853pt;}
.y1301_c00001{bottom:88.238933pt;}
.y1e19_c00001{bottom:88.352347pt;}
.y5a4_c00001{bottom:88.352667pt;}
.y1ebc_c00001{bottom:88.354480pt;}
.y1082_c00001{bottom:88.355013pt;}
.y17e0_c00001{bottom:88.722880pt;}
.y17a0_c00001{bottom:88.725373pt;}
.y14c4_c00001{bottom:88.725773pt;}
.y505_c00001{bottom:89.146800pt;}
.y3a9_c00001{bottom:89.152667pt;}
.y1357_c00001{bottom:89.199893pt;}
.y77f_c00001{bottom:89.792800pt;}
.y2c1_c00001{bottom:89.919733pt;}
.y2bb_c00001{bottom:89.920000pt;}
.y612_c00001{bottom:90.120000pt;}
.y4bf_c00001{bottom:90.240133pt;}
.y5e6_c00001{bottom:90.280267pt;}
.y5c7_c00001{bottom:90.432800pt;}
.y17f0_c00001{bottom:90.480053pt;}
.y12cc_c00001{bottom:90.639693pt;}
.y795_c00001{bottom:90.783467pt;}
.y59e_c00001{bottom:90.881333pt;}
.y477_c00001{bottom:90.912533pt;}
.y1cc7_c00001{bottom:91.172173pt;}
.y3a2_c00001{bottom:91.193867pt;}
.y18d5_c00001{bottom:91.390493pt;}
.y1e79_c00001{bottom:91.391133pt;}
.yfe5_c00001{bottom:91.391667pt;}
.y1935_c00001{bottom:91.762453pt;}
.y190d_c00001{bottom:91.764400pt;}
.y1981_c00001{bottom:91.765107pt;}
.y1b13_c00001{bottom:92.238733pt;}
.ye17_c00001{bottom:92.506093pt;}
.y1c93_c00001{bottom:92.506493pt;}
.ye43_c00001{bottom:92.506627pt;}
.yda4_c00001{bottom:92.507493pt;}
.ydbf_c00001{bottom:92.508667pt;}
.y3dd_c00001{bottom:92.672400pt;}
.yd16_c00001{bottom:92.717600pt;}
.yd00_c00001{bottom:92.718000pt;}
.yd51_c00001{bottom:92.718333pt;}
.yd6f_c00001{bottom:92.718467pt;}
.y1cf5_c00001{bottom:92.719000pt;}
.y7c6_c00001{bottom:92.834133pt;}
.y388_c00001{bottom:93.320000pt;}
.y6a1_c00001{bottom:93.954000pt;}
.y9f0_c00001{bottom:94.000000pt;}
.y18ac_c00001{bottom:94.003733pt;}
.y864_c00001{bottom:94.432533pt;}
.y5dc_c00001{bottom:94.432800pt;}
.yf9b_c00001{bottom:94.481080pt;}
.y1524_c00001{bottom:94.482960pt;}
.yefc_c00001{bottom:94.483893pt;}
.y1e4b_c00001{bottom:94.484427pt;}
.y4e5_c00001{bottom:94.553867pt;}
.y92d_c00001{bottom:94.752667pt;}
.y10e0_c00001{bottom:94.798427pt;}
.ydf6_c00001{bottom:94.907773pt;}
.y1f26_c00001{bottom:94.963000pt;}
.y1b61_c00001{bottom:95.118933pt;}
.yd37_c00001{bottom:95.119000pt;}
.y1ba8_c00001{bottom:95.120533pt;}
.y1b73_c00001{bottom:95.120667pt;}
.y1bd5_c00001{bottom:95.170000pt;}
.y2b2_c00001{bottom:95.333467pt;}
.y136_c00001{bottom:95.552933pt;}
.ybc1_c00001{bottom:95.862373pt;}
.yb5f_c00001{bottom:95.864800pt;}
.yb9d_c00001{bottom:95.865307pt;}
.y118d_c00001{bottom:95.866640pt;}
.y1a2a_c00001{bottom:95.867067pt;}
.y1251_c00001{bottom:95.867173pt;}
.yb42_c00001{bottom:95.867867pt;}
.yb81_c00001{bottom:95.868240pt;}
.y113e_c00001{bottom:95.869867pt;}
.y1a78_c00001{bottom:95.870867pt;}
.y5a6_c00001{bottom:95.994133pt;}
.y513_c00001{bottom:96.314133pt;}
.y59a_c00001{bottom:96.318667pt;}
.y7fd_c00001{bottom:96.353067pt;}
.y62_c00001{bottom:96.374000pt;}
.y4b3_c00001{bottom:96.480000pt;}
.y48a_c00001{bottom:96.506667pt;}
.y49d_c00001{bottom:96.520000pt;}
.y11f_c00001{bottom:96.707200pt;}
.y65f_c00001{bottom:97.152667pt;}
.y742_c00001{bottom:97.311467pt;}
.y1028_c00001{bottom:97.520533pt;}
.y1daf_c00001{bottom:97.521187pt;}
.y1660_c00001{bottom:97.521947pt;}
.y16b0_c00001{bottom:97.522200pt;}
.y175c_c00001{bottom:97.523800pt;}
.y1de2_c00001{bottom:97.523853pt;}
.y1431_c00001{bottom:97.524973pt;}
.y1724_c00001{bottom:97.527107pt;}
.y1b89_c00001{bottom:97.573387pt;}
.yf04_c00001{bottom:97.867733pt;}
.y1166_c00001{bottom:98.267347pt;}
.y1a51_c00001{bottom:98.271053pt;}
.yf46_c00001{bottom:98.372693pt;}
.y18af_c00001{bottom:98.452667pt;}
.y309_c00001{bottom:98.560000pt;}
.y31a_c00001{bottom:98.561200pt;}
.y232_c00001{bottom:98.626667pt;}
.y245_c00001{bottom:98.627467pt;}
.y26d_c00001{bottom:98.786667pt;}
.y279_c00001{bottom:98.787600pt;}
.y285_c00001{bottom:98.788400pt;}
.y291_c00001{bottom:98.789200pt;}
.y29d_c00001{bottom:98.789600pt;}
.y1529_c00001{bottom:98.932267pt;}
.y19d7_c00001{bottom:99.330947pt;}
.y9a_c00001{bottom:99.812933pt;}
.y1af6_c00001{bottom:100.024587pt;}
.y1b2e_c00001{bottom:100.024867pt;}
.y1b01_c00001{bottom:100.025467pt;}
.y1b4d_c00001{bottom:100.075800pt;}
.y1e18_c00001{bottom:100.192453pt;}
.y6ce_c00001{bottom:100.192667pt;}
.y1d95_c00001{bottom:100.193000pt;}
.y1ebb_c00001{bottom:100.194587pt;}
.y1081_c00001{bottom:100.195120pt;}
.y17df_c00001{bottom:100.562467pt;}
.y179f_c00001{bottom:100.565480pt;}
.y14c3_c00001{bottom:100.565880pt;}
.y1f57_c00001{bottom:100.669253pt;}
.ya2e_c00001{bottom:100.770267pt;}
.ya91_c00001{bottom:100.770427pt;}
.ya1b_c00001{bottom:100.770533pt;}
.ya71_c00001{bottom:100.771413pt;}
.ya50_c00001{bottom:100.771560pt;}
.y645_c00001{bottom:100.832800pt;}
.y58c_c00001{bottom:101.640133pt;}
.y122_c00001{bottom:101.666667pt;}
.yc79_c00001{bottom:101.729347pt;}
.yc4f_c00001{bottom:101.730680pt;}
.yc21_c00001{bottom:101.730947pt;}
.ybf1_c00001{bottom:101.731600pt;}
.y1434_c00001{bottom:101.919733pt;}
.y30_c00001{bottom:101.974000pt;}
.yc8_c00001{bottom:101.986933pt;}
.y12cb_c00001{bottom:102.159480pt;}
.y903_c00001{bottom:102.272667pt;}
.y1811_c00001{bottom:102.477920pt;}
.y1b12_c00001{bottom:102.478320pt;}
.y16b3_c00001{bottom:102.479093pt;}
.y1378_c00001{bottom:102.479627pt;}
.y14ef_c00001{bottom:102.480160pt;}
.y18f5_c00001{bottom:102.480293pt;}
.y1332_c00001{bottom:102.480533pt;}
.y155f_c00001{bottom:102.480827pt;}
.y131d_c00001{bottom:102.480933pt;}
.y13a5_c00001{bottom:102.481227pt;}
.y1636_c00001{bottom:102.482827pt;}
.yfed_c00001{bottom:102.559867pt;}
.y60d_c00001{bottom:102.586667pt;}
.y616_c00001{bottom:102.599600pt;}
.y601_c00001{bottom:102.600000pt;}
.y10bb_c00001{bottom:102.637333pt;}
.y10a2_c00001{bottom:102.637560pt;}
.y10fd_c00001{bottom:102.638533pt;}
.y1117_c00001{bottom:102.638747pt;}
.y1cc6_c00001{bottom:103.012280pt;}
.y5d9_c00001{bottom:103.034133pt;}
.y9d2_c00001{bottom:103.072000pt;}
.y521_c00001{bottom:103.081067pt;}
.yad_c00001{bottom:103.226667pt;}
.yb7_c00001{bottom:103.226933pt;}
.y18d4_c00001{bottom:103.230600pt;}
.y1e78_c00001{bottom:103.231240pt;}
.yfe4_c00001{bottom:103.231773pt;}
.y8a8_c00001{bottom:103.232800pt;}
.y562_c00001{bottom:103.392667pt;}
.yb18_c00001{bottom:103.437627pt;}
.y17ef_c00001{bottom:103.599840pt;}
.y1934_c00001{bottom:103.602560pt;}
.y190c_c00001{bottom:103.603987pt;}
.y1980_c00001{bottom:103.605213pt;}
.y1c71_c00001{bottom:104.080000pt;}
.y324_c00001{bottom:104.093467pt;}
.y4d5_c00001{bottom:104.160000pt;}
.y2f1_c00001{bottom:104.160267pt;}
.y21a_c00001{bottom:104.186800pt;}
.y8c8_c00001{bottom:104.191600pt;}
.y256_c00001{bottom:104.254000pt;}
.y44c_c00001{bottom:104.352667pt;}
.y504_c00001{bottom:104.506667pt;}
.y1d98_c00001{bottom:104.640133pt;}
.y8e8_c00001{bottom:104.672800pt;}
.y127_c00001{bottom:104.826400pt;}
.y3a0_c00001{bottom:104.832800pt;}
.y1356_c00001{bottom:104.880160pt;}
.y10df_c00001{bottom:105.038013pt;}
.y1f5a_c00001{bottom:105.119733pt;}
.y94c_c00001{bottom:105.472400pt;}
.y13a_c00001{bottom:105.506267pt;}
.ye1_c00001{bottom:105.599867pt;}
.yea_c00001{bottom:105.600533pt;}
.yf4_c00001{bottom:105.600667pt;}
.yfe_c00001{bottom:105.600800pt;}
.y108_c00001{bottom:105.601333pt;}
.y186_c00001{bottom:106.053333pt;}
.yf9a_c00001{bottom:106.321187pt;}
.yefb_c00001{bottom:106.324000pt;}
.y1e4a_c00001{bottom:106.324533pt;}
.y158f_c00001{bottom:106.324720pt;}
.y15d8_c00001{bottom:106.325533pt;}
.y1750_c00001{bottom:106.325827pt;}
.yd36_c00001{bottom:106.638787pt;}
.yfec_c00001{bottom:106.667733pt;}
.y1c5b_c00001{bottom:106.802107pt;}
.y1f25_c00001{bottom:106.803107pt;}
.ye16_c00001{bottom:106.906093pt;}
.y1c92_c00001{bottom:106.906493pt;}
.ye42_c00001{bottom:106.906627pt;}
.yda3_c00001{bottom:106.907493pt;}
.ydbe_c00001{bottom:106.908667pt;}
.y154_c00001{bottom:106.946400pt;}
.y16d_c00001{bottom:106.946933pt;}
.y4be_c00001{bottom:107.040133pt;}
.y19f3_c00001{bottom:107.117933pt;}
.y1a0c_c00001{bottom:107.118747pt;}
.y19b4_c00001{bottom:107.118800pt;}
.y199c_c00001{bottom:107.119413pt;}
.y61c_c00001{bottom:107.232533pt;}
.y5e5_c00001{bottom:107.240133pt;}
.y1a0_c00001{bottom:107.654000pt;}
.y1ba_c00001{bottom:107.655200pt;}
.y1d4_c00001{bottom:107.656400pt;}
.y1ee_c00001{bottom:107.657600pt;}
.y208_c00001{bottom:107.658800pt;}
.y18d7_c00001{bottom:107.680267pt;}
.y3a1_c00001{bottom:107.993867pt;}
.y845_c00001{bottom:108.193200pt;}
.y1deb_c00001{bottom:108.692667pt;}
.ydf5_c00001{bottom:109.307773pt;}
.y1027_c00001{bottom:109.360640pt;}
.y1dae_c00001{bottom:109.361293pt;}
.y165f_c00001{bottom:109.362053pt;}
.y16af_c00001{bottom:109.362307pt;}
.y1de1_c00001{bottom:109.363440pt;}
.y175b_c00001{bottom:109.363907pt;}
.y1430_c00001{bottom:109.364560pt;}
.y1723_c00001{bottom:109.366693pt;}
.y34d_c00001{bottom:109.413333pt;}
.y19d6_c00001{bottom:109.518453pt;}
.y1bd4_c00001{bottom:109.570000pt;}
.y1b60_c00001{bottom:109.571067pt;}
.y1ba7_c00001{bottom:109.573200pt;}
.y1b72_c00001{bottom:109.573733pt;}
.y768_c00001{bottom:109.632400pt;}
.y1165_c00001{bottom:109.787133pt;}
.y1a50_c00001{bottom:109.790840pt;}
.y71f_c00001{bottom:109.792667pt;}
.y4e4_c00001{bottom:109.913733pt;}
.y176a_c00001{bottom:109.943467pt;}
.y12e6_c00001{bottom:109.945600pt;}
.y12a8_c00001{bottom:109.946133pt;}
.y1291_c00001{bottom:109.946187pt;}
.y1786_c00001{bottom:109.995733pt;}
.y1300_c00001{bottom:109.998267pt;}
.y387_c00001{bottom:110.120000pt;}
.yf45_c00001{bottom:110.160187pt;}
.ybc0_c00001{bottom:110.262373pt;}
.yb5e_c00001{bottom:110.264800pt;}
.yb9c_c00001{bottom:110.265307pt;}
.yb41_c00001{bottom:110.267867pt;}
.yb80_c00001{bottom:110.268240pt;}
.y6f3_c00001{bottom:110.272133pt;}
.y596_c00001{bottom:110.593067pt;}
.y1592_c00001{bottom:110.719733pt;}
.y99f_c00001{bottom:110.752667pt;}
.y12a_c00001{bottom:111.040000pt;}
.y1c5e_c00001{bottom:111.200000pt;}
.y5a5_c00001{bottom:111.354000pt;}
.y1089_c00001{bottom:111.359867pt;}
.y1b88_c00001{bottom:111.973387pt;}
.y1e17_c00001{bottom:112.032040pt;}
.y1d94_c00001{bottom:112.032587pt;}
.y1eba_c00001{bottom:112.034173pt;}
.y1080_c00001{bottom:112.034707pt;}
.y7c5_c00001{bottom:112.353867pt;}
.y12ca_c00001{bottom:112.399587pt;}
.y17de_c00001{bottom:112.402573pt;}
.y1495_c00001{bottom:112.404013pt;}
.y1700_c00001{bottom:112.404840pt;}
.y179e_c00001{bottom:112.405067pt;}
.y14c2_c00001{bottom:112.405467pt;}
.y1f56_c00001{bottom:112.508840pt;}
.y1de9_c00001{bottom:112.747333pt;}
.y599_c00001{bottom:113.118667pt;}
.y6a0_c00001{bottom:113.473733pt;}
.y2cc_c00001{bottom:113.786667pt;}
.y79c_c00001{bottom:113.788000pt;}
.y1b11_c00001{bottom:113.998627pt;}
.y60_c00001{bottom:114.133867pt;}
.ycff_c00001{bottom:114.476800pt;}
.yd15_c00001{bottom:114.477467pt;}
.yd50_c00001{bottom:114.478200pt;}
.yd6e_c00001{bottom:114.478333pt;}
.y1cf4_c00001{bottom:114.478867pt;}
.y354_c00001{bottom:114.586667pt;}
.y35b_c00001{bottom:114.586933pt;}
.y367_c00001{bottom:114.587200pt;}
.y36a_c00001{bottom:114.587333pt;}
.y370_c00001{bottom:114.587600pt;}
.y472_c00001{bottom:114.592667pt;}
.y1914_c00001{bottom:114.772400pt;}
.y1cc5_c00001{bottom:114.852387pt;}
.y1e77_c00001{bottom:115.070827pt;}
.yfe3_c00001{bottom:115.071360pt;}
.ya2d_c00001{bottom:115.170267pt;}
.ya90_c00001{bottom:115.170427pt;}
.ya1a_c00001{bottom:115.170533pt;}
.ya70_c00001{bottom:115.171413pt;}
.ya4f_c00001{bottom:115.171560pt;}
.y97e_c00001{bottom:115.232667pt;}
.yb17_c00001{bottom:115.277733pt;}
.y1933_c00001{bottom:115.442667pt;}
.y190b_c00001{bottom:115.444093pt;}
.y197f_c00001{bottom:115.445320pt;}
.y1088_c00001{bottom:115.467733pt;}
.y1eeb_c00001{bottom:115.549080pt;}
.y5b2_c00001{bottom:115.560267pt;}
.yc4e_c00001{bottom:116.130680pt;}
.ybf0_c00001{bottom:116.131600pt;}
.yc78_c00001{bottom:116.182013pt;}
.yc20_c00001{bottom:116.185613pt;}
.y3d8_c00001{bottom:116.352667pt;}
.y10de_c00001{bottom:116.558320pt;}
.y1498_c00001{bottom:116.800000pt;}
.y1810_c00001{bottom:116.877920pt;}
.yd35_c00001{bottom:116.878373pt;}
.y1377_c00001{bottom:116.879627pt;}
.y14ee_c00001{bottom:116.880160pt;}
.y18f4_c00001{bottom:116.880293pt;}
.y1331_c00001{bottom:116.880533pt;}
.y155e_c00001{bottom:116.880827pt;}
.y131c_c00001{bottom:116.880933pt;}
.y13a4_c00001{bottom:116.881227pt;}
.y1635_c00001{bottom:116.882827pt;}
.yfa3_c00001{bottom:117.492667pt;}
.y118c_c00001{bottom:117.626507pt;}
.y1a29_c00001{bottom:117.626933pt;}
.y1250_c00001{bottom:117.627040pt;}
.y113d_c00001{bottom:117.629733pt;}
.y1a98_c00001{bottom:117.630333pt;}
.y1a77_c00001{bottom:117.631267pt;}
.y1f2d_c00001{bottom:117.972400pt;}
.yf99_c00001{bottom:118.108680pt;}
.yefa_c00001{bottom:118.111493pt;}
.y1e49_c00001{bottom:118.112027pt;}
.y54d_c00001{bottom:118.112533pt;}
.y158e_c00001{bottom:118.164307pt;}
.y174f_c00001{bottom:118.165413pt;}
.y15d7_c00001{bottom:118.165640pt;}
.y5d8_c00001{bottom:118.234133pt;}
.y576_c00001{bottom:118.432800pt;}
.y520_c00001{bottom:118.440933pt;}
.y1c5a_c00001{bottom:118.589600pt;}
.y1f24_c00001{bottom:118.590600pt;}
.y58b_c00001{bottom:118.600000pt;}
.y1913_c00001{bottom:118.880267pt;}
.y17ee_c00001{bottom:119.280107pt;}
.y1355_c00001{bottom:119.280160pt;}
.y863_c00001{bottom:119.392400pt;}
.y4ae_c00001{bottom:119.552667pt;}
.y2e_c00001{bottom:119.574000pt;}
.y2af_c00001{bottom:119.712400pt;}
.y1eee_c00001{bottom:120.000000pt;}
.y1164_c00001{bottom:120.027240pt;}
.y1a4f_c00001{bottom:120.030947pt;}
.y2b5_c00001{bottom:120.413200pt;}
.y65c_c00001{bottom:120.832800pt;}
.y19d5_c00001{bottom:121.038760pt;}
.y7fc_c00001{bottom:121.153067pt;}
.y1d0e_c00001{bottom:121.200227pt;}
.y1026_c00001{bottom:121.200747pt;}
.y1dad_c00001{bottom:121.200880pt;}
.y1607_c00001{bottom:121.201627pt;}
.y16ae_c00001{bottom:121.201893pt;}
.y165e_c00001{bottom:121.202160pt;}
.y175a_c00001{bottom:121.203493pt;}
.y1de0_c00001{bottom:121.203547pt;}
.y142f_c00001{bottom:121.204667pt;}
.y1722_c00001{bottom:121.206800pt;}
.ye15_c00001{bottom:121.306093pt;}
.y1c91_c00001{bottom:121.306493pt;}
.ye41_c00001{bottom:121.306627pt;}
.yda2_c00001{bottom:121.307493pt;}
.ydbd_c00001{bottom:121.308667pt;}
.yfa1_c00001{bottom:121.547333pt;}
.y1b4c_c00001{bottom:121.783667pt;}
.y1af5_c00001{bottom:121.784453pt;}
.y1b2d_c00001{bottom:121.784733pt;}
.y1b00_c00001{bottom:121.785333pt;}
.yf44_c00001{bottom:122.000293pt;}
.y1f2c_c00001{bottom:122.027600pt;}
.y135_c00001{bottom:122.272667pt;}
.y6cc_c00001{bottom:123.552667pt;}
.y14ca_c00001{bottom:123.572400pt;}
.ydf4_c00001{bottom:123.707773pt;}
.y1e16_c00001{bottom:123.871627pt;}
.y4ea_c00001{bottom:123.872400pt;}
.y1d93_c00001{bottom:123.872693pt;}
.y1eb9_c00001{bottom:123.873760pt;}
.y107f_c00001{bottom:123.874293pt;}
.y12c9_c00001{bottom:123.919893pt;}
.y1bd3_c00001{bottom:123.970000pt;}
.y1b5f_c00001{bottom:123.971067pt;}
.y1ba6_c00001{bottom:123.973200pt;}
.y1b71_c00001{bottom:123.973733pt;}
.y4bd_c00001{bottom:124.000000pt;}
.y5e4_c00001{bottom:124.040133pt;}
.y1b10_c00001{bottom:124.186133pt;}
.y17dd_c00001{bottom:124.242680pt;}
.y1494_c00001{bottom:124.244120pt;}
.y16ff_c00001{bottom:124.244947pt;}
.y179d_c00001{bottom:124.245173pt;}
.y14c1_c00001{bottom:124.245573pt;}
.y10ba_c00001{bottom:124.345200pt;}
.y10a1_c00001{bottom:124.345427pt;}
.y10fc_c00001{bottom:124.345867pt;}
.y1f55_c00001{bottom:124.348947pt;}
.y1116_c00001{bottom:124.398613pt;}
.y641_c00001{bottom:124.512533pt;}
.ybbf_c00001{bottom:124.662373pt;}
.yb5d_c00001{bottom:124.664800pt;}
.yb9b_c00001{bottom:124.665307pt;}
.yb40_c00001{bottom:124.667867pt;}
.y89f_c00001{bottom:124.832400pt;}
.y2d2_c00001{bottom:125.026933pt;}
.y2d8_c00001{bottom:125.027333pt;}
.y2de_c00001{bottom:125.027733pt;}
.y2ea_c00001{bottom:125.028000pt;}
.y2e4_c00001{bottom:125.028133pt;}
.y4e3_c00001{bottom:125.113733pt;}
.y160a_c00001{bottom:125.600000pt;}
.y796_c00001{bottom:125.823600pt;}
.y1b87_c00001{bottom:126.373387pt;}
.y1cc4_c00001{bottom:126.692493pt;}
.y10dd_c00001{bottom:126.798427pt;}
.y2f4_c00001{bottom:126.906667pt;}
.y1e76_c00001{bottom:126.910933pt;}
.yfe2_c00001{bottom:126.911467pt;}
.y21d_c00001{bottom:126.947333pt;}
.yb7f_c00001{bottom:127.068773pt;}
.y1932_c00001{bottom:127.282773pt;}
.y190a_c00001{bottom:127.283680pt;}
.y197e_c00001{bottom:127.285427pt;}
.y1eea_c00001{bottom:127.389187pt;}
.y615_c00001{bottom:127.399600pt;}
.y600_c00001{bottom:127.400000pt;}
.y13b_c00001{bottom:127.426533pt;}
.y14c9_c00001{bottom:127.680267pt;}
.y71e_c00001{bottom:127.711600pt;}
.yd34_c00001{bottom:128.398680pt;}
.y327_c00001{bottom:128.546533pt;}
.y259_c00001{bottom:128.667600pt;}
.y1a0b_c00001{bottom:128.878080pt;}
.y19f2_c00001{bottom:128.878333pt;}
.y199b_c00001{bottom:128.878747pt;}
.y19b3_c00001{bottom:128.879200pt;}
.y155_c00001{bottom:128.893333pt;}
.y16e_c00001{bottom:128.893867pt;}
.y96d_c00001{bottom:128.992267pt;}
.y18ab_c00001{bottom:129.524000pt;}
.ya2c_c00001{bottom:129.570267pt;}
.ya8f_c00001{bottom:129.570427pt;}
.ya19_c00001{bottom:129.570533pt;}
.ya6f_c00001{bottom:129.571413pt;}
.ya4e_c00001{bottom:129.571560pt;}
.y187_c00001{bottom:129.946533pt;}
.yf98_c00001{bottom:129.948787pt;}
.yef9_c00001{bottom:129.951600pt;}
.y1e48_c00001{bottom:129.952133pt;}
.y902_c00001{bottom:129.952933pt;}
.y1523_c00001{bottom:130.002693pt;}
.y158d_c00001{bottom:130.004413pt;}
.y15d6_c00001{bottom:130.005227pt;}
.y174e_c00001{bottom:130.005520pt;}
.yc1f_c00001{bottom:130.105347pt;}
.y1c59_c00001{bottom:130.429707pt;}
.y1f23_c00001{bottom:130.430187pt;}
.y2cb_c00001{bottom:130.693467pt;}
.y9d1_c00001{bottom:130.752667pt;}
.y677_c00001{bottom:130.753333pt;}
.y8a7_c00001{bottom:130.912800pt;}
.y180f_c00001{bottom:131.277920pt;}
.y19d4_c00001{bottom:131.278347pt;}
.y1376_c00001{bottom:131.279627pt;}
.y14ed_c00001{bottom:131.280160pt;}
.y18f3_c00001{bottom:131.280293pt;}
.y1330_c00001{bottom:131.280533pt;}
.y155d_c00001{bottom:131.280827pt;}
.y131b_c00001{bottom:131.280933pt;}
.y13a3_c00001{bottom:131.281227pt;}
.y1634_c00001{bottom:131.282827pt;}
.y1163_c00001{bottom:131.547027pt;}
.y1a4e_c00001{bottom:131.550733pt;}
.y1a1_c00001{bottom:131.587333pt;}
.y1bb_c00001{bottom:131.588533pt;}
.y1d5_c00001{bottom:131.589733pt;}
.y1ef_c00001{bottom:131.590933pt;}
.y209_c00001{bottom:131.592133pt;}
.y1953_c00001{bottom:131.703067pt;}
.y1769_c00001{bottom:131.703333pt;}
.y1785_c00001{bottom:131.703600pt;}
.y12e5_c00001{bottom:131.704933pt;}
.y12ff_c00001{bottom:131.706133pt;}
.y12a7_c00001{bottom:131.706533pt;}
.y1290_c00001{bottom:131.706587pt;}
.y8c7_c00001{bottom:131.711333pt;}
.y2c2_c00001{bottom:131.866133pt;}
.y2bc_c00001{bottom:131.866400pt;}
.y7c4_c00001{bottom:131.873600pt;}
.y5f_c00001{bottom:131.893733pt;}
.y5b1_c00001{bottom:132.199867pt;}
.y8e7_c00001{bottom:132.353067pt;}
.y1439_c00001{bottom:132.372400pt;}
.y420_c00001{bottom:132.512533pt;}
.y6f2_c00001{bottom:132.672133pt;}
.y5ab_c00001{bottom:132.832800pt;}
.y1025_c00001{bottom:133.040333pt;}
.y1dac_c00001{bottom:133.040987pt;}
.y1606_c00001{bottom:133.041733pt;}
.y16ad_c00001{bottom:133.042000pt;}
.y165d_c00001{bottom:133.042267pt;}
.y1759_c00001{bottom:133.043600pt;}
.y1ddf_c00001{bottom:133.043653pt;}
.y142e_c00001{bottom:133.044773pt;}
.y1721_c00001{bottom:133.046907pt;}
.y77e_c00001{bottom:133.152667pt;}
.y844_c00001{bottom:133.153067pt;}
.y5d7_c00001{bottom:133.634133pt;}
.y51f_c00001{bottom:133.641467pt;}
.y17ed_c00001{bottom:133.680107pt;}
.y1354_c00001{bottom:133.680160pt;}
.yf43_c00001{bottom:133.840400pt;}
.y18ae_c00001{bottom:133.920000pt;}
.y12c8_c00001{bottom:134.107400pt;}
.y1526_c00001{bottom:134.400000pt;}
.y767_c00001{bottom:134.426133pt;}
.y1d9a_c00001{bottom:135.040000pt;}
.y5c6_c00001{bottom:135.066667pt;}
.y58a_c00001{bottom:135.400000pt;}
.y1f5c_c00001{bottom:135.520000pt;}
.y1b0f_c00001{bottom:135.705920pt;}
.ye14_c00001{bottom:135.706093pt;}
.yda1_c00001{bottom:135.707493pt;}
.ydbc_c00001{bottom:135.708667pt;}
.y1e15_c00001{bottom:135.711733pt;}
.y1d92_c00001{bottom:135.712800pt;}
.y1eb8_c00001{bottom:135.713867pt;}
.y107e_c00001{bottom:135.714400pt;}
.y1c90_c00001{bottom:135.761693pt;}
.ye40_c00001{bottom:135.761827pt;}
.y92b_c00001{bottom:136.026667pt;}
.y17dc_c00001{bottom:136.082787pt;}
.y1493_c00001{bottom:136.084227pt;}
.y179c_c00001{bottom:136.084760pt;}
.y16fe_c00001{bottom:136.085053pt;}
.y14c0_c00001{bottom:136.085160pt;}
.yd14_c00001{bottom:136.185333pt;}
.ycfe_c00001{bottom:136.185600pt;}
.yd4f_c00001{bottom:136.186067pt;}
.y1f54_c00001{bottom:136.189053pt;}
.yd6d_c00001{bottom:136.236733pt;}
.y1cf3_c00001{bottom:136.237267pt;}
.y1437_c00001{bottom:136.428000pt;}
.y2d_c00001{bottom:137.173333pt;}
.y2b4_c00001{bottom:137.279867pt;}
.y595_c00001{bottom:137.306667pt;}
.yc4d_c00001{bottom:137.890547pt;}
.ybef_c00001{bottom:137.892000pt;}
.ydf3_c00001{bottom:138.160440pt;}
.y30a_c00001{bottom:138.173067pt;}
.y314_c00001{bottom:138.174267pt;}
.y233_c00001{bottom:138.213067pt;}
.y246_c00001{bottom:138.213467pt;}
.y10dc_c00001{bottom:138.318213pt;}
.y1bd2_c00001{bottom:138.370000pt;}
.y1b5e_c00001{bottom:138.371067pt;}
.y1ba5_c00001{bottom:138.373200pt;}
.y1b70_c00001{bottom:138.373733pt;}
.y99e_c00001{bottom:138.426133pt;}
.y69f_c00001{bottom:138.426800pt;}
.y2ae_c00001{bottom:138.426933pt;}
.y1cc3_c00001{bottom:138.532600pt;}
.yd33_c00001{bottom:138.638787pt;}
.y1e75_c00001{bottom:138.750520pt;}
.y18d3_c00001{bottom:138.750867pt;}
.yfe1_c00001{bottom:138.751053pt;}
.yb5c_c00001{bottom:139.064800pt;}
.yb9a_c00001{bottom:139.065307pt;}
.yb3f_c00001{bottom:139.067867pt;}
.ybbe_c00001{bottom:139.115040pt;}
.y1931_c00001{bottom:139.122880pt;}
.y1909_c00001{bottom:139.123787pt;}
.y197d_c00001{bottom:139.125533pt;}
.y1d99_c00001{bottom:139.148000pt;}
.y1ee9_c00001{bottom:139.229293pt;}
.y118b_c00001{bottom:139.330640pt;}
.y122b_c00001{bottom:139.330907pt;}
.y1275_c00001{bottom:139.331040pt;}
.y124f_c00001{bottom:139.331173pt;}
.y1a28_c00001{bottom:139.332133pt;}
.y113c_c00001{bottom:139.334933pt;}
.y1a97_c00001{bottom:139.335000pt;}
.y1a76_c00001{bottom:139.335933pt;}
.y1f5b_c00001{bottom:139.628000pt;}
.y345_c00001{bottom:139.973333pt;}
.y33a_c00001{bottom:139.973600pt;}
.y26e_c00001{bottom:140.066933pt;}
.y27a_c00001{bottom:140.067867pt;}
.y286_c00001{bottom:140.068667pt;}
.y292_c00001{bottom:140.069467pt;}
.y29e_c00001{bottom:140.070267pt;}
.yc1e_c00001{bottom:140.290760pt;}
.y4e2_c00001{bottom:140.473600pt;}
.y1b86_c00001{bottom:140.773387pt;}
.y4bc_c00001{bottom:140.800000pt;}
.y5e3_c00001{bottom:140.840133pt;}
.y1595_c00001{bottom:141.172000pt;}
.y94b_c00001{bottom:141.304933pt;}
.y18aa_c00001{bottom:141.363587pt;}
.y1aeb_c00001{bottom:141.410747pt;}
.yb7e_c00001{bottom:141.520907pt;}
.y1c60_c00001{bottom:141.600000pt;}
.y1162_c00001{bottom:141.731920pt;}
.y1a4d_c00001{bottom:141.736147pt;}
.yf97_c00001{bottom:141.788373pt;}
.yef8_c00001{bottom:141.791707pt;}
.y1e47_c00001{bottom:141.792240pt;}
.y1522_c00001{bottom:141.842800pt;}
.y158c_c00001{bottom:141.844520pt;}
.y15d5_c00001{bottom:141.845333pt;}
.y174d_c00001{bottom:141.845627pt;}
.y1c58_c00001{bottom:142.269813pt;}
.y1f22_c00001{bottom:142.270293pt;}
.y19d3_c00001{bottom:142.798133pt;}
.y1258_c00001{bottom:142.798507pt;}
.y97d_c00001{bottom:142.906667pt;}
.y18d6_c00001{bottom:143.200000pt;}
.y4a4_c00001{bottom:143.226667pt;}
.y1b4b_c00001{bottom:143.543533pt;}
.y1b2c_c00001{bottom:143.544600pt;}
.y1af4_c00001{bottom:143.544853pt;}
.y1aff_c00001{bottom:143.545200pt;}
.y2f3_c00001{bottom:143.773333pt;}
.y21c_c00001{bottom:143.814000pt;}
.ya2b_c00001{bottom:143.970267pt;}
.ya18_c00001{bottom:143.970533pt;}
.ya6e_c00001{bottom:143.971413pt;}
.ya8e_c00001{bottom:144.025093pt;}
.ya4d_c00001{bottom:144.026227pt;}
.y862_c00001{bottom:144.186133pt;}
.y4f7_c00001{bottom:144.641200pt;}
.y1024_c00001{bottom:144.827827pt;}
.y1dab_c00001{bottom:144.828480pt;}
.y1dde_c00001{bottom:144.831147pt;}
.y1605_c00001{bottom:144.881840pt;}
.y16ac_c00001{bottom:144.882107pt;}
.y165c_c00001{bottom:144.882373pt;}
.y1758_c00001{bottom:144.883707pt;}
.y142d_c00001{bottom:144.884360pt;}
.y1720_c00001{bottom:144.886493pt;}
.y1593_c00001{bottom:145.228000pt;}
.y326_c00001{bottom:145.413733pt;}
.y258_c00001{bottom:145.534267pt;}
.y12c7_c00001{bottom:145.627187pt;}
.y180e_c00001{bottom:145.677920pt;}
.y1375_c00001{bottom:145.679627pt;}
.yf42_c00001{bottom:145.680507pt;}
.y132f_c00001{bottom:145.680533pt;}
.y131a_c00001{bottom:145.680933pt;}
.y1c5f_c00001{bottom:145.706667pt;}
.y1838_c00001{bottom:145.730587pt;}
.y14ec_c00001{bottom:145.732827pt;}
.y18f2_c00001{bottom:145.732960pt;}
.y155c_c00001{bottom:145.733493pt;}
.y13a2_c00001{bottom:145.733893pt;}
.y1633_c00001{bottom:145.735893pt;}
.y1b0e_c00001{bottom:145.946027pt;}
.y7fb_c00001{bottom:145.946800pt;}
.y10b9_c00001{bottom:146.105067pt;}
.y10a0_c00001{bottom:146.105293pt;}
.y10fb_c00001{bottom:146.105733pt;}
.y1115_c00001{bottom:146.105947pt;}
.y6cb_c00001{bottom:146.906667pt;}
.y149a_c00001{bottom:147.252000pt;}
.y1e14_c00001{bottom:147.551320pt;}
.y1d91_c00001{bottom:147.552387pt;}
.y1eb7_c00001{bottom:147.553453pt;}
.y107d_c00001{bottom:147.553987pt;}
.y5b0_c00001{bottom:147.560267pt;}
.y17db_c00001{bottom:147.922893pt;}
.y1492_c00001{bottom:147.924333pt;}
.y179b_c00001{bottom:147.924867pt;}
.y16fd_c00001{bottom:147.925160pt;}
.y14bf_c00001{bottom:147.925267pt;}
.y1f53_c00001{bottom:148.029160pt;}
.y17ec_c00001{bottom:148.132773pt;}
.y1353_c00001{bottom:148.132827pt;}
.y71d_c00001{bottom:148.345467pt;}
.y10db_c00001{bottom:148.505720pt;}
.y134_c00001{bottom:148.987200pt;}
.y51e_c00001{bottom:149.001333pt;}
.y676_c00001{bottom:149.306933pt;}
.y13c_c00001{bottom:149.372933pt;}
.y3a7_c00001{bottom:149.466667pt;}
.y5e_c00001{bottom:149.653333pt;}
.y61b_c00001{bottom:149.786667pt;}
.yd32_c00001{bottom:150.158573pt;}
.yda0_c00001{bottom:150.160560pt;}
.ye13_c00001{bottom:150.161293pt;}
.ydbb_c00001{bottom:150.161333pt;}
.y1c8f_c00001{bottom:150.161693pt;}
.ye3f_c00001{bottom:150.161827pt;}
.y96c_c00001{bottom:150.266800pt;}
.y1cc2_c00001{bottom:150.320093pt;}
.y1ef0_c00001{bottom:150.400000pt;}
.yae_c00001{bottom:150.426667pt;}
.yb8_c00001{bottom:150.426933pt;}
.y19f1_c00001{bottom:150.585667pt;}
.y19b2_c00001{bottom:150.586533pt;}
.y199a_c00001{bottom:150.586613pt;}
.y1e74_c00001{bottom:150.590627pt;}
.y18d2_c00001{bottom:150.590973pt;}
.yfe0_c00001{bottom:150.591160pt;}
.y1a0a_c00001{bottom:150.637413pt;}
.y156_c00001{bottom:150.853200pt;}
.y16f_c00001{bottom:150.853733pt;}
.y17b_c00001{bottom:150.853867pt;}
.y1930_c00001{bottom:150.962987pt;}
.y1908_c00001{bottom:150.963373pt;}
.y197c_c00001{bottom:150.965640pt;}
.y1ee8_c00001{bottom:151.069400pt;}
.y1499_c00001{bottom:151.360000pt;}
.y7c3_c00001{bottom:151.387200pt;}
.y511_c00001{bottom:151.866667pt;}
.y820_c00001{bottom:152.026667pt;}
.yc77_c00001{bottom:152.289880pt;}
.yc4c_c00001{bottom:152.290547pt;}
.yc1d_c00001{bottom:152.290760pt;}
.ybee_c00001{bottom:152.292000pt;}
.y614_c00001{bottom:152.360000pt;}
.ydf2_c00001{bottom:152.560440pt;}
.y1b5d_c00001{bottom:152.771067pt;}
.y1ba4_c00001{bottom:152.771600pt;}
.y1b6f_c00001{bottom:152.773733pt;}
.y1bd1_c00001{bottom:152.822667pt;}
.y19d2_c00001{bottom:153.038760pt;}
.y18a9_c00001{bottom:153.203693pt;}
.y1aea_c00001{bottom:153.250853pt;}
.y1161_c00001{bottom:153.252227pt;}
.y1a4c_c00001{bottom:153.255933pt;}
.y1952_c00001{bottom:153.462933pt;}
.y1768_c00001{bottom:153.463200pt;}
.y1784_c00001{bottom:153.463467pt;}
.y12e4_c00001{bottom:153.464267pt;}
.y12fe_c00001{bottom:153.466000pt;}
.y128f_c00001{bottom:153.466453pt;}
.y12a6_c00001{bottom:153.466933pt;}
.ybbd_c00001{bottom:153.515040pt;}
.yb5b_c00001{bottom:153.517467pt;}
.yb99_c00001{bottom:153.518373pt;}
.yb3e_c00001{bottom:153.520000pt;}
.yf96_c00001{bottom:153.628480pt;}
.y1521_c00001{bottom:153.630293pt;}
.yef7_c00001{bottom:153.631813pt;}
.y158b_c00001{bottom:153.632013pt;}
.y1e46_c00001{bottom:153.632347pt;}
.y15d4_c00001{bottom:153.632827pt;}
.y174c_c00001{bottom:153.633120pt;}
.y188_c00001{bottom:153.893467pt;}
.y1f21_c00001{bottom:154.109880pt;}
.y1c57_c00001{bottom:154.109920pt;}
.y1eef_c00001{bottom:154.506667pt;}
.y2b_c00001{bottom:154.773333pt;}
.y6f1_c00001{bottom:155.065867pt;}
.y121_c00001{bottom:155.173333pt;}
.y9b_c00001{bottom:155.199867pt;}
.y1b85_c00001{bottom:155.228053pt;}
.y1a2_c00001{bottom:155.494133pt;}
.y1bc_c00001{bottom:155.495333pt;}
.y1d6_c00001{bottom:155.496533pt;}
.y1f0_c00001{bottom:155.497733pt;}
.y20a_c00001{bottom:155.498933pt;}
.ydd_c00001{bottom:155.546667pt;}
.ye2_c00001{bottom:155.546800pt;}
.yeb_c00001{bottom:155.547467pt;}
.yf5_c00001{bottom:155.547600pt;}
.yff_c00001{bottom:155.547733pt;}
.y109_c00001{bottom:155.548267pt;}
.y4e1_c00001{bottom:155.834000pt;}
.y790_c00001{bottom:155.864480pt;}
.y11f0_c00001{bottom:155.864907pt;}
.y12c6_c00001{bottom:155.867293pt;}
.yb7d_c00001{bottom:155.920907pt;}
.y160c_c00001{bottom:156.052000pt;}
.y1023_c00001{bottom:156.667933pt;}
.y1daa_c00001{bottom:156.668587pt;}
.y1ddd_c00001{bottom:156.671253pt;}
.y1604_c00001{bottom:156.721947pt;}
.y165b_c00001{bottom:156.721960pt;}
.y16ab_c00001{bottom:156.722213pt;}
.y1757_c00001{bottom:156.723813pt;}
.y142c_c00001{bottom:156.724467pt;}
.y171f_c00001{bottom:156.726600pt;}
.y1b0d_c00001{bottom:157.465813pt;}
.y901_c00001{bottom:157.466533pt;}
.yf41_c00001{bottom:157.520613pt;}
.y4bb_c00001{bottom:157.759867pt;}
.y5e2_c00001{bottom:157.800000pt;}
.yd6c_c00001{bottom:157.944067pt;}
.ycfd_c00001{bottom:157.944400pt;}
.y1cf2_c00001{bottom:157.945133pt;}
.yd13_c00001{bottom:157.945200pt;}
.yd4e_c00001{bottom:157.945933pt;}
.y843_c00001{bottom:157.946800pt;}
.y89e_c00001{bottom:158.265733pt;}
.y9d0_c00001{bottom:158.266267pt;}
.ya8d_c00001{bottom:158.425093pt;}
.ya2a_c00001{bottom:158.425467pt;}
.ya17_c00001{bottom:158.425733pt;}
.ya4c_c00001{bottom:158.426227pt;}
.y8a6_c00001{bottom:158.426400pt;}
.ya6d_c00001{bottom:158.426613pt;}
.ycdc_c00001{bottom:159.228400pt;}
.y8c6_c00001{bottom:159.385333pt;}
.y766_c00001{bottom:159.387067pt;}
.y1e13_c00001{bottom:159.391427pt;}
.y1d90_c00001{bottom:159.392493pt;}
.y1eb6_c00001{bottom:159.393560pt;}
.y107c_c00001{bottom:159.394093pt;}
.y17da_c00001{bottom:159.763000pt;}
.y1491_c00001{bottom:159.763920pt;}
.y179a_c00001{bottom:159.764453pt;}
.y14be_c00001{bottom:159.764853pt;}
.y16fc_c00001{bottom:159.765267pt;}
.y8e6_c00001{bottom:159.866667pt;}
.y1f52_c00001{bottom:159.869267pt;}
.y10da_c00001{bottom:160.025507pt;}
.y160b_c00001{bottom:160.106667pt;}
.y180d_c00001{bottom:160.130587pt;}
.y1374_c00001{bottom:160.132293pt;}
.y14eb_c00001{bottom:160.132827pt;}
.y18f1_c00001{bottom:160.132960pt;}
.y155b_c00001{bottom:160.133493pt;}
.y1319_c00001{bottom:160.133600pt;}
.yc9_c00001{bottom:160.133867pt;}
.y13a1_c00001{bottom:160.133893pt;}
.y1632_c00001{bottom:160.135893pt;}
.yd31_c00001{bottom:160.346080pt;}
.y797_c00001{bottom:160.891333pt;}
.y594_c00001{bottom:160.986667pt;}
.y118a_c00001{bottom:161.090507pt;}
.y122a_c00001{bottom:161.090773pt;}
.y1274_c00001{bottom:161.090907pt;}
.y124e_c00001{bottom:161.091040pt;}
.y1a27_c00001{bottom:161.092000pt;}
.y113b_c00001{bottom:161.094800pt;}
.y1a96_c00001{bottom:161.094867pt;}
.y1a75_c00001{bottom:161.096333pt;}
.y2cd_c00001{bottom:161.146533pt;}
.y4f6_c00001{bottom:161.280800pt;}
.y1e73_c00001{bottom:162.430213pt;}
.y18d1_c00001{bottom:162.430560pt;}
.yfdf_c00001{bottom:162.430747pt;}
.y17eb_c00001{bottom:162.532773pt;}
.y1352_c00001{bottom:162.532827pt;}
.y54a_c00001{bottom:162.586667pt;}
.y192f_c00001{bottom:162.803093pt;}
.y1907_c00001{bottom:162.803480pt;}
.y197b_c00001{bottom:162.805227pt;}
.y575_c00001{bottom:162.906667pt;}
.y1ee7_c00001{bottom:162.909507pt;}
.y5af_c00001{bottom:162.920133pt;}
.y69e_c00001{bottom:163.226800pt;}
.y1160_c00001{bottom:163.492333pt;}
.y1a4b_c00001{bottom:163.496040pt;}
.y216_c00001{bottom:163.613467pt;}
.y44b_c00001{bottom:163.706667pt;}
.y2d3_c00001{bottom:163.933733pt;}
.y2d9_c00001{bottom:163.934133pt;}
.y2df_c00001{bottom:163.934533pt;}
.y2e5_c00001{bottom:163.934933pt;}
.y2eb_c00001{bottom:163.935333pt;}
.y2ed_c00001{bottom:163.935467pt;}
.y18b3_c00001{bottom:164.372000pt;}
.y1257_c00001{bottom:164.558373pt;}
.y19d1_c00001{bottom:164.558547pt;}
.ydf1_c00001{bottom:164.560440pt;}
.yd9f_c00001{bottom:164.560560pt;}
.ye12_c00001{bottom:164.561293pt;}
.ydba_c00001{bottom:164.561333pt;}
.y1c8e_c00001{bottom:164.561693pt;}
.ye3e_c00001{bottom:164.561827pt;}
.y152c_c00001{bottom:164.800000pt;}
.y18a8_c00001{bottom:165.043800pt;}
.y1ae9_c00001{bottom:165.090440pt;}
.y1af3_c00001{bottom:165.249520pt;}
.y1b2b_c00001{bottom:165.249800pt;}
.y1afe_c00001{bottom:165.250400pt;}
.y1b4a_c00001{bottom:165.250867pt;}
.yf95_c00001{bottom:165.468587pt;}
.y1520_c00001{bottom:165.470400pt;}
.yef6_c00001{bottom:165.471920pt;}
.y158a_c00001{bottom:165.472120pt;}
.y1e45_c00001{bottom:165.472453pt;}
.y15d3_c00001{bottom:165.472933pt;}
.y174b_c00001{bottom:165.473227pt;}
.y99d_c00001{bottom:165.946400pt;}
.y1f20_c00001{bottom:165.949987pt;}
.y1c56_c00001{bottom:165.950027pt;}
.y2f6_c00001{bottom:166.534267pt;}
.y21f_c00001{bottom:166.560933pt;}
.yc4b_c00001{bottom:166.690547pt;}
.ybed_c00001{bottom:166.692000pt;}
.yc76_c00001{bottom:166.742547pt;}
.yc1c_c00001{bottom:166.745427pt;}
.y1bd0_c00001{bottom:167.222667pt;}
.y1b5c_c00001{bottom:167.226267pt;}
.y1ba3_c00001{bottom:167.228400pt;}
.y1b6e_c00001{bottom:167.228933pt;}
.y12c5_c00001{bottom:167.387080pt;}
.y11ef_c00001{bottom:167.650320pt;}
.y1b0c_c00001{bottom:167.651227pt;}
.y10b8_c00001{bottom:167.864933pt;}
.y109f_c00001{bottom:167.865160pt;}
.y10fa_c00001{bottom:167.865600pt;}
.y1114_c00001{bottom:167.865813pt;}
.ybbc_c00001{bottom:167.915040pt;}
.yb5a_c00001{bottom:167.917467pt;}
.yb98_c00001{bottom:167.918373pt;}
.yb3d_c00001{bottom:167.920000pt;}
.yb7c_c00001{bottom:167.920907pt;}
.y4e9_c00001{bottom:168.346667pt;}
.y18b2_c00001{bottom:168.428000pt;}
.y1603_c00001{bottom:168.562053pt;}
.y165a_c00001{bottom:168.562067pt;}
.y16aa_c00001{bottom:168.562320pt;}
.y1756_c00001{bottom:168.563920pt;}
.y142b_c00001{bottom:168.564053pt;}
.y171e_c00001{bottom:168.566187pt;}
.y123_c00001{bottom:168.572933pt;}
.y71c_c00001{bottom:168.825200pt;}
.y152a_c00001{bottom:168.906667pt;}
.y861_c00001{bottom:168.986133pt;}
.y1249_c00001{bottom:169.199160pt;}
.y1022_c00001{bottom:169.360640pt;}
.y1da9_c00001{bottom:169.361293pt;}
.y1ddc_c00001{bottom:169.363960pt;}
.y1b84_c00001{bottom:169.628053pt;}
.y329_c00001{bottom:169.893467pt;}
.y25b_c00001{bottom:169.987333pt;}
.y10d9_c00001{bottom:170.265613pt;}
.y6ca_c00001{bottom:170.266667pt;}
.y97c_c00001{bottom:170.426000pt;}
.y887_c00001{bottom:170.426667pt;}
.y2b6_c00001{bottom:170.813200pt;}
.yb16_c00001{bottom:170.850667pt;}
.y7fa_c00001{bottom:170.906667pt;}
.y7c2_c00001{bottom:170.906933pt;}
.ycdb_c00001{bottom:171.067987pt;}
.y1e12_c00001{bottom:171.231013pt;}
.y1d8f_c00001{bottom:171.232080pt;}
.y1eb5_c00001{bottom:171.233147pt;}
.y107b_c00001{bottom:171.233680pt;}
.y4e0_c00001{bottom:171.234000pt;}
.y13d_c00001{bottom:171.333333pt;}
.y96b_c00001{bottom:171.386133pt;}
.y17d9_c00001{bottom:171.603107pt;}
.y1490_c00001{bottom:171.604027pt;}
.y1799_c00001{bottom:171.604560pt;}
.y14bd_c00001{bottom:171.604960pt;}
.y16fb_c00001{bottom:171.605373pt;}
.y1f51_c00001{bottom:171.709373pt;}
.yd30_c00001{bottom:171.866387pt;}
.y120_c00001{bottom:172.026933pt;}
.y1a09_c00001{bottom:172.344213pt;}
.y19f0_c00001{bottom:172.345533pt;}
.y19b1_c00001{bottom:172.346400pt;}
.y1999_c00001{bottom:172.347013pt;}
.y157_c00001{bottom:172.800133pt;}
.y17c_c00001{bottom:172.800800pt;}
.ya8c_c00001{bottom:172.825093pt;}
.ya29_c00001{bottom:172.825467pt;}
.ya16_c00001{bottom:172.825733pt;}
.ya4b_c00001{bottom:172.826227pt;}
.ya6c_c00001{bottom:172.826613pt;}
.y1d51_c00001{bottom:173.569160pt;}
.y1cd8_c00001{bottom:173.570093pt;}
.y18db_c00001{bottom:173.588000pt;}
.y2c3_c00001{bottom:173.826533pt;}
.y2bd_c00001{bottom:173.826800pt;}
.y1cc1_c00001{bottom:173.999827pt;}
.y1e72_c00001{bottom:174.270320pt;}
.y18d0_c00001{bottom:174.270667pt;}
.yfde_c00001{bottom:174.270853pt;}
.y180c_c00001{bottom:174.530587pt;}
.y1373_c00001{bottom:174.532293pt;}
.y14ea_c00001{bottom:174.532827pt;}
.y18f0_c00001{bottom:174.532960pt;}
.y155a_c00001{bottom:174.533493pt;}
.y1318_c00001{bottom:174.533600pt;}
.y13a0_c00001{bottom:174.533893pt;}
.y1631_c00001{bottom:174.535893pt;}
.y4ba_c00001{bottom:174.600000pt;}
.y1906_c00001{bottom:174.643067pt;}
.y192e_c00001{bottom:174.643200pt;}
.y197a_c00001{bottom:174.645333pt;}
.y19d0_c00001{bottom:174.746053pt;}
.y1ee6_c00001{bottom:174.749093pt;}
.y115f_c00001{bottom:175.012120pt;}
.y1a4a_c00001{bottom:175.015827pt;}
.y1767_c00001{bottom:175.168400pt;}
.y12e3_c00001{bottom:175.169467pt;}
.y1951_c00001{bottom:175.170800pt;}
.y1783_c00001{bottom:175.171333pt;}
.y12a5_c00001{bottom:175.171600pt;}
.y128e_c00001{bottom:175.171653pt;}
.y12fd_c00001{bottom:175.173867pt;}
.y133_c00001{bottom:175.547600pt;}
.y94a_c00001{bottom:175.704933pt;}
.y3d5_c00001{bottom:175.706667pt;}
.y675_c00001{bottom:176.026667pt;}
.y77d_c00001{bottom:176.346400pt;}
.y4f5_c00001{bottom:176.641200pt;}
.y81f_c00001{bottom:176.826667pt;}
.y18a7_c00001{bottom:176.883387pt;}
.y1ae8_c00001{bottom:176.930547pt;}
.y17ea_c00001{bottom:176.932773pt;}
.y1351_c00001{bottom:176.932827pt;}
.y41c_c00001{bottom:177.146667pt;}
.y613_c00001{bottom:177.160000pt;}
.y5aa_c00001{bottom:177.306667pt;}
.y5d0_c00001{bottom:177.306933pt;}
.y151f_c00001{bottom:177.310507pt;}
.y1589_c00001{bottom:177.311707pt;}
.y174a_c00001{bottom:177.312813pt;}
.y15d2_c00001{bottom:177.313040pt;}
.y12c4_c00001{bottom:177.571973pt;}
.y18da_c00001{bottom:177.706667pt;}
.y189_c00001{bottom:177.786667pt;}
.y31b_c00001{bottom:177.787733pt;}
.y1f1f_c00001{bottom:177.789573pt;}
.y1c55_c00001{bottom:177.790133pt;}
.y234_c00001{bottom:177.826667pt;}
.y23e_c00001{bottom:177.827067pt;}
.y247_c00001{bottom:177.827467pt;}
.y1021_c00001{bottom:178.160640pt;}
.yf94_c00001{bottom:178.161293pt;}
.y1ddb_c00001{bottom:178.163960pt;}
.yef5_c00001{bottom:178.164627pt;}
.y1e44_c00001{bottom:178.165160pt;}
.y5ae_c00001{bottom:178.280000pt;}
.yd9e_c00001{bottom:178.960560pt;}
.ye11_c00001{bottom:178.961293pt;}
.y1c8d_c00001{bottom:179.014360pt;}
.ye3d_c00001{bottom:179.014493pt;}
.y1b0b_c00001{bottom:179.171013pt;}
.y34e_c00001{bottom:179.333600pt;}
.y1a3_c00001{bottom:179.427467pt;}
.y1bd_c00001{bottom:179.428667pt;}
.y1d7_c00001{bottom:179.429867pt;}
.y1f1_c00001{bottom:179.431067pt;}
.y20b_c00001{bottom:179.432267pt;}
.y1204_c00001{bottom:179.489827pt;}
.y11ee_c00001{bottom:179.489907pt;}
.y5c5_c00001{bottom:179.546667pt;}
.ycfc_c00001{bottom:179.649600pt;}
.yd12_c00001{bottom:179.650400pt;}
.yd4d_c00001{bottom:179.651133pt;}
.y129_c00001{bottom:179.653067pt;}
.yd6b_c00001{bottom:179.703933pt;}
.y1cf1_c00001{bottom:179.704467pt;}
.ydf0_c00001{bottom:180.080707pt;}
.y1602_c00001{bottom:180.349547pt;}
.y1659_c00001{bottom:180.349560pt;}
.y16a9_c00001{bottom:180.349813pt;}
.y1755_c00001{bottom:180.351413pt;}
.y142a_c00001{bottom:180.351547pt;}
.y171d_c00001{bottom:180.353680pt;}
.y1248_c00001{bottom:181.039787pt;}
.yc75_c00001{bottom:181.142547pt;}
.yc4a_c00001{bottom:181.143613pt;}
.yc1b_c00001{bottom:181.145960pt;}
.ybec_c00001{bottom:181.146667pt;}
.yf40_c00001{bottom:181.200347pt;}
.y344_c00001{bottom:181.279867pt;}
.y26f_c00001{bottom:181.373733pt;}
.y27b_c00001{bottom:181.374667pt;}
.y287_c00001{bottom:181.375467pt;}
.y293_c00001{bottom:181.376267pt;}
.y29f_c00001{bottom:181.377067pt;}
.y1bcf_c00001{bottom:181.622667pt;}
.y1b5b_c00001{bottom:181.626267pt;}
.y1b83_c00001{bottom:181.628053pt;}
.y1ba2_c00001{bottom:181.628400pt;}
.y1b6d_c00001{bottom:181.628933pt;}
.y10d8_c00001{bottom:181.785920pt;}
.yd2f_c00001{bottom:182.105973pt;}
.ybbb_c00001{bottom:182.315040pt;}
.yb59_c00001{bottom:182.317467pt;}
.yb97_c00001{bottom:182.318373pt;}
.yb3c_c00001{bottom:182.320000pt;}
.y104a_c00001{bottom:182.480000pt;}
.y928_c00001{bottom:182.746667pt;}
.y842_c00001{bottom:182.746800pt;}
.y1189_c00001{bottom:182.798907pt;}
.y1a26_c00001{bottom:182.799333pt;}
.y124d_c00001{bottom:182.799440pt;}
.y113a_c00001{bottom:182.802667pt;}
.y1a74_c00001{bottom:182.803667pt;}
.y11ab_c00001{bottom:182.850373pt;}
.y1229_c00001{bottom:182.850640pt;}
.y1273_c00001{bottom:182.850773pt;}
.y1a95_c00001{bottom:182.854733pt;}
.ycda_c00001{bottom:182.908093pt;}
.y1e11_c00001{bottom:183.071120pt;}
.y1d8e_c00001{bottom:183.072187pt;}
.y1eb4_c00001{bottom:183.073253pt;}
.y107a_c00001{bottom:183.073787pt;}
.y65a_c00001{bottom:183.226667pt;}
.y2f5_c00001{bottom:183.387333pt;}
.y21e_c00001{bottom:183.427600pt;}
.y17d8_c00001{bottom:183.443213pt;}
.y148f_c00001{bottom:183.443613pt;}
.y1798_c00001{bottom:183.444147pt;}
.y14bc_c00001{bottom:183.444547pt;}
.y16fa_c00001{bottom:183.445480pt;}
.y1f50_c00001{bottom:183.548960pt;}
.y765_c00001{bottom:184.187600pt;}
.y355_c00001{bottom:184.546533pt;}
.y35c_c00001{bottom:184.546800pt;}
.y368_c00001{bottom:184.547067pt;}
.y361_c00001{bottom:184.547200pt;}
.y371_c00001{bottom:184.547467pt;}
.yb7b_c00001{bottom:184.721440pt;}
.y900_c00001{bottom:185.146800pt;}
.y5d_c00001{bottom:185.174667pt;}
.y115e_c00001{bottom:185.252227pt;}
.y1a49_c00001{bottom:185.255933pt;}
.y1d50_c00001{bottom:185.409267pt;}
.y1cd7_c00001{bottom:185.410200pt;}
.y2ad_c00001{bottom:185.786800pt;}
.y1cc0_c00001{bottom:185.839933pt;}
.y9cf_c00001{bottom:185.946000pt;}
.y8a5_c00001{bottom:185.946667pt;}
.y2c8_c00001{bottom:186.080000pt;}
.y18cf_c00001{bottom:186.110773pt;}
.y19cf_c00001{bottom:186.265840pt;}
.y1256_c00001{bottom:186.318240pt;}
.y1905_c00001{bottom:186.483173pt;}
.y192d_c00001{bottom:186.483307pt;}
.y1979_c00001{bottom:186.485440pt;}
.y1ee5_c00001{bottom:186.589200pt;}
.y328_c00001{bottom:186.747067pt;}
.yb15_c00001{bottom:186.800400pt;}
.y25a_c00001{bottom:186.854000pt;}
.y8c5_c00001{bottom:186.905067pt;}
.y63e_c00001{bottom:186.906667pt;}
.y1d0d_c00001{bottom:186.960640pt;}
.y1020_c00001{bottom:186.961160pt;}
.yf93_c00001{bottom:186.961293pt;}
.y1e71_c00001{bottom:186.963027pt;}
.yfdd_c00001{bottom:186.963560pt;}
.y1dda_c00001{bottom:186.963960pt;}
.yef4_c00001{bottom:186.964627pt;}
.y1e43_c00001{bottom:186.965160pt;}
.y1af2_c00001{bottom:187.009920pt;}
.y1b2a_c00001{bottom:187.010200pt;}
.y1afd_c00001{bottom:187.010267pt;}
.y1b49_c00001{bottom:187.011267pt;}
.ya8b_c00001{bottom:187.225093pt;}
.ya28_c00001{bottom:187.225467pt;}
.ya15_c00001{bottom:187.225733pt;}
.ya4a_c00001{bottom:187.226227pt;}
.ya6b_c00001{bottom:187.226613pt;}
.y8e5_c00001{bottom:187.546933pt;}
.y89d_c00001{bottom:187.865733pt;}
.y69d_c00001{bottom:188.027867pt;}
.y217_c00001{bottom:188.093067pt;}
.y18a6_c00001{bottom:188.670880pt;}
.y1ae7_c00001{bottom:188.770653pt;}
.y180b_c00001{bottom:188.930587pt;}
.y16d9_c00001{bottom:188.931760pt;}
.y1559_c00001{bottom:188.932427pt;}
.y1372_c00001{bottom:188.932827pt;}
.y18ef_c00001{bottom:188.932960pt;}
.y17c2_c00001{bottom:188.933493pt;}
.y1317_c00001{bottom:188.933600pt;}
.y1630_c00001{bottom:188.934827pt;}
.y12c3_c00001{bottom:189.092280pt;}
.y151e_c00001{bottom:189.150093pt;}
.y1588_c00001{bottom:189.151813pt;}
.y1749_c00001{bottom:189.152920pt;}
.y15d1_c00001{bottom:189.153147pt;}
.y886_c00001{bottom:189.306667pt;}
.y1b0a_c00001{bottom:189.411120pt;}
.y71b_c00001{bottom:189.465333pt;}
.y61a_c00001{bottom:189.466667pt;}
.y10b7_c00001{bottom:189.570133pt;}
.y109e_c00001{bottom:189.570360pt;}
.y10f9_c00001{bottom:189.570800pt;}
.y1113_c00001{bottom:189.571013pt;}
.y1f1e_c00001{bottom:189.629680pt;}
.y1c54_c00001{bottom:189.630240pt;}
.y7c1_c00001{bottom:190.426667pt;}
.y471_c00001{bottom:190.746667pt;}
.y6f0_c00001{bottom:190.906533pt;}
.y1203_c00001{bottom:191.329933pt;}
.y11ed_c00001{bottom:191.330013pt;}
.y17e9_c00001{bottom:191.387973pt;}
.y1350_c00001{bottom:191.388027pt;}
.y10d7_c00001{bottom:191.970813pt;}
.y741_c00001{bottom:192.025467pt;}
.y81e_c00001{bottom:192.026667pt;}
.y4f4_c00001{bottom:192.041200pt;}
.y1601_c00001{bottom:192.189653pt;}
.y1658_c00001{bottom:192.189667pt;}
.y16a8_c00001{bottom:192.189920pt;}
.y1429_c00001{bottom:192.191133pt;}
.y1754_c00001{bottom:192.191520pt;}
.y171c_c00001{bottom:192.193267pt;}
.y96a_c00001{bottom:192.506400pt;}
.y1247_c00001{bottom:192.879893pt;}
.yf3f_c00001{bottom:193.039933pt;}
.y13e_c00001{bottom:193.279733pt;}
.ydef_c00001{bottom:193.411960pt;}
.yd9d_c00001{bottom:193.413227pt;}
.ye10_c00001{bottom:193.413960pt;}
.ydb9_c00001{bottom:193.414000pt;}
.y1c8c_c00001{bottom:193.414360pt;}
.ye3c_c00001{bottom:193.414493pt;}
.y6c9_c00001{bottom:193.466667pt;}
.y99c_c00001{bottom:193.626133pt;}
.yd2e_c00001{bottom:193.626280pt;}
.y860_c00001{bottom:193.946000pt;}
.y3a5_c00001{bottom:193.946667pt;}
.y1a08_c00001{bottom:194.104080pt;}
.y19ef_c00001{bottom:194.105933pt;}
.y19b0_c00001{bottom:194.106267pt;}
.y9e_c00001{bottom:194.173333pt;}
.y5cf_c00001{bottom:194.266800pt;}
.y12b_c00001{bottom:194.306667pt;}
.y158_c00001{bottom:194.746533pt;}
.y17d_c00001{bottom:194.747200pt;}
.ycd9_c00001{bottom:194.748200pt;}
.y1998_c00001{bottom:195.170480pt;}
.y17d7_c00001{bottom:195.230707pt;}
.y148e_c00001{bottom:195.231107pt;}
.y1797_c00001{bottom:195.231640pt;}
.y14bb_c00001{bottom:195.232040pt;}
.y16f9_c00001{bottom:195.232973pt;}
.y1f4f_c00001{bottom:195.389067pt;}
.yc74_c00001{bottom:195.542547pt;}
.yc49_c00001{bottom:195.544147pt;}
.yc1a_c00001{bottom:195.546493pt;}
.ybeb_c00001{bottom:195.546667pt;}
.y7f9_c00001{bottom:195.706667pt;}
.y1d0c_c00001{bottom:195.760640pt;}
.y101f_c00001{bottom:195.761160pt;}
.yf92_c00001{bottom:195.761293pt;}
.y1e70_c00001{bottom:195.763027pt;}
.yfdc_c00001{bottom:195.763560pt;}
.y1e10_c00001{bottom:195.763827pt;}
.y1dd9_c00001{bottom:195.763960pt;}
.yef3_c00001{bottom:195.764627pt;}
.y1d8d_c00001{bottom:195.764893pt;}
.y1e42_c00001{bottom:195.765160pt;}
.y1eb3_c00001{bottom:195.765960pt;}
.y1079_c00001{bottom:195.766493pt;}
.y798_c00001{bottom:195.971600pt;}
.y1bce_c00001{bottom:196.022667pt;}
.y1b5a_c00001{bottom:196.026267pt;}
.y1ba1_c00001{bottom:196.026800pt;}
.yf22_c00001{bottom:196.188000pt;}
.y510_c00001{bottom:196.346667pt;}
.y19ce_c00001{bottom:196.505947pt;}
.y128_c00001{bottom:196.506667pt;}
.yb58_c00001{bottom:196.717467pt;}
.yb96_c00001{bottom:196.718373pt;}
.yb3b_c00001{bottom:196.720000pt;}
.ybba_c00001{bottom:196.767173pt;}
.y115d_c00001{bottom:196.772013pt;}
.y1a48_c00001{bottom:196.775720pt;}
.y1766_c00001{bottom:196.928267pt;}
.y12e2_c00001{bottom:196.929333pt;}
.y1950_c00001{bottom:196.930667pt;}
.y1782_c00001{bottom:196.931200pt;}
.y128d_c00001{bottom:196.931520pt;}
.y12a4_c00001{bottom:196.932000pt;}
.y12fc_c00001{bottom:196.933733pt;}
.y1b82_c00001{bottom:197.148320pt;}
.y1d4f_c00001{bottom:197.249373pt;}
.y1cd6_c00001{bottom:197.250307pt;}
.y1e8d_c00001{bottom:197.250427pt;}
.y1c70_c00001{bottom:197.251360pt;}
.yaf_c00001{bottom:197.600133pt;}
.yb9_c00001{bottom:197.600400pt;}
.yce3_c00001{bottom:197.837267pt;}
.y18ce_c00001{bottom:197.950880pt;}
.y97b_c00001{bottom:198.105733pt;}
.yb14_c00001{bottom:198.428000pt;}
.y1ee4_c00001{bottom:198.429307pt;}
.yb7a_c00001{bottom:199.173573pt;}
.y1904_c00001{bottom:199.175880pt;}
.y192c_c00001{bottom:199.176013pt;}
.y1978_c00001{bottom:199.178147pt;}
.y78f_c00001{bottom:199.224347pt;}
.y12c2_c00001{bottom:199.332387pt;}
.y674_c00001{bottom:199.706667pt;}
.y2ce_c00001{bottom:200.066800pt;}
.y18a5_c00001{bottom:200.510467pt;}
.y1ae6_c00001{bottom:200.610760pt;}
.y1b09_c00001{bottom:200.930907pt;}
.y151d_c00001{bottom:200.990200pt;}
.y1587_c00001{bottom:200.991400pt;}
.y1748_c00001{bottom:200.992507pt;}
.y15d0_c00001{bottom:200.993253pt;}
.ycfb_c00001{bottom:201.409467pt;}
.yd11_c00001{bottom:201.410267pt;}
.yd4c_c00001{bottom:201.411000pt;}
.yd6a_c00001{bottom:201.412333pt;}
.y1cf0_c00001{bottom:201.412867pt;}
.ya27_c00001{bottom:201.625467pt;}
.ya14_c00001{bottom:201.625733pt;}
.ya6a_c00001{bottom:201.626613pt;}
.ya8a_c00001{bottom:201.678160pt;}
.ya49_c00001{bottom:201.678893pt;}
.y18a_c00001{bottom:201.733600pt;}
.ycc_c00001{bottom:201.853333pt;}
.y132_c00001{bottom:202.267333pt;}
.y1f1d_c00001{bottom:202.320827pt;}
.y1c53_c00001{bottom:202.322947pt;}
.y2d4_c00001{bottom:202.853467pt;}
.y2da_c00001{bottom:202.853867pt;}
.y2e0_c00001{bottom:202.854267pt;}
.y2e6_c00001{bottom:202.854667pt;}
.y5c_c00001{bottom:202.934667pt;}
.y1202_c00001{bottom:203.170040pt;}
.y11ec_c00001{bottom:203.170120pt;}
.y1a4_c00001{bottom:203.334267pt;}
.y1be_c00001{bottom:203.335467pt;}
.y1d8_c00001{bottom:203.336667pt;}
.y1f2_c00001{bottom:203.337867pt;}
.y1837_c00001{bottom:203.383253pt;}
.y16d8_c00001{bottom:203.384427pt;}
.y1558_c00001{bottom:203.385093pt;}
.y139f_c00001{bottom:203.385493pt;}
.y18ee_c00001{bottom:203.385627pt;}
.y180a_c00001{bottom:203.385787pt;}
.y17c1_c00001{bottom:203.386160pt;}
.y1371_c00001{bottom:203.386960pt;}
.y162f_c00001{bottom:203.387493pt;}
.y134f_c00001{bottom:203.388027pt;}
.y1316_c00001{bottom:203.388800pt;}
.y10d6_c00001{bottom:203.490600pt;}
.yd2d_c00001{bottom:203.811173pt;}
.y1600_c00001{bottom:204.029240pt;}
.y16a7_c00001{bottom:204.029507pt;}
.y1657_c00001{bottom:204.029773pt;}
.y1753_c00001{bottom:204.031107pt;}
.y1428_c00001{bottom:204.031240pt;}
.y171b_c00001{bottom:204.033373pt;}
.y15_c00001{bottom:204.054667pt;}
.y11aa_c00001{bottom:204.557707pt;}
.y1272_c00001{bottom:204.558107pt;}
.y1228_c00001{bottom:204.558507pt;}
.y1188_c00001{bottom:204.558773pt;}
.y1a25_c00001{bottom:204.559733pt;}
.y101e_c00001{bottom:204.561160pt;}
.yf91_c00001{bottom:204.561293pt;}
.y1a94_c00001{bottom:204.562067pt;}
.y1139_c00001{bottom:204.562533pt;}
.y1e6f_c00001{bottom:204.563027pt;}
.y1a73_c00001{bottom:204.563533pt;}
.yfdb_c00001{bottom:204.563560pt;}
.y1e0f_c00001{bottom:204.563827pt;}
.y1dd8_c00001{bottom:204.563960pt;}
.yef2_c00001{bottom:204.564627pt;}
.y1d8c_c00001{bottom:204.564893pt;}
.y1e41_c00001{bottom:204.565160pt;}
.y1eb2_c00001{bottom:204.565960pt;}
.y1078_c00001{bottom:204.566493pt;}
.y5e1_c00001{bottom:204.640000pt;}
.y1246_c00001{bottom:204.719480pt;}
.y589_c00001{bottom:205.466667pt;}
.yde_c00001{bottom:205.506533pt;}
.ye3_c00001{bottom:205.506667pt;}
.yec_c00001{bottom:205.507333pt;}
.yf6_c00001{bottom:205.507467pt;}
.y100_c00001{bottom:205.507600pt;}
.y10a_c00001{bottom:205.508133pt;}
.y17e8_c00001{bottom:205.787973pt;}
.y1d22_c00001{bottom:206.108000pt;}
.y2f8_c00001{bottom:206.147333pt;}
.y221_c00001{bottom:206.174000pt;}
.y115c_c00001{bottom:206.959520pt;}
.y1a47_c00001{bottom:206.963227pt;}
.y549_c00001{bottom:207.226667pt;}
.yb13_c00001{bottom:207.228000pt;}
.y1f4e_c00001{bottom:207.229173pt;}
.y4f3_c00001{bottom:207.401067pt;}
.y574_c00001{bottom:207.546667pt;}
.y2a_c00001{bottom:207.574667pt;}
.y841_c00001{bottom:207.706667pt;}
.y69c_c00001{bottom:207.707600pt;}
.yd9c_c00001{bottom:207.813227pt;}
.ye0f_c00001{bottom:207.813960pt;}
.ydb8_c00001{bottom:207.814000pt;}
.y1c8b_c00001{bottom:207.814360pt;}
.ye3b_c00001{bottom:207.814493pt;}
.y1903_c00001{bottom:207.923280pt;}
.y17d6_c00001{bottom:207.923413pt;}
.y148d_c00001{bottom:207.923813pt;}
.y1796_c00001{bottom:207.924347pt;}
.y14ba_c00001{bottom:207.924747pt;}
.y1977_c00001{bottom:207.925547pt;}
.y16f8_c00001{bottom:207.925680pt;}
.y19cd_c00001{bottom:208.026253pt;}
.y885_c00001{bottom:208.026400pt;}
.y1255_c00001{bottom:208.026640pt;}
.y14d3_c00001{bottom:208.028000pt;}
.y1b29_c00001{bottom:208.717533pt;}
.y1afc_c00001{bottom:208.717600pt;}
.y1b48_c00001{bottom:208.771133pt;}
.ydee_c00001{bottom:208.931693pt;}
.y764_c00001{bottom:208.988133pt;}
.y1d4e_c00001{bottom:209.087920pt;}
.y1cd5_c00001{bottom:209.088853pt;}
.y1e8c_c00001{bottom:209.088973pt;}
.y1c6f_c00001{bottom:209.089907pt;}
.y1cbf_c00001{bottom:209.360200pt;}
.y18cd_c00001{bottom:209.790987pt;}
.y1af1_c00001{bottom:209.838587pt;}
.yc73_c00001{bottom:209.942547pt;}
.yc48_c00001{bottom:209.944680pt;}
.y7c0_c00001{bottom:209.946667pt;}
.yc19_c00001{bottom:209.947027pt;}
.y71a_c00001{bottom:210.106533pt;}
.y949_c00001{bottom:210.264800pt;}
.y1b59_c00001{bottom:210.426267pt;}
.y1ba0_c00001{bottom:210.426800pt;}
.y1b6c_c00001{bottom:210.428933pt;}
.y1bcd_c00001{bottom:210.477867pt;}
.y1b81_c00001{bottom:210.480613pt;}
.y12c1_c00001{bottom:210.852173pt;}
.y5ce_c00001{bottom:211.066800pt;}
.y1f1c_c00001{bottom:211.120827pt;}
.y1ee3_c00001{bottom:211.122013pt;}
.y1c52_c00001{bottom:211.122947pt;}
.ybb9_c00001{bottom:211.167707pt;}
.yb57_c00001{bottom:211.170133pt;}
.y1b08_c00001{bottom:211.171013pt;}
.yb95_c00001{bottom:211.171040pt;}
.yb3a_c00001{bottom:211.173067pt;}
.y32b_c00001{bottom:211.200267pt;}
.y25d_c00001{bottom:211.267600pt;}
.y10b6_c00001{bottom:211.330000pt;}
.y10f8_c00001{bottom:211.330667pt;}
.y1112_c00001{bottom:211.330880pt;}
.y18a4_c00001{bottom:212.350573pt;}
.y109d_c00001{bottom:212.451560pt;}
.y8ff_c00001{bottom:212.666533pt;}
.y2b7_c00001{bottom:212.773067pt;}
.y151c_c00001{bottom:212.830307pt;}
.y1586_c00001{bottom:212.831507pt;}
.y1747_c00001{bottom:212.832613pt;}
.y15cf_c00001{bottom:212.832840pt;}
.y4e8_c00001{bottom:212.986667pt;}
.y6ef_c00001{bottom:213.306533pt;}
.y101d_c00001{bottom:213.308560pt;}
.yf90_c00001{bottom:213.308693pt;}
.y1e6e_c00001{bottom:213.310427pt;}
.yfda_c00001{bottom:213.310960pt;}
.y1e0e_c00001{bottom:213.311227pt;}
.y1dd7_c00001{bottom:213.311360pt;}
.yef1_c00001{bottom:213.312027pt;}
.y1d8b_c00001{bottom:213.312293pt;}
.y1e40_c00001{bottom:213.312560pt;}
.y1eb1_c00001{bottom:213.313360pt;}
.y1077_c00001{bottom:213.313893pt;}
.y9ce_c00001{bottom:213.466267pt;}
.yb79_c00001{bottom:213.573573pt;}
.y8a4_c00001{bottom:213.625442pt;}
.y969_c00001{bottom:213.626133pt;}
.y10d5_c00001{bottom:213.730707pt;}
.y8c4_c00001{bottom:214.585333pt;}
.y1201_c00001{bottom:215.010147pt;}
.y11eb_c00001{bottom:215.010227pt;}
.y611_c00001{bottom:215.066667pt;}
.y8e4_c00001{bottom:215.067200pt;}
.y13f_c00001{bottom:215.226667pt;}
.yd2c_c00001{bottom:215.330960pt;}
.y2c4_c00001{bottom:215.772933pt;}
.y2be_c00001{bottom:215.773200pt;}
.y1a07_c00001{bottom:215.808747pt;}
.y19ee_c00001{bottom:215.810600pt;}
.y19af_c00001{bottom:215.811467pt;}
.ya26_c00001{bottom:216.078133pt;}
.ya89_c00001{bottom:216.078160pt;}
.ya13_c00001{bottom:216.078800pt;}
.ya48_c00001{bottom:216.078893pt;}
.ya69_c00001{bottom:216.079680pt;}
.y1245_c00001{bottom:216.559587pt;}
.yf3e_c00001{bottom:216.560200pt;}
.y159_c00001{bottom:216.666800pt;}
.y170_c00001{bottom:216.667333pt;}
.y15ff_c00001{bottom:216.721947pt;}
.y16a6_c00001{bottom:216.722213pt;}
.y1656_c00001{bottom:216.722480pt;}
.y1902_c00001{bottom:216.723280pt;}
.y17d5_c00001{bottom:216.723413pt;}
.y148c_c00001{bottom:216.723813pt;}
.y1427_c00001{bottom:216.723947pt;}
.y1795_c00001{bottom:216.724347pt;}
.y14b9_c00001{bottom:216.724747pt;}
.y1976_c00001{bottom:216.725547pt;}
.y16f7_c00001{bottom:216.725680pt;}
.y171a_c00001{bottom:216.726080pt;}
.y6c8_c00001{bottom:216.826667pt;}
.y1997_c00001{bottom:216.930347pt;}
.y81c_c00001{bottom:216.986667pt;}
.y30b_c00001{bottom:217.413200pt;}
.y31c_c00001{bottom:217.414267pt;}
.y235_c00001{bottom:217.439733pt;}
.y23f_c00001{bottom:217.440133pt;}
.y248_c00001{bottom:217.440533pt;}
.y1836_c00001{bottom:217.783253pt;}
.y16d7_c00001{bottom:217.784427pt;}
.y1557_c00001{bottom:217.785093pt;}
.y139e_c00001{bottom:217.785493pt;}
.y18ed_c00001{bottom:217.785627pt;}
.y1809_c00001{bottom:217.785787pt;}
.y17c0_c00001{bottom:217.786160pt;}
.y1370_c00001{bottom:217.786960pt;}
.y162e_c00001{bottom:217.787493pt;}
.y17e7_c00001{bottom:217.787973pt;}
.y1315_c00001{bottom:217.788800pt;}
.yb21_c00001{bottom:217.960000pt;}
.y19cc_c00001{bottom:218.211147pt;}
.ycd8_c00001{bottom:218.428467pt;}
.y115b_c00001{bottom:218.479827pt;}
.y1a46_c00001{bottom:218.483533pt;}
.y194f_c00001{bottom:218.635867pt;}
.y1765_c00001{bottom:218.636133pt;}
.y1781_c00001{bottom:218.636400pt;}
.y12e1_c00001{bottom:218.637200pt;}
.y128c_c00001{bottom:218.638853pt;}
.y12fb_c00001{bottom:218.638933pt;}
.y12a3_c00001{bottom:218.639333pt;}
.y85f_c00001{bottom:218.746000pt;}
.yb12_c00001{bottom:218.800627pt;}
.y134e_c00001{bottom:218.907760pt;}
.y77c_c00001{bottom:219.706267pt;}
.y1d06_c00001{bottom:219.810667pt;}
.y1f1b_c00001{bottom:219.920827pt;}
.y1f4d_c00001{bottom:219.921880pt;}
.y1ee2_c00001{bottom:219.922013pt;}
.y1c51_c00001{bottom:219.922947pt;}
.y7f8_c00001{bottom:220.666667pt;}
.y5b_c00001{bottom:220.694667pt;}
.y1d4d_c00001{bottom:220.928027pt;}
.y1cd4_c00001{bottom:220.928960pt;}
.y1e8b_c00001{bottom:220.929080pt;}
.y1c6e_c00001{bottom:220.930013pt;}
.y12c0_c00001{bottom:221.092280pt;}
.y99b_c00001{bottom:221.146400pt;}
.y1cbe_c00001{bottom:221.199787pt;}
.y5e0_c00001{bottom:221.280133pt;}
.y18cc_c00001{bottom:221.630573pt;}
.y14_c00001{bottom:221.654667pt;}
.y561_c00001{bottom:221.946667pt;}
.yb1f_c00001{bottom:222.080000pt;}
.y182_c00001{bottom:222.106933pt;}
.yded_c00001{bottom:222.212947pt;}
.yd9b_c00001{bottom:222.213227pt;}
.y33b_c00001{bottom:222.586667pt;}
.y270_c00001{bottom:222.654000pt;}
.y27c_c00001{bottom:222.654400pt;}
.y288_c00001{bottom:222.655200pt;}
.y294_c00001{bottom:222.656000pt;}
.y2a0_c00001{bottom:222.656800pt;}
.y1b07_c00001{bottom:222.690800pt;}
.y4f2_c00001{bottom:222.760933pt;}
.y448_c00001{bottom:222.906667pt;}
.y2f7_c00001{bottom:223.014000pt;}
.y220_c00001{bottom:223.041200pt;}
.yd10_c00001{bottom:223.170133pt;}
.yd4b_c00001{bottom:223.170867pt;}
.yd69_c00001{bottom:223.171667pt;}
.y1cef_c00001{bottom:223.172733pt;}
.y5c4_c00001{bottom:224.026667pt;}
.y18a3_c00001{bottom:224.190160pt;}
.y1ae5_c00001{bottom:224.290493pt;}
.ycfa_c00001{bottom:224.290667pt;}
.yc72_c00001{bottom:224.395613pt;}
.yc47_c00001{bottom:224.397347pt;}
.ybea_c00001{bottom:224.399333pt;}
.yc18_c00001{bottom:224.399693pt;}
.y1bcc_c00001{bottom:224.877867pt;}
.y1b58_c00001{bottom:224.878933pt;}
.y1b9f_c00001{bottom:224.879467pt;}
.y1b6b_c00001{bottom:224.881600pt;}
.y29_c00001{bottom:225.174667pt;}
.y10d4_c00001{bottom:225.251013pt;}
.y15fe_c00001{bottom:225.521947pt;}
.y16a5_c00001{bottom:225.522213pt;}
.y1655_c00001{bottom:225.522480pt;}
.y151b_c00001{bottom:225.523013pt;}
.y1901_c00001{bottom:225.523280pt;}
.y17d4_c00001{bottom:225.523413pt;}
.y148b_c00001{bottom:225.523813pt;}
.y1426_c00001{bottom:225.523947pt;}
.y1585_c00001{bottom:225.524213pt;}
.y1794_c00001{bottom:225.524347pt;}
.y14b8_c00001{bottom:225.524747pt;}
.y15ce_c00001{bottom:225.525547pt;}
.y16f6_c00001{bottom:225.525680pt;}
.y1719_c00001{bottom:225.526080pt;}
.y1746_c00001{bottom:225.526360pt;}
.ybb8_c00001{bottom:225.567707pt;}
.yb56_c00001{bottom:225.570133pt;}
.yb94_c00001{bottom:225.571040pt;}
.yd2b_c00001{bottom:225.571587pt;}
.yb39_c00001{bottom:225.573067pt;}
.y97a_c00001{bottom:225.626000pt;}
.y18b_c00001{bottom:225.626800pt;}
.ye20_c00001{bottom:225.733027pt;}
.y1b80_c00001{bottom:226.000880pt;}
.y11a9_c00001{bottom:226.317573pt;}
.y1271_c00001{bottom:226.317973pt;}
.y1227_c00001{bottom:226.318373pt;}
.y1187_c00001{bottom:226.318640pt;}
.y1a24_c00001{bottom:226.320133pt;}
.y1a93_c00001{bottom:226.321933pt;}
.y1138_c00001{bottom:226.322400pt;}
.y1a72_c00001{bottom:226.323400pt;}
.y884_c00001{bottom:226.746667pt;}
.y1200_c00001{bottom:226.850253pt;}
.y69b_c00001{bottom:227.227867pt;}
.y1a5_c00001{bottom:227.267600pt;}
.y1bf_c00001{bottom:227.268800pt;}
.y1d9_c00001{bottom:227.270000pt;}
.y1f3_c00001{bottom:227.271200pt;}
.y740_c00001{bottom:227.705733pt;}
.y5cd_c00001{bottom:227.866800pt;}
.yb78_c00001{bottom:227.973573pt;}
.y32a_c00001{bottom:228.066933pt;}
.y25c_c00001{bottom:228.134267pt;}
.ye6f_c00001{bottom:228.239280pt;}
.y719_c00001{bottom:228.346667pt;}
.y1244_c00001{bottom:228.399693pt;}
.yf3d_c00001{bottom:228.399787pt;}
.y1f1a_c00001{bottom:228.668747pt;}
.y1f4c_c00001{bottom:228.669280pt;}
.y1ee1_c00001{bottom:228.669413pt;}
.y1c50_c00001{bottom:228.670347pt;}
.y115a_c00001{bottom:228.719413pt;}
.y1a45_c00001{bottom:228.723640pt;}
.y1996_c00001{bottom:230.210560pt;}
.y19ed_c00001{bottom:230.210600pt;}
.y19ae_c00001{bottom:230.211467pt;}
.y1a06_c00001{bottom:230.265013pt;}
.ycd7_c00001{bottom:230.268573pt;}
.y1b47_c00001{bottom:230.476333pt;}
.y1afb_c00001{bottom:230.477467pt;}
.y1b28_c00001{bottom:230.477933pt;}
.ya25_c00001{bottom:230.478133pt;}
.ya88_c00001{bottom:230.478160pt;}
.ya12_c00001{bottom:230.478800pt;}
.ya47_c00001{bottom:230.478893pt;}
.ya68_c00001{bottom:230.479680pt;}
.y924_c00001{bottom:230.746667pt;}
.y799_c00001{bottom:231.011200pt;}
.yeab_c00001{bottom:231.174827pt;}
.y1af0_c00001{bottom:231.598453pt;}
.y1f35_c00001{bottom:231.650667pt;}
.y1835_c00001{bottom:232.183253pt;}
.y16d6_c00001{bottom:232.184960pt;}
.y1556_c00001{bottom:232.185093pt;}
.y139d_c00001{bottom:232.185493pt;}
.y18ec_c00001{bottom:232.185627pt;}
.y1808_c00001{bottom:232.185787pt;}
.y17bf_c00001{bottom:232.186160pt;}
.y136f_c00001{bottom:232.186960pt;}
.y162d_c00001{bottom:232.187493pt;}
.y134d_c00001{bottom:232.187973pt;}
.y1314_c00001{bottom:232.188800pt;}
.y840_c00001{bottom:232.506933pt;}
.y12bf_c00001{bottom:232.612587pt;}
.y19cb_c00001{bottom:232.666347pt;}
.y1d4c_c00001{bottom:232.768133pt;}
.y1cd3_c00001{bottom:232.769067pt;}
.y1e8a_c00001{bottom:232.769187pt;}
.y1c6d_c00001{bottom:232.770120pt;}
.y1b06_c00001{bottom:232.878827pt;}
.ya0_c00001{bottom:232.959733pt;}
.y10b5_c00001{bottom:233.037867pt;}
.y10f7_c00001{bottom:233.038533pt;}
.y1cbd_c00001{bottom:233.039893pt;}
.y1111_c00001{bottom:233.091280pt;}
.y9ef_c00001{bottom:233.305600pt;}
.y17e6_c00001{bottom:233.307707pt;}
.y793_c00001{bottom:233.373067pt;}
.y763_c00001{bottom:233.948000pt;}
.y109c_c00001{bottom:234.158893pt;}
.y15fd_c00001{bottom:234.321947pt;}
.y16a4_c00001{bottom:234.322213pt;}
.y1654_c00001{bottom:234.322480pt;}
.y151a_c00001{bottom:234.323013pt;}
.y18cb_c00001{bottom:234.323280pt;}
.y17d3_c00001{bottom:234.323413pt;}
.y148a_c00001{bottom:234.323813pt;}
.y1425_c00001{bottom:234.323947pt;}
.y1584_c00001{bottom:234.324213pt;}
.y1793_c00001{bottom:234.324347pt;}
.y14b7_c00001{bottom:234.324747pt;}
.y15cd_c00001{bottom:234.325547pt;}
.y16f5_c00001{bottom:234.325680pt;}
.y1718_c00001{bottom:234.326080pt;}
.y1745_c00001{bottom:234.326360pt;}
.y968_c00001{bottom:234.906400pt;}
.y7bf_c00001{bottom:234.906533pt;}
.y3cf_c00001{bottom:234.906667pt;}
.y10d3_c00001{bottom:235.490600pt;}
.y78e_c00001{bottom:235.544613pt;}
.y6ee_c00001{bottom:235.865867pt;}
.y18a2_c00001{bottom:236.030267pt;}
.y1ae4_c00001{bottom:236.130600pt;}
.y5df_c00001{bottom:236.480133pt;}
.yd9a_c00001{bottom:236.613227pt;}
.ye22_c00001{bottom:236.613693pt;}
.ydb7_c00001{bottom:236.614000pt;}
.y791_c00001{bottom:236.640000pt;}
.y1c8a_c00001{bottom:236.667027pt;}
.ye3a_c00001{bottom:236.667160pt;}
.ydec_c00001{bottom:236.668147pt;}
.y131_c00001{bottom:236.827200pt;}
.yd2a_c00001{bottom:237.091373pt;}
.y140_c00001{bottom:237.186533pt;}
.y1f19_c00001{bottom:237.468747pt;}
.y1f4b_c00001{bottom:237.469280pt;}
.y1ee0_c00001{bottom:237.469413pt;}
.y1c4f_c00001{bottom:237.470347pt;}
.y4f1_c00001{bottom:238.121333pt;}
.yc17_c00001{bottom:238.319960pt;}
.y39e_c00001{bottom:238.426667pt;}
.y5a_c00001{bottom:238.454667pt;}
.y15a_c00001{bottom:238.626667pt;}
.y171_c00001{bottom:238.627200pt;}
.y17e_c00001{bottom:238.627867pt;}
.y11ff_c00001{bottom:238.689840pt;}
.y11ea_c00001{bottom:238.690493pt;}
.ye8a_c00001{bottom:238.960667pt;}
.yff3_c00001{bottom:238.961893pt;}
.yf67_c00001{bottom:238.962960pt;}
.y1d67_c00001{bottom:238.964027pt;}
.yfb6_c00001{bottom:238.964560pt;}
.yec9_c00001{bottom:238.965093pt;}
.y1052_c00001{bottom:238.965627pt;}
.y2cf_c00001{bottom:238.973067pt;}
.y1d0b_c00001{bottom:239.015893pt;}
.yf8f_c00001{bottom:239.016027pt;}
.y101c_c00001{bottom:239.016427pt;}
.y1e6d_c00001{bottom:239.017760pt;}
.yfd9_c00001{bottom:239.018293pt;}
.y1dd6_c00001{bottom:239.018693pt;}
.y1e0d_c00001{bottom:239.019093pt;}
.yef0_c00001{bottom:239.019360pt;}
.y1e3f_c00001{bottom:239.019893pt;}
.y1d8a_c00001{bottom:239.020160pt;}
.y1eb0_c00001{bottom:239.021227pt;}
.y1076_c00001{bottom:239.021760pt;}
.y13_c00001{bottom:239.254667pt;}
.y1b57_c00001{bottom:239.278933pt;}
.y1b7f_c00001{bottom:239.280573pt;}
.ybb7_c00001{bottom:239.969840pt;}
.yb55_c00001{bottom:239.970133pt;}
.yb93_c00001{bottom:239.971040pt;}
.yb38_c00001{bottom:239.973067pt;}
.yb77_c00001{bottom:239.973573pt;}
.ye6e_c00001{bottom:240.079387pt;}
.ye1f_c00001{bottom:240.133027pt;}
.y6c7_c00001{bottom:240.186667pt;}
.y1159_c00001{bottom:240.239720pt;}
.yf3c_c00001{bottom:240.239893pt;}
.y1a44_c00001{bottom:240.243427pt;}
.y8fe_c00001{bottom:240.346800pt;}
.y1780_c00001{bottom:240.395733pt;}
.y1764_c00001{bottom:240.396000pt;}
.y12e0_c00001{bottom:240.397067pt;}
.y12fa_c00001{bottom:240.398267pt;}
.y12a2_c00001{bottom:240.399200pt;}
.y181_c00001{bottom:240.826667pt;}
.y8a3_c00001{bottom:241.144133pt;}
.y9cd_c00001{bottom:241.146000pt;}
.yeaa_c00001{bottom:241.414933pt;}
.y128b_c00001{bottom:241.519120pt;}
.y11c_c00001{bottom:241.627333pt;}
.y2d5_c00001{bottom:241.760267pt;}
.y2db_c00001{bottom:241.760667pt;}
.y2e1_c00001{bottom:241.761067pt;}
.y2e7_c00001{bottom:241.761467pt;}
.y2ee_c00001{bottom:241.762000pt;}
.y8c3_c00001{bottom:242.105067pt;}
.yff9_c00001{bottom:242.482560pt;}
.yf6d_c00001{bottom:242.483627pt;}
.y1d6d_c00001{bottom:242.484693pt;}
.yfbc_c00001{bottom:242.485227pt;}
.yecf_c00001{bottom:242.485760pt;}
.y1058_c00001{bottom:242.486293pt;}
.y8e3_c00001{bottom:242.746933pt;}
.y28_c00001{bottom:242.774667pt;}
.y1bb1_c00001{bottom:242.798533pt;}
.y12be_c00001{bottom:242.800093pt;}
.y15fc_c00001{bottom:243.121947pt;}
.y16a3_c00001{bottom:243.122213pt;}
.y1653_c00001{bottom:243.122480pt;}
.y1519_c00001{bottom:243.123013pt;}
.y18ca_c00001{bottom:243.123280pt;}
.y17d2_c00001{bottom:243.123413pt;}
.y1489_c00001{bottom:243.123813pt;}
.y1424_c00001{bottom:243.123947pt;}
.y1583_c00001{bottom:243.124213pt;}
.y1792_c00001{bottom:243.124347pt;}
.y14b6_c00001{bottom:243.124747pt;}
.y15cc_c00001{bottom:243.125547pt;}
.y16f4_c00001{bottom:243.125680pt;}
.y1717_c00001{bottom:243.126080pt;}
.y1744_c00001{bottom:243.126360pt;}
.yce_c00001{bottom:243.386667pt;}
.y124_c00001{bottom:243.453333pt;}
.y144f_c00001{bottom:243.490667pt;}
.y85e_c00001{bottom:243.704800pt;}
.yb11_c00001{bottom:243.868360pt;}
.y1e89_c00001{bottom:244.609293pt;}
.y1c6c_c00001{bottom:244.610227pt;}
.y1a05_c00001{bottom:244.665013pt;}
.y1995_c00001{bottom:244.665760pt;}
.y19ec_c00001{bottom:244.665800pt;}
.y19ad_c00001{bottom:244.666667pt;}
.yb0_c00001{bottom:244.800133pt;}
.yba_c00001{bottom:244.800400pt;}
.y948_c00001{bottom:244.824667pt;}
.y5cc_c00001{bottom:244.826667pt;}
.y1b46_c00001{bottom:244.876333pt;}
.yd68_c00001{bottom:244.876867pt;}
.y1b27_c00001{bottom:244.877933pt;}
.yd0f_c00001{bottom:244.878000pt;}
.ya24_c00001{bottom:244.878133pt;}
.ya87_c00001{bottom:244.878160pt;}
.y1aef_c00001{bottom:244.878667pt;}
.yd4a_c00001{bottom:244.878733pt;}
.ya11_c00001{bottom:244.878800pt;}
.ya46_c00001{bottom:244.878893pt;}
.ya67_c00001{bottom:244.879680pt;}
.y1cbc_c00001{bottom:244.880000pt;}
.y7f7_c00001{bottom:245.466533pt;}
.y499_c00001{bottom:245.466667pt;}
.y656_c00001{bottom:245.626667pt;}
.y2fa_c00001{bottom:245.760933pt;}
.y223_c00001{bottom:245.761067pt;}
.ycf9_c00001{bottom:245.998000pt;}
.yc46_c00001{bottom:246.105213pt;}
.ybe9_c00001{bottom:246.107200pt;}
.y1807_c00001{bottom:246.585787pt;}
.y136e_c00001{bottom:246.586960pt;}
.y1313_c00001{bottom:246.588800pt;}
.y1834_c00001{bottom:246.638453pt;}
.y16d5_c00001{bottom:246.639093pt;}
.y1555_c00001{bottom:246.639760pt;}
.y139c_c00001{bottom:246.640160pt;}
.y18eb_c00001{bottom:246.640293pt;}
.y17be_c00001{bottom:246.640827pt;}
.y17e5_c00001{bottom:246.641040pt;}
.y162c_c00001{bottom:246.642160pt;}
.y19ca_c00001{bottom:247.066347pt;}
.yd29_c00001{bottom:247.330960pt;}
.y10b4_c00001{bottom:247.490533pt;}
.y10f6_c00001{bottom:247.491200pt;}
.y1110_c00001{bottom:247.491280pt;}
.y109b_c00001{bottom:247.492227pt;}
.y718_c00001{bottom:247.546667pt;}
.y134c_c00001{bottom:247.707707pt;}
.y1226_c00001{bottom:248.025707pt;}
.y1270_c00001{bottom:248.025840pt;}
.y11a8_c00001{bottom:248.025973pt;}
.y1186_c00001{bottom:248.027040pt;}
.y1a23_c00001{bottom:248.027467pt;}
.y1a92_c00001{bottom:248.029800pt;}
.y1137_c00001{bottom:248.030267pt;}
.y1a71_c00001{bottom:248.031267pt;}
.y792_c00001{bottom:248.093333pt;}
.yc16_c00001{bottom:248.507467pt;}
.y18a1_c00001{bottom:248.722973pt;}
.y99a_c00001{bottom:248.826667pt;}
.y34f_c00001{bottom:249.280000pt;}
.y63b_c00001{bottom:249.306667pt;}
.y18c_c00001{bottom:249.573733pt;}
.y9f_c00001{bottom:249.826400pt;}
.y10d2_c00001{bottom:249.890600pt;}
.y591_c00001{bottom:249.946667pt;}
.y73f_c00001{bottom:250.305733pt;}
.y1158_c00001{bottom:250.427227pt;}
.y1a43_c00001{bottom:250.430933pt;}
.y11e9_c00001{bottom:250.530600pt;}
.ycd6_c00001{bottom:250.748840pt;}
.ye21_c00001{bottom:251.066360pt;}
.y1c89_c00001{bottom:251.067027pt;}
.ye39_c00001{bottom:251.067160pt;}
.yd99_c00001{bottom:251.067893pt;}
.ydeb_c00001{bottom:251.068147pt;}
.ydb6_c00001{bottom:251.068667pt;}
.y1a6_c00001{bottom:251.174400pt;}
.y1c0_c00001{bottom:251.175600pt;}
.y1da_c00001{bottom:251.176800pt;}
.y1f4_c00001{bottom:251.178000pt;}
.y81b_c00001{bottom:251.746133pt;}
.y548_c00001{bottom:251.746667pt;}
.y15fb_c00001{bottom:251.869347pt;}
.y16a2_c00001{bottom:251.869613pt;}
.y1652_c00001{bottom:251.869880pt;}
.y1518_c00001{bottom:251.870413pt;}
.y18c9_c00001{bottom:251.870680pt;}
.y17d1_c00001{bottom:251.870813pt;}
.y1488_c00001{bottom:251.871213pt;}
.y1423_c00001{bottom:251.871347pt;}
.y1582_c00001{bottom:251.871613pt;}
.y1791_c00001{bottom:251.871747pt;}
.y14b5_c00001{bottom:251.872147pt;}
.y15cb_c00001{bottom:251.872947pt;}
.y16f3_c00001{bottom:251.873080pt;}
.y1716_c00001{bottom:251.873480pt;}
.y1743_c00001{bottom:251.874280pt;}
.y5de_c00001{bottom:251.880133pt;}
.y573_c00001{bottom:252.066667pt;}
.y69a_c00001{bottom:252.067467pt;}
.y1243_c00001{bottom:252.079960pt;}
.yf3b_c00001{bottom:252.080000pt;}
.y1c0a_c00001{bottom:252.082613pt;}
.y32d_c00001{bottom:252.507067pt;}
.y25f_c00001{bottom:252.547333pt;}
.ye6d_c00001{bottom:253.251787pt;}
.y979_c00001{bottom:253.345333pt;}
.y1bb3_c00001{bottom:253.677733pt;}
.y1bcb_c00001{bottom:253.677867pt;}
.y1b56_c00001{bottom:253.678933pt;}
.y1b7e_c00001{bottom:253.680573pt;}
.y1b6a_c00001{bottom:253.681600pt;}
.y12bd_c00001{bottom:254.319880pt;}
.yb54_c00001{bottom:254.370133pt;}
.yb92_c00001{bottom:254.371040pt;}
.yb37_c00001{bottom:254.373067pt;}
.ybb6_c00001{bottom:254.422507pt;}
.y356_c00001{bottom:254.466800pt;}
.y35d_c00001{bottom:254.467067pt;}
.y36b_c00001{bottom:254.467467pt;}
.y372_c00001{bottom:254.467733pt;}
.ye1e_c00001{bottom:254.586093pt;}
.y2b8_c00001{bottom:254.720000pt;}
.yb10_c00001{bottom:255.226693pt;}
.y1da7_c00001{bottom:255.330667pt;}
.ye4_c00001{bottom:255.453600pt;}
.yed_c00001{bottom:255.454267pt;}
.yf7_c00001{bottom:255.454400pt;}
.y101_c00001{bottom:255.454533pt;}
.y10b_c00001{bottom:255.455067pt;}
.y50f_c00001{bottom:255.746667pt;}
.y967_c00001{bottom:256.066267pt;}
.yea9_c00001{bottom:256.134667pt;}
.y59_c00001{bottom:256.214667pt;}
.y1d4b_c00001{bottom:256.395733pt;}
.y1cd2_c00001{bottom:256.396667pt;}
.y1e88_c00001{bottom:256.396787pt;}
.y1c6b_c00001{bottom:256.397720pt;}
.yb76_c00001{bottom:256.828240pt;}
.y12_c00001{bottom:256.854667pt;}
.y30c_c00001{bottom:257.026800pt;}
.y315_c00001{bottom:257.027333pt;}
.y31d_c00001{bottom:257.027867pt;}
.y236_c00001{bottom:257.053333pt;}
.y249_c00001{bottom:257.054133pt;}
.y1bb0_c00001{bottom:257.198533pt;}
.y4e7_c00001{bottom:257.506667pt;}
.y83f_c00001{bottom:257.506933pt;}
.y18a0_c00001{bottom:257.522973pt;}
.y2c5_c00001{bottom:257.732800pt;}
.y2bf_c00001{bottom:257.733067pt;}
.y6ed_c00001{bottom:258.306533pt;}
.y762_c00001{bottom:258.788133pt;}
.y1a04_c00001{bottom:259.063947pt;}
.y1994_c00001{bottom:259.065760pt;}
.y19eb_c00001{bottom:259.065800pt;}
.y19ac_c00001{bottom:259.066667pt;}
.y141_c00001{bottom:259.106267pt;}
.y1b26_c00001{bottom:259.330067pt;}
.yd0e_c00001{bottom:259.330133pt;}
.ya23_c00001{bottom:259.330267pt;}
.ya86_c00001{bottom:259.330827pt;}
.yd49_c00001{bottom:259.330867pt;}
.yd28_c00001{bottom:259.330960pt;}
.y1b45_c00001{bottom:259.331000pt;}
.ycf8_c00001{bottom:259.331333pt;}
.yd67_c00001{bottom:259.331533pt;}
.ya10_c00001{bottom:259.331867pt;}
.ya45_c00001{bottom:259.331960pt;}
.y1cee_c00001{bottom:259.332067pt;}
.ya66_c00001{bottom:259.332347pt;}
.y1ae3_c00001{bottom:259.650867pt;}
.y7be_c00001{bottom:259.746667pt;}
.y1bf9_c00001{bottom:259.868133pt;}
.y1f18_c00001{bottom:259.868747pt;}
.y1f4a_c00001{bottom:259.869280pt;}
.y1edf_c00001{bottom:259.869413pt;}
.y1c27_c00001{bottom:259.869947pt;}
.y1c4e_c00001{bottom:259.870347pt;}
.y19c9_c00001{bottom:260.186133pt;}
.ycd_c00001{bottom:260.253333pt;}
.y27_c00001{bottom:260.374667pt;}
.yc45_c00001{bottom:260.505213pt;}
.ybe8_c00001{bottom:260.507200pt;}
.yc71_c00001{bottom:260.555480pt;}
.y15b_c00001{bottom:260.573067pt;}
.y9ee_c00001{bottom:260.865467pt;}
.y1bed_c00001{bottom:260.989400pt;}
.y134b_c00001{bottom:261.041040pt;}
.y1312_c00001{bottom:261.041867pt;}
.yc15_c00001{bottom:261.627253pt;}
.y10b3_c00001{bottom:261.890533pt;}
.y10f5_c00001{bottom:261.891200pt;}
.y110f_c00001{bottom:261.891280pt;}
.y109a_c00001{bottom:261.892227pt;}
.y1157_c00001{bottom:261.947013pt;}
.y1a42_c00001{bottom:261.950720pt;}
.y1763_c00001{bottom:262.103867pt;}
.y12df_c00001{bottom:262.104933pt;}
.y12a1_c00001{bottom:262.107067pt;}
.y673_c00001{bottom:262.146667pt;}
.y177f_c00001{bottom:262.155600pt;}
.y12f9_c00001{bottom:262.158133pt;}
.y1c09_c00001{bottom:262.322200pt;}
.y11fe_c00001{bottom:262.370507pt;}
.ycd5_c00001{bottom:262.588427pt;}
.y2f9_c00001{bottom:262.627600pt;}
.y222_c00001{bottom:262.654267pt;}
.y77b_c00001{bottom:262.946400pt;}
.y128a_c00001{bottom:263.226453pt;}
.y1c2d_c00001{bottom:263.389947pt;}
.y6c6_c00001{bottom:263.586667pt;}
.y346_c00001{bottom:263.906667pt;}
.y33c_c00001{bottom:263.906933pt;}
.y1242_c00001{bottom:263.920067pt;}
.ye89_c00001{bottom:263.973200pt;}
.y271_c00001{bottom:263.974267pt;}
.y27d_c00001{bottom:263.974667pt;}
.y289_c00001{bottom:263.975467pt;}
.y295_c00001{bottom:263.976267pt;}
.y101b_c00001{bottom:263.976293pt;}
.yf8e_c00001{bottom:263.976427pt;}
.y2a1_c00001{bottom:263.977067pt;}
.yf66_c00001{bottom:263.977493pt;}
.y1e6c_c00001{bottom:263.978160pt;}
.y1d66_c00001{bottom:263.978560pt;}
.yfd8_c00001{bottom:263.978693pt;}
.y1e0c_c00001{bottom:263.978960pt;}
.yfb5_c00001{bottom:263.979093pt;}
.yeef_c00001{bottom:263.979227pt;}
.yec8_c00001{bottom:263.979627pt;}
.y1e3e_c00001{bottom:263.979760pt;}
.y1d89_c00001{bottom:263.980027pt;}
.y1051_c00001{bottom:263.980160pt;}
.y1eaf_c00001{bottom:263.981093pt;}
.y1075_c00001{bottom:263.981627pt;}
.y10d1_c00001{bottom:264.290600pt;}
.y883_c00001{bottom:264.386667pt;}
.y181a_c00001{bottom:264.558053pt;}
.y16bc_c00001{bottom:264.559227pt;}
.y12bc_c00001{bottom:264.559467pt;}
.y1381_c00001{bottom:264.559760pt;}
.y1611_c00001{bottom:264.560827pt;}
.ye6c_c00001{bottom:265.091893pt;}
.yd98_c00001{bottom:265.306960pt;}
.y717_c00001{bottom:265.508000pt;}
.y79a_c00001{bottom:266.078933pt;}
.y189f_c00001{bottom:266.322973pt;}
.yea8_c00001{bottom:266.374773pt;}
.y5a3_c00001{bottom:266.466667pt;}
.y13e1_c00001{bottom:266.483213pt;}
.y470_c00001{bottom:266.946667pt;}
.yb0f_c00001{bottom:267.066800pt;}
.y1ef8_c00001{bottom:267.170667pt;}
.y5dd_c00001{bottom:267.240000pt;}
.yff8_c00001{bottom:267.442960pt;}
.yf6c_c00001{bottom:267.444027pt;}
.y1d6c_c00001{bottom:267.445093pt;}
.yfbb_c00001{bottom:267.445627pt;}
.yece_c00001{bottom:267.446160pt;}
.y1057_c00001{bottom:267.446693pt;}
.y34b_c00001{bottom:267.586533pt;}
.y8fd_c00001{bottom:267.906667pt;}
.y1bb2_c00001{bottom:268.130800pt;}
.y1bca_c00001{bottom:268.130933pt;}
.y1b55_c00001{bottom:268.132000pt;}
.y1b7d_c00001{bottom:268.133240pt;}
.y1b69_c00001{bottom:268.133733pt;}
.y1d4a_c00001{bottom:268.235840pt;}
.y1cd1_c00001{bottom:268.236773pt;}
.y85d_c00001{bottom:268.546000pt;}
.y9cc_c00001{bottom:268.705867pt;}
.y5c3_c00001{bottom:268.706667pt;}
.ybb5_c00001{bottom:268.822507pt;}
.yb53_c00001{bottom:268.825333pt;}
.yb91_c00001{bottom:268.825707pt;}
.yb36_c00001{bottom:268.827733pt;}
.y8a2_c00001{bottom:268.863867pt;}
.y32c_c00001{bottom:269.373733pt;}
.y25e_c00001{bottom:269.441067pt;}
.y11a7_c00001{bottom:269.785307pt;}
.y1225_c00001{bottom:269.785573pt;}
.y126f_c00001{bottom:269.785707pt;}
.y1185_c00001{bottom:269.786373pt;}
.y1a22_c00001{bottom:269.787333pt;}
.y1136_c00001{bottom:269.790133pt;}
.y1a70_c00001{bottom:269.791133pt;}
.y8c2_c00001{bottom:269.825333pt;}
.y130_c00001{bottom:270.147467pt;}
.y7f6_c00001{bottom:270.306667pt;}
.y8e2_c00001{bottom:270.306800pt;}
.yb75_c00001{bottom:271.228240pt;}
.y1ae2_c00001{bottom:271.490973pt;}
.y699_c00001{bottom:271.587200pt;}
.y1baf_c00001{bottom:271.598533pt;}
.y1156_c00001{bottom:272.187120pt;}
.y1a41_c00001{bottom:272.190827pt;}
.y73e_c00001{bottom:272.705733pt;}
.y1a03_c00001{bottom:273.463947pt;}
.y1993_c00001{bottom:273.465760pt;}
.y19ea_c00001{bottom:273.465800pt;}
.y19ab_c00001{bottom:273.466667pt;}
.y18d_c00001{bottom:273.466933pt;}
.y1b25_c00001{bottom:273.730067pt;}
.yd0d_c00001{bottom:273.730133pt;}
.ya22_c00001{bottom:273.730267pt;}
.ya0f_c00001{bottom:273.730800pt;}
.ya85_c00001{bottom:273.730827pt;}
.yd48_c00001{bottom:273.730867pt;}
.yd27_c00001{bottom:273.730960pt;}
.y1b44_c00001{bottom:273.731000pt;}
.ycf7_c00001{bottom:273.731333pt;}
.yd66_c00001{bottom:273.731533pt;}
.ya44_c00001{bottom:273.731960pt;}
.y1ced_c00001{bottom:273.732067pt;}
.ya65_c00001{bottom:273.732347pt;}
.y1c08_c00001{bottom:273.842507pt;}
.y11e8_c00001{bottom:274.050867pt;}
.y11fd_c00001{bottom:274.210613pt;}
.y13ce_c00001{bottom:274.321733pt;}
.y16a1_c00001{bottom:274.322280pt;}
.y15fa_c00001{bottom:274.322413pt;}
.y1670_c00001{bottom:274.322547pt;}
.y1651_c00001{bottom:274.322947pt;}
.y1517_c00001{bottom:274.323080pt;}
.y18c8_c00001{bottom:274.323347pt;}
.y192b_c00001{bottom:274.323480pt;}
.y15aa_c00001{bottom:274.323613pt;}
.y1487_c00001{bottom:274.323880pt;}
.y1466_c00001{bottom:274.324147pt;}
.y1422_c00001{bottom:274.324413pt;}
.y13fd_c00001{bottom:274.324680pt;}
.y14b4_c00001{bottom:274.324813pt;}
.y1961_c00001{bottom:274.325213pt;}
.y16f2_c00001{bottom:274.325747pt;}
.y15ca_c00001{bottom:274.326013pt;}
.y1742_c00001{bottom:274.326413pt;}
.y1715_c00001{bottom:274.326547pt;}
.yc70_c00001{bottom:274.954947pt;}
.yc44_c00001{bottom:274.957880pt;}
.ybe7_c00001{bottom:274.959333pt;}
.y11b_c00001{bottom:275.107600pt;}
.y1a7_c00001{bottom:275.107733pt;}
.y1c1_c00001{bottom:275.108933pt;}
.y1db_c00001{bottom:275.110133pt;}
.y1f5_c00001{bottom:275.111333pt;}
.y20c_c00001{bottom:275.112533pt;}
.y13c2_c00001{bottom:275.389373pt;}
.y181c_c00001{bottom:275.437787pt;}
.y1833_c00001{bottom:275.438453pt;}
.y16be_c00001{bottom:275.439493pt;}
.y1383_c00001{bottom:275.440027pt;}
.y14e9_c00001{bottom:275.440160pt;}
.y1554_c00001{bottom:275.440293pt;}
.y139b_c00001{bottom:275.440693pt;}
.y17bd_c00001{bottom:275.440827pt;}
.y134a_c00001{bottom:275.441040pt;}
.y1613_c00001{bottom:275.441093pt;}
.y132e_c00001{bottom:275.441467pt;}
.y1311_c00001{bottom:275.441867pt;}
.y162b_c00001{bottom:275.442693pt;}
.y1049_c00001{bottom:275.651347pt;}
.y19c8_c00001{bottom:275.864800pt;}
.ydea_c00001{bottom:276.028013pt;}
.yc14_c00001{bottom:276.079920pt;}
.y10b2_c00001{bottom:276.290533pt;}
.y10f4_c00001{bottom:276.291200pt;}
.y110e_c00001{bottom:276.291280pt;}
.y1099_c00001{bottom:276.292227pt;}
.y194e_c00001{bottom:276.555067pt;}
.y177e_c00001{bottom:276.555600pt;}
.y1762_c00001{bottom:276.556533pt;}
.y12de_c00001{bottom:276.557600pt;}
.y12f8_c00001{bottom:276.558133pt;}
.y12a0_c00001{bottom:276.559200pt;}
.y12bb_c00001{bottom:276.559467pt;}
.y1289_c00001{bottom:276.559787pt;}
.y13e0_c00001{bottom:276.722800pt;}
.yd97_c00001{bottom:277.147067pt;}
.y966_c00001{bottom:277.186000pt;}
.y10d0_c00001{bottom:277.410907pt;}
.y922_c00001{bottom:277.506667pt;}
.y1676_c00001{bottom:277.790547pt;}
.y15b0_c00001{bottom:277.791613pt;}
.y146c_c00001{bottom:277.792147pt;}
.y1403_c00001{bottom:277.792680pt;}
.y2d0_c00001{bottom:277.893333pt;}
.y81a_c00001{bottom:277.986267pt;}
.ye6b_c00001{bottom:278.373147pt;}
.ye88_c00001{bottom:278.373200pt;}
.yff2_c00001{bottom:278.373760pt;}
.yea7_c00001{bottom:278.374773pt;}
.yf65_c00001{bottom:278.374827pt;}
.y1d65_c00001{bottom:278.375893pt;}
.y101a_c00001{bottom:278.376293pt;}
.yf8d_c00001{bottom:278.376427pt;}
.y1e6b_c00001{bottom:278.376560pt;}
.yec7_c00001{bottom:278.376960pt;}
.yfd7_c00001{bottom:278.377093pt;}
.y1050_c00001{bottom:278.377493pt;}
.y1dd5_c00001{bottom:278.378560pt;}
.y1e0b_c00001{bottom:278.378960pt;}
.yeee_c00001{bottom:278.379227pt;}
.y1e3d_c00001{bottom:278.379760pt;}
.y1d88_c00001{bottom:278.380027pt;}
.y1eae_c00001{bottom:278.381093pt;}
.y1074_c00001{bottom:278.381627pt;}
.y1819_c00001{bottom:278.958053pt;}
.y16bb_c00001{bottom:278.959227pt;}
.y1380_c00001{bottom:278.959760pt;}
.y1610_c00001{bottom:278.960827pt;}
.y1541_c00001{bottom:279.010667pt;}
.y947_c00001{bottom:279.264800pt;}
.y1e87_c00001{bottom:280.076520pt;}
.y1c6a_c00001{bottom:280.077453pt;}
.y12c_c00001{bottom:280.386667pt;}
.y2d6_c00001{bottom:280.667067pt;}
.y2dc_c00001{bottom:280.667467pt;}
.y2e2_c00001{bottom:280.667867pt;}
.y2e8_c00001{bottom:280.668267pt;}
.y2ec_c00001{bottom:280.668800pt;}
.y6ec_c00001{bottom:280.866400pt;}
.y1862_c00001{bottom:280.882573pt;}
.y142_c00001{bottom:281.053200pt;}
.y560_c00001{bottom:281.186667pt;}
.y1bf8_c00001{bottom:281.627467pt;}
.y1f17_c00001{bottom:281.628613pt;}
.y1f49_c00001{bottom:281.629147pt;}
.y1ede_c00001{bottom:281.629280pt;}
.y1c26_c00001{bottom:281.629813pt;}
.y1c4d_c00001{bottom:281.630213pt;}
.y446_c00001{bottom:282.306667pt;}
.y1b7c_c00001{bottom:282.533240pt;}
.y15c_c00001{bottom:282.533467pt;}
.y172_c00001{bottom:282.534000pt;}
.y1bec_c00001{bottom:282.749267pt;}
.y882_c00001{bottom:282.787467pt;}
.y39b_c00001{bottom:283.106667pt;}
.ybb4_c00001{bottom:283.222507pt;}
.yb52_c00001{bottom:283.225333pt;}
.yb90_c00001{bottom:283.225707pt;}
.yb35_c00001{bottom:283.227733pt;}
.y1ae1_c00001{bottom:283.330560pt;}
.y1b54_c00001{bottom:283.651733pt;}
.y1155_c00001{bottom:283.707427pt;}
.y83e_c00001{bottom:283.747067pt;}
.y761_c00001{bottom:283.748000pt;}
.y716_c00001{bottom:283.749600pt;}
.y1c07_c00001{bottom:284.030013pt;}
.y1a21_c00001{bottom:284.187333pt;}
.y1a91_c00001{bottom:284.189667pt;}
.y1a6f_c00001{bottom:284.190067pt;}
.y7bd_c00001{bottom:284.546667pt;}
.y1c2c_c00001{bottom:285.095147pt;}
.y1a40_c00001{bottom:285.309573pt;}
.y2fc_c00001{bottom:285.374533pt;}
.y225_c00001{bottom:285.374667pt;}
.yb74_c00001{bottom:285.627173pt;}
.y11e7_c00001{bottom:285.890973pt;}
.ycd4_c00001{bottom:286.269093pt;}
.y978_c00001{bottom:286.945333pt;}
.y41b_c00001{bottom:286.946667pt;}
.y1241_c00001{bottom:287.438867pt;}
.y1048_c00001{bottom:287.490933pt;}
.y1992_c00001{bottom:287.865760pt;}
.y19e9_c00001{bottom:287.865800pt;}
.y19aa_c00001{bottom:287.866667pt;}
.y44_c00001{bottom:287.894667pt;}
.y1a02_c00001{bottom:287.917013pt;}
.y998_c00001{bottom:288.066667pt;}
.ycf6_c00001{bottom:288.129733pt;}
.y1b24_c00001{bottom:288.130067pt;}
.yd0c_c00001{bottom:288.130133pt;}
.ya21_c00001{bottom:288.130267pt;}
.ya0e_c00001{bottom:288.130800pt;}
.ya84_c00001{bottom:288.130827pt;}
.yd47_c00001{bottom:288.130867pt;}
.y1b43_c00001{bottom:288.131000pt;}
.yd65_c00001{bottom:288.131533pt;}
.ya43_c00001{bottom:288.131960pt;}
.y1cec_c00001{bottom:288.132067pt;}
.ya64_c00001{bottom:288.132347pt;}
.y180_c00001{bottom:288.226667pt;}
.y13df_c00001{bottom:288.243107pt;}
.y2ba_c00001{bottom:288.253333pt;}
.y9ed_c00001{bottom:288.545733pt;}
.y184f_c00001{bottom:288.721200pt;}
.y189e_c00001{bottom:288.722973pt;}
.y187d_c00001{bottom:288.723373pt;}
.y12f_c00001{bottom:288.866800pt;}
.yd26_c00001{bottom:289.251227pt;}
.yc6f_c00001{bottom:289.354947pt;}
.yc43_c00001{bottom:289.357880pt;}
.ybe6_c00001{bottom:289.359333pt;}
.yf21_c00001{bottom:289.360693pt;}
.y183_c00001{bottom:289.440000pt;}
.y181b_c00001{bottom:289.837787pt;}
.y1832_c00001{bottom:289.838453pt;}
.y16bd_c00001{bottom:289.839493pt;}
.y16d4_c00001{bottom:289.839627pt;}
.y1382_c00001{bottom:289.840027pt;}
.y14e8_c00001{bottom:289.840160pt;}
.y1310_c00001{bottom:289.840267pt;}
.y1553_c00001{bottom:289.840293pt;}
.y139a_c00001{bottom:289.840693pt;}
.y17bc_c00001{bottom:289.840827pt;}
.y1349_c00001{bottom:289.841040pt;}
.y1612_c00001{bottom:289.841093pt;}
.y132d_c00001{bottom:289.841467pt;}
.y184a_c00001{bottom:289.841960pt;}
.y162a_c00001{bottom:289.842693pt;}
.y19c7_c00001{bottom:290.317867pt;}
.yc13_c00001{bottom:290.479920pt;}
.y10b1_c00001{bottom:290.690533pt;}
.y1098_c00001{bottom:290.690627pt;}
.y10f3_c00001{bottom:290.691200pt;}
.y110d_c00001{bottom:290.745947pt;}
.yb0e_c00001{bottom:290.747067pt;}
.y194d_c00001{bottom:290.955067pt;}
.y177d_c00001{bottom:290.955600pt;}
.y1761_c00001{bottom:290.956533pt;}
.y12dd_c00001{bottom:290.957600pt;}
.y129f_c00001{bottom:290.958133pt;}
.y12ba_c00001{bottom:290.958400pt;}
.y1288_c00001{bottom:290.959787pt;}
.y698_c00001{bottom:291.106933pt;}
.y1861_c00001{bottom:291.122680pt;}
.y79e_c00001{bottom:291.134667pt;}
.y1184_c00001{bottom:291.491573pt;}
.y1135_c00001{bottom:291.495333pt;}
.y58_c00001{bottom:291.734667pt;}
.y1d49_c00001{bottom:291.808773pt;}
.y1cd0_c00001{bottom:291.809707pt;}
.y1e86_c00001{bottom:291.916107pt;}
.y1c69_c00001{bottom:291.917040pt;}
.yb1_c00001{bottom:292.000133pt;}
.ybb_c00001{bottom:292.000400pt;}
.y1883_c00001{bottom:292.190707pt;}
.yff1_c00001{bottom:292.772693pt;}
.ye6a_c00001{bottom:292.773147pt;}
.ye87_c00001{bottom:292.773200pt;}
.yf64_c00001{bottom:292.773760pt;}
.yea6_c00001{bottom:292.774773pt;}
.y1d64_c00001{bottom:292.774827pt;}
.yfb4_c00001{bottom:292.775360pt;}
.yec6_c00001{bottom:292.775893pt;}
.y1019_c00001{bottom:292.776293pt;}
.yf8c_c00001{bottom:292.776427pt;}
.y1e6a_c00001{bottom:292.776560pt;}
.yfd6_c00001{bottom:292.777093pt;}
.y1dd4_c00001{bottom:292.778560pt;}
.y1e0a_c00001{bottom:292.778960pt;}
.yeed_c00001{bottom:292.779227pt;}
.y1e3c_c00001{bottom:292.779760pt;}
.y1d87_c00001{bottom:292.780027pt;}
.y1ead_c00001{bottom:292.781093pt;}
.y1073_c00001{bottom:292.781627pt;}
.y85c_c00001{bottom:293.026267pt;}
.y10cf_c00001{bottom:293.146907pt;}
.y1c9c_c00001{bottom:293.255027pt;}
.ye4c_c00001{bottom:293.256093pt;}
.y1818_c00001{bottom:293.358053pt;}
.y16ba_c00001{bottom:293.359227pt;}
.y137f_c00001{bottom:293.359760pt;}
.y160f_c00001{bottom:293.360827pt;}
.y32f_c00001{bottom:293.826800pt;}
.y11a_c00001{bottom:293.827333pt;}
.y261_c00001{bottom:293.854133pt;}
.y1154_c00001{bottom:293.947013pt;}
.y590_c00001{bottom:294.626667pt;}
.y1ae0_c00001{bottom:295.170667pt;}
.y73d_c00001{bottom:295.265600pt;}
.y7f5_c00001{bottom:295.266667pt;}
.y8fc_c00001{bottom:295.586933pt;}
.y1bf7_c00001{bottom:296.027467pt;}
.y1beb_c00001{bottom:296.027907pt;}
.y1f16_c00001{bottom:296.028613pt;}
.y15f9_c00001{bottom:296.028680pt;}
.y13cd_c00001{bottom:296.029067pt;}
.y1f48_c00001{bottom:296.029147pt;}
.y1edd_c00001{bottom:296.029280pt;}
.y1c4c_c00001{bottom:296.029680pt;}
.y1c25_c00001{bottom:296.029813pt;}
.y1c06_c00001{bottom:296.030013pt;}
.y16a0_c00001{bottom:296.030147pt;}
.y1650_c00001{bottom:296.030280pt;}
.y1516_c00001{bottom:296.030413pt;}
.y192a_c00001{bottom:296.030813pt;}
.y17d0_c00001{bottom:296.031213pt;}
.y15a9_c00001{bottom:296.031480pt;}
.y1421_c00001{bottom:296.031747pt;}
.y1465_c00001{bottom:296.032013pt;}
.y1790_c00001{bottom:296.032280pt;}
.y13fc_c00001{bottom:296.032547pt;}
.y14b3_c00001{bottom:296.032680pt;}
.y16f1_c00001{bottom:296.033080pt;}
.y1975_c00001{bottom:296.033347pt;}
.y15c9_c00001{bottom:296.033880pt;}
.y1741_c00001{bottom:296.034813pt;}
.y9cb_c00001{bottom:296.226133pt;}
.y547_c00001{bottom:296.226667pt;}
.y572_c00001{bottom:296.546667pt;}
.y237_c00001{bottom:296.640267pt;}
.y30d_c00001{bottom:296.640400pt;}
.y24a_c00001{bottom:296.641067pt;}
.y316_c00001{bottom:296.641333pt;}
.y31e_c00001{bottom:296.641467pt;}
.ya1_c00001{bottom:296.773333pt;}
.y13c1_c00001{bottom:297.149240pt;}
.y8c1_c00001{bottom:297.345067pt;}
.y18e_c00001{bottom:297.413867pt;}
.ybb3_c00001{bottom:297.622507pt;}
.yb51_c00001{bottom:297.625333pt;}
.yb8f_c00001{bottom:297.625707pt;}
.yb34_c00001{bottom:297.626667pt;}
.y11fc_c00001{bottom:297.730347pt;}
.y11e6_c00001{bottom:297.730560pt;}
.y8e1_c00001{bottom:297.988000pt;}
.ycd3_c00001{bottom:298.109200pt;}
.y965_c00001{bottom:298.306267pt;}
.y13de_c00001{bottom:298.430613pt;}
.y1a20_c00001{bottom:298.587333pt;}
.y1a90_c00001{bottom:298.589667pt;}
.y1a6e_c00001{bottom:298.590067pt;}
.y1a8_c00001{bottom:299.014000pt;}
.y1c2_c00001{bottom:299.015200pt;}
.y1dc_c00001{bottom:299.016400pt;}
.y1f6_c00001{bottom:299.017600pt;}
.y20d_c00001{bottom:299.018800pt;}
.y1047_c00001{bottom:299.278960pt;}
.y1240_c00001{bottom:299.278973pt;}
.y1d21_c00001{bottom:299.280173pt;}
.y1675_c00001{bottom:299.495213pt;}
.y15af_c00001{bottom:299.496280pt;}
.y146b_c00001{bottom:299.496813pt;}
.y1402_c00001{bottom:299.497347pt;}
.y365_c00001{bottom:299.587067pt;}
.y2c6_c00001{bottom:299.679733pt;}
.y2c0_c00001{bottom:299.680000pt;}
.y1a3f_c00001{bottom:299.709573pt;}
.y1bde_c00001{bottom:299.756400pt;}
.y881_c00001{bottom:299.907733pt;}
.ybcc_c00001{bottom:300.075800pt;}
.yb73_c00001{bottom:300.079840pt;}
.y34a_c00001{bottom:300.866800pt;}
.y14d2_c00001{bottom:301.200227pt;}
.yf20_c00001{bottom:301.200280pt;}
.y4de_c00001{bottom:301.986667pt;}
.y2fb_c00001{bottom:302.240667pt;}
.y224_c00001{bottom:302.240800pt;}
.y8a1_c00001{bottom:302.304000pt;}
.y1a01_c00001{bottom:302.316480pt;}
.y19e8_c00001{bottom:302.318467pt;}
.y1991_c00001{bottom:302.318827pt;}
.y19a9_c00001{bottom:302.319333pt;}
.ycf5_c00001{bottom:302.529733pt;}
.y1b23_c00001{bottom:302.530067pt;}
.yd0b_c00001{bottom:302.530133pt;}
.ya20_c00001{bottom:302.530267pt;}
.ya0d_c00001{bottom:302.530800pt;}
.yd46_c00001{bottom:302.530867pt;}
.ya63_c00001{bottom:302.532347pt;}
.y1b42_c00001{bottom:302.583667pt;}
.yd64_c00001{bottom:302.584600pt;}
.y1ceb_c00001{bottom:302.585133pt;}
.ya83_c00001{bottom:302.586027pt;}
.yd25_c00001{bottom:302.586160pt;}
.ya42_c00001{bottom:302.587160pt;}
.yb0d_c00001{bottom:302.587173pt;}
.y1860_c00001{bottom:302.642987pt;}
.y143_c00001{bottom:303.013067pt;}
.y6eb_c00001{bottom:303.266400pt;}
.y715_c00001{bottom:303.269333pt;}
.y1d48_c00001{bottom:303.648880pt;}
.y1ccf_c00001{bottom:303.649813pt;}
.yc6e_c00001{bottom:303.754413pt;}
.yc42_c00001{bottom:303.757880pt;}
.ybe5_c00001{bottom:303.758267pt;}
.y7bc_c00001{bottom:304.068000pt;}
.y1348_c00001{bottom:304.293173pt;}
.y15d_c00001{bottom:304.479867pt;}
.y173_c00001{bottom:304.480400pt;}
.y19c6_c00001{bottom:304.717867pt;}
.yc12_c00001{bottom:304.879920pt;}
.y2b9_c00001{bottom:305.120000pt;}
.y10b0_c00001{bottom:305.145733pt;}
.y10f2_c00001{bottom:305.145867pt;}
.y110c_c00001{bottom:305.145947pt;}
.y1097_c00001{bottom:305.147427pt;}
.y33d_c00001{bottom:305.253333pt;}
.y272_c00001{bottom:305.254000pt;}
.y27e_c00001{bottom:305.254400pt;}
.y28a_c00001{bottom:305.255200pt;}
.y296_c00001{bottom:305.256000pt;}
.y2a2_c00001{bottom:305.256800pt;}
.y194c_c00001{bottom:305.355067pt;}
.y177c_c00001{bottom:305.355600pt;}
.y1760_c00001{bottom:305.356533pt;}
.y12dc_c00001{bottom:305.357600pt;}
.y129e_c00001{bottom:305.358133pt;}
.y130f_c00001{bottom:305.359600pt;}
.y1287_c00001{bottom:305.359787pt;}
.ye5_c00001{bottom:305.413467pt;}
.yee_c00001{bottom:305.414133pt;}
.yf8_c00001{bottom:305.414267pt;}
.y102_c00001{bottom:305.414400pt;}
.y10c_c00001{bottom:305.414933pt;}
.y43_c00001{bottom:305.814667pt;}
.y11a6_c00001{bottom:305.945173pt;}
.y126e_c00001{bottom:305.945573pt;}
.y1224_c00001{bottom:305.945973pt;}
.y1183_c00001{bottom:305.946240pt;}
.y1134_c00001{bottom:305.950000pt;}
.y77a_c00001{bottom:306.306267pt;}
.y12b9_c00001{bottom:306.478667pt;}
.y1153_c00001{bottom:307.067320pt;}
.ye69_c00001{bottom:307.228347pt;}
.ye86_c00001{bottom:307.228400pt;}
.y1d0a_c00001{bottom:307.228427pt;}
.yf8b_c00001{bottom:307.228560pt;}
.yff0_c00001{bottom:307.228960pt;}
.y1e69_c00001{bottom:307.229227pt;}
.yfd5_c00001{bottom:307.229760pt;}
.yea5_c00001{bottom:307.229973pt;}
.yf63_c00001{bottom:307.230027pt;}
.y1d63_c00001{bottom:307.231093pt;}
.y1dd3_c00001{bottom:307.231227pt;}
.yfb3_c00001{bottom:307.231627pt;}
.yeec_c00001{bottom:307.231893pt;}
.yec5_c00001{bottom:307.232160pt;}
.y1e3b_c00001{bottom:307.232427pt;}
.y104f_c00001{bottom:307.232693pt;}
.y1eac_c00001{bottom:307.233760pt;}
.y1072_c00001{bottom:307.234293pt;}
.y10ce_c00001{bottom:307.546907pt;}
.y819_c00001{bottom:307.587333pt;}
.y760_c00001{bottom:308.548000pt;}
.y57_c00001{bottom:309.494667pt;}
.y11fb_c00001{bottom:309.570453pt;}
.y11e5_c00001{bottom:309.570667pt;}
.y11_c00001{bottom:309.654667pt;}
.ycf_c00001{bottom:309.946533pt;}
.ycd2_c00001{bottom:309.948787pt;}
.y6c3_c00001{bottom:310.306667pt;}
.y1bea_c00001{bottom:310.427373pt;}
.y1bf6_c00001{bottom:310.427467pt;}
.y13c0_c00001{bottom:310.427880pt;}
.y13cc_c00001{bottom:310.429067pt;}
.y1c24_c00001{bottom:310.429813pt;}
.y166f_c00001{bottom:310.430413pt;}
.y187c_c00001{bottom:310.431240pt;}
.y15a8_c00001{bottom:310.431480pt;}
.y1464_c00001{bottom:310.432013pt;}
.y13fb_c00001{bottom:310.432547pt;}
.y1960_c00001{bottom:310.433080pt;}
.y1f15_c00001{bottom:310.481280pt;}
.y15f8_c00001{bottom:310.481347pt;}
.y1f47_c00001{bottom:310.481813pt;}
.y1edc_c00001{bottom:310.481947pt;}
.y169f_c00001{bottom:310.482280pt;}
.y1c05_c00001{bottom:310.482680pt;}
.y1c4b_c00001{bottom:310.482747pt;}
.y189d_c00001{bottom:310.482840pt;}
.y164f_c00001{bottom:310.482947pt;}
.y1515_c00001{bottom:310.483080pt;}
.y13dd_c00001{bottom:310.483213pt;}
.y1929_c00001{bottom:310.483480pt;}
.y17cf_c00001{bottom:310.483880pt;}
.y1420_c00001{bottom:310.484413pt;}
.y14b2_c00001{bottom:310.484813pt;}
.y178f_c00001{bottom:310.484947pt;}
.y1581_c00001{bottom:310.485080pt;}
.y1974_c00001{bottom:310.486013pt;}
.y16f0_c00001{bottom:310.486147pt;}
.y15c8_c00001{bottom:310.486547pt;}
.y1740_c00001{bottom:310.487480pt;}
.y32e_c00001{bottom:310.693467pt;}
.y260_c00001{bottom:310.720800pt;}
.y5e8_c00001{bottom:310.946667pt;}
.y3ca_c00001{bottom:311.106667pt;}
.y1046_c00001{bottom:311.118547pt;}
.y123f_c00001{bottom:311.118560pt;}
.y1d20_c00001{bottom:311.120280pt;}
.y1849_c00001{bottom:311.549293pt;}
.y639_c00001{bottom:311.746667pt;}
.ybb2_c00001{bottom:312.075573pt;}
.yb8e_c00001{bottom:312.078373pt;}
.yb50_c00001{bottom:312.078400pt;}
.yb33_c00001{bottom:312.079733pt;}
.y185f_c00001{bottom:312.882573pt;}
.y14d1_c00001{bottom:313.040333pt;}
.yf1f_c00001{bottom:313.040387pt;}
.y1a1f_c00001{bottom:313.040400pt;}
.y1d05_c00001{bottom:313.040707pt;}
.y1a8f_c00001{bottom:313.042333pt;}
.y1a6d_c00001{bottom:313.042733pt;}
.y26_c00001{bottom:313.174667pt;}
.y5c2_c00001{bottom:313.186667pt;}
.ybcb_c00001{bottom:313.196107pt;}
.yd96_c00001{bottom:313.359600pt;}
.y83d_c00001{bottom:313.666400pt;}
.y946_c00001{bottom:313.824667pt;}
.y1686_c00001{bottom:313.950013pt;}
.y1882_c00001{bottom:313.950040pt;}
.y15b6_c00001{bottom:313.951480pt;}
.y1967_c00001{bottom:313.952013pt;}
.y1569_c00001{bottom:313.952547pt;}
.y149b_c00001{bottom:313.952680pt;}
.y1a3e_c00001{bottom:314.162640pt;}
.yb0c_c00001{bottom:314.372067pt;}
.yb72_c00001{bottom:314.479840pt;}
.y50d_c00001{bottom:314.946667pt;}
.y1d47_c00001{bottom:315.436373pt;}
.y1c68_c00001{bottom:315.437307pt;}
.y8c0_c00001{bottom:315.745067pt;}
.y9ec_c00001{bottom:316.065467pt;}
.y697_c00001{bottom:316.066800pt;}
.yde9_c00001{bottom:316.293080pt;}
.y85b_c00001{bottom:316.706533pt;}
.y1a00_c00001{bottom:316.716480pt;}
.y19e7_c00001{bottom:316.718467pt;}
.y1990_c00001{bottom:316.718827pt;}
.y19a8_c00001{bottom:316.719333pt;}
.y1b41_c00001{bottom:316.983667pt;}
.yd63_c00001{bottom:316.984600pt;}
.ycf4_c00001{bottom:316.984933pt;}
.y1cea_c00001{bottom:316.985133pt;}
.y1b22_c00001{bottom:316.985267pt;}
.yd0a_c00001{bottom:316.985333pt;}
.ya0c_c00001{bottom:316.985467pt;}
.ya82_c00001{bottom:316.986027pt;}
.yd45_c00001{bottom:316.986067pt;}
.yd24_c00001{bottom:316.986160pt;}
.ya99_c00001{bottom:316.986827pt;}
.ya62_c00001{bottom:316.987013pt;}
.y880_c00001{bottom:317.187467pt;}
.y73c_c00001{bottom:317.665600pt;}
.yc41_c00001{bottom:318.156280pt;}
.ybe4_c00001{bottom:318.158267pt;}
.yc6d_c00001{bottom:318.209613pt;}
.y19c5_c00001{bottom:319.117867pt;}
.y350_c00001{bottom:319.227333pt;}
.yc11_c00001{bottom:319.332587pt;}
.ya41_c00001{bottom:319.387160pt;}
.y1b7b_c00001{bottom:319.493107pt;}
.y10af_c00001{bottom:319.545733pt;}
.y1096_c00001{bottom:319.545827pt;}
.y10f1_c00001{bottom:319.545867pt;}
.y110b_c00001{bottom:319.545947pt;}
.y964_c00001{bottom:319.586000pt;}
.y175f_c00001{bottom:319.809600pt;}
.y194b_c00001{bottom:319.810267pt;}
.y12db_c00001{bottom:319.810667pt;}
.y129d_c00001{bottom:319.810800pt;}
.y12b8_c00001{bottom:319.810960pt;}
.y1286_c00001{bottom:319.812453pt;}
.y12f7_c00001{bottom:319.813333pt;}
.y7f4_c00001{bottom:320.067733pt;}
.y11a5_c00001{bottom:320.344107pt;}
.y126d_c00001{bottom:320.345573pt;}
.y1223_c00001{bottom:320.345973pt;}
.y1182_c00001{bottom:320.346240pt;}
.y1133_c00001{bottom:320.349467pt;}
.y655_c00001{bottom:321.026667pt;}
.y18f_c00001{bottom:321.307067pt;}
.y11fa_c00001{bottom:321.410560pt;}
.y1152_c00001{bottom:321.466253pt;}
.y1840_c00001{bottom:321.515520pt;}
.y14f7_c00001{bottom:321.516427pt;}
.y17c3_c00001{bottom:321.517093pt;}
.y16da_c00001{bottom:321.517760pt;}
.y1568_c00001{bottom:321.518427pt;}
.y13ae_c00001{bottom:321.518827pt;}
.y18fe_c00001{bottom:321.518960pt;}
.y163f_c00001{bottom:321.520027pt;}
.y1018_c00001{bottom:321.627360pt;}
.yf8a_c00001{bottom:321.627493pt;}
.yfef_c00001{bottom:321.627893pt;}
.ye68_c00001{bottom:321.628347pt;}
.ye85_c00001{bottom:321.628400pt;}
.yf62_c00001{bottom:321.628960pt;}
.y1e68_c00001{bottom:321.629227pt;}
.yfd4_c00001{bottom:321.629760pt;}
.yea4_c00001{bottom:321.629973pt;}
.y1d62_c00001{bottom:321.630027pt;}
.yfb2_c00001{bottom:321.630560pt;}
.yec4_c00001{bottom:321.631093pt;}
.y1dd2_c00001{bottom:321.631227pt;}
.y104e_c00001{bottom:321.631627pt;}
.yeeb_c00001{bottom:321.631893pt;}
.y1e3a_c00001{bottom:321.632427pt;}
.y1d86_c00001{bottom:321.632693pt;}
.y1eab_c00001{bottom:321.633760pt;}
.y1071_c00001{bottom:321.634293pt;}
.ycd1_c00001{bottom:321.788893pt;}
.y10cd_c00001{bottom:321.945840pt;}
.y714_c00001{bottom:322.788667pt;}
.y1a9_c00001{bottom:322.947333pt;}
.y1c3_c00001{bottom:322.948533pt;}
.y1dd_c00001{bottom:322.949733pt;}
.y1f7_c00001{bottom:322.950933pt;}
.y20e_c00001{bottom:322.952133pt;}
.y1045_c00001{bottom:322.958653pt;}
.y123e_c00001{bottom:322.958667pt;}
.y1d1f_c00001{bottom:322.960387pt;}
.y8fb_c00001{bottom:323.106667pt;}
.y42_c00001{bottom:323.734667pt;}
.y7bb_c00001{bottom:323.747867pt;}
.y9ca_c00001{bottom:323.906400pt;}
.y921_c00001{bottom:324.066667pt;}
.ye0e_c00001{bottom:324.081160pt;}
.ydb5_c00001{bottom:324.081733pt;}
.y1c88_c00001{bottom:324.082093pt;}
.ye38_c00001{bottom:324.082227pt;}
.yc5_c00001{bottom:324.226533pt;}
.y357_c00001{bottom:324.413733pt;}
.y366_c00001{bottom:324.414000pt;}
.y369_c00001{bottom:324.414133pt;}
.y36c_c00001{bottom:324.414400pt;}
.y373_c00001{bottom:324.414667pt;}
.y1f34_c00001{bottom:324.827667pt;}
.y1d04_c00001{bottom:324.827680pt;}
.y14d0_c00001{bottom:324.880440pt;}
.yf1e_c00001{bottom:324.880493pt;}
.y1bf5_c00001{bottom:324.880533pt;}
.y13bf_c00001{bottom:324.880547pt;}
.y1f14_c00001{bottom:324.881280pt;}
.y15f7_c00001{bottom:324.881347pt;}
.y13cb_c00001{bottom:324.881733pt;}
.y1f46_c00001{bottom:324.881813pt;}
.y1edb_c00001{bottom:324.881947pt;}
.y169e_c00001{bottom:324.882280pt;}
.y1c23_c00001{bottom:324.882480pt;}
.y166e_c00001{bottom:324.882547pt;}
.y185e_c00001{bottom:324.882573pt;}
.y1c04_c00001{bottom:324.882680pt;}
.y1c4a_c00001{bottom:324.882747pt;}
.y189c_c00001{bottom:324.882840pt;}
.y164e_c00001{bottom:324.882947pt;}
.y1514_c00001{bottom:324.883080pt;}
.y13dc_c00001{bottom:324.883213pt;}
.y187b_c00001{bottom:324.883373pt;}
.y1928_c00001{bottom:324.883480pt;}
.y15a7_c00001{bottom:324.883613pt;}
.y17ce_c00001{bottom:324.883880pt;}
.y1463_c00001{bottom:324.884147pt;}
.y141f_c00001{bottom:324.884413pt;}
.y13fa_c00001{bottom:324.884680pt;}
.y14b1_c00001{bottom:324.884813pt;}
.y178e_c00001{bottom:324.884947pt;}
.y1580_c00001{bottom:324.885080pt;}
.y195f_c00001{bottom:324.885213pt;}
.y16ef_c00001{bottom:324.885613pt;}
.y15c7_c00001{bottom:324.886013pt;}
.y1714_c00001{bottom:324.886547pt;}
.y173f_c00001{bottom:324.887480pt;}
.y144_c00001{bottom:324.960000pt;}
.y2fe_c00001{bottom:324.987600pt;}
.y227_c00001{bottom:324.987733pt;}
.yf39_c00001{bottom:325.199173pt;}
.yd95_c00001{bottom:325.199707pt;}
.y8e0_c00001{bottom:325.506400pt;}
.y6ea_c00001{bottom:325.666400pt;}
.y55f_c00001{bottom:325.666667pt;}
.yb0b_c00001{bottom:326.212173pt;}
.y15e_c00001{bottom:326.400133pt;}
.y174_c00001{bottom:326.400667pt;}
.ybb1_c00001{bottom:326.475573pt;}
.yb8d_c00001{bottom:326.478373pt;}
.yb4f_c00001{bottom:326.478400pt;}
.yb32_c00001{bottom:326.479733pt;}
.yde8_c00001{bottom:326.480587pt;}
.y10_c00001{bottom:327.254667pt;}
.y1d46_c00001{bottom:327.275960pt;}
.y1c67_c00001{bottom:327.276893pt;}
.y1bc9_c00001{bottom:327.330933pt;}
.y1b9e_c00001{bottom:327.332133pt;}
.y1b68_c00001{bottom:327.333733pt;}
.y1a1e_c00001{bottom:327.440400pt;}
.y1a8e_c00001{bottom:327.440733pt;}
.y1a6c_c00001{bottom:327.442733pt;}
.ye26_c00001{bottom:327.546627pt;}
.y398_c00001{bottom:327.586667pt;}
.yb71_c00001{bottom:327.599627pt;}
.y1685_c00001{bottom:328.350013pt;}
.y15b5_c00001{bottom:328.351480pt;}
.y1966_c00001{bottom:328.352013pt;}
.y1705_c00001{bottom:328.352547pt;}
.y671_c00001{bottom:328.386667pt;}
.y1b53_c00001{bottom:328.451733pt;}
.y1a3d_c00001{bottom:328.562640pt;}
.y1b7a_c00001{bottom:329.733213pt;}
.y25_c00001{bottom:330.774667pt;}
.y1bb7_c00001{bottom:330.795467pt;}
.y19ff_c00001{bottom:331.116480pt;}
.y19e6_c00001{bottom:331.118467pt;}
.y198f_c00001{bottom:331.118827pt;}
.y19a7_c00001{bottom:331.119333pt;}
.y818_c00001{bottom:331.268000pt;}
.y1b40_c00001{bottom:331.383667pt;}
.yd62_c00001{bottom:331.384600pt;}
.ycf3_c00001{bottom:331.384933pt;}
.y1ce9_c00001{bottom:331.385133pt;}
.y1b21_c00001{bottom:331.385267pt;}
.yd09_c00001{bottom:331.385333pt;}
.ya0b_c00001{bottom:331.385467pt;}
.ya81_c00001{bottom:331.386027pt;}
.yd44_c00001{bottom:331.386067pt;}
.yd23_c00001{bottom:331.386160pt;}
.ya61_c00001{bottom:331.387013pt;}
.ya40_c00001{bottom:331.387160pt;}
.y41a_c00001{bottom:331.586667pt;}
.y8a0_c00001{bottom:331.904000pt;}
.yc6c_c00001{bottom:332.609613pt;}
.ybe3_c00001{bottom:332.610933pt;}
.yc40_c00001{bottom:332.612547pt;}
.yce2_c00001{bottom:332.960000pt;}
.y977_c00001{bottom:333.025600pt;}
.y11f9_c00001{bottom:333.250667pt;}
.y75f_c00001{bottom:333.348000pt;}
.y19c4_c00001{bottom:333.517867pt;}
.ycd0_c00001{bottom:333.629000pt;}
.yc10_c00001{bottom:333.732587pt;}
.y10ae_c00001{bottom:333.945733pt;}
.y1095_c00001{bottom:333.945827pt;}
.y10f0_c00001{bottom:333.945867pt;}
.y110a_c00001{bottom:333.945947pt;}
.y8bf_c00001{bottom:334.145067pt;}
.y253_c00001{bottom:334.147467pt;}
.y12da_c00001{bottom:334.209600pt;}
.y194a_c00001{bottom:334.210267pt;}
.y129c_c00001{bottom:334.210800pt;}
.y12b7_c00001{bottom:334.210960pt;}
.y1285_c00001{bottom:334.212453pt;}
.y12f6_c00001{bottom:334.213333pt;}
.y87f_c00001{bottom:334.307733pt;}
.y11a4_c00001{bottom:334.744107pt;}
.y126c_c00001{bottom:334.745573pt;}
.y1222_c00001{bottom:334.745973pt;}
.y1181_c00001{bottom:334.746240pt;}
.y1132_c00001{bottom:334.748933pt;}
.y1044_c00001{bottom:334.798760pt;}
.y1d1e_c00001{bottom:334.799973pt;}
.y945_c00001{bottom:334.944933pt;}
.y6c1_c00001{bottom:334.948000pt;}
.y331_c00001{bottom:335.133600pt;}
.y263_c00001{bottom:335.134400pt;}
.y1151_c00001{bottom:335.866253pt;}
.y1017_c00001{bottom:336.027360pt;}
.yf89_c00001{bottom:336.027493pt;}
.yf61_c00001{bottom:336.027893pt;}
.ye67_c00001{bottom:336.028347pt;}
.ye84_c00001{bottom:336.028400pt;}
.y1d61_c00001{bottom:336.028960pt;}
.y1e67_c00001{bottom:336.029227pt;}
.yfd3_c00001{bottom:336.029760pt;}
.yea3_c00001{bottom:336.029973pt;}
.yec3_c00001{bottom:336.030027pt;}
.yfb1_c00001{bottom:336.030560pt;}
.y1dd1_c00001{bottom:336.031227pt;}
.y1e09_c00001{bottom:336.031627pt;}
.yeea_c00001{bottom:336.031893pt;}
.y1e39_c00001{bottom:336.032427pt;}
.y1d85_c00001{bottom:336.032693pt;}
.y1eaa_c00001{bottom:336.033760pt;}
.y1070_c00001{bottom:336.034293pt;}
.y85a_c00001{bottom:336.226267pt;}
.y12e_c00001{bottom:336.226667pt;}
.y238_c00001{bottom:336.253333pt;}
.y30e_c00001{bottom:336.253467pt;}
.y240_c00001{bottom:336.253733pt;}
.y317_c00001{bottom:336.254400pt;}
.y31f_c00001{bottom:336.254533pt;}
.y10cc_c00001{bottom:336.345840pt;}
.y137_c00001{bottom:336.480000pt;}
.y144e_c00001{bottom:336.667667pt;}
.y1f33_c00001{bottom:336.667773pt;}
.y1d03_c00001{bottom:336.667787pt;}
.y14cf_c00001{bottom:336.720547pt;}
.yf1d_c00001{bottom:336.720600pt;}
.yf38_c00001{bottom:337.038760pt;}
.yce1_c00001{bottom:337.069333pt;}
.y2ef_c00001{bottom:337.346667pt;}
.yb0a_c00001{bottom:338.052280pt;}
.yd94_c00001{bottom:338.319493pt;}
.y83c_c00001{bottom:338.466400pt;}
.y58f_c00001{bottom:339.106667pt;}
.y1e85_c00001{bottom:339.116067pt;}
.y1c66_c00001{bottom:339.117000pt;}
.yb2_c00001{bottom:339.200133pt;}
.ybc_c00001{bottom:339.200400pt;}
.y1be9_c00001{bottom:339.280440pt;}
.y1bf4_c00001{bottom:339.280533pt;}
.y13be_c00001{bottom:339.280547pt;}
.y1f13_c00001{bottom:339.281280pt;}
.y15f6_c00001{bottom:339.281347pt;}
.y13ca_c00001{bottom:339.281733pt;}
.y1f45_c00001{bottom:339.281813pt;}
.y1eda_c00001{bottom:339.281947pt;}
.y169d_c00001{bottom:339.282280pt;}
.y1c22_c00001{bottom:339.282480pt;}
.y166d_c00001{bottom:339.282547pt;}
.y185d_c00001{bottom:339.282573pt;}
.y1c03_c00001{bottom:339.282680pt;}
.y1c49_c00001{bottom:339.282747pt;}
.y189b_c00001{bottom:339.282840pt;}
.y164d_c00001{bottom:339.282947pt;}
.y1513_c00001{bottom:339.283080pt;}
.y13db_c00001{bottom:339.283213pt;}
.y187a_c00001{bottom:339.283373pt;}
.y1927_c00001{bottom:339.283480pt;}
.y15a6_c00001{bottom:339.283613pt;}
.y17cd_c00001{bottom:339.283880pt;}
.y1462_c00001{bottom:339.284147pt;}
.y141e_c00001{bottom:339.284413pt;}
.y13f9_c00001{bottom:339.284680pt;}
.y14b0_c00001{bottom:339.284813pt;}
.y178d_c00001{bottom:339.284947pt;}
.y157f_c00001{bottom:339.285080pt;}
.y195e_c00001{bottom:339.285213pt;}
.y15c6_c00001{bottom:339.285480pt;}
.y1973_c00001{bottom:339.286013pt;}
.y1713_c00001{bottom:339.286547pt;}
.y173e_c00001{bottom:339.287480pt;}
.yfff_c00001{bottom:339.497360pt;}
.y1e51_c00001{bottom:339.499227pt;}
.yfbd_c00001{bottom:339.499760pt;}
.y1dba_c00001{bottom:339.500160pt;}
.y963_c00001{bottom:340.706267pt;}
.y546_c00001{bottom:340.866667pt;}
.ybb0_c00001{bottom:340.875573pt;}
.yb8c_c00001{bottom:340.878373pt;}
.yb4e_c00001{bottom:340.878400pt;}
.yb31_c00001{bottom:340.879733pt;}
.y570_c00001{bottom:341.186667pt;}
.y119_c00001{bottom:341.187200pt;}
.yde7_c00001{bottom:341.253520pt;}
.y1347_c00001{bottom:341.253573pt;}
.y445_c00001{bottom:341.506667pt;}
.y41_c00001{bottom:341.654667pt;}
.y1a1d_c00001{bottom:341.840400pt;}
.y1a8d_c00001{bottom:341.840733pt;}
.y1a6b_c00001{bottom:341.842733pt;}
.y2fd_c00001{bottom:341.854267pt;}
.y226_c00001{bottom:341.854400pt;}
.yb70_c00001{bottom:341.999627pt;}
.y696_c00001{bottom:342.306933pt;}
.y713_c00001{bottom:342.308000pt;}
.y125_c00001{bottom:342.400000pt;}
.y1684_c00001{bottom:342.750013pt;}
.y15b4_c00001{bottom:342.751480pt;}
.y1965_c00001{bottom:342.752013pt;}
.yc4_c00001{bottom:342.946800pt;}
.y7ba_c00001{bottom:342.947867pt;}
.y1a3c_c00001{bottom:342.962640pt;}
.y46e_c00001{bottom:343.106667pt;}
.y9eb_c00001{bottom:343.745733pt;}
.ya4_c00001{bottom:343.973333pt;}
.y1d45_c00001{bottom:344.609293pt;}
.y1ade_c00001{bottom:344.610227pt;}
.yf_c00001{bottom:344.854667pt;}
.y56_c00001{bottom:345.014667pt;}
.y190_c00001{bottom:345.253467pt;}
.yccf_c00001{bottom:345.468587pt;}
.y19e5_c00001{bottom:345.518467pt;}
.y198e_c00001{bottom:345.518827pt;}
.y19a6_c00001{bottom:345.519333pt;}
.y19fe_c00001{bottom:345.569547pt;}
.y1b3f_c00001{bottom:345.783667pt;}
.yd61_c00001{bottom:345.784600pt;}
.ycf2_c00001{bottom:345.784933pt;}
.y1ce8_c00001{bottom:345.785133pt;}
.y1b20_c00001{bottom:345.785267pt;}
.yd08_c00001{bottom:345.785333pt;}
.ya0a_c00001{bottom:345.785467pt;}
.ya80_c00001{bottom:345.786027pt;}
.yd43_c00001{bottom:345.786067pt;}
.yd22_c00001{bottom:345.786160pt;}
.ya98_c00001{bottom:345.786827pt;}
.ya60_c00001{bottom:345.787013pt;}
.y7f3_c00001{bottom:346.307867pt;}
.y273_c00001{bottom:346.534267pt;}
.y27f_c00001{bottom:346.535067pt;}
.y28b_c00001{bottom:346.535467pt;}
.y297_c00001{bottom:346.536267pt;}
.y2a3_c00001{bottom:346.537067pt;}
.y347_c00001{bottom:346.559733pt;}
.y33e_c00001{bottom:346.560133pt;}
.y4d4_c00001{bottom:346.626667pt;}
.y1d1d_c00001{bottom:346.640080pt;}
.y1aa_c00001{bottom:346.854133pt;}
.y1c4_c00001{bottom:346.855333pt;}
.y1de_c00001{bottom:346.856533pt;}
.y1f8_c00001{bottom:346.857733pt;}
.y20f_c00001{bottom:346.858933pt;}
.y145_c00001{bottom:346.906400pt;}
.yc6b_c00001{bottom:347.009613pt;}
.ybe2_c00001{bottom:347.010933pt;}
.yc3f_c00001{bottom:347.012547pt;}
.y19c3_c00001{bottom:347.970933pt;}
.yc0f_c00001{bottom:348.132587pt;}
.ya3f_c00001{bottom:348.187160pt;}
.y10ad_c00001{bottom:348.345733pt;}
.y1094_c00001{bottom:348.345827pt;}
.y10ef_c00001{bottom:348.345867pt;}
.y15f_c00001{bottom:348.346533pt;}
.y175_c00001{bottom:348.347067pt;}
.y24_c00001{bottom:348.374667pt;}
.y1109_c00001{bottom:348.399013pt;}
.y1da6_c00001{bottom:348.505547pt;}
.y144d_c00001{bottom:348.507773pt;}
.y1f32_c00001{bottom:348.507880pt;}
.y1d02_c00001{bottom:348.507893pt;}
.y14ce_c00001{bottom:348.560653pt;}
.yf1c_c00001{bottom:348.560707pt;}
.y12d9_c00001{bottom:348.609600pt;}
.y1949_c00001{bottom:348.610267pt;}
.y129b_c00001{bottom:348.610800pt;}
.y12b6_c00001{bottom:348.610960pt;}
.y1284_c00001{bottom:348.612453pt;}
.y12f5_c00001{bottom:348.613333pt;}
.yf37_c00001{bottom:348.878867pt;}
.y1806_c00001{bottom:349.038453pt;}
.y136d_c00001{bottom:349.039627pt;}
.y1b9d_c00001{bottom:349.040000pt;}
.y132c_c00001{bottom:349.041467pt;}
.ye0d_c00001{bottom:349.041560pt;}
.ydb4_c00001{bottom:349.041600pt;}
.y1bc8_c00001{bottom:349.090267pt;}
.y1831_c00001{bottom:349.091120pt;}
.y1552_c00001{bottom:349.092427pt;}
.y16d3_c00001{bottom:349.092693pt;}
.y14e7_c00001{bottom:349.092827pt;}
.y18ea_c00001{bottom:349.092960pt;}
.y17bb_c00001{bottom:349.093493pt;}
.y1399_c00001{bottom:349.093760pt;}
.y1c87_c00001{bottom:349.094627pt;}
.ye37_c00001{bottom:349.094760pt;}
.y1629_c00001{bottom:349.094827pt;}
.y1180_c00001{bottom:349.146240pt;}
.y1131_c00001{bottom:349.148400pt;}
.y11a3_c00001{bottom:349.196773pt;}
.y1221_c00001{bottom:349.198107pt;}
.y126b_c00001{bottom:349.198240pt;}
.y779_c00001{bottom:349.506267pt;}
.yb09_c00001{bottom:349.891867pt;}
.yd93_c00001{bottom:350.159600pt;}
.y1150_c00001{bottom:350.266253pt;}
.yf60_c00001{bottom:350.426827pt;}
.y1d60_c00001{bottom:350.427893pt;}
.ye66_c00001{bottom:350.428347pt;}
.ye83_c00001{bottom:350.428400pt;}
.yec2_c00001{bottom:350.428960pt;}
.yfb0_c00001{bottom:350.429493pt;}
.y1016_c00001{bottom:350.480027pt;}
.yf88_c00001{bottom:350.480160pt;}
.y1e66_c00001{bottom:350.481893pt;}
.yfd2_c00001{bottom:350.482427pt;}
.yea2_c00001{bottom:350.482640pt;}
.y1e08_c00001{bottom:350.483760pt;}
.y1dd0_c00001{bottom:350.483893pt;}
.yee9_c00001{bottom:350.484560pt;}
.y1d84_c00001{bottom:350.484827pt;}
.y1e38_c00001{bottom:350.485093pt;}
.y1ea9_c00001{bottom:350.485893pt;}
.y106f_c00001{bottom:350.486427pt;}
.y8fa_c00001{bottom:350.786933pt;}
.y10cb_c00001{bottom:350.798507pt;}
.y1e84_c00001{bottom:350.956173pt;}
.y1c65_c00001{bottom:350.957107pt;}
.y9c9_c00001{bottom:351.426133pt;}
.yde6_c00001{bottom:351.492067pt;}
.y1346_c00001{bottom:351.493160pt;}
.y87e_c00001{bottom:351.587467pt;}
.y262_c00001{bottom:352.001067pt;}
.y330_c00001{bottom:352.026800pt;}
.y8be_c00001{bottom:352.545067pt;}
.y1bb6_c00001{bottom:352.555333pt;}
.y1820_c00001{bottom:352.559387pt;}
.y16c2_c00001{bottom:352.559760pt;}
.y1387_c00001{bottom:352.560293pt;}
.ye25_c00001{bottom:352.561160pt;}
.y1617_c00001{bottom:352.561360pt;}
.y252_c00001{bottom:352.866800pt;}
.y8df_c00001{bottom:353.186667pt;}
.y73b_c00001{bottom:353.505733pt;}
.y1be8_c00001{bottom:353.680440pt;}
.y1bf3_c00001{bottom:353.680533pt;}
.y13bd_c00001{bottom:353.680547pt;}
.y1f12_c00001{bottom:353.681280pt;}
.y15f5_c00001{bottom:353.681347pt;}
.y13c9_c00001{bottom:353.681733pt;}
.y1f44_c00001{bottom:353.681813pt;}
.y1ed9_c00001{bottom:353.681947pt;}
.y169c_c00001{bottom:353.682280pt;}
.y1c21_c00001{bottom:353.682480pt;}
.y166c_c00001{bottom:353.682547pt;}
.y185c_c00001{bottom:353.682573pt;}
.y1c02_c00001{bottom:353.682680pt;}
.y1c48_c00001{bottom:353.682747pt;}
.y189a_c00001{bottom:353.682840pt;}
.y164c_c00001{bottom:353.682947pt;}
.y1512_c00001{bottom:353.683080pt;}
.y13da_c00001{bottom:353.683213pt;}
.y1879_c00001{bottom:353.683373pt;}
.y1926_c00001{bottom:353.683480pt;}
.y15a5_c00001{bottom:353.683613pt;}
.y17cc_c00001{bottom:353.683880pt;}
.y1461_c00001{bottom:353.684147pt;}
.y141d_c00001{bottom:353.684413pt;}
.y16ee_c00001{bottom:353.684547pt;}
.y13f8_c00001{bottom:353.684680pt;}
.y14af_c00001{bottom:353.684813pt;}
.y15c5_c00001{bottom:353.684947pt;}
.y157e_c00001{bottom:353.685080pt;}
.y195d_c00001{bottom:353.685213pt;}
.y173d_c00001{bottom:353.685880pt;}
.y1972_c00001{bottom:353.686013pt;}
.y1712_c00001{bottom:353.686547pt;}
.y7a_c00001{bottom:354.134667pt;}
.y97_c00001{bottom:354.147467pt;}
.yb8b_c00001{bottom:355.278373pt;}
.yb4d_c00001{bottom:355.278400pt;}
.yb30_c00001{bottom:355.279733pt;}
.ybaf_c00001{bottom:355.328640pt;}
.ydf_c00001{bottom:355.359867pt;}
.ye6_c00001{bottom:355.360800pt;}
.yef_c00001{bottom:355.361067pt;}
.yf9_c00001{bottom:355.361200pt;}
.y103_c00001{bottom:355.361333pt;}
.y10d_c00001{bottom:355.361867pt;}
.y5e7_c00001{bottom:355.586667pt;}
.y859_c00001{bottom:355.746000pt;}
.y944_c00001{bottom:356.065200pt;}
.y817_c00001{bottom:356.067467pt;}
.y1a1c_c00001{bottom:356.240400pt;}
.y1a6a_c00001{bottom:356.242733pt;}
.y1a8c_c00001{bottom:356.293400pt;}
.yb6f_c00001{bottom:356.399627pt;}
.y1d44_c00001{bottom:356.449400pt;}
.y1add_c00001{bottom:356.450333pt;}
.y8f_c00001{bottom:357.014667pt;}
.y1ec2_c00001{bottom:357.149813pt;}
.y1683_c00001{bottom:357.150013pt;}
.y15b3_c00001{bottom:357.151480pt;}
.y1915_c00001{bottom:357.152013pt;}
.y1a3b_c00001{bottom:357.362640pt;}
.y5bf_c00001{bottom:357.666667pt;}
.y1cbb_c00001{bottom:357.972000pt;}
.y83b_c00001{bottom:358.146133pt;}
.y75e_c00001{bottom:358.307867pt;}
.y1043_c00001{bottom:358.479027pt;}
.y1d1c_c00001{bottom:358.480187pt;}
.y11e3_c00001{bottom:359.010507pt;}
.y40_c00001{bottom:359.574667pt;}
.y6e9_c00001{bottom:359.906533pt;}
.yd2_c00001{bottom:359.906667pt;}
.y19c2_c00001{bottom:359.970933pt;}
.y198d_c00001{bottom:359.970960pt;}
.ycf1_c00001{bottom:360.184933pt;}
.y1b1f_c00001{bottom:360.185267pt;}
.yd07_c00001{bottom:360.185333pt;}
.ya09_c00001{bottom:360.185467pt;}
.yd42_c00001{bottom:360.186067pt;}
.ya5f_c00001{bottom:360.187013pt;}
.y1b3e_c00001{bottom:360.236333pt;}
.yd60_c00001{bottom:360.237667pt;}
.y1ce7_c00001{bottom:360.238200pt;}
.ya7f_c00001{bottom:360.238693pt;}
.yd21_c00001{bottom:360.238827pt;}
.y1ef7_c00001{bottom:360.345547pt;}
.y1da5_c00001{bottom:360.345653pt;}
.y144c_c00001{bottom:360.347880pt;}
.y1f31_c00001{bottom:360.347987pt;}
.y1d01_c00001{bottom:360.348000pt;}
.y14cd_c00001{bottom:360.400240pt;}
.y2c7_c00001{bottom:360.413333pt;}
.y976_c00001{bottom:360.706267pt;}
.yf36_c00001{bottom:360.718453pt;}
.yc6a_c00001{bottom:361.409613pt;}
.ybe1_c00001{bottom:361.410933pt;}
.yc3e_c00001{bottom:361.411480pt;}
.y712_c00001{bottom:361.508000pt;}
.y962_c00001{bottom:361.826000pt;}
.ye_c00001{bottom:362.454667pt;}
.yc0e_c00001{bottom:362.532587pt;}
.ya3e_c00001{bottom:362.640227pt;}
.y55_c00001{bottom:362.774667pt;}
.y10ac_c00001{bottom:362.798400pt;}
.y1093_c00001{bottom:362.798493pt;}
.y10ee_c00001{bottom:362.798533pt;}
.y1108_c00001{bottom:362.799013pt;}
.y12d8_c00001{bottom:363.009600pt;}
.y129a_c00001{bottom:363.010800pt;}
.yde5_c00001{bottom:363.011853pt;}
.y1283_c00001{bottom:363.012453pt;}
.y1345_c00001{bottom:363.013467pt;}
.y1948_c00001{bottom:363.063333pt;}
.y177b_c00001{bottom:363.063867pt;}
.y12b5_c00001{bottom:363.066160pt;}
.y12f4_c00001{bottom:363.066400pt;}
.y491_c00001{bottom:363.106667pt;}
.y11a2_c00001{bottom:363.596773pt;}
.y1220_c00001{bottom:363.598107pt;}
.y126a_c00001{bottom:363.598240pt;}
.y117f_c00001{bottom:363.598907pt;}
.y1130_c00001{bottom:363.601467pt;}
.y300_c00001{bottom:364.614267pt;}
.y229_c00001{bottom:364.614400pt;}
.y114f_c00001{bottom:364.719320pt;}
.yf5f_c00001{bottom:364.879893pt;}
.y1015_c00001{bottom:364.880027pt;}
.yf87_c00001{bottom:364.880160pt;}
.y1d5f_c00001{bottom:364.880960pt;}
.ye82_c00001{bottom:364.881067pt;}
.ye65_c00001{bottom:364.881413pt;}
.y1e65_c00001{bottom:364.881893pt;}
.yec1_c00001{bottom:364.882027pt;}
.yfd1_c00001{bottom:364.882427pt;}
.yfaf_c00001{bottom:364.882560pt;}
.yea1_c00001{bottom:364.882640pt;}
.y1e07_c00001{bottom:364.883760pt;}
.y1dcf_c00001{bottom:364.883893pt;}
.yee8_c00001{bottom:364.884560pt;}
.y1d83_c00001{bottom:364.884827pt;}
.y1e37_c00001{bottom:364.885093pt;}
.y1ea8_c00001{bottom:364.885893pt;}
.y106e_c00001{bottom:364.886427pt;}
.yf3a_c00001{bottom:365.172000pt;}
.y10ca_c00001{bottom:365.198507pt;}
.y23_c00001{bottom:365.974667pt;}
.yc96_c00001{bottom:365.999200pt;}
.ycbc_c00001{bottom:366.001253pt;}
.yca8_c00001{bottom:366.052320pt;}
.ycce_c00001{bottom:366.054053pt;}
.y7b9_c00001{bottom:367.907733pt;}
.y1be7_c00001{bottom:368.080440pt;}
.y1bf2_c00001{bottom:368.080533pt;}
.y13bc_c00001{bottom:368.080547pt;}
.y13c8_c00001{bottom:368.081733pt;}
.y1c20_c00001{bottom:368.082480pt;}
.y166b_c00001{bottom:368.082547pt;}
.y1878_c00001{bottom:368.083373pt;}
.y15a4_c00001{bottom:368.083613pt;}
.y1460_c00001{bottom:368.084147pt;}
.y13f7_c00001{bottom:368.084680pt;}
.y195c_c00001{bottom:368.085213pt;}
.y15f4_c00001{bottom:368.134013pt;}
.y185b_c00001{bottom:368.135240pt;}
.y13d9_c00001{bottom:368.135347pt;}
.y1899_c00001{bottom:368.135507pt;}
.y164b_c00001{bottom:368.135613pt;}
.y1511_c00001{bottom:368.136147pt;}
.y1f11_c00001{bottom:368.136480pt;}
.y17cb_c00001{bottom:368.136547pt;}
.y18c7_c00001{bottom:368.136947pt;}
.y1f43_c00001{bottom:368.137013pt;}
.y141c_c00001{bottom:368.137080pt;}
.y1ed8_c00001{bottom:368.137147pt;}
.y1486_c00001{bottom:368.137480pt;}
.y1c47_c00001{bottom:368.137947pt;}
.y15c4_c00001{bottom:368.138013pt;}
.y157d_c00001{bottom:368.138147pt;}
.y173c_c00001{bottom:368.138547pt;}
.y1971_c00001{bottom:368.138680pt;}
.y1711_c00001{bottom:368.139213pt;}
.y16ed_c00001{bottom:368.139747pt;}
.y1e83_c00001{bottom:368.289507pt;}
.y1c64_c00001{bottom:368.290440pt;}
.y87d_c00001{bottom:368.707733pt;}
.y146_c00001{bottom:368.826667pt;}
.y191_c00001{bottom:369.146667pt;}
.y79_c00001{bottom:369.174667pt;}
.ybae_c00001{bottom:369.728640pt;}
.yb8a_c00001{bottom:369.731040pt;}
.yb4c_c00001{bottom:369.731467pt;}
.yb2f_c00001{bottom:369.732400pt;}
.y55e_c00001{bottom:370.306667pt;}
.y160_c00001{bottom:370.306933pt;}
.y1042_c00001{bottom:370.319133pt;}
.yb07_c00001{bottom:370.478533pt;}
.yaf6_c00001{bottom:370.478933pt;}
.yac1_c00001{bottom:370.481067pt;}
.y1a8b_c00001{bottom:370.693400pt;}
.y1a1b_c00001{bottom:370.693467pt;}
.y1a69_c00001{bottom:370.695800pt;}
.y91f_c00001{bottom:370.786667pt;}
.y1ab_c00001{bottom:370.787467pt;}
.y1c5_c00001{bottom:370.788667pt;}
.y1df_c00001{bottom:370.789867pt;}
.y1f9_c00001{bottom:370.791067pt;}
.y210_c00001{bottom:370.792267pt;}
.y1bc7_c00001{bottom:370.796533pt;}
.y1805_c00001{bottom:370.798320pt;}
.y136c_c00001{bottom:370.798427pt;}
.y1830_c00001{bottom:370.799520pt;}
.yd92_c00001{bottom:370.799733pt;}
.y1b9c_c00001{bottom:370.799867pt;}
.y1551_c00001{bottom:370.800293pt;}
.y16d2_c00001{bottom:370.800560pt;}
.y14e6_c00001{bottom:370.800693pt;}
.y132b_c00001{bottom:370.800800pt;}
.y18e9_c00001{bottom:370.800827pt;}
.y17ba_c00001{bottom:370.801360pt;}
.ye0c_c00001{bottom:370.801427pt;}
.ydb3_c00001{bottom:370.801467pt;}
.y1398_c00001{bottom:370.801627pt;}
.y1c86_c00001{bottom:370.801960pt;}
.ye36_c00001{bottom:370.802627pt;}
.y1628_c00001{bottom:370.802693pt;}
.y11e2_c00001{bottom:370.850093pt;}
.y9ea_c00001{bottom:371.265467pt;}
.yae3_c00001{bottom:371.599733pt;}
.y1682_c00001{bottom:371.602680pt;}
.y1900_c00001{bottom:371.603613pt;}
.y1470_c00001{bottom:371.604147pt;}
.y178c_c00001{bottom:371.604680pt;}
.y1704_c00001{bottom:371.605213pt;}
.y1a3a_c00001{bottom:371.815707pt;}
.y130e_c00001{bottom:371.919467pt;}
.y8e_c00001{bottom:372.054667pt;}
.y39a_c00001{bottom:372.066667pt;}
.yb6e_c00001{bottom:372.132427pt;}
.y1ef6_c00001{bottom:372.185653pt;}
.y1da4_c00001{bottom:372.185760pt;}
.y1540_c00001{bottom:372.185947pt;}
.y144b_c00001{bottom:372.187987pt;}
.y1f30_c00001{bottom:372.188093pt;}
.y1d00_c00001{bottom:372.188107pt;}
.y695_c00001{bottom:372.226267pt;}
.y6c0_c00001{bottom:372.226667pt;}
.yf1b_c00001{bottom:372.240440pt;}
.y123c_c00001{bottom:372.398013pt;}
.yf35_c00001{bottom:372.558560pt;}
.y96_c00001{bottom:372.866800pt;}
.yde4_c00001{bottom:373.199360pt;}
.y1344_c00001{bottom:373.200973pt;}
.y50c_c00001{bottom:374.148000pt;}
.y181f_c00001{bottom:374.267253pt;}
.y16c1_c00001{bottom:374.267627pt;}
.y1386_c00001{bottom:374.268160pt;}
.y1616_c00001{bottom:374.269227pt;}
.y19fd_c00001{bottom:374.369547pt;}
.y19c1_c00001{bottom:374.370933pt;}
.y198c_c00001{bottom:374.370960pt;}
.y19e4_c00001{bottom:374.371133pt;}
.y19a5_c00001{bottom:374.372000pt;}
.y1b3d_c00001{bottom:374.636333pt;}
.ycf0_c00001{bottom:374.637600pt;}
.yd5f_c00001{bottom:374.637667pt;}
.y1b1e_c00001{bottom:374.637933pt;}
.yd06_c00001{bottom:374.638000pt;}
.ya08_c00001{bottom:374.638133pt;}
.y1ce6_c00001{bottom:374.638200pt;}
.ya7e_c00001{bottom:374.638693pt;}
.yd41_c00001{bottom:374.638733pt;}
.yd20_c00001{bottom:374.638827pt;}
.ya5e_c00001{bottom:374.639680pt;}
.y858_c00001{bottom:375.265333pt;}
.ya97_c00001{bottom:375.758160pt;}
.ybe0_c00001{bottom:375.810933pt;}
.yc3d_c00001{bottom:375.811480pt;}
.yc69_c00001{bottom:375.862280pt;}
.y239_c00001{bottom:375.866933pt;}
.y30f_c00001{bottom:375.867067pt;}
.y241_c00001{bottom:375.867333pt;}
.y24b_c00001{bottom:375.867600pt;}
.y318_c00001{bottom:375.868000pt;}
.y320_c00001{bottom:375.868133pt;}
.y73a_c00001{bottom:375.905733pt;}
.y418_c00001{bottom:376.066667pt;}
.y7f2_c00001{bottom:376.387067pt;}
.y265_c00001{bottom:376.454267pt;}
.y333_c00001{bottom:376.480000pt;}
.y997_c00001{bottom:376.867733pt;}
.yc0d_c00001{bottom:376.986187pt;}
.ya3d_c00001{bottom:377.040227pt;}
.y943_c00001{bottom:377.185467pt;}
.y1092_c00001{bottom:377.198493pt;}
.y10c9_c00001{bottom:377.198507pt;}
.y1947_c00001{bottom:377.461733pt;}
.y177a_c00001{bottom:377.462267pt;}
.y12d7_c00001{bottom:377.464800pt;}
.y1299_c00001{bottom:377.466000pt;}
.y12b4_c00001{bottom:377.466160pt;}
.y1282_c00001{bottom:377.467120pt;}
.y11a1_c00001{bottom:377.996773pt;}
.y121f_c00001{bottom:377.998107pt;}
.y1269_c00001{bottom:377.998240pt;}
.y117e_c00001{bottom:377.998907pt;}
.y112f_c00001{bottom:378.001467pt;}
.y8f9_c00001{bottom:378.308267pt;}
.y83a_c00001{bottom:378.466400pt;}
.ye64_c00001{bottom:378.800747pt;}
.yea0_c00001{bottom:378.802373pt;}
.y9c8_c00001{bottom:379.106400pt;}
.y114e_c00001{bottom:379.119320pt;}
.y711_c00001{bottom:379.427733pt;}
.y1e82_c00001{bottom:380.129093pt;}
.y1d43_c00001{bottom:380.129133pt;}
.y1c63_c00001{bottom:380.130027pt;}
.y1adc_c00001{bottom:380.130067pt;}
.yc95_c00001{bottom:380.452267pt;}
.yca7_c00001{bottom:380.452320pt;}
.ycbb_c00001{bottom:380.453920pt;}
.yccd_c00001{bottom:380.454053pt;}
.y8de_c00001{bottom:380.708000pt;}
.y816_c00001{bottom:381.027867pt;}
.y2ff_c00001{bottom:381.467867pt;}
.y228_c00001{bottom:381.468000pt;}
.y1cba_c00001{bottom:381.600000pt;}
.y1d1b_c00001{bottom:382.107787pt;}
.y1be6_c00001{bottom:382.533107pt;}
.y13bb_c00001{bottom:382.533213pt;}
.y1bf1_c00001{bottom:382.533600pt;}
.y1f10_c00001{bottom:382.533813pt;}
.y15f3_c00001{bottom:382.534013pt;}
.y1f42_c00001{bottom:382.534347pt;}
.y13c7_c00001{bottom:382.534400pt;}
.y1ed7_c00001{bottom:382.534480pt;}
.y1c1f_c00001{bottom:382.534613pt;}
.y169b_c00001{bottom:382.534813pt;}
.y166a_c00001{bottom:382.535213pt;}
.y185a_c00001{bottom:382.535240pt;}
.y13d8_c00001{bottom:382.535347pt;}
.y1898_c00001{bottom:382.535507pt;}
.y164a_c00001{bottom:382.535613pt;}
.y1510_c00001{bottom:382.536147pt;}
.y15a3_c00001{bottom:382.536280pt;}
.y1877_c00001{bottom:382.536440pt;}
.y17ca_c00001{bottom:382.536547pt;}
.y145f_c00001{bottom:382.536813pt;}
.y18c6_c00001{bottom:382.536947pt;}
.y141b_c00001{bottom:382.537080pt;}
.y13f6_c00001{bottom:382.537347pt;}
.y1c46_c00001{bottom:382.537413pt;}
.y1485_c00001{bottom:382.537480pt;}
.y195b_c00001{bottom:382.537880pt;}
.y15c3_c00001{bottom:382.538013pt;}
.y157c_c00001{bottom:382.538147pt;}
.y173b_c00001{bottom:382.538547pt;}
.y1970_c00001{bottom:382.538680pt;}
.y1710_c00001{bottom:382.539213pt;}
.y11f7_c00001{bottom:382.690213pt;}
.y961_c00001{bottom:382.946267pt;}
.y75d_c00001{bottom:383.107867pt;}
.y654_c00001{bottom:383.426667pt;}
.y588_c00001{bottom:383.586667pt;}
.yf49_c00001{bottom:383.730667pt;}
.y1da3_c00001{bottom:384.025347pt;}
.y153f_c00001{bottom:384.025533pt;}
.y1ef5_c00001{bottom:384.025760pt;}
.y144a_c00001{bottom:384.027573pt;}
.y1f2f_c00001{bottom:384.027680pt;}
.y14cc_c00001{bottom:384.080507pt;}
.yf1a_c00001{bottom:384.080547pt;}
.ybad_c00001{bottom:384.128107pt;}
.yb89_c00001{bottom:384.131040pt;}
.yb4b_c00001{bottom:384.131467pt;}
.yb2e_c00001{bottom:384.132400pt;}
.yb6d_c00001{bottom:384.132427pt;}
.y78_c00001{bottom:384.214667pt;}
.y123b_c00001{bottom:384.237600pt;}
.yf34_c00001{bottom:384.398147pt;}
.y1a39_c00001{bottom:384.615707pt;}
.yde3_c00001{bottom:384.719667pt;}
.y1343_c00001{bottom:384.720760pt;}
.yb06_c00001{bottom:384.878533pt;}
.yaf5_c00001{bottom:384.878933pt;}
.yac0_c00001{bottom:384.880533pt;}
.yacb_c00001{bottom:384.881067pt;}
.ybca_c00001{bottom:385.250773pt;}
.y545_c00001{bottom:385.348000pt;}
.y56f_c00001{bottom:385.666667pt;}
.yae2_c00001{bottom:385.999733pt;}
.y1681_c00001{bottom:386.002680pt;}
.y15b2_c00001{bottom:386.004147pt;}
.y1964_c00001{bottom:386.004680pt;}
.yb3_c00001{bottom:386.400133pt;}
.ybd_c00001{bottom:386.400400pt;}
.yf5e_c00001{bottom:386.587760pt;}
.ye81_c00001{bottom:386.588400pt;}
.y1d5e_c00001{bottom:386.588827pt;}
.yec0_c00001{bottom:386.589893pt;}
.yfae_c00001{bottom:386.590427pt;}
.y1014_c00001{bottom:386.639893pt;}
.yf86_c00001{bottom:386.640027pt;}
.y1e64_c00001{bottom:386.641760pt;}
.yfd0_c00001{bottom:386.642293pt;}
.y1dce_c00001{bottom:386.643760pt;}
.y1e06_c00001{bottom:386.644160pt;}
.yee7_c00001{bottom:386.644427pt;}
.y1e36_c00001{bottom:386.644960pt;}
.y1d82_c00001{bottom:386.645227pt;}
.y1ea7_c00001{bottom:386.646293pt;}
.y106d_c00001{bottom:386.646827pt;}
.y636_c00001{bottom:386.948000pt;}
.y8d_c00001{bottom:387.094667pt;}
.y8bd_c00001{bottom:387.105467pt;}
.y3c6_c00001{bottom:387.266667pt;}
.yf48_c00001{bottom:387.840000pt;}
.y274_c00001{bottom:387.841067pt;}
.y280_c00001{bottom:387.841867pt;}
.y28c_c00001{bottom:387.842267pt;}
.y298_c00001{bottom:387.843067pt;}
.y2a4_c00001{bottom:387.843867pt;}
.y348_c00001{bottom:387.866533pt;}
.y33f_c00001{bottom:387.866933pt;}
.y87c_c00001{bottom:387.907733pt;}
.y975_c00001{bottom:388.225600pt;}
.y19fc_c00001{bottom:388.769547pt;}
.y198b_c00001{bottom:388.770960pt;}
.y19e3_c00001{bottom:388.771133pt;}
.y19a4_c00001{bottom:388.772000pt;}
.ye63_c00001{bottom:388.988253pt;}
.ycef_c00001{bottom:389.037600pt;}
.ya07_c00001{bottom:389.038133pt;}
.ya7d_c00001{bottom:389.038693pt;}
.yd1f_c00001{bottom:389.038827pt;}
.ya5d_c00001{bottom:389.039680pt;}
.ye9f_c00001{bottom:389.042480pt;}
.y351_c00001{bottom:389.146667pt;}
.y19c0_c00001{bottom:389.890267pt;}
.yff7_c00001{bottom:390.109627pt;}
.yf6b_c00001{bottom:390.110693pt;}
.y1d6b_c00001{bottom:390.111760pt;}
.yfba_c00001{bottom:390.112293pt;}
.yecd_c00001{bottom:390.112827pt;}
.y1056_c00001{bottom:390.113360pt;}
.yc68_c00001{bottom:390.261747pt;}
.yc3c_c00001{bottom:390.264147pt;}
.ybdf_c00001{bottom:390.266133pt;}
.yc3_c00001{bottom:390.306667pt;}
.y147_c00001{bottom:390.786533pt;}
.ya6_c00001{bottom:391.173333pt;}
.yc0c_c00001{bottom:391.386187pt;}
.ya3c_c00001{bottom:391.440227pt;}
.yc6_c00001{bottom:391.520000pt;}
.y10ab_c00001{bottom:391.598400pt;}
.y1091_c00001{bottom:391.598493pt;}
.y10c8_c00001{bottom:391.598507pt;}
.y10ed_c00001{bottom:391.598533pt;}
.y1107_c00001{bottom:391.599013pt;}
.y377_c00001{bottom:391.679867pt;}
.y6bf_c00001{bottom:391.748000pt;}
.y1946_c00001{bottom:391.861733pt;}
.y1779_c00001{bottom:391.862267pt;}
.y12d6_c00001{bottom:391.864800pt;}
.y1298_c00001{bottom:391.866000pt;}
.y12b3_c00001{bottom:391.866160pt;}
.y1281_c00001{bottom:391.867120pt;}
.y1d42_c00001{bottom:391.969240pt;}
.y1adb_c00001{bottom:391.970173pt;}
.y161_c00001{bottom:392.253333pt;}
.y176_c00001{bottom:392.253867pt;}
.y11a0_c00001{bottom:392.396773pt;}
.y121e_c00001{bottom:392.398107pt;}
.y1268_c00001{bottom:392.398240pt;}
.y117d_c00001{bottom:392.398907pt;}
.y1a1a_c00001{bottom:392.400800pt;}
.y112e_c00001{bottom:392.401467pt;}
.y1a68_c00001{bottom:392.404200pt;}
.y1bc6_c00001{bottom:392.555867pt;}
.y1804_c00001{bottom:392.558187pt;}
.y136b_c00001{bottom:392.558293pt;}
.y182f_c00001{bottom:392.558320pt;}
.yd91_c00001{bottom:392.559067pt;}
.y130d_c00001{bottom:392.559600pt;}
.y1b9b_c00001{bottom:392.559733pt;}
.y132a_c00001{bottom:392.560133pt;}
.y1550_c00001{bottom:392.560160pt;}
.y16d1_c00001{bottom:392.560427pt;}
.y14e5_c00001{bottom:392.560560pt;}
.y18e8_c00001{bottom:392.560693pt;}
.y17b9_c00001{bottom:392.561227pt;}
.ye0b_c00001{bottom:392.561293pt;}
.ydb2_c00001{bottom:392.561333pt;}
.y1397_c00001{bottom:392.561493pt;}
.y1c85_c00001{bottom:392.562360pt;}
.y1627_c00001{bottom:392.562560pt;}
.ye35_c00001{bottom:392.563027pt;}
.y778_c00001{bottom:392.866667pt;}
.y192_c00001{bottom:393.094000pt;}
.y264_c00001{bottom:393.307867pt;}
.y332_c00001{bottom:393.347200pt;}
.y114d_c00001{bottom:393.519320pt;}
.y1041_c00001{bottom:393.838867pt;}
.y1d1a_c00001{bottom:393.947893pt;}
.y358_c00001{bottom:394.333467pt;}
.y35e_c00001{bottom:394.333733pt;}
.y362_c00001{bottom:394.333867pt;}
.y36d_c00001{bottom:394.334133pt;}
.y374_c00001{bottom:394.334400pt;}
.y11f6_c00001{bottom:394.530320pt;}
.y11e1_c00001{bottom:394.530360pt;}
.y1ac_c00001{bottom:394.694267pt;}
.y1c6_c00001{bottom:394.695467pt;}
.y1e0_c00001{bottom:394.696667pt;}
.y1fa_c00001{bottom:394.697867pt;}
.y211_c00001{bottom:394.699067pt;}
.y857_c00001{bottom:394.785067pt;}
.y1a38_c00001{bottom:394.803213pt;}
.yde2_c00001{bottom:394.959773pt;}
.y1342_c00001{bottom:394.959827pt;}
.y3f_c00001{bottom:395.414667pt;}
.yc83_c00001{bottom:395.493760pt;}
.y1da2_c00001{bottom:395.865453pt;}
.y153e_c00001{bottom:395.865640pt;}
.y1ef4_c00001{bottom:395.865867pt;}
.y1449_c00001{bottom:395.867680pt;}
.y1cff_c00001{bottom:395.867840pt;}
.y14cb_c00001{bottom:395.868000pt;}
.y17ab_c00001{bottom:396.028293pt;}
.y1be5_c00001{bottom:396.452840pt;}
.y1c01_c00001{bottom:396.455080pt;}
.y13ba_c00001{bottom:396.933213pt;}
.y15f2_c00001{bottom:396.934013pt;}
.y13c6_c00001{bottom:396.934400pt;}
.y169a_c00001{bottom:396.934813pt;}
.y1669_c00001{bottom:396.935213pt;}
.y1859_c00001{bottom:396.935240pt;}
.y13d7_c00001{bottom:396.935347pt;}
.y1897_c00001{bottom:396.935507pt;}
.y150f_c00001{bottom:396.936147pt;}
.y15a2_c00001{bottom:396.936280pt;}
.y1876_c00001{bottom:396.936440pt;}
.y17c9_c00001{bottom:396.936547pt;}
.y145e_c00001{bottom:396.936813pt;}
.y18c5_c00001{bottom:396.936947pt;}
.y141a_c00001{bottom:396.937080pt;}
.y13f5_c00001{bottom:396.937347pt;}
.y1484_c00001{bottom:396.937480pt;}
.y195a_c00001{bottom:396.937880pt;}
.y15c2_c00001{bottom:396.938013pt;}
.y157b_c00001{bottom:396.938147pt;}
.y173a_c00001{bottom:396.938547pt;}
.y196f_c00001{bottom:396.938680pt;}
.y170f_c00001{bottom:396.939213pt;}
.y694_c00001{bottom:397.026800pt;}
.y710_c00001{bottom:397.667867pt;}
.y7b8_c00001{bottom:397.827067pt;}
.y54_c00001{bottom:398.294667pt;}
.y739_c00001{bottom:398.305733pt;}
.y6e8_c00001{bottom:398.465333pt;}
.ybac_c00001{bottom:398.528107pt;}
.yb88_c00001{bottom:398.531040pt;}
.yb2d_c00001{bottom:398.532400pt;}
.y9e9_c00001{bottom:398.945733pt;}
.y77_c00001{bottom:399.254667pt;}
.yb05_c00001{bottom:399.278533pt;}
.yaf4_c00001{bottom:399.278933pt;}
.yabf_c00001{bottom:399.280533pt;}
.yaca_c00001{bottom:399.281067pt;}
.y9af_c00001{bottom:399.586667pt;}
.ybc9_c00001{bottom:399.650773pt;}
.yb6c_c00001{bottom:399.652160pt;}
.y996_c00001{bottom:399.907333pt;}
.y5cb_c00001{bottom:400.066667pt;}
.y251_c00001{bottom:400.226667pt;}
.yae1_c00001{bottom:400.399733pt;}
.y1680_c00001{bottom:400.402680pt;}
.y15b1_c00001{bottom:400.404147pt;}
.y1963_c00001{bottom:400.404680pt;}
.y1703_c00001{bottom:400.405213pt;}
.ye62_c00001{bottom:400.560653pt;}
.ye9e_c00001{bottom:400.562267pt;}
.y442_c00001{bottom:400.706667pt;}
.y7f1_c00001{bottom:401.187067pt;}
.y254_c00001{bottom:401.440000pt;}
.yf33_c00001{bottom:401.890813pt;}
.yf2a_c00001{bottom:401.890827pt;}
.y8c_c00001{bottom:402.134667pt;}
.y5be_c00001{bottom:402.306667pt;}
.yf30_c00001{bottom:403.010547pt;}
.y19fb_c00001{bottom:403.224747pt;}
.y19bf_c00001{bottom:403.225733pt;}
.y19e2_c00001{bottom:403.226333pt;}
.y19a3_c00001{bottom:403.226667pt;}
.y1b3c_c00001{bottom:403.436333pt;}
.ycee_c00001{bottom:403.437600pt;}
.yd5e_c00001{bottom:403.437667pt;}
.y1b1d_c00001{bottom:403.437933pt;}
.yd05_c00001{bottom:403.438000pt;}
.ya06_c00001{bottom:403.438133pt;}
.y1ce5_c00001{bottom:403.438200pt;}
.ya7c_c00001{bottom:403.438693pt;}
.yd40_c00001{bottom:403.438733pt;}
.yd1e_c00001{bottom:403.438827pt;}
.ya5c_c00001{bottom:403.439680pt;}
.y1e81_c00001{bottom:403.809360pt;}
.y1c62_c00001{bottom:403.810293pt;}
.y22b_c00001{bottom:404.187867pt;}
.y960_c00001{bottom:404.226000pt;}
.y839_c00001{bottom:404.226267pt;}
.y302_c00001{bottom:404.227867pt;}
.y198a_c00001{bottom:404.290693pt;}
.y1bf0_c00001{bottom:404.293467pt;}
.y1f0f_c00001{bottom:404.293680pt;}
.y1ed6_c00001{bottom:404.293813pt;}
.y1f41_c00001{bottom:404.294213pt;}
.y1c1e_c00001{bottom:404.295013pt;}
.y1c45_c00001{bottom:404.297280pt;}
.yc67_c00001{bottom:404.661747pt;}
.yc3b_c00001{bottom:404.664147pt;}
.ybde_c00001{bottom:404.666133pt;}
.y1cb8_c00001{bottom:405.266667pt;}
.ye7_c00001{bottom:405.280133pt;}
.yf0_c00001{bottom:405.280800pt;}
.yfa_c00001{bottom:405.280933pt;}
.y104_c00001{bottom:405.281067pt;}
.y10e_c00001{bottom:405.281600pt;}
.y1040_c00001{bottom:405.678973pt;}
.yc0b_c00001{bottom:405.786187pt;}
.y8f8_c00001{bottom:405.828000pt;}
.ya3b_c00001{bottom:405.840227pt;}
.y10aa_c00001{bottom:405.998400pt;}
.y1090_c00001{bottom:405.998493pt;}
.y10ec_c00001{bottom:405.998533pt;}
.y1106_c00001{bottom:406.051680pt;}
.y12b2_c00001{bottom:406.266160pt;}
.y1280_c00001{bottom:406.267120pt;}
.y114c_c00001{bottom:406.319320pt;}
.y11e0_c00001{bottom:406.370467pt;}
.y75c_c00001{bottom:406.467733pt;}
.yde1_c00001{bottom:406.479560pt;}
.y1341_c00001{bottom:406.479613pt;}
.y9c7_c00001{bottom:406.626133pt;}
.y1be4_c00001{bottom:406.692947pt;}
.y1c00_c00001{bottom:406.695187pt;}
.y1a19_c00001{bottom:406.800800pt;}
.y1a67_c00001{bottom:406.803667pt;}
.y1a8a_c00001{bottom:406.853800pt;}
.y10c7_c00001{bottom:407.170907pt;}
.y815_c00001{bottom:407.268000pt;}
.yf19_c00001{bottom:407.600813pt;}
.y1da1_c00001{bottom:407.650347pt;}
.y153d_c00001{bottom:407.650533pt;}
.y1ef3_c00001{bottom:407.650760pt;}
.y1cfe_c00001{bottom:407.707947pt;}
.y1c2b_c00001{bottom:407.761813pt;}
.y123a_c00001{bottom:407.917867pt;}
.y1a37_c00001{bottom:407.977173pt;}
.y1adf_c00001{bottom:408.212000pt;}
.y8dd_c00001{bottom:408.227733pt;}
.yf5d_c00001{bottom:408.347627pt;}
.y1013_c00001{bottom:408.347760pt;}
.yf85_c00001{bottom:408.347893pt;}
.ye80_c00001{bottom:408.348267pt;}
.y1d5d_c00001{bottom:408.348693pt;}
.y1e63_c00001{bottom:408.349627pt;}
.yebf_c00001{bottom:408.349760pt;}
.yfcf_c00001{bottom:408.350160pt;}
.yfad_c00001{bottom:408.350293pt;}
.y1e05_c00001{bottom:408.351493pt;}
.y1dcd_c00001{bottom:408.351627pt;}
.yee6_c00001{bottom:408.352293pt;}
.y1d81_c00001{bottom:408.352560pt;}
.y1e35_c00001{bottom:408.352827pt;}
.y1ea6_c00001{bottom:408.353627pt;}
.y106c_c00001{bottom:408.354160pt;}
.yd5_c00001{bottom:409.853333pt;}
.ye61_c00001{bottom:410.748160pt;}
.ye9d_c00001{bottom:410.749773pt;}
.y13b9_c00001{bottom:410.853480pt;}
.y13d6_c00001{bottom:410.855080pt;}
.y6be_c00001{bottom:411.267733pt;}
.y1848_c00001{bottom:411.333213pt;}
.y184e_c00001{bottom:411.334400pt;}
.y1858_c00001{bottom:411.335240pt;}
.y1896_c00001{bottom:411.335507pt;}
.y1875_c00001{bottom:411.336440pt;}
.yff6_c00001{bottom:411.817493pt;}
.yf6a_c00001{bottom:411.818560pt;}
.y1d6a_c00001{bottom:411.819627pt;}
.yfb9_c00001{bottom:411.820160pt;}
.yecc_c00001{bottom:411.820693pt;}
.y1055_c00001{bottom:411.821227pt;}
.y148_c00001{bottom:412.733467pt;}
.yb87_c00001{bottom:412.931040pt;}
.yb4a_c00001{bottom:412.931467pt;}
.yb2c_c00001{bottom:412.932400pt;}
.ybab_c00001{bottom:412.983307pt;}
.ybc8_c00001{bottom:412.984107pt;}
.yb6b_c00001{bottom:412.988160pt;}
.y3fa_c00001{bottom:413.186667pt;}
.y3e_c00001{bottom:413.334667pt;}
.yaf3_c00001{bottom:413.678933pt;}
.yabe_c00001{bottom:413.680533pt;}
.yac9_c00001{bottom:413.681067pt;}
.yb04_c00001{bottom:413.731200pt;}
.y670_c00001{bottom:414.146400pt;}
.y117c_c00001{bottom:414.158773pt;}
.yc94_c00001{bottom:414.159600pt;}
.yca6_c00001{bottom:414.159653pt;}
.yccc_c00001{bottom:414.160320pt;}
.ycba_c00001{bottom:414.161253pt;}
.y112d_c00001{bottom:414.161333pt;}
.y162_c00001{bottom:414.213200pt;}
.y177_c00001{bottom:414.213733pt;}
.y1bc5_c00001{bottom:414.261067pt;}
.y182e_c00001{bottom:414.263520pt;}
.y154f_c00001{bottom:414.265360pt;}
.y16d0_c00001{bottom:414.265627pt;}
.y14e4_c00001{bottom:414.265760pt;}
.y18e7_c00001{bottom:414.265893pt;}
.y1803_c00001{bottom:414.266053pt;}
.y136a_c00001{bottom:414.266160pt;}
.y17b8_c00001{bottom:414.266427pt;}
.ye0a_c00001{bottom:414.266493pt;}
.y1396_c00001{bottom:414.266693pt;}
.yd90_c00001{bottom:414.266933pt;}
.y1c84_c00001{bottom:414.267027pt;}
.y1b9a_c00001{bottom:414.267067pt;}
.ye34_c00001{bottom:414.267160pt;}
.y130c_c00001{bottom:414.267467pt;}
.y1626_c00001{bottom:414.267760pt;}
.y1329_c00001{bottom:414.268533pt;}
.ydb1_c00001{bottom:414.269200pt;}
.y76_c00001{bottom:414.294667pt;}
.y87b_c00001{bottom:414.307733pt;}
.y60b_c00001{bottom:414.626667pt;}
.y55d_c00001{bottom:414.786667pt;}
.yae0_c00001{bottom:414.852400pt;}
.yd_c00001{bottom:415.254667pt;}
.y23a_c00001{bottom:415.493467pt;}
.y310_c00001{bottom:415.493600pt;}
.y242_c00001{bottom:415.493867pt;}
.y24c_c00001{bottom:415.494133pt;}
.y319_c00001{bottom:415.494533pt;}
.y321_c00001{bottom:415.494667pt;}
.y1e80_c00001{bottom:415.649467pt;}
.y1d41_c00001{bottom:415.649507pt;}
.y1c61_c00001{bottom:415.650400pt;}
.y1ada_c00001{bottom:415.650440pt;}
.y974_c00001{bottom:415.906267pt;}
.y53_c00001{bottom:416.054667pt;}
.yf29_c00001{bottom:416.290827pt;}
.y114b_c00001{bottom:416.559427pt;}
.yde0_c00001{bottom:416.667067pt;}
.y1340_c00001{bottom:416.667120pt;}
.y397_c00001{bottom:416.706667pt;}
.y70f_c00001{bottom:416.867867pt;}
.y193_c00001{bottom:416.986667pt;}
.y19be_c00001{bottom:417.145467pt;}
.y8b_c00001{bottom:417.174667pt;}
.yf2f_c00001{bottom:417.410547pt;}
.y91d_c00001{bottom:417.506667pt;}
.y103f_c00001{bottom:417.519080pt;}
.y1d19_c00001{bottom:417.520293pt;}
.y17aa_c00001{bottom:417.733493pt;}
.y267_c00001{bottom:417.734533pt;}
.y1b1c_c00001{bottom:417.837933pt;}
.yd04_c00001{bottom:417.838000pt;}
.ya05_c00001{bottom:417.838133pt;}
.yd3f_c00001{bottom:417.838733pt;}
.ya5b_c00001{bottom:417.839680pt;}
.y1b3b_c00001{bottom:417.889000pt;}
.yd5d_c00001{bottom:417.890333pt;}
.ya96_c00001{bottom:417.890427pt;}
.y1ce4_c00001{bottom:417.890867pt;}
.ya7b_c00001{bottom:417.891360pt;}
.yd1d_c00001{bottom:417.891893pt;}
.y11f5_c00001{bottom:418.210587pt;}
.y1be3_c00001{bottom:418.213253pt;}
.y1bff_c00001{bottom:418.214973pt;}
.y1ad_c00001{bottom:418.627600pt;}
.y1c7_c00001{bottom:418.628800pt;}
.y1e1_c00001{bottom:418.630000pt;}
.y1fb_c00001{bottom:418.631200pt;}
.y15f1_c00001{bottom:418.693880pt;}
.y13c5_c00001{bottom:418.694267pt;}
.y1649_c00001{bottom:418.694413pt;}
.y1699_c00001{bottom:418.694680pt;}
.y1668_c00001{bottom:418.695080pt;}
.y150e_c00001{bottom:418.696013pt;}
.y15a1_c00001{bottom:418.696147pt;}
.y18c4_c00001{bottom:418.696280pt;}
.y17c8_c00001{bottom:418.696413pt;}
.y145d_c00001{bottom:418.696680pt;}
.y1483_c00001{bottom:418.696813pt;}
.y1419_c00001{bottom:418.696947pt;}
.y13f4_c00001{bottom:418.697213pt;}
.y14ae_c00001{bottom:418.697347pt;}
.y157a_c00001{bottom:418.697480pt;}
.y1959_c00001{bottom:418.697747pt;}
.y1739_c00001{bottom:418.698413pt;}
.y196e_c00001{bottom:418.698547pt;}
.y170e_c00001{bottom:418.699080pt;}
.y22_c00001{bottom:418.774667pt;}
.yced_c00001{bottom:418.957333pt;}
.yc66_c00001{bottom:419.061747pt;}
.yc3a_c00001{bottom:419.064147pt;}
.ybdd_c00001{bottom:419.066133pt;}
.y46c_c00001{bottom:419.106667pt;}
.yf18_c00001{bottom:419.440400pt;}
.y153c_c00001{bottom:419.490640pt;}
.y1ef2_c00001{bottom:419.490867pt;}
.y1448_c00001{bottom:419.547947pt;}
.y1f2e_c00001{bottom:419.548053pt;}
.y856_c00001{bottom:419.585067pt;}
.y1239_c00001{bottom:419.757973pt;}
.yc0a_c00001{bottom:420.186187pt;}
.y95_c00001{bottom:420.226667pt;}
.ya3a_c00001{bottom:420.292893pt;}
.y10a9_c00001{bottom:420.451067pt;}
.y10c6_c00001{bottom:420.451120pt;}
.y10eb_c00001{bottom:420.451200pt;}
.y1105_c00001{bottom:420.451680pt;}
.y218_c00001{bottom:420.480000pt;}
.y416_c00001{bottom:420.548000pt;}
.y12d5_c00001{bottom:420.664800pt;}
.y1297_c00001{bottom:420.666000pt;}
.y127f_c00001{bottom:420.667120pt;}
.y7f0_c00001{bottom:420.707333pt;}
.y1945_c00001{bottom:420.714800pt;}
.y1778_c00001{bottom:420.715333pt;}
.y12f3_c00001{bottom:420.717467pt;}
.y12b1_c00001{bottom:420.718827pt;}
.y738_c00001{bottom:420.865600pt;}
.y13b8_c00001{bottom:421.093067pt;}
.y301_c00001{bottom:421.094533pt;}
.y22a_c00001{bottom:421.094667pt;}
.y13d5_c00001{bottom:421.095187pt;}
.y1a18_c00001{bottom:421.253467pt;}
.y1a89_c00001{bottom:421.253800pt;}
.y1a66_c00001{bottom:421.256733pt;}
.y98_c00001{bottom:421.440000pt;}
.y8bc_c00001{bottom:421.505467pt;}
.y108f_c00001{bottom:421.570893pt;}
.y693_c00001{bottom:421.986133pt;}
.y1674_c00001{bottom:422.162947pt;}
.y15ae_c00001{bottom:422.164013pt;}
.y146a_c00001{bottom:422.164547pt;}
.y1401_c00001{bottom:422.165080pt;}
.y1a36_c00001{bottom:422.376107pt;}
.y7b7_c00001{bottom:422.627067pt;}
.ye60_c00001{bottom:422.639827pt;}
.y11e4_c00001{bottom:422.669333pt;}
.y9ae_c00001{bottom:423.586667pt;}
.y6e7_c00001{bottom:423.746000pt;}
.y19fa_c00001{bottom:424.929413pt;}
.y19e1_c00001{bottom:424.931000pt;}
.y1989_c00001{bottom:424.931360pt;}
.y1847_c00001{bottom:425.253480pt;}
.y1857_c00001{bottom:425.309773pt;}
.y95f_c00001{bottom:425.346267pt;}
.ye9c_c00001{bottom:425.522707pt;}
.y1bef_c00001{bottom:426.000800pt;}
.y1c1d_c00001{bottom:426.002347pt;}
.y19a2_c00001{bottom:426.050667pt;}
.y1f0e_c00001{bottom:426.056213pt;}
.y1c44_c00001{bottom:426.056613pt;}
.y1f40_c00001{bottom:426.056747pt;}
.y1ed5_c00001{bottom:426.056880pt;}
.y334_c00001{bottom:426.240400pt;}
.y75b_c00001{bottom:426.307867pt;}
.y1aee_c00001{bottom:426.828000pt;}
.y19bd_c00001{bottom:427.330880pt;}
.yb2b_c00001{bottom:427.387600pt;}
.yb6a_c00001{bottom:427.388160pt;}
.y1d40_c00001{bottom:427.489613pt;}
.y1ad9_c00001{bottom:427.490547pt;}
.yb03_c00001{bottom:428.131200pt;}
.yaf2_c00001{bottom:428.131600pt;}
.yabd_c00001{bottom:428.133200pt;}
.yac8_c00001{bottom:428.133733pt;}
.yddf_c00001{bottom:428.187373pt;}
.y133f_c00001{bottom:428.187427pt;}
.y587_c00001{bottom:428.226667pt;}
.y1be2_c00001{bottom:428.400760pt;}
.y1bfe_c00001{bottom:428.455080pt;}
.y119f_c00001{bottom:428.556640pt;}
.y1267_c00001{bottom:428.558107pt;}
.y121d_c00001{bottom:428.558507pt;}
.y117b_c00001{bottom:428.558773pt;}
.yc93_c00001{bottom:428.559600pt;}
.y112c_c00001{bottom:428.560800pt;}
.ycb9_c00001{bottom:428.561253pt;}
.yca5_c00001{bottom:428.612320pt;}
.yccb_c00001{bottom:428.612987pt;}
.y4d3_c00001{bottom:428.706667pt;}
.y1cb7_c00001{bottom:428.909333pt;}
.y838_c00001{bottom:429.026267pt;}
.y275_c00001{bottom:429.120800pt;}
.y281_c00001{bottom:429.121600pt;}
.y28d_c00001{bottom:429.122000pt;}
.y299_c00001{bottom:429.122800pt;}
.y2a5_c00001{bottom:429.123600pt;}
.y340_c00001{bottom:429.186667pt;}
.yadf_c00001{bottom:429.252400pt;}
.y103e_c00001{bottom:429.358667pt;}
.y1d18_c00001{bottom:429.360400pt;}
.y1c2a_c00001{bottom:429.522213pt;}
.y114a_c00001{bottom:429.680787pt;}
.y544_c00001{bottom:429.826667pt;}
.y11f4_c00001{bottom:430.050693pt;}
.y11df_c00001{bottom:430.050733pt;}
.y56e_c00001{bottom:430.148000pt;}
.ya8_c00001{bottom:430.173333pt;}
.y6bd_c00001{bottom:430.788000pt;}
.yba6_c00001{bottom:430.903040pt;}
.y1aed_c00001{bottom:430.930667pt;}
.y995_c00001{bottom:430.947467pt;}
.y1cfd_c00001{bottom:431.227680pt;}
.y3d_c00001{bottom:431.254667pt;}
.yf17_c00001{bottom:431.280507pt;}
.y153b_c00001{bottom:431.330747pt;}
.y1da0_c00001{bottom:431.331013pt;}
.y1447_c00001{bottom:431.388053pt;}
.y3c3_c00001{bottom:431.748000pt;}
.y120e_c00001{bottom:432.026373pt;}
.y1b38_c00001{bottom:432.289667pt;}
.yd5a_c00001{bottom:432.290467pt;}
.ycec_c00001{bottom:432.290667pt;}
.ya04_c00001{bottom:432.290800pt;}
.yd1c_c00001{bottom:432.290827pt;}
.y1ce1_c00001{bottom:432.291000pt;}
.ya39_c00001{bottom:432.292893pt;}
.y9e8_c00001{bottom:432.545733pt;}
.y13b7_c00001{bottom:432.613373pt;}
.y13d4_c00001{bottom:432.614973pt;}
.yc_c00001{bottom:432.854667pt;}
.y486_c00001{bottom:433.026667pt;}
.y184d_c00001{bottom:433.094267pt;}
.y1895_c00001{bottom:433.095373pt;}
.y1874_c00001{bottom:433.095773pt;}
.y87a_c00001{bottom:433.188000pt;}
.yf5c_c00001{bottom:433.360160pt;}
.y1012_c00001{bottom:433.360293pt;}
.yf84_c00001{bottom:433.360427pt;}
.y1d5c_c00001{bottom:433.361227pt;}
.ye7f_c00001{bottom:433.361333pt;}
.y1e62_c00001{bottom:433.362160pt;}
.yebe_c00001{bottom:433.362293pt;}
.yfce_c00001{bottom:433.362693pt;}
.yfac_c00001{bottom:433.362827pt;}
.y1e04_c00001{bottom:433.364027pt;}
.y1dcc_c00001{bottom:433.364160pt;}
.yee5_c00001{bottom:433.364827pt;}
.y1d80_c00001{bottom:433.365093pt;}
.y1e34_c00001{bottom:433.365360pt;}
.y1ea5_c00001{bottom:433.366160pt;}
.y106b_c00001{bottom:433.366693pt;}
.y503_c00001{bottom:433.506667pt;}
.y8f7_c00001{bottom:433.508267pt;}
.yc65_c00001{bottom:433.514413pt;}
.yc39_c00001{bottom:433.516813pt;}
.yf4c_c00001{bottom:433.518267pt;}
.ybdc_c00001{bottom:433.518800pt;}
.yb4_c00001{bottom:433.600133pt;}
.ybe_c00001{bottom:433.600400pt;}
.y52_c00001{bottom:433.814667pt;}
.y942_c00001{bottom:433.985467pt;}
.y9c6_c00001{bottom:434.306400pt;}
.y10c5_c00001{bottom:434.370853pt;}
.ye5f_c00001{bottom:434.479413pt;}
.y266_c00001{bottom:434.587600pt;}
.yc09_c00001{bottom:434.638853pt;}
.y149_c00001{bottom:434.693333pt;}
.y70e_c00001{bottom:434.787600pt;}
.y1944_c00001{bottom:435.114800pt;}
.y1777_c00001{bottom:435.115333pt;}
.y12f2_c00001{bottom:435.117467pt;}
.y12d4_c00001{bottom:435.117867pt;}
.y1296_c00001{bottom:435.118667pt;}
.y12b0_c00001{bottom:435.118827pt;}
.y1846_c00001{bottom:435.493067pt;}
.y1856_c00001{bottom:435.495187pt;}
.y1a17_c00001{bottom:435.653467pt;}
.y1a88_c00001{bottom:435.653800pt;}
.y1a65_c00001{bottom:435.656733pt;}
.ye9b_c00001{bottom:435.762293pt;}
.y1b35_c00001{bottom:435.810067pt;}
.yd57_c00001{bottom:435.810333pt;}
.y1cde_c00001{bottom:435.810867pt;}
.y8dc_c00001{bottom:435.908000pt;}
.y123d_c00001{bottom:436.000000pt;}
.y1bc4_c00001{bottom:436.021467pt;}
.y182d_c00001{bottom:436.023387pt;}
.y154e_c00001{bottom:436.025227pt;}
.y16cf_c00001{bottom:436.025493pt;}
.y14e3_c00001{bottom:436.025627pt;}
.y18e6_c00001{bottom:436.025760pt;}
.y1802_c00001{bottom:436.025920pt;}
.y1369_c00001{bottom:436.026027pt;}
.y17b7_c00001{bottom:436.026293pt;}
.ye09_c00001{bottom:436.026360pt;}
.y1395_c00001{bottom:436.026560pt;}
.y1c83_c00001{bottom:436.026893pt;}
.ye33_c00001{bottom:436.027027pt;}
.yd8f_c00001{bottom:436.027333pt;}
.y1b99_c00001{bottom:436.027467pt;}
.y1625_c00001{bottom:436.027627pt;}
.y130b_c00001{bottom:436.027867pt;}
.ydb0_c00001{bottom:436.029067pt;}
.y777_c00001{bottom:436.066667pt;}
.y163_c00001{bottom:436.133467pt;}
.y178_c00001{bottom:436.134000pt;}
.y127e_c00001{bottom:436.238453pt;}
.y21_c00001{bottom:436.374667pt;}
.y1881_c00001{bottom:436.563107pt;}
.y1a35_c00001{bottom:436.775040pt;}
.yff5_c00001{bottom:436.830027pt;}
.yf69_c00001{bottom:436.831093pt;}
.y1d69_c00001{bottom:436.832160pt;}
.yfb8_c00001{bottom:436.832693pt;}
.yecb_c00001{bottom:436.833227pt;}
.y1054_c00001{bottom:436.833760pt;}
.y3f7_c00001{bottom:436.866667pt;}
.y814_c00001{bottom:437.187733pt;}
.ydde_c00001{bottom:438.426960pt;}
.y133e_c00001{bottom:438.427013pt;}
.y1988_c00001{bottom:438.850693pt;}
.y19bc_c00001{bottom:438.905880pt;}
.y1d3f_c00001{bottom:439.329200pt;}
.y1ad8_c00001{bottom:439.330133pt;}
.y17a9_c00001{bottom:439.493360pt;}
.y7ef_c00001{bottom:440.227067pt;}
.y1be1_c00001{bottom:440.292947pt;}
.y15f0_c00001{bottom:440.453747pt;}
.y13c4_c00001{bottom:440.454133pt;}
.y1648_c00001{bottom:440.454280pt;}
.y1698_c00001{bottom:440.455080pt;}
.y1667_c00001{bottom:440.455480pt;}
.y150d_c00001{bottom:440.455880pt;}
.y17c7_c00001{bottom:440.456280pt;}
.y15a0_c00001{bottom:440.456547pt;}
.y18c3_c00001{bottom:440.456680pt;}
.y1418_c00001{bottom:440.456813pt;}
.y145c_c00001{bottom:440.457080pt;}
.y1482_c00001{bottom:440.457213pt;}
.y16ec_c00001{bottom:440.457347pt;}
.y13f3_c00001{bottom:440.457613pt;}
.y14ad_c00001{bottom:440.457747pt;}
.y1579_c00001{bottom:440.457880pt;}
.y1738_c00001{bottom:440.458813pt;}
.y196d_c00001{bottom:440.458947pt;}
.y170d_c00001{bottom:440.459480pt;}
.y194_c00001{bottom:440.934000pt;}
.y1d17_c00001{bottom:441.147893pt;}
.y11f3_c00001{bottom:441.228000pt;}
.y692_c00001{bottom:441.506400pt;}
.yba9_c00001{bottom:441.783307pt;}
.yb49_c00001{bottom:441.785600pt;}
.yb2a_c00001{bottom:441.787600pt;}
.yb69_c00001{bottom:441.788160pt;}
.y11de_c00001{bottom:441.890320pt;}
.y7b6_c00001{bottom:442.146800pt;}
.y108e_c00001{bottom:442.158360pt;}
.y10ea_c00001{bottom:442.158533pt;}
.y1104_c00001{bottom:442.211547pt;}
.yb02_c00001{bottom:442.531200pt;}
.yaf1_c00001{bottom:442.531600pt;}
.yca4_c00001{bottom:442.532053pt;}
.yabc_c00001{bottom:442.533733pt;}
.yac7_c00001{bottom:442.534267pt;}
.y1ae_c00001{bottom:442.534400pt;}
.y1c8_c00001{bottom:442.535600pt;}
.y1e2_c00001{bottom:442.536800pt;}
.y1fc_c00001{bottom:442.538000pt;}
.y212_c00001{bottom:442.539200pt;}
.y13b6_c00001{bottom:442.853480pt;}
.y13d3_c00001{bottom:442.855080pt;}
.y117a_c00001{bottom:442.958773pt;}
.y112b_c00001{bottom:442.960267pt;}
.y119e_c00001{bottom:443.009307pt;}
.y121c_c00001{bottom:443.010640pt;}
.y1266_c00001{bottom:443.010773pt;}
.y1cfc_c00001{bottom:443.067787pt;}
.yf16_c00001{bottom:443.068000pt;}
.y1d9f_c00001{bottom:443.170600pt;}
.y1bfd_c00001{bottom:443.174813pt;}
.y737_c00001{bottom:443.265600pt;}
.y10a8_c00001{bottom:443.278667pt;}
.y973_c00001{bottom:443.425600pt;}
.y1238_c00001{bottom:443.438240pt;}
.yade_c00001{bottom:443.652400pt;}
.y22d_c00001{bottom:443.814533pt;}
.y304_c00001{bottom:443.840933pt;}
.y1673_c00001{bottom:443.922813pt;}
.y15ad_c00001{bottom:443.923880pt;}
.y1469_c00001{bottom:443.924413pt;}
.y1400_c00001{bottom:443.924947pt;}
.y1149_c00001{bottom:444.080787pt;}
.y75_c00001{bottom:444.374667pt;}
.y855_c00001{bottom:444.545467pt;}
.y5d5_c00001{bottom:444.548000pt;}
.y10c4_c00001{bottom:444.610960pt;}
.yba5_c00001{bottom:445.303040pt;}
.y11f2_c00001{bottom:445.330667pt;}
.y6e6_c00001{bottom:446.146000pt;}
.yd1b_c00001{bottom:446.210560pt;}
.y11f8_c00001{bottom:446.290667pt;}
.y120d_c00001{bottom:446.478507pt;}
.y19f9_c00001{bottom:446.689280pt;}
.ya03_c00001{bottom:446.690800pt;}
.ya7a_c00001{bottom:446.691360pt;}
.y19e0_c00001{bottom:446.691400pt;}
.ya5a_c00001{bottom:446.692347pt;}
.y5bd_c00001{bottom:446.786667pt;}
.y1845_c00001{bottom:447.013373pt;}
.y1855_c00001{bottom:447.070187pt;}
.y8a_c00001{bottom:447.254667pt;}
.y9ad_c00001{bottom:447.586667pt;}
.ye5e_c00001{bottom:447.600240pt;}
.y19a1_c00001{bottom:447.810533pt;}
.ya38_c00001{bottom:447.812627pt;}
.yc64_c00001{bottom:447.914413pt;}
.yc38_c00001{bottom:447.916813pt;}
.ybdb_c00001{bottom:447.918800pt;}
.yc08_c00001{bottom:449.038853pt;}
.y19bb_c00001{bottom:449.090773pt;}
.y1987_c00001{bottom:449.090800pt;}
.y3c_c00001{bottom:449.174667pt;}
.y631_c00001{bottom:449.348000pt;}
.y1941_c00001{bottom:449.514800pt;}
.y1774_c00001{bottom:449.515333pt;}
.y12ef_c00001{bottom:449.517467pt;}
.y127d_c00001{bottom:449.518667pt;}
.y12af_c00001{bottom:449.518827pt;}
.yddd_c00001{bottom:449.947267pt;}
.y133d_c00001{bottom:449.947320pt;}
.y1a16_c00001{bottom:450.053467pt;}
.y1a87_c00001{bottom:450.053800pt;}
.y1a64_c00001{bottom:450.056733pt;}
.y6bc_c00001{bottom:450.306267pt;}
.yc92_c00001{bottom:450.319467pt;}
.ycb8_c00001{bottom:450.321120pt;}
.yb_c00001{bottom:450.454667pt;}
.y1c73_c00001{bottom:450.509333pt;}
.ye9a_c00001{bottom:450.535227pt;}
.y1bee_c00001{bottom:451.013333pt;}
.y1c1c_c00001{bottom:451.014880pt;}
.y1f0d_c00001{bottom:451.016080pt;}
.y1c43_c00001{bottom:451.016480pt;}
.y1ed4_c00001{bottom:451.016747pt;}
.y1f3f_c00001{bottom:451.017147pt;}
.y1d3e_c00001{bottom:451.169307pt;}
.y1ad7_c00001{bottom:451.170240pt;}
.y1a34_c00001{bottom:451.173973pt;}
.y75a_c00001{bottom:451.268267pt;}
.y51_c00001{bottom:451.574667pt;}
.yd8_c00001{bottom:451.613333pt;}
.y879_c00001{bottom:451.908000pt;}
.y1be0_c00001{bottom:452.132533pt;}
.y1cb5_c00001{bottom:452.530667pt;}
.y70d_c00001{bottom:452.548000pt;}
.yca3_c00001{bottom:452.719560pt;}
.y534_c00001{bottom:452.866267pt;}
.y1d16_c00001{bottom:452.988000pt;}
.y193e_c00001{bottom:453.035733pt;}
.y1771_c00001{bottom:453.036267pt;}
.y12ec_c00001{bottom:453.038400pt;}
.yf2e_c00001{bottom:453.305880pt;}
.y1bfc_c00001{bottom:453.414920pt;}
.y11dd_c00001{bottom:453.730427pt;}
.y837_c00001{bottom:453.826267pt;}
.y20_c00001{bottom:453.974667pt;}
.y1b3a_c00001{bottom:453.996333pt;}
.y1b37_c00001{bottom:453.997533pt;}
.yd5c_c00001{bottom:453.997667pt;}
.yd59_c00001{bottom:453.997800pt;}
.yceb_c00001{bottom:453.998000pt;}
.y1ce3_c00001{bottom:453.998200pt;}
.y1ce0_c00001{bottom:453.998333pt;}
.y1c29_c00001{bottom:454.482080pt;}
.y1c72_c00001{bottom:454.560000pt;}
.y124c_c00001{bottom:454.612000pt;}
.y13b5_c00001{bottom:454.693587pt;}
.y184c_c00001{bottom:454.854133pt;}
.y1873_c00001{bottom:454.855640pt;}
.y1894_c00001{bottom:454.855773pt;}
.y1446_c00001{bottom:454.907787pt;}
.y1cfb_c00001{bottom:454.907893pt;}
.y994_c00001{bottom:454.947467pt;}
.y1ef1_c00001{bottom:455.010707pt;}
.y153a_c00001{bottom:455.011013pt;}
.y23b_c00001{bottom:455.066933pt;}
.y243_c00001{bottom:455.067333pt;}
.y24d_c00001{bottom:455.067600pt;}
.y311_c00001{bottom:455.106667pt;}
.y322_c00001{bottom:455.107733pt;}
.yf1_c00001{bottom:455.227733pt;}
.yfb_c00001{bottom:455.227867pt;}
.y105_c00001{bottom:455.228400pt;}
.y10f_c00001{bottom:455.228533pt;}
.y1237_c00001{bottom:455.277827pt;}
.y10c3_c00001{bottom:456.131267pt;}
.y108d_c00001{bottom:456.131293pt;}
.yba8_c00001{bottom:456.183307pt;}
.yb48_c00001{bottom:456.185600pt;}
.yb29_c00001{bottom:456.187600pt;}
.yb68_c00001{bottom:456.188160pt;}
.yd1a_c00001{bottom:456.450667pt;}
.y14a_c00001{bottom:456.640267pt;}
.y66f_c00001{bottom:456.866667pt;}
.yb01_c00001{bottom:456.931200pt;}
.yaf0_c00001{bottom:456.931600pt;}
.yabb_c00001{bottom:456.934267pt;}
.yac6_c00001{bottom:456.934800pt;}
.y8bb_c00001{bottom:457.024800pt;}
.y1844_c00001{bottom:457.253480pt;}
.y1854_c00001{bottom:457.255080pt;}
.y119d_c00001{bottom:457.409307pt;}
.y121b_c00001{bottom:457.410640pt;}
.y1265_c00001{bottom:457.410773pt;}
.y1179_c00001{bottom:457.411440pt;}
.y112a_c00001{bottom:457.413333pt;}
.y1b34_c00001{bottom:457.517933pt;}
.yd56_c00001{bottom:457.518733pt;}
.y1cdd_c00001{bottom:457.519267pt;}
.y13d2_c00001{bottom:457.630547pt;}
.y1801_c00001{bottom:457.731120pt;}
.y1368_c00001{bottom:457.731227pt;}
.yd8e_c00001{bottom:457.732533pt;}
.y1b98_c00001{bottom:457.732667pt;}
.y1328_c00001{bottom:457.733600pt;}
.ye08_c00001{bottom:457.733693pt;}
.ydaf_c00001{bottom:457.734267pt;}
.y1bc3_c00001{bottom:457.781867pt;}
.y182c_c00001{bottom:457.786453pt;}
.y1c82_c00001{bottom:457.786760pt;}
.ye32_c00001{bottom:457.786893pt;}
.y154d_c00001{bottom:457.787760pt;}
.y16ce_c00001{bottom:457.788027pt;}
.y14e2_c00001{bottom:457.788160pt;}
.y18e5_c00001{bottom:457.788293pt;}
.y17b6_c00001{bottom:457.788827pt;}
.y1394_c00001{bottom:457.789093pt;}
.y1624_c00001{bottom:457.790160pt;}
.yadd_c00001{bottom:458.052400pt;}
.y164_c00001{bottom:458.079867pt;}
.yf5b_c00001{bottom:458.320027pt;}
.y1011_c00001{bottom:458.320160pt;}
.yf83_c00001{bottom:458.320293pt;}
.y1d5b_c00001{bottom:458.321093pt;}
.ye7e_c00001{bottom:458.321733pt;}
.y1e61_c00001{bottom:458.322027pt;}
.yebd_c00001{bottom:458.322160pt;}
.y1880_c00001{bottom:458.322440pt;}
.yfcd_c00001{bottom:458.322560pt;}
.yfab_c00001{bottom:458.322693pt;}
.y1e03_c00001{bottom:458.323893pt;}
.y1dcb_c00001{bottom:458.324027pt;}
.yee4_c00001{bottom:458.324693pt;}
.y1d7f_c00001{bottom:458.324960pt;}
.y1e33_c00001{bottom:458.325227pt;}
.y1ea4_c00001{bottom:458.326027pt;}
.y106a_c00001{bottom:458.326560pt;}
.y1148_c00001{bottom:458.533853pt;}
.y124b_c00001{bottom:458.720000pt;}
.y269_c00001{bottom:459.014800pt;}
.y352_c00001{bottom:459.107067pt;}
.y55c_c00001{bottom:459.266667pt;}
.y74_c00001{bottom:459.414667pt;}
.ye5d_c00001{bottom:459.440347pt;}
.yba4_c00001{bottom:459.703040pt;}
.y95e_c00001{bottom:459.746267pt;}
.y7ee_c00001{bottom:459.747333pt;}
.y440_c00001{bottom:460.066667pt;}
.yddc_c00001{bottom:460.187373pt;}
.y133c_c00001{bottom:460.187427pt;}
.y19ba_c00001{bottom:460.610560pt;}
.y22c_c00001{bottom:460.668133pt;}
.y303_c00001{bottom:460.708133pt;}
.ye99_c00001{bottom:460.722733pt;}
.y120c_c00001{bottom:460.878507pt;}
.y691_c00001{bottom:461.026133pt;}
.y8f6_c00001{bottom:461.028000pt;}
.ya02_c00001{bottom:461.090800pt;}
.yf32_c00001{bottom:461.090813pt;}
.yf28_c00001{bottom:461.090827pt;}
.ya37_c00001{bottom:461.093880pt;}
.y394_c00001{bottom:461.186667pt;}
.y17a8_c00001{bottom:461.253227pt;}
.y7b5_c00001{bottom:461.667067pt;}
.yff4_c00001{bottom:461.789893pt;}
.yf68_c00001{bottom:461.790960pt;}
.y1d68_c00001{bottom:461.792027pt;}
.yfb7_c00001{bottom:461.792560pt;}
.yeca_c00001{bottom:461.793093pt;}
.y1053_c00001{bottom:461.793627pt;}
.y9c5_c00001{bottom:461.826133pt;}
.y813_c00001{bottom:461.987733pt;}
.yf2c_c00001{bottom:462.210800pt;}
.y89_c00001{bottom:462.294667pt;}
.yc63_c00001{bottom:462.314413pt;}
.yc37_c00001{bottom:462.316813pt;}
.ybda_c00001{bottom:462.318800pt;}
.y1d3d_c00001{bottom:463.009413pt;}
.y1ad6_c00001{bottom:463.010347pt;}
.y8db_c00001{bottom:463.427733pt;}
.y12ae_c00001{bottom:463.438560pt;}
.yc07_c00001{bottom:463.438853pt;}
.yf2d_c00001{bottom:463.490773pt;}
.y10e9_c00001{bottom:463.917333pt;}
.y1103_c00001{bottom:463.919413pt;}
.y854_c00001{bottom:464.065200pt;}
.y918_c00001{bottom:464.066667pt;}
.y378_c00001{bottom:464.292933pt;}
.y359_c00001{bottom:464.293333pt;}
.y35f_c00001{bottom:464.293600pt;}
.y363_c00001{bottom:464.293733pt;}
.y36e_c00001{bottom:464.294000pt;}
.y375_c00001{bottom:464.294267pt;}
.y1a15_c00001{bottom:464.453467pt;}
.y1a63_c00001{bottom:464.456733pt;}
.y1a86_c00001{bottom:464.509000pt;}
.yc91_c00001{bottom:464.719467pt;}
.ycb7_c00001{bottom:464.720053pt;}
.yca2_c00001{bottom:464.772160pt;}
.ycca_c00001{bottom:464.772853pt;}
.y195_c00001{bottom:464.827200pt;}
.y1208_c00001{bottom:464.909333pt;}
.y1bfb_c00001{bottom:464.935227pt;}
.y10a7_c00001{bottom:465.038533pt;}
.y415_c00001{bottom:465.186667pt;}
.y13c3_c00001{bottom:465.414000pt;}
.y15ef_c00001{bottom:465.414147pt;}
.y150c_c00001{bottom:465.414680pt;}
.y1697_c00001{bottom:465.414947pt;}
.y1925_c00001{bottom:465.415080pt;}
.y1417_c00001{bottom:465.415213pt;}
.y1666_c00001{bottom:465.415347pt;}
.y159f_c00001{bottom:465.416413pt;}
.y18c2_c00001{bottom:465.416547pt;}
.y145b_c00001{bottom:465.416947pt;}
.y1481_c00001{bottom:465.417080pt;}
.y16eb_c00001{bottom:465.417213pt;}
.y13f2_c00001{bottom:465.417480pt;}
.y14ac_c00001{bottom:465.417613pt;}
.y1578_c00001{bottom:465.417747pt;}
.y1737_c00001{bottom:465.418680pt;}
.y170c_c00001{bottom:465.419347pt;}
.y11dc_c00001{bottom:465.570533pt;}
.y1a33_c00001{bottom:465.628640pt;}
.y736_c00001{bottom:465.825467pt;}
.y10c2_c00001{bottom:466.318773pt;}
.y108c_c00001{bottom:466.318800pt;}
.y1af_c00001{bottom:466.467733pt;}
.y1c9_c00001{bottom:466.468933pt;}
.y1e3_c00001{bottom:466.470133pt;}
.y1fd_c00001{bottom:466.471867pt;}
.y13b4_c00001{bottom:466.533693pt;}
.y1d9e_c00001{bottom:466.690867pt;}
.y1445_c00001{bottom:466.747893pt;}
.y1cfa_c00001{bottom:466.748000pt;}
.y1539_c00001{bottom:466.851120pt;}
.y3b_c00001{bottom:467.094667pt;}
.y1236_c00001{bottom:467.117933pt;}
.y335_c00001{bottom:467.546667pt;}
.y13d1_c00001{bottom:467.815440pt;}
.ya_c00001{bottom:468.054667pt;}
.y1b39_c00001{bottom:468.449000pt;}
.y1b36_c00001{bottom:468.450200pt;}
.yd5b_c00001{bottom:468.450333pt;}
.yd58_c00001{bottom:468.450467pt;}
.ycea_c00001{bottom:468.450667pt;}
.y1ce2_c00001{bottom:468.450867pt;}
.y1cdf_c00001{bottom:468.451000pt;}
.y6e5_c00001{bottom:468.546000pt;}
.y1672_c00001{bottom:468.883213pt;}
.y15ac_c00001{bottom:468.884280pt;}
.y1468_c00001{bottom:468.884813pt;}
.y13ff_c00001{bottom:468.885347pt;}
.y1206_c00001{bottom:469.012000pt;}
.y1843_c00001{bottom:469.093587pt;}
.y50_c00001{bottom:469.334667pt;}
.y9e7_c00001{bottom:469.505600pt;}
.y941_c00001{bottom:469.665733pt;}
.y276_c00001{bottom:470.427600pt;}
.y282_c00001{bottom:470.428400pt;}
.y28e_c00001{bottom:470.428800pt;}
.y29a_c00001{bottom:470.429600pt;}
.y2a7_c00001{bottom:470.430133pt;}
.y2a6_c00001{bottom:470.430400pt;}
.y70c_c00001{bottom:470.467733pt;}
.y349_c00001{bottom:470.533200pt;}
.y341_c00001{bottom:470.533600pt;}
.yb67_c00001{bottom:470.640827pt;}
.y19b9_c00001{bottom:470.850667pt;}
.yadc_c00001{bottom:470.852400pt;}
.y972_c00001{bottom:471.106267pt;}
.y1940_c00001{bottom:471.223200pt;}
.y1773_c00001{bottom:471.223733pt;}
.y12ee_c00001{bottom:471.225867pt;}
.y127c_c00001{bottom:471.226000pt;}
.y1943_c00001{bottom:471.275200pt;}
.y1776_c00001{bottom:471.275733pt;}
.y12f1_c00001{bottom:471.277867pt;}
.y1f_c00001{bottom:471.574667pt;}
.y533_c00001{bottom:471.586000pt;}
.y9ab_c00001{bottom:471.586667pt;}
.yb28_c00001{bottom:471.706933pt;}
.yddb_c00001{bottom:471.707160pt;}
.y133b_c00001{bottom:471.707213pt;}
.y89c_c00001{bottom:471.745733pt;}
.y119c_c00001{bottom:471.809307pt;}
.y121a_c00001{bottom:471.809573pt;}
.y1264_c00001{bottom:471.810773pt;}
.y1178_c00001{bottom:471.811440pt;}
.y1129_c00001{bottom:471.813333pt;}
.y19f8_c00001{bottom:471.916333pt;}
.y1b33_c00001{bottom:471.917933pt;}
.yd55_c00001{bottom:471.918200pt;}
.y1cdc_c00001{bottom:471.919267pt;}
.y1853_c00001{bottom:472.030547pt;}
.y586_c00001{bottom:472.706667pt;}
.yf5a_c00001{bottom:472.720027pt;}
.y1d5a_c00001{bottom:472.721093pt;}
.ye5c_c00001{bottom:472.721600pt;}
.ye7d_c00001{bottom:472.721733pt;}
.yebc_c00001{bottom:472.722160pt;}
.yfaa_c00001{bottom:472.722693pt;}
.y1c1b_c00001{bottom:472.722747pt;}
.ye98_c00001{bottom:472.775333pt;}
.y1010_c00001{bottom:472.775360pt;}
.yf82_c00001{bottom:472.775493pt;}
.y1ed3_c00001{bottom:472.775547pt;}
.y1f0c_c00001{bottom:472.776480pt;}
.y1c42_c00001{bottom:472.776880pt;}
.y1e60_c00001{bottom:472.777227pt;}
.yfcc_c00001{bottom:472.777760pt;}
.y1e02_c00001{bottom:472.779093pt;}
.y1dca_c00001{bottom:472.779227pt;}
.yee3_c00001{bottom:472.779893pt;}
.y1d7e_c00001{bottom:472.780160pt;}
.y1e32_c00001{bottom:472.780427pt;}
.y1ea3_c00001{bottom:472.781227pt;}
.y1069_c00001{bottom:472.781760pt;}
.y1147_c00001{bottom:472.933853pt;}
.y993_c00001{bottom:473.347467pt;}
.y4c9_c00001{bottom:473.348000pt;}
.y12ad_c00001{bottom:473.678667pt;}
.y1bdf_c00001{bottom:473.840933pt;}
.y73_c00001{bottom:474.454667pt;}
.y543_c00001{bottom:474.466667pt;}
.y759_c00001{bottom:474.468267pt;}
.y193d_c00001{bottom:474.743067pt;}
.y1770_c00001{bottom:474.743600pt;}
.y12eb_c00001{bottom:474.745733pt;}
.y56d_c00001{bottom:474.786667pt;}
.y1d3c_c00001{bottom:474.849520pt;}
.y1ad5_c00001{bottom:474.850453pt;}
.yf27_c00001{bottom:475.010560pt;}
.ya36_c00001{bottom:475.013213pt;}
.y1bfa_c00001{bottom:475.175333pt;}
.y120b_c00001{bottom:475.277440pt;}
.y268_c00001{bottom:475.908000pt;}
.y3c2_c00001{bottom:476.226667pt;}
.y1c28_c00001{bottom:476.241947pt;}
.y878_c00001{bottom:476.705333pt;}
.yc36_c00001{bottom:476.716813pt;}
.ybd9_c00001{bottom:476.718800pt;}
.yc62_c00001{bottom:476.769613pt;}
.y88_c00001{bottom:477.334667pt;}
.ya9_c00001{bottom:477.373333pt;}
.y11db_c00001{bottom:477.410640pt;}
.y10c1_c00001{bottom:477.838560pt;}
.yc06_c00001{bottom:477.838853pt;}
.y50b_c00001{bottom:477.986667pt;}
.y1d9d_c00001{bottom:478.530973pt;}
.y14b_c00001{bottom:478.560000pt;}
.y1444_c00001{bottom:478.588000pt;}
.yaef_c00001{bottom:478.691467pt;}
.yaba_c00001{bottom:478.694133pt;}
.yac5_c00001{bottom:478.694667pt;}
.y836_c00001{bottom:478.786133pt;}
.y1a14_c00001{bottom:478.908667pt;}
.y1a85_c00001{bottom:478.909000pt;}
.y1a62_c00001{bottom:478.911400pt;}
.y1235_c00001{bottom:478.958040pt;}
.yc90_c00001{bottom:479.172133pt;}
.yca1_c00001{bottom:479.172160pt;}
.ycb6_c00001{bottom:479.172720pt;}
.ycc9_c00001{bottom:479.172853pt;}
.y7ed_c00001{bottom:479.267067pt;}
.y13d0_c00001{bottom:479.335747pt;}
.y776_c00001{bottom:479.426533pt;}
.y1bc2_c00001{bottom:479.489733pt;}
.y1800_c00001{bottom:479.490987pt;}
.y1367_c00001{bottom:479.491093pt;}
.y182b_c00001{bottom:479.491653pt;}
.yd8d_c00001{bottom:479.492400pt;}
.y1b97_c00001{bottom:479.492533pt;}
.y154c_c00001{bottom:479.492960pt;}
.y16cd_c00001{bottom:479.493227pt;}
.y14e1_c00001{bottom:479.493360pt;}
.y1327_c00001{bottom:479.493467pt;}
.y18e4_c00001{bottom:479.493493pt;}
.ye07_c00001{bottom:479.493560pt;}
.y17b5_c00001{bottom:479.494027pt;}
.y1c81_c00001{bottom:479.494093pt;}
.ydae_c00001{bottom:479.494133pt;}
.ye31_c00001{bottom:479.494227pt;}
.y1393_c00001{bottom:479.494293pt;}
.y1623_c00001{bottom:479.495360pt;}
.y184b_c00001{bottom:479.814000pt;}
.y1872_c00001{bottom:479.815507pt;}
.y1893_c00001{bottom:479.870307pt;}
.y165_c00001{bottom:480.026800pt;}
.y1a32_c00001{bottom:480.028640pt;}
.y690_c00001{bottom:480.546400pt;}
.yb5_c00001{bottom:480.800133pt;}
.ybf_c00001{bottom:480.800400pt;}
.y1842_c00001{bottom:480.933693pt;}
.yadb_c00001{bottom:481.092507pt;}
.y812_c00001{bottom:481.507067pt;}
.ydda_c00001{bottom:481.892053pt;}
.y133a_c00001{bottom:481.892107pt;}
.y1852_c00001{bottom:482.270653pt;}
.ya01_c00001{bottom:482.850667pt;}
.yf31_c00001{bottom:482.850680pt;}
.ya79_c00001{bottom:482.851227pt;}
.y17a7_c00001{bottom:482.960560pt;}
.y18dd_c00001{bottom:482.960827pt;}
.y187f_c00001{bottom:483.336040pt;}
.y650_c00001{bottom:483.426667pt;}
.y22f_c00001{bottom:483.428133pt;}
.y306_c00001{bottom:483.454933pt;}
.y853_c00001{bottom:483.584933pt;}
.yf2b_c00001{bottom:483.970667pt;}
.ya95_c00001{bottom:483.970693pt;}
.yf26_c00001{bottom:485.250667pt;}
.ya35_c00001{bottom:485.252800pt;}
.y1942_c00001{bottom:485.675200pt;}
.y1775_c00001{bottom:485.675733pt;}
.y193f_c00001{bottom:485.675867pt;}
.y1772_c00001{bottom:485.676400pt;}
.y12f0_c00001{bottom:485.677867pt;}
.y12ed_c00001{bottom:485.678533pt;}
.y108b_c00001{bottom:485.678667pt;}
.yb27_c00001{bottom:485.679209pt;}
.y6bb_c00001{bottom:485.826000pt;}
.y119b_c00001{bottom:486.209307pt;}
.y1219_c00001{bottom:486.209573pt;}
.y1263_c00001{bottom:486.210773pt;}
.y1177_c00001{bottom:486.211440pt;}
.y1128_c00001{bottom:486.213333pt;}
.ya76_c00001{bottom:486.371013pt;}
.y7b4_c00001{bottom:486.626933pt;}
.y1d3b_c00001{bottom:486.637013pt;}
.y1ad4_c00001{bottom:486.637947pt;}
.yf59_c00001{bottom:487.173093pt;}
.y1ed2_c00001{bottom:487.173413pt;}
.y1f0b_c00001{bottom:487.173813pt;}
.y15ee_c00001{bottom:487.174013pt;}
.y1d59_c00001{bottom:487.174160pt;}
.ye5b_c00001{bottom:487.174267pt;}
.ye7c_c00001{bottom:487.174400pt;}
.y150b_c00001{bottom:487.174547pt;}
.y1696_c00001{bottom:487.174813pt;}
.y1c1a_c00001{bottom:487.174880pt;}
.y17c6_c00001{bottom:487.175080pt;}
.y1665_c00001{bottom:487.175213pt;}
.yebb_c00001{bottom:487.175227pt;}
.ye97_c00001{bottom:487.175333pt;}
.y100f_c00001{bottom:487.175360pt;}
.y1924_c00001{bottom:487.175480pt;}
.yf81_c00001{bottom:487.175493pt;}
.y1416_c00001{bottom:487.175613pt;}
.yfa9_c00001{bottom:487.175760pt;}
.y159e_c00001{bottom:487.176280pt;}
.y18c1_c00001{bottom:487.176413pt;}
.y145a_c00001{bottom:487.176813pt;}
.y1c41_c00001{bottom:487.176880pt;}
.y1480_c00001{bottom:487.176947pt;}
.y16ea_c00001{bottom:487.177080pt;}
.y1e5f_c00001{bottom:487.177227pt;}
.y13f1_c00001{bottom:487.177347pt;}
.y14ab_c00001{bottom:487.177480pt;}
.y1577_c00001{bottom:487.177613pt;}
.yfcb_c00001{bottom:487.177760pt;}
.y1736_c00001{bottom:487.178013pt;}
.y1e01_c00001{bottom:487.179093pt;}
.y170b_c00001{bottom:487.179213pt;}
.y1dc9_c00001{bottom:487.179227pt;}
.yee2_c00001{bottom:487.179893pt;}
.y1d7d_c00001{bottom:487.180160pt;}
.y1e31_c00001{bottom:487.180427pt;}
.y1ea2_c00001{bottom:487.181227pt;}
.y1068_c00001{bottom:487.181760pt;}
.y1146_c00001{bottom:487.333853pt;}
.y1cb4_c00001{bottom:488.050667pt;}
.y10c0_c00001{bottom:488.078667pt;}
.y735_c00001{bottom:488.225467pt;}
.y13b3_c00001{bottom:488.293560pt;}
.y70b_c00001{bottom:488.388000pt;}
.y8f5_c00001{bottom:488.705733pt;}
.y196_c00001{bottom:488.774133pt;}
.y5d3_c00001{bottom:489.186667pt;}
.y193c_c00001{bottom:489.195733pt;}
.y176f_c00001{bottom:489.196267pt;}
.y12ea_c00001{bottom:489.198400pt;}
.y1102_c00001{bottom:489.199067pt;}
.y11da_c00001{bottom:489.250747pt;}
.y72_c00001{bottom:489.494667pt;}
.y9c4_c00001{bottom:489.506400pt;}
.y13cf_c00001{bottom:489.575333pt;}
.y120a_c00001{bottom:489.677440pt;}
.y532_c00001{bottom:490.146400pt;}
.y1538_c00001{bottom:490.370453pt;}
.y1d9c_c00001{bottom:490.370560pt;}
.y1b0_c00001{bottom:490.375067pt;}
.y1ca_c00001{bottom:490.376267pt;}
.y1e4_c00001{bottom:490.377467pt;}
.y1fe_c00001{bottom:490.378667pt;}
.y1671_c00001{bottom:490.642547pt;}
.y15ab_c00001{bottom:490.643613pt;}
.y1467_c00001{bottom:490.644147pt;}
.y13fe_c00001{bottom:490.644680pt;}
.y1962_c00001{bottom:490.645213pt;}
.y940_c00001{bottom:490.786000pt;}
.y1234_c00001{bottom:490.798147pt;}
.y6e4_c00001{bottom:491.105867pt;}
.y8da_c00001{bottom:491.108000pt;}
.yc61_c00001{bottom:491.169613pt;}
.ybd8_c00001{bottom:491.171467pt;}
.yc35_c00001{bottom:491.172013pt;}
.y5b9_c00001{bottom:491.266667pt;}
.y87_c00001{bottom:492.374667pt;}
.y8ba_c00001{bottom:492.705467pt;}
.yb00_c00001{bottom:493.091067pt;}
.yaee_c00001{bottom:493.091467pt;}
.yab9_c00001{bottom:493.094133pt;}
.yac4_c00001{bottom:493.094667pt;}
.y1a13_c00001{bottom:493.308667pt;}
.y1a84_c00001{bottom:493.309000pt;}
.y1a61_c00001{bottom:493.310867pt;}
.ydd9_c00001{bottom:493.412360pt;}
.y1339_c00001{bottom:493.412413pt;}
.yc05_c00001{bottom:493.571120pt;}
.yc8f_c00001{bottom:493.572133pt;}
.yca0_c00001{bottom:493.572160pt;}
.ycb5_c00001{bottom:493.572720pt;}
.ycc8_c00001{bottom:493.572853pt;}
.y1851_c00001{bottom:493.790440pt;}
.yada_c00001{bottom:494.213867pt;}
.y95d_c00001{bottom:494.306133pt;}
.y1a31_c00001{bottom:494.428640pt;}
.y758_c00001{bottom:494.468267pt;}
.y23c_c00001{bottom:494.693467pt;}
.y24e_c00001{bottom:494.694133pt;}
.y312_c00001{bottom:494.720667pt;}
.y466_c00001{bottom:495.266667pt;}
.y9a9_c00001{bottom:495.586667pt;}
.y3f2_c00001{bottom:496.226667pt;}
.y66c_c00001{bottom:496.548000pt;}
.ya00_c00001{bottom:497.250667pt;}
.ya78_c00001{bottom:497.251227pt;}
.ya59_c00001{bottom:497.252213pt;}
.ya34_c00001{bottom:497.252800pt;}
.y1d3a_c00001{bottom:498.477120pt;}
.y1ad3_c00001{bottom:498.478053pt;}
.y971_c00001{bottom:498.625600pt;}
.y7ec_c00001{bottom:498.786800pt;}
.y89b_c00001{bottom:499.266000pt;}
.y68f_c00001{bottom:500.066667pt;}
.yd73_c00001{bottom:500.076200pt;}
.y1b52_c00001{bottom:500.076333pt;}
.y1a11_c00001{bottom:500.076613pt;}
.y1cf9_c00001{bottom:500.076733pt;}
.yf4b_c00001{bottom:500.078667pt;}
.y22e_c00001{bottom:500.294800pt;}
.y305_c00001{bottom:500.321600pt;}
.y337_c00001{bottom:500.413867pt;}
.y14c_c00001{bottom:500.506400pt;}
.y1176_c00001{bottom:500.611440pt;}
.y1127_c00001{bottom:500.613333pt;}
.y119a_c00001{bottom:500.663973pt;}
.y1218_c00001{bottom:500.664773pt;}
.y1262_c00001{bottom:500.665973pt;}
.y992_c00001{bottom:500.867200pt;}
.y11d9_c00001{bottom:501.090853pt;}
.y1bc1_c00001{bottom:501.248533pt;}
.y17ff_c00001{bottom:501.250853pt;}
.y1366_c00001{bottom:501.250960pt;}
.y182a_c00001{bottom:501.250987pt;}
.yd8c_c00001{bottom:501.252267pt;}
.y1b96_c00001{bottom:501.252400pt;}
.y154b_c00001{bottom:501.252827pt;}
.y16cc_c00001{bottom:501.253093pt;}
.y14e0_c00001{bottom:501.253227pt;}
.y1326_c00001{bottom:501.253333pt;}
.y18e3_c00001{bottom:501.253360pt;}
.ye06_c00001{bottom:501.253427pt;}
.y17b4_c00001{bottom:501.253893pt;}
.ydad_c00001{bottom:501.254000pt;}
.y1392_c00001{bottom:501.254160pt;}
.y1c80_c00001{bottom:501.254493pt;}
.ye30_c00001{bottom:501.254627pt;}
.y1622_c00001{bottom:501.255227pt;}
.y877_c00001{bottom:501.345467pt;}
.yd9_c00001{bottom:501.533067pt;}
.yf58_c00001{bottom:501.573093pt;}
.y1f0a_c00001{bottom:501.573280pt;}
.y1ed1_c00001{bottom:501.573413pt;}
.y15ed_c00001{bottom:501.574013pt;}
.y1d58_c00001{bottom:501.574160pt;}
.ye5a_c00001{bottom:501.574267pt;}
.ye7b_c00001{bottom:501.574400pt;}
.y150a_c00001{bottom:501.574547pt;}
.y1695_c00001{bottom:501.574813pt;}
.y1c19_c00001{bottom:501.574880pt;}
.y17c5_c00001{bottom:501.575080pt;}
.y1664_c00001{bottom:501.575213pt;}
.yeba_c00001{bottom:501.575227pt;}
.ye96_c00001{bottom:501.575333pt;}
.y100e_c00001{bottom:501.575360pt;}
.y1871_c00001{bottom:501.575373pt;}
.y1923_c00001{bottom:501.575480pt;}
.yf80_c00001{bottom:501.575493pt;}
.y1892_c00001{bottom:501.575507pt;}
.y1415_c00001{bottom:501.575613pt;}
.yfa8_c00001{bottom:501.575760pt;}
.y159d_c00001{bottom:501.576280pt;}
.y18c0_c00001{bottom:501.576413pt;}
.y16e9_c00001{bottom:501.576547pt;}
.y1459_c00001{bottom:501.576813pt;}
.y1c40_c00001{bottom:501.576880pt;}
.y147f_c00001{bottom:501.576947pt;}
.y196c_c00001{bottom:501.577080pt;}
.y1e5e_c00001{bottom:501.577227pt;}
.y13f0_c00001{bottom:501.577347pt;}
.y14aa_c00001{bottom:501.577480pt;}
.y1576_c00001{bottom:501.577613pt;}
.yfca_c00001{bottom:501.577760pt;}
.y1735_c00001{bottom:501.578013pt;}
.y1e00_c00001{bottom:501.579093pt;}
.y170a_c00001{bottom:501.579213pt;}
.y1dc8_c00001{bottom:501.579227pt;}
.yee1_c00001{bottom:501.579893pt;}
.y1d7c_c00001{bottom:501.580160pt;}
.y1e30_c00001{bottom:501.580427pt;}
.y1ea1_c00001{bottom:501.581227pt;}
.y1067_c00001{bottom:501.581760pt;}
.y1145_c00001{bottom:501.733853pt;}
.y166_c00001{bottom:501.986667pt;}
.y1537_c00001{bottom:502.210560pt;}
.y1d9b_c00001{bottom:502.210667pt;}
.y1233_c00001{bottom:502.638253pt;}
.y1841_c00001{bottom:502.693560pt;}
.y3a_c00001{bottom:502.934667pt;}
.y9e6_c00001{bottom:502.973333pt;}
.y835_c00001{bottom:503.613733pt;}
.ydd8_c00001{bottom:503.652467pt;}
.y1338_c00001{bottom:503.652520pt;}
.yb66_c00001{bottom:503.867893pt;}
.y55b_c00001{bottom:503.933333pt;}
.y1850_c00001{bottom:503.975333pt;}
.y1209_c00001{bottom:504.130107pt;}
.y71_c00001{bottom:504.534667pt;}
.y17a6_c00001{bottom:504.720960pt;}
.y4f_c00001{bottom:504.854667pt;}
.y187e_c00001{bottom:505.043373pt;}
.yc04_c00001{bottom:505.091427pt;}
.ye0_c00001{bottom:505.186533pt;}
.ye8_c00001{bottom:505.187467pt;}
.yf2_c00001{bottom:505.187600pt;}
.yfc_c00001{bottom:505.187733pt;}
.y106_c00001{bottom:505.188267pt;}
.y110_c00001{bottom:505.188400pt;}
.y6ba_c00001{bottom:505.533867pt;}
.y393_c00001{bottom:505.693333pt;}
.y7b3_c00001{bottom:506.174267pt;}
.y70a_c00001{bottom:506.334000pt;}
.y775_c00001{bottom:506.973467pt;}
.y86_c00001{bottom:507.414667pt;}
.yaed_c00001{bottom:507.491467pt;}
.yab8_c00001{bottom:507.494133pt;}
.yac3_c00001{bottom:507.494667pt;}
.yaff_c00001{bottom:507.546267pt;}
.y1a12_c00001{bottom:507.708667pt;}
.y1a83_c00001{bottom:507.709000pt;}
.y1a60_c00001{bottom:507.710333pt;}
.y811_c00001{bottom:507.934133pt;}
.yc8e_c00001{bottom:507.972133pt;}
.yc9f_c00001{bottom:507.972160pt;}
.ycb4_c00001{bottom:507.972720pt;}
.ycc7_c00001{bottom:507.972853pt;}
.y852_c00001{bottom:508.412533pt;}
.yad9_c00001{bottom:508.613867pt;}
.y26a_c00001{bottom:508.734533pt;}
.y1a30_c00001{bottom:508.828640pt;}
.y531_c00001{bottom:508.893333pt;}
.y414_c00001{bottom:509.693333pt;}
.y734_c00001{bottom:510.653067pt;}
.y915_c00001{bottom:510.813333pt;}
.yba7_c00001{bottom:511.648373pt;}
.y9ff_c00001{bottom:511.650667pt;}
.ya58_c00001{bottom:511.652213pt;}
.y1cb3_c00001{bottom:511.680000pt;}
.ybaa_c00001{bottom:511.703040pt;}
.ya77_c00001{bottom:511.706427pt;}
.y277_c00001{bottom:511.707867pt;}
.ya33_c00001{bottom:511.708000pt;}
.y283_c00001{bottom:511.708667pt;}
.y28f_c00001{bottom:511.709467pt;}
.y29b_c00001{bottom:511.709867pt;}
.y342_c00001{bottom:511.840933pt;}
.y93f_c00001{bottom:511.933333pt;}
.y197_c00001{bottom:512.667333pt;}
.ybc7_c00001{bottom:512.770507pt;}
.yc34_c00001{bottom:512.877213pt;}
.ybd7_c00001{bottom:512.879867pt;}
.y11d8_c00001{bottom:512.930440pt;}
.y6e3_c00001{bottom:513.533467pt;}
.y1536_c00001{bottom:514.050667pt;}
.yb65_c00001{bottom:514.108000pt;}
.y1b1_c00001{bottom:514.308400pt;}
.y1cb_c00001{bottom:514.309600pt;}
.y1e5_c00001{bottom:514.310800pt;}
.y1ff_c00001{bottom:514.312000pt;}
.y1199_c00001{bottom:515.063973pt;}
.y1217_c00001{bottom:515.064773pt;}
.y1261_c00001{bottom:515.065973pt;}
.y1175_c00001{bottom:515.066640pt;}
.y1126_c00001{bottom:515.068533pt;}
.yba3_c00001{bottom:515.168107pt;}
.y1337_c00001{bottom:515.172307pt;}
.yc03_c00001{bottom:515.278933pt;}
.y1232_c00001{bottom:515.330440pt;}
.yd8b_c00001{bottom:515.492400pt;}
.y1d39_c00001{bottom:515.968320pt;}
.y1d2b_c00001{bottom:515.968853pt;}
.y1ad2_c00001{bottom:515.969253pt;}
.y1ac6_c00001{bottom:515.969787pt;}
.y1aaa_c00001{bottom:515.970667pt;}
.y1f09_c00001{bottom:515.972747pt;}
.yf57_c00001{bottom:515.973093pt;}
.y1a9d_c00001{bottom:515.973333pt;}
.y1ed0_c00001{bottom:515.973413pt;}
.y15ec_c00001{bottom:515.974013pt;}
.y1d57_c00001{bottom:515.974160pt;}
.ye59_c00001{bottom:515.974267pt;}
.ye7a_c00001{bottom:515.974400pt;}
.y1509_c00001{bottom:515.974547pt;}
.y1694_c00001{bottom:515.974813pt;}
.y1c18_c00001{bottom:515.974880pt;}
.y17c4_c00001{bottom:515.975080pt;}
.y1663_c00001{bottom:515.975213pt;}
.yeb9_c00001{bottom:515.975227pt;}
.ye95_c00001{bottom:515.975333pt;}
.y100d_c00001{bottom:515.975360pt;}
.y1870_c00001{bottom:515.975373pt;}
.y1922_c00001{bottom:515.975480pt;}
.yf7f_c00001{bottom:515.975493pt;}
.y1891_c00001{bottom:515.975507pt;}
.y1414_c00001{bottom:515.975613pt;}
.y159c_c00001{bottom:515.975747pt;}
.yfa7_c00001{bottom:515.975760pt;}
.y16e8_c00001{bottom:515.976013pt;}
.y1458_c00001{bottom:515.976280pt;}
.y18bf_c00001{bottom:515.976413pt;}
.y196b_c00001{bottom:515.976547pt;}
.y13ef_c00001{bottom:515.976813pt;}
.y1c3f_c00001{bottom:515.976880pt;}
.y147e_c00001{bottom:515.976947pt;}
.y1e5d_c00001{bottom:515.977227pt;}
.y14a9_c00001{bottom:515.977480pt;}
.y1575_c00001{bottom:515.977613pt;}
.yfc9_c00001{bottom:515.977760pt;}
.y1734_c00001{bottom:515.978013pt;}
.y1dc7_c00001{bottom:515.978160pt;}
.yee0_c00001{bottom:515.978827pt;}
.y1dff_c00001{bottom:515.979093pt;}
.y1709_c00001{bottom:515.979213pt;}
.y1e2f_c00001{bottom:515.979360pt;}
.y1d7b_c00001{bottom:515.980160pt;}
.y1ea0_c00001{bottom:515.981227pt;}
.y1066_c00001{bottom:515.981760pt;}
.y1144_c00001{bottom:516.189053pt;}
.y8f4_c00001{bottom:516.253067pt;}
.y9c3_c00001{bottom:517.053333pt;}
.y585_c00001{bottom:517.213333pt;}
.y1958_c00001{bottom:517.304267pt;}
.y178b_c00001{bottom:517.305333pt;}
.y336_c00001{bottom:517.307067pt;}
.y111c_c00001{bottom:517.307813pt;}
.y1305_c00001{bottom:517.307867pt;}
.y7eb_c00001{bottom:518.334133pt;}
.y1ab8_c00001{bottom:518.371120pt;}
.ydd7_c00001{bottom:518.427533pt;}
.y8d9_c00001{bottom:518.653467pt;}
.y542_c00001{bottom:518.973333pt;}
.y1cb0_c00001{bottom:519.080320pt;}
.y43f_c00001{bottom:519.293333pt;}
.y757_c00001{bottom:519.295333pt;}
.y9a8_c00001{bottom:519.613333pt;}
.y9_c00001{bottom:520.854667pt;}
.y3c0_c00001{bottom:520.893333pt;}
.y1a2f_c00001{bottom:521.680200pt;}
.yafe_c00001{bottom:521.946267pt;}
.yaec_c00001{bottom:521.946667pt;}
.yab7_c00001{bottom:521.948800pt;}
.yac2_c00001{bottom:521.949333pt;}
.yce9_c00001{bottom:522.211583pt;}
.yc8d_c00001{bottom:522.372133pt;}
.ycb3_c00001{bottom:522.372720pt;}
.yc9e_c00001{bottom:522.427360pt;}
.ycc6_c00001{bottom:522.428053pt;}
.y14d_c00001{bottom:522.466800pt;}
.y502_c00001{bottom:522.493333pt;}
.y4e_c00001{bottom:522.614667pt;}
.y17fe_c00001{bottom:522.958720pt;}
.y1365_c00001{bottom:522.958827pt;}
.y1829_c00001{bottom:522.959387pt;}
.y130a_c00001{bottom:522.959600pt;}
.y154a_c00001{bottom:522.960693pt;}
.y16cb_c00001{bottom:522.960960pt;}
.y14df_c00001{bottom:522.961093pt;}
.y1325_c00001{bottom:522.961200pt;}
.y17b3_c00001{bottom:522.961227pt;}
.y1391_c00001{bottom:522.962027pt;}
.y1621_c00001{bottom:522.963093pt;}
.y231_c00001{bottom:523.041733pt;}
.y308_c00001{bottom:523.068533pt;}
.y167_c00001{bottom:523.933600pt;}
.y179_c00001{bottom:523.934000pt;}
.y9e5_c00001{bottom:524.093333pt;}
.y709_c00001{bottom:524.253333pt;}
.y1e_c00001{bottom:524.374667pt;}
.y876_c00001{bottom:524.573067pt;}
.y62f_c00001{bottom:524.573333pt;}
.y6b9_c00001{bottom:525.053600pt;}
.y68e_c00001{bottom:525.054133pt;}
.y1336_c00001{bottom:525.359813pt;}
.yca_c00001{bottom:525.440000pt;}
.y1bc0_c00001{bottom:526.208400pt;}
.y1b95_c00001{bottom:526.212267pt;}
.ye05_c00001{bottom:526.213293pt;}
.ydac_c00001{bottom:526.213867pt;}
.y1c7f_c00001{bottom:526.214360pt;}
.ye2f_c00001{bottom:526.214493pt;}
.y970_c00001{bottom:526.334000pt;}
.y17a5_c00001{bottom:526.428293pt;}
.y9fe_c00001{bottom:526.691743pt;}
.y89a_c00001{bottom:526.973333pt;}
.yc33_c00001{bottom:527.277213pt;}
.ybd6_c00001{bottom:527.279867pt;}
.yc60_c00001{bottom:527.329480pt;}
.yd8a_c00001{bottom:527.332507pt;}
.y530_c00001{bottom:527.613067pt;}
.y851_c00001{bottom:527.932800pt;}
.yb6_c00001{bottom:527.973600pt;}
.yc0_c00001{bottom:527.973867pt;}
.y8b9_c00001{bottom:528.412800pt;}
.yc02_c00001{bottom:528.451333pt;}
.y834_c00001{bottom:528.573600pt;}
.y991_c00001{bottom:528.574533pt;}
.ydd6_c00001{bottom:528.612427pt;}
.y95c_c00001{bottom:528.893600pt;}
.y353_c00001{bottom:529.026800pt;}
.y1198_c00001{bottom:529.463973pt;}
.y1216_c00001{bottom:529.464773pt;}
.y1260_c00001{bottom:529.465973pt;}
.y1174_c00001{bottom:529.466640pt;}
.y1125_c00001{bottom:529.468533pt;}
.y1a5f_c00001{bottom:529.470733pt;}
.y774_c00001{bottom:529.533333pt;}
.y1bb5_c00001{bottom:529.675333pt;}
.ye24_c00001{bottom:529.681160pt;}
.y1d2a_c00001{bottom:530.368853pt;}
.y1ac5_c00001{bottom:530.369787pt;}
.y1aa9_c00001{bottom:530.370667pt;}
.y11d0_c00001{bottom:530.371107pt;}
.y11b7_c00001{bottom:530.371733pt;}
.ye58_c00001{bottom:530.372667pt;}
.ye79_c00001{bottom:530.372800pt;}
.yf56_c00001{bottom:530.373093pt;}
.y13b2_c00001{bottom:530.373733pt;}
.y1d56_c00001{bottom:530.374160pt;}
.y1c17_c00001{bottom:530.374880pt;}
.y159b_c00001{bottom:530.375213pt;}
.yeb8_c00001{bottom:530.375227pt;}
.y186f_c00001{bottom:530.375373pt;}
.y1457_c00001{bottom:530.375747pt;}
.yfa6_c00001{bottom:530.375760pt;}
.y13ee_c00001{bottom:530.376280pt;}
.y1d38_c00001{bottom:530.423520pt;}
.y1ad1_c00001{bottom:530.424453pt;}
.y11d7_c00001{bottom:530.425773pt;}
.y1f08_c00001{bottom:530.426880pt;}
.y100c_c00001{bottom:530.428027pt;}
.y1ecf_c00001{bottom:530.428080pt;}
.yf7e_c00001{bottom:530.428160pt;}
.y15eb_c00001{bottom:530.429213pt;}
.y1c3e_c00001{bottom:530.429547pt;}
.y1508_c00001{bottom:530.429747pt;}
.y1e5c_c00001{bottom:530.429893pt;}
.ye94_c00001{bottom:530.430000pt;}
.y1693_c00001{bottom:530.430013pt;}
.y1921_c00001{bottom:530.430147pt;}
.y1413_c00001{bottom:530.430280pt;}
.y1dc6_c00001{bottom:530.430293pt;}
.yfc8_c00001{bottom:530.430427pt;}
.y1890_c00001{bottom:530.430707pt;}
.yedf_c00001{bottom:530.430960pt;}
.y16e7_c00001{bottom:530.431213pt;}
.y1e2e_c00001{bottom:530.431493pt;}
.y18be_c00001{bottom:530.431613pt;}
.y196a_c00001{bottom:530.431747pt;}
.y1dfe_c00001{bottom:530.431760pt;}
.y147d_c00001{bottom:530.432147pt;}
.y1574_c00001{bottom:530.432280pt;}
.y14a8_c00001{bottom:530.432680pt;}
.y1d7a_c00001{bottom:530.432827pt;}
.y1733_c00001{bottom:530.433213pt;}
.y1708_c00001{bottom:530.433880pt;}
.y1e9f_c00001{bottom:530.433893pt;}
.y1065_c00001{bottom:530.434427pt;}
.y1143_c00001{bottom:530.589053pt;}
.y1caf_c00001{bottom:530.919907pt;}
.y7b2_c00001{bottom:530.974267pt;}
.y1ab7_c00001{bottom:531.547680pt;}
.y93e_c00001{bottom:531.613867pt;}
.y1a2e_c00001{bottom:531.867707pt;}
.yaa_c00001{bottom:532.733200pt;}
.y11c3_c00001{bottom:532.827640pt;}
.y733_c00001{bottom:533.212933pt;}
.y5d2_c00001{bottom:533.693333pt;}
.y379_c00001{bottom:534.239867pt;}
.y35a_c00001{bottom:534.240267pt;}
.y360_c00001{bottom:534.240533pt;}
.y364_c00001{bottom:534.240667pt;}
.y36f_c00001{bottom:534.240933pt;}
.y376_c00001{bottom:534.241200pt;}
.y23d_c00001{bottom:534.307067pt;}
.y244_c00001{bottom:534.307467pt;}
.y24f_c00001{bottom:534.307733pt;}
.y313_c00001{bottom:534.334267pt;}
.y70_c00001{bottom:534.614667pt;}
.y1cb2_c00001{bottom:535.360000pt;}
.y5b4_c00001{bottom:535.933333pt;}
.y6e2_c00001{bottom:536.093333pt;}
.yafd_c00001{bottom:536.346267pt;}
.yaeb_c00001{bottom:536.346667pt;}
.yab6_c00001{bottom:536.348800pt;}
.y198_c00001{bottom:536.613733pt;}
.yc8c_c00001{bottom:536.827333pt;}
.yc9d_c00001{bottom:536.827360pt;}
.ycb2_c00001{bottom:536.827920pt;}
.ycc5_c00001{bottom:536.828053pt;}
.y1309_c00001{bottom:537.252267pt;}
.yad8_c00001{bottom:537.468533pt;}
.y85_c00001{bottom:537.494667pt;}
.y810_c00001{bottom:537.853867pt;}
.y1b2_c00001{bottom:538.214667pt;}
.y1cc_c00001{bottom:538.215867pt;}
.y1e6_c00001{bottom:538.217067pt;}
.y200_c00001{bottom:538.218267pt;}
.y8_c00001{bottom:538.454667pt;}
.y39_c00001{bottom:538.774667pt;}
.y756_c00001{bottom:538.815067pt;}
.y7ea_c00001{bottom:539.293467pt;}
.y108a_c00001{bottom:539.439183pt;}
.y60a_c00001{bottom:539.773333pt;}
.y230_c00001{bottom:539.907867pt;}
.y307_c00001{bottom:539.935200pt;}
.y1335_c00001{bottom:540.132213pt;}
.y9c2_c00001{bottom:540.253333pt;}
.y4d_c00001{bottom:540.374667pt;}
.yd89_c00001{bottom:540.452293pt;}
.yce8_c00001{bottom:541.199049pt;}
.y26c_c00001{bottom:541.601200pt;}
.yc5f_c00001{bottom:541.729480pt;}
.yc32_c00001{bottom:541.732413pt;}
.ybd5_c00001{bottom:541.732533pt;}
.y339_c00001{bottom:541.760267pt;}
.y1d_c00001{bottom:541.974667pt;}
.y708_c00001{bottom:542.173200pt;}
.y103d_c00001{bottom:542.450667pt;}
.yc01_c00001{bottom:542.851333pt;}
.ydd5_c00001{bottom:543.387493pt;}
.y8f3_c00001{bottom:543.933333pt;}
.y14e_c00001{bottom:544.413200pt;}
.y6b8_c00001{bottom:544.573333pt;}
.y1d37_c00001{bottom:544.823520pt;}
.y1d29_c00001{bottom:544.824053pt;}
.y1ad0_c00001{bottom:544.824453pt;}
.y1ac4_c00001{bottom:544.824987pt;}
.y1aa8_c00001{bottom:544.825333pt;}
.y11d6_c00001{bottom:544.825773pt;}
.y1f07_c00001{bottom:544.826880pt;}
.y11cf_c00001{bottom:544.827373pt;}
.y11b6_c00001{bottom:544.828000pt;}
.y100b_c00001{bottom:544.828027pt;}
.y1ece_c00001{bottom:544.828080pt;}
.yf7d_c00001{bottom:544.828160pt;}
.yf55_c00001{bottom:544.828293pt;}
.ye57_c00001{bottom:544.828933pt;}
.ye78_c00001{bottom:544.829067pt;}
.y15ea_c00001{bottom:544.829213pt;}
.y1d55_c00001{bottom:544.829360pt;}
.y1c3d_c00001{bottom:544.829547pt;}
.y1507_c00001{bottom:544.829747pt;}
.y1e5b_c00001{bottom:544.829893pt;}
.ye93_c00001{bottom:544.830000pt;}
.y1692_c00001{bottom:544.830013pt;}
.y1c16_c00001{bottom:544.830080pt;}
.y1920_c00001{bottom:544.830147pt;}
.y1412_c00001{bottom:544.830280pt;}
.y1dc5_c00001{bottom:544.830293pt;}
.y159a_c00001{bottom:544.830413pt;}
.yeb7_c00001{bottom:544.830427pt;}
.y186e_c00001{bottom:544.830573pt;}
.y16e6_c00001{bottom:544.830680pt;}
.y188f_c00001{bottom:544.830707pt;}
.y1456_c00001{bottom:544.830947pt;}
.yede_c00001{bottom:544.830960pt;}
.y1969_c00001{bottom:544.831213pt;}
.y13ed_c00001{bottom:544.831480pt;}
.y1e2d_c00001{bottom:544.831493pt;}
.y18bd_c00001{bottom:544.831613pt;}
.y1dfd_c00001{bottom:544.831760pt;}
.y147c_c00001{bottom:544.832147pt;}
.y1573_c00001{bottom:544.832280pt;}
.y14a7_c00001{bottom:544.832680pt;}
.y1d79_c00001{bottom:544.832827pt;}
.y1732_c00001{bottom:544.833213pt;}
.y1707_c00001{bottom:544.833347pt;}
.y1e9e_c00001{bottom:544.833893pt;}
.y1064_c00001{bottom:544.834427pt;}
.y9a7_c00001{bottom:544.893333pt;}
.y168_c00001{bottom:545.853333pt;}
.y11c2_c00001{bottom:545.947947pt;}
.y52f_c00001{bottom:546.172933pt;}
.y1ab6_c00001{bottom:547.226347pt;}
.y9fd_c00001{bottom:547.279209pt;}
.y875_c00001{bottom:547.773067pt;}
.y17fd_c00001{bottom:547.971253pt;}
.y1364_c00001{bottom:547.971360pt;}
.y1828_c00001{bottom:547.971920pt;}
.y1549_c00001{bottom:547.973227pt;}
.y16ca_c00001{bottom:547.973493pt;}
.y14de_c00001{bottom:547.973627pt;}
.y18e2_c00001{bottom:547.973760pt;}
.y1324_c00001{bottom:547.974267pt;}
.y17b2_c00001{bottom:547.974293pt;}
.y1390_c00001{bottom:547.974560pt;}
.y1620_c00001{bottom:547.975627pt;}
.y9e4_c00001{bottom:548.093333pt;}
.y167f_c00001{bottom:548.293347pt;}
.y15de_c00001{bottom:548.294413pt;}
.y55a_c00001{bottom:548.413333pt;}
.y1308_c00001{bottom:549.039760pt;}
.y6f_c00001{bottom:549.654667pt;}
.y68d_c00001{bottom:549.854133pt;}
.y390_c00001{bottom:550.333333pt;}
.y1334_c00001{bottom:550.372320pt;}
.y484_c00001{bottom:550.652000pt;}
.yafc_c00001{bottom:550.746267pt;}
.yaea_c00001{bottom:550.746667pt;}
.yab5_c00001{bottom:550.748267pt;}
.y1173_c00001{bottom:551.171840pt;}
.y1b94_c00001{bottom:551.172133pt;}
.ye04_c00001{bottom:551.173160pt;}
.ydab_c00001{bottom:551.173733pt;}
.y1a5e_c00001{bottom:551.175400pt;}
.y1bbf_c00001{bottom:551.221467pt;}
.y1c7e_c00001{bottom:551.226893pt;}
.ye2e_c00001{bottom:551.227027pt;}
.y1a82_c00001{bottom:551.228733pt;}
.y181e_c00001{bottom:551.437920pt;}
.y16c0_c00001{bottom:551.438293pt;}
.y1385_c00001{bottom:551.438827pt;}
.y1615_c00001{bottom:551.439893pt;}
.y9c_c00001{bottom:551.840000pt;}
.yc82_c00001{bottom:551.867093pt;}
.yad7_c00001{bottom:551.868533pt;}
.y773_c00001{bottom:551.933333pt;}
.yd88_c00001{bottom:552.292400pt;}
.y84_c00001{bottom:552.534667pt;}
.y850_c00001{bottom:552.892667pt;}
.y278_c00001{bottom:552.987600pt;}
.y284_c00001{bottom:552.988400pt;}
.y290_c00001{bottom:552.989200pt;}
.y29c_c00001{bottom:552.989600pt;}
.y343_c00001{bottom:553.146667pt;}
.y2ac_c00001{bottom:553.533467pt;}
.ydd4_c00001{bottom:553.627600pt;}
.y96f_c00001{bottom:553.853333pt;}
.y413_c00001{bottom:554.173333pt;}
.y8d8_c00001{bottom:554.333733pt;}
.y899_c00001{bottom:554.493600pt;}
.y1bb4_c00001{bottom:554.688400pt;}
.ye23_c00001{bottom:554.693693pt;}
.y833_c00001{bottom:554.813733pt;}
.ye9_c00001{bottom:555.133867pt;}
.yf3_c00001{bottom:555.134000pt;}
.yfd_c00001{bottom:555.134133pt;}
.y107_c00001{bottom:555.134667pt;}
.y111_c00001{bottom:555.134800pt;}
.y3ef_c00001{bottom:555.452000pt;}
.y7b1_c00001{bottom:555.934667pt;}
.y7_c00001{bottom:556.054667pt;}
.y990_c00001{bottom:556.094800pt;}
.yc5e_c00001{bottom:556.129480pt;}
.yc31_c00001{bottom:556.129747pt;}
.ybd4_c00001{bottom:556.132533pt;}
.yf15_c00001{bottom:556.160000pt;}
.y38_c00001{bottom:556.694667pt;}
.yc00_c00001{bottom:557.251333pt;}
.y90c_c00001{bottom:557.533333pt;}
.y4c_c00001{bottom:558.134667pt;}
.yce7_c00001{bottom:558.426649pt;}
.y26b_c00001{bottom:558.467867pt;}
.y6e1_c00001{bottom:558.493333pt;}
.y338_c00001{bottom:558.627467pt;}
.y64f_c00001{bottom:558.813333pt;}
.y66b_c00001{bottom:558.973333pt;}
.y9fc_c00001{bottom:559.119316pt;}
.y93d_c00001{bottom:559.134133pt;}
.y1d36_c00001{bottom:559.223520pt;}
.y1d28_c00001{bottom:559.224053pt;}
.y1acf_c00001{bottom:559.224453pt;}
.y1ac3_c00001{bottom:559.224987pt;}
.y1aa7_c00001{bottom:559.225333pt;}
.y11d5_c00001{bottom:559.225773pt;}
.y11ce_c00001{bottom:559.226307pt;}
.y11b5_c00001{bottom:559.226400pt;}
.y1f06_c00001{bottom:559.226880pt;}
.ye56_c00001{bottom:559.227333pt;}
.ye77_c00001{bottom:559.227467pt;}
.ye92_c00001{bottom:559.227867pt;}
.y100a_c00001{bottom:559.228027pt;}
.y1ecd_c00001{bottom:559.228080pt;}
.yf7c_c00001{bottom:559.228160pt;}
.yf54_c00001{bottom:559.228293pt;}
.y13b1_c00001{bottom:559.228400pt;}
.y15e9_c00001{bottom:559.229213pt;}
.y1d54_c00001{bottom:559.229360pt;}
.y1c3c_c00001{bottom:559.229547pt;}
.y1506_c00001{bottom:559.229747pt;}
.yeb6_c00001{bottom:559.229893pt;}
.y1691_c00001{bottom:559.230013pt;}
.y1c15_c00001{bottom:559.230080pt;}
.y16e5_c00001{bottom:559.230147pt;}
.y1411_c00001{bottom:559.230280pt;}
.y1dc4_c00001{bottom:559.230293pt;}
.y1599_c00001{bottom:559.230413pt;}
.yfa5_c00001{bottom:559.230427pt;}
.y186d_c00001{bottom:559.230573pt;}
.y1968_c00001{bottom:559.230680pt;}
.y188e_c00001{bottom:559.230707pt;}
.y1455_c00001{bottom:559.230947pt;}
.yedd_c00001{bottom:559.230960pt;}
.y13ec_c00001{bottom:559.231480pt;}
.y1e2c_c00001{bottom:559.231493pt;}
.y15c1_c00001{bottom:559.231613pt;}
.y1dfc_c00001{bottom:559.231760pt;}
.y147b_c00001{bottom:559.232147pt;}
.y1572_c00001{bottom:559.232280pt;}
.y14a6_c00001{bottom:559.232680pt;}
.y1706_c00001{bottom:559.232813pt;}
.y1d78_c00001{bottom:559.232827pt;}
.y1731_c00001{bottom:559.233213pt;}
.y1e9d_c00001{bottom:559.233893pt;}
.y1063_c00001{bottom:559.234427pt;}
.y9bb_c00001{bottom:559.414667pt;}
.y1c_c00001{bottom:559.574667pt;}
.yda_c00001{bottom:559.680000pt;}
.y199_c00001{bottom:560.507467pt;}
.y1ab5_c00001{bottom:561.626347pt;}
.y11c1_c00001{bottom:561.626613pt;}
.y57f_c00001{bottom:561.852000pt;}
.y1b3_c00001{bottom:562.148000pt;}
.y1cd_c00001{bottom:562.149200pt;}
.y1e7_c00001{bottom:562.150400pt;}
.y201_c00001{bottom:562.151600pt;}
.y1307_c00001{bottom:562.212160pt;}
.y80f_c00001{bottom:562.653867pt;}
.y167e_c00001{bottom:562.693347pt;}
.y95b_c00001{bottom:563.293600pt;}
.y540_c00001{bottom:563.452000pt;}
.y56c_c00001{bottom:563.773333pt;}
.y755_c00001{bottom:563.774933pt;}
.y8b8_c00001{bottom:564.093067pt;}
.y6b7_c00001{bottom:564.093600pt;}
.y6e_c00001{bottom:564.694667pt;}
.y52e_c00001{bottom:564.893200pt;}
.yae9_c00001{bottom:565.146667pt;}
.ydd3_c00001{bottom:565.147387pt;}
.yab4_c00001{bottom:565.147733pt;}
.yafb_c00001{bottom:565.198400pt;}
.y609_c00001{bottom:565.213333pt;}
.y103c_c00001{bottom:566.080000pt;}
.y14f_c00001{bottom:566.373600pt;}
.y1cae_c00001{bottom:566.439640pt;}
.y4f0_c00001{bottom:567.133333pt;}
.y83_c00001{bottom:567.574667pt;}
.yad6_c00001{bottom:567.599200pt;}
.y169_c00001{bottom:567.813200pt;}
.yb08_c00001{bottom:568.667867pt;}
.y732_c00001{bottom:568.893200pt;}
.y9a6_c00001{bottom:568.893333pt;}
.y7e9_c00001{bottom:569.374133pt;}
.y68c_c00001{bottom:569.374400pt;}
.yc9c_c00001{bottom:570.052293pt;}
.yc5d_c00001{bottom:570.529480pt;}
.yc30_c00001{bottom:570.529747pt;}
.ybd3_c00001{bottom:570.532533pt;}
.y1cb1_c00001{bottom:570.828000pt;}
.y874_c00001{bottom:571.292800pt;}
.y464_c00001{bottom:571.452000pt;}
.y8f2_c00001{bottom:571.453067pt;}
.ybff_c00001{bottom:571.651333pt;}
.y9e3_c00001{bottom:572.093333pt;}
.y1197_c00001{bottom:572.929040pt;}
.y1215_c00001{bottom:572.929840pt;}
.y1bbe_c00001{bottom:572.929867pt;}
.y125f_c00001{bottom:572.931040pt;}
.y17fc_c00001{bottom:572.931120pt;}
.y1363_c00001{bottom:572.931227pt;}
.y1172_c00001{bottom:572.931707pt;}
.y1827_c00001{bottom:572.931787pt;}
.y1b93_c00001{bottom:572.932533pt;}
.y1548_c00001{bottom:572.933093pt;}
.y16c9_c00001{bottom:572.933360pt;}
.y14dd_c00001{bottom:572.933493pt;}
.ye03_c00001{bottom:572.933560pt;}
.yd87_c00001{bottom:572.933600pt;}
.y18e1_c00001{bottom:572.933627pt;}
.y1a81_c00001{bottom:572.933933pt;}
.y17b1_c00001{bottom:572.934160pt;}
.y1c7d_c00001{bottom:572.934227pt;}
.ye2d_c00001{bottom:572.934360pt;}
.y138f_c00001{bottom:572.934427pt;}
.y1a5d_c00001{bottom:572.935267pt;}
.y161f_c00001{bottom:572.935493pt;}
.y1d35_c00001{bottom:573.623520pt;}
.y1d27_c00001{bottom:573.624053pt;}
.y1ace_c00001{bottom:573.624453pt;}
.y1ac2_c00001{bottom:573.624987pt;}
.y1aa6_c00001{bottom:573.625333pt;}
.y11d4_c00001{bottom:573.625773pt;}
.y11cd_c00001{bottom:573.626307pt;}
.y11b4_c00001{bottom:573.626400pt;}
.y1f05_c00001{bottom:573.626880pt;}
.ye55_c00001{bottom:573.627333pt;}
.ye76_c00001{bottom:573.627467pt;}
.ye91_c00001{bottom:573.627867pt;}
.y1009_c00001{bottom:573.628027pt;}
.y1ecc_c00001{bottom:573.628080pt;}
.yf7b_c00001{bottom:573.628160pt;}
.yf53_c00001{bottom:573.628293pt;}
.y13b0_c00001{bottom:573.628400pt;}
.y15e8_c00001{bottom:573.629213pt;}
.y1d53_c00001{bottom:573.629360pt;}
.y1c3b_c00001{bottom:573.629547pt;}
.y16e4_c00001{bottom:573.629613pt;}
.y1505_c00001{bottom:573.629747pt;}
.yeb5_c00001{bottom:573.629893pt;}
.y1690_c00001{bottom:573.630013pt;}
.y1c14_c00001{bottom:573.630080pt;}
.y191f_c00001{bottom:573.630147pt;}
.y1410_c00001{bottom:573.630280pt;}
.y1dc3_c00001{bottom:573.630293pt;}
.y1598_c00001{bottom:573.630413pt;}
.yfc7_c00001{bottom:573.630427pt;}
.y186c_c00001{bottom:573.630573pt;}
.y188d_c00001{bottom:573.630707pt;}
.y1454_c00001{bottom:573.630947pt;}
.yedc_c00001{bottom:573.630960pt;}
.y15c0_c00001{bottom:573.631080pt;}
.y13eb_c00001{bottom:573.631480pt;}
.y1e2b_c00001{bottom:573.631493pt;}
.y18bc_c00001{bottom:573.631613pt;}
.y1dfb_c00001{bottom:573.631760pt;}
.y147a_c00001{bottom:573.632147pt;}
.y1571_c00001{bottom:573.632280pt;}
.y14a5_c00001{bottom:573.632680pt;}
.y1d77_c00001{bottom:573.632827pt;}
.y1730_c00001{bottom:573.633213pt;}
.y1e9c_c00001{bottom:573.633893pt;}
.y1062_c00001{bottom:573.634427pt;}
.y6_c00001{bottom:573.654667pt;}
.y1306_c00001{bottom:574.052267pt;}
.y772_c00001{bottom:574.333333pt;}
.y37_c00001{bottom:574.614667pt;}
.y707_c00001{bottom:575.133067pt;}
.ydd2_c00001{bottom:575.332800pt;}
.y9c1_c00001{bottom:575.453333pt;}
.y7b0_c00001{bottom:575.454400pt;}
.yce6_c00001{bottom:575.599049pt;}
.y9fb_c00001{bottom:575.651583pt;}
.y4b_c00001{bottom:575.894667pt;}
.y1ab4_c00001{bottom:576.079013pt;}
.y11c0_c00001{bottom:576.079280pt;}
.y181d_c00001{bottom:576.397787pt;}
.y16bf_c00001{bottom:576.398160pt;}
.y1384_c00001{bottom:576.398693pt;}
.y1614_c00001{bottom:576.399760pt;}
.y1c76_c00001{bottom:576.400760pt;}
.y167d_c00001{bottom:577.093347pt;}
.y1b_c00001{bottom:577.174667pt;}
.y84f_c00001{bottom:577.692667pt;}
.y3bf_c00001{bottom:577.853067pt;}
.y96e_c00001{bottom:577.853333pt;}
.yc8b_c00001{bottom:577.891333pt;}
.ycb1_c00001{bottom:577.892987pt;}
.y5d1_c00001{bottom:578.173333pt;}
.y1cad_c00001{bottom:578.279227pt;}
.y78d_c00001{bottom:578.493947pt;}
.y43c_c00001{bottom:578.652000pt;}
.y6d_c00001{bottom:579.734667pt;}
.yf14_c00001{bottom:579.840000pt;}
.yaae_c00001{bottom:580.239093pt;}
.y2ab_c00001{bottom:580.253200pt;}
.yc9b_c00001{bottom:580.292400pt;}
.y6e0_c00001{bottom:580.893333pt;}
.y898_c00001{bottom:582.173333pt;}
.y80e_c00001{bottom:582.174133pt;}
.y82_c00001{bottom:582.614667pt;}
.y4b9_c00001{bottom:583.133333pt;}
.y52d_c00001{bottom:583.612933pt;}
.y6b6_c00001{bottom:583.613333pt;}
.y8b7_c00001{bottom:583.773333pt;}
.y98f_c00001{bottom:583.774533pt;}
.y19a_c00001{bottom:584.453867pt;}
.y832_c00001{bottom:584.734000pt;}
.yc2f_c00001{bottom:584.929747pt;}
.ybd2_c00001{bottom:584.932533pt;}
.yc5c_c00001{bottom:584.982147pt;}
.y1b4_c00001{bottom:586.054800pt;}
.y1ce_c00001{bottom:586.056000pt;}
.y1e8_c00001{bottom:586.057200pt;}
.y202_c00001{bottom:586.058400pt;}
.ybfe_c00001{bottom:586.106533pt;}
.y93c_c00001{bottom:586.813867pt;}
.ydd1_c00001{bottom:586.852587pt;}
.y62c_c00001{bottom:586.973333pt;}
.y754_c00001{bottom:586.974933pt;}
.y1d34_c00001{bottom:588.076187pt;}
.y1d26_c00001{bottom:588.076720pt;}
.y1acd_c00001{bottom:588.077120pt;}
.y1ac1_c00001{bottom:588.077653pt;}
.y1aa5_c00001{bottom:588.078000pt;}
.y11cc_c00001{bottom:588.078440pt;}
.y11b3_c00001{bottom:588.079467pt;}
.y1f04_c00001{bottom:588.079947pt;}
.y1d09_c00001{bottom:588.080160pt;}
.ye54_c00001{bottom:588.080400pt;}
.ye75_c00001{bottom:588.080533pt;}
.y1008_c00001{bottom:588.080693pt;}
.y1f3e_c00001{bottom:588.080747pt;}
.yf7a_c00001{bottom:588.080827pt;}
.ye90_c00001{bottom:588.080933pt;}
.y1ecb_c00001{bottom:588.081147pt;}
.yf52_c00001{bottom:588.081360pt;}
.y13af_c00001{bottom:588.081467pt;}
.y15e7_c00001{bottom:588.081880pt;}
.y1e5a_c00001{bottom:588.082027pt;}
.y16e3_c00001{bottom:588.082280pt;}
.y1504_c00001{bottom:588.082413pt;}
.y1d52_c00001{bottom:588.082427pt;}
.yfc6_c00001{bottom:588.082560pt;}
.y1c3a_c00001{bottom:588.082613pt;}
.y168f_c00001{bottom:588.082680pt;}
.y1c13_c00001{bottom:588.082747pt;}
.y191e_c00001{bottom:588.082813pt;}
.y140f_c00001{bottom:588.082947pt;}
.yeb4_c00001{bottom:588.082960pt;}
.y186b_c00001{bottom:588.083240pt;}
.y188c_c00001{bottom:588.083373pt;}
.y1597_c00001{bottom:588.083480pt;}
.y1e92_c00001{bottom:588.083493pt;}
.yedb_c00001{bottom:588.083627pt;}
.y1453_c00001{bottom:588.084013pt;}
.y15bf_c00001{bottom:588.084147pt;}
.y1e2a_c00001{bottom:588.084160pt;}
.y18bb_c00001{bottom:588.084280pt;}
.y1dfa_c00001{bottom:588.084427pt;}
.y13ea_c00001{bottom:588.084547pt;}
.y1479_c00001{bottom:588.084813pt;}
.y14a4_c00001{bottom:588.085347pt;}
.y1d76_c00001{bottom:588.085493pt;}
.y172f_c00001{bottom:588.085880pt;}
.y1e9b_c00001{bottom:588.086560pt;}
.y1061_c00001{bottom:588.087093pt;}
.y150_c00001{bottom:588.293333pt;}
.y7e8_c00001{bottom:588.893467pt;}
.y68b_c00001{bottom:588.894667pt;}
.y103b_c00001{bottom:589.709333pt;}
.y16a_c00001{bottom:589.760133pt;}
.y8d7_c00001{bottom:589.853467pt;}
.y1cac_c00001{bottom:590.119333pt;}
.y1ab3_c00001{bottom:590.479013pt;}
.y11bf_c00001{bottom:590.479280pt;}
.y608_c00001{bottom:590.813333pt;}
.y731_c00001{bottom:591.453067pt;}
.yffe_c00001{bottom:591.548027pt;}
.y167c_c00001{bottom:591.548547pt;}
.yf71_c00001{bottom:591.549093pt;}
.y1db9_c00001{bottom:591.550827pt;}
.yed2_c00001{bottom:591.551360pt;}
.y1e21_c00001{bottom:591.551893pt;}
.y1443_c00001{bottom:591.628000pt;}
.yc8a_c00001{bottom:592.291333pt;}
.yc9a_c00001{bottom:592.292400pt;}
.ycc4_c00001{bottom:592.292587pt;}
.ycb0_c00001{bottom:592.292987pt;}
.yce5_c00001{bottom:592.826649pt;}
.y9fa_c00001{bottom:592.879183pt;}
.y559_c00001{bottom:592.893333pt;}
.y1bbd_c00001{bottom:594.689200pt;}
.y1196_c00001{bottom:594.689440pt;}
.y1214_c00001{bottom:594.689707pt;}
.y125e_c00001{bottom:594.690907pt;}
.y17fb_c00001{bottom:594.690987pt;}
.y1362_c00001{bottom:594.691093pt;}
.y1826_c00001{bottom:594.691120pt;}
.y1171_c00001{bottom:594.691573pt;}
.y1b92_c00001{bottom:594.692400pt;}
.y1547_c00001{bottom:594.692960pt;}
.y1c7c_c00001{bottom:594.693027pt;}
.ye2c_c00001{bottom:594.693160pt;}
.y16c8_c00001{bottom:594.693227pt;}
.y14dc_c00001{bottom:594.693360pt;}
.ye02_c00001{bottom:594.693427pt;}
.yd86_c00001{bottom:594.693467pt;}
.y18e0_c00001{bottom:594.693493pt;}
.y1a80_c00001{bottom:594.693800pt;}
.y17b0_c00001{bottom:594.694027pt;}
.y138e_c00001{bottom:594.694293pt;}
.y1a5c_c00001{bottom:594.695133pt;}
.y161e_c00001{bottom:594.695360pt;}
.y6c_c00001{bottom:594.774667pt;}
.y38f_c00001{bottom:594.813333pt;}
.y7af_c00001{bottom:594.973733pt;}
.y483_c00001{bottom:595.133333pt;}
.y9e2_c00001{bottom:596.093333pt;}
.y873_c00001{bottom:596.253200pt;}
.ydd0_c00001{bottom:597.092693pt;}
.y81_c00001{bottom:597.654667pt;}
.y95a_c00001{bottom:597.853467pt;}
.y1c75_c00001{bottom:598.161160pt;}
.yad5_c00001{bottom:598.426800pt;}
.y411_c00001{bottom:598.813333pt;}
.y8f1_c00001{bottom:599.133333pt;}
.yc5b_c00001{bottom:599.382147pt;}
.yc2e_c00001{bottom:599.384947pt;}
.ybd1_c00001{bottom:599.387200pt;}
.ybfd_c00001{bottom:600.506533pt;}
.y1ccb_c00001{bottom:601.280000pt;}
.y80d_c00001{bottom:601.853867pt;}
.y1cab_c00001{bottom:601.906827pt;}
.y8b6_c00001{bottom:602.172800pt;}
.y84e_c00001{bottom:602.172933pt;}
.y1d33_c00001{bottom:602.476187pt;}
.y1d25_c00001{bottom:602.476720pt;}
.y1acc_c00001{bottom:602.477120pt;}
.y1ac0_c00001{bottom:602.477653pt;}
.y1aa4_c00001{bottom:602.478000pt;}
.y11cb_c00001{bottom:602.478440pt;}
.y1f03_c00001{bottom:602.479413pt;}
.y11b2_c00001{bottom:602.479467pt;}
.ye74_c00001{bottom:602.480000pt;}
.y1d08_c00001{bottom:602.480160pt;}
.ye53_c00001{bottom:602.480400pt;}
.y1007_c00001{bottom:602.480693pt;}
.y1f3d_c00001{bottom:602.480747pt;}
.yf79_c00001{bottom:602.480827pt;}
.ye8f_c00001{bottom:602.480933pt;}
.y1eca_c00001{bottom:602.481147pt;}
.y15e6_c00001{bottom:602.481347pt;}
.yf51_c00001{bottom:602.481360pt;}
.y1647_c00001{bottom:602.481880pt;}
.y1e59_c00001{bottom:602.482027pt;}
.y16e2_c00001{bottom:602.482280pt;}
.y1503_c00001{bottom:602.482413pt;}
.yeb3_c00001{bottom:602.482427pt;}
.yfc5_c00001{bottom:602.482560pt;}
.y1c39_c00001{bottom:602.482613pt;}
.y168e_c00001{bottom:602.482680pt;}
.y1c12_c00001{bottom:602.482747pt;}
.y191d_c00001{bottom:602.482813pt;}
.y140e_c00001{bottom:602.482947pt;}
.y1dc2_c00001{bottom:602.482960pt;}
.y186a_c00001{bottom:602.483240pt;}
.y188b_c00001{bottom:602.483373pt;}
.y1596_c00001{bottom:602.483480pt;}
.yeda_c00001{bottom:602.483627pt;}
.y1452_c00001{bottom:602.484013pt;}
.y15be_c00001{bottom:602.484147pt;}
.y1e29_c00001{bottom:602.484160pt;}
.y18ba_c00001{bottom:602.484280pt;}
.y1df9_c00001{bottom:602.484427pt;}
.y13e9_c00001{bottom:602.484547pt;}
.y1478_c00001{bottom:602.484813pt;}
.y14a3_c00001{bottom:602.485347pt;}
.y1d75_c00001{bottom:602.485493pt;}
.y172e_c00001{bottom:602.485880pt;}
.y1e9a_c00001{bottom:602.486560pt;}
.y1060_c00001{bottom:602.487093pt;}
.yc1_c00001{bottom:602.493333pt;}
.y6b5_c00001{bottom:603.135467pt;}
.y250_c00001{bottom:603.453333pt;}
.yf13_c00001{bottom:603.469333pt;}
.y5f5_c00001{bottom:604.733867pt;}
.y1ab2_c00001{bottom:604.879013pt;}
.y11be_c00001{bottom:604.879280pt;}
.y1cca_c00001{bottom:605.330667pt;}
.y1efb_c00001{bottom:605.947547pt;}
.yffd_c00001{bottom:605.948027pt;}
.y167b_c00001{bottom:605.948547pt;}
.yf70_c00001{bottom:605.949093pt;}
.y1c31_c00001{bottom:605.950213pt;}
.y1db8_c00001{bottom:605.950827pt;}
.yed1_c00001{bottom:605.951360pt;}
.y1e20_c00001{bottom:605.951893pt;}
.yae8_c00001{bottom:606.211733pt;}
.yab3_c00001{bottom:606.212800pt;}
.yc89_c00001{bottom:606.691333pt;}
.yc99_c00001{bottom:606.692400pt;}
.ycc3_c00001{bottom:606.692587pt;}
.ycaf_c00001{bottom:606.692987pt;}
.y753_c00001{bottom:606.974933pt;}
.y53f_c00001{bottom:608.093333pt;}
.y19b_c00001{bottom:608.347600pt;}
.y7e7_c00001{bottom:608.413200pt;}
.y56b_c00001{bottom:608.413333pt;}
.y68a_c00001{bottom:608.414933pt;}
.ydcf_c00001{bottom:608.612480pt;}
.yad4_c00001{bottom:608.666387pt;}
.y897_c00001{bottom:609.693600pt;}
.y831_c00001{bottom:609.693867pt;}
.y1b5_c00001{bottom:609.988133pt;}
.y1cf_c00001{bottom:609.989333pt;}
.y1e9_c00001{bottom:609.990533pt;}
.y203_c00001{bottom:609.991733pt;}
.yce4_c00001{bottom:610.051583pt;}
.y9f9_c00001{bottom:610.106783pt;}
.y52c_c00001{bottom:610.173333pt;}
.y771_c00001{bottom:610.176267pt;}
.y151_c00001{bottom:610.239733pt;}
.y36_c00001{bottom:610.454667pt;}
.y98e_c00001{bottom:611.294800pt;}
.y4a_c00001{bottom:611.414667pt;}
.y501_c00001{bottom:611.613333pt;}
.y16b_c00001{bottom:611.707067pt;}
.y7d8_c00001{bottom:612.251467pt;}
.y9ba_c00001{bottom:613.373067pt;}
.y103a_c00001{bottom:613.388000pt;}
.y1caa_c00001{bottom:613.746933pt;}
.yc5a_c00001{bottom:613.782147pt;}
.yc2d_c00001{bottom:613.784947pt;}
.ybd0_c00001{bottom:613.787200pt;}
.y730_c00001{bottom:613.853067pt;}
.y5f6_c00001{bottom:613.853333pt;}
.y7ae_c00001{bottom:614.493467pt;}
.y3ed_c00001{bottom:614.652000pt;}
.y2aa_c00001{bottom:614.813600pt;}
.ybfc_c00001{bottom:614.906533pt;}
.y1442_c00001{bottom:615.309333pt;}
.y706_c00001{bottom:616.093467pt;}
.y604_c00001{bottom:616.252000pt;}
.y1195_c00001{bottom:616.396773pt;}
.y1bbc_c00001{bottom:616.397067pt;}
.y125d_c00001{bottom:616.397173pt;}
.y1213_c00001{bottom:616.397573pt;}
.y1170_c00001{bottom:616.397840pt;}
.y17fa_c00001{bottom:616.398853pt;}
.y1361_c00001{bottom:616.398960pt;}
.ye01_c00001{bottom:616.399693pt;}
.yd85_c00001{bottom:616.399733pt;}
.y1825_c00001{bottom:616.399920pt;}
.y1c7b_c00001{bottom:616.400360pt;}
.ye2b_c00001{bottom:616.400493pt;}
.y14db_c00001{bottom:616.400693pt;}
.y1546_c00001{bottom:616.400827pt;}
.y16c7_c00001{bottom:616.401093pt;}
.y17af_c00001{bottom:616.401360pt;}
.y1a7f_c00001{bottom:616.401667pt;}
.y138d_c00001{bottom:616.402160pt;}
.y1a5b_c00001{bottom:616.402467pt;}
.y161d_c00001{bottom:616.403227pt;}
.y1d32_c00001{bottom:616.876187pt;}
.y1d24_c00001{bottom:616.876720pt;}
.y1acb_c00001{bottom:616.877120pt;}
.y1abf_c00001{bottom:616.877653pt;}
.y1aa3_c00001{bottom:616.878000pt;}
.y11ca_c00001{bottom:616.878440pt;}
.y1f02_c00001{bottom:616.878880pt;}
.ye73_c00001{bottom:616.879467pt;}
.y1d07_c00001{bottom:616.880160pt;}
.ye52_c00001{bottom:616.880400pt;}
.y1006_c00001{bottom:616.880693pt;}
.y1f3c_c00001{bottom:616.880747pt;}
.y15e5_c00001{bottom:616.880813pt;}
.yf78_c00001{bottom:616.880827pt;}
.ye8e_c00001{bottom:616.880933pt;}
.y1ec9_c00001{bottom:616.881147pt;}
.yf50_c00001{bottom:616.881360pt;}
.y1646_c00001{bottom:616.881880pt;}
.y1e58_c00001{bottom:616.882027pt;}
.y16e1_c00001{bottom:616.882280pt;}
.y1502_c00001{bottom:616.882413pt;}
.yeb2_c00001{bottom:616.882427pt;}
.yfc4_c00001{bottom:616.882560pt;}
.y1c38_c00001{bottom:616.882613pt;}
.y168d_c00001{bottom:616.882680pt;}
.y1c11_c00001{bottom:616.882747pt;}
.y191c_c00001{bottom:616.882813pt;}
.y140d_c00001{bottom:616.882947pt;}
.y1dc1_c00001{bottom:616.882960pt;}
.y1869_c00001{bottom:616.883240pt;}
.y188a_c00001{bottom:616.883373pt;}
.y14fa_c00001{bottom:616.883480pt;}
.yed9_c00001{bottom:616.883627pt;}
.y13e8_c00001{bottom:616.884013pt;}
.y15bd_c00001{bottom:616.884147pt;}
.y1e28_c00001{bottom:616.884160pt;}
.y1570_c00001{bottom:616.884280pt;}
.y1df8_c00001{bottom:616.884427pt;}
.y1477_c00001{bottom:616.884813pt;}
.y14a2_c00001{bottom:616.885347pt;}
.y1d74_c00001{bottom:616.885493pt;}
.y172d_c00001{bottom:616.885880pt;}
.y1e99_c00001{bottom:616.886560pt;}
.y105f_c00001{bottom:616.887093pt;}
.y9a5_c00001{bottom:616.893333pt;}
.ydce_c00001{bottom:618.852587pt;}
.y6df_c00001{bottom:619.133467pt;}
.y1ab1_c00001{bottom:619.279013pt;}
.y11bd_c00001{bottom:619.279280pt;}
.y78c_c00001{bottom:619.453813pt;}
.y8d6_c00001{bottom:619.613333pt;}
.y1c74_c00001{bottom:619.865293pt;}
.y9e1_c00001{bottom:620.093333pt;}
.yad3_c00001{bottom:620.186173pt;}
.y1efa_c00001{bottom:620.347547pt;}
.y167a_c00001{bottom:620.348547pt;}
.y15dd_c00001{bottom:620.349613pt;}
.y14fb_c00001{bottom:620.350147pt;}
.y1c30_c00001{bottom:620.350213pt;}
.y93b_c00001{bottom:620.413867pt;}
.y3be_c00001{bottom:620.573333pt;}
.y872_c00001{bottom:621.053200pt;}
.yc88_c00001{bottom:621.091333pt;}
.ycae_c00001{bottom:621.092987pt;}
.yc98_c00001{bottom:621.146533pt;}
.ycc2_c00001{bottom:621.147253pt;}
.y64e_c00001{bottom:621.213333pt;}
.y66a_c00001{bottom:621.373333pt;}
.y80c_c00001{bottom:621.374133pt;}
.y2a8_c00001{bottom:622.493333pt;}
.y5b3_c00001{bottom:622.813333pt;}
.y5f4_c00001{bottom:623.453600pt;}
.y6b_c00001{bottom:624.854667pt;}
.y1ca9_c00001{bottom:625.587040pt;}
.y84d_c00001{bottom:625.852667pt;}
.y5_c00001{bottom:626.454667pt;}
.y752_c00001{bottom:626.495200pt;}
.y8f0_c00001{bottom:626.653733pt;}
.y9f8_c00001{bottom:626.959333pt;}
.yf11_c00001{bottom:627.090667pt;}
.y1535_c00001{bottom:627.149333pt;}
.y80_c00001{bottom:627.734667pt;}
.y4c8_c00001{bottom:627.773333pt;}
.y689_c00001{bottom:627.935200pt;}
.yae7_c00001{bottom:627.971067pt;}
.yafa_c00001{bottom:627.971333pt;}
.yab2_c00001{bottom:627.973200pt;}
.yc2c_c00001{bottom:628.184947pt;}
.ybcf_c00001{bottom:628.187200pt;}
.yc59_c00001{bottom:628.234813pt;}
.y35_c00001{bottom:628.374667pt;}
.y49_c00001{bottom:629.174667pt;}
.ybfb_c00001{bottom:629.306533pt;}
.y8b5_c00001{bottom:629.693067pt;}
.y1a_c00001{bottom:629.974667pt;}
.ydcd_c00001{bottom:630.320293pt;}
.yad2_c00001{bottom:630.371067pt;}
.y45d_c00001{bottom:630.652000pt;}
.y1d23_c00001{bottom:631.276187pt;}
.y1abe_c00001{bottom:631.277120pt;}
.y1aa2_c00001{bottom:631.278000pt;}
.y11c9_c00001{bottom:631.278440pt;}
.ye72_c00001{bottom:631.278933pt;}
.ye51_c00001{bottom:631.279867pt;}
.yf4f_c00001{bottom:631.281360pt;}
.yeb1_c00001{bottom:631.282427pt;}
.y1c10_c00001{bottom:631.282747pt;}
.y1868_c00001{bottom:631.283240pt;}
.y14f9_c00001{bottom:631.283480pt;}
.y13e7_c00001{bottom:631.284013pt;}
.y1d31_c00001{bottom:631.328320pt;}
.y1aca_c00001{bottom:631.329253pt;}
.y11d3_c00001{bottom:631.331107pt;}
.y1f01_c00001{bottom:631.331947pt;}
.y1f3b_c00001{bottom:631.333413pt;}
.ye8d_c00001{bottom:631.333600pt;}
.y1ec8_c00001{bottom:631.333813pt;}
.y15e4_c00001{bottom:631.333880pt;}
.y1645_c00001{bottom:631.334547pt;}
.y16e0_c00001{bottom:631.334947pt;}
.y1501_c00001{bottom:631.335080pt;}
.y168c_c00001{bottom:631.335347pt;}
.y1005_c00001{bottom:631.335360pt;}
.y191b_c00001{bottom:631.335480pt;}
.y140c_c00001{bottom:631.335613pt;}
.y1889_c00001{bottom:631.336040pt;}
.yf77_c00001{bottom:631.336560pt;}
.y15bc_c00001{bottom:631.336813pt;}
.y18b9_c00001{bottom:631.336947pt;}
.y1e57_c00001{bottom:631.337227pt;}
.y156f_c00001{bottom:631.337347pt;}
.y1476_c00001{bottom:631.337480pt;}
.yfc3_c00001{bottom:631.337760pt;}
.y1c37_c00001{bottom:631.337813pt;}
.y14a1_c00001{bottom:631.338013pt;}
.y1dc0_c00001{bottom:631.338160pt;}
.y172c_c00001{bottom:631.338547pt;}
.yed8_c00001{bottom:631.338827pt;}
.y1e27_c00001{bottom:631.339360pt;}
.y1df7_c00001{bottom:631.339627pt;}
.y1d73_c00001{bottom:631.340693pt;}
.y1e98_c00001{bottom:631.341760pt;}
.y105e_c00001{bottom:631.342293pt;}
.y6b4_c00001{bottom:632.095867pt;}
.y152_c00001{bottom:632.186667pt;}
.y959_c00001{bottom:632.253467pt;}
.y19c_c00001{bottom:632.294000pt;}
.y1ab0_c00001{bottom:632.398800pt;}
.y112_c00001{bottom:632.413333pt;}
.y770_c00001{bottom:632.576267pt;}
.y16c_c00001{bottom:633.666933pt;}
.y11bc_c00001{bottom:633.731947pt;}
.y52b_c00001{bottom:633.852000pt;}
.y1b6_c00001{bottom:633.894933pt;}
.y1d0_c00001{bottom:633.896133pt;}
.y1ea_c00001{bottom:633.897333pt;}
.y204_c00001{bottom:633.898533pt;}
.y7ad_c00001{bottom:634.013733pt;}
.y830_c00001{bottom:634.493867pt;}
.y7e6_c00001{bottom:634.653333pt;}
.yffc_c00001{bottom:634.800693pt;}
.y1679_c00001{bottom:634.801213pt;}
.yf6f_c00001{bottom:634.801760pt;}
.y15dc_c00001{bottom:634.802280pt;}
.y146f_c00001{bottom:634.802813pt;}
.y1406_c00001{bottom:634.803347pt;}
.y1db7_c00001{bottom:634.803893pt;}
.yed0_c00001{bottom:634.804427pt;}
.y1e1f_c00001{bottom:634.804960pt;}
.yc87_c00001{bottom:635.546533pt;}
.ycc1_c00001{bottom:635.547253pt;}
.ycad_c00001{bottom:635.547653pt;}
.y7d7_c00001{bottom:635.611333pt;}
.y72f_c00001{bottom:636.412933pt;}
.y1039_c00001{bottom:637.012000pt;}
.y896_c00001{bottom:637.373867pt;}
.y1ca8_c00001{bottom:637.427147pt;}
.y558_c00001{bottom:637.533333pt;}
.y43b_c00001{bottom:637.852000pt;}
.y1bbb_c00001{bottom:638.156400pt;}
.y1194_c00001{bottom:638.157173pt;}
.y1212_c00001{bottom:638.157440pt;}
.y125c_c00001{bottom:638.157573pt;}
.y116f_c00001{bottom:638.158240pt;}
.y17f9_c00001{bottom:638.158720pt;}
.y1360_c00001{bottom:638.158827pt;}
.ye00_c00001{bottom:638.159560pt;}
.y1824_c00001{bottom:638.159787pt;}
.yd84_c00001{bottom:638.160133pt;}
.ye2a_c00001{bottom:638.160360pt;}
.y14da_c00001{bottom:638.160560pt;}
.y1545_c00001{bottom:638.160693pt;}
.y1c7a_c00001{bottom:638.160760pt;}
.y16c6_c00001{bottom:638.160960pt;}
.y17ae_c00001{bottom:638.161227pt;}
.y138c_c00001{bottom:638.161493pt;}
.y1a7e_c00001{bottom:638.162067pt;}
.y1a5a_c00001{bottom:638.162333pt;}
.y161c_c00001{bottom:638.163093pt;}
.y705_c00001{bottom:638.493467pt;}
.y1440_c00001{bottom:638.930667pt;}
.y98d_c00001{bottom:638.974533pt;}
.y38d_c00001{bottom:639.293333pt;}
.y482_c00001{bottom:639.613333pt;}
.y6a_c00001{bottom:639.894667pt;}
.ydcc_c00001{bottom:640.560400pt;}
.y9a4_c00001{bottom:640.893333pt;}
.yad1_c00001{bottom:641.891373pt;}
.y5f3_c00001{bottom:642.173867pt;}
.y80b_c00001{bottom:642.334000pt;}
.yc58_c00001{bottom:642.634813pt;}
.yc2b_c00001{bottom:642.637613pt;}
.ybce_c00001{bottom:642.639867pt;}
.y7f_c00001{bottom:642.774667pt;}
.y9f7_c00001{bottom:643.279067pt;}
.y40e_c00001{bottom:643.293333pt;}
.ybfa_c00001{bottom:643.759600pt;}
.y4_c00001{bottom:644.054667pt;}
.y3b9_c00001{bottom:644.093333pt;}
.y84c_c00001{bottom:645.372933pt;}
.y1d30_c00001{bottom:645.728320pt;}
.y1ac9_c00001{bottom:645.729253pt;}
.y1abd_c00001{bottom:645.729787pt;}
.y1aa1_c00001{bottom:645.730667pt;}
.y11c8_c00001{bottom:645.731107pt;}
.y1f00_c00001{bottom:645.731947pt;}
.ye71_c00001{bottom:645.732000pt;}
.ye50_c00001{bottom:645.732533pt;}
.ye8c_c00001{bottom:645.733067pt;}
.y1f3a_c00001{bottom:645.733413pt;}
.y1ec7_c00001{bottom:645.733813pt;}
.y15e3_c00001{bottom:645.733880pt;}
.yf4e_c00001{bottom:645.734027pt;}
.y1644_c00001{bottom:645.734547pt;}
.y16df_c00001{bottom:645.734947pt;}
.y1500_c00001{bottom:645.735080pt;}
.yeb0_c00001{bottom:645.735093pt;}
.y1c36_c00001{bottom:645.735147pt;}
.y168b_c00001{bottom:645.735347pt;}
.y1004_c00001{bottom:645.735360pt;}
.y1c0f_c00001{bottom:645.735413pt;}
.y191a_c00001{bottom:645.735480pt;}
.y140b_c00001{bottom:645.735613pt;}
.y1867_c00001{bottom:645.735907pt;}
.y1888_c00001{bottom:645.736040pt;}
.y14f8_c00001{bottom:645.736547pt;}
.yf76_c00001{bottom:645.736560pt;}
.y15bb_c00001{bottom:645.736813pt;}
.y18b8_c00001{bottom:645.736947pt;}
.y1df6_c00001{bottom:645.736960pt;}
.y13e6_c00001{bottom:645.737080pt;}
.y1e56_c00001{bottom:645.737227pt;}
.y156e_c00001{bottom:645.737347pt;}
.y1475_c00001{bottom:645.737480pt;}
.yfc2_c00001{bottom:645.737760pt;}
.y14a0_c00001{bottom:645.738013pt;}
.y1d72_c00001{bottom:645.738027pt;}
.y1dbf_c00001{bottom:645.738160pt;}
.y172b_c00001{bottom:645.738547pt;}
.yed7_c00001{bottom:645.738827pt;}
.y1e97_c00001{bottom:645.739093pt;}
.y1e26_c00001{bottom:645.739360pt;}
.y105d_c00001{bottom:645.739627pt;}
.y871_c00001{bottom:646.013600pt;}
.y751_c00001{bottom:646.014533pt;}
.y34_c00001{bottom:646.294667pt;}
.y1aaf_c00001{bottom:646.851467pt;}
.y11bb_c00001{bottom:646.851733pt;}
.y48_c00001{bottom:646.934667pt;}
.y688_c00001{bottom:647.454933pt;}
.y19_c00001{bottom:647.574667pt;}
.y57e_c00001{bottom:648.573333pt;}
.y1ef9_c00001{bottom:649.200613pt;}
.y1678_c00001{bottom:649.201213pt;}
.y1c2f_c00001{bottom:649.202880pt;}
.y1ca7_c00001{bottom:649.267253pt;}
.y62b_c00001{bottom:649.373333pt;}
.y1ccc_c00001{bottom:649.678667pt;}
.yae6_c00001{bottom:649.678933pt;}
.yab1_c00001{bottom:649.681067pt;}
.y8d5_c00001{bottom:649.693600pt;}
.yaf9_c00001{bottom:649.731200pt;}
.yc86_c00001{bottom:649.946533pt;}
.ycc0_c00001{bottom:649.947253pt;}
.ycac_c00001{bottom:649.947653pt;}
.y908_c00001{bottom:650.173333pt;}
.yf0f_c00001{bottom:650.772000pt;}
.ydcb_c00001{bottom:652.080187pt;}
.yad0_c00001{bottom:652.131480pt;}
.y56a_c00001{bottom:652.893333pt;}
.y118_c00001{bottom:652.893867pt;}
.y7ac_c00001{bottom:653.533467pt;}
.yb24_c00001{bottom:653.946933pt;}
.y8ef_c00001{bottom:654.334000pt;}
.y678_c00001{bottom:654.334400pt;}
.y78b_c00001{bottom:654.653813pt;}
.y69_c00001{bottom:654.934667pt;}
.y76f_c00001{bottom:655.136133pt;}
.y4ff_c00001{bottom:656.093333pt;}
.y19d_c00001{bottom:656.187200pt;}
.yc57_c00001{bottom:657.034813pt;}
.yc2a_c00001{bottom:657.037613pt;}
.ybcd_c00001{bottom:657.039867pt;}
.y8b4_c00001{bottom:657.373333pt;}
.y7e_c00001{bottom:657.814667pt;}
.y1b7_c00001{bottom:657.828267pt;}
.y1d1_c00001{bottom:657.829467pt;}
.y1eb_c00001{bottom:657.830667pt;}
.y205_c00001{bottom:657.831867pt;}
.ybf9_c00001{bottom:658.159600pt;}
.y7d6_c00001{bottom:658.811867pt;}
.y82f_c00001{bottom:659.293867pt;}
.y116e_c00001{bottom:659.865573pt;}
.y17f8_c00001{bottom:659.866053pt;}
.y135f_c00001{bottom:659.866160pt;}
.ydff_c00001{bottom:659.867427pt;}
.y1b91_c00001{bottom:659.867467pt;}
.yd83_c00001{bottom:659.868000pt;}
.y1a59_c00001{bottom:659.870200pt;}
.y1bba_c00001{bottom:659.915733pt;}
.y1211_c00001{bottom:659.917307pt;}
.y1193_c00001{bottom:659.917573pt;}
.y125b_c00001{bottom:659.917973pt;}
.y1823_c00001{bottom:659.919653pt;}
.ye29_c00001{bottom:659.920227pt;}
.y14d9_c00001{bottom:659.920427pt;}
.y1544_c00001{bottom:659.920560pt;}
.y1c79_c00001{bottom:659.920627pt;}
.y138b_c00001{bottom:659.920827pt;}
.y17ad_c00001{bottom:659.921093pt;}
.y1a7d_c00001{bottom:659.922467pt;}
.y161b_c00001{bottom:659.922960pt;}
.y6de_c00001{bottom:660.093333pt;}
.y1d2f_c00001{bottom:660.128320pt;}
.y1ac8_c00001{bottom:660.129253pt;}
.y1abc_c00001{bottom:660.129787pt;}
.y1aa0_c00001{bottom:660.130667pt;}
.y11c7_c00001{bottom:660.131107pt;}
.y1eff_c00001{bottom:660.131947pt;}
.ye70_c00001{bottom:660.132000pt;}
.ye4f_c00001{bottom:660.132533pt;}
.y1f39_c00001{bottom:660.133413pt;}
.y1ec6_c00001{bottom:660.133813pt;}
.y15e2_c00001{bottom:660.133880pt;}
.yf4d_c00001{bottom:660.134027pt;}
.y1c35_c00001{bottom:660.134080pt;}
.y1643_c00001{bottom:660.134547pt;}
.yeaf_c00001{bottom:660.134560pt;}
.y16de_c00001{bottom:660.134947pt;}
.y14ff_c00001{bottom:660.135080pt;}
.y168a_c00001{bottom:660.135347pt;}
.y1003_c00001{bottom:660.135360pt;}
.y1c0e_c00001{bottom:660.135413pt;}
.y1919_c00001{bottom:660.135480pt;}
.y140a_c00001{bottom:660.135613pt;}
.y1866_c00001{bottom:660.135907pt;}
.y1887_c00001{bottom:660.136040pt;}
.y13e5_c00001{bottom:660.136547pt;}
.yf75_c00001{bottom:660.136560pt;}
.y15ba_c00001{bottom:660.136813pt;}
.y18b7_c00001{bottom:660.136947pt;}
.y1df5_c00001{bottom:660.136960pt;}
.y1e55_c00001{bottom:660.137227pt;}
.y156d_c00001{bottom:660.137347pt;}
.y1474_c00001{bottom:660.137480pt;}
.yfc1_c00001{bottom:660.137760pt;}
.y149f_c00001{bottom:660.138013pt;}
.y1d71_c00001{bottom:660.138027pt;}
.y1dbe_c00001{bottom:660.138160pt;}
.y172a_c00001{bottom:660.138547pt;}
.yed6_c00001{bottom:660.138827pt;}
.y1e96_c00001{bottom:660.139093pt;}
.y1e25_c00001{bottom:660.139360pt;}
.y105c_c00001{bottom:660.139627pt;}
.y92_c00001{bottom:660.573200pt;}
.y37d_c00001{bottom:660.573333pt;}
.y3fc_c00001{bottom:660.574533pt;}
.y1036_c00001{bottom:660.690667pt;}
.y5f2_c00001{bottom:660.893600pt;}
.y1ca6_c00001{bottom:661.107360pt;}
.y72e_c00001{bottom:661.213467pt;}
.y1aae_c00001{bottom:661.251467pt;}
.y11ba_c00001{bottom:661.251733pt;}
.y3_c00001{bottom:661.654667pt;}
.ydca_c00001{bottom:662.320293pt;}
.y2a9_c00001{bottom:662.333333pt;}
.y143f_c00001{bottom:662.610667pt;}
.y2b0_c00001{bottom:663.520000pt;}
.y1677_c00001{bottom:663.601213pt;}
.y1da8_c00001{bottom:663.601760pt;}
.y15db_c00001{bottom:663.602280pt;}
.y146e_c00001{bottom:663.602813pt;}
.y1405_c00001{bottom:663.603347pt;}
.yacf_c00001{bottom:663.651267pt;}
.y33_c00001{bottom:664.214667pt;}
.y9f6_c00001{bottom:664.346267pt;}
.yc85_c00001{bottom:664.346533pt;}
.ycbf_c00001{bottom:664.347253pt;}
.ycab_c00001{bottom:664.347653pt;}
.y7e5_c00001{bottom:664.573600pt;}
.y47_c00001{bottom:664.694667pt;}
.y6b3_c00001{bottom:664.735467pt;}
.y9a3_c00001{bottom:664.893333pt;}
.y895_c00001{bottom:664.893600pt;}
.y18_c00001{bottom:665.174667pt;}
.y98c_c00001{bottom:666.494800pt;}
.y93a_c00001{bottom:666.654000pt;}
.y958_c00001{bottom:666.813333pt;}
.y53e_c00001{bottom:667.293333pt;}
.y9e0_c00001{bottom:668.093333pt;}
.y5fe_c00001{bottom:668.573333pt;}
.y9b9_c00001{bottom:668.573600pt;}
.yb23_c00001{bottom:668.666667pt;}
.y84b_c00001{bottom:669.853200pt;}
.y68_c00001{bottom:669.974667pt;}
.y870_c00001{bottom:670.813600pt;}
.y750_c00001{bottom:670.814533pt;}
.yc56_c00001{bottom:671.434813pt;}
.yc29_c00001{bottom:671.437613pt;}
.yaf8_c00001{bottom:671.438533pt;}
.yae5_c00001{bottom:671.439333pt;}
.yab0_c00001{bottom:671.439867pt;}
.y3ec_c00001{bottom:671.613600pt;}
.y4c6_c00001{bottom:672.252000pt;}
.y80a_c00001{bottom:672.253333pt;}
.y687_c00001{bottom:672.415333pt;}
.ybf8_c00001{bottom:672.559600pt;}
.y7d_c00001{bottom:672.854667pt;}
.y1ca5_c00001{bottom:672.947467pt;}
.y7ab_c00001{bottom:673.213733pt;}
.yace_c00001{bottom:673.838773pt;}
.ydc9_c00001{bottom:673.840080pt;}
.y704_c00001{bottom:674.333600pt;}
.yf0e_c00001{bottom:674.400000pt;}
.y1534_c00001{bottom:674.450667pt;}
.y1d2e_c00001{bottom:674.528320pt;}
.y1abb_c00001{bottom:674.529253pt;}
.y1a9f_c00001{bottom:674.530667pt;}
.y11c6_c00001{bottom:674.531107pt;}
.y1efe_c00001{bottom:674.531947pt;}
.ye4e_c00001{bottom:674.532000pt;}
.y1f38_c00001{bottom:674.533413pt;}
.y1ec5_c00001{bottom:674.533813pt;}
.y15e1_c00001{bottom:674.533880pt;}
.yeae_c00001{bottom:674.534027pt;}
.y1c34_c00001{bottom:674.534080pt;}
.y1642_c00001{bottom:674.534547pt;}
.y16dd_c00001{bottom:674.534947pt;}
.y14fe_c00001{bottom:674.535080pt;}
.y1689_c00001{bottom:674.535347pt;}
.y1002_c00001{bottom:674.535360pt;}
.y1c0d_c00001{bottom:674.535413pt;}
.y1918_c00001{bottom:674.535480pt;}
.y1409_c00001{bottom:674.535613pt;}
.y1865_c00001{bottom:674.535907pt;}
.y1886_c00001{bottom:674.536040pt;}
.y13e4_c00001{bottom:674.536547pt;}
.yf74_c00001{bottom:674.536560pt;}
.y15b9_c00001{bottom:674.536813pt;}
.y18b6_c00001{bottom:674.536947pt;}
.y1df4_c00001{bottom:674.536960pt;}
.y1e54_c00001{bottom:674.537227pt;}
.y156c_c00001{bottom:674.537347pt;}
.y1473_c00001{bottom:674.537480pt;}
.yfc0_c00001{bottom:674.537760pt;}
.y149e_c00001{bottom:674.538013pt;}
.y1d70_c00001{bottom:674.538027pt;}
.y1dbd_c00001{bottom:674.538160pt;}
.y1729_c00001{bottom:674.538547pt;}
.yed5_c00001{bottom:674.538827pt;}
.y1e95_c00001{bottom:674.539093pt;}
.y1e24_c00001{bottom:674.539360pt;}
.y105b_c00001{bottom:674.539627pt;}
.yd0_c00001{bottom:675.360000pt;}
.y1aad_c00001{bottom:675.651467pt;}
.y11b9_c00001{bottom:675.651733pt;}
.y8d4_c00001{bottom:677.373867pt;}
.y76e_c00001{bottom:677.536133pt;}
.y18ff_c00001{bottom:678.002280pt;}
.y146d_c00001{bottom:678.002813pt;}
.y1404_c00001{bottom:678.003347pt;}
.yc84_c00001{bottom:678.746533pt;}
.ycaa_c00001{bottom:678.747653pt;}
.yc97_c00001{bottom:678.799200pt;}
.ycbe_c00001{bottom:678.799920pt;}
.y1_c00001{bottom:679.254667pt;}
.y5f1_c00001{bottom:679.453467pt;}
.y117_c00001{bottom:679.614133pt;}
.y37b_c00001{bottom:679.774533pt;}
.y19e_c00001{bottom:680.134133pt;}
.y1bb9_c00001{bottom:681.620933pt;}
.y1210_c00001{bottom:681.624640pt;}
.y1192_c00001{bottom:681.624907pt;}
.y125a_c00001{bottom:681.625307pt;}
.ye28_c00001{bottom:681.625427pt;}
.y116d_c00001{bottom:681.625440pt;}
.y1c78_c00001{bottom:681.625827pt;}
.y17f7_c00001{bottom:681.626453pt;}
.y135e_c00001{bottom:681.626560pt;}
.y1822_c00001{bottom:681.626987pt;}
.ydfe_c00001{bottom:681.627293pt;}
.yd82_c00001{bottom:681.627333pt;}
.y14d8_c00001{bottom:681.627760pt;}
.y1543_c00001{bottom:681.627893pt;}
.y17ac_c00001{bottom:681.628427pt;}
.y16c5_c00001{bottom:681.628693pt;}
.y138a_c00001{bottom:681.629227pt;}
.y1a7c_c00001{bottom:681.629800pt;}
.y1a58_c00001{bottom:681.630067pt;}
.y161a_c00001{bottom:681.630293pt;}
.y1b8_c00001{bottom:681.735067pt;}
.y1d2_c00001{bottom:681.736267pt;}
.y1ec_c00001{bottom:681.737467pt;}
.y206_c00001{bottom:681.738667pt;}
.y213_c00001{bottom:681.739200pt;}
.y8ee_c00001{bottom:681.853733pt;}
.y7d5_c00001{bottom:682.012400pt;}
.y557_c00001{bottom:682.013333pt;}
.y32_c00001{bottom:682.134667pt;}
.y46_c00001{bottom:682.454667pt;}
.y6dd_c00001{bottom:682.493333pt;}
.y17_c00001{bottom:682.774667pt;}
.y64d_c00001{bottom:683.613333pt;}
.y668_c00001{bottom:683.773333pt;}
.y386_c00001{bottom:683.933333pt;}
.ydc8_c00001{bottom:684.027587pt;}
.y7e4_c00001{bottom:684.093333pt;}
.y47e_c00001{bottom:684.252000pt;}
.y82e_c00001{bottom:684.253733pt;}
.y6b2_c00001{bottom:684.255733pt;}
.y8b3_c00001{bottom:684.893067pt;}
.y66_c00001{bottom:685.014667pt;}
.yacd_c00001{bottom:685.359080pt;}
.y1ca4_c00001{bottom:685.639653pt;}
.y3fb_c00001{bottom:686.014667pt;}
.y143e_c00001{bottom:686.240000pt;}
.y17f_c00001{bottom:687.453333pt;}
.y40c_c00001{bottom:687.773333pt;}
.y7c_c00001{bottom:687.894667pt;}
.y9f5_c00001{bottom:688.079067pt;}
.y9a1_c00001{bottom:688.893333pt;}
.y1aba_c00001{bottom:688.929253pt;}
.y1a9e_c00001{bottom:688.930667pt;}
.y11c5_c00001{bottom:688.931107pt;}
.ye4d_c00001{bottom:688.932000pt;}
.yead_c00001{bottom:688.933493pt;}
.y1c0c_c00001{bottom:688.935413pt;}
.y1864_c00001{bottom:688.935907pt;}
.y13e3_c00001{bottom:688.936547pt;}
.y1d2d_c00001{bottom:688.983520pt;}
.y1ac7_c00001{bottom:688.984453pt;}
.y11d2_c00001{bottom:688.985773pt;}
.y1aac_c00001{bottom:688.986400pt;}
.ye8b_c00001{bottom:688.986667pt;}
.y1efd_c00001{bottom:688.987680pt;}
.y1001_c00001{bottom:688.988027pt;}
.y1ec4_c00001{bottom:688.988480pt;}
.y1f37_c00001{bottom:688.988613pt;}
.yf73_c00001{bottom:688.989227pt;}
.y1c33_c00001{bottom:688.989280pt;}
.y15e0_c00001{bottom:688.989613pt;}
.y1641_c00001{bottom:688.989747pt;}
.y1e53_c00001{bottom:688.989893pt;}
.y1688_c00001{bottom:688.990013pt;}
.y16dc_c00001{bottom:688.990147pt;}
.y14fd_c00001{bottom:688.990280pt;}
.yfbf_c00001{bottom:688.990427pt;}
.y1917_c00001{bottom:688.990680pt;}
.y1885_c00001{bottom:688.990707pt;}
.y1408_c00001{bottom:688.990813pt;}
.y1dbc_c00001{bottom:688.990827pt;}
.y15b8_c00001{bottom:688.991480pt;}
.yed4_c00001{bottom:688.991493pt;}
.y18b5_c00001{bottom:688.991613pt;}
.y1df3_c00001{bottom:688.991627pt;}
.y1e23_c00001{bottom:688.992027pt;}
.y1472_c00001{bottom:688.992147pt;}
.y156b_c00001{bottom:688.992547pt;}
.y149d_c00001{bottom:688.992680pt;}
.y1d6f_c00001{bottom:688.992693pt;}
.y1728_c00001{bottom:688.993213pt;}
.y1e94_c00001{bottom:688.993760pt;}
.y105a_c00001{bottom:688.994293pt;}
.y78a_c00001{bottom:689.213733pt;}
.y454_c00001{bottom:690.013333pt;}
.y11b8_c00001{bottom:690.051733pt;}
.y9df_c00001{bottom:692.093333pt;}
.yffb_c00001{bottom:692.455893pt;}
.yf6e_c00001{bottom:692.456960pt;}
.y894_c00001{bottom:692.573867pt;}
.yc28_c00001{bottom:693.196947pt;}
.yaaf_c00001{bottom:693.198667pt;}
.yaf7_c00001{bottom:693.198933pt;}
.yae4_c00001{bottom:693.199733pt;}
.ycbd_c00001{bottom:693.199920pt;}
.yca9_c00001{bottom:693.200320pt;}
.y529_c00001{bottom:693.213333pt;}
.ya2_c00001{bottom:693.440000pt;}
.y7aa_c00001{bottom:693.533467pt;}
.y91_c00001{bottom:694.013333pt;}
.y37c_c00001{bottom:694.014667pt;}
.y939_c00001{bottom:694.173733pt;}
.y74f_c00001{bottom:694.174400pt;}
.y98b_c00001{bottom:694.175067pt;}
.y1ca3_c00001{bottom:694.439653pt;}
.ydc7_c00001{bottom:695.547893pt;}
.yacc_c00001{bottom:695.598667pt;}
.y86f_c00001{bottom:695.613600pt;}
.y9b8_c00001{bottom:696.093333pt;}
.y1034_c00001{bottom:696.160000pt;}
.y703_c00001{bottom:696.733600pt;}
.y437_c00001{bottom:697.052000pt;}
.y809_c00001{bottom:697.053333pt;}
.y569_c00001{bottom:697.373333pt;}
.y1533_c00001{bottom:698.080000pt;}
.y5f0_c00001{bottom:698.173733pt;}
.y686_c00001{bottom:698.654933pt;}
.y31_c00001{bottom:700.054667pt;}
.y76d_c00001{bottom:700.096000pt;}
.y45_c00001{bottom:700.214667pt;}
.y4fe_c00001{bottom:700.733333pt;}
.y957_c00001{bottom:701.213333pt;}
.y65_c00001{bottom:703.093333pt;}
.y1ca2_c00001{bottom:703.239653pt;}
.y1bb8_c00001{bottom:703.380800pt;}
.y1d2c_c00001{bottom:703.383520pt;}
.y1ab9_c00001{bottom:703.384453pt;}
.y1191_c00001{bottom:703.384773pt;}
.y120f_c00001{bottom:703.385040pt;}
.y1259_c00001{bottom:703.385173pt;}
.ye27_c00001{bottom:703.385293pt;}
.y116c_c00001{bottom:703.385307pt;}
.y11d1_c00001{bottom:703.385773pt;}
.y1c77_c00001{bottom:703.386227pt;}
.y11c4_c00001{bottom:703.386307pt;}
.yd81_c00001{bottom:703.386667pt;}
.y17f6_c00001{bottom:703.386853pt;}
.y135d_c00001{bottom:703.386960pt;}
.ydfd_c00001{bottom:703.387160pt;}
.y1b90_c00001{bottom:703.387200pt;}
.y1821_c00001{bottom:703.387387pt;}
.y14d7_c00001{bottom:703.387627pt;}
.y1efc_c00001{bottom:703.387680pt;}
.y1000_c00001{bottom:703.388027pt;}
.yeac_c00001{bottom:703.388160pt;}
.y1542_c00001{bottom:703.388293pt;}
.y1ec3_c00001{bottom:703.388480pt;}
.y1f36_c00001{bottom:703.388613pt;}
.y18df_c00001{bottom:703.388827pt;}
.y15df_c00001{bottom:703.389080pt;}
.y16c4_c00001{bottom:703.389093pt;}
.yf72_c00001{bottom:703.389227pt;}
.y1c32_c00001{bottom:703.389280pt;}
.y1389_c00001{bottom:703.389627pt;}
.y1a7b_c00001{bottom:703.389667pt;}
.y1640_c00001{bottom:703.389747pt;}
.y1e52_c00001{bottom:703.389893pt;}
.y1a57_c00001{bottom:703.389933pt;}
.y1687_c00001{bottom:703.390013pt;}
.y16db_c00001{bottom:703.390147pt;}
.y14fc_c00001{bottom:703.390280pt;}
.yfbe_c00001{bottom:703.390427pt;}
.y1863_c00001{bottom:703.390573pt;}
.y1c0b_c00001{bottom:703.390613pt;}
.y1916_c00001{bottom:703.390680pt;}
.y1619_c00001{bottom:703.390693pt;}
.y1884_c00001{bottom:703.390707pt;}
.y1407_c00001{bottom:703.390813pt;}
.y1dbb_c00001{bottom:703.390827pt;}
.y13e2_c00001{bottom:703.391213pt;}
.y15b7_c00001{bottom:703.391480pt;}
.yed3_c00001{bottom:703.391493pt;}
.y18b4_c00001{bottom:703.391613pt;}
.y1df2_c00001{bottom:703.391627pt;}
.y1e22_c00001{bottom:703.392027pt;}
.y1471_c00001{bottom:703.392147pt;}
.y156a_c00001{bottom:703.392547pt;}
.y149c_c00001{bottom:703.392680pt;}
.y1d6e_c00001{bottom:703.392693pt;}
.y1727_c00001{bottom:703.393213pt;}
.y1e93_c00001{bottom:703.393760pt;}
.y1059_c00001{bottom:703.394293pt;}
.y3b3_c00001{bottom:703.452000pt;}
.y7e3_c00001{bottom:703.613600pt;}
.y82d_c00001{bottom:703.774000pt;}
.y6b1_c00001{bottom:703.776000pt;}
.y72d_c00001{bottom:704.413467pt;}
.y1aab_c00001{bottom:704.506667pt;}
.y6dc_c00001{bottom:704.893333pt;}
.y8d3_c00001{bottom:704.893600pt;}
.y7d4_c00001{bottom:705.212933pt;}
.ydc6_c00001{bottom:705.788000pt;}
.y1c2e_c00001{bottom:706.853947pt;}
.yffa_c00001{bottom:706.855893pt;}
.y9f4_c00001{bottom:707.811333pt;}
.y907_c00001{bottom:709.533333pt;}
.y8ed_c00001{bottom:709.534000pt;}
.yf0c_c00001{bottom:709.869333pt;}
.y53d_c00001{bottom:711.773333pt;}
.y1ca1_c00001{bottom:711.987053pt;}
.y8b2_c00001{bottom:712.573333pt;}
.y7a9_c00001{bottom:713.053200pt;}
.yaad_c00001{bottom:713.787093pt;}
.y74e_c00001{bottom:714.015067pt;}
.y116_c00001{bottom:714.174000pt;}
.y3eb_c00001{bottom:714.333333pt;}
.y9de_c00001{bottom:716.093333pt;}
.y4c5_c00001{bottom:716.733333pt;}
.y5ef_c00001{bottom:716.893467pt;}
.y808_c00001{bottom:718.013733pt;}
.y702_c00001{bottom:719.293467pt;}
.y1033_c00001{bottom:719.789333pt;}
.y893_c00001{bottom:720.093600pt;}
.y86e_c00001{bottom:720.573467pt;}
.y1ca0_c00001{bottom:720.787053pt;}
.y938_c00001{bottom:721.693467pt;}
.y98a_c00001{bottom:721.694800pt;}
.y1532_c00001{bottom:721.709333pt;}
.y76c_c00001{bottom:722.495467pt;}
.y82c_c00001{bottom:723.293333pt;}
.y9b7_c00001{bottom:723.773600pt;}
.y90_c00001{bottom:724.413333pt;}
.y37a_c00001{bottom:724.414667pt;}
.y789_c00001{bottom:724.894000pt;}
.yd3_c00001{bottom:725.280000pt;}
.yd80_c00001{bottom:725.519867pt;}
.yaac_c00001{bottom:725.627200pt;}
.y556_c00001{bottom:726.493333pt;}
.y1030_c00001{bottom:727.172000pt;}
.y6db_c00001{bottom:727.453200pt;}
.y38c_c00001{bottom:728.413333pt;}
.y7d3_c00001{bottom:728.413467pt;}
.y7e2_c00001{bottom:728.573467pt;}
.y685_c00001{bottom:728.575200pt;}
.y47d_c00001{bottom:728.733333pt;}
.y1c9f_c00001{bottom:729.587053pt;}
.y6b0_c00001{bottom:730.016133pt;}
.y72c_c00001{bottom:732.093200pt;}
.y407_c00001{bottom:732.413333pt;}
.y8d2_c00001{bottom:732.573867pt;}
.y115_c00001{bottom:732.893333pt;}
.yf0a_c00001{bottom:733.549333pt;}
.y74d_c00001{bottom:733.695333pt;}
.y214_c00001{bottom:734.493333pt;}
.y62a_c00001{bottom:735.294400pt;}
.y956_c00001{bottom:735.774933pt;}
.y906_c00001{bottom:737.053067pt;}
.y8ec_c00001{bottom:737.053333pt;}
.y7a8_c00001{bottom:737.533467pt;}
.y3e6_c00001{bottom:738.013333pt;}
.y701_c00001{bottom:738.813733pt;}
.y8b1_c00001{bottom:740.093067pt;}
.y9dd_c00001{bottom:740.093333pt;}
.ya5_c00001{bottom:740.640000pt;}
.y84a_c00001{bottom:741.533467pt;}
.y57b_c00001{bottom:741.693333pt;}
.yaab_c00001{bottom:741.947467pt;}
.y5ee_c00001{bottom:743.453333pt;}
.y1032_c00001{bottom:743.469333pt;}
.y76b_c00001{bottom:744.895467pt;}
.y4fb_c00001{bottom:745.213333pt;}
.y86d_c00001{bottom:745.373467pt;}
.y143c_c00001{bottom:745.389333pt;}
.y649_c00001{bottom:746.013333pt;}
.y664_c00001{bottom:746.173333pt;}
.y9b6_c00001{bottom:746.973600pt;}
.y892_c00001{bottom:747.773867pt;}
.y807_c00001{bottom:747.933467pt;}
.y7e1_c00001{bottom:748.093200pt;}
.y82b_c00001{bottom:748.093333pt;}
.y937_c00001{bottom:749.373733pt;}
.y6da_c00001{bottom:749.853200pt;}
.y7d2_c00001{bottom:751.773333pt;}
.y51d_c00001{bottom:752.413333pt;}
.y684_c00001{bottom:753.575200pt;}
.y72b_c00001{bottom:753.893200pt;}
.y629_c00001{bottom:754.054800pt;}
.y989_c00001{bottom:755.175067pt;}
.y433_c00001{bottom:756.454667pt;}
.y568_c00001{bottom:756.774667pt;}
.yf09_c00001{bottom:757.172000pt;}
.y700_c00001{bottom:758.373600pt;}
.y74c_c00001{bottom:758.536000pt;}
.y787_c00001{bottom:759.654280pt;}
.y6af_c00001{bottom:759.977067pt;}
.y8d1_c00001{bottom:760.133733pt;}
.yc81_c00001{bottom:760.340680pt;}
.y183f_c00001{bottom:760.340853pt;}
.y1bdd_c00001{bottom:760.341733pt;}
.y14f6_c00001{bottom:760.343093pt;}
.y1567_c00001{bottom:760.343760pt;}
.y1451_c00001{bottom:760.344133pt;}
.y13ad_c00001{bottom:760.344160pt;}
.y18fd_c00001{bottom:760.344293pt;}
.yb1e_c00001{bottom:760.344453pt;}
.y1230_c00001{bottom:760.344640pt;}
.y127a_c00001{bottom:760.345040pt;}
.y11b0_c00001{bottom:760.345173pt;}
.y163e_c00001{bottom:760.345360pt;}
.y1c9b_c00001{bottom:760.345693pt;}
.y1cce_c00001{bottom:760.346400pt;}
.y1cc9_c00001{bottom:760.346707pt;}
.ye4b_c00001{bottom:760.346760pt;}
.yf24_c00001{bottom:760.346800pt;}
.yb26_c00001{bottom:760.346933pt;}
.yce0_c00001{bottom:760.347067pt;}
.y1c9e_c00001{bottom:760.347360pt;}
.yfa0_c00001{bottom:760.348733pt;}
.y1a9b_c00001{bottom:760.348867pt;}
.y1e91_c00001{bottom:760.349013pt;}
.y1df1_c00001{bottom:760.349840pt;}
.y1939_c00001{bottom:760.350107pt;}
.y1d15_c00001{bottom:760.350347pt;}
.y102f_c00001{bottom:760.350360pt;}
.y17e4_c00001{bottom:760.350640pt;}
.y1f2b_c00001{bottom:760.351173pt;}
.y1db6_c00001{bottom:760.351533pt;}
.yf03_c00001{bottom:760.351867pt;}
.y1de8_c00001{bottom:760.351920pt;}
.y1912_c00001{bottom:760.352053pt;}
.y1e50_c00001{bottom:760.352600pt;}
.y17a4_c00001{bottom:760.353120pt;}
.y1e7f_c00001{bottom:760.353147pt;}
.y1986_c00001{bottom:760.353280pt;}
.y14c8_c00001{bottom:760.353520pt;}
.yfeb_c00001{bottom:760.353680pt;}
.y1e1e_c00001{bottom:760.353947pt;}
.y1ec1_c00001{bottom:760.356080pt;}
.y1087_c00001{bottom:760.356613pt;}
.y7a7_c00001{bottom:761.093333pt;}
.y4c1_c00001{bottom:761.414667pt;}
.y849_c00001{bottom:762.533467pt;}
.y3b1_c00001{bottom:762.694667pt;}
.y8eb_c00001{bottom:764.773333pt;}
.y7d1_c00001{bottom:765.734667pt;}
.y9b1_c00001{bottom:766.013333pt;}
.y5ed_c00001{bottom:767.174667pt;}
.y76a_c00001{bottom:767.495467pt;}
.y786_c00001{bottom:767.974547pt;}
.y143b_c00001{bottom:769.010667pt;}
.y955_c00001{bottom:770.215067pt;}
.y555_c00001{bottom:771.174667pt;}
.y86c_c00001{bottom:771.653200pt;}
.y6d9_c00001{bottom:772.293333pt;}
.y7e0_c00001{bottom:772.933333pt;}
.y806_c00001{bottom:772.933467pt;}
.y38b_c00001{bottom:772.934667pt;}
.y683_c00001{bottom:773.094933pt;}
.y47a_c00001{bottom:773.254667pt;}
.y8b0_c00001{bottom:773.733200pt;}
.y82a_c00001{bottom:774.373600pt;}
.yd6_c00001{bottom:775.200000pt;}
.y72a_c00001{bottom:775.333333pt;}
.y891_c00001{bottom:775.333733pt;}
.y936_c00001{bottom:776.933600pt;}
.y6ff_c00001{bottom:777.893867pt;}
.yc80_c00001{bottom:778.100547pt;}
.y183e_c00001{bottom:778.100720pt;}
.y1bdc_c00001{bottom:778.101600pt;}
.y14f5_c00001{bottom:778.102960pt;}
.y1566_c00001{bottom:778.103627pt;}
.y122f_c00001{bottom:778.103973pt;}
.y1450_c00001{bottom:778.104000pt;}
.y13ac_c00001{bottom:778.104027pt;}
.y18fc_c00001{bottom:778.104160pt;}
.yb1d_c00001{bottom:778.104853pt;}
.y163d_c00001{bottom:778.105227pt;}
.y1279_c00001{bottom:778.105440pt;}
.y1cc8_c00001{bottom:778.105507pt;}
.y1c9a_c00001{bottom:778.105560pt;}
.y11af_c00001{bottom:778.105573pt;}
.y1ccd_c00001{bottom:778.106267pt;}
.ye4a_c00001{bottom:778.106627pt;}
.yf23_c00001{bottom:778.106667pt;}
.y1c9d_c00001{bottom:778.106693pt;}
.yb25_c00001{bottom:778.106800pt;}
.ycdf_c00001{bottom:778.106933pt;}
.y1a9a_c00001{bottom:778.108733pt;}
.y1e90_c00001{bottom:778.108880pt;}
.yf9f_c00001{bottom:778.109133pt;}
.y1d14_c00001{bottom:778.110213pt;}
.y102e_c00001{bottom:778.110227pt;}
.y1df0_c00001{bottom:778.110240pt;}
.y17e3_c00001{bottom:778.110507pt;}
.y1db5_c00001{bottom:778.110867pt;}
.y1f2a_c00001{bottom:778.111040pt;}
.yf02_c00001{bottom:778.111733pt;}
.y1de7_c00001{bottom:778.111787pt;}
.y1911_c00001{bottom:778.111920pt;}
.y1e4f_c00001{bottom:778.112467pt;}
.y1e7e_c00001{bottom:778.113013pt;}
.y1985_c00001{bottom:778.113147pt;}
.y17a3_c00001{bottom:778.113520pt;}
.yfea_c00001{bottom:778.113547pt;}
.y1e1d_c00001{bottom:778.113813pt;}
.y14c7_c00001{bottom:778.113920pt;}
.y1ec0_c00001{bottom:778.115947pt;}
.y1086_c00001{bottom:778.116480pt;}
.y1031_c00001{bottom:778.930667pt;}
.y6ae_c00001{bottom:779.497333pt;}
.y114_c00001{bottom:780.293333pt;}
.y11d_c00001{bottom:780.480000pt;}
.y152f_c00001{bottom:780.850667pt;}
.y7a6_c00001{bottom:782.053200pt;}
.y9b5_c00001{bottom:782.053333pt;}
.y9dc_c00001{bottom:783.333333pt;}
.y74b_c00001{bottom:784.775600pt;}
.y988_c00001{bottom:786.215733pt;}
.y788_c00001{bottom:787.653333pt;}
.y785_c00001{bottom:787.654267pt;}
.y8d0_c00001{bottom:787.814000pt;}
.ya7_c00001{bottom:787.840000pt;}
.y4fa_c00001{bottom:789.734667pt;}
.y769_c00001{bottom:789.895467pt;}
.y452_c00001{bottom:790.214667pt;}
.y7cf_c00001{bottom:790.694667pt;}
.y406_c00001{bottom:791.654667pt;}
.y8ea_c00001{bottom:792.293067pt;}
.y805_c00001{bottom:792.453733pt;}
.y682_c00001{bottom:792.615200pt;}
.yf06_c00001{bottom:792.690667pt;}
.y7df_c00001{bottom:793.893200pt;}
.y848_c00001{bottom:793.893333pt;}
.y729_c00001{bottom:794.053067pt;}
.y6d8_c00001{bottom:794.853733pt;}
.y628_c00001{bottom:796.614667pt;}
.y526_c00001{bottom:796.934667pt;}
.y6fe_c00001{bottom:797.414133pt;}
.y3e5_c00001{bottom:797.414667pt;}
.yaaa_c00001{bottom:797.892267pt;}
.y6ad_c00001{bottom:799.016667pt;}
.y53c_c00001{bottom:800.934667pt;}
.y86b_c00001{bottom:803.013600pt;}
.y890_c00001{bottom:803.014000pt;}
.y829_c00001{bottom:804.453867pt;}
.y152e_c00001{bottom:804.530667pt;}
.y935_c00001{bottom:804.613867pt;}
.y9db_c00001{bottom:805.094667pt;}
.y954_c00001{bottom:805.734800pt;}
.y4b8_c00001{bottom:805.894667pt;}
.y661_c00001{bottom:808.614667pt;}
.y104c_c00001{bottom:809.389333pt;}
.y987_c00001{bottom:811.335067pt;}
.y5ec_c00001{bottom:811.814667pt;}
.y681_c00001{bottom:812.134533pt;}
.y74a_c00001{bottom:812.294933pt;}
.y7a5_c00001{bottom:813.413600pt;}
.y104b_c00001{bottom:813.440000pt;}
.yaa9_c00001{bottom:814.427733pt;}
.y728_c00001{bottom:815.333333pt;}
.y8cf_c00001{bottom:815.333733pt;}
.y42d_c00001{bottom:815.654667pt;}
.y567_c00001{bottom:815.974667pt;}
.y389_c00001{bottom:817.574667pt;}
.y5fc_c00001{bottom:818.374667pt;}
.y3b0_c00001{bottom:819.653600pt;}
.y6fd_c00001{bottom:819.814133pt;}
.y8af_c00001{bottom:819.973333pt;}
.y9b0_c00001{bottom:819.973867pt;}
.y784_c00001{bottom:821.414667pt;}
.y7de_c00001{bottom:823.813467pt;}
.y847_c00001{bottom:823.813600pt;}
.y6ac_c00001{bottom:823.977067pt;}
.y7ce_c00001{bottom:824.933733pt;}
.yf25_c00001{bottom:827.200000pt;}
.y828_c00001{bottom:829.253867pt;}
.y9da_c00001{bottom:829.734667pt;}
.y88f_c00001{bottom:830.533733pt;}
.y6d7_c00001{bottom:830.693333pt;}
.y934_c00001{bottom:832.133600pt;}
.y478_c00001{bottom:832.614667pt;}
.y86a_c00001{bottom:833.093333pt;}
.y680_c00001{bottom:833.094400pt;}
.yaa8_c00001{bottom:834.160000pt;}
.y4f9_c00001{bottom:834.374667pt;}
.y749_c00001{bottom:834.854800pt;}
.y404_c00001{bottom:836.134667pt;}
.y623_c00001{bottom:836.294667pt;}
.y727_c00001{bottom:836.773467pt;}
.y9f3_c00001{bottom:836.930667pt;}
.y986_c00001{bottom:839.015333pt;}
.y953_c00001{bottom:841.415067pt;}
.y525_c00001{bottom:841.574667pt;}
.y6fc_c00001{bottom:842.374000pt;}
.y8ce_c00001{bottom:843.014000pt;}
.y804_c00001{bottom:843.333333pt;}
.y7a4_c00001{bottom:843.493333pt;}
.y7dd_c00001{bottom:844.773333pt;}
.y53b_c00001{bottom:845.414667pt;}
.y647_c00001{bottom:846.214667pt;}
.y5f9_c00001{bottom:847.014667pt;}
.y8ae_c00001{bottom:847.493067pt;}
.y905_c00001{bottom:847.493600pt;}
.y7cd_c00001{bottom:848.293600pt;}
.y783_c00001{bottom:848.294813pt;}
.y6ab_c00001{bottom:848.777067pt;}
.y451_c00001{bottom:849.414667pt;}
.y827_c00001{bottom:850.213733pt;}
.y4af_c00001{bottom:850.374667pt;}
.y9f2_c00001{bottom:851.332293pt;}
.y6d6_c00001{bottom:853.093333pt;}
.y9d9_c00001{bottom:854.374667pt;}
.y9f1_c00001{bottom:855.600000pt;}
.y5eb_c00001{bottom:856.294667pt;}
.y3e3_c00001{bottom:856.614667pt;}
.y869_c00001{bottom:856.773333pt;}
.y726_c00001{bottom:857.253733pt;}
.y748_c00001{bottom:857.254800pt;}
.y782_c00001{bottom:859.014667pt;}
.y933_c00001{bottom:859.813867pt;}
.y553_c00001{bottom:860.134667pt;}
.y385_c00001{bottom:862.054667pt;}
.y3af_c00001{bottom:862.373333pt;}
.y88e_c00001{bottom:864.135333pt;}
.y7a3_c00001{bottom:864.453733pt;}
.y6fb_c00001{bottom:864.774000pt;}
.y985_c00001{bottom:866.535067pt;}
.y803_c00001{bottom:869.573467pt;}
.y8cd_c00001{bottom:870.533733pt;}
.y660_c00001{bottom:871.014667pt;}
.y7cc_c00001{bottom:871.493600pt;}
.y67f_c00001{bottom:873.734533pt;}
.y6aa_c00001{bottom:873.736933pt;}
.y7dc_c00001{bottom:874.373333pt;}
.y8ad_c00001{bottom:875.173333pt;}
.y904_c00001{bottom:875.173867pt;}
.y565_c00001{bottom:875.334667pt;}
.y6d5_c00001{bottom:875.493333pt;}
.y952_c00001{bottom:877.255200pt;}
.y932_c00001{bottom:878.693600pt;}
.y4f8_c00001{bottom:878.854667pt;}
.y9d7_c00001{bottom:879.014667pt;}
.y725_c00001{bottom:879.333467pt;}
.y747_c00001{bottom:879.815200pt;}
.y403_c00001{bottom:880.774667pt;}
.y826_c00001{bottom:881.573600pt;}
.y3ae_c00001{bottom:886.054667pt;}
.y6fa_c00001{bottom:887.174000pt;}
.y428_c00001{bottom:891.814667pt;}
.y6a9_c00001{bottom:893.256667pt;}
.y984_c00001{bottom:894.055333pt;}
.y7a2_c00001{bottom:894.373467pt;}
.y7cb_c00001{bottom:894.693600pt;}
.y67e_c00001{bottom:894.694400pt;}
.y951_c00001{bottom:898.376000pt;}
.y61f_c00001{bottom:898.694667pt;}
.y868_c00001{bottom:899.173333pt;}
.y8cc_c00001{bottom:900.133733pt;}
.y7db_c00001{bottom:900.773333pt;}
.y5e9_c00001{bottom:900.774667pt;}
.y802_c00001{bottom:900.933333pt;}
.y746_c00001{bottom:902.215200pt;}
.y8ac_c00001{bottom:902.693067pt;}
.y8e9_c00001{bottom:902.693600pt;}
.y9d6_c00001{bottom:903.814667pt;}
.y538_c00001{bottom:904.774667pt;}
.y383_c00001{bottom:906.534667pt;}
.y450_c00001{bottom:908.614667pt;}
.y6f9_c00001{bottom:909.733867pt;}
.y88d_c00001{bottom:910.374933pt;}
.y825_c00001{bottom:911.493333pt;}
.y6d4_c00001{bottom:913.733333pt;}
.y781_c00001{bottom:914.214667pt;}
.y7a1_c00001{bottom:915.333333pt;}
.y3de_c00001{bottom:915.814667pt;}
.y724_c00001{bottom:916.293333pt;}
.y7ca_c00001{bottom:917.893600pt;}
.y6a8_c00001{bottom:918.056667pt;}
.y950_c00001{bottom:919.336400pt;}
.y983_c00001{bottom:921.735067pt;}
.y5f7_c00001{bottom:922.214667pt;}
.y4ef_c00001{bottom:923.334667pt;}
.y867_c00001{bottom:924.133733pt;}
.y67d_c00001{bottom:924.614667pt;}
.y745_c00001{bottom:924.615200pt;}
.ydb_c00001{bottom:924.960000pt;}
.y400_c00001{bottom:925.254667pt;}
.y9d5_c00001{bottom:928.454667pt;}
.yab_c00001{bottom:929.440000pt;}
.y8ab_c00001{bottom:930.373333pt;}
.y8cb_c00001{bottom:930.373867pt;}
.y3ad_c00001{bottom:930.534667pt;}
.y824_c00001{bottom:932.454667pt;}
.y801_c00001{bottom:933.733333pt;}
.y780_c00001{bottom:933.734933pt;}
.y564_c00001{bottom:934.534667pt;}
.y6a7_c00001{bottom:937.576933pt;}
.y7da_c00001{bottom:938.694667pt;}
.y7c9_c00001{bottom:941.254000pt;}
.y88c_c00001{bottom:943.974933pt;}
.y7a0_c00001{bottom:944.933333pt;}
.y6f8_c00001{bottom:945.415067pt;}
.y646_c00001{bottom:946.214667pt;}
.y744_c00001{bottom:947.175067pt;}
.y866_c00001{bottom:948.933733pt;}
.y537_c00001{bottom:949.254667pt;}
.y982_c00001{bottom:949.255333pt;}
.y381_c00001{bottom:951.174667pt;}
.y67c_c00001{bottom:952.293333pt;}
.y9d4_c00001{bottom:952.454667pt;}
.y94f_c00001{bottom:955.016133pt;}
.y8aa_c00001{bottom:957.893067pt;}
.y8ca_c00001{bottom:957.895200pt;}
.y723_c00001{bottom:959.334933pt;}
.y6d3_c00001{bottom:959.335867pt;}
.y823_c00001{bottom:962.533333pt;}
.y6a6_c00001{bottom:962.536800pt;}
.y7c8_c00001{bottom:964.454000pt;}
.y61d_c00001{bottom:964.934667pt;}
.y800_c00001{bottom:966.375067pt;}
.y427_c00001{bottom:967.974667pt;}
.y6f7_c00001{bottom:967.974933pt;}
.y865_c00001{bottom:968.454000pt;}
.y743_c00001{bottom:969.575067pt;}
.y3fe_c00001{bottom:969.734667pt;}
.y79f_c00001{bottom:971.176000pt;}
.y7d9_c00001{bottom:971.336400pt;}
.ya9e_c00001{bottom:974.785427pt;}
.y3ac_c00001{bottom:975.174667pt;}
.y88b_c00001{bottom:976.135333pt;}
.y9d3_c00001{bottom:976.454667pt;}
.y981_c00001{bottom:976.935067pt;}
.ya9d_c00001{bottom:985.450533pt;}
.yd7a_c00001{bottom:985.452440pt;}
.y1120_c00001{bottom:985.453240pt;}
.y8a9_c00001{bottom:985.573333pt;}
.y8c9_c00001{bottom:985.574933pt;}
.y6a5_c00001{bottom:987.336800pt;}
.y7c7_c00001{bottom:987.975333pt;}
.y822_c00001{bottom:990.054667pt;}
.y67b_c00001{bottom:990.055600pt;}
.y6f6_c00001{bottom:990.374933pt;}
.y94e_c00001{bottom:990.856267pt;}
.y536_c00001{bottom:993.734667pt;}
.yd79_c00001{bottom:996.119107pt;}
.y111f_c00001{bottom:996.119907pt;}
.y7ff_c00001{bottom:1002.695333pt;}
.yd78_c00001{bottom:1006.786813pt;}
.y111e_c00001{bottom:1006.787613pt;}
.y722_c00001{bottom:1007.841733pt;}
.y6d2_c00001{bottom:1007.842667pt;}
.y380_c00001{bottom:1008.162000pt;}
.y980_c00001{bottom:1010.562667pt;}
.y94d_c00001{bottom:1011.842667pt;}
.y6a4_c00001{bottom:1012.162800pt;}
.y6f5_c00001{bottom:1012.961333pt;}
.y88a_c00001{bottom:1013.121333pt;}
.yd7f_c00001{bottom:1022.211920pt;}
.ya9c_c00001{bottom:1022.212000pt;}
.y111d_c00001{bottom:1022.212147pt;}
.y821_c00001{bottom:1026.721333pt;}
.y3fd_c00001{bottom:1026.721733pt;}
.y37f_c00001{bottom:1026.881733pt;}
.y6a3_c00001{bottom:1031.843067pt;}
.y3ab_c00001{bottom:1032.162000pt;}
.y7fe_c00001{bottom:1034.241733pt;}
.y535_c00001{bottom:1050.721733pt;}
.y3aa_c00001{bottom:1050.881733pt;}
.y93_c00001{bottom:1053.600000pt;}
.y888_c00001{bottom:1060.482667pt;}
.hec_c00001{height:3.572400pt;}
.hf6_c00001{height:3.572920pt;}
.hf5_c00001{height:3.575000pt;}
.hd8_c00001{height:8.800000pt;}
.hf3_c00001{height:11.839587pt;}
.hf4_c00001{height:11.840107pt;}
.hed_c00001{height:13.757767pt;}
.h15_c00001{height:13.919333pt;}
.h13_c00001{height:13.919733pt;}
.h16_c00001{height:13.920267pt;}
.h6_c00001{height:16.319733pt;}
.h2_c00001{height:16.320267pt;}
.hc_c00001{height:16.479733pt;}
.he_c00001{height:16.480267pt;}
.h10_c00001{height:16.480667pt;}
.ha_c00001{height:16.639600pt;}
.h7_c00001{height:16.640133pt;}
.he4_c00001{height:19.759960pt;}
.hee_c00001{height:20.201440pt;}
.h8e_c00001{height:22.559867pt;}
.h90_c00001{height:22.719733pt;}
.h92_c00001{height:22.720267pt;}
.h91_c00001{height:22.753067pt;}
.hc9_c00001{height:22.879733pt;}
.hcb_c00001{height:22.880267pt;}
.hd3_c00001{height:22.911467pt;}
.hca_c00001{height:22.912533pt;}
.hc8_c00001{height:23.039600pt;}
.hc7_c00001{height:23.040133pt;}
.hea_c00001{height:23.296836pt;}
.hf2_c00001{height:23.679733pt;}
.hf1_c00001{height:23.680267pt;}
.hf7_c00001{height:23.680667pt;}
.he7_c00001{height:23.711960pt;}
.h70_c00001{height:24.799467pt;}
.h72_c00001{height:24.800000pt;}
.had_c00001{height:24.958800pt;}
.h71_c00001{height:24.959867pt;}
.hb1_c00001{height:24.960400pt;}
.hb0_c00001{height:25.119733pt;}
.he8_c00001{height:27.515579pt;}
.he6_c00001{height:27.663960pt;}
.he2_c00001{height:27.984328pt;}
.h6d_c00001{height:28.000000pt;}
.hf8_c00001{height:28.107769pt;}
.hce_c00001{height:29.794137pt;}
.h8c_c00001{height:31.039600pt;}
.he9_c00001{height:31.062500pt;}
.h14_c00001{height:31.500036pt;}
.he3_c00001{height:31.616000pt;}
.h12_c00001{height:31.927537pt;}
.he1_c00001{height:32.101517pt;}
.hef_c00001{height:32.322344pt;}
.hf0_c00001{height:32.648391pt;}
.h17_c00001{height:33.547539pt;}
.ha1_c00001{height:34.002585pt;}
.hdf_c00001{height:34.945274pt;}
.hbe_c00001{height:36.001322pt;}
.h2e_c00001{height:36.640133pt;}
.h3b_c00001{height:36.671333pt;}
.hd9_c00001{height:36.687500pt;}
.h3_c00001{height:36.750000pt;}
.h43_c00001{height:36.800000pt;}
.h47_c00001{height:36.830267pt;}
.hba_c00001{height:36.909137pt;}
.hf_c00001{height:37.187500pt;}
.h4_c00001{height:37.248750pt;}
.heb_c00001{height:37.312500pt;}
.h9_c00001{height:37.625000pt;}
.hd_c00001{height:37.692187pt;}
.ha9_c00001{height:38.062585pt;}
.h8_c00001{height:38.135625pt;}
.h8f_c00001{height:38.569140pt;}
.h48_c00001{height:38.672851pt;}
.h39_c00001{height:38.698789pt;}
.h5_c00001{height:39.138750pt;}
.h11_c00001{height:39.604687pt;}
.hb_c00001{height:40.070625pt;}
.h9a_c00001{height:40.250000pt;}
.hc5_c00001{height:40.640133pt;}
.hc0_c00001{height:40.911250pt;}
.hcc_c00001{height:40.933333pt;}
.hcf_c00001{height:40.998400pt;}
.hde_c00001{height:41.273392pt;}
.hb4_c00001{height:41.658750pt;}
.he0_c00001{height:41.976516pt;}
.hd2_c00001{height:41.982927pt;}
.h8d_c00001{height:42.122585pt;}
.h2f_c00001{height:42.147500pt;}
.haa_c00001{height:42.224085pt;}
.h99_c00001{height:42.262500pt;}
.h9c_c00001{height:42.550000pt;}
.hd4_c00001{height:42.733978pt;}
.hac_c00001{height:42.751250pt;}
.h1b_c00001{height:42.866250pt;}
.h1d_c00001{height:42.895000pt;}
.h20_c00001{height:42.988250pt;}
.hcd_c00001{height:43.084049pt;}
.hd1_c00001{height:43.153760pt;}
.h21_c00001{height:43.359867pt;}
.hbb_c00001{height:43.375000pt;}
.h1f_c00001{height:43.519733pt;}
.h98_c00001{height:43.750000pt;}
.h34_c00001{height:43.839600pt;}
.h31_c00001{height:43.840133pt;}
.h33_c00001{height:43.871333pt;}
.h57_c00001{height:43.872400pt;}
.h36_c00001{height:43.872933pt;}
.h30_c00001{height:44.000000pt;}
.h5d_c00001{height:44.031200pt;}
.h38_c00001{height:44.032800pt;}
.hd0_c00001{height:44.273829pt;}
.hb6_c00001{height:44.468750pt;}
.hbc_c00001{height:44.472917pt;}
.ha6_c00001{height:45.156250pt;}
.hb3_c00001{height:45.281250pt;}
.h4a_c00001{height:45.675983pt;}
.hda_c00001{height:45.859329pt;}
.hbd_c00001{height:45.919733pt;}
.hc2_c00001{height:45.920267pt;}
.h95_c00001{height:45.937500pt;}
.hdd_c00001{height:45.998909pt;}
.hb7_c00001{height:46.000000pt;}
.hc4_c00001{height:46.079733pt;}
.hc3_c00001{height:46.080267pt;}
.hc1_c00001{height:46.112533pt;}
.h25_c00001{height:46.239600pt;}
.h24_c00001{height:46.240133pt;}
.h8a_c00001{height:46.468750pt;}
.h9b_c00001{height:46.495853pt;}
.hdc_c00001{height:46.640578pt;}
.h84_c00001{height:46.690000pt;}
.h46_c00001{height:50.628750pt;}
.hb8_c00001{height:50.748750pt;}
.h87_c00001{height:50.750000pt;}
.h22_c00001{height:51.287500pt;}
.h6f_c00001{height:51.520267pt;}
.ha0_c00001{height:51.750000pt;}
.hae_c00001{height:51.896975pt;}
.h96_c00001{height:51.899055pt;}
.hb2_c00001{height:51.903215pt;}
.h97_c00001{height:53.746875pt;}
.hb9_c00001{height:54.112910pt;}
.hc6_c00001{height:54.114990pt;}
.h89_c00001{height:55.121358pt;}
.ha7_c00001{height:55.123438pt;}
.he5_c00001{height:55.328000pt;}
.h93_c00001{height:58.187500pt;}
.h5e_c00001{height:58.558800pt;}
.h40_c00001{height:58.559867pt;}
.h44_c00001{height:58.560400pt;}
.h42_c00001{height:58.591200pt;}
.h3c_c00001{height:58.591733pt;}
.h45_c00001{height:58.592667pt;}
.h41_c00001{height:58.719733pt;}
.h3d_c00001{height:58.720267pt;}
.h5f_c00001{height:58.751067pt;}
.h4d_c00001{height:58.751600pt;}
.h6a_c00001{height:58.752667pt;}
.hab_c00001{height:59.377500pt;}
.h9f_c00001{height:60.547500pt;}
.haf_c00001{height:61.096875pt;}
.h1a_c00001{height:61.180000pt;}
.h7a_c00001{height:61.600000pt;}
.h79_c00001{height:61.632800pt;}
.h77_c00001{height:61.759867pt;}
.h7f_c00001{height:61.760400pt;}
.h80_c00001{height:61.791200pt;}
.h81_c00001{height:61.792133pt;}
.h83_c00001{height:61.792667pt;}
.h88_c00001{height:61.803438pt;}
.hd5_c00001{height:61.969688pt;}
.h82_c00001{height:65.440133pt;}
.h6b_c00001{height:65.599467pt;}
.h76_c00001{height:65.600000pt;}
.h75_c00001{height:65.630267pt;}
.h7b_c00001{height:65.631200pt;}
.h8b_c00001{height:67.497500pt;}
.hb5_c00001{height:67.921875pt;}
.h9d_c00001{height:68.827500pt;}
.h50_c00001{height:69.279733pt;}
.h5b_c00001{height:72.320267pt;}
.h94_c00001{height:73.062500pt;}
.h6c_c00001{height:74.559867pt;}
.h78_c00001{height:74.592133pt;}
.h7e_c00001{height:74.592667pt;}
.hdb_c00001{height:74.625000pt;}
.h7d_c00001{height:74.752667pt;}
.h3e_c00001{height:75.359867pt;}
.h4b_c00001{height:75.519733pt;}
.h4c_c00001{height:75.520267pt;}
.h3f_c00001{height:75.552667pt;}
.h86_c00001{height:77.602812pt;}
.h55_c00001{height:81.440133pt;}
.h85_c00001{height:84.752500pt;}
.h61_c00001{height:86.080267pt;}
.ha5_c00001{height:86.116666pt;}
.h67_c00001{height:86.240133pt;}
.h9e_c00001{height:86.422500pt;}
.h35_c00001{height:88.319733pt;}
.hbf_c00001{height:92.000000pt;}
.h60_c00001{height:92.319733pt;}
.ha2_c00001{height:93.797903pt;}
.ha3_c00001{height:94.629413pt;}
.ha4_c00001{height:96.356239pt;}
.h7c_c00001{height:99.359867pt;}
.h4e_c00001{height:99.391200pt;}
.h51_c00001{height:101.600000pt;}
.h49_c00001{height:109.152667pt;}
.h5a_c00001{height:116.800000pt;}
.h4f_c00001{height:116.832800pt;}
.h52_c00001{height:116.959867pt;}
.h73_c00001{height:124.352667pt;}
.h54_c00001{height:125.920267pt;}
.h37_c00001{height:132.960400pt;}
.h64_c00001{height:132.991200pt;}
.h59_c00001{height:132.992667pt;}
.h6e_c00001{height:149.146667pt;}
.h63_c00001{height:177.440000pt;}
.h65_c00001{height:177.466667pt;}
.h3a_c00001{height:177.626667pt;}
.h74_c00001{height:198.908000pt;}
.h32_c00001{height:221.946667pt;}
.h62_c00001{height:221.948000pt;}
.h5c_c00001{height:222.105333pt;}
.h56_c00001{height:266.426667pt;}
.h53_c00001{height:266.585333pt;}
.h68_c00001{height:266.588000pt;}
.h26_c00001{height:269.920000pt;}
.h27_c00001{height:306.880000pt;}
.h66_c00001{height:311.066667pt;}
.ha8_c00001{height:319.040000pt;}
.h2d_c00001{height:363.840000pt;}
.h2c_c00001{height:386.880000pt;}
.h58_c00001{height:400.185333pt;}
.h69_c00001{height:489.145333pt;}
.h1e_c00001{height:628.960000pt;}
.h2a_c00001{height:629.920000pt;}
.h2b_c00001{height:648.960000pt;}
.h23_c00001{height:658.880000pt;}
.h28_c00001{height:713.920000pt;}
.h29_c00001{height:760.960000pt;}
.h0_c00001{height:793.333200pt;}
.h1_c00001{height:793.333333pt;}
.hd7_c00001{height:866.000000pt;}
.h18_c00001{height:1122.559867pt;}
.h1c_c00001{height:1122.560000pt;}
.hd6_c00001{height:1122.666400pt;}
.h19_c00001{height:1122.666667pt;}
.w54_c00001{width:5.759893pt;}
.w55_c00001{width:5.760413pt;}
.wa_c00001{width:6.879693pt;}
.w9_c00001{width:6.880213pt;}
.w24_c00001{width:7.039587pt;}
.w1e_c00001{width:7.040107pt;}
.w5a_c00001{width:11.519787pt;}
.w59_c00001{width:11.520307pt;}
.wb_c00001{width:13.759867pt;}
.wc_c00001{width:13.760400pt;}
.w22_c00001{width:14.079733pt;}
.w2e_c00001{width:14.080267pt;}
.w32_c00001{width:28.319733pt;}
.w14_c00001{width:28.480267pt;}
.w56_c00001{width:31.199467pt;}
.w65_c00001{width:31.200000pt;}
.w5b_c00001{width:34.239600pt;}
.w64_c00001{width:34.240133pt;}
.wf_c00001{width:36.159867pt;}
.w51_c00001{width:36.479733pt;}
.w62_c00001{width:36.480267pt;}
.w3c_c00001{width:36.799467pt;}
.w4c_c00001{width:36.800000pt;}
.w1f_c00001{width:36.959867pt;}
.wd_c00001{width:39.840133pt;}
.w3f_c00001{width:40.319733pt;}
.w4b_c00001{width:40.320267pt;}
.w23_c00001{width:40.640133pt;}
.w3_c00001{width:42.079200pt;}
.w39_c00001{width:42.719733pt;}
.w48_c00001{width:42.720267pt;}
.w58_c00001{width:43.039600pt;}
.w1b_c00001{width:43.040133pt;}
.w4f_c00001{width:43.840133pt;}
.wcc_c00001{width:44.998933pt;}
.wda_c00001{width:45.919733pt;}
.we_c00001{width:50.079733pt;}
.w3e_c00001{width:50.879733pt;}
.w6_c00001{width:50.880267pt;}
.w21_c00001{width:51.200000pt;}
.w36_c00001{width:51.840133pt;}
.w18_c00001{width:52.159867pt;}
.wd3_c00001{width:53.278667pt;}
.wbe_c00001{width:53.280267pt;}
.w50_c00001{width:53.600000pt;}
.w33_c00001{width:55.359867pt;}
.w63_c00001{width:55.839600pt;}
.w15_c00001{width:55.840133pt;}
.wbb_c00001{width:57.119733pt;}
.wc0_c00001{width:57.279733pt;}
.w89_c00001{width:58.079733pt;}
.w98_c00001{width:58.080267pt;}
.w8e_c00001{width:58.239600pt;}
.wa4_c00001{width:58.240133pt;}
.wc8_c00001{width:58.272933pt;}
.w93_c00001{width:58.400000pt;}
.wca_c00001{width:58.432800pt;}
.wa2_c00001{width:59.680267pt;}
.w9f_c00001{width:60.000000pt;}
.w79_c00001{width:61.279733pt;}
.we0_c00001{width:61.471333pt;}
.w4_c00001{width:61.759867pt;}
.w4e_c00001{width:62.079733pt;}
.w38_c00001{width:62.879733pt;}
.w49_c00001{width:62.880267pt;}
.wc1_c00001{width:63.071333pt;}
.w52_c00001{width:63.199467pt;}
.w1a_c00001{width:63.200000pt;}
.w74_c00001{width:63.359867pt;}
.w7f_c00001{width:64.159867pt;}
.w85_c00001{width:64.160400pt;}
.wbf_c00001{width:64.192667pt;}
.w6f_c00001{width:64.480267pt;}
.w5_c00001{width:64.640133pt;}
.wd4_c00001{width:65.279733pt;}
.wdd_c00001{width:65.280267pt;}
.wde_c00001{width:65.312533pt;}
.wbd_c00001{width:65.440133pt;}
.w37_c00001{width:65.919733pt;}
.w19_c00001{width:66.240133pt;}
.wba_c00001{width:66.272933pt;}
.w8a_c00001{width:70.559867pt;}
.wa7_c00001{width:70.720267pt;}
.we1_c00001{width:71.518800pt;}
.we2_c00001{width:71.519333pt;}
.wdf_c00001{width:72.000000pt;}
.wdc_c00001{width:72.032267pt;}
.w7_c00001{width:72.159867pt;}
.wa8_c00001{width:72.192667pt;}
.w2_c00001{width:72.800000pt;}
.w7a_c00001{width:72.959867pt;}
.w75_c00001{width:73.119733pt;}
.w35_c00001{width:73.439600pt;}
.w4a_c00001{width:73.440133pt;}
.w82_c00001{width:73.759867pt;}
.w70_c00001{width:73.760400pt;}
.w17_c00001{width:73.920267pt;}
.w3a_c00001{width:74.079733pt;}
.w47_c00001{width:74.080267pt;}
.w1c_c00001{width:74.559867pt;}
.w30_c00001{width:74.560400pt;}
.wc3_c00001{width:75.680267pt;}
.wc2_c00001{width:76.000000pt;}
.wc4_c00001{width:76.032267pt;}
.wc5_c00001{width:76.032800pt;}
.wc6_c00001{width:77.151067pt;}
.w8f_c00001{width:77.280267pt;}
.w94_c00001{width:78.080267pt;}
.wd7_c00001{width:79.359867pt;}
.wd8_c00001{width:79.360400pt;}
.w99_c00001{width:79.519733pt;}
.wce_c00001{width:79.679733pt;}
.wd1_c00001{width:79.680267pt;}
.wd5_c00001{width:79.680667pt;}
.wd6_c00001{width:79.712533pt;}
.wd9_c00001{width:79.713067pt;}
.wb8_c00001{width:79.871333pt;}
.wa0_c00001{width:80.000000pt;}
.wb7_c00001{width:80.031200pt;}
.wd2_c00001{width:80.031733pt;}
.wcf_c00001{width:80.032267pt;}
.wd0_c00001{width:80.032800pt;}
.wa5_c00001{width:80.479733pt;}
.w9c_c00001{width:81.919733pt;}
.wdb_c00001{width:86.240133pt;}
.wc9_c00001{width:92.992667pt;}
.wcb_c00001{width:93.152667pt;}
.w3d_c00001{width:103.680267pt;}
.w20_c00001{width:104.800000pt;}
.w57_c00001{width:106.080267pt;}
.w5d_c00001{width:108.640133pt;}
.w77_c00001{width:112.991200pt;}
.waa_c00001{width:118.911467pt;}
.w43_c00001{width:119.840133pt;}
.w87_c00001{width:120.351600pt;}
.w72_c00001{width:120.511467pt;}
.w83_c00001{width:120.671333pt;}
.w7e_c00001{width:122.111467pt;}
.wc7_c00001{width:125.919733pt;}
.w41_c00001{width:125.920267pt;}
.w26_c00001{width:127.360400pt;}
.w31_c00001{width:127.840133pt;}
.w13_c00001{width:128.160400pt;}
.w53_c00001{width:135.200000pt;}
.w61_c00001{width:136.800000pt;}
.w3b_c00001{width:138.560000pt;}
.w8b_c00001{width:141.306667pt;}
.w90_c00001{width:142.748000pt;}
.w42_c00001{width:144.800000pt;}
.w9a_c00001{width:145.466667pt;}
.wb4_c00001{width:146.268000pt;}
.w9d_c00001{width:147.228000pt;}
.w95_c00001{width:147.388000pt;}
.wa6_c00001{width:148.188000pt;}
.w92_c00001{width:148.985333pt;}
.w97_c00001{width:149.785333pt;}
.w5e_c00001{width:150.560000pt;}
.w8d_c00001{width:150.746667pt;}
.w34_c00001{width:151.040000pt;}
.w9b_c00001{width:151.706667pt;}
.w16_c00001{width:152.160000pt;}
.w5c_c00001{width:152.320000pt;}
.wa1_c00001{width:152.345333pt;}
.wcd_c00001{width:152.938667pt;}
.w8_c00001{width:153.280000pt;}
.w5f_c00001{width:153.440000pt;}
.w11_c00001{width:153.920000pt;}
.w8c_c00001{width:154.745333pt;}
.wa9_c00001{width:156.480000pt;}
.w71_c00001{width:158.108000pt;}
.w80_c00001{width:158.268000pt;}
.w86_c00001{width:158.428000pt;}
.w40_c00001{width:158.880000pt;}
.w76_c00001{width:160.666667pt;}
.w7d_c00001{width:160.828000pt;}
.w1d_c00001{width:161.600000pt;}
.wa3_c00001{width:161.626667pt;}
.w9e_c00001{width:161.786667pt;}
.w7b_c00001{width:161.788000pt;}
.w2d_c00001{width:162.880000pt;}
.w10_c00001{width:164.000000pt;}
.w12_c00001{width:164.640000pt;}
.wb9_c00001{width:164.826667pt;}
.w44_c00001{width:165.120000pt;}
.w96_c00001{width:167.705333pt;}
.w60_c00001{width:168.800000pt;}
.w88_c00001{width:168.826667pt;}
.w91_c00001{width:171.545333pt;}
.w45_c00001{width:181.120000pt;}
.w73_c00001{width:181.786667pt;}
.w7c_c00001{width:181.946667pt;}
.w81_c00001{width:183.226667pt;}
.w27_c00001{width:183.360000pt;}
.w6e_c00001{width:183.706667pt;}
.wb3_c00001{width:183.708000pt;}
.w84_c00001{width:183.866667pt;}
.w78_c00001{width:184.026667pt;}
.w29_c00001{width:185.600000pt;}
.w4d_c00001{width:193.760000pt;}
.w2a_c00001{width:196.800000pt;}
.w2f_c00001{width:198.400000pt;}
.w46_c00001{width:199.360000pt;}
.w28_c00001{width:201.440000pt;}
.w2b_c00001{width:220.960000pt;}
.w25_c00001{width:236.480000pt;}
.w2c_c00001{width:238.400000pt;}
.wae_c00001{width:263.226667pt;}
.wac_c00001{width:296.548000pt;}
.wbc_c00001{width:297.668000pt;}
.w6c_c00001{width:301.146667pt;}
.w6d_c00001{width:301.348000pt;}
.wb1_c00001{width:301.828000pt;}
.wab_c00001{width:305.946667pt;}
.wb0_c00001{width:311.226667pt;}
.waf_c00001{width:339.266667pt;}
.wb6_c00001{width:458.788000pt;}
.w69_c00001{width:547.680000pt;}
.wb5_c00001{width:576.000000pt;}
.w6a_c00001{width:600.960000pt;}
.wad_c00001{width:603.133333pt;}
.w6b_c00001{width:641.920000pt;}
.we5_c00001{width:685.440000pt;}
.we6_c00001{width:688.269333pt;}
.we3_c00001{width:793.333067pt;}
.we4_c00001{width:793.333333pt;}
.wb2_c00001{width:793.759733pt;}
.w66_c00001{width:793.759867pt;}
.w68_c00001{width:793.760000pt;}
.w67_c00001{width:794.000000pt;}
.w0_c00001{width:1122.666533pt;}
.w1_c00001{width:1122.666667pt;}
.x0_c00001{left:0.000000pt;}
.x182_c00001{left:0.960000pt;}
.x183_c00001{left:3.868460pt;}
.x178_c00001{left:4.800000pt;}
.x155_c00001{left:6.906667pt;}
.x14a_c00001{left:8.640133pt;}
.x150_c00001{left:9.920000pt;}
.x81_c00001{left:11.133600pt;}
.xc7_c00001{left:12.066667pt;}
.xc1_c00001{left:13.347067pt;}
.x79_c00001{left:14.400267pt;}
.xba_c00001{left:15.906933pt;}
.x118_c00001{left:16.866533pt;}
.x12f_c00001{left:18.532533pt;}
.x158_c00001{left:19.674133pt;}
.x127_c00001{left:20.932533pt;}
.x10d_c00001{left:22.533200pt;}
.x153_c00001{left:24.320000pt;}
.x10a_c00001{left:25.826933pt;}
.x154_c00001{left:26.720000pt;}
.xc6_c00001{left:28.386933pt;}
.xfd_c00001{left:29.893600pt;}
.xbb_c00001{left:31.333467pt;}
.x157_c00001{left:32.314133pt;}
.x133_c00001{left:33.213600pt;}
.x102_c00001{left:34.746667pt;}
.x117_c00001{left:36.453600pt;}
.x15f_c00001{left:37.434133pt;}
.x10f_c00001{left:38.906667pt;}
.x11f_c00001{left:40.546267pt;}
.x10c_c00001{left:42.106667pt;}
.x156_c00001{left:43.332800pt;}
.x134_c00001{left:44.546933pt;}
.x160_c00001{left:46.394133pt;}
.x7a_c00001{left:47.707600pt;}
.x152_c00001{left:48.826667pt;}
.xb8_c00001{left:49.853600pt;}
.xc0_c00001{left:51.706933pt;}
.x98_c00001{left:52.773600pt;}
.x100_c00001{left:54.333200pt;}
.x7d_c00001{left:55.973652pt;}
.xf6_c00001{left:57.186933pt;}
.x146_c00001{left:58.106493pt;}
.x7f_c00001{left:59.173600pt;}
.x80_c00001{left:60.293600pt;}
.x15a_c00001{left:61.434133pt;}
.x7e_c00001{left:62.373600pt;}
.xf8_c00001{left:63.906933pt;}
.xbc_c00001{left:64.800133pt;}
.x14c_c00001{left:66.586627pt;}
.x13_c00001{left:68.307333pt;}
.x7_c00001{left:70.067733pt;}
.x141_c00001{left:71.680267pt;}
.x120_c00001{left:73.212933pt;}
.x7b_c00001{left:74.733600pt;}
.x15b_c00001{left:75.673867pt;}
.x145_c00001{left:77.114133pt;}
.x104_c00001{left:78.399733pt;}
.x17d_c00001{left:79.359867pt;}
.x14f_c00001{left:80.474133pt;}
.x16f_c00001{left:81.801333pt;}
.x144_c00001{left:83.354133pt;}
.xff_c00001{left:84.506667pt;}
.x148_c00001{left:87.046667pt;}
.x103_c00001{left:88.186667pt;}
.x93_c00001{left:89.466533pt;}
.x128_c00001{left:91.065867pt;}
.x166_c00001{left:92.314133pt;}
.x68_c00001{left:93.267733pt;}
.xfe_c00001{left:94.306667pt;}
.x8f_c00001{left:95.653600pt;}
.x2d_c00001{left:98.067733pt;}
.x7c_c00001{left:100.866933pt;}
.x97_c00001{left:101.853600pt;}
.x96_c00001{left:104.093600pt;}
.x10e_c00001{left:106.146800pt;}
.x14d_c00001{left:107.194133pt;}
.x101_c00001{left:108.160267pt;}
.x14e_c00001{left:109.434133pt;}
.x149_c00001{left:110.554133pt;}
.xbe_c00001{left:111.653600pt;}
.x76_c00001{left:113.458800pt;}
.x177_c00001{left:114.593333pt;}
.x126_c00001{left:115.546667pt;}
.x94_c00001{left:116.492267pt;}
.x105_c00001{left:117.946533pt;}
.x167_c00001{left:118.906667pt;}
.xfa_c00001{left:119.973600pt;}
.xcd_c00001{left:122.053600pt;}
.x18a_c00001{left:123.073613pt;}
.x125_c00001{left:124.000267pt;}
.x12e_c00001{left:124.893600pt;}
.xf5_c00001{left:126.013600pt;}
.x109_c00001{left:129.893600pt;}
.x74_c00001{left:132.352133pt;}
.x16a_c00001{left:133.914133pt;}
.x10b_c00001{left:135.906667pt;}
.x169_c00001{left:137.274133pt;}
.x14b_c00001{left:138.214133pt;}
.x11d_c00001{left:140.453600pt;}
.x95_c00001{left:142.493600pt;}
.x17a_c00001{left:147.066667pt;}
.x168_c00001{left:149.474133pt;}
.x18b_c00001{left:151.866667pt;}
.x147_c00001{left:160.025293pt;}
.x17f_c00001{left:166.586987pt;}
.x15d_c00001{left:170.265067pt;}
.x180_c00001{left:171.866667pt;}
.x185_c00001{left:174.586667pt;}
.x187_c00001{left:175.546667pt;}
.x17b_c00001{left:182.586667pt;}
.x193_c00001{left:184.067733pt;}
.x90_c00001{left:185.466933pt;}
.x16e_c00001{left:188.986933pt;}
.x171_c00001{left:191.227358pt;}
.x132_c00001{left:200.826933pt;}
.x16d_c00001{left:202.906000pt;}
.x139_c00001{left:204.893600pt;}
.x142_c00001{left:207.844667pt;}
.x13b_c00001{left:210.787040pt;}
.x138_c00001{left:212.093600pt;}
.x13a_c00001{left:213.946933pt;}
.xc5_c00001{left:215.493600pt;}
.x13d_c00001{left:217.346880pt;}
.xcf_c00001{left:219.613600pt;}
.x181_c00001{left:221.626667pt;}
.x13c_c00001{left:226.173440pt;}
.x176_c00001{left:227.813600pt;}
.xd3_c00001{left:230.426920pt;}
.xd0_c00001{left:232.293600pt;}
.x72_c00001{left:233.466667pt;}
.xd4_c00001{left:235.933160pt;}
.x78_c00001{left:238.240267pt;}
.xd1_c00001{left:241.413387pt;}
.xb9_c00001{left:243.013600pt;}
.xda_c00001{left:245.093093pt;}
.x1_c00001{left:248.948000pt;}
.xd9_c00001{left:250.052987pt;}
.xd2_c00001{left:253.733187pt;}
.x77_c00001{left:255.066800pt;}
.xf7_c00001{left:258.400267pt;}
.x13e_c00001{left:260.866552pt;}
.x162_c00001{left:263.426667pt;}
.x161_c00001{left:265.186667pt;}
.xdb_c00001{left:266.532693pt;}
.xdc_c00001{left:268.346160pt;}
.x11e_c00001{left:270.146933pt;}
.xca_c00001{left:275.266933pt;}
.x135_c00001{left:277.986933pt;}
.x92_c00001{left:279.866933pt;}
.x121_c00001{left:281.987240pt;}
.xbf_c00001{left:282.880267pt;}
.xe0_c00001{left:284.799173pt;}
.xd6_c00001{left:286.626507pt;}
.xd7_c00001{left:288.479627pt;}
.xde_c00001{left:290.306027pt;}
.x9b_c00001{left:292.773501pt;}
.x48_c00001{left:294.066667pt;}
.x9a_c00001{left:295.333395pt;}
.x99_c00001{left:296.613600pt;}
.x63_c00001{left:297.906667pt;}
.x110_c00001{left:299.427240pt;}
.xa0_c00001{left:300.453755pt;}
.xc2_c00001{left:301.533600pt;}
.xa3_c00001{left:302.693933pt;}
.x129_c00001{left:303.773600pt;}
.x9c_c00001{left:305.253715pt;}
.xdd_c00001{left:306.746160pt;}
.xc9_c00001{left:309.307067pt;}
.x13f_c00001{left:310.399821pt;}
.x58_c00001{left:311.506667pt;}
.x9e_c00001{left:312.933408pt;}
.xdf_c00001{left:314.079493pt;}
.x8_c00001{left:315.986667pt;}
.x9d_c00001{left:318.053715pt;}
.xd5_c00001{left:319.546760pt;}
.x9f_c00001{left:320.613621pt;}
.x163_c00001{left:322.466667pt;}
.x136_c00001{left:323.746800pt;}
.x111_c00001{left:324.773507pt;}
.xc8_c00001{left:326.333600pt;}
.x2_c00001{left:327.506667pt;}
.x140_c00001{left:329.827021pt;}
.x12a_c00001{left:332.800133pt;}
.xa2_c00001{left:334.653800pt;}
.xd8_c00001{left:335.999387pt;}
.x137_c00001{left:338.586933pt;}
.x12b_c00001{left:340.066800pt;}
.x85_c00001{left:341.120573pt;}
.xcb_c00001{left:343.360667pt;}
.xbd_c00001{left:346.333600pt;}
.x83_c00001{left:347.227347pt;}
.x119_c00001{left:348.666800pt;}
.x191_c00001{left:349.651493pt;}
.xe5_c00001{left:350.652640pt;}
.x82_c00001{left:352.133600pt;}
.x84_c00001{left:354.587240pt;}
.x69_c00001{left:355.506667pt;}
.x86_c00001{left:357.054480pt;}
.x175_c00001{left:358.493333pt;}
.x107_c00001{left:360.546968pt;}
.x27_c00001{left:361.586667pt;}
.x15c_c00001{left:363.426667pt;}
.x87_c00001{left:364.414373pt;}
.x64_c00001{left:365.586667pt;}
.xe4_c00001{left:368.932373pt;}
.x19f_c00001{left:370.023600pt;}
.xf9_c00001{left:370.973600pt;}
.x49_c00001{left:372.626667pt;}
.x3d_c00001{left:374.548000pt;}
.x106_c00001{left:375.587035pt;}
.x16b_c00001{left:377.986667pt;}
.x71_c00001{left:380.226667pt;}
.x18c_c00001{left:381.506667pt;}
.x11a_c00001{left:382.653733pt;}
.x122_c00001{left:384.187133pt;}
.x59_c00001{left:385.106667pt;}
.x112_c00001{left:386.266701pt;}
.x14_c00001{left:387.666667pt;}
.xa8_c00001{left:389.693960pt;}
.xe7_c00001{left:390.879253pt;}
.x19d_c00001{left:391.784629pt;}
.x170_c00001{left:393.188000pt;}
.x9_c00001{left:394.548000pt;}
.x19b_c00001{left:395.464267pt;}
.x73_c00001{left:396.866667pt;}
.x194_c00001{left:398.506907pt;}
.xe1_c00001{left:400.026213pt;}
.xa7_c00001{left:401.187187pt;}
.xc3_c00001{left:402.694040pt;}
.x3_c00001{left:406.066667pt;}
.x164_c00001{left:407.426667pt;}
.x12c_c00001{left:409.533467pt;}
.xa1_c00001{left:411.427267pt;}
.xe2_c00001{left:412.826213pt;}
.xea_c00001{left:414.652093pt;}
.x143_c00001{left:415.906667pt;}
.x70_c00001{left:417.266667pt;}
.xe6_c00001{left:418.305840pt;}
.x11b_c00001{left:420.293733pt;}
.xe8_c00001{left:421.945920pt;}
.x5d_c00001{left:423.186667pt;}
.x16c_c00001{left:425.666667pt;}
.x18_c00001{left:427.026667pt;}
.x5c_c00001{left:429.106667pt;}
.x2e_c00001{left:430.386667pt;}
.x12d_c00001{left:431.333467pt;}
.x56_c00001{left:432.786667pt;}
.xfb_c00001{left:434.427200pt;}
.x184_c00001{left:436.548000pt;}
.x151_c00001{left:437.986667pt;}
.x4e_c00001{left:439.666667pt;}
.x28_c00001{left:442.066667pt;}
.xe9_c00001{left:445.732400pt;}
.x43_c00001{left:448.466667pt;}
.xcc_c00001{left:449.667467pt;}
.x4a_c00001{left:451.186667pt;}
.xe3_c00001{left:453.052747pt;}
.x11c_c00001{left:454.306800pt;}
.x131_c00001{left:457.213512pt;}
.x3e_c00001{left:459.986667pt;}
.x130_c00001{left:461.120179pt;}
.xa6_c00001{left:462.587187pt;}
.x8b_c00001{left:463.707568pt;}
.xa_c00001{left:466.226667pt;}
.xaa_c00001{left:467.707027pt;}
.x89_c00001{left:469.854475pt;}
.xa4_c00001{left:471.547000pt;}
.xf_c00001{left:473.106667pt;}
.x88_c00001{left:474.747701pt;}
.x123_c00001{left:475.746920pt;}
.x8a_c00001{left:477.214368pt;}
.x114_c00001{left:478.560488pt;}
.x113_c00001{left:479.840088pt;}
.xb0_c00001{left:481.787800pt;}
.xa9_c00001{left:483.066893pt;}
.x4_c00001{left:484.626667pt;}
.x108_c00001{left:486.240296pt;}
.x8c_c00001{left:487.493968pt;}
.x8e_c00001{left:488.733539pt;}
.x5e_c00001{left:490.066667pt;}
.x8d_c00001{left:491.173648pt;}
.xa5_c00001{left:493.306920pt;}
.xfc_c00001{left:494.627243pt;}
.x26_c00001{left:495.826667pt;}
.xb1_c00001{left:497.147667pt;}
.x65_c00001{left:500.948000pt;}
.x1f_c00001{left:502.866667pt;}
.x38_c00001{left:503.826667pt;}
.x196_c00001{left:505.156267pt;}
.x57_c00001{left:506.068000pt;}
.x19e_c00001{left:507.410189pt;}
.x172_c00001{left:508.575625pt;}
.x2f_c00001{left:510.866667pt;}
.xaf_c00001{left:512.481000pt;}
.x19_c00001{left:514.548000pt;}
.x53_c00001{left:518.226667pt;}
.xc4_c00001{left:520.000173pt;}
.xac_c00001{left:521.440360pt;}
.x29_c00001{left:522.548000pt;}
.xed_c00001{left:524.385907pt;}
.xec_c00001{left:526.212013pt;}
.xb2_c00001{left:527.840333pt;}
.x4b_c00001{left:529.748000pt;}
.xad_c00001{left:530.720573pt;}
.x124_c00001{left:532.293747pt;}
.xae_c00001{left:533.280467pt;}
.xeb_c00001{left:535.358893pt;}
.xab_c00001{left:537.121027pt;}
.xb6_c00001{left:538.400243pt;}
.xb5_c00001{left:540.961176pt;}
.xb7_c00001{left:542.240349pt;}
.xb4_c00001{left:543.521067pt;}
.xb_c00001{left:544.786667pt;}
.xb3_c00001{left:546.080960pt;}
.x116_c00001{left:548.093800pt;}
.x115_c00001{left:549.373493pt;}
.x10_c00001{left:551.666667pt;}
.x6a_c00001{left:552.626667pt;}
.xee_c00001{left:553.626067pt;}
.x15e_c00001{left:554.813333pt;}
.x179_c00001{left:556.893333pt;}
.x6e_c00001{left:558.548000pt;}
.x20_c00001{left:560.148000pt;}
.x195_c00001{left:562.079323pt;}
.x5_c00001{left:563.186667pt;}
.x192_c00001{left:565.811853pt;}
.x24_c00001{left:567.186667pt;}
.x66_c00001{left:568.626667pt;}
.xf3_c00001{left:570.105867pt;}
.xf2_c00001{left:574.265760pt;}
.x188_c00001{left:575.613333pt;}
.x1a_c00001{left:578.866667pt;}
.x44_c00001{left:582.066667pt;}
.xf1_c00001{left:583.386053pt;}
.x30_c00001{left:584.306667pt;}
.xef_c00001{left:585.212613pt;}
.xf4_c00001{left:587.065720pt;}
.x3f_c00001{left:588.948000pt;}
.x4f_c00001{left:589.906667pt;}
.x35_c00001{left:591.348000pt;}
.xf0_c00001{left:592.545947pt;}
.x159_c00001{left:595.613333pt;}
.x54_c00001{left:596.786667pt;}
.x165_c00001{left:598.333333pt;}
.x3a_c00001{left:600.466667pt;}
.x2a_c00001{left:603.026667pt;}
.x17e_c00001{left:604.252000pt;}
.x4c_c00001{left:608.306667pt;}
.x18e_c00001{left:613.972000pt;}
.x199_c00001{left:617.548000pt;}
.x5f_c00001{left:618.548000pt;}
.x6b_c00001{left:620.306667pt;}
.x18f_c00001{left:621.331933pt;}
.x19c_c00001{left:622.290563pt;}
.xc_c00001{left:623.348000pt;}
.x61_c00001{left:624.466667pt;}
.x6f_c00001{left:626.226667pt;}
.x11_c00001{left:630.226667pt;}
.x18d_c00001{left:631.308000pt;}
.x5a_c00001{left:634.548000pt;}
.x67_c00001{left:636.306667pt;}
.x198_c00001{left:638.131773pt;}
.x21_c00001{left:639.666667pt;}
.x6_c00001{left:641.748000pt;}
.x1e_c00001{left:646.706667pt;}
.x190_c00001{left:653.651707pt;}
.x186_c00001{left:654.694667pt;}
.x189_c00001{left:655.654667pt;}
.x15_c00001{left:658.386667pt;}
.x197_c00001{left:659.626653pt;}
.x17c_c00001{left:661.574000pt;}
.x62_c00001{left:663.348000pt;}
.x31_c00001{left:664.786667pt;}
.x50_c00001{left:668.466667pt;}
.x174_c00001{left:670.535027pt;}
.x36_c00001{left:671.826667pt;}
.x55_c00001{left:675.348000pt;}
.x5b_c00001{left:679.348000pt;}
.x75_c00001{left:680.453467pt;}
.x19a_c00001{left:682.187067pt;}
.x2b_c00001{left:683.506667pt;}
.x4d_c00001{left:686.866667pt;}
.x173_c00001{left:689.414667pt;}
.x6c_c00001{left:693.906667pt;}
.x12_c00001{left:701.906667pt;}
.x6d_c00001{left:703.986667pt;}
.xd_c00001{left:708.786667pt;}
.xe_c00001{left:720.306667pt;}
.x45_c00001{left:731.506667pt;}
.x91_c00001{left:734.373200pt;}
.x40_c00001{left:738.386667pt;}
.x60_c00001{left:742.066667pt;}
.x32_c00001{left:745.266667pt;}
.x3b_c00001{left:749.906667pt;}
.x37_c00001{left:752.306667pt;}
.x51_c00001{left:753.906667pt;}
.x2c_c00001{left:763.986667pt;}
.x52_c00001{left:765.426667pt;}
.xce_c00001{left:774.373200pt;}
.x47_c00001{left:783.666667pt;}
.x41_c00001{left:790.548000pt;}
.x22_c00001{left:792.466667pt;}
.x1b_c00001{left:799.506667pt;}
.x3c_c00001{left:802.066667pt;}
.x16_c00001{left:811.186667pt;}
.x39_c00001{left:825.748000pt;}
.x33_c00001{left:832.786667pt;}
.x34_c00001{left:844.466667pt;}
.x25_c00001{left:845.748000pt;}
.x1c_c00001{left:852.786667pt;}
.x17_c00001{left:864.466667pt;}
.x46_c00001{left:875.026667pt;}
.x42_c00001{left:886.548000pt;}
.x23_c00001{left:939.348000pt;}
.x1d_c00001{left:951.026667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a09511d3d4cade5fa1e7b463.woff2')format("woff");}.ff1_c00002{font-family:ff1_c00002;line-height:1.070312;font-style:normal;font-weight:normal;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_9c5a12e4c85669d41b4a5729.woff2')format("woff");}.ff2_c00002{font-family:ff2_c00002;line-height:1.084961;font-style:normal;font-weight:normal;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_e77c5346f3f1c1c7f1856198.woff2')format("woff");}.ff3_c00002{font-family:ff3_c00002;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00002;src:url('chunks/assets/font_ea0a5d114971b10c629d3863.woff2')format("woff");}.ff4_c00002{font-family:ff4_c00002;line-height:0.959000;font-style:normal;font-weight:normal;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_d180abc3ac04808f76d7e0be.woff2')format("woff");}.ff5_c00002{font-family:ff5_c00002;line-height:0.764000;font-style:normal;font-weight:normal;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_9ccb4a1fbffa78e329d0af83.woff2')format("woff");}.ff6_c00002{font-family:ff6_c00002;line-height:1.075000;font-style:normal;font-weight:normal;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_853cb3a1b49e756ffaeff177.woff2')format("woff");}.ff7_c00002{font-family:ff7_c00002;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00002;src:url('chunks/assets/font_7547268f9bd9bf207e3c65a9.woff2')format("woff");}.ff8_c00002{font-family:ff8_c00002;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00002;src:url('chunks/assets/font_465cd985b59cb93e6afd1fd5.woff2')format("woff");}.ff9_c00002{font-family:ff9_c00002;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00002;src:url('chunks/assets/font_9ccb4a1fbffa78e329d0af83.woff2')format("woff");}.ffa_c00002{font-family:ffa_c00002;line-height:1.075000;font-style:normal;font-weight: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_c00002;src:url('chunks/assets/font_7aa7d005a4face5c74d28c3f.woff2')format("woff");}.ffb_c00002{font-family:ffb_c00002;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc_c00002;src:url('chunks/assets/font_e7828d283fe782d2be28d417.woff2')format("woff");}.ffc_c00002{font-family:ffc_c00002;line-height:1.070312;font-style:normal;font-weight: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_c00002;src:url('chunks/assets/font_12fd73d0b48ad2c92b7fe286.woff2')format("woff");}.ffd_c00002{font-family:ffd_c00002;line-height:1.084961;font-style:normal;font-weight: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_c00002;src:url('chunks/assets/font_fda674665f3a16f0efdd1ea8.woff2')format("woff");}.ffe_c00002{font-family:ffe_c00002;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff_c00002;src:url('chunks/assets/font_1919d191c76d723cb28d866c.woff2')format("woff");}.fff_c00002{font-family:fff_c00002;line-height:0.764000;font-style:normal;font-weight: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_c00002;src:url('chunks/assets/font_b2b343a7be6622bbdd7426e4.woff2')format("woff");}.ff10_c00002{font-family:ff10_c00002;line-height:0.959000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11_c00002;src:url('chunks/assets/font_6a20e71a3e2122c07b340f3c.woff2')format("woff");}.ff11_c00002{font-family:ff11_c00002;line-height:0.959000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12_c00002;src:url('chunks/assets/font_30f5e485af3ea4969c2b0282.woff2')format("woff");}.ff12_c00002{font-family:ff12_c00002;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13_c00002;src:url('chunks/assets/font_a8859a1d8365b79c1ad361ea.woff2')format("woff");}.ff13_c00002{font-family:ff13_c00002;line-height:0.858398;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14_c00002;src:url('chunks/assets/font_625758206f846fcd64b3a8a0.woff2')format("woff");}.ff14_c00002{font-family:ff14_c00002;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15_c00002;src:url('chunks/assets/font_970c19dd85f69734dd1a625b.woff2')format("woff");}.ff15_c00002{font-family:ff15_c00002;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16_c00002;src:url('chunks/assets/font_4bedf4631f01c2821c1e918d.woff2')format("woff");}.ff16_c00002{font-family:ff16_c00002;line-height:0.858398;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17_c00002;src:url('chunks/assets/font_ab9869d49370436cbd13ff95.woff2')format("woff");}.ff17_c00002{font-family:ff17_c00002;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18_c00002;src:url('chunks/assets/font_499fa24a7dd0f37d9c993ab0.woff2')format("woff");}.ff18_c00002{font-family:ff18_c00002;line-height:0.871094;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19_c00002;src:url('chunks/assets/font_c9397be3f0e96b012fa5874b.woff2')format("woff");}.ff19_c00002{font-family:ff19_c00002;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a_c00002;src:url('chunks/assets/font_9e0ac7ea03cccb731d01d308.woff2')format("woff");}.ff1a_c00002{font-family:ff1a_c00002;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b_c00002;src:url('chunks/assets/font_3afb85f5cb294e649f5c54aa.woff2')format("woff");}.ff1b_c00002{font-family:ff1b_c00002;line-height:0.873535;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c_c00002;src:url('chunks/assets/font_7dc0aa1246cbafcc10f6eefa.woff2')format("woff");}.ff1c_c00002{font-family:ff1c_c00002;line-height:0.930664;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d_c00002;src:url('chunks/assets/font_ddebf7317c5a36c3cbbb6063.woff2')format("woff");}.ff1d_c00002{font-family:ff1d_c00002;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e_c00002;src:url('chunks/assets/font_573d063dfa24800c15accbfc.woff2')format("woff");}.ff1e_c00002{font-family:ff1e_c00002;line-height:0.858398;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f_c00002;src:url('chunks/assets/font_5827894f79aef086bedae9da.woff2')format("woff");}.ff1f_c00002{font-family:ff1f_c00002;line-height:0.860840;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20_c00002;src:url('chunks/assets/font_4f7ca4e059899a22fcc28310.woff2')format("woff");}.ff20_c00002{font-family:ff20_c00002;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21_c00002;src:url('chunks/assets/font_36c49d534bd58d3638bf9017.woff2')format("woff");}.ff21_c00002{font-family:ff21_c00002;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22_c00002;src:url('chunks/assets/font_6a188bd9d75d39dbd78fca35.woff2')format("woff");}.ff22_c00002{font-family:ff22_c00002;line-height:0.858398;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23_c00002;src:url('chunks/assets/font_4de776196f7980faa827e0a1.woff2')format("woff");}.ff23_c00002{font-family:ff23_c00002;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24_c00002;src:url('chunks/assets/font_f77ac5f7be7dd67daab1db6f.woff2')format("woff");}.ff24_c00002{font-family:ff24_c00002;line-height:0.971191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25_c00002;src:url('chunks/assets/font_26678fe60386a01d469b0713.woff2')format("woff");}.ff25_c00002{font-family:ff25_c00002;line-height:0.971191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26_c00002;src:url('chunks/assets/font_572bc7a73cd33cac49a8abdc.woff2')format("woff");}.ff26_c00002{font-family:ff26_c00002;line-height:0.929199;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27_c00002;src:url('chunks/assets/font_45e58ccb896793e4d23de657.woff2')format("woff");}.ff27_c00002{font-family:ff27_c00002;line-height:0.925293;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28_c00002;src:url('chunks/assets/font_a8d0146913ecbb3a426a43dc.woff2')format("woff");}.ff28_c00002{font-family:ff28_c00002;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29_c00002;src:url('chunks/assets/font_40a8a2ea8389dbd768fd7c6d.woff2')format("woff");}.ff29_c00002{font-family:ff29_c00002;line-height:0.727539;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a_c00002;src:url('chunks/assets/font_b936a53b61c0dde03362a4bb.woff2')format("woff");}.ff2a_c00002{font-family:ff2a_c00002;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b_c00002;src:url('chunks/assets/font_fa8f3d0afcfc85108506ad29.woff2')format("woff");}.ff2b_c00002{font-family:ff2b_c00002;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c_c00002;src:url('chunks/assets/font_740c60336441250328862041.woff2')format("woff");}.ff2c_c00002{font-family:ff2c_c00002;line-height:0.740234;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d_c00002;src:url('chunks/assets/font_b936a53b61c0dde03362a4bb.woff2')format("woff");}.ff2d_c00002{font-family:ff2d_c00002;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e_c00002;src:url('chunks/assets/font_f29cc0b3c42ab8ad967e49ec.woff2')format("woff");}.ff2e_c00002{font-family:ff2e_c00002;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f_c00002;src:url('chunks/assets/font_205c5a6ef752fdfe8dd76c9e.woff2')format("woff");}.ff2f_c00002{font-family:ff2f_c00002;line-height:1.084961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff30_c00002;src:url('chunks/assets/font_7bfb351535ea4f9c2d53c3f5.woff2')format("woff");}.ff30_c00002{font-family:ff30_c00002;line-height:1.070312;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff31_c00002;src:url('chunks/assets/font_42ea5892ca4444939d969d2e.woff2')format("woff");}.ff31_c00002{font-family:ff31_c00002;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff32_c00002;src:url('chunks/assets/font_58062781ea2d5a4cd293f107.woff2')format("woff");}.ff32_c00002{font-family:ff32_c00002;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff33_c00002;src:url('chunks/assets/font_9a6cc383ae4a63d91989e39d.woff2')format("woff");}.ff33_c00002{font-family:ff33_c00002;line-height:0.959000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff34_c00002;src:url('chunks/assets/font_6365395f660d0f66fceb25aa.woff2')format("woff");}.ff34_c00002{font-family:ff34_c00002;line-height:0.959000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff35_c00002;src:url('chunks/assets/font_f73aabddd26e0567e93ba3ac.woff2')format("woff");}.ff35_c00002{font-family:ff35_c00002;line-height:0.869141;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff36_c00002;src:url('chunks/assets/font_9ea2eb00e50155921e00c1a9.woff2')format("woff");}.ff36_c00002{font-family:ff36_c00002;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff37_c00002;src:url('chunks/assets/font_62c3bc0b6177df42bd0352d8.woff2')format("woff");}.ff37_c00002{font-family:ff37_c00002;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff38_c00002;src:url('chunks/assets/font_6e9b5d85b1a5df1d1e8f3cbe.woff2')format("woff");}.ff38_c00002{font-family:ff38_c00002;line-height:0.871094;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff39_c00002;src:url('chunks/assets/font_c7bf4120a7afa07cf44e44cc.woff2')format("woff");}.ff39_c00002{font-family:ff39_c00002;line-height:0.857910;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3a_c00002;src:url('chunks/assets/font_c1c8bc8257807eae0b773bb6.woff2')format("woff");}.ff3a_c00002{font-family:ff3a_c00002;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3b_c00002;src:url('chunks/assets/font_bf9157e2112411742d2d84ed.woff2')format("woff");}.ff3b_c00002{font-family:ff3b_c00002;line-height:0.858398;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3c_c00002;src:url('chunks/assets/font_6249fa5aff4140b840b90453.woff2')format("woff");}.ff3c_c00002{font-family:ff3c_c00002;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3d_c00002;src:url('chunks/assets/font_92ff089329ee20675a43bf26.woff2')format("woff");}.ff3d_c00002{font-family:ff3d_c00002;line-height:0.858398;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3e_c00002;src:url('chunks/assets/font_db28a41e405f553e04be799c.woff2')format("woff");}.ff3e_c00002{font-family:ff3e_c00002;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3f_c00002;src:url('chunks/assets/font_71b420b8a6e06add9c72738c.woff2')format("woff");}.ff3f_c00002{font-family:ff3f_c00002;line-height:0.858398;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff40_c00002;src:url('chunks/assets/font_9c3f5bc4a248a115f481c92f.woff2')format("woff");}.ff40_c00002{font-family:ff40_c00002;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff41_c00002;src:url('chunks/assets/font_8c7f63862f4a9066465d665b.woff2')format("woff");}.ff41_c00002{font-family:ff41_c00002;line-height:0.858398;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff42_c00002;src:url('chunks/assets/font_153b0fedb48d9b075b894658.woff2')format("woff");}.ff42_c00002{font-family:ff42_c00002;line-height:0.677734;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff43_c00002;src:url('chunks/assets/font_37c2c0c4a1e9d43bc0116599.woff2')format("woff");}.ff43_c00002{font-family:ff43_c00002;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff44_c00002;src:url('chunks/assets/font_73c4c158fd7834fead93a742.woff2')format("woff");}.ff44_c00002{font-family:ff44_c00002;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1b_c00002{transform:matrix(-0.250000,0.000000,0.000000,-0.250000,0,0);-ms-transform:matrix(-0.250000,0.000000,0.000000,-0.250000,0,0);-webkit-transform:matrix(-0.250000,0.000000,0.000000,-0.250000,0,0);}
.m1_c00002{transform:matrix(0.000000,-0.244537,0.244537,0.051979,0,0);-ms-transform:matrix(0.000000,-0.244537,0.244537,0.051979,0,0);-webkit-transform:matrix(0.000000,-0.244537,0.244537,0.051979,0,0);}
.m3_c00002{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m2_c00002{transform:matrix(0.244537,0.000000,-0.051979,0.244537,0,0);-ms-transform:matrix(0.244537,0.000000,-0.051979,0.244537,0,0);-webkit-transform:matrix(0.244537,0.000000,-0.051979,0.244537,0,0);}
.m28_c00002{transform:matrix(0.249735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249735,0.000000,0.000000,0.250000,0,0);}
.m25_c00002{transform:matrix(0.249737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249737,0.000000,0.000000,0.250000,0,0);}
.m26_c00002{transform:matrix(0.249741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249741,0.000000,0.000000,0.250000,0,0);}
.m27_c00002{transform:matrix(0.249743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249743,0.000000,0.000000,0.250000,0,0);}
.m1c_c00002{transform:matrix(0.249786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249786,0.000000,0.000000,0.250000,0,0);}
.m1d_c00002{transform:matrix(0.249792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249792,0.000000,0.000000,0.250000,0,0);}
.m4_c00002{transform:matrix(0.249834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249834,0.000000,0.000000,0.250000,0,0);}
.m5_c00002{transform:matrix(0.249837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249837,0.000000,0.000000,0.250000,0,0);}
.m14_c00002{transform:matrix(0.249839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249839,0.000000,0.000000,0.250000,0,0);}
.m15_c00002{transform:matrix(0.249842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249842,0.000000,0.000000,0.250000,0,0);}
.m13_c00002{transform:matrix(0.249844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249844,0.000000,0.000000,0.250000,0,0);}
.m6_c00002{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.ma_c00002{transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);}
.m19_c00002{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m9_c00002{transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);}
.m30_c00002{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.m1a_c00002{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.m11_c00002{transform:matrix(0.249902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249902,0.000000,0.000000,0.250000,0,0);}
.m2c_c00002{transform:matrix(0.249906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249906,0.000000,0.000000,0.250000,0,0);}
.m12_c00002{transform:matrix(0.249910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249910,0.000000,0.000000,0.250000,0,0);}
.m2a_c00002{transform:matrix(0.249915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249915,0.000000,0.000000,0.250000,0,0);}
.m2b_c00002{transform:matrix(0.249923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249923,0.000000,0.000000,0.250000,0,0);}
.m32_c00002{transform:matrix(0.249978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249978,0.000000,0.000000,0.250000,0,0);}
.m31_c00002{transform:matrix(0.249983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249983,0.000000,0.000000,0.250000,0,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);}
.m8_c00002{transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);}
.m7_c00002{transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);}
.m2e_c00002{transform:matrix(0.250147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250147,0.000000,0.000000,0.250000,0,0);}
.m2f_c00002{transform:matrix(0.250152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250152,0.000000,0.000000,0.250000,0,0);}
.m2d_c00002{transform:matrix(0.250155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250155,0.000000,0.000000,0.250000,0,0);}
.md_c00002{transform:matrix(0.250195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250195,0.000000,0.000000,0.250000,0,0);}
.me_c00002{transform:matrix(0.250197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250197,0.000000,0.000000,0.250000,0,0);}
.mc_c00002{transform:matrix(0.250200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250200,0.000000,0.000000,0.250000,0,0);}
.mb_c00002{transform:matrix(0.250205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250205,0.000000,0.000000,0.250000,0,0);}
.m18_c00002{transform:matrix(0.250272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250272,0.000000,0.000000,0.250000,0,0);}
.m17_c00002{transform:matrix(0.250277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250277,0.000000,0.000000,0.250000,0,0);}
.m16_c00002{transform:matrix(0.250280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250280,0.000000,0.000000,0.250000,0,0);}
.m29_c00002{transform:matrix(0.250290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250290,0.000000,0.000000,0.250000,0,0);}
.mf_c00002{transform:matrix(0.250630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250630,0.000000,0.000000,0.250000,0,0);}
.m10_c00002{transform:matrix(0.250632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250632,0.000000,0.000000,0.250000,0,0);}
.m20_c00002{transform:matrix(0.270247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270247,0.000000,0.000000,0.250000,0,0);}
.m1f_c00002{transform:matrix(0.270265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270265,0.000000,0.000000,0.250000,0,0);}
.m1e_c00002{transform:matrix(0.270270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270270,0.000000,0.000000,0.250000,0,0);}
.m21_c00002{transform:matrix(0.274640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274640,0.000000,0.000000,0.250000,0,0);}
.m22_c00002{transform:matrix(0.274643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274643,0.000000,0.000000,0.250000,0,0);}
.m24_c00002{transform:matrix(0.276975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276975,0.000000,0.000000,0.250000,0,0);}
.m23_c00002{transform:matrix(0.276990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276990,0.000000,0.000000,0.250000,0,0);}
.vb_c00002{vertical-align:-25.200000px;}
.v9_c00002{vertical-align:-23.760960px;}
.v1_c00002{vertical-align:-15.602340px;}
.v2_c00002{vertical-align:-5.988282px;}
.v0_c00002{vertical-align:0.000000px;}
.v3_c00002{vertical-align:2.880468px;}
.v8_c00002{vertical-align:10.800000px;}
.v5_c00002{vertical-align:13.741380px;}
.v6_c00002{vertical-align:19.502340px;}
.v7_c00002{vertical-align:21.600000px;}
.v4_c00002{vertical-align:32.400000px;}
.va_c00002{vertical-align:36.719520px;}
.ls0_c00002{letter-spacing:0.000000px;}
.lsd_c00002{letter-spacing:0.165242px;}
.ls7_c00002{letter-spacing:11.878620px;}
.ls6_c00002{letter-spacing:11.883300px;}
.lsc_c00002{letter-spacing:12.120000px;}
.ls9_c00002{letter-spacing:14.998140px;}
.lsa_c00002{letter-spacing:15.000480px;}
.ls8_c00002{letter-spacing:25.078620px;}
.lsb_c00002{letter-spacing:27.717660px;}
.ls5_c00002{letter-spacing:175.230960px;}
.ls4_c00002{letter-spacing:297.592800px;}
.ls2_c00002{letter-spacing:297.595200px;}
.ls3_c00002{letter-spacing:297.600000px;}
.ls1_c00002{letter-spacing:297.607224px;}
.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;}
}
.ws32_c00002{word-spacing:-182.262960px;}
.ws8_c00002{word-spacing:-26.688000px;}
.wsf_c00002{word-spacing:-18.414720px;}
.ws11_c00002{word-spacing:-16.680000px;}
.ws1_c00002{word-spacing:-16.679983px;}
.ws17_c00002{word-spacing:-15.012033px;}
.ws3_c00002{word-spacing:-15.011983px;}
.ws27_c00002{word-spacing:-14.970240px;}
.ws15_c00002{word-spacing:-13.344017px;}
.ws4_c00002{word-spacing:-13.344000px;}
.ws4f_c00002{word-spacing:-13.210593px;}
.ws22_c00002{word-spacing:-12.529481px;}
.ws7d_c00002{word-spacing:-12.324128px;}
.ws18_c00002{word-spacing:-11.676000px;}
.wsc_c00002{word-spacing:-11.675983px;}
.ws7f_c00002{word-spacing:-11.063048px;}
.ws1c_c00002{word-spacing:-10.008000px;}
.wsd_c00002{word-spacing:-10.007983px;}
.ws1f_c00002{word-spacing:-8.340000px;}
.ws7e_c00002{word-spacing:-7.148290px;}
.ws73_c00002{word-spacing:-6.672000px;}
.ws7_c00002{word-spacing:0.000000px;}
.ws74_c00002{word-spacing:16.532470px;}
.ws6e_c00002{word-spacing:32.436540px;}
.ws68_c00002{word-spacing:32.639033px;}
.ws3c_c00002{word-spacing:60.667606px;}
.ws3e_c00002{word-spacing:60.672406px;}
.ws3a_c00002{word-spacing:69.951099px;}
.ws21_c00002{word-spacing:75.711163px;}
.ws75_c00002{word-spacing:82.705870px;}
.ws25_c00002{word-spacing:87.742884px;}
.ws20_c00002{word-spacing:98.272363px;}
.ws30_c00002{word-spacing:100.621680px;}
.ws26_c00002{word-spacing:104.313785px;}
.ws24_c00002{word-spacing:113.089567px;}
.ws38_c00002{word-spacing:120.591000px;}
.ws35_c00002{word-spacing:136.781280px;}
.ws37_c00002{word-spacing:136.786080px;}
.ws36_c00002{word-spacing:136.790880px;}
.ws41_c00002{word-spacing:136.793280px;}
.ws33_c00002{word-spacing:136.818720px;}
.ws39_c00002{word-spacing:137.270700px;}
.ws34_c00002{word-spacing:137.275500px;}
.ws60_c00002{word-spacing:137.511846px;}
.ws69_c00002{word-spacing:137.518866px;}
.ws47_c00002{word-spacing:139.168845px;}
.ws8c_c00002{word-spacing:153.904712px;}
.ws95_c00002{word-spacing:157.960241px;}
.ws2d_c00002{word-spacing:158.669831px;}
.ws85_c00002{word-spacing:160.362024px;}
.ws8f_c00002{word-spacing:162.848034px;}
.ws46_c00002{word-spacing:165.107819px;}
.ws97_c00002{word-spacing:165.879234px;}
.ws8e_c00002{word-spacing:167.567390px;}
.ws9e_c00002{word-spacing:167.695366px;}
.ws79_c00002{word-spacing:172.393094px;}
.ws2f_c00002{word-spacing:173.058073px;}
.ws45_c00002{word-spacing:176.933860px;}
.ws44_c00002{word-spacing:177.348034px;}
.ws48_c00002{word-spacing:181.378156px;}
.ws8d_c00002{word-spacing:182.001241px;}
.ws2c_c00002{word-spacing:184.632430px;}
.ws2b_c00002{word-spacing:184.632948px;}
.ws82_c00002{word-spacing:185.364840px;}
.ws28_c00002{word-spacing:186.222887px;}
.ws96_c00002{word-spacing:186.791667px;}
.ws86_c00002{word-spacing:188.827935px;}
.ws43_c00002{word-spacing:191.757407px;}
.ws4c_c00002{word-spacing:196.496717px;}
.ws9f_c00002{word-spacing:197.616929px;}
.ws2e_c00002{word-spacing:199.020672px;}
.ws81_c00002{word-spacing:199.459696px;}
.ws23_c00002{word-spacing:206.228796px;}
.ws29_c00002{word-spacing:207.795141px;}
.ws92_c00002{word-spacing:209.642605px;}
.ws91_c00002{word-spacing:210.102205px;}
.wsa3_c00002{word-spacing:212.867598px;}
.ws90_c00002{word-spacing:213.101609px;}
.ws7b_c00002{word-spacing:214.881632px;}
.ws9b_c00002{word-spacing:215.145299px;}
.ws99_c00002{word-spacing:215.320529px;}
.ws9a_c00002{word-spacing:215.620249px;}
.ws9c_c00002{word-spacing:216.262800px;}
.ws89_c00002{word-spacing:216.823785px;}
.ws3f_c00002{word-spacing:217.080000px;}
.ws40_c00002{word-spacing:217.084800px;}
.ws3d_c00002{word-spacing:217.087200px;}
.ws88_c00002{word-spacing:217.292160px;}
.ws87_c00002{word-spacing:219.791369px;}
.ws3b_c00002{word-spacing:221.760000px;}
.ws8a_c00002{word-spacing:223.381800px;}
.ws42_c00002{word-spacing:223.995719px;}
.wsa2_c00002{word-spacing:227.050230px;}
.wsa1_c00002{word-spacing:227.539083px;}
.ws93_c00002{word-spacing:228.730200px;}
.ws31_c00002{word-spacing:230.640000px;}
.ws83_c00002{word-spacing:231.697800px;}
.ws7a_c00002{word-spacing:233.480687px;}
.ws78_c00002{word-spacing:233.793542px;}
.ws6f_c00002{word-spacing:239.764667px;}
.ws5e_c00002{word-spacing:239.770667px;}
.ws76_c00002{word-spacing:239.776667px;}
.ws71_c00002{word-spacing:240.010667px;}
.ws53_c00002{word-spacing:240.230569px;}
.ws6c_c00002{word-spacing:240.236569px;}
.ws50_c00002{word-spacing:244.985813px;}
.ws6b_c00002{word-spacing:244.991667px;}
.ws80_c00002{word-spacing:246.449877px;}
.ws7c_c00002{word-spacing:246.762732px;}
.ws8b_c00002{word-spacing:252.033276px;}
.ws2a_c00002{word-spacing:253.518375px;}
.ws98_c00002{word-spacing:258.638729px;}
.ws5b_c00002{word-spacing:269.736292px;}
.ws55_c00002{word-spacing:269.742292px;}
.ws59_c00002{word-spacing:269.748292px;}
.ws72_c00002{word-spacing:269.982292px;}
.ws77_c00002{word-spacing:270.202194px;}
.ws6d_c00002{word-spacing:270.208194px;}
.ws5a_c00002{word-spacing:271.176292px;}
.ws5f_c00002{word-spacing:271.182292px;}
.ws56_c00002{word-spacing:271.188292px;}
.ws54_c00002{word-spacing:271.422292px;}
.ws52_c00002{word-spacing:271.444667px;}
.ws5c_c00002{word-spacing:271.446717px;}
.ws5d_c00002{word-spacing:271.452717px;}
.wsa0_c00002{word-spacing:272.192351px;}
.ws1e_c00002{word-spacing:282.585868px;}
.ws94_c00002{word-spacing:287.470155px;}
.ws84_c00002{word-spacing:288.231453px;}
.ws62_c00002{word-spacing:299.711667px;}
.ws51_c00002{word-spacing:301.422292px;}
.ws70_c00002{word-spacing:301.692717px;}
.ws9d_c00002{word-spacing:302.120999px;}
.ws63_c00002{word-spacing:307.902292px;}
.ws64_c00002{word-spacing:308.170667px;}
.ws66_c00002{word-spacing:308.172717px;}
.ws67_c00002{word-spacing:308.368194px;}
.ws65_c00002{word-spacing:308.636569px;}
.ws4a_c00002{word-spacing:321.066463px;}
.wse_c00002{word-spacing:323.286518px;}
.ws61_c00002{word-spacing:335.276400px;}
.ws4e_c00002{word-spacing:335.277000px;}
.ws6a_c00002{word-spacing:335.281200px;}
.ws4d_c00002{word-spacing:335.281800px;}
.ws58_c00002{word-spacing:355.561200px;}
.ws10_c00002{word-spacing:372.540000px;}
.ws0_c00002{word-spacing:372.540227px;}
.ws49_c00002{word-spacing:375.558888px;}
.ws57_c00002{word-spacing:377.457599px;}
.ws16_c00002{word-spacing:382.507198px;}
.ws2_c00002{word-spacing:382.509600px;}
.ws19_c00002{word-spacing:382.514398px;}
.wsb_c00002{word-spacing:382.519200px;}
.ws14_c00002{word-spacing:441.300000px;}
.ws6_c00002{word-spacing:743.455240px;}
.ws1d_c00002{word-spacing:743.457289px;}
.ws1b_c00002{word-spacing:743.463289px;}
.ws13_c00002{word-spacing:749.217289px;}
.wsa_c00002{word-spacing:749.221240px;}
.ws5_c00002{word-spacing:866.269117px;}
.ws1a_c00002{word-spacing:866.283289px;}
.ws9_c00002{word-spacing:872.035117px;}
.ws12_c00002{word-spacing:872.043289px;}
.ws4b_c00002{word-spacing:1466.837660px;}
._16_c00002{margin-left:-2666.581644px;}
._b1_c00002{margin-left:-2626.584623px;}
._29_c00002{margin-left:-2595.302056px;}
._12_c00002{margin-left:-2591.882056px;}
._19_c00002{margin-left:-2578.562056px;}
._18_c00002{margin-left:-2558.582056px;}
._25_c00002{margin-left:-2542.022056px;}
._14_c00002{margin-left:-2508.482056px;}
._28_c00002{margin-left:-2506.621644px;}
._35_c00002{margin-left:-2481.902056px;}
._17_c00002{margin-left:-2458.442056px;}
._1d_c00002{margin-left:-2453.101644px;}
._24_c00002{margin-left:-2452.022056px;}
._7_c00002{margin-left:-2445.424859px;}
._27_c00002{margin-left:-2428.622056px;}
._b8_c00002{margin-left:-2420.649525px;}
._34_c00002{margin-left:-2393.221644px;}
._2_c00002{margin-left:-2356.314358px;}
._33_c00002{margin-left:-2355.242056px;}
._26_c00002{margin-left:-2339.941644px;}
._1a_c00002{margin-left:-2316.361644px;}
._2b_c00002{margin-left:-2299.921644px;}
._2d_c00002{margin-left:-2276.641644px;}
._c_c00002{margin-left:-2269.920444px;}
._32_c00002{margin-left:-2266.561644px;}
._1c_c00002{margin-left:-2259.661644px;}
._2a_c00002{margin-left:-2209.921644px;}
._2c_c00002{margin-left:-2186.641644px;}
._b_c00002{margin-left:-2179.920534px;}
._31_c00002{margin-left:-2169.961644px;}
._23_c00002{margin-left:-2121.301233px;}
._30_c00002{margin-left:-2079.961644px;}
._15_c00002{margin-left:-2061.181233px;}
._f_c00002{margin-left:-2031.001233px;}
._13_c00002{margin-left:-2024.341233px;}
._2f_c00002{margin-left:-1996.501644px;}
._21_c00002{margin-left:-1944.361233px;}
._1f_c00002{margin-left:-1939.020822px;}
._2e_c00002{margin-left:-1907.821233px;}
._22_c00002{margin-left:-1897.861233px;}
._20_c00002{margin-left:-1879.020822px;}
._1e_c00002{margin-left:-1872.360822px;}
._9_c00002{margin-left:-1466.640021px;}
._a_c00002{margin-left:-1451.268034px;}
._8_c00002{margin-left:-1378.799700px;}
._3_c00002{margin-left:-1213.598716px;}
._ac_c00002{margin-left:-1004.543041px;}
._11_c00002{margin-left:-956.089804px;}
._1_c00002{margin-left:-865.919134px;}
._a9_c00002{margin-left:-793.801993px;}
._aa_c00002{margin-left:-760.684103px;}
._ab_c00002{margin-left:-726.213576px;}
._10_c00002{margin-left:-711.435516px;}
._ad_c00002{margin-left:-410.454048px;}
._82_c00002{margin-left:-175.240080px;}
._0_c00002{margin-left:-1.319589px;}
._ba_c00002{width:1.728956px;}
._b9_c00002{width:6.712249px;}
._6_c00002{width:8.884575px;}
._b4_c00002{width:12.538800px;}
._b5_c00002{width:15.421200px;}
._67_c00002{width:21.309072px;}
._5_c00002{width:24.523767px;}
._e_c00002{width:26.133619px;}
._85_c00002{width:28.267920px;}
._92_c00002{width:48.539084px;}
._bd_c00002{width:50.580000px;}
._74_c00002{width:58.561440px;}
._73_c00002{width:59.865840px;}
._90_c00002{width:61.041537px;}
._8d_c00002{width:62.264059px;}
._7a_c00002{width:65.718480px;}
._86_c00002{width:70.482460px;}
._76_c00002{width:78.014160px;}
._80_c00002{width:79.630800px;}
._77_c00002{width:81.668640px;}
._98_c00002{width:87.165189px;}
._75_c00002{width:88.402080px;}
._79_c00002{width:91.745559px;}
._78_c00002{width:94.545120px;}
._49_c00002{width:96.878650px;}
._6a_c00002{width:103.035840px;}
._3f_c00002{width:104.356214px;}
._e1_c00002{width:109.690014px;}
._72_c00002{width:111.125280px;}
._4f_c00002{width:112.947542px;}
._4c_c00002{width:115.900761px;}
._c6_c00002{width:117.477752px;}
._7e_c00002{width:119.579607px;}
._41_c00002{width:121.776307px;}
._68_c00002{width:124.166640px;}
._7d_c00002{width:128.052698px;}
._43_c00002{width:129.702897px;}
._6b_c00002{width:132.455520px;}
._8a_c00002{width:133.608300px;}
._66_c00002{width:135.880975px;}
._47_c00002{width:137.590046px;}
._84_c00002{width:138.820080px;}
._89_c00002{width:140.436554px;}
._53_c00002{width:141.614584px;}
._69_c00002{width:143.194080px;}
._7f_c00002{width:144.330232px;}
._44_c00002{width:146.272005px;}
._c4_c00002{width:147.433468px;}
._52_c00002{width:149.974237px;}
._3c_c00002{width:154.067122px;}
._87_c00002{width:157.397280px;}
._6f_c00002{width:164.690400px;}
._8b_c00002{width:165.782293px;}
._d5_c00002{width:167.201720px;}
._6d_c00002{width:170.533920px;}
._df_c00002{width:171.579957px;}
._55_c00002{width:173.081401px;}
._6e_c00002{width:177.798960px;}
._3d_c00002{width:179.695276px;}
._d6_c00002{width:180.739288px;}
._48_c00002{width:181.740269px;}
._dd_c00002{width:184.393588px;}
._dc_c00002{width:186.068162px;}
._61_c00002{width:187.469643px;}
._6c_c00002{width:190.891440px;}
._9f_c00002{width:191.959764px;}
._a6_c00002{width:194.496034px;}
._3b_c00002{width:196.491472px;}
._40_c00002{width:198.403200px;}
._4e_c00002{width:200.151115px;}
._cf_c00002{width:201.520135px;}
._93_c00002{width:203.725680px;}
._a1_c00002{width:205.954963px;}
._a4_c00002{width:207.023287px;}
._7c_c00002{width:208.641600px;}
._36_c00002{width:211.619164px;}
._37_c00002{width:213.748419px;}
._e0_c00002{width:215.046685px;}
._9d_c00002{width:216.075426px;}
._8f_c00002{width:217.080000px;}
._94_c00002{width:219.420000px;}
._9b_c00002{width:221.065804px;}
._d8_c00002{width:222.173095px;}
._71_c00002{width:223.431840px;}
._a8_c00002{width:225.596880px;}
._95_c00002{width:226.801380px;}
._5e_c00002{width:228.626029px;}
._d0_c00002{width:229.877970px;}
._a5_c00002{width:233.269103px;}
._60_c00002{width:235.136170px;}
._a2_c00002{width:236.738409px;}
._a7_c00002{width:239.761642px;}
._5c_c00002{width:241.680052px;}
._9e_c00002{width:242.691375px;}
._d7_c00002{width:244.164196px;}
._ca_c00002{width:245.346703px;}
._42_c00002{width:246.376282px;}
._38_c00002{width:248.777446px;}
._ae_c00002{width:250.391687px;}
._d1_c00002{width:252.005556px;}
._99_c00002{width:253.016297px;}
._d4_c00002{width:255.015403px;}
._4a_c00002{width:257.041670px;}
._cb_c00002{width:258.315893px;}
._a0_c00002{width:259.577384px;}
._e6_c00002{width:262.133143px;}
._5b_c00002{width:263.971233px;}
._39_c00002{width:266.053517px;}
._3a_c00002{width:268.215640px;}
._91_c00002{width:269.775773px;}
._da_c00002{width:271.009056px;}
._50_c00002{width:272.129570px;}
._a3_c00002{width:275.066765px;}
._ce_c00002{width:276.912369px;}
._3e_c00002{width:280.275842px;}
._8c_c00002{width:282.073613px;}
._96_c00002{width:283.690253px;}
._e3_c00002{width:284.920824px;}
._bc_c00002{width:286.404763px;}
._9c_c00002{width:288.502302px;}
._54_c00002{width:294.000176px;}
._45_c00002{width:296.938773px;}
._e2_c00002{width:300.968535px;}
._b3_c00002{width:305.669005px;}
._b2_c00002{width:306.696140px;}
._d9_c00002{width:308.506720px;}
._c0_c00002{width:310.500065px;}
._c9_c00002{width:311.583555px;}
._46_c00002{width:313.415850px;}
._bb_c00002{width:314.861302px;}
._af_c00002{width:316.379833px;}
._9a_c00002{width:320.737986px;}
._b6_c00002{width:323.111687px;}
._4b_c00002{width:335.808763px;}
._1b_c00002{width:338.197817px;}
._e7_c00002{width:342.011693px;}
._bf_c00002{width:345.017944px;}
._c8_c00002{width:346.101434px;}
._59_c00002{width:352.279425px;}
._64_c00002{width:366.718989px;}
._83_c00002{width:368.758493px;}
._65_c00002{width:391.917463px;}
._5d_c00002{width:394.846952px;}
._57_c00002{width:420.745269px;}
._b7_c00002{width:428.783761px;}
._8e_c00002{width:433.362240px;}
._c5_c00002{width:438.236510px;}
._88_c00002{width:439.320000px;}
._c1_c00002{width:443.561838px;}
._97_c00002{width:445.831682px;}
._4d_c00002{width:504.395235px;}
._be_c00002{width:570.455201px;}
._c3_c00002{width:582.669526px;}
._58_c00002{width:594.000334px;}
._c2_c00002{width:600.897286px;}
._62_c00002{width:608.443009px;}
._c7_c00002{width:613.761305px;}
._63_c00002{width:622.833843px;}
._5f_c00002{width:650.905300px;}
._5a_c00002{width:665.296134px;}
._d2_c00002{width:731.045314px;}
._d3_c00002{width:746.351031px;}
._db_c00002{width:750.575112px;}
._cc_c00002{width:752.729787px;}
._de_c00002{width:764.967279px;}
._cd_c00002{width:766.748444px;}
._4_c00002{width:781.198814px;}
._e4_c00002{width:789.526135px;}
._e5_c00002{width:804.421185px;}
._51_c00002{width:843.049588px;}
._d_c00002{width:845.705952px;}
._b0_c00002{width:925.263012px;}
._56_c00002{width:1827.801803px;}
._7b_c00002{width:2507.481600px;}
._81_c00002{width:2531.462888px;}
._70_c00002{width:2611.532400px;}
.fc5_c00002{color:rgb(255,0,0);}
.fc4_c00002{color:transparent;}
.fc2_c00002{color:rgb(100,101,103);}
.fc3_c00002{color:rgb(64,64,64);}
.fc1_c00002{color:rgb(255,255,255);}
.fc0_c00002{color:rgb(0,0,0);}
.fs9_c00002{font-size:12.000000px;}
.fs4_c00002{font-size:17.999940px;}
.fs13_c00002{font-size:18.000000px;}
.fs21_c00002{font-size:24.000000px;}
.fs12_c00002{font-size:30.000000px;}
.fs5_c00002{font-size:30.670203px;}
.fs14_c00002{font-size:30.670263px;}
.fs32_c00002{font-size:30.861360px;}
.fs30_c00002{font-size:31.123440px;}
.fs2e_c00002{font-size:31.629600px;}
.fs27_c00002{font-size:33.840000px;}
.fs24_c00002{font-size:35.280000px;}
.fs8_c00002{font-size:35.999940px;}
.fs11_c00002{font-size:36.000000px;}
.fs39_c00002{font-size:36.720000px;}
.fs36_c00002{font-size:37.440000px;}
.fs3a_c00002{font-size:38.160000px;}
.fs29_c00002{font-size:39.600000px;}
.fs3_c00002{font-size:41.999940px;}
.fs10_c00002{font-size:42.000000px;}
.fs2a_c00002{font-size:47.520120px;}
.fs1_c00002{font-size:48.000000px;}
.fsd_c00002{font-size:48.000060px;}
.fs31_c00002{font-size:48.951540px;}
.fs6_c00002{font-size:49.072385px;}
.fs15_c00002{font-size:49.072505px;}
.fs2f_c00002{font-size:49.370460px;}
.fs2d_c00002{font-size:50.169780px;}
.fs26_c00002{font-size:50.400180px;}
.fs2b_c00002{font-size:51.120180px;}
.fs19_c00002{font-size:51.840180px;}
.fs23_c00002{font-size:52.560180px;}
.fs2_c00002{font-size:53.999940px;}
.fsf_c00002{font-size:54.000120px;}
.fs2c_c00002{font-size:54.531540px;}
.fs16_c00002{font-size:55.440180px;}
.fs33_c00002{font-size:56.160180px;}
.fs1a_c00002{font-size:56.880180px;}
.fs3b_c00002{font-size:59.040180px;}
.fs18_c00002{font-size:59.760180px;}
.fs0_c00002{font-size:59.999940px;}
.fse_c00002{font-size:60.000000px;}
.fs25_c00002{font-size:60.480000px;}
.fs1e_c00002{font-size:61.200000px;}
.fs20_c00002{font-size:61.920000px;}
.fs22_c00002{font-size:63.360000px;}
.fsc_c00002{font-size:66.240000px;}
.fs38_c00002{font-size:70.560000px;}
.fs35_c00002{font-size:71.280000px;}
.fs28_c00002{font-size:72.000000px;}
.fs3d_c00002{font-size:74.880000px;}
.fs1f_c00002{font-size:79.200000px;}
.fs37_c00002{font-size:80.640000px;}
.fs34_c00002{font-size:81.360000px;}
.fs1b_c00002{font-size:82.800000px;}
.fs7_c00002{font-size:84.000000px;}
.fs3e_c00002{font-size:84.240000px;}
.fs3c_c00002{font-size:85.680000px;}
.fs1d_c00002{font-size:89.280000px;}
.fs17_c00002{font-size:90.720000px;}
.fs1c_c00002{font-size:92.880000px;}
.fsb_c00002{font-size:95.760000px;}
.fsa_c00002{font-size:96.000000px;}
.fs3f_c00002{font-size:108.000000px;}
.y1aee_c00002{bottom:-0.720150px;}
.y1af4_c00002{bottom:-0.719550px;}
.y0_c00002{bottom:0.000000px;}
.y11d3_c00002{bottom:0.045000px;}
.y68_c00002{bottom:0.055500px;}
.y66_c00002{bottom:0.057000px;}
.y47e_c00002{bottom:0.058500px;}
.y9d4_c00002{bottom:0.059100px;}
.y285_c00002{bottom:0.059250px;}
.y3ea_c00002{bottom:0.060000px;}
.y9d2_c00002{bottom:0.060300px;}
.y78b_c00002{bottom:0.061500px;}
.y287_c00002{bottom:0.062100px;}
.yfcb_c00002{bottom:0.063000px;}
.y42f_c00002{bottom:0.064500px;}
.y77e_c00002{bottom:0.074400px;}
.yb5c_c00002{bottom:0.121500px;}
.y1ae0_c00002{bottom:0.720000px;}
.y1871_c00002{bottom:1.498500px;}
.y1a21_c00002{bottom:2.161500px;}
.y1973_c00002{bottom:2.278500px;}
.y18de_c00002{bottom:2.281500px;}
.y28d_c00002{bottom:2.517000px;}
.y28a_c00002{bottom:2.518380px;}
.y292_c00002{bottom:2.518500px;}
.yfb0_c00002{bottom:2.518965px;}
.yfab_c00002{bottom:2.519880px;}
.y294_c00002{bottom:2.520000px;}
.y9d0_c00002{bottom:2.520150px;}
.y437_c00002{bottom:2.520180px;}
.y14e3_c00002{bottom:2.520465px;}
.y3f2_c00002{bottom:2.521500px;}
.y11ba_c00002{bottom:2.522880px;}
.ybab_c00002{bottom:2.523000px;}
.y11b5_c00002{bottom:2.523465px;}
.y11c1_c00002{bottom:2.535000px;}
.y28f_c00002{bottom:2.577000px;}
.y3ee_c00002{bottom:2.577570px;}
.y3e8_c00002{bottom:2.579820px;}
.yfae_c00002{bottom:2.579880px;}
.y14e5_c00002{bottom:2.580465px;}
.y15ab_c00002{bottom:2.581380px;}
.y118a_c00002{bottom:2.581965px;}
.y14e8_c00002{bottom:2.583240px;}
.yfb4_c00002{bottom:2.583825px;}
.y14d6_c00002{bottom:3.001980px;}
.y13b3_c00002{bottom:3.059700px;}
.y1878_c00002{bottom:3.060000px;}
.yc53_c00002{bottom:3.062700px;}
.y150a_c00002{bottom:3.120000px;}
.y1a23_c00002{bottom:3.240000px;}
.y1a1c_c00002{bottom:3.420000px;}
.y1896_c00002{bottom:3.424500px;}
.y1a01_c00002{bottom:3.600000px;}
.y1743_c00002{bottom:3.777000px;}
.y173a_c00002{bottom:3.778500px;}
.y1a64_c00002{bottom:3.780000px;}
.y1a69_c00002{bottom:3.780450px;}
.y189e_c00002{bottom:3.783000px;}
.y189b_c00002{bottom:3.784500px;}
.y15bd_c00002{bottom:3.840300px;}
.y1ade_c00002{bottom:3.960000px;}
.y1aec_c00002{bottom:3.960300px;}
.y1af2_c00002{bottom:3.960450px;}
.y1ac7_c00002{bottom:3.963000px;}
.y1ac9_c00002{bottom:3.964500px;}
.y17fe_c00002{bottom:4.137000px;}
.y17fb_c00002{bottom:4.138500px;}
.y181f_c00002{bottom:4.143000px;}
.y181d_c00002{bottom:4.144500px;}
.y178e_c00002{bottom:4.497000px;}
.y17a2_c00002{bottom:4.498050px;}
.y1787_c00002{bottom:4.498500px;}
.y17aa_c00002{bottom:4.500000px;}
.y17ad_c00002{bottom:4.501500px;}
.y17a8_c00002{bottom:4.503000px;}
.y1b27_c00002{bottom:4.504500px;}
.y1a7c_c00002{bottom:4.683000px;}
.y1a50_c00002{bottom:4.863000px;}
.y1ad2_c00002{bottom:5.043000px;}
.y10b1_c00002{bottom:5.343960px;}
.yf9d_c00002{bottom:5.344890px;}
.y181b_c00002{bottom:5.403000px;}
.y1a6f_c00002{bottom:5.404500px;}
.y1a98_c00002{bottom:5.583000px;}
.y1af9_c00002{bottom:5.584500px;}
.y1ac2_c00002{bottom:5.764500px;}
.y1664_c00002{bottom:5.886090px;}
.y17f9_c00002{bottom:5.938500px;}
.y17f7_c00002{bottom:5.940000px;}
.y1872_c00002{bottom:5.998830px;}
.y1759_c00002{bottom:6.118500px;}
.y159c_c00002{bottom:6.422100px;}
.y172d_c00002{bottom:6.424500px;}
.y1785_c00002{bottom:6.478500px;}
.y17a5_c00002{bottom:6.480000px;}
.y522_c00002{bottom:7.078620px;}
.y1b01_c00002{bottom:7.203000px;}
.y6a7_c00002{bottom:8.760675px;}
.y6d6_c00002{bottom:8.762025px;}
.y675_c00002{bottom:8.762250px;}
.y702_c00002{bottom:8.762925px;}
.ye01_c00002{bottom:8.938035px;}
.yddb_c00002{bottom:8.938635px;}
.y126a_c00002{bottom:8.939880px;}
.y1244_c00002{bottom:8.940480px;}
.y1295_c00002{bottom:8.941530px;}
.yd90_c00002{bottom:8.941680px;}
.y122c_c00002{bottom:8.942250px;}
.ydac_c00002{bottom:8.942400px;}
.y1d7_c00002{bottom:9.744300px;}
.y137_c00002{bottom:9.748350px;}
.y153_c00002{bottom:9.751050px;}
.y1aa_c00002{bottom:9.751350px;}
.y18b_c00002{bottom:9.752100px;}
.yd31_c00002{bottom:10.259160px;}
.yd17_c00002{bottom:10.259610px;}
.ycf7_c00002{bottom:10.259700px;}
.y1029_c00002{bottom:10.260015px;}
.yd52_c00002{bottom:10.260165px;}
.ycde_c00002{bottom:10.260345px;}
.y11aa_c00002{bottom:11.824260px;}
.y1673_c00002{bottom:11.999400px;}
.y15f6_c00002{bottom:12.841620px;}
.y158b_c00002{bottom:12.841635px;}
.y2fd_c00002{bottom:13.889325px;}
.ybc9_c00002{bottom:14.699550px;}
.yc83_c00002{bottom:14.699715px;}
.yaa6_c00002{bottom:14.700000px;}
.yb04_c00002{bottom:14.700315px;}
.ybcf_c00002{bottom:14.700750px;}
.yc11_c00002{bottom:14.703390px;}
.yb25_c00002{bottom:14.716815px;}
.yca0_c00002{bottom:14.717415px;}
.yb9d_c00002{bottom:14.719665px;}
.yc32_c00002{bottom:14.719890px;}
.y1418_c00002{bottom:14.879115px;}
.y1446_c00002{bottom:14.879565px;}
.y15ef_c00002{bottom:14.879715px;}
.y146b_c00002{bottom:14.880615px;}
.yea3_c00002{bottom:14.881005px;}
.ye54_c00002{bottom:14.881350px;}
.y120f_c00002{bottom:14.881755px;}
.yed1_c00002{bottom:14.882055px;}
.y12ca_c00002{bottom:14.882415px;}
.y107b_c00002{bottom:14.882655px;}
.y12a4_c00002{bottom:14.883150px;}
.y16f1_c00002{bottom:14.883165px;}
.y111d_c00002{bottom:14.883255px;}
.y12f8_c00002{bottom:14.883315px;}
.yff5_c00002{bottom:14.883405px;}
.y10a6_c00002{bottom:14.883705px;}
.ye72_c00002{bottom:14.883750px;}
.y10d7_c00002{bottom:14.883855px;}
.y1692_c00002{bottom:14.883915px;}
.yefb_c00002{bottom:14.884440px;}
.y1626_c00002{bottom:14.884665px;}
.y13e9_c00002{bottom:14.884800px;}
.y1102_c00002{bottom:14.884905px;}
.y16bd_c00002{bottom:14.885115px;}
.y113e_c00002{bottom:14.885205px;}
.y1163_c00002{bottom:14.885805px;}
.y1323_c00002{bottom:14.885865px;}
.y105e_c00002{bottom:15.243405px;}
.yffe_c00002{bottom:15.244335px;}
.ya40_c00002{bottom:15.419730px;}
.y1546_c00002{bottom:15.779490px;}
.y289_c00002{bottom:15.838500px;}
.yfaa_c00002{bottom:15.840000px;}
.y436_c00002{bottom:15.840300px;}
.y3e7_c00002{bottom:15.840750px;}
.yfb3_c00002{bottom:15.843000px;}
.y7ef_c00002{bottom:15.898320px;}
.y53f_c00002{bottom:15.898920px;}
.y80d_c00002{bottom:15.899295px;}
.y4fe_c00002{bottom:15.899400px;}
.y55d_c00002{bottom:15.899880px;}
.y7c5_c00002{bottom:15.899910px;}
.yfad_c00002{bottom:15.900000px;}
.y7a7_c00002{bottom:15.900120px;}
.y1189_c00002{bottom:15.901500px;}
.ybeb_c00002{bottom:15.958590px;}
.yade_c00002{bottom:15.959715px;}
.y14d5_c00002{bottom:16.261740px;}
.y34c_c00002{bottom:16.770600px;}
.y3b8_c00002{bottom:16.773825px;}
.y399_c00002{bottom:16.774875px;}
.y375_c00002{bottom:16.775175px;}
.y1559_c00002{bottom:17.160300px;}
.y119d_c00002{bottom:17.219550px;}
.y521_c00002{bottom:18.598740px;}
.y16c7_c00002{bottom:18.779265px;}
.y1606_c00002{bottom:18.782715px;}
.y842_c00002{bottom:18.898950px;}
.y5a1_c00002{bottom:18.899250px;}
.y5bc_c00002{bottom:18.900750px;}
.y891_c00002{bottom:18.900855px;}
.y82f_c00002{bottom:18.901350px;}
.y8b9_c00002{bottom:18.902955px;}
.y615_c00002{bottom:18.907980px;}
.y641_c00002{bottom:18.909780px;}
.y1663_c00002{bottom:19.206210px;}
.y13b2_c00002{bottom:19.620000px;}
.yc52_c00002{bottom:19.623000px;}
.y159b_c00002{bottom:19.742220px;}
.y172c_c00002{bottom:19.744620px;}
.y867_c00002{bottom:20.160555px;}
.y5ee_c00002{bottom:20.166180px;}
.y1178_c00002{bottom:22.084260px;}
.ydb_c00002{bottom:22.171575px;}
.y315_c00002{bottom:22.708875px;}
.y32e_c00002{bottom:22.709190px;}
.y2d6_c00002{bottom:22.709850px;}
.y2be_c00002{bottom:22.710540px;}
.ya73_c00002{bottom:24.177780px;}
.yb7b_c00002{bottom:24.178980px;}
.ya59_c00002{bottom:24.179880px;}
.ya08_c00002{bottom:24.180360px;}
.yb61_c00002{bottom:24.180480px;}
.ya16_c00002{bottom:24.182100px;}
.y906_c00002{bottom:24.959460px;}
.y959_c00002{bottom:24.960510px;}
.y6a6_c00002{bottom:24.960675px;}
.y6d5_c00002{bottom:24.962025px;}
.y674_c00002{bottom:24.962250px;}
.y934_c00002{bottom:24.962610px;}
.y8d9_c00002{bottom:24.962850px;}
.y701_c00002{bottom:24.962925px;}
.y11a9_c00002{bottom:25.083435px;}
.ye00_c00002{bottom:25.138035px;}
.ydda_c00002{bottom:25.138635px;}
.y1732_c00002{bottom:25.139700px;}
.y1269_c00002{bottom:25.139880px;}
.y1243_c00002{bottom:25.140480px;}
.y1294_c00002{bottom:25.141530px;}
.yd8f_c00002{bottom:25.141680px;}
.y122b_c00002{bottom:25.142250px;}
.ydab_c00002{bottom:25.142400px;}
.y2fc_c00002{bottom:25.409445px;}
.y13ab_c00002{bottom:25.623345px;}
.y1d6_c00002{bottom:25.944300px;}
.y136_c00002{bottom:25.948350px;}
.y152_c00002{bottom:25.951050px;}
.y1a9_c00002{bottom:25.951350px;}
.y18a_c00002{bottom:25.952100px;}
.y15f5_c00002{bottom:26.161740px;}
.y158a_c00002{bottom:26.161755px;}
.yd30_c00002{bottom:26.459160px;}
.ycf6_c00002{bottom:26.459700px;}
.ycdd_c00002{bottom:26.460345px;}
.y1028_c00002{bottom:26.520315px;}
.yd51_c00002{bottom:26.520465px;}
.yd16_c00002{bottom:26.520510px;}
.ya3f_c00002{bottom:26.881260px;}
.y1545_c00002{bottom:29.099610px;}
.y14d4_c00002{bottom:29.581275px;}
.yfc7_c00002{bottom:30.539700px;}
.ybc8_c00002{bottom:30.899550px;}
.yc82_c00002{bottom:30.899715px;}
.yaa5_c00002{bottom:30.900000px;}
.yb03_c00002{bottom:30.900315px;}
.ybce_c00002{bottom:30.900750px;}
.yc10_c00002{bottom:30.903390px;}
.yb24_c00002{bottom:30.916815px;}
.yc9f_c00002{bottom:30.917415px;}
.yb9c_c00002{bottom:30.919665px;}
.yc31_c00002{bottom:30.919890px;}
.yb6_c00002{bottom:30.925650px;}
.ya0_c00002{bottom:30.926100px;}
.yf1_c00002{bottom:30.926475px;}
.y10f_c00002{bottom:30.988725px;}
.y1417_c00002{bottom:31.079115px;}
.y1445_c00002{bottom:31.079565px;}
.y15ee_c00002{bottom:31.079715px;}
.y146a_c00002{bottom:31.080615px;}
.yea2_c00002{bottom:31.081005px;}
.y120e_c00002{bottom:31.081755px;}
.ye53_c00002{bottom:31.081950px;}
.yed0_c00002{bottom:31.082055px;}
.y12c9_c00002{bottom:31.082415px;}
.y107a_c00002{bottom:31.082655px;}
.y12a3_c00002{bottom:31.083150px;}
.y16f0_c00002{bottom:31.083165px;}
.y111c_c00002{bottom:31.083255px;}
.y12f7_c00002{bottom:31.083315px;}
.yff4_c00002{bottom:31.083405px;}
.y10a5_c00002{bottom:31.083705px;}
.y10d6_c00002{bottom:31.083855px;}
.y1691_c00002{bottom:31.083915px;}
.ye71_c00002{bottom:31.084350px;}
.yefa_c00002{bottom:31.084440px;}
.y1625_c00002{bottom:31.084665px;}
.y13e8_c00002{bottom:31.084800px;}
.y1101_c00002{bottom:31.084905px;}
.y16bc_c00002{bottom:31.085115px;}
.y113d_c00002{bottom:31.085205px;}
.y1162_c00002{bottom:31.085805px;}
.y1322_c00002{bottom:31.085865px;}
.y520_c00002{bottom:31.559085px;}
.y10b0_c00002{bottom:31.984260px;}
.yf9c_c00002{bottom:31.985190px;}
.ybea_c00002{bottom:32.158590px;}
.yadd_c00002{bottom:32.159715px;}
.y1662_c00002{bottom:32.526330px;}
.y34b_c00002{bottom:32.970600px;}
.y159a_c00002{bottom:33.061755px;}
.y172b_c00002{bottom:33.064155px;}
.yda_c00002{bottom:33.691110px;}
.y374_c00002{bottom:34.235475px;}
.y16c6_c00002{bottom:34.979265px;}
.y1605_c00002{bottom:34.982715px;}
.y841_c00002{bottom:35.098950px;}
.y5a0_c00002{bottom:35.099250px;}
.y5bb_c00002{bottom:35.100750px;}
.y890_c00002{bottom:35.100855px;}
.y82e_c00002{bottom:35.101350px;}
.y8b8_c00002{bottom:35.102955px;}
.y614_c00002{bottom:35.107980px;}
.y640_c00002{bottom:35.109780px;}
.y1177_c00002{bottom:35.404380px;}
.y866_c00002{bottom:36.360555px;}
.y5ed_c00002{bottom:36.366180px;}
.y69_c00002{bottom:37.499400px;}
.y564_c00002{bottom:37.500600px;}
.y1a41_c00002{bottom:37.920750px;}
.y2fb_c00002{bottom:38.369205px;}
.y16c1_c00002{bottom:38.459700px;}
.y18b8_c00002{bottom:38.639700px;}
.y175a_c00002{bottom:38.759250px;}
.y1af7_c00002{bottom:38.819550px;}
.y13aa_c00002{bottom:38.943465px;}
.y1838_c00002{bottom:38.999400px;}
.y1817_c00002{bottom:39.118950px;}
.y15f4_c00002{bottom:39.481275px;}
.y1589_c00002{bottom:39.481290px;}
.y1b48_c00002{bottom:39.719550px;}
.y17c7_c00002{bottom:39.720750px;}
.y17a3_c00002{bottom:39.839100px;}
.ya3e_c00002{bottom:39.841020px;}
.y281_c00002{bottom:40.233420px;}
.y7ee_c00002{bottom:40.317870px;}
.y53e_c00002{bottom:40.318470px;}
.y4fd_c00002{bottom:40.318950px;}
.y7a6_c00002{bottom:40.319670px;}
.y905_c00002{bottom:41.159460px;}
.y6a5_c00002{bottom:41.160675px;}
.y6d4_c00002{bottom:41.162025px;}
.y673_c00002{bottom:41.162250px;}
.y958_c00002{bottom:41.162310px;}
.y933_c00002{bottom:41.162610px;}
.y8d8_c00002{bottom:41.162850px;}
.y700_c00002{bottom:41.162925px;}
.ydff_c00002{bottom:41.338035px;}
.ydd9_c00002{bottom:41.338635px;}
.y1268_c00002{bottom:41.339880px;}
.y1242_c00002{bottom:41.340480px;}
.y1293_c00002{bottom:41.341530px;}
.yd8e_c00002{bottom:41.341680px;}
.y122a_c00002{bottom:41.342250px;}
.ydaa_c00002{bottom:41.342400px;}
.y105d_c00002{bottom:41.883105px;}
.yffd_c00002{bottom:41.884035px;}
.y135_c00002{bottom:42.148350px;}
.y151_c00002{bottom:42.151050px;}
.y1a8_c00002{bottom:42.151350px;}
.y1d5_c00002{bottom:42.206400px;}
.y1544_c00002{bottom:42.419730px;}
.yd2f_c00002{bottom:42.719460px;}
.ycf5_c00002{bottom:42.720000px;}
.y1027_c00002{bottom:42.720315px;}
.yd50_c00002{bottom:42.720465px;}
.yd15_c00002{bottom:42.720510px;}
.ycdc_c00002{bottom:42.720645px;}
.y14d3_c00002{bottom:42.901395px;}
.y51f_c00002{bottom:43.018260px;}
.y6e_c00002{bottom:43.033665px;}
.y76_c00002{bottom:43.034310px;}
.ya7e_c00002{bottom:43.035720px;}
.yd62_c00002{bottom:43.036140px;}
.ya77_c00002{bottom:43.036470px;}
.y121f_c00002{bottom:43.036590px;}
.y56b_c00002{bottom:43.036650px;}
.y166f_c00002{bottom:43.037520px;}
.y18ec_c00002{bottom:43.037640px;}
.y56e_c00002{bottom:43.037820px;}
.y1672_c00002{bottom:43.038690px;}
.y189_c00002{bottom:44.911350px;}
.y10af_c00002{bottom:45.304380px;}
.yf9b_c00002{bottom:45.305310px;}
.y1661_c00002{bottom:45.846450px;}
.y11ce_c00002{bottom:45.960000px;}
.y1599_c00002{bottom:46.321515px;}
.y172a_c00002{bottom:46.323915px;}
.yd9_c00002{bottom:46.649700px;}
.ybc7_c00002{bottom:47.099550px;}
.yc81_c00002{bottom:47.099715px;}
.yaa4_c00002{bottom:47.100000px;}
.yb02_c00002{bottom:47.100315px;}
.ybcd_c00002{bottom:47.100750px;}
.yc0f_c00002{bottom:47.103390px;}
.yb23_c00002{bottom:47.116815px;}
.yc9e_c00002{bottom:47.117415px;}
.yb9b_c00002{bottom:47.119665px;}
.yc30_c00002{bottom:47.119890px;}
.y314_c00002{bottom:47.127225px;}
.y2d5_c00002{bottom:47.128200px;}
.y2bd_c00002{bottom:47.128890px;}
.y32d_c00002{bottom:47.189040px;}
.y1416_c00002{bottom:47.279115px;}
.y1444_c00002{bottom:47.279565px;}
.y15ed_c00002{bottom:47.279715px;}
.y1469_c00002{bottom:47.280615px;}
.yea1_c00002{bottom:47.281005px;}
.y120d_c00002{bottom:47.281755px;}
.yecf_c00002{bottom:47.282055px;}
.y12c8_c00002{bottom:47.282415px;}
.ye52_c00002{bottom:47.282550px;}
.y1079_c00002{bottom:47.282655px;}
.y12a2_c00002{bottom:47.283150px;}
.y16ef_c00002{bottom:47.283165px;}
.y111b_c00002{bottom:47.283255px;}
.y12f6_c00002{bottom:47.283315px;}
.yff3_c00002{bottom:47.283405px;}
.y10a4_c00002{bottom:47.283705px;}
.y10d5_c00002{bottom:47.283855px;}
.y1690_c00002{bottom:47.283915px;}
.yef9_c00002{bottom:47.284440px;}
.y1624_c00002{bottom:47.284665px;}
.y13e7_c00002{bottom:47.284800px;}
.y1100_c00002{bottom:47.284905px;}
.ye70_c00002{bottom:47.284950px;}
.y16bb_c00002{bottom:47.285115px;}
.y113c_c00002{bottom:47.285205px;}
.y1161_c00002{bottom:47.285805px;}
.y1321_c00002{bottom:47.285865px;}
.ybe9_c00002{bottom:48.358590px;}
.yadc_c00002{bottom:48.359715px;}
.ya72_c00002{bottom:48.657630px;}
.yb7a_c00002{bottom:48.658830px;}
.ya58_c00002{bottom:48.659730px;}
.ya07_c00002{bottom:48.660210px;}
.yb60_c00002{bottom:48.660330px;}
.ya15_c00002{bottom:48.662550px;}
.y1176_c00002{bottom:48.724500px;}
.y77a_c00002{bottom:48.780000px;}
.y2fa_c00002{bottom:49.889325px;}
.y16c5_c00002{bottom:51.179265px;}
.y1604_c00002{bottom:51.182715px;}
.y840_c00002{bottom:51.298950px;}
.y59f_c00002{bottom:51.299250px;}
.y5ba_c00002{bottom:51.300750px;}
.y88f_c00002{bottom:51.300855px;}
.y82d_c00002{bottom:51.301350px;}
.y613_c00002{bottom:51.307980px;}
.ya3d_c00002{bottom:51.360555px;}
.y8b7_c00002{bottom:51.363255px;}
.y63f_c00002{bottom:51.369480px;}
.y11a8_c00002{bottom:51.784035px;}
.y13a9_c00002{bottom:52.263585px;}
.y3bb_c00002{bottom:52.413975px;}
.y865_c00002{bottom:52.620855px;}
.y5ec_c00002{bottom:52.626480px;}
.y15f3_c00002{bottom:52.801395px;}
.y1588_c00002{bottom:52.801410px;}
.y6d_c00002{bottom:53.535420px;}
.ya7d_c00002{bottom:53.535720px;}
.y75_c00002{bottom:53.536065px;}
.yd61_c00002{bottom:53.536140px;}
.ya76_c00002{bottom:53.536470px;}
.y121e_c00002{bottom:53.536590px;}
.y56a_c00002{bottom:53.536650px;}
.y166e_c00002{bottom:53.537520px;}
.y280_c00002{bottom:53.553540px;}
.y105c_c00002{bottom:55.203225px;}
.yffc_c00002{bottom:55.204155px;}
.y9f_c00002{bottom:55.405950px;}
.yb5_c00002{bottom:55.406100px;}
.yf0_c00002{bottom:55.406925px;}
.y10e_c00002{bottom:55.410075px;}
.y1543_c00002{bottom:55.678905px;}
.y14d2_c00002{bottom:56.221515px;}
.y7ed_c00002{bottom:56.517870px;}
.y53d_c00002{bottom:56.518470px;}
.y4ff_c00002{bottom:56.518950px;}
.y4fc_c00002{bottom:56.519550px;}
.y7a5_c00002{bottom:56.519670px;}
.y51e_c00002{bottom:56.578605px;}
.y80c_c00002{bottom:56.579745px;}
.y55c_c00002{bottom:56.580330px;}
.y7c4_c00002{bottom:56.580360px;}
.y4a0_c00002{bottom:56.973150px;}
.y6d3_c00002{bottom:57.362025px;}
.y672_c00002{bottom:57.362250px;}
.y932_c00002{bottom:57.362610px;}
.y8d7_c00002{bottom:57.362850px;}
.y904_c00002{bottom:57.419760px;}
.y6a4_c00002{bottom:57.420975px;}
.y957_c00002{bottom:57.422610px;}
.y6ff_c00002{bottom:57.423225px;}
.ydfe_c00002{bottom:57.538035px;}
.y1267_c00002{bottom:57.539880px;}
.yd8d_c00002{bottom:57.541680px;}
.y1229_c00002{bottom:57.542250px;}
.yda9_c00002{bottom:57.542400px;}
.ydd8_c00002{bottom:57.598935px;}
.y1241_c00002{bottom:57.600780px;}
.y1292_c00002{bottom:57.601830px;}
.yd8_c00002{bottom:58.108290px;}
.y1d4_c00002{bottom:58.406400px;}
.y134_c00002{bottom:58.407000px;}
.y1a7_c00002{bottom:58.410600px;}
.y150_c00002{bottom:58.410750px;}
.y1894_c00002{bottom:58.440750px;}
.y17f5_c00002{bottom:58.559250px;}
.y10ae_c00002{bottom:58.624500px;}
.yf9a_c00002{bottom:58.625430px;}
.yd2e_c00002{bottom:58.919460px;}
.ycf4_c00002{bottom:58.920000px;}
.y1026_c00002{bottom:58.920315px;}
.yd4f_c00002{bottom:58.920465px;}
.yd14_c00002{bottom:58.920510px;}
.ycdb_c00002{bottom:58.920645px;}
.y1783_c00002{bottom:59.160900px;}
.y1660_c00002{bottom:59.165985px;}
.y47b_c00002{bottom:59.972490px;}
.y1598_c00002{bottom:60.607845px;}
.y1729_c00002{bottom:60.610245px;}
.y188_c00002{bottom:61.111350px;}
.y1175_c00002{bottom:62.044620px;}
.y2f9_c00002{bottom:62.849085px;}
.ybc6_c00002{bottom:63.299550px;}
.yc80_c00002{bottom:63.299715px;}
.yaa3_c00002{bottom:63.300000px;}
.yb01_c00002{bottom:63.300315px;}
.ybcc_c00002{bottom:63.300750px;}
.yc0e_c00002{bottom:63.303390px;}
.yadb_c00002{bottom:63.359715px;}
.yb22_c00002{bottom:63.377715px;}
.yb9a_c00002{bottom:63.379965px;}
.yc2f_c00002{bottom:63.380790px;}
.y1443_c00002{bottom:63.479565px;}
.yece_c00002{bottom:63.482055px;}
.y1078_c00002{bottom:63.482655px;}
.ye51_c00002{bottom:63.483150px;}
.y111a_c00002{bottom:63.483255px;}
.y12f5_c00002{bottom:63.483315px;}
.y10d4_c00002{bottom:63.483855px;}
.y168f_c00002{bottom:63.483915px;}
.y13e6_c00002{bottom:63.484800px;}
.ye6f_c00002{bottom:63.485550px;}
.y1415_c00002{bottom:63.539415px;}
.y15ec_c00002{bottom:63.540015px;}
.yea0_c00002{bottom:63.540255px;}
.y1468_c00002{bottom:63.540915px;}
.y12c7_c00002{bottom:63.541665px;}
.y120c_c00002{bottom:63.542655px;}
.y16ee_c00002{bottom:63.543465px;}
.yff2_c00002{bottom:63.544305px;}
.y10a3_c00002{bottom:63.544605px;}
.yef8_c00002{bottom:63.544740px;}
.y1623_c00002{bottom:63.545565px;}
.y10ff_c00002{bottom:63.545805px;}
.y16ba_c00002{bottom:63.546015px;}
.y113b_c00002{bottom:63.546105px;}
.y1160_c00002{bottom:63.546705px;}
.y1320_c00002{bottom:63.546765px;}
.y4b8_c00002{bottom:63.810000px;}
.ya7c_c00002{bottom:64.034550px;}
.yd60_c00002{bottom:64.034970px;}
.ya75_c00002{bottom:64.035300px;}
.y6c_c00002{bottom:64.035420px;}
.y569_c00002{bottom:64.035480px;}
.y74_c00002{bottom:64.036065px;}
.y166d_c00002{bottom:64.036350px;}
.y18eb_c00002{bottom:64.036470px;}
.y56d_c00002{bottom:64.036650px;}
.y1671_c00002{bottom:64.037520px;}
.ya3c_c00002{bottom:64.320900px;}
.ybe8_c00002{bottom:64.618890px;}
.y11a7_c00002{bottom:65.043795px;}
.y13a8_c00002{bottom:65.583120px;}
.y15f2_c00002{bottom:66.121515px;}
.y1587_c00002{bottom:66.121530px;}
.y779_c00002{bottom:66.720120px;}
.y434_c00002{bottom:66.873090px;}
.y469_c00002{bottom:66.873135px;}
.y16c4_c00002{bottom:67.439565px;}
.y1603_c00002{bottom:67.443015px;}
.y83f_c00002{bottom:67.558650px;}
.y59e_c00002{bottom:67.559550px;}
.y5b9_c00002{bottom:67.561050px;}
.y88e_c00002{bottom:67.561155px;}
.y82c_c00002{bottom:67.561650px;}
.y8b6_c00002{bottom:67.563255px;}
.y612_c00002{bottom:67.568880px;}
.y63e_c00002{bottom:67.569480px;}
.y105b_c00002{bottom:68.523345px;}
.yffb_c00002{bottom:68.524275px;}
.y864_c00002{bottom:68.820855px;}
.y5eb_c00002{bottom:68.826480px;}
.y13bb_c00002{bottom:68.940150px;}
.y1542_c00002{bottom:68.999025px;}
.y49f_c00002{bottom:70.293270px;}
.y14d1_c00002{bottom:70.507845px;}
.y1728_c00002{bottom:70.510245px;}
.yd7_c00002{bottom:71.068050px;}
.y313_c00002{bottom:71.607075px;}
.y32c_c00002{bottom:71.607390px;}
.y2d4_c00002{bottom:71.608050px;}
.y2bc_c00002{bottom:71.608140px;}
.y10ad_c00002{bottom:71.944035px;}
.yf99_c00002{bottom:71.944965px;}
.y165f_c00002{bottom:72.425745px;}
.y7ec_c00002{bottom:72.778770px;}
.y51d_c00002{bottom:72.779205px;}
.y53c_c00002{bottom:72.779370px;}
.y80b_c00002{bottom:72.779745px;}
.y4fb_c00002{bottom:72.779850px;}
.y55b_c00002{bottom:72.780330px;}
.y7c3_c00002{bottom:72.780360px;}
.y7a4_c00002{bottom:72.780570px;}
.ya71_c00002{bottom:73.077180px;}
.yb79_c00002{bottom:73.078380px;}
.ya57_c00002{bottom:73.079280px;}
.ya06_c00002{bottom:73.079760px;}
.yb5f_c00002{bottom:73.079880px;}
.ya14_c00002{bottom:73.083300px;}
.y47a_c00002{bottom:73.292610px;}
.y903_c00002{bottom:73.619760px;}
.y6a3_c00002{bottom:73.620975px;}
.y6d2_c00002{bottom:73.621275px;}
.y671_c00002{bottom:73.621500px;}
.y931_c00002{bottom:73.621860px;}
.y956_c00002{bottom:73.622610px;}
.y6fe_c00002{bottom:73.623225px;}
.ydfd_c00002{bottom:73.798335px;}
.ydd7_c00002{bottom:73.798935px;}
.y1266_c00002{bottom:73.800180px;}
.y1291_c00002{bottom:73.801830px;}
.yd8c_c00002{bottom:73.801980px;}
.y1228_c00002{bottom:73.802550px;}
.yda8_c00002{bottom:73.802700px;}
.y2f8_c00002{bottom:74.307675px;}
.y6b_c00002{bottom:74.534250px;}
.ya7b_c00002{bottom:74.534550px;}
.y73_c00002{bottom:74.534895px;}
.yd5f_c00002{bottom:74.534970px;}
.ya74_c00002{bottom:74.535300px;}
.y121d_c00002{bottom:74.535420px;}
.y568_c00002{bottom:74.535480px;}
.y166c_c00002{bottom:74.536350px;}
.y18ea_c00002{bottom:74.536470px;}
.y56c_c00002{bottom:74.536650px;}
.y1670_c00002{bottom:74.537520px;}
.y1d3_c00002{bottom:74.606400px;}
.y133_c00002{bottom:74.607600px;}
.y1a6_c00002{bottom:74.610600px;}
.y14f_c00002{bottom:74.610750px;}
.y373_c00002{bottom:74.613525px;}
.yd2d_c00002{bottom:75.119460px;}
.ycf3_c00002{bottom:75.120000px;}
.y1025_c00002{bottom:75.120315px;}
.yd4e_c00002{bottom:75.120465px;}
.yd13_c00002{bottom:75.120510px;}
.ycda_c00002{bottom:75.120645px;}
.y1174_c00002{bottom:75.364155px;}
.ya3b_c00002{bottom:75.841020px;}
.y187_c00002{bottom:75.871110px;}
.y1240_c00002{bottom:76.500780px;}
.y11a6_c00002{bottom:78.363915px;}
.y13a7_c00002{bottom:78.903240px;}
.ybe7_c00002{bottom:79.559130px;}
.ybc5_c00002{bottom:79.559250px;}
.yc7f_c00002{bottom:79.560015px;}
.yaa2_c00002{bottom:79.560300px;}
.yb00_c00002{bottom:79.560615px;}
.ybcb_c00002{bottom:79.561050px;}
.yc0d_c00002{bottom:79.563690px;}
.yb21_c00002{bottom:79.577715px;}
.yb99_c00002{bottom:79.579965px;}
.yc2e_c00002{bottom:79.580790px;}
.y1442_c00002{bottom:79.739265px;}
.y1414_c00002{bottom:79.739415px;}
.y15eb_c00002{bottom:79.740015px;}
.ye9f_c00002{bottom:79.740255px;}
.y1467_c00002{bottom:79.740915px;}
.yecd_c00002{bottom:79.741305px;}
.y12c6_c00002{bottom:79.741665px;}
.y1077_c00002{bottom:79.741905px;}
.y1119_c00002{bottom:79.742505px;}
.y12f4_c00002{bottom:79.742565px;}
.y120b_c00002{bottom:79.742655px;}
.y10d3_c00002{bottom:79.743105px;}
.y168e_c00002{bottom:79.743165px;}
.ye50_c00002{bottom:79.743450px;}
.y16ed_c00002{bottom:79.743465px;}
.yff1_c00002{bottom:79.744305px;}
.y13e5_c00002{bottom:79.744500px;}
.y10a2_c00002{bottom:79.744605px;}
.yef7_c00002{bottom:79.744740px;}
.y10fe_c00002{bottom:79.745805px;}
.ye6e_c00002{bottom:79.745850px;}
.y16b9_c00002{bottom:79.746015px;}
.y113a_c00002{bottom:79.746105px;}
.y1622_c00002{bottom:79.746165px;}
.y115f_c00002{bottom:79.746705px;}
.y131f_c00002{bottom:79.746765px;}
.y778_c00002{bottom:79.800000px;}
.y9e_c00002{bottom:79.885800px;}
.yb4_c00002{bottom:79.886550px;}
.yef_c00002{bottom:79.887375px;}
.y10d_c00002{bottom:79.889925px;}
.y468_c00002{bottom:80.192670px;}
.y433_c00002{bottom:80.193210px;}
.y14d0_c00002{bottom:80.407845px;}
.y1586_c00002{bottom:80.408445px;}
.y1727_c00002{bottom:80.410245px;}
.yada_c00002{bottom:80.818965px;}
.y9ce_c00002{bottom:81.180000px;}
.y105a_c00002{bottom:81.782520px;}
.yffa_c00002{bottom:81.783450px;}
.y13ba_c00002{bottom:82.260270px;}
.y1541_c00002{bottom:82.319145px;}
.yd6_c00002{bottom:82.588170px;}
.y5ea_c00002{bottom:83.227065px;}
.y34a_c00002{bottom:83.370600px;}
.y398_c00002{bottom:83.374875px;}
.y16c3_c00002{bottom:83.639565px;}
.y1602_c00002{bottom:83.643015px;}
.y83e_c00002{bottom:83.759250px;}
.y88d_c00002{bottom:83.761155px;}
.y82b_c00002{bottom:83.761650px;}
.y8b5_c00002{bottom:83.763255px;}
.y863_c00002{bottom:85.020855px;}
.y10ac_c00002{bottom:85.264155px;}
.yf98_c00002{bottom:85.265085px;}
.y372_c00002{bottom:86.133645px;}
.y3e5_c00002{bottom:86.612745px;}
.y165e_c00002{bottom:86.712075px;}
.y2f7_c00002{bottom:87.267435px;}
.y1173_c00002{bottom:88.686030px;}
.ya3a_c00002{bottom:88.800780px;}
.y7eb_c00002{bottom:88.978770px;}
.y53b_c00002{bottom:88.979370px;}
.y80a_c00002{bottom:88.979745px;}
.y51c_c00002{bottom:88.979805px;}
.y4fa_c00002{bottom:88.979850px;}
.y55a_c00002{bottom:88.980330px;}
.y7c2_c00002{bottom:88.980360px;}
.y7a3_c00002{bottom:88.980570px;}
.y77_c00002{bottom:89.293950px;}
.y56f_c00002{bottom:89.295750px;}
.y777_c00002{bottom:89.700000px;}
.y902_c00002{bottom:89.819760px;}
.y6a2_c00002{bottom:89.820975px;}
.y6d1_c00002{bottom:89.821275px;}
.y670_c00002{bottom:89.821500px;}
.y930_c00002{bottom:89.821860px;}
.y955_c00002{bottom:89.822610px;}
.y6fd_c00002{bottom:89.823225px;}
.ydfc_c00002{bottom:89.998335px;}
.ydd6_c00002{bottom:89.998935px;}
.y1265_c00002{bottom:90.000180px;}
.y1290_c00002{bottom:90.001830px;}
.yd8b_c00002{bottom:90.001980px;}
.y1227_c00002{bottom:90.002550px;}
.yda7_c00002{bottom:90.002700px;}
.y14cf_c00002{bottom:90.307845px;}
.y1585_c00002{bottom:90.308445px;}
.y1726_c00002{bottom:90.310245px;}
.y42d_c00002{bottom:90.450000px;}
.y1d2_c00002{bottom:90.807000px;}
.y132_c00002{bottom:90.808200px;}
.y1a5_c00002{bottom:90.810600px;}
.y14e_c00002{bottom:90.810750px;}
.yd2c_c00002{bottom:91.319460px;}
.ycf2_c00002{bottom:91.320000px;}
.ycd9_c00002{bottom:91.320645px;}
.yd12_c00002{bottom:91.379760px;}
.y1024_c00002{bottom:91.380615px;}
.yd4d_c00002{bottom:91.380765px;}
.y6a_c00002{bottom:91.634250px;}
.y563_c00002{bottom:91.635300px;}
.y11a5_c00002{bottom:91.683450px;}
.y59d_c00002{bottom:91.979100px;}
.y5b8_c00002{bottom:91.981200px;}
.y611_c00002{bottom:91.988430px;}
.y13a6_c00002{bottom:92.223360px;}
.y123f_c00002{bottom:92.700780px;}
.y186_c00002{bottom:93.511410px;}
.y27f_c00002{bottom:93.513840px;}
.y1590_c00002{bottom:93.898980px;}
.y5e9_c00002{bottom:94.747185px;}
.y1af3_c00002{bottom:94.799400px;}
.y1059_c00002{bottom:95.102640px;}
.yff9_c00002{bottom:95.103570px;}
.y1413_c00002{bottom:95.399115px;}
.y14f9_c00002{bottom:95.400105px;}
.yd5_c00002{bottom:95.547930px;}
.y13b9_c00002{bottom:95.579805px;}
.y1512_c00002{bottom:95.579925px;}
.yad9_c00002{bottom:95.759205px;}
.ybc4_c00002{bottom:95.759850px;}
.yc7e_c00002{bottom:95.760015px;}
.yaa1_c00002{bottom:95.760300px;}
.yaff_c00002{bottom:95.760615px;}
.yc0c_c00002{bottom:95.763690px;}
.yb20_c00002{bottom:95.777715px;}
.yb98_c00002{bottom:95.779965px;}
.yc2d_c00002{bottom:95.780790px;}
.ye9e_c00002{bottom:95.940255px;}
.yecc_c00002{bottom:95.941305px;}
.y12c5_c00002{bottom:95.941665px;}
.y1076_c00002{bottom:95.941905px;}
.y1118_c00002{bottom:95.942505px;}
.y12f3_c00002{bottom:95.942565px;}
.y120a_c00002{bottom:95.942655px;}
.y10d2_c00002{bottom:95.943105px;}
.y168d_c00002{bottom:95.943165px;}
.ye4f_c00002{bottom:95.943450px;}
.yff0_c00002{bottom:95.944305px;}
.y10a1_c00002{bottom:95.944605px;}
.yef6_c00002{bottom:95.944740px;}
.y10fd_c00002{bottom:95.945805px;}
.ye6d_c00002{bottom:95.945850px;}
.y16b8_c00002{bottom:95.946015px;}
.y1139_c00002{bottom:95.946105px;}
.y115e_c00002{bottom:95.946705px;}
.y131e_c00002{bottom:95.946765px;}
.y32b_c00002{bottom:96.086640px;}
.y312_c00002{bottom:96.086925px;}
.y2d3_c00002{bottom:96.087900px;}
.y2bb_c00002{bottom:96.087990px;}
.y1540_c00002{bottom:96.605475px;}
.y165d_c00002{bottom:96.612075px;}
.y1816_c00002{bottom:96.720750px;}
.ybe6_c00002{bottom:97.018830px;}
.ya70_c00002{bottom:97.557630px;}
.yb78_c00002{bottom:97.558830px;}
.ya56_c00002{bottom:97.559130px;}
.yb5e_c00002{bottom:97.559730px;}
.ya05_c00002{bottom:97.560210px;}
.ya13_c00002{bottom:97.563150px;}
.y10ab_c00002{bottom:98.584275px;}
.yf97_c00002{bottom:98.585205px;}
.y2f6_c00002{bottom:98.787555px;}
.y371_c00002{bottom:99.093990px;}
.y1a6a_c00002{bottom:99.119550px;}
.y9cd_c00002{bottom:99.179880px;}
.y1601_c00002{bottom:99.843015px;}
.y3e4_c00002{bottom:99.932865px;}
.y83d_c00002{bottom:99.959850px;}
.y88c_c00002{bottom:99.961155px;}
.y82a_c00002{bottom:99.961650px;}
.y8b4_c00002{bottom:99.963255px;}
.y1abd_c00002{bottom:100.199400px;}
.y14ce_c00002{bottom:100.207845px;}
.y1584_c00002{bottom:100.208445px;}
.y1725_c00002{bottom:100.210245px;}
.ya39_c00002{bottom:100.260540px;}
.y862_c00002{bottom:101.220855px;}
.y1af5_c00002{bottom:101.459700px;}
.y776_c00002{bottom:102.735300px;}
.y1172_c00002{bottom:102.970020px;}
.y1a93_c00002{bottom:103.259700px;}
.y1441_c00002{bottom:104.160015px;}
.y13e4_c00002{bottom:104.165250px;}
.yb3_c00002{bottom:104.307300px;}
.y9d_c00002{bottom:104.307750px;}
.yee_c00002{bottom:104.308125px;}
.y10c_c00002{bottom:104.308275px;}
.y11a4_c00002{bottom:105.004155px;}
.y7ea_c00002{bottom:105.178770px;}
.y53a_c00002{bottom:105.179370px;}
.y4f9_c00002{bottom:105.179850px;}
.y7a2_c00002{bottom:105.180570px;}
.y51b_c00002{bottom:105.238455px;}
.y1af6_c00002{bottom:105.239700px;}
.y809_c00002{bottom:105.240045px;}
.y559_c00002{bottom:105.240630px;}
.y7c1_c00002{bottom:105.240660px;}
.y1_c00002{bottom:105.750000px;}
.y901_c00002{bottom:106.019760px;}
.y6a1_c00002{bottom:106.020975px;}
.y6d0_c00002{bottom:106.021275px;}
.y66f_c00002{bottom:106.021500px;}
.y92f_c00002{bottom:106.021860px;}
.y954_c00002{bottom:106.022610px;}
.y6fc_c00002{bottom:106.023225px;}
.y1a6b_c00002{bottom:106.139700px;}
.ydfb_c00002{bottom:106.198335px;}
.ye1d_c00002{bottom:106.198935px;}
.y4ce_c00002{bottom:106.200000px;}
.y1264_c00002{bottom:106.200180px;}
.y128f_c00002{bottom:106.201830px;}
.yd8a_c00002{bottom:106.201980px;}
.y1226_c00002{bottom:106.202550px;}
.yda6_c00002{bottom:106.202700px;}
.y153f_c00002{bottom:106.505475px;}
.y13a5_c00002{bottom:106.510275px;}
.y165c_c00002{bottom:106.512075px;}
.y27e_c00002{bottom:106.833375px;}
.y77d_c00002{bottom:106.845750px;}
.y1412_c00002{bottom:106.858875px;}
.y131_c00002{bottom:107.008800px;}
.yd4_c00002{bottom:107.008875px;}
.y1a4_c00002{bottom:107.010600px;}
.y14d_c00002{bottom:107.010750px;}
.y1d1_c00002{bottom:107.066250px;}
.y1abe_c00002{bottom:107.219550px;}
.ycf1_c00002{bottom:107.579250px;}
.yd11_c00002{bottom:107.579760px;}
.ycd8_c00002{bottom:107.579895px;}
.y1023_c00002{bottom:107.580615px;}
.yd4c_c00002{bottom:107.580765px;}
.y349_c00002{bottom:107.850450px;}
.y397_c00002{bottom:107.854725px;}
.y59c_c00002{bottom:108.238800px;}
.y5b7_c00002{bottom:108.240900px;}
.y5e8_c00002{bottom:108.247185px;}
.y610_c00002{bottom:108.248730px;}
.y63d_c00002{bottom:108.249330px;}
.y1058_c00002{bottom:108.422760px;}
.yff8_c00002{bottom:108.423690px;}
.y15bc_c00002{bottom:108.720180px;}
.y14f8_c00002{bottom:108.720225px;}
.ydd5_c00002{bottom:108.898935px;}
.y13b8_c00002{bottom:108.899925px;}
.y1511_c00002{bottom:108.900045px;}
.y123e_c00002{bottom:108.900780px;}
.y1a6c_c00002{bottom:109.739700px;}
.y185_c00002{bottom:109.770060px;}
.y15c2_c00002{bottom:109.845150px;}
.y1a94_c00002{bottom:110.099400px;}
.y49e_c00002{bottom:110.252970px;}
.y15f9_c00002{bottom:110.400600px;}
.y370_c00002{bottom:110.554935px;}
.y1abf_c00002{bottom:110.819550px;}
.y12c4_c00002{bottom:111.601365px;}
.y2f5_c00002{bottom:111.747315px;}
.ybe5_c00002{bottom:111.959070px;}
.yaa0_c00002{bottom:111.960300px;}
.ybc3_c00002{bottom:111.960450px;}
.ybca_c00002{bottom:111.961050px;}
.yc0b_c00002{bottom:111.963690px;}
.yc2c_c00002{bottom:111.980790px;}
.y1af1_c00002{bottom:112.079250px;}
.ye9d_c00002{bottom:112.140255px;}
.yecb_c00002{bottom:112.141305px;}
.y1075_c00002{bottom:112.141905px;}
.y1117_c00002{bottom:112.142505px;}
.y1209_c00002{bottom:112.142655px;}
.y10d1_c00002{bottom:112.143105px;}
.ye4e_c00002{bottom:112.143450px;}
.yfef_c00002{bottom:112.144305px;}
.y10a0_c00002{bottom:112.144605px;}
.yef5_c00002{bottom:112.144740px;}
.y10fc_c00002{bottom:112.145805px;}
.ye6c_c00002{bottom:112.145850px;}
.y1138_c00002{bottom:112.146105px;}
.y115d_c00002{bottom:112.146705px;}
.y9cc_c00002{bottom:112.259175px;}
.y10aa_c00002{bottom:112.870020px;}
.yf96_c00002{bottom:112.870950px;}
.yad8_c00002{bottom:113.218905px;}
.ya38_c00002{bottom:113.220300px;}
.y479_c00002{bottom:113.252910px;}
.y1a95_c00002{bottom:113.519550px;}
.y9cf_c00002{bottom:113.759700px;}
.y4a1_c00002{bottom:115.200000px;}
.y83c_c00002{bottom:116.219100px;}
.y88b_c00002{bottom:116.220855px;}
.y829_c00002{bottom:116.221950px;}
.y8b3_c00002{bottom:116.224155px;}
.y1a68_c00002{bottom:116.399400px;}
.y153e_c00002{bottom:116.405475px;}
.y13a4_c00002{bottom:116.410275px;}
.y165b_c00002{bottom:116.412075px;}
.y1815_c00002{bottom:116.700600px;}
.y62_c00002{bottom:117.090000px;}
.y1471_c00002{bottom:117.122700px;}
.y14b3_c00002{bottom:117.124845px;}
.y148e_c00002{bottom:117.182295px;}
.y14cc_c00002{bottom:117.184845px;}
.y1723_c00002{bottom:117.185745px;}
.y1582_c00002{bottom:117.186945px;}
.y1abc_c00002{bottom:117.479250px;}
.y861_c00002{bottom:117.479505px;}
.y47c_c00002{bottom:118.259700px;}
.y11a3_c00002{bottom:118.324275px;}
.yd3_c00002{bottom:119.968635px;}
.y467_c00002{bottom:120.152370px;}
.y432_c00002{bottom:120.152910px;}
.y27d_c00002{bottom:120.153495px;}
.y1a92_c00002{bottom:120.179250px;}
.y1440_c00002{bottom:120.360015px;}
.y12a1_c00002{bottom:120.363000px;}
.y12f2_c00002{bottom:120.363315px;}
.y168c_c00002{bottom:120.363915px;}
.y13e3_c00002{bottom:120.365250px;}
.y1411_c00002{bottom:120.419220px;}
.y15ea_c00002{bottom:120.419865px;}
.y1466_c00002{bottom:120.420765px;}
.y16ec_c00002{bottom:120.422715px;}
.y311_c00002{bottom:120.507675px;}
.y32a_c00002{bottom:120.508590px;}
.y2d2_c00002{bottom:120.508650px;}
.y2ba_c00002{bottom:120.509340px;}
.y1701_c00002{bottom:121.085895px;}
.y7e9_c00002{bottom:121.437420px;}
.y539_c00002{bottom:121.438020px;}
.y51a_c00002{bottom:121.438455px;}
.y4f8_c00002{bottom:121.439100px;}
.y7a1_c00002{bottom:121.439220px;}
.y808_c00002{bottom:121.440045px;}
.y558_c00002{bottom:121.440630px;}
.y7c0_c00002{bottom:121.440660px;}
.ya55_c00002{bottom:121.978680px;}
.yb5d_c00002{bottom:121.979280px;}
.ya04_c00002{bottom:121.979760px;}
.y15bb_c00002{bottom:121.979940px;}
.y1558_c00002{bottom:121.980420px;}
.ya12_c00002{bottom:121.982700px;}
.ya6f_c00002{bottom:122.038080px;}
.yb77_c00002{bottom:122.039280px;}
.y14f7_c00002{bottom:122.040345px;}
.y119c_c00002{bottom:122.040675px;}
.y9cb_c00002{bottom:122.100000px;}
.y13b7_c00002{bottom:122.220045px;}
.y1510_c00002{bottom:122.220165px;}
.y6cf_c00002{bottom:122.221275px;}
.y66e_c00002{bottom:122.221500px;}
.y92e_c00002{bottom:122.221860px;}
.y900_c00002{bottom:122.280660px;}
.y6a0_c00002{bottom:122.281275px;}
.y953_c00002{bottom:122.281860px;}
.y6fb_c00002{bottom:122.282475px;}
.ydfa_c00002{bottom:122.398335px;}
.y1263_c00002{bottom:122.400180px;}
.yd89_c00002{bottom:122.401980px;}
.y1225_c00002{bottom:122.402550px;}
.yda5_c00002{bottom:122.402700px;}
.ye1c_c00002{bottom:122.459235px;}
.y123d_c00002{bottom:122.461125px;}
.y128e_c00002{bottom:122.462130px;}
.y1057_c00002{bottom:122.709090px;}
.yf95_c00002{bottom:122.711190px;}
.y12c3_c00002{bottom:123.121485px;}
.y2f4_c00002{bottom:123.208260px;}
.y1d0_c00002{bottom:123.266250px;}
.y130_c00002{bottom:123.267450px;}
.y1a3_c00002{bottom:123.269850px;}
.y14c_c00002{bottom:123.270450px;}
.y36f_c00002{bottom:123.514695px;}
.y49d_c00002{bottom:123.572505px;}
.y116e_c00002{bottom:123.718650px;}
.ycf0_c00002{bottom:123.779250px;}
.yd10_c00002{bottom:123.779760px;}
.ycd7_c00002{bottom:123.779895px;}
.y1022_c00002{bottom:123.780615px;}
.yd4b_c00002{bottom:123.780765px;}
.y59b_c00002{bottom:124.438800px;}
.y5b6_c00002{bottom:124.440900px;}
.y5e7_c00002{bottom:124.447185px;}
.y60f_c00002{bottom:124.448730px;}
.y63c_c00002{bottom:124.449330px;}
.ya37_c00002{bottom:124.740420px;}
.y435_c00002{bottom:125.100000px;}
.ydd4_c00002{bottom:125.159835px;}
.y184_c00002{bottom:125.970060px;}
.y478_c00002{bottom:126.572445px;}
.y1aed_c00002{bottom:126.839700px;}
.y19b9_c00002{bottom:127.320015px;}
.ye9c_c00002{bottom:127.800555px;}
.ybc2_c00002{bottom:128.161050px;}
.y9c_c00002{bottom:128.786400px;}
.yb2_c00002{bottom:128.787150px;}
.yed_c00002{bottom:128.787975px;}
.y10b_c00002{bottom:128.788125px;}
.ya7f_c00002{bottom:128.879850px;}
.ybe4_c00002{bottom:129.478620px;}
.y775_c00002{bottom:130.937100px;}
.yd2_c00002{bottom:131.488170px;}
.y860_c00002{bottom:131.878920px;}
.y348_c00002{bottom:132.330300px;}
.y3b7_c00002{bottom:132.334125px;}
.y396_c00002{bottom:132.335175px;}
.y1056_c00002{bottom:132.609090px;}
.yf94_c00002{bottom:132.611190px;}
.y286_c00002{bottom:132.718950px;}
.y135d_c00002{bottom:133.380825px;}
.y153c_c00002{bottom:133.380975px;}
.y1381_c00002{bottom:133.382025px;}
.y148d_c00002{bottom:133.382295px;}
.y133f_c00002{bottom:133.383000px;}
.y162a_c00002{bottom:133.383225px;}
.y14b2_c00002{bottom:133.384095px;}
.y14cb_c00002{bottom:133.384845px;}
.y1722_c00002{bottom:133.385745px;}
.y1581_c00002{bottom:133.386945px;}
.y1659_c00002{bottom:133.387575px;}
.y13a2_c00002{bottom:133.388775px;}
.y466_c00002{bottom:133.413300px;}
.y431_c00002{bottom:133.413840px;}
.y27c_c00002{bottom:133.414425px;}
.y1aef_c00002{bottom:133.499400px;}
.y9d3_c00002{bottom:134.700600px;}
.y36e_c00002{bottom:135.034815px;}
.y9ca_c00002{bottom:135.168855px;}
.y15ba_c00002{bottom:135.299475px;}
.y1557_c00002{bottom:135.299955px;}
.y14f6_c00002{bottom:135.360465px;}
.yfc6_c00002{bottom:135.360780px;}
.y119b_c00002{bottom:135.360795px;}
.y150f_c00002{bottom:135.479340px;}
.y13b6_c00002{bottom:135.540165px;}
.y2f3_c00002{bottom:136.168605px;}
.y1410_c00002{bottom:136.619220px;}
.y143f_c00002{bottom:136.619715px;}
.y15e9_c00002{bottom:136.619865px;}
.y1465_c00002{bottom:136.620765px;}
.yeca_c00002{bottom:136.621155px;}
.y12c2_c00002{bottom:136.621485px;}
.y1074_c00002{bottom:136.621755px;}
.y1116_c00002{bottom:136.622355px;}
.y12f1_c00002{bottom:136.622565px;}
.y16eb_c00002{bottom:136.622715px;}
.y10d0_c00002{bottom:136.622955px;}
.y168b_c00002{bottom:136.623165px;}
.ye4d_c00002{bottom:136.623300px;}
.y13e2_c00002{bottom:136.624500px;}
.ye6b_c00002{bottom:136.625700px;}
.y16b7_c00002{bottom:136.625865px;}
.y1621_c00002{bottom:136.626015px;}
.y131d_c00002{bottom:136.626615px;}
.y1814_c00002{bottom:136.680450px;}
.y49c_c00002{bottom:136.892625px;}
.y1af0_c00002{bottom:137.279850px;}
.y284_c00002{bottom:137.281050px;}
.y1700_c00002{bottom:137.285895px;}
.y163e_c00002{bottom:137.286375px;}
.y7e8_c00002{bottom:137.637420px;}
.y538_c00002{bottom:137.638020px;}
.y519_c00002{bottom:137.638455px;}
.y4f7_c00002{bottom:137.639100px;}
.y7a0_c00002{bottom:137.639220px;}
.y807_c00002{bottom:137.640045px;}
.y557_c00002{bottom:137.640630px;}
.y7bf_c00002{bottom:137.640660px;}
.ya36_c00002{bottom:137.700765px;}
.y8ff_c00002{bottom:138.480660px;}
.y69f_c00002{bottom:138.481275px;}
.y6ce_c00002{bottom:138.481575px;}
.y66d_c00002{bottom:138.481800px;}
.y952_c00002{bottom:138.481860px;}
.y92d_c00002{bottom:138.482160px;}
.y6fa_c00002{bottom:138.482475px;}
.y1a65_c00002{bottom:138.539700px;}
.ydf9_c00002{bottom:138.659235px;}
.y1262_c00002{bottom:138.660480px;}
.y128d_c00002{bottom:138.662130px;}
.yd88_c00002{bottom:138.662880px;}
.y1224_c00002{bottom:138.663450px;}
.yda4_c00002{bottom:138.663600px;}
.ye9b_c00002{bottom:139.320090px;}
.y9d1_c00002{bottom:139.320150px;}
.y1cf_c00002{bottom:139.466250px;}
.y12f_c00002{bottom:139.467450px;}
.y1a2_c00002{bottom:139.469850px;}
.y14b_c00002{bottom:139.470450px;}
.y3e3_c00002{bottom:139.892565px;}
.ycef_c00002{bottom:139.979250px;}
.yd0f_c00002{bottom:139.979760px;}
.ycd6_c00002{bottom:139.979895px;}
.y1021_c00002{bottom:139.980615px;}
.yd4a_c00002{bottom:139.980765px;}
.y1ab9_c00002{bottom:140.159700px;}
.y59a_c00002{bottom:140.638800px;}
.y83b_c00002{bottom:140.640450px;}
.y5b5_c00002{bottom:140.640900px;}
.y828_c00002{bottom:140.641500px;}
.y88a_c00002{bottom:140.641605px;}
.y5e6_c00002{bottom:140.647185px;}
.y60e_c00002{bottom:140.648730px;}
.y63b_c00002{bottom:140.649330px;}
.y1216_c00002{bottom:141.358800px;}
.y1008_c00002{bottom:141.358905px;}
.yfcd_c00002{bottom:141.358950px;}
.ydd3_c00002{bottom:141.359835px;}
.y123c_c00002{bottom:141.361125px;}
.y183_c00002{bottom:142.170060px;}
.y1a90_c00002{bottom:142.319550px;}
.y85f_c00002{bottom:143.339865px;}
.y774_c00002{bottom:143.715810px;}
.y19b8_c00002{bottom:143.880315px;}
.y1aeb_c00002{bottom:144.119550px;}
.yd1_c00002{bottom:144.448515px;}
.y3e6_c00002{bottom:144.840750px;}
.y329_c00002{bottom:144.987840px;}
.y310_c00002{bottom:144.988125px;}
.y2b9_c00002{bottom:144.988590px;}
.y2d1_c00002{bottom:144.989100px;}
.ybb8_c00002{bottom:145.141350px;}
.y1a66_c00002{bottom:145.559700px;}
.y17a1_c00002{bottom:145.680450px;}
.ya6e_c00002{bottom:146.458830px;}
.ya54_c00002{bottom:146.459130px;}
.ya03_c00002{bottom:146.459610px;}
.yb76_c00002{bottom:146.460030px;}
.ya11_c00002{bottom:146.462550px;}
.y465_c00002{bottom:146.733420px;}
.y27b_c00002{bottom:146.733960px;}
.y1aba_c00002{bottom:147.179850px;}
.y1948_c00002{bottom:147.239775px;}
.y2f2_c00002{bottom:147.688140px;}
.y36d_c00002{bottom:147.994575px;}
.y15b9_c00002{bottom:148.619595px;}
.y1556_c00002{bottom:148.620075px;}
.y14f5_c00002{bottom:148.680000px;}
.yfc5_c00002{bottom:148.680315px;}
.y119a_c00002{bottom:148.680330px;}
.y150e_c00002{bottom:148.799460px;}
.y1a67_c00002{bottom:149.159700px;}
.ya35_c00002{bottom:149.160525px;}
.yad7_c00002{bottom:149.399355px;}
.y4a3_c00002{bottom:149.459250px;}
.y135c_c00002{bottom:149.580825px;}
.yf4f_c00002{bottom:149.581440px;}
.y153b_c00002{bottom:149.581575px;}
.y148c_c00002{bottom:149.582295px;}
.y1380_c00002{bottom:149.582625px;}
.y133e_c00002{bottom:149.583000px;}
.y1629_c00002{bottom:149.583225px;}
.y14b1_c00002{bottom:149.584095px;}
.yf1b_c00002{bottom:149.584200px;}
.y14ca_c00002{bottom:149.584845px;}
.yf31_c00002{bottom:149.585400px;}
.yf72_c00002{bottom:149.585640px;}
.y1721_c00002{bottom:149.585745px;}
.y1580_c00002{bottom:149.586945px;}
.y1658_c00002{bottom:149.588175px;}
.y13a1_c00002{bottom:149.588775px;}
.y1054_c00002{bottom:149.589090px;}
.yf92_c00002{bottom:149.589690px;}
.y49b_c00002{bottom:150.212745px;}
.y1abb_c00002{bottom:150.780000px;}
.y11cd_c00002{bottom:150.840795px;}
.y47f_c00002{bottom:152.460000px;}
.y1a91_c00002{bottom:152.580000px;}
.y140f_c00002{bottom:152.819220px;}
.y143e_c00002{bottom:152.819715px;}
.y15e8_c00002{bottom:152.819865px;}
.ye9a_c00002{bottom:152.820090px;}
.y1464_c00002{bottom:152.820765px;}
.yec9_c00002{bottom:152.821155px;}
.y12c1_c00002{bottom:152.821485px;}
.y1073_c00002{bottom:152.821755px;}
.y1115_c00002{bottom:152.822355px;}
.y1208_c00002{bottom:152.822505px;}
.y12f0_c00002{bottom:152.822565px;}
.y16ea_c00002{bottom:152.822715px;}
.y10cf_c00002{bottom:152.822955px;}
.y168a_c00002{bottom:152.823165px;}
.ye4c_c00002{bottom:152.823300px;}
.yfee_c00002{bottom:152.824155px;}
.y109f_c00002{bottom:152.824455px;}
.y13e1_c00002{bottom:152.824500px;}
.yef4_c00002{bottom:152.824590px;}
.y10fb_c00002{bottom:152.825655px;}
.ye6a_c00002{bottom:152.825700px;}
.y16b6_c00002{bottom:152.825865px;}
.y1137_c00002{bottom:152.825955px;}
.y115c_c00002{bottom:152.826555px;}
.y131c_c00002{bottom:152.826615px;}
.yb1_c00002{bottom:153.208500px;}
.y9b_c00002{bottom:153.208800px;}
.yec_c00002{bottom:153.209325px;}
.y3e2_c00002{bottom:153.212685px;}
.y10a_c00002{bottom:153.266325px;}
.y16ff_c00002{bottom:153.485895px;}
.y163d_c00002{bottom:153.486375px;}
.y7e7_c00002{bottom:153.837420px;}
.y537_c00002{bottom:153.838020px;}
.y518_c00002{bottom:153.838455px;}
.y4f6_c00002{bottom:153.839100px;}
.y79f_c00002{bottom:153.839220px;}
.y806_c00002{bottom:153.840045px;}
.y556_c00002{bottom:153.840630px;}
.y7be_c00002{bottom:153.840660px;}
.y4a2_c00002{bottom:154.020000px;}
.y8fe_c00002{bottom:154.680660px;}
.y69e_c00002{bottom:154.681275px;}
.y6cd_c00002{bottom:154.681575px;}
.y66c_c00002{bottom:154.681800px;}
.y951_c00002{bottom:154.681860px;}
.y92c_c00002{bottom:154.682160px;}
.y6f9_c00002{bottom:154.682475px;}
.ydf8_c00002{bottom:154.859235px;}
.ydd2_c00002{bottom:154.859835px;}
.y1261_c00002{bottom:154.860480px;}
.y128c_c00002{bottom:154.862130px;}
.yd87_c00002{bottom:154.862880px;}
.y1223_c00002{bottom:154.863450px;}
.yda3_c00002{bottom:154.863600px;}
.y1ce_c00002{bottom:155.666250px;}
.y12e_c00002{bottom:155.667450px;}
.y1a1_c00002{bottom:155.669850px;}
.y14a_c00002{bottom:155.670450px;}
.y1a63_c00002{bottom:155.820000px;}
.yd0_c00002{bottom:155.968635px;}
.ycee_c00002{bottom:156.179250px;}
.yd2b_c00002{bottom:156.179760px;}
.ycd5_c00002{bottom:156.179895px;}
.y1020_c00002{bottom:156.239865px;}
.yd49_c00002{bottom:156.240015px;}
.yd0e_c00002{bottom:156.240060px;}
.y1813_c00002{bottom:156.660000px;}
.y11e8_c00002{bottom:156.721755px;}
.y347_c00002{bottom:156.748650px;}
.y3b6_c00002{bottom:156.751875px;}
.y395_c00002{bottom:156.752925px;}
.y599_c00002{bottom:156.838800px;}
.y83a_c00002{bottom:156.840450px;}
.y5b4_c00002{bottom:156.840900px;}
.y827_c00002{bottom:156.841500px;}
.y889_c00002{bottom:156.841605px;}
.y60d_c00002{bottom:156.848730px;}
.y85e_c00002{bottom:156.899040px;}
.y8b2_c00002{bottom:156.904005px;}
.y5e5_c00002{bottom:156.906435px;}
.y63a_c00002{bottom:156.910230px;}
.y773_c00002{bottom:157.037100px;}
.y47d_c00002{bottom:157.081500px;}
.y1ab8_c00002{bottom:157.440000px;}
.y123b_c00002{bottom:157.561125px;}
.yc7d_c00002{bottom:158.159415px;}
.ya9f_c00002{bottom:158.159700px;}
.yafe_c00002{bottom:158.160015px;}
.y182_c00002{bottom:158.370060px;}
.y1a8f_c00002{bottom:159.240000px;}
.y439_c00002{bottom:159.300000px;}
.y36c_c00002{bottom:159.453165px;}
.y464_c00002{bottom:160.053540px;}
.y27a_c00002{bottom:160.054080px;}
.y2f1_c00002{bottom:160.647900px;}
.yad6_c00002{bottom:160.859115px;}
.y15b8_c00002{bottom:161.939715px;}
.y1555_c00002{bottom:161.940195px;}
.y14f4_c00002{bottom:162.000120px;}
.yfc4_c00002{bottom:162.000435px;}
.y1199_c00002{bottom:162.000450px;}
.y150d_c00002{bottom:162.119580px;}
.ya34_c00002{bottom:162.120285px;}
.y13b5_c00002{bottom:162.180465px;}
.y9c9_c00002{bottom:163.365855px;}
.y49a_c00002{bottom:163.473675px;}
.y1947_c00002{bottom:163.799475px;}
.y438_c00002{bottom:163.920000px;}
.y11cc_c00002{bottom:164.099970px;}
.ybe3_c00002{bottom:165.599370px;}
.y135b_c00002{bottom:165.780825px;}
.yf4e_c00002{bottom:165.781440px;}
.y153a_c00002{bottom:165.782175px;}
.y148b_c00002{bottom:165.782895px;}
.y133d_c00002{bottom:165.783000px;}
.y137f_c00002{bottom:165.783225px;}
.y14b0_c00002{bottom:165.784095px;}
.yf1a_c00002{bottom:165.784200px;}
.y14c9_c00002{bottom:165.784845px;}
.yf30_c00002{bottom:165.785400px;}
.yf71_c00002{bottom:165.785640px;}
.y1720_c00002{bottom:165.785745px;}
.y157f_c00002{bottom:165.786945px;}
.y13a0_c00002{bottom:165.788775px;}
.y1053_c00002{bottom:165.789090px;}
.yf91_c00002{bottom:165.789690px;}
.y3e1_c00002{bottom:166.532805px;}
.y17a0_c00002{bottom:167.460000px;}
.y4b7_c00002{bottom:168.626700px;}
.ycf_c00002{bottom:168.928395px;}
.y140e_c00002{bottom:169.019220px;}
.y143d_c00002{bottom:169.019715px;}
.y15e7_c00002{bottom:169.019865px;}
.ye99_c00002{bottom:169.020090px;}
.y1463_c00002{bottom:169.020765px;}
.yec8_c00002{bottom:169.021155px;}
.y12c0_c00002{bottom:169.021485px;}
.y1072_c00002{bottom:169.021755px;}
.y1114_c00002{bottom:169.022355px;}
.y1207_c00002{bottom:169.022505px;}
.y12ef_c00002{bottom:169.022565px;}
.y16e9_c00002{bottom:169.022715px;}
.y10ce_c00002{bottom:169.022955px;}
.y1689_c00002{bottom:169.023165px;}
.ye4b_c00002{bottom:169.023300px;}
.yfed_c00002{bottom:169.024155px;}
.y109e_c00002{bottom:169.024455px;}
.y13e0_c00002{bottom:169.024500px;}
.yef3_c00002{bottom:169.024590px;}
.y10fa_c00002{bottom:169.025655px;}
.ye69_c00002{bottom:169.025700px;}
.y16b5_c00002{bottom:169.025865px;}
.y1136_c00002{bottom:169.025955px;}
.y115b_c00002{bottom:169.026555px;}
.y131b_c00002{bottom:169.026615px;}
.y1620_c00002{bottom:169.027215px;}
.y1aea_c00002{bottom:169.319700px;}
.y30f_c00002{bottom:169.408875px;}
.y2d0_c00002{bottom:169.409850px;}
.y2b8_c00002{bottom:169.409940px;}
.y328_c00002{bottom:169.467090px;}
.y1560_c00002{bottom:169.685445px;}
.y163c_c00002{bottom:169.686375px;}
.y7e6_c00002{bottom:170.037420px;}
.y536_c00002{bottom:170.038020px;}
.y4f5_c00002{bottom:170.039100px;}
.y79e_c00002{bottom:170.039220px;}
.y805_c00002{bottom:170.099295px;}
.y517_c00002{bottom:170.099355px;}
.y555_c00002{bottom:170.099880px;}
.y7bd_c00002{bottom:170.099910px;}
.y8fd_c00002{bottom:170.880660px;}
.y69d_c00002{bottom:170.881275px;}
.y6cc_c00002{bottom:170.881575px;}
.y66b_c00002{bottom:170.881800px;}
.y950_c00002{bottom:170.881860px;}
.y92b_c00002{bottom:170.882160px;}
.y6f8_c00002{bottom:170.882475px;}
.ya6d_c00002{bottom:170.938680px;}
.ya02_c00002{bottom:170.939460px;}
.ya53_c00002{bottom:170.939580px;}
.yb75_c00002{bottom:170.939880px;}
.ya10_c00002{bottom:170.942400px;}
.ydf7_c00002{bottom:171.059235px;}
.y1260_c00002{bottom:171.061080px;}
.y128b_c00002{bottom:171.062130px;}
.yd86_c00002{bottom:171.062880px;}
.y1222_c00002{bottom:171.063450px;}
.yda2_c00002{bottom:171.063600px;}
.y12d_c00002{bottom:171.867450px;}
.y1a0_c00002{bottom:171.868050px;}
.y149_c00002{bottom:171.870450px;}
.y1cd_c00002{bottom:171.925500px;}
.y2f0_c00002{bottom:172.168605px;}
.y1215_c00002{bottom:172.319700px;}
.y1007_c00002{bottom:172.319805px;}
.ye25_c00002{bottom:172.319850px;}
.y36b_c00002{bottom:172.412925px;}
.yd2a_c00002{bottom:172.439010px;}
.yced_c00002{bottom:172.439550px;}
.y101f_c00002{bottom:172.439865px;}
.yd48_c00002{bottom:172.440015px;}
.yd0d_c00002{bottom:172.440060px;}
.ycd4_c00002{bottom:172.440195px;}
.y598_c00002{bottom:173.098500px;}
.y85d_c00002{bottom:173.099040px;}
.y839_c00002{bottom:173.099700px;}
.y5b3_c00002{bottom:173.100600px;}
.y888_c00002{bottom:173.100855px;}
.y826_c00002{bottom:173.101200px;}
.y8b1_c00002{bottom:173.104005px;}
.y5e4_c00002{bottom:173.105835px;}
.y60c_c00002{bottom:173.107980px;}
.y639_c00002{bottom:173.110230px;}
.y279_c00002{bottom:173.373615px;}
.y463_c00002{bottom:173.373660px;}
.ya33_c00002{bottom:173.640405px;}
.yad5_c00002{bottom:173.818875px;}
.ydd1_c00002{bottom:173.819085px;}
.y123a_c00002{bottom:173.820375px;}
.ybc1_c00002{bottom:174.359850px;}
.yc0a_c00002{bottom:174.363090px;}
.y181_c00002{bottom:174.631560px;}
.y15b7_c00002{bottom:175.259835px;}
.y1554_c00002{bottom:175.260315px;}
.yfc3_c00002{bottom:175.320555px;}
.y1198_c00002{bottom:175.320570px;}
.y13b4_c00002{bottom:175.500000px;}
.y9c8_c00002{bottom:176.085975px;}
.y1812_c00002{bottom:176.640000px;}
.y499_c00002{bottom:176.793795px;}
.ybe2_c00002{bottom:177.119490px;}
.y11cb_c00002{bottom:177.420090px;}
.y109_c00002{bottom:177.687075px;}
.y9a_c00002{bottom:177.687450px;}
.yb0_c00002{bottom:177.688350px;}
.yeb_c00002{bottom:177.689175px;}
.y19b7_c00002{bottom:178.499265px;}
.y3eb_c00002{bottom:179.100000px;}
.y3e0_c00002{bottom:179.852925px;}
.yce_c00002{bottom:180.389340px;}
.y346_c00002{bottom:181.228500px;}
.y3b5_c00002{bottom:181.231725px;}
.y394_c00002{bottom:181.233375px;}
.y148a_c00002{bottom:181.442595px;}
.y4b6_c00002{bottom:181.946820px;}
.y133c_c00002{bottom:181.983000px;}
.y137e_c00002{bottom:181.983225px;}
.yf19_c00002{bottom:181.984200px;}
.yf2f_c00002{bottom:181.985400px;}
.yf70_c00002{bottom:181.985640px;}
.y135a_c00002{bottom:182.041125px;}
.yf4d_c00002{bottom:182.041740px;}
.y1539_c00002{bottom:182.042475px;}
.y1052_c00002{bottom:182.048790px;}
.yf90_c00002{bottom:182.048940px;}
.y139f_c00002{bottom:182.049075px;}
.yc7c_c00002{bottom:182.639265px;}
.yafd_c00002{bottom:182.639865px;}
.ya9e_c00002{bottom:182.640150px;}
.y772_c00002{bottom:183.676800px;}
.y3e9_c00002{bottom:183.720000px;}
.y36a_c00002{bottom:183.933045px;}
.y2ef_c00002{bottom:185.128365px;}
.y143c_c00002{bottom:185.219715px;}
.yec7_c00002{bottom:185.221155px;}
.y1071_c00002{bottom:185.221755px;}
.y1113_c00002{bottom:185.222355px;}
.y12ee_c00002{bottom:185.222565px;}
.y10cd_c00002{bottom:185.222955px;}
.y1688_c00002{bottom:185.223165px;}
.ye4a_c00002{bottom:185.223300px;}
.y13df_c00002{bottom:185.224500px;}
.ye68_c00002{bottom:185.225700px;}
.y15e6_c00002{bottom:185.279115px;}
.y1462_c00002{bottom:185.280015px;}
.y140d_c00002{bottom:185.280120px;}
.ye98_c00002{bottom:185.280990px;}
.y16e8_c00002{bottom:185.281965px;}
.y1206_c00002{bottom:185.282205px;}
.y12bf_c00002{bottom:185.282385px;}
.yfec_c00002{bottom:185.283405px;}
.y109d_c00002{bottom:185.283705px;}
.yef2_c00002{bottom:185.283840px;}
.y10f9_c00002{bottom:185.284905px;}
.y16b4_c00002{bottom:185.285115px;}
.y1135_c00002{bottom:185.285205px;}
.y115a_c00002{bottom:185.285805px;}
.y131a_c00002{bottom:185.285865px;}
.y161f_c00002{bottom:185.286465px;}
.yad4_c00002{bottom:185.338995px;}
.y151b_c00002{bottom:185.940675px;}
.y163b_c00002{bottom:185.945625px;}
.y7e5_c00002{bottom:186.297720px;}
.y535_c00002{bottom:186.298320px;}
.y804_c00002{bottom:186.299295px;}
.y516_c00002{bottom:186.299355px;}
.y4f4_c00002{bottom:186.299400px;}
.y79d_c00002{bottom:186.299520px;}
.y554_c00002{bottom:186.299880px;}
.y7bc_c00002{bottom:186.299910px;}
.ya32_c00002{bottom:186.600750px;}
.y278_c00002{bottom:186.693735px;}
.y462_c00002{bottom:186.693780px;}
.y6cb_c00002{bottom:187.081575px;}
.y66a_c00002{bottom:187.081800px;}
.y92a_c00002{bottom:187.082160px;}
.y8fc_c00002{bottom:187.139910px;}
.y69c_c00002{bottom:187.140525px;}
.y94f_c00002{bottom:187.142160px;}
.y6f7_c00002{bottom:187.142775px;}
.ydf6_c00002{bottom:187.318485px;}
.y125f_c00002{bottom:187.319730px;}
.y128a_c00002{bottom:187.321380px;}
.yd85_c00002{bottom:187.322130px;}
.y1221_c00002{bottom:187.322700px;}
.yda1_c00002{bottom:187.323900px;}
.y1cc_c00002{bottom:188.125500px;}
.y12c_c00002{bottom:188.129550px;}
.y19f_c00002{bottom:188.131950px;}
.y148_c00002{bottom:188.132550px;}
.y1214_c00002{bottom:188.578950px;}
.y11a2_c00002{bottom:188.579055px;}
.y1063_c00002{bottom:188.579100px;}
.y1553_c00002{bottom:188.580435px;}
.y1a62_c00002{bottom:188.580480px;}
.yd29_c00002{bottom:188.639010px;}
.ycec_c00002{bottom:188.639550px;}
.y101e_c00002{bottom:188.639865px;}
.yd47_c00002{bottom:188.640015px;}
.yd0c_c00002{bottom:188.640060px;}
.ycd3_c00002{bottom:188.640195px;}
.y14f3_c00002{bottom:188.640420px;}
.yfc2_c00002{bottom:188.640675px;}
.y1197_c00002{bottom:188.640690px;}
.y150c_c00002{bottom:188.759880px;}
.y179f_c00002{bottom:189.240000px;}
.y597_c00002{bottom:189.298500px;}
.y85c_c00002{bottom:189.299040px;}
.y838_c00002{bottom:189.299700px;}
.y5b2_c00002{bottom:189.300600px;}
.y887_c00002{bottom:189.300855px;}
.y825_c00002{bottom:189.301200px;}
.y8b0_c00002{bottom:189.304005px;}
.y5e3_c00002{bottom:189.305235px;}
.y60b_c00002{bottom:189.307980px;}
.y638_c00002{bottom:189.310230px;}
.y9c7_c00002{bottom:189.406095px;}
.ydd0_c00002{bottom:190.019085px;}
.y1239_c00002{bottom:190.020375px;}
.ybe1_c00002{bottom:190.079835px;}
.y498_c00002{bottom:190.113915px;}
.y1470_c00002{bottom:190.263450px;}
.y14af_c00002{bottom:190.264545px;}
.y1ab7_c00002{bottom:190.740105px;}
.y11ca_c00002{bottom:190.740210px;}
.y180_c00002{bottom:190.831560px;}
.y1ae8_c00002{bottom:190.920000px;}
.y1a8e_c00002{bottom:191.641200px;}
.y19b6_c00002{bottom:191.819385px;}
.y1489_c00002{bottom:192.962715px;}
.y3df_c00002{bottom:193.173045px;}
.ycd_c00002{bottom:193.349685px;}
.y327_c00002{bottom:193.887240px;}
.y30e_c00002{bottom:193.888725px;}
.y2cf_c00002{bottom:193.889700px;}
.y2b7_c00002{bottom:193.890390px;}
.y4ca_c00002{bottom:195.265305px;}
.y42c_c00002{bottom:195.266355px;}
.y4b5_c00002{bottom:195.266940px;}
.ya6c_c00002{bottom:195.358230px;}
.yb74_c00002{bottom:195.359430px;}
.ya52_c00002{bottom:195.360330px;}
.ya01_c00002{bottom:195.360810px;}
.ya0f_c00002{bottom:195.363150px;}
.y1980_c00002{bottom:196.560750px;}
.y2ee_c00002{bottom:196.589310px;}
.y1811_c00002{bottom:196.620000px;}
.y369_c00002{bottom:196.892805px;}
.y771_c00002{bottom:196.996920px;}
.y1359_c00002{bottom:197.700375px;}
.y1757_c00002{bottom:198.060000px;}
.ya31_c00002{bottom:198.061695px;}
.yf4c_c00002{bottom:198.241740px;}
.yf18_c00002{bottom:198.245100px;}
.yf6f_c00002{bottom:198.245340px;}
.yf2e_c00002{bottom:198.246300px;}
.y1051_c00002{bottom:198.248790px;}
.yf8f_c00002{bottom:198.248940px;}
.yad3_c00002{bottom:198.299340px;}
.y1946_c00002{bottom:198.420225px;}
.ybc0_c00002{bottom:198.839700px;}
.yc09_c00002{bottom:198.843540px;}
.y277_c00002{bottom:200.013270px;}
.y461_c00002{bottom:200.013900px;}
.y1ae9_c00002{bottom:201.360000px;}
.y15e5_c00002{bottom:201.479115px;}
.y1461_c00002{bottom:201.480015px;}
.y140c_c00002{bottom:201.480120px;}
.y143b_c00002{bottom:201.480615px;}
.ye97_c00002{bottom:201.480990px;}
.yec6_c00002{bottom:201.481455px;}
.y16e7_c00002{bottom:201.481965px;}
.y1070_c00002{bottom:201.482055px;}
.y1205_c00002{bottom:201.482205px;}
.y12be_c00002{bottom:201.482385px;}
.y1112_c00002{bottom:201.482655px;}
.y12ed_c00002{bottom:201.482865px;}
.y10cc_c00002{bottom:201.483255px;}
.yfeb_c00002{bottom:201.483405px;}
.y1687_c00002{bottom:201.483465px;}
.ye49_c00002{bottom:201.483600px;}
.y109c_c00002{bottom:201.483705px;}
.yef1_c00002{bottom:201.483840px;}
.y13de_c00002{bottom:201.484800px;}
.y10f8_c00002{bottom:201.484905px;}
.y16b3_c00002{bottom:201.485115px;}
.y1134_c00002{bottom:201.485205px;}
.y1159_c00002{bottom:201.485805px;}
.y1319_c00002{bottom:201.485865px;}
.ye67_c00002{bottom:201.486000px;}
.ybe0_c00002{bottom:201.539010px;}
.y15b6_c00002{bottom:201.900135px;}
.y14f2_c00002{bottom:201.900180px;}
.yfc1_c00002{bottom:201.960795px;}
.y150b_c00002{bottom:202.080000px;}
.y99_c00002{bottom:202.105800px;}
.yaf_c00002{bottom:202.106700px;}
.yea_c00002{bottom:202.107525px;}
.y1034_c00002{bottom:202.145490px;}
.y108_c00002{bottom:202.166925px;}
.y7e4_c00002{bottom:202.497720px;}
.y534_c00002{bottom:202.498320px;}
.y803_c00002{bottom:202.499295px;}
.y515_c00002{bottom:202.499355px;}
.y4f3_c00002{bottom:202.499400px;}
.y79c_c00002{bottom:202.499520px;}
.y553_c00002{bottom:202.499880px;}
.y7bb_c00002{bottom:202.499910px;}
.y8fb_c00002{bottom:203.339910px;}
.y69b_c00002{bottom:203.340525px;}
.y669_c00002{bottom:203.342100px;}
.y94e_c00002{bottom:203.342160px;}
.y929_c00002{bottom:203.342460px;}
.y6ca_c00002{bottom:203.342475px;}
.y6f6_c00002{bottom:203.342775px;}
.y497_c00002{bottom:203.434035px;}
.ydf5_c00002{bottom:203.518485px;}
.y125e_c00002{bottom:203.519730px;}
.y1238_c00002{bottom:203.520375px;}
.y1289_c00002{bottom:203.521380px;}
.yd84_c00002{bottom:203.522130px;}
.y1220_c00002{bottom:203.522700px;}
.yda0_c00002{bottom:203.523900px;}
.y11c9_c00002{bottom:204.060330px;}
.y1cb_c00002{bottom:204.325500px;}
.y12b_c00002{bottom:204.329550px;}
.y17f_c00002{bottom:204.331560px;}
.y19e_c00002{bottom:204.331950px;}
.y147_c00002{bottom:204.332550px;}
.y1213_c00002{bottom:204.778950px;}
.y1006_c00002{bottom:204.779055px;}
.ye24_c00002{bottom:204.779100px;}
.yd28_c00002{bottom:204.839010px;}
.yceb_c00002{bottom:204.839550px;}
.yd59_c00002{bottom:204.839565px;}
.y101d_c00002{bottom:204.839865px;}
.yd46_c00002{bottom:204.840015px;}
.ycd2_c00002{bottom:204.840195px;}
.ycc_c00002{bottom:204.869220px;}
.y19b5_c00002{bottom:205.138920px;}
.y596_c00002{bottom:205.498500px;}
.y85b_c00002{bottom:205.499040px;}
.y837_c00002{bottom:205.499700px;}
.y5b1_c00002{bottom:205.500600px;}
.y886_c00002{bottom:205.500855px;}
.y824_c00002{bottom:205.501200px;}
.y8af_c00002{bottom:205.504005px;}
.y5e2_c00002{bottom:205.504635px;}
.y60a_c00002{bottom:205.507980px;}
.y637_c00002{bottom:205.510230px;}
.y345_c00002{bottom:205.649250px;}
.y393_c00002{bottom:205.654125px;}
.y3b4_c00002{bottom:205.711575px;}
.ydcf_c00002{bottom:206.219085px;}
.y1488_c00002{bottom:206.462715px;}
.y137d_c00002{bottom:206.463075px;}
.y133b_c00002{bottom:206.463450px;}
.y14ae_c00002{bottom:206.464545px;}
.y14c8_c00002{bottom:206.464695px;}
.y171f_c00002{bottom:206.466195px;}
.y157e_c00002{bottom:206.467395px;}
.y3de_c00002{bottom:206.492580px;}
.y1ae7_c00002{bottom:206.940000px;}
.yc7b_c00002{bottom:207.060015px;}
.yafc_c00002{bottom:207.060615px;}
.ya9d_c00002{bottom:207.060900px;}
.yb1f_c00002{bottom:207.121665px;}
.yc9d_c00002{bottom:207.124065px;}
.yb97_c00002{bottom:207.125715px;}
.yd0b_c00002{bottom:207.540060px;}
.y368_c00002{bottom:208.412925px;}
.y4c9_c00002{bottom:208.585425px;}
.y42b_c00002{bottom:208.586475px;}
.y4b4_c00002{bottom:208.587060px;}
.y1358_c00002{bottom:209.160135px;}
.y2ed_c00002{bottom:209.549070px;}
.yad2_c00002{bottom:209.818875px;}
.y770_c00002{bottom:210.317040px;}
.y155f_c00002{bottom:210.365295px;}
.y179e_c00002{bottom:211.020000px;}
.ya30_c00002{bottom:211.021455px;}
.y1945_c00002{bottom:211.740345px;}
.y197f_c00002{bottom:213.120450px;}
.y276_c00002{bottom:213.333390px;}
.y460_c00002{bottom:213.334020px;}
.yf4b_c00002{bottom:213.901440px;}
.ybdf_c00002{bottom:214.499355px;}
.y15b5_c00002{bottom:215.219670px;}
.y1552_c00002{bottom:215.220135px;}
.y1196_c00002{bottom:215.280990px;}
.y9c6_c00002{bottom:216.045795px;}
.y1756_c00002{bottom:216.240000px;}
.y17f3_c00002{bottom:216.599400px;}
.y1810_c00002{bottom:216.600000px;}
.y140b_c00002{bottom:217.139820px;}
.y11c8_c00002{bottom:217.380450px;}
.ye96_c00002{bottom:217.680990px;}
.yec5_c00002{bottom:217.681455px;}
.y106f_c00002{bottom:217.682055px;}
.y1204_c00002{bottom:217.682205px;}
.y12bd_c00002{bottom:217.682385px;}
.y1111_c00002{bottom:217.682655px;}
.y12ec_c00002{bottom:217.682865px;}
.y10cb_c00002{bottom:217.683255px;}
.yfea_c00002{bottom:217.683405px;}
.y1686_c00002{bottom:217.683465px;}
.ye48_c00002{bottom:217.683600px;}
.y109b_c00002{bottom:217.683705px;}
.yef0_c00002{bottom:217.683840px;}
.y10f7_c00002{bottom:217.684905px;}
.y16b2_c00002{bottom:217.685115px;}
.y1133_c00002{bottom:217.685205px;}
.y161e_c00002{bottom:217.685265px;}
.y1158_c00002{bottom:217.685805px;}
.y1318_c00002{bottom:217.685865px;}
.ye66_c00002{bottom:217.686000px;}
.y496_c00002{bottom:217.712745px;}
.ycb_c00002{bottom:217.829565px;}
.yc5b_c00002{bottom:218.340300px;}
.y326_c00002{bottom:218.367090px;}
.y30d_c00002{bottom:218.369175px;}
.y2ce_c00002{bottom:218.369550px;}
.y19b4_c00002{bottom:218.459040px;}
.y7e3_c00002{bottom:218.697720px;}
.y533_c00002{bottom:218.698320px;}
.y802_c00002{bottom:218.699295px;}
.y514_c00002{bottom:218.699355px;}
.y4f2_c00002{bottom:218.699400px;}
.y79b_c00002{bottom:218.699520px;}
.y552_c00002{bottom:218.699880px;}
.y7ba_c00002{bottom:218.699910px;}
.y1a61_c00002{bottom:218.820150px;}
.y8fa_c00002{bottom:219.539910px;}
.y69a_c00002{bottom:219.540525px;}
.y668_c00002{bottom:219.542100px;}
.y94d_c00002{bottom:219.542160px;}
.y928_c00002{bottom:219.542460px;}
.y6c9_c00002{bottom:219.542475px;}
.y6f5_c00002{bottom:219.542775px;}
.y2b6_c00002{bottom:219.566790px;}
.ydf4_c00002{bottom:219.718485px;}
.ye1b_c00002{bottom:219.719685px;}
.y125d_c00002{bottom:219.719730px;}
.y1288_c00002{bottom:219.721380px;}
.yd83_c00002{bottom:219.722130px;}
.yd9f_c00002{bottom:219.723900px;}
.y3dd_c00002{bottom:219.812700px;}
.ya6b_c00002{bottom:219.838680px;}
.yb73_c00002{bottom:219.839880px;}
.ya51_c00002{bottom:219.840180px;}
.ya00_c00002{bottom:219.840660px;}
.ya0e_c00002{bottom:219.843000px;}
.y1ca_c00002{bottom:220.525500px;}
.y12a_c00002{bottom:220.529550px;}
.y19d_c00002{bottom:220.530150px;}
.yd27_c00002{bottom:221.039010px;}
.ycea_c00002{bottom:221.039550px;}
.ycd1_c00002{bottom:221.040195px;}
.y2ec_c00002{bottom:221.069190px;}
.yd0a_c00002{bottom:221.100405px;}
.y101c_c00002{bottom:221.100765px;}
.yd45_c00002{bottom:221.100915px;}
.y1ab6_c00002{bottom:221.340060px;}
.y367_c00002{bottom:221.372685px;}
.y595_c00002{bottom:221.699700px;}
.y5b0_c00002{bottom:221.700600px;}
.y885_c00002{bottom:221.700855px;}
.y823_c00002{bottom:221.701200px;}
.y1a8d_c00002{bottom:221.701500px;}
.y609_c00002{bottom:221.707980px;}
.y85a_c00002{bottom:221.759340px;}
.y8ae_c00002{bottom:221.763255px;}
.y636_c00002{bottom:221.769930px;}
.y17e_c00002{bottom:221.791860px;}
.y4c8_c00002{bottom:221.905545px;}
.y42a_c00002{bottom:221.906595px;}
.y61_c00002{bottom:221.906730px;}
.y4b3_c00002{bottom:221.907180px;}
.y477_c00002{bottom:221.907780px;}
.ye23_c00002{bottom:222.418200px;}
.y1212_c00002{bottom:222.418650px;}
.y1005_c00002{bottom:222.418755px;}
.ydce_c00002{bottom:222.419085px;}
.y1237_c00002{bottom:222.420375px;}
.y15fd_c00002{bottom:222.421530px;}
.y129b_c00002{bottom:222.421680px;}
.y1594_c00002{bottom:222.421830px;}
.y1677_c00002{bottom:222.422280px;}
.ya2f_c00002{bottom:222.541575px;}
.y1357_c00002{bottom:222.660135px;}
.y1538_c00002{bottom:222.662025px;}
.y1487_c00002{bottom:222.662715px;}
.y137c_c00002{bottom:222.663075px;}
.y133a_c00002{bottom:222.663450px;}
.y14ad_c00002{bottom:222.664545px;}
.yf17_c00002{bottom:222.664650px;}
.y14c7_c00002{bottom:222.664695px;}
.yf6e_c00002{bottom:222.664890px;}
.yf2d_c00002{bottom:222.665850px;}
.y171e_c00002{bottom:222.666195px;}
.y157d_c00002{bottom:222.667395px;}
.y139e_c00002{bottom:222.668625px;}
.yad1_c00002{bottom:222.779220px;}
.ybbf_c00002{bottom:223.319550px;}
.yc08_c00002{bottom:223.323390px;}
.yc2b_c00002{bottom:223.324740px;}
.y76f_c00002{bottom:223.637160px;}
.y5e1_c00002{bottom:224.464935px;}
.y1944_c00002{bottom:225.060465px;}
.yf4a_c00002{bottom:225.421560px;}
.y143a_c00002{bottom:225.900165px;}
.y13dd_c00002{bottom:225.904350px;}
.ybde_c00002{bottom:226.018890px;}
.y98_c00002{bottom:226.585650px;}
.yae_c00002{bottom:226.586550px;}
.ye9_c00002{bottom:226.587375px;}
.y107_c00002{bottom:226.588875px;}
.y151a_c00002{bottom:226.620525px;}
.y155e_c00002{bottom:226.624545px;}
.y163a_c00002{bottom:226.625475px;}
.y275_c00002{bottom:227.610930px;}
.y495_c00002{bottom:227.612745px;}
.y45f_c00002{bottom:227.613315px;}
.y14f1_c00002{bottom:228.420330px;}
.yfc0_c00002{bottom:228.540045px;}
.y1195_c00002{bottom:228.540165px;}
.y1551_c00002{bottom:228.540255px;}
.y140a_c00002{bottom:228.659940px;}
.yca_c00002{bottom:229.287570px;}
.y9c5_c00002{bottom:229.365915px;}
.y1ae5_c00002{bottom:229.440000px;}
.y344_c00002{bottom:230.129700px;}
.y3b3_c00002{bottom:230.132325px;}
.y392_c00002{bottom:230.133975px;}
.yc7a_c00002{bottom:231.539865px;}
.yafb_c00002{bottom:231.540465px;}
.ya9c_c00002{bottom:231.540750px;}
.yb1e_c00002{bottom:231.542415px;}
.yc9c_c00002{bottom:231.543615px;}
.yb96_c00002{bottom:231.545265px;}
.y19b3_c00002{bottom:231.779160px;}
.y17f2_c00002{bottom:232.799400px;}
.y179d_c00002{bottom:232.800000px;}
.y366_c00002{bottom:232.833630px;}
.y3dc_c00002{bottom:233.132820px;}
.y12bc_c00002{bottom:233.342085px;}
.y1ae6_c00002{bottom:233.400000px;}
.ye95_c00002{bottom:233.880990px;}
.yec4_c00002{bottom:233.881455px;}
.y106e_c00002{bottom:233.882055px;}
.y1203_c00002{bottom:233.882205px;}
.y1110_c00002{bottom:233.882655px;}
.y10ca_c00002{bottom:233.883255px;}
.yfe9_c00002{bottom:233.883405px;}
.ye47_c00002{bottom:233.883600px;}
.y109a_c00002{bottom:233.883705px;}
.yeef_c00002{bottom:233.883840px;}
.y10f6_c00002{bottom:233.884905px;}
.y1132_c00002{bottom:233.885205px;}
.y1157_c00002{bottom:233.885805px;}
.ye65_c00002{bottom:233.886000px;}
.y2eb_c00002{bottom:234.029535px;}
.yad0_c00002{bottom:234.240165px;}
.y1755_c00002{bottom:234.420000px;}
.y7e2_c00002{bottom:234.897720px;}
.y532_c00002{bottom:234.898320px;}
.y4f1_c00002{bottom:234.899400px;}
.y79a_c00002{bottom:234.899520px;}
.yc5a_c00002{bottom:234.900000px;}
.y13b0_c00002{bottom:234.900015px;}
.y801_c00002{bottom:234.959595px;}
.y513_c00002{bottom:234.959655px;}
.y551_c00002{bottom:234.960180px;}
.y7b9_c00002{bottom:234.960210px;}
.y699_c00002{bottom:235.200825px;}
.y4c7_c00002{bottom:235.223910px;}
.y429_c00002{bottom:235.224960px;}
.y60_c00002{bottom:235.225095px;}
.y476_c00002{bottom:235.226145px;}
.y4b2_c00002{bottom:235.227300px;}
.ya2e_c00002{bottom:235.501335px;}
.y8f9_c00002{bottom:235.741110px;}
.y8d6_c00002{bottom:235.742100px;}
.y94c_c00002{bottom:235.742160px;}
.y927_c00002{bottom:235.742460px;}
.ydf3_c00002{bottom:235.918485px;}
.y125c_c00002{bottom:235.919730px;}
.yd82_c00002{bottom:235.922130px;}
.yd9e_c00002{bottom:235.923900px;}
.ye1a_c00002{bottom:235.978935px;}
.ydcd_c00002{bottom:235.979430px;}
.y1287_c00002{bottom:235.981680px;}
.y1b6c_c00002{bottom:236.280000px;}
.y180f_c00002{bottom:236.580000px;}
.y129_c00002{bottom:236.729550px;}
.y19c_c00002{bottom:236.730150px;}
.y146_c00002{bottom:236.732550px;}
.y1c9_c00002{bottom:236.787600px;}
.y17d_c00002{bottom:236.790690px;}
.y76e_c00002{bottom:236.957280px;}
.y1004_c00002{bottom:237.179100px;}
.y1a60_c00002{bottom:237.180450px;}
.yd58_c00002{bottom:237.299865px;}
.yd26_c00002{bottom:237.299910px;}
.yce9_c00002{bottom:237.300450px;}
.ycd0_c00002{bottom:237.300495px;}
.y101b_c00002{bottom:237.300765px;}
.yd44_c00002{bottom:237.300915px;}
.y274_c00002{bottom:237.510930px;}
.y494_c00002{bottom:237.512745px;}
.y45e_c00002{bottom:237.513315px;}
.y859_c00002{bottom:237.959340px;}
.y594_c00002{bottom:237.959400px;}
.y5af_c00002{bottom:237.959850px;}
.y836_c00002{bottom:237.960000px;}
.y822_c00002{bottom:237.960450px;}
.y884_c00002{bottom:237.961155px;}
.y8ad_c00002{bottom:237.963255px;}
.y608_c00002{bottom:237.968280px;}
.y635_c00002{bottom:237.969930px;}
.y1943_c00002{bottom:238.380000px;}
.y1236_c00002{bottom:238.681275px;}
.y1356_c00002{bottom:238.920435px;}
.yf49_c00002{bottom:238.921560px;}
.y1537_c00002{bottom:238.922325px;}
.y1486_c00002{bottom:238.923015px;}
.y137b_c00002{bottom:238.923375px;}
.y1339_c00002{bottom:238.923750px;}
.y14ac_c00002{bottom:238.924845px;}
.yf16_c00002{bottom:238.924950px;}
.yf6d_c00002{bottom:238.925190px;}
.y14c6_c00002{bottom:238.925595px;}
.yf2c_c00002{bottom:238.926150px;}
.y171d_c00002{bottom:238.926495px;}
.y157c_c00002{bottom:238.927095px;}
.y1050_c00002{bottom:238.928640px;}
.y139d_c00002{bottom:238.928925px;}
.yf8e_c00002{bottom:238.929390px;}
.ybdd_c00002{bottom:238.979235px;}
.y1ab5_c00002{bottom:239.880360px;}
.y1a8c_c00002{bottom:239.881350px;}
.yd09_c00002{bottom:240.000405px;}
.ybb3_c00002{bottom:240.180300px;}
.y5e0_c00002{bottom:240.664335px;}
.y15b4_c00002{bottom:241.679970px;}
.y14f0_c00002{bottom:241.740450px;}
.yfbf_c00002{bottom:241.861335px;}
.y15e4_c00002{bottom:242.158965px;}
.y1439_c00002{bottom:242.159865px;}
.y1460_c00002{bottom:242.161065px;}
.y16e6_c00002{bottom:242.162415px;}
.y12eb_c00002{bottom:242.162715px;}
.y1685_c00002{bottom:242.163315px;}
.y12a0_c00002{bottom:242.164050px;}
.y13dc_c00002{bottom:242.165250px;}
.yc9_c00002{bottom:242.247330px;}
.y9c4_c00002{bottom:242.686035px;}
.y325_c00002{bottom:242.784840px;}
.y30c_c00002{bottom:242.786925px;}
.y2cd_c00002{bottom:242.787900px;}
.y1519_c00002{bottom:242.820525px;}
.y155d_c00002{bottom:242.824545px;}
.y1033_c00002{bottom:242.825340px;}
.y1639_c00002{bottom:242.825475px;}
.y1409_c00002{bottom:243.422640px;}
.y11c7_c00002{bottom:244.020150px;}
.y667_c00002{bottom:244.021950px;}
.y6c8_c00002{bottom:244.022325px;}
.y2b5_c00002{bottom:244.046640px;}
.ya50_c00002{bottom:244.259730px;}
.y9ff_c00002{bottom:244.260210px;}
.ya0d_c00002{bottom:244.262550px;}
.ya6a_c00002{bottom:244.319130px;}
.yb72_c00002{bottom:244.320330px;}
.y12bb_c00002{bottom:244.862205px;}
.y19b2_c00002{bottom:245.099280px;}
.y2ea_c00002{bottom:245.487540px;}
.y1981_c00002{bottom:245.745450px;}
.y365_c00002{bottom:245.793975px;}
.y12f9_c00002{bottom:246.061815px;}
.y1693_c00002{bottom:246.062415px;}
.y698_c00002{bottom:246.720945px;}
.ya2d_c00002{bottom:247.021455px;}
.yacf_c00002{bottom:247.199925px;}
.y273_c00002{bottom:247.410930px;}
.y3db_c00002{bottom:247.412115px;}
.y493_c00002{bottom:247.412745px;}
.y45d_c00002{bottom:247.413315px;}
.ybbe_c00002{bottom:247.741500px;}
.yc07_c00002{bottom:247.744140px;}
.yc2a_c00002{bottom:247.745490px;}
.y4c6_c00002{bottom:248.544030px;}
.y428_c00002{bottom:248.545080px;}
.y5f_c00002{bottom:248.545215px;}
.y475_c00002{bottom:248.546265px;}
.y17f1_c00002{bottom:248.999400px;}
.ye94_c00002{bottom:249.601140px;}
.y76d_c00002{bottom:250.277400px;}
.ybdc_c00002{bottom:250.441350px;}
.yad_c00002{bottom:251.066400px;}
.ye8_c00002{bottom:251.067225px;}
.y106_c00002{bottom:251.068125px;}
.y7e1_c00002{bottom:251.158020px;}
.y531_c00002{bottom:251.158620px;}
.y800_c00002{bottom:251.159595px;}
.y512_c00002{bottom:251.159655px;}
.y4f0_c00002{bottom:251.159700px;}
.y799_c00002{bottom:251.159820px;}
.y550_c00002{bottom:251.160180px;}
.y7b8_c00002{bottom:251.160210px;}
.y1942_c00002{bottom:251.639760px;}
.y8f8_c00002{bottom:252.000360px;}
.y8d5_c00002{bottom:252.001350px;}
.y926_c00002{bottom:252.001710px;}
.y94b_c00002{bottom:252.003060px;}
.ydf2_c00002{bottom:252.178785px;}
.ye19_c00002{bottom:252.178935px;}
.y125b_c00002{bottom:252.180630px;}
.y1286_c00002{bottom:252.181680px;}
.yd81_c00002{bottom:252.182430px;}
.yd9d_c00002{bottom:252.184200px;}
.y97_c00002{bottom:252.327000px;}
.y1754_c00002{bottom:252.600000px;}
.y1c8_c00002{bottom:252.987600px;}
.y128_c00002{bottom:252.988800px;}
.y19b_c00002{bottom:252.989400px;}
.y145_c00002{bottom:252.991800px;}
.y129a_c00002{bottom:253.441830px;}
.y1593_c00002{bottom:253.441980px;}
.y15fc_c00002{bottom:253.442280px;}
.y102d_c00002{bottom:253.499865px;}
.yd25_c00002{bottom:253.499910px;}
.yce8_c00002{bottom:253.500450px;}
.yccf_c00002{bottom:253.500495px;}
.y101a_c00002{bottom:253.500765px;}
.yd43_c00002{bottom:253.500915px;}
.yc8_c00002{bottom:253.768035px;}
.y858_c00002{bottom:254.159340px;}
.y593_c00002{bottom:254.159400px;}
.y5ae_c00002{bottom:254.159850px;}
.y835_c00002{bottom:254.160000px;}
.y821_c00002{bottom:254.160450px;}
.y883_c00002{bottom:254.161155px;}
.y8ac_c00002{bottom:254.163255px;}
.y607_c00002{bottom:254.168280px;}
.y634_c00002{bottom:254.169930px;}
.y17c_c00002{bottom:254.250990px;}
.y179c_c00002{bottom:254.580000px;}
.y343_c00002{bottom:254.610150px;}
.y3b2_c00002{bottom:254.612175px;}
.y391_c00002{bottom:254.613825px;}
.ye22_c00002{bottom:254.879100px;}
.ydcc_c00002{bottom:254.879430px;}
.y1235_c00002{bottom:254.881275px;}
.y15b3_c00002{bottom:255.000090px;}
.y14ef_c00002{bottom:255.000210px;}
.y1550_c00002{bottom:255.000555px;}
.y1194_c00002{bottom:255.060915px;}
.y1355_c00002{bottom:255.120435px;}
.yf48_c00002{bottom:255.121560px;}
.y1536_c00002{bottom:255.122325px;}
.y1485_c00002{bottom:255.123015px;}
.y137a_c00002{bottom:255.123375px;}
.y1338_c00002{bottom:255.123750px;}
.y14ab_c00002{bottom:255.124845px;}
.yf15_c00002{bottom:255.124950px;}
.yf6c_c00002{bottom:255.125190px;}
.y14c5_c00002{bottom:255.125595px;}
.yf2b_c00002{bottom:255.126150px;}
.y171c_c00002{bottom:255.126495px;}
.y157b_c00002{bottom:255.127095px;}
.y104f_c00002{bottom:255.128640px;}
.y139c_c00002{bottom:255.128925px;}
.yf8d_c00002{bottom:255.129390px;}
.yb57_c00002{bottom:255.181200px;}
.y9c3_c00002{bottom:256.006155px;}
.yc79_c00002{bottom:256.019715px;}
.yafa_c00002{bottom:256.020315px;}
.ya9b_c00002{bottom:256.020600px;}
.yb1d_c00002{bottom:256.022865px;}
.yb95_c00002{bottom:256.025115px;}
.yd08_c00002{bottom:256.200405px;}
.y180e_c00002{bottom:256.560000px;}
.ybb2_c00002{bottom:256.740000px;}
.y5df_c00002{bottom:256.863735px;}
.y272_c00002{bottom:257.252340px;}
.y3da_c00002{bottom:257.252940px;}
.y45c_c00002{bottom:257.254140px;}
.y492_c00002{bottom:257.254740px;}
.y364_c00002{bottom:257.314095px;}
.y11c6_c00002{bottom:257.342025px;}
.y1b6b_c00002{bottom:258.060000px;}
.y15e3_c00002{bottom:258.358965px;}
.y1438_c00002{bottom:258.359865px;}
.y145f_c00002{bottom:258.361065px;}
.yec3_c00002{bottom:258.361305px;}
.y106d_c00002{bottom:258.361905px;}
.y16e5_c00002{bottom:258.362415px;}
.y110f_c00002{bottom:258.362505px;}
.y12ea_c00002{bottom:258.362715px;}
.y10c9_c00002{bottom:258.363105px;}
.y1684_c00002{bottom:258.363315px;}
.ye46_c00002{bottom:258.364050px;}
.y16b1_c00002{bottom:258.364965px;}
.y161d_c00002{bottom:258.365115px;}
.y13db_c00002{bottom:258.365250px;}
.y1317_c00002{bottom:258.365715px;}
.ye64_c00002{bottom:258.366450px;}
.yace_c00002{bottom:258.720045px;}
.y2b4_c00002{bottom:258.986880px;}
.y30b_c00002{bottom:258.986925px;}
.y2cc_c00002{bottom:258.987900px;}
.y1518_c00002{bottom:259.020525px;}
.y155c_c00002{bottom:259.024545px;}
.y1032_c00002{bottom:259.025340px;}
.y1638_c00002{bottom:259.025475px;}
.y324_c00002{bottom:259.048140px;}
.y1408_c00002{bottom:259.622640px;}
.y12ba_c00002{bottom:259.624905px;}
.ya2c_c00002{bottom:259.981215px;}
.y697_c00002{bottom:260.220945px;}
.y666_c00002{bottom:260.221950px;}
.y6c7_c00002{bottom:260.222325px;}
.y6f4_c00002{bottom:260.222625px;}
.y2a2_c00002{bottom:260.607000px;}
.ye93_c00002{bottom:261.060900px;}
.y1ae3_c00002{bottom:261.480000px;}
.y1508_c00002{bottom:261.539925px;}
.y2e9_c00002{bottom:261.749640px;}
.y4c5_c00002{bottom:261.864150px;}
.y427_c00002{bottom:261.865200px;}
.y5e_c00002{bottom:261.865335px;}
.y4b1_c00002{bottom:261.865800px;}
.y474_c00002{bottom:261.866385px;}
.y11d4_c00002{bottom:262.260555px;}
.y107c_c00002{bottom:262.261155px;}
.y10d8_c00002{bottom:262.262355px;}
.ybdb_c00002{bottom:263.401695px;}
.y1941_c00002{bottom:264.959880px;}
.y17f0_c00002{bottom:265.199400px;}
.y1ae4_c00002{bottom:265.440000px;}
.yc7_c00002{bottom:266.727795px;}
.y271_c00002{bottom:267.152340px;}
.y3d9_c00002{bottom:267.152940px;}
.y45b_c00002{bottom:267.154140px;}
.y491_c00002{bottom:267.154740px;}
.y7e0_c00002{bottom:267.358620px;}
.y530_c00002{bottom:267.359220px;}
.y7ff_c00002{bottom:267.359595px;}
.y511_c00002{bottom:267.359655px;}
.y4ef_c00002{bottom:267.359700px;}
.y798_c00002{bottom:267.359820px;}
.y54f_c00002{bottom:267.360180px;}
.y7b7_c00002{bottom:267.360210px;}
.y1a5f_c00002{bottom:267.420150px;}
.y8f7_c00002{bottom:268.200360px;}
.y925_c00002{bottom:268.201710px;}
.y8d4_c00002{bottom:268.202550px;}
.y94a_c00002{bottom:268.203060px;}
.y15b2_c00002{bottom:268.321380px;}
.y14ee_c00002{bottom:268.321500px;}
.y154f_c00002{bottom:268.321845px;}
.ydf1_c00002{bottom:268.378785px;}
.ye18_c00002{bottom:268.378935px;}
.y125a_c00002{bottom:268.380630px;}
.y1285_c00002{bottom:268.381680px;}
.yfbe_c00002{bottom:268.382085px;}
.y1193_c00002{bottom:268.382205px;}
.yd80_c00002{bottom:268.382430px;}
.yd9c_c00002{bottom:268.384200px;}
.ya69_c00002{bottom:268.738680px;}
.yb71_c00002{bottom:268.739880px;}
.y9fe_c00002{bottom:268.740060px;}
.ya4f_c00002{bottom:268.740180px;}
.ya0c_c00002{bottom:268.742400px;}
.y1985_c00002{bottom:268.905300px;}
.y127_c00002{bottom:269.188800px;}
.y17b_c00002{bottom:269.190645px;}
.y9c2_c00002{bottom:269.327445px;}
.yd24_c00002{bottom:269.699910px;}
.yce7_c00002{bottom:269.700450px;}
.ycce_c00002{bottom:269.700495px;}
.y1019_c00002{bottom:269.700765px;}
.yd42_c00002{bottom:269.700915px;}
.y1a8b_c00002{bottom:269.761200px;}
.y363_c00002{bottom:270.273855px;}
.y592_c00002{bottom:270.359400px;}
.y5ad_c00002{bottom:270.359850px;}
.y834_c00002{bottom:270.360000px;}
.y820_c00002{bottom:270.360450px;}
.y882_c00002{bottom:270.361155px;}
.y8ab_c00002{bottom:270.363255px;}
.y5de_c00002{bottom:270.363735px;}
.y606_c00002{bottom:270.368280px;}
.y633_c00002{bottom:270.369930px;}
.y1ab4_c00002{bottom:270.660210px;}
.y1753_c00002{bottom:270.780000px;}
.yd57_c00002{bottom:270.960165px;}
.y116d_c00002{bottom:270.962565px;}
.ydcb_c00002{bottom:271.079430px;}
.y1234_c00002{bottom:271.081275px;}
.y1299_c00002{bottom:271.082580px;}
.y1592_c00002{bottom:271.082730px;}
.y1354_c00002{bottom:271.321635px;}
.y1535_c00002{bottom:271.322325px;}
.yf47_c00002{bottom:271.323360px;}
.y1379_c00002{bottom:271.323375px;}
.y1337_c00002{bottom:271.323750px;}
.y1484_c00002{bottom:271.324215px;}
.y14aa_c00002{bottom:271.324845px;}
.yf14_c00002{bottom:271.324950px;}
.yf6b_c00002{bottom:271.325190px;}
.y14c4_c00002{bottom:271.325595px;}
.yf2a_c00002{bottom:271.326150px;}
.y171b_c00002{bottom:271.326495px;}
.y157a_c00002{bottom:271.327095px;}
.y104e_c00002{bottom:271.328640px;}
.y139b_c00002{bottom:271.328925px;}
.yf8c_c00002{bottom:271.329390px;}
.ya2b_c00002{bottom:271.440975px;}
.yacd_c00002{bottom:271.679805px;}
.y19b1_c00002{bottom:271.738980px;}
.yb56_c00002{bottom:271.741500px;}
.ybbd_c00002{bottom:272.220150px;}
.yc06_c00002{bottom:272.223990px;}
.yc29_c00002{bottom:272.225340px;}
.yd07_c00002{bottom:272.459655px;}
.y857_c00002{bottom:273.119040px;}
.y1ad_c00002{bottom:273.148350px;}
.y76b_c00002{bottom:273.359400px;}
.y755_c00002{bottom:273.359850px;}
.y71f_c00002{bottom:273.360750px;}
.y73d_c00002{bottom:273.361050px;}
.y1b24_c00002{bottom:273.361500px;}
.y15e2_c00002{bottom:274.558965px;}
.y1437_c00002{bottom:274.559865px;}
.y145e_c00002{bottom:274.561065px;}
.yec2_c00002{bottom:274.561305px;}
.y1202_c00002{bottom:274.561455px;}
.y106c_c00002{bottom:274.561905px;}
.y16e4_c00002{bottom:274.562415px;}
.y110e_c00002{bottom:274.562505px;}
.y12e9_c00002{bottom:274.562715px;}
.y10c8_c00002{bottom:274.563105px;}
.yfe8_c00002{bottom:274.563255px;}
.y1683_c00002{bottom:274.563315px;}
.y1099_c00002{bottom:274.563555px;}
.yeee_c00002{bottom:274.563690px;}
.ye45_c00002{bottom:274.564050px;}
.y1131_c00002{bottom:274.564455px;}
.y161c_c00002{bottom:274.564515px;}
.y10f5_c00002{bottom:274.564755px;}
.y16b0_c00002{bottom:274.564965px;}
.y13da_c00002{bottom:274.565250px;}
.y1156_c00002{bottom:274.565655px;}
.y1316_c00002{bottom:274.565715px;}
.ye63_c00002{bottom:274.566450px;}
.ybda_c00002{bottom:274.921230px;}
.y5d_c00002{bottom:275.185455px;}
.y4b0_c00002{bottom:275.185920px;}
.y473_c00002{bottom:275.186505px;}
.y1517_c00002{bottom:275.220525px;}
.y155b_c00002{bottom:275.224545px;}
.y1031_c00002{bottom:275.225340px;}
.y1637_c00002{bottom:275.225475px;}
.y323_c00002{bottom:275.248140px;}
.y2b3_c00002{bottom:275.248980px;}
.y30a_c00002{bottom:275.249025px;}
.y2cb_c00002{bottom:275.250000px;}
.y105_c00002{bottom:275.486475px;}
.yac_c00002{bottom:275.487750px;}
.ye7_c00002{bottom:275.488575px;}
.y1407_c00002{bottom:275.822640px;}
.ye92_c00002{bottom:275.823600px;}
.y12b9_c00002{bottom:275.824905px;}
.y179b_c00002{bottom:276.360000px;}
.y696_c00002{bottom:276.420945px;}
.y665_c00002{bottom:276.421950px;}
.y6c6_c00002{bottom:276.422325px;}
.y6f3_c00002{bottom:276.422625px;}
.y180d_c00002{bottom:276.540000px;}
.y96_c00002{bottom:276.747750px;}
.y2e8_c00002{bottom:277.949640px;}
.yc6_c00002{bottom:278.247330px;}
.y342_c00002{bottom:279.030900px;}
.y3b1_c00002{bottom:279.033525px;}
.y390_c00002{bottom:279.035175px;}
.y1b6a_c00002{bottom:279.840000px;}
.yc78_c00002{bottom:280.439265px;}
.yaf9_c00002{bottom:280.439865px;}
.ya9a_c00002{bottom:280.440150px;}
.yb1c_c00002{bottom:280.442415px;}
.yc9b_c00002{bottom:280.443615px;}
.yb94_c00002{bottom:280.445265px;}
.y17ef_c00002{bottom:281.399400px;}
.y15b1_c00002{bottom:281.641500px;}
.y1507_c00002{bottom:281.641725px;}
.y154e_c00002{bottom:281.641965px;}
.yfbd_c00002{bottom:281.702205px;}
.y1192_c00002{bottom:281.702325px;}
.y362_c00002{bottom:281.734800px;}
.y9c1_c00002{bottom:282.647565px;}
.yacc_c00002{bottom:283.139565px;}
.y7df_c00002{bottom:283.558620px;}
.y52f_c00002{bottom:283.559220px;}
.y7fe_c00002{bottom:283.559595px;}
.y510_c00002{bottom:283.559655px;}
.y4ee_c00002{bottom:283.559700px;}
.y797_c00002{bottom:283.559820px;}
.y54e_c00002{bottom:283.560180px;}
.y7b6_c00002{bottom:283.560210px;}
.y22d_c00002{bottom:283.592940px;}
.y11c5_c00002{bottom:283.801725px;}
.y8f6_c00002{bottom:283.860060px;}
.ya2a_c00002{bottom:284.401320px;}
.ydf0_c00002{bottom:284.578785px;}
.ye17_c00002{bottom:284.578935px;}
.y1259_c00002{bottom:284.580630px;}
.y1284_c00002{bottom:284.581680px;}
.yd7f_c00002{bottom:284.582430px;}
.yd9b_c00002{bottom:284.584200px;}
.y19b0_c00002{bottom:285.059100px;}
.y1af_c00002{bottom:285.387450px;}
.y1c7_c00002{bottom:285.387600px;}
.y126_c00002{bottom:285.388800px;}
.y17a_c00002{bottom:285.390645px;}
.y144_c00002{bottom:285.391800px;}
.ye21_c00002{bottom:285.840600px;}
.yce6_c00002{bottom:285.959700px;}
.yccd_c00002{bottom:285.959745px;}
.yd23_c00002{bottom:285.960210px;}
.y1018_c00002{bottom:285.961065px;}
.yd41_c00002{bottom:285.961215px;}
.y591_c00002{bottom:286.619100px;}
.y833_c00002{bottom:286.619700px;}
.y5ac_c00002{bottom:286.620150px;}
.y81f_c00002{bottom:286.620750px;}
.y881_c00002{bottom:286.621455px;}
.y8aa_c00002{bottom:286.623555px;}
.y605_c00002{bottom:286.627980px;}
.y632_c00002{bottom:286.630230px;}
.y116c_c00002{bottom:287.222865px;}
.ydca_c00002{bottom:287.279430px;}
.y1233_c00002{bottom:287.281275px;}
.y1378_c00002{bottom:287.523375px;}
.y1336_c00002{bottom:287.523750px;}
.y14a9_c00002{bottom:287.524845px;}
.yf13_c00002{bottom:287.524950px;}
.yf6a_c00002{bottom:287.525190px;}
.yf29_c00002{bottom:287.526150px;}
.y1353_c00002{bottom:287.581335px;}
.yf46_c00002{bottom:287.582010px;}
.y1534_c00002{bottom:287.582025px;}
.y1483_c00002{bottom:287.583465px;}
.y14c3_c00002{bottom:287.585895px;}
.y171a_c00002{bottom:287.586795px;}
.y1579_c00002{bottom:287.587395px;}
.y104d_c00002{bottom:287.588940px;}
.y1657_c00002{bottom:287.589225px;}
.yf8b_c00002{bottom:287.589690px;}
.y139a_c00002{bottom:287.589825px;}
.ybd9_c00002{bottom:287.881575px;}
.y4c4_c00002{bottom:288.445200px;}
.y426_c00002{bottom:288.446250px;}
.y5c_c00002{bottom:288.446385px;}
.y472_c00002{bottom:288.447435px;}
.yd06_c00002{bottom:288.659655px;}
.y1752_c00002{bottom:288.960000px;}
.y856_c00002{bottom:289.319040px;}
.y5dd_c00002{bottom:289.324035px;}
.y1ac_c00002{bottom:289.348350px;}
.y76a_c00002{bottom:289.559400px;}
.y754_c00002{bottom:289.559850px;}
.y71e_c00002{bottom:289.560750px;}
.y73c_c00002{bottom:289.561050px;}
.y1436_c00002{bottom:290.759865px;}
.yec1_c00002{bottom:290.761305px;}
.y106b_c00002{bottom:290.761905px;}
.y110d_c00002{bottom:290.762505px;}
.y12e8_c00002{bottom:290.762715px;}
.y10c7_c00002{bottom:290.763105px;}
.y1682_c00002{bottom:290.763315px;}
.ye44_c00002{bottom:290.764050px;}
.y13d9_c00002{bottom:290.765250px;}
.ye62_c00002{bottom:290.766450px;}
.y15e1_c00002{bottom:290.819865px;}
.y1201_c00002{bottom:290.821755px;}
.y145d_c00002{bottom:290.821965px;}
.y16e3_c00002{bottom:290.822715px;}
.yfe7_c00002{bottom:290.823555px;}
.y1098_c00002{bottom:290.823855px;}
.yeed_c00002{bottom:290.824590px;}
.y1130_c00002{bottom:290.824755px;}
.y161b_c00002{bottom:290.824815px;}
.y10f4_c00002{bottom:290.825055px;}
.y16af_c00002{bottom:290.825265px;}
.y1155_c00002{bottom:290.825955px;}
.y1315_c00002{bottom:290.826015px;}
.y322_c00002{bottom:291.446940px;}
.y2b2_c00002{bottom:291.448980px;}
.y309_c00002{bottom:291.449025px;}
.y2ca_c00002{bottom:291.450000px;}
.y1516_c00002{bottom:291.481425px;}
.y155a_c00002{bottom:291.484845px;}
.y1030_c00002{bottom:291.485640px;}
.y1636_c00002{bottom:291.485775px;}
.y1940_c00002{bottom:291.599580px;}
.yab_c00002{bottom:291.746400px;}
.ye6_c00002{bottom:291.747225px;}
.yc5_c00002{bottom:291.747330px;}
.y95_c00002{bottom:291.747750px;}
.y104_c00002{bottom:291.747975px;}
.y1406_c00002{bottom:292.022640px;}
.ye91_c00002{bottom:292.023600px;}
.y12b8_c00002{bottom:292.024905px;}
.y20d_c00002{bottom:292.351650px;}
.y270_c00002{bottom:292.352340px;}
.y3d8_c00002{bottom:292.352940px;}
.y24a_c00002{bottom:292.353690px;}
.y45a_c00002{bottom:292.354140px;}
.y490_c00002{bottom:292.354740px;}
.y664_c00002{bottom:292.621950px;}
.y8d3_c00002{bottom:292.622100px;}
.y6c5_c00002{bottom:292.622325px;}
.y924_c00002{bottom:292.622460px;}
.y695_c00002{bottom:292.681245px;}
.y6f2_c00002{bottom:292.683525px;}
.y2e7_c00002{bottom:292.709400px;}
.ya68_c00002{bottom:293.218530px;}
.yb70_c00002{bottom:293.219730px;}
.ya4e_c00002{bottom:293.220030px;}
.ya0b_c00002{bottom:293.222250px;}
.y1f7_c00002{bottom:293.613075px;}
.y9fd_c00002{bottom:294.421710px;}
.y361_c00002{bottom:294.694560px;}
.y1506_c00002{bottom:294.961260px;}
.yfbc_c00002{bottom:294.961380px;}
.y1191_c00002{bottom:294.961500px;}
.y22c_c00002{bottom:295.112475px;}
.y1b23_c00002{bottom:295.141500px;}
.y8f5_c00002{bottom:295.380180px;}
.ya29_c00002{bottom:295.920855px;}
.yacb_c00002{bottom:296.101095px;}
.y1b47_c00002{bottom:296.220000px;}
.y250_c00002{bottom:296.313690px;}
.y180c_c00002{bottom:296.520000px;}
.ybbc_c00002{bottom:296.640900px;}
.yc05_c00002{bottom:296.643540px;}
.yc28_c00002{bottom:296.705190px;}
.y11c4_c00002{bottom:297.121845px;}
.y1ae2_c00002{bottom:297.480300px;}
.y17ee_c00002{bottom:297.599400px;}
.y179a_c00002{bottom:298.140000px;}
.ybd8_c00002{bottom:299.401695px;}
.y7de_c00002{bottom:299.758620px;}
.y52e_c00002{bottom:299.759220px;}
.y4ed_c00002{bottom:299.759700px;}
.y796_c00002{bottom:299.759820px;}
.y50f_c00002{bottom:299.818905px;}
.y7fd_c00002{bottom:299.819895px;}
.y54d_c00002{bottom:299.820480px;}
.y7b5_c00002{bottom:299.820510px;}
.y3ff_c00002{bottom:300.567000px;}
.ydef_c00002{bottom:300.778785px;}
.y1258_c00002{bottom:300.780630px;}
.yd7e_c00002{bottom:300.782430px;}
.yd9a_c00002{bottom:300.784200px;}
.ye16_c00002{bottom:300.839835px;}
.y1283_c00002{bottom:300.842580px;}
.y1b69_c00002{bottom:301.620000px;}
.y4af_c00002{bottom:301.645620px;}
.y1ae_c00002{bottom:301.647150px;}
.y1c6_c00002{bottom:301.647300px;}
.y125_c00002{bottom:301.648500px;}
.y179_c00002{bottom:301.649895px;}
.y143_c00002{bottom:301.650450px;}
.y4c3_c00002{bottom:301.765320px;}
.y425_c00002{bottom:301.766370px;}
.y1984_c00002{bottom:302.025450px;}
.y1232_c00002{bottom:302.040450px;}
.y14fe_c00002{bottom:302.044080px;}
.yce5_c00002{bottom:302.159700px;}
.yccc_c00002{bottom:302.159745px;}
.yd22_c00002{bottom:302.160210px;}
.y1017_c00002{bottom:302.161065px;}
.yd40_c00002{bottom:302.161215px;}
.y590_c00002{bottom:302.819100px;}
.y832_c00002{bottom:302.819700px;}
.y5ab_c00002{bottom:302.820150px;}
.y81e_c00002{bottom:302.820750px;}
.y880_c00002{bottom:302.821455px;}
.y8a9_c00002{bottom:302.823555px;}
.y604_c00002{bottom:302.827980px;}
.y631_c00002{bottom:302.829630px;}
.y341_c00002{bottom:303.510750px;}
.y38f_c00002{bottom:303.515025px;}
.ydc9_c00002{bottom:303.539730px;}
.y1352_c00002{bottom:303.781335px;}
.yf45_c00002{bottom:303.782010px;}
.y1533_c00002{bottom:303.782025px;}
.y1335_c00002{bottom:303.783000px;}
.y1377_c00002{bottom:303.783675px;}
.yf12_c00002{bottom:303.784200px;}
.yf28_c00002{bottom:303.785400px;}
.yf69_c00002{bottom:303.785490px;}
.y1399_c00002{bottom:303.788625px;}
.y104c_c00002{bottom:303.788940px;}
.y1656_c00002{bottom:303.789225px;}
.yf8a_c00002{bottom:303.789690px;}
.y7d0_c00002{bottom:304.089525px;}
.y7cd_c00002{bottom:304.091790px;}
.y13b1_c00002{bottom:304.440000px;}
.yd05_c00002{bottom:304.859655px;}
.y193f_c00002{bottom:304.919700px;}
.yc77_c00002{bottom:304.919715px;}
.yaf8_c00002{bottom:304.920315px;}
.ya99_c00002{bottom:304.920600px;}
.yb1b_c00002{bottom:304.921665px;}
.yc9a_c00002{bottom:304.923465px;}
.yb93_c00002{bottom:304.925115px;}
.y855_c00002{bottom:305.519040px;}
.y5dc_c00002{bottom:305.523435px;}
.y1ab_c00002{bottom:305.548350px;}
.y753_c00002{bottom:305.759850px;}
.y71d_c00002{bottom:305.760750px;}
.y973_c00002{bottom:305.762400px;}
.y9a8_c00002{bottom:305.764215px;}
.y9bf_c00002{bottom:305.809065px;}
.y769_c00002{bottom:305.819700px;}
.y73b_c00002{bottom:305.820750px;}
.y98e_c00002{bottom:305.823315px;}
.y360_c00002{bottom:306.214680px;}
.y1a5e_c00002{bottom:306.840300px;}
.y15fb_c00002{bottom:306.960000px;}
.y158f_c00002{bottom:306.962685px;}
.y14da_c00002{bottom:306.963030px;}
.y15a0_c00002{bottom:306.963150px;}
.y1731_c00002{bottom:306.965550px;}
.y15e0_c00002{bottom:307.019865px;}
.y1435_c00002{bottom:307.020165px;}
.y1200_c00002{bottom:307.021755px;}
.y145c_c00002{bottom:307.021965px;}
.yec0_c00002{bottom:307.022205px;}
.ye43_c00002{bottom:307.022700px;}
.y16e2_c00002{bottom:307.022715px;}
.y106a_c00002{bottom:307.022805px;}
.y110c_c00002{bottom:307.023405px;}
.yfe6_c00002{bottom:307.023555px;}
.y12e7_c00002{bottom:307.023615px;}
.y1097_c00002{bottom:307.023855px;}
.y10c6_c00002{bottom:307.024005px;}
.y161a_c00002{bottom:307.024215px;}
.yeec_c00002{bottom:307.024590px;}
.y112f_c00002{bottom:307.024755px;}
.y10f3_c00002{bottom:307.025055px;}
.ye61_c00002{bottom:307.025100px;}
.y16ae_c00002{bottom:307.025265px;}
.y13d8_c00002{bottom:307.025550px;}
.y1154_c00002{bottom:307.025955px;}
.y1314_c00002{bottom:307.026015px;}
.y1751_c00002{bottom:307.140000px;}
.y19af_c00002{bottom:307.499850px;}
.yaca_c00002{bottom:307.621215px;}
.y321_c00002{bottom:307.646940px;}
.y2b1_c00002{bottom:307.648980px;}
.y308_c00002{bottom:307.649025px;}
.y2c9_c00002{bottom:307.650000px;}
.y1515_c00002{bottom:307.682025px;}
.y102f_c00002{bottom:307.685640px;}
.y1635_c00002{bottom:307.685775px;}
.yaa_c00002{bottom:307.946400px;}
.ye5_c00002{bottom:307.947225px;}
.yc4_c00002{bottom:307.947330px;}
.y94_c00002{bottom:307.947750px;}
.y103_c00002{bottom:307.947975px;}
.y22b_c00002{bottom:308.072820px;}
.y1505_c00002{bottom:308.281380px;}
.yfbb_c00002{bottom:308.281500px;}
.y1405_c00002{bottom:308.281890px;}
.ye90_c00002{bottom:308.283900px;}
.y12b7_c00002{bottom:308.285205px;}
.y1a8a_c00002{bottom:308.820900px;}
.y8f4_c00002{bottom:308.880180px;}
.ya28_c00002{bottom:308.881200px;}
.y694_c00002{bottom:308.881245px;}
.y6c4_c00002{bottom:308.881575px;}
.y923_c00002{bottom:308.881710px;}
.y663_c00002{bottom:308.882850px;}
.y949_c00002{bottom:308.882910px;}
.y8d2_c00002{bottom:308.883000px;}
.y6f1_c00002{bottom:308.883525px;}
.y2e6_c00002{bottom:310.347900px;}
.y11c3_c00002{bottom:310.441965px;}
.y1ab3_c00002{bottom:310.619910px;}
.ybd7_c00002{bottom:312.361455px;}
.y17ed_c00002{bottom:313.799400px;}
.y4ae_c00002{bottom:314.965740px;}
.y5b_c00002{bottom:315.086085px;}
.y471_c00002{bottom:315.087135px;}
.y7dd_c00002{bottom:316.017870px;}
.y52d_c00002{bottom:316.018470px;}
.y4ec_c00002{bottom:316.018950px;}
.y795_c00002{bottom:316.019070px;}
.y7fc_c00002{bottom:316.019895px;}
.y54c_c00002{bottom:316.020480px;}
.y7b4_c00002{bottom:316.020510px;}
.y562_c00002{bottom:316.021230px;}
.y7d8_c00002{bottom:316.022460px;}
.y180b_c00002{bottom:316.500000px;}
.y20c_c00002{bottom:316.830900px;}
.y26f_c00002{bottom:316.832190px;}
.y3d7_c00002{bottom:316.832790px;}
.y249_c00002{bottom:316.833540px;}
.y459_c00002{bottom:316.833990px;}
.y48f_c00002{bottom:316.834590px;}
.y1b22_c00002{bottom:316.920000px;}
.ydee_c00002{bottom:317.039085px;}
.ye15_c00002{bottom:317.039835px;}
.y1257_c00002{bottom:317.040930px;}
.y1282_c00002{bottom:317.042580px;}
.yd7d_c00002{bottom:317.042730px;}
.yd99_c00002{bottom:317.044500px;}
.y9e7_c00002{bottom:317.280645px;}
.y816_c00002{bottom:317.282160px;}
.ya67_c00002{bottom:317.639280px;}
.ya4d_c00002{bottom:317.639580px;}
.yb6f_c00002{bottom:317.640480px;}
.ya0a_c00002{bottom:317.641800px;}
.y178_c00002{bottom:317.849895px;}
.y1b46_c00002{bottom:318.000000px;}
.y1f6_c00002{bottom:318.092925px;}
.y1231_c00002{bottom:318.301350px;}
.ye20_c00002{bottom:318.301500px;}
.yce4_c00002{bottom:318.359700px;}
.yccb_c00002{bottom:318.359745px;}
.yd21_c00002{bottom:318.360210px;}
.y1016_c00002{bottom:318.361065px;}
.yd3f_c00002{bottom:318.361215px;}
.yd56_c00002{bottom:318.363165px;}
.yc59_c00002{bottom:318.480180px;}
.y1983_c00002{bottom:318.585150px;}
.y50e_c00002{bottom:318.718905px;}
.y9fc_c00002{bottom:318.901560px;}
.y854_c00002{bottom:319.019040px;}
.y58f_c00002{bottom:319.019100px;}
.y831_c00002{bottom:319.019700px;}
.y5aa_c00002{bottom:319.020150px;}
.y81d_c00002{bottom:319.020750px;}
.y87f_c00002{bottom:319.021455px;}
.y8a8_c00002{bottom:319.023555px;}
.y603_c00002{bottom:319.027980px;}
.y630_c00002{bottom:319.029630px;}
.y1adf_c00002{bottom:319.080000px;}
.y124_c00002{bottom:319.108200px;}
.y22a_c00002{bottom:319.533765px;}
.y340_c00002{bottom:319.710750px;}
.y3b0_c00002{bottom:319.713375px;}
.y38e_c00002{bottom:319.713825px;}
.ydc8_c00002{bottom:319.739730px;}
.y1799_c00002{bottom:319.920000px;}
.yf44_c00002{bottom:319.982010px;}
.yf11_c00002{bottom:319.984200px;}
.yf27_c00002{bottom:319.985400px;}
.yf68_c00002{bottom:319.985490px;}
.y104b_c00002{bottom:319.988940px;}
.yf89_c00002{bottom:319.989690px;}
.ya27_c00002{bottom:320.340375px;}
.yac9_c00002{bottom:320.580975px;}
.y24f_c00002{bottom:320.732040px;}
.y35f_c00002{bottom:320.973270px;}
.yd04_c00002{bottom:321.059655px;}
.ybbb_c00002{bottom:321.120750px;}
.yc04_c00002{bottom:321.123390px;}
.yc27_c00002{bottom:321.124740px;}
.y1504_c00002{bottom:321.601500px;}
.y5db_c00002{bottom:321.722835px;}
.y9be_c00002{bottom:322.009065px;}
.y73a_c00002{bottom:322.019550px;}
.y768_c00002{bottom:322.019700px;}
.y71c_c00002{bottom:322.020000px;}
.y972_c00002{bottom:322.021650px;}
.y9a7_c00002{bottom:322.022865px;}
.y98d_c00002{bottom:322.023315px;}
.y15c4_c00002{bottom:323.160000px;}
.y154a_c00002{bottom:323.160540px;}
.y13af_c00002{bottom:323.165895px;}
.y1668_c00002{bottom:323.167140px;}
.y15df_c00002{bottom:323.219265px;}
.y1434_c00002{bottom:323.220165px;}
.y11ff_c00002{bottom:323.221755px;}
.y145b_c00002{bottom:323.221965px;}
.yebf_c00002{bottom:323.222205px;}
.ye42_c00002{bottom:323.222700px;}
.y16e1_c00002{bottom:323.222715px;}
.y1069_c00002{bottom:323.222805px;}
.yfe5_c00002{bottom:323.222955px;}
.y110b_c00002{bottom:323.223405px;}
.y12e6_c00002{bottom:323.223615px;}
.y1096_c00002{bottom:323.223855px;}
.y10c5_c00002{bottom:323.224005px;}
.y112e_c00002{bottom:323.224155px;}
.y1681_c00002{bottom:323.224215px;}
.yeeb_c00002{bottom:323.224590px;}
.y13d7_c00002{bottom:323.224950px;}
.y10f2_c00002{bottom:323.225055px;}
.ye60_c00002{bottom:323.225100px;}
.y16ad_c00002{bottom:323.225265px;}
.y1153_c00002{bottom:323.225955px;}
.y1313_c00002{bottom:323.226015px;}
.y1b68_c00002{bottom:323.400000px;}
.y11c2_c00002{bottom:323.761500px;}
.ybd6_c00002{bottom:323.821215px;}
.y2b0_c00002{bottom:323.848980px;}
.y307_c00002{bottom:323.849025px;}
.y2c8_c00002{bottom:323.850000px;}
.y102e_c00002{bottom:323.885640px;}
.y320_c00002{bottom:323.906640px;}
.y93_c00002{bottom:324.145950px;}
.ya9_c00002{bottom:324.146400px;}
.ye4_c00002{bottom:324.147225px;}
.y102_c00002{bottom:324.147975px;}
.y1404_c00002{bottom:324.481890px;}
.ye8f_c00002{bottom:324.483900px;}
.y12b6_c00002{bottom:324.485205px;}
.y11e5_c00002{bottom:324.485355px;}
.y8f3_c00002{bottom:325.080180px;}
.y662_c00002{bottom:325.081050px;}
.y8d1_c00002{bottom:325.081200px;}
.y693_c00002{bottom:325.081245px;}
.y6c3_c00002{bottom:325.081575px;}
.y922_c00002{bottom:325.081710px;}
.y948_c00002{bottom:325.082910px;}
.y6f0_c00002{bottom:325.083525px;}
.y1750_c00002{bottom:325.320000px;}
.yc3_c00002{bottom:325.407630px;}
.y2e5_c00002{bottom:326.607600px;}
.y193e_c00002{bottom:327.419700px;}
.y4c2_c00002{bottom:328.284870px;}
.y4ad_c00002{bottom:328.285860px;}
.y424_c00002{bottom:328.285920px;}
.y5a_c00002{bottom:328.405620px;}
.y470_c00002{bottom:328.406670px;}
.y1482_c00002{bottom:329.163315px;}
.yc76_c00002{bottom:329.339265px;}
.yaf7_c00002{bottom:329.339865px;}
.ya98_c00002{bottom:329.340150px;}
.yb1a_c00002{bottom:329.400915px;}
.yc99_c00002{bottom:329.403315px;}
.yb92_c00002{bottom:329.404965px;}
.y1ae1_c00002{bottom:329.520000px;}
.y17ec_c00002{bottom:329.999400px;}
.y1509_c00002{bottom:331.020000px;}
.yc58_c00002{bottom:331.800300px;}
.yac8_c00002{bottom:332.101095px;}
.y7dc_c00002{bottom:332.217870px;}
.y52c_c00002{bottom:332.218470px;}
.y7fb_c00002{bottom:332.218695px;}
.y50d_c00002{bottom:332.218905px;}
.y4eb_c00002{bottom:332.218950px;}
.y794_c00002{bottom:332.219070px;}
.y54b_c00002{bottom:332.219280px;}
.y7b3_c00002{bottom:332.219310px;}
.y20b_c00002{bottom:333.030900px;}
.y1f5_c00002{bottom:333.031395px;}
.y26e_c00002{bottom:333.032190px;}
.y3d6_c00002{bottom:333.032790px;}
.y458_c00002{bottom:333.033390px;}
.y248_c00002{bottom:333.033540px;}
.y229_c00002{bottom:333.033765px;}
.y48e_c00002{bottom:333.033990px;}
.yded_c00002{bottom:333.239085px;}
.ye14_c00002{bottom:333.239835px;}
.y1256_c00002{bottom:333.240930px;}
.y1281_c00002{bottom:333.242580px;}
.yd7c_c00002{bottom:333.242730px;}
.yd98_c00002{bottom:333.244500px;}
.y815_c00002{bottom:333.482160px;}
.ya4c_c00002{bottom:333.839580px;}
.y9fb_c00002{bottom:333.841800px;}
.ya66_c00002{bottom:333.898530px;}
.yb6e_c00002{bottom:333.899730px;}
.y1230_c00002{bottom:334.501350px;}
.ydc7_c00002{bottom:334.502430px;}
.ycca_c00002{bottom:334.559745px;}
.yd03_c00002{bottom:334.620000px;}
.y1add_c00002{bottom:335.100000px;}
.y1982_c00002{bottom:335.145450px;}
.y58e_c00002{bottom:335.219100px;}
.y830_c00002{bottom:335.219700px;}
.y5a9_c00002{bottom:335.220150px;}
.y81c_c00002{bottom:335.220750px;}
.y87e_c00002{bottom:335.220855px;}
.y602_c00002{bottom:335.227980px;}
.y8a7_c00002{bottom:335.283855px;}
.y62f_c00002{bottom:335.289930px;}
.y33f_c00002{bottom:335.910750px;}
.y3af_c00002{bottom:335.913375px;}
.y38d_c00002{bottom:335.913825px;}
.y180a_c00002{bottom:336.480000px;}
.ya26_c00002{bottom:336.601275px;}
.ybd5_c00002{bottom:336.780975px;}
.y35e_c00002{bottom:337.173270px;}
.y1da_c00002{bottom:337.225950px;}
.y739_c00002{bottom:337.679250px;}
.y146f_c00002{bottom:337.923750px;}
.y14a8_c00002{bottom:337.924845px;}
.y853_c00002{bottom:337.978740px;}
.y5da_c00002{bottom:337.982535px;}
.y9bd_c00002{bottom:338.209065px;}
.y971_c00002{bottom:338.221650px;}
.y9a6_c00002{bottom:338.222865px;}
.y98c_c00002{bottom:338.223315px;}
.y1b21_c00002{bottom:338.701500px;}
.y1062_c00002{bottom:339.364455px;}
.y11ad_c00002{bottom:339.365310px;}
.y1002_c00002{bottom:339.365385px;}
.y117c_c00002{bottom:339.365910px;}
.y10b5_c00002{bottom:339.366210px;}
.yfa1_c00002{bottom:339.366540px;}
.y15de_c00002{bottom:339.419265px;}
.y1433_c00002{bottom:339.420165px;}
.y16e0_c00002{bottom:339.421515px;}
.y11fe_c00002{bottom:339.421755px;}
.y145a_c00002{bottom:339.421965px;}
.yebe_c00002{bottom:339.422205px;}
.yfe4_c00002{bottom:339.422355px;}
.ye41_c00002{bottom:339.422700px;}
.y1068_c00002{bottom:339.422805px;}
.y110a_c00002{bottom:339.423405px;}
.y112d_c00002{bottom:339.423555px;}
.y12e5_c00002{bottom:339.423615px;}
.y1095_c00002{bottom:339.423855px;}
.y10c4_c00002{bottom:339.424005px;}
.y1680_c00002{bottom:339.424215px;}
.y13d6_c00002{bottom:339.424350px;}
.yeea_c00002{bottom:339.424590px;}
.y16ac_c00002{bottom:339.424665px;}
.y10f1_c00002{bottom:339.425055px;}
.ye5f_c00002{bottom:339.425100px;}
.y1152_c00002{bottom:339.425955px;}
.y1312_c00002{bottom:339.426015px;}
.y1b45_c00002{bottom:339.780000px;}
.y31f_c00002{bottom:340.106040px;}
.y306_c00002{bottom:340.108275px;}
.y2af_c00002{bottom:340.108680px;}
.y2c7_c00002{bottom:340.109250px;}
.ybb1_c00002{bottom:340.321305px;}
.y92_c00002{bottom:340.345950px;}
.ya8_c00002{bottom:340.346400px;}
.ye3_c00002{bottom:340.347225px;}
.y101_c00002{bottom:340.407675px;}
.yc2_c00002{bottom:340.409430px;}
.y1403_c00002{bottom:340.681890px;}
.y1481_c00002{bottom:340.683435px;}
.ye8e_c00002{bottom:340.683900px;}
.y12b5_c00002{bottom:340.685205px;}
.y8f2_c00002{bottom:341.280180px;}
.y661_c00002{bottom:341.281050px;}
.y8d0_c00002{bottom:341.281200px;}
.y692_c00002{bottom:341.281245px;}
.y6c2_c00002{bottom:341.281575px;}
.y921_c00002{bottom:341.281710px;}
.y947_c00002{bottom:341.282910px;}
.y6ef_c00002{bottom:341.283525px;}
.y4c1_c00002{bottom:341.604990px;}
.y4ac_c00002{bottom:341.605980px;}
.y423_c00002{bottom:341.606040px;}
.y1798_c00002{bottom:341.700000px;}
.y2e4_c00002{bottom:342.807600px;}
.y174f_c00002{bottom:343.500000px;}
.yc57_c00002{bottom:345.060060px;}
.yac7_c00002{bottom:345.060855px;}
.y1b67_c00002{bottom:345.180000px;}
.y1351_c00002{bottom:345.361785px;}
.ybba_c00002{bottom:345.600600px;}
.yc03_c00002{bottom:345.603240px;}
.yc26_c00002{bottom:345.603990px;}
.y1a2c_c00002{bottom:346.083000px;}
.y17eb_c00002{bottom:346.198200px;}
.y1a5d_c00002{bottom:346.260450px;}
.y752_c00002{bottom:346.440900px;}
.y71b_c00002{bottom:346.441950px;}
.y1a2b_c00002{bottom:347.163000px;}
.y1a89_c00002{bottom:347.880150px;}
.ybd4_c00002{bottom:348.301095px;}
.y7db_c00002{bottom:348.417870px;}
.y52b_c00002{bottom:348.418470px;}
.y7fa_c00002{bottom:348.418695px;}
.y4ea_c00002{bottom:348.418950px;}
.y793_c00002{bottom:348.419070px;}
.y54a_c00002{bottom:348.419280px;}
.y7b2_c00002{bottom:348.419310px;}
.y9e6_c00002{bottom:348.419745px;}
.y814_c00002{bottom:348.420045px;}
.y561_c00002{bottom:348.421230px;}
.y738_c00002{bottom:349.199370px;}
.y1f4_c00002{bottom:349.230795px;}
.y20a_c00002{bottom:349.230900px;}
.y247_c00002{bottom:349.233540px;}
.y26d_c00002{bottom:349.291440px;}
.y3d5_c00002{bottom:349.292040px;}
.y228_c00002{bottom:349.293015px;}
.y457_c00002{bottom:349.293090px;}
.y48d_c00002{bottom:349.293690px;}
.ydec_c00002{bottom:349.439085px;}
.ye13_c00002{bottom:349.439835px;}
.y1255_c00002{bottom:349.440930px;}
.y1280_c00002{bottom:349.441980px;}
.yd7b_c00002{bottom:349.442730px;}
.yd97_c00002{bottom:349.444500px;}
.ya65_c00002{bottom:350.098530px;}
.yb6d_c00002{bottom:350.099730px;}
.ya4b_c00002{bottom:350.099880px;}
.y9fa_c00002{bottom:350.102100px;}
.y19c3_c00002{bottom:350.519520px;}
.y1ab2_c00002{bottom:350.581410px;}
.ydc6_c00002{bottom:350.702430px;}
.y1591_c00002{bottom:350.704530px;}
.yd20_c00002{bottom:350.819460px;}
.yce3_c00002{bottom:350.820000px;}
.ycc9_c00002{bottom:350.820045px;}
.y1015_c00002{bottom:350.820315px;}
.yd3e_c00002{bottom:350.820465px;}
.y50c_c00002{bottom:351.179205px;}
.y58d_c00002{bottom:351.478800px;}
.y5a8_c00002{bottom:351.479400px;}
.y81b_c00002{bottom:351.480450px;}
.y87d_c00002{bottom:351.480555px;}
.y5d9_c00002{bottom:351.482535px;}
.y8a6_c00002{bottom:351.483855px;}
.y601_c00002{bottom:351.487680px;}
.y62e_c00002{bottom:351.489930px;}
.yd02_c00002{bottom:352.080300px;}
.y122f_c00002{bottom:352.143300px;}
.y33e_c00002{bottom:352.170450px;}
.y3ae_c00002{bottom:352.172625px;}
.y38c_c00002{bottom:352.173075px;}
.y9e8_c00002{bottom:352.745175px;}
.ya25_c00002{bottom:352.801275px;}
.y35d_c00002{bottom:353.432970px;}
.ybb0_c00002{bottom:353.641425px;}
.yc75_c00002{bottom:353.819115px;}
.yaf6_c00002{bottom:353.819715px;}
.ya97_c00002{bottom:353.820000px;}
.yb19_c00002{bottom:353.820465px;}
.yc98_c00002{bottom:353.824065px;}
.yb91_c00002{bottom:353.825715px;}
.y852_c00002{bottom:354.178740px;}
.y1334_c00002{bottom:354.183000px;}
.y1376_c00002{bottom:354.183675px;}
.y14a7_c00002{bottom:354.185145px;}
.y14c2_c00002{bottom:354.185895px;}
.y1719_c00002{bottom:354.186795px;}
.y1578_c00002{bottom:354.187395px;}
.y9bc_c00002{bottom:354.409065px;}
.y970_c00002{bottom:354.421650px;}
.y9a5_c00002{bottom:354.422865px;}
.y98b_c00002{bottom:354.423315px;}
.y59_c00002{bottom:354.865920px;}
.y422_c00002{bottom:354.866970px;}
.yb55_c00002{bottom:355.319820px;}
.y1480_c00002{bottom:355.443780px;}
.y1432_c00002{bottom:355.620165px;}
.yebd_c00002{bottom:355.622205px;}
.ye40_c00002{bottom:355.622700px;}
.y1067_c00002{bottom:355.622805px;}
.y1109_c00002{bottom:355.623405px;}
.y12e4_c00002{bottom:355.623615px;}
.y13d5_c00002{bottom:355.623750px;}
.y10c3_c00002{bottom:355.624005px;}
.y167f_c00002{bottom:355.624215px;}
.ye5e_c00002{bottom:355.625100px;}
.y15dd_c00002{bottom:355.680165px;}
.y16df_c00002{bottom:355.681815px;}
.y11fd_c00002{bottom:355.682055px;}
.y1459_c00002{bottom:355.682265px;}
.yfe3_c00002{bottom:355.682655px;}
.y112c_c00002{bottom:355.683855px;}
.y1094_c00002{bottom:355.684155px;}
.y1619_c00002{bottom:355.684515px;}
.yee9_c00002{bottom:355.684890px;}
.y16ab_c00002{bottom:355.684965px;}
.y10f0_c00002{bottom:355.685355px;}
.y1151_c00002{bottom:355.686255px;}
.y1311_c00002{bottom:355.686315px;}
.y31e_c00002{bottom:356.306040px;}
.y305_c00002{bottom:356.308275px;}
.y2ae_c00002{bottom:356.308680px;}
.y2c6_c00002{bottom:356.309250px;}
.y1809_c00002{bottom:356.460000px;}
.yac6_c00002{bottom:356.520615px;}
.y100_c00002{bottom:356.607675px;}
.y91_c00002{bottom:356.608050px;}
.ya7_c00002{bottom:356.608500px;}
.ye2_c00002{bottom:356.609325px;}
.yc1_c00002{bottom:356.609430px;}
.y1350_c00002{bottom:356.881320px;}
.y691_c00002{bottom:356.940945px;}
.y1402_c00002{bottom:356.942190px;}
.ye8d_c00002{bottom:356.943150px;}
.y12b4_c00002{bottom:356.944455px;}
.y8cf_c00002{bottom:357.481200px;}
.y920_c00002{bottom:357.481710px;}
.y8f1_c00002{bottom:357.540480px;}
.y946_c00002{bottom:357.542160px;}
.yc56_c00002{bottom:358.380180px;}
.y2e3_c00002{bottom:359.007600px;}
.y177_c00002{bottom:359.429745px;}
.y1870_c00002{bottom:360.000000px;}
.y1adc_c00002{bottom:360.121500px;}
.y1b20_c00002{bottom:360.481500px;}
.y4ab_c00002{bottom:361.045680px;}
.ybd3_c00002{bottom:361.260855px;}
.y1b44_c00002{bottom:361.558500px;}
.yf43_c00002{bottom:361.622760px;}
.y174e_c00002{bottom:361.681500px;}
.y17ea_c00002{bottom:362.398200px;}
.y737_c00002{bottom:362.699370px;}
.y751_c00002{bottom:362.699550px;}
.y71a_c00002{bottom:362.701200px;}
.y1a2a_c00002{bottom:363.183000px;}
.y1797_c00002{bottom:363.481500px;}
.y19c2_c00002{bottom:363.839640px;}
.y1a29_c00002{bottom:364.263000px;}
.y7da_c00002{bottom:364.678170px;}
.y52a_c00002{bottom:364.678770px;}
.y7f9_c00002{bottom:364.678995px;}
.y4e9_c00002{bottom:364.679250px;}
.y813_c00002{bottom:364.679295px;}
.y792_c00002{bottom:364.679370px;}
.y9e5_c00002{bottom:364.679445px;}
.y549_c00002{bottom:364.679580px;}
.y7b1_c00002{bottom:364.679610px;}
.y2a1_c00002{bottom:365.431125px;}
.y1f3_c00002{bottom:365.490495px;}
.y209_c00002{bottom:365.490600px;}
.y26c_c00002{bottom:365.491440px;}
.y3d4_c00002{bottom:365.492040px;}
.y246_c00002{bottom:365.492790px;}
.y227_c00002{bottom:365.493015px;}
.y456_c00002{bottom:365.493090px;}
.y48c_c00002{bottom:365.493690px;}
.ydeb_c00002{bottom:365.639085px;}
.y1254_c00002{bottom:365.640930px;}
.yd7a_c00002{bottom:365.642730px;}
.yd96_c00002{bottom:365.644500px;}
.ye12_c00002{bottom:365.698485px;}
.y127f_c00002{bottom:365.701230px;}
.y122e_c00002{bottom:365.702475px;}
.y6c1_c00002{bottom:365.761425px;}
.y660_c00002{bottom:365.762700px;}
.ya64_c00002{bottom:366.298530px;}
.yb6c_c00002{bottom:366.299730px;}
.ya4a_c00002{bottom:366.299880px;}
.y9f9_c00002{bottom:366.302100px;}
.y1b66_c00002{bottom:366.958500px;}
.ybaf_c00002{bottom:366.960960px;}
.ydc5_c00002{bottom:366.961680px;}
.y1298_c00002{bottom:366.964230px;}
.yd1f_c00002{bottom:367.019460px;}
.yd01_c00002{bottom:367.019955px;}
.yce2_c00002{bottom:367.020000px;}
.ycc8_c00002{bottom:367.020045px;}
.y1014_c00002{bottom:367.020315px;}
.yd3d_c00002{bottom:367.020465px;}
.y50b_c00002{bottom:367.379205px;}
.ya24_c00002{bottom:367.561035px;}
.y58c_c00002{bottom:367.678800px;}
.y5a7_c00002{bottom:367.679400px;}
.y81a_c00002{bottom:367.680450px;}
.y87c_c00002{bottom:367.680555px;}
.y8a5_c00002{bottom:367.683855px;}
.y600_c00002{bottom:367.687680px;}
.y62d_c00002{bottom:367.689930px;}
.y58_c00002{bottom:368.185455px;}
.y421_c00002{bottom:368.186505px;}
.y1c5_c00002{bottom:368.247300px;}
.y19a_c00002{bottom:368.248650px;}
.y142_c00002{bottom:368.250450px;}
.yd55_c00002{bottom:368.280315px;}
.y33d_c00002{bottom:368.370450px;}
.y3ad_c00002{bottom:368.370825px;}
.y38b_c00002{bottom:368.373075px;}
.y690_c00002{bottom:368.461065px;}
.yb54_c00002{bottom:368.639940px;}
.yac5_c00002{bottom:369.480375px;}
.y123_c00002{bottom:369.508200px;}
.y35c_c00002{bottom:369.632970px;}
.ybb9_c00002{bottom:370.020150px;}
.yc02_c00002{bottom:370.022790px;}
.yc25_c00002{bottom:370.023540px;}
.y98a_c00002{bottom:370.083015px;}
.y851_c00002{bottom:370.378740px;}
.y1532_c00002{bottom:370.382025px;}
.y5d8_c00002{bottom:370.382535px;}
.y1333_c00002{bottom:370.383000px;}
.y1375_c00002{bottom:370.383675px;}
.yf10_c00002{bottom:370.384200px;}
.y14a6_c00002{bottom:370.385145px;}
.yf26_c00002{bottom:370.385400px;}
.yf67_c00002{bottom:370.385490px;}
.y14c1_c00002{bottom:370.385895px;}
.y1718_c00002{bottom:370.386795px;}
.y1577_c00002{bottom:370.387395px;}
.y1655_c00002{bottom:370.388625px;}
.y1398_c00002{bottom:370.389225px;}
.y194f_c00002{bottom:370.441380px;}
.y176_c00002{bottom:370.949865px;}
.y1979_c00002{bottom:371.400000px;}
.y134f_c00002{bottom:371.641665px;}
.y147f_c00002{bottom:371.643780px;}
.y15dc_c00002{bottom:371.878365px;}
.y1431_c00002{bottom:371.879415px;}
.y16de_c00002{bottom:371.880615px;}
.yebc_c00002{bottom:371.880855px;}
.y1066_c00002{bottom:371.881455px;}
.yfe2_c00002{bottom:371.882055px;}
.y12e3_c00002{bottom:371.882265px;}
.y10c2_c00002{bottom:371.882655px;}
.y1618_c00002{bottom:371.882715px;}
.y167e_c00002{bottom:371.882865px;}
.y1093_c00002{bottom:371.882955px;}
.y112b_c00002{bottom:371.883255px;}
.y13d4_c00002{bottom:371.883450px;}
.ye3f_c00002{bottom:371.883600px;}
.y16aa_c00002{bottom:371.883765px;}
.y10ef_c00002{bottom:371.884155px;}
.y1310_c00002{bottom:371.884515px;}
.yee8_c00002{bottom:371.884890px;}
.y1150_c00002{bottom:371.885055px;}
.ye5d_c00002{bottom:371.886000px;}
.y1b3_c00002{bottom:372.144900px;}
.y31d_c00002{bottom:372.506040px;}
.y304_c00002{bottom:372.508275px;}
.y2ad_c00002{bottom:372.508680px;}
.y2c5_c00002{bottom:372.509250px;}
.ybd2_c00002{bottom:372.720615px;}
.yff_c00002{bottom:372.807675px;}
.y90_c00002{bottom:372.808050px;}
.ya6_c00002{bottom:372.808500px;}
.ye1_c00002{bottom:372.809325px;}
.yc0_c00002{bottom:372.809430px;}
.yf42_c00002{bottom:373.081935px;}
.y1401_c00002{bottom:373.142190px;}
.ye8c_c00002{bottom:373.143150px;}
.y12b3_c00002{bottom:373.144455px;}
.y11e4_c00002{bottom:373.145655px;}
.y8f0_c00002{bottom:373.740480px;}
.y8ce_c00002{bottom:373.741500px;}
.y91f_c00002{bottom:373.742010px;}
.y945_c00002{bottom:373.742160px;}
.y4aa_c00002{bottom:374.365800px;}
.y2e2_c00002{bottom:375.207600px;}
.y1808_c00002{bottom:376.441500px;}
.y1a5c_c00002{bottom:376.501800px;}
.y19c1_c00002{bottom:377.159760px;}
.y1a88_c00002{bottom:377.941650px;}
.yc74_c00002{bottom:378.239865px;}
.yaf5_c00002{bottom:378.240465px;}
.ya96_c00002{bottom:378.240750px;}
.y17e9_c00002{bottom:378.598200px;}
.y2a0_c00002{bottom:378.751245px;}
.y736_c00002{bottom:378.899370px;}
.y750_c00002{bottom:378.899550px;}
.y719_c00002{bottom:378.901200px;}
.y96f_c00002{bottom:378.901500px;}
.y9a4_c00002{bottom:378.903315px;}
.y174d_c00002{bottom:379.861500px;}
.ybae_c00002{bottom:380.281080px;}
.y1a28_c00002{bottom:380.283000px;}
.y1ab1_c00002{bottom:380.641800px;}
.y7d9_c00002{bottom:380.878170px;}
.y529_c00002{bottom:380.878770px;}
.y7f8_c00002{bottom:380.878995px;}
.y4e8_c00002{bottom:380.879250px;}
.y791_c00002{bottom:380.879370px;}
.y548_c00002{bottom:380.879580px;}
.y7b0_c00002{bottom:380.879610px;}
.yac4_c00002{bottom:381.000495px;}
.y1a27_c00002{bottom:381.363000px;}
.y57_c00002{bottom:381.505575px;}
.y46f_c00002{bottom:381.506625px;}
.y989_c00002{bottom:381.603135px;}
.y1f2_c00002{bottom:381.690495px;}
.y208_c00002{bottom:381.690600px;}
.y26b_c00002{bottom:381.691440px;}
.y3d3_c00002{bottom:381.692040px;}
.y245_c00002{bottom:381.692790px;}
.y226_c00002{bottom:381.693015px;}
.y455_c00002{bottom:381.693090px;}
.y48b_c00002{bottom:381.693690px;}
.ydea_c00002{bottom:381.898335px;}
.ye11_c00002{bottom:381.898485px;}
.y1253_c00002{bottom:381.900180px;}
.y127e_c00002{bottom:381.901230px;}
.yd79_c00002{bottom:381.901980px;}
.yd95_c00002{bottom:381.903750px;}
.yb53_c00002{bottom:381.960060px;}
.y6c0_c00002{bottom:381.961425px;}
.y65f_c00002{bottom:381.962700px;}
.y6ee_c00002{bottom:381.963375px;}
.y812_c00002{bottom:382.138995px;}
.y9e4_c00002{bottom:382.139145px;}
.y560_c00002{bottom:382.139580px;}
.y7d4_c00002{bottom:382.139610px;}
.y7c9_c00002{bottom:382.139760px;}
.y1b1f_c00002{bottom:382.261500px;}
.ya63_c00002{bottom:382.498530px;}
.yb6b_c00002{bottom:382.499730px;}
.ya49_c00002{bottom:382.499880px;}
.y9f8_c00002{bottom:382.502100px;}
.y1003_c00002{bottom:383.160750px;}
.y122d_c00002{bottom:383.162775px;}
.y1297_c00002{bottom:383.164230px;}
.yd1e_c00002{bottom:383.219460px;}
.yd00_c00002{bottom:383.219955px;}
.yce1_c00002{bottom:383.220000px;}
.y1013_c00002{bottom:383.220315px;}
.yd3c_c00002{bottom:383.220465px;}
.y68f_c00002{bottom:383.220825px;}
.y1b43_c00002{bottom:383.338500px;}
.y50a_c00002{bottom:383.579205px;}
.y194e_c00002{bottom:383.761500px;}
.y58b_c00002{bottom:383.878800px;}
.y5a6_c00002{bottom:383.879400px;}
.y819_c00002{bottom:383.880450px;}
.y87b_c00002{bottom:383.880555px;}
.y8a4_c00002{bottom:383.883855px;}
.y5ff_c00002{bottom:383.887080px;}
.y62c_c00002{bottom:383.889330px;}
.y175_c00002{bottom:383.910210px;}
.y186f_c00002{bottom:383.999509px;}
.ycc7_c00002{bottom:384.480345px;}
.y33c_c00002{bottom:384.570450px;}
.y3ac_c00002{bottom:384.570825px;}
.y38a_c00002{bottom:384.573075px;}
.ydc4_c00002{bottom:384.602430px;}
.y1978_c00002{bottom:384.719403px;}
.yc55_c00002{bottom:385.019880px;}
.y1796_c00002{bottom:385.261500px;}
.ya23_c00002{bottom:385.263435px;}
.ybd1_c00002{bottom:385.680375px;}
.y35b_c00002{bottom:385.832970px;}
.y850_c00002{bottom:386.578740px;}
.y1531_c00002{bottom:386.582025px;}
.y5d7_c00002{bottom:386.582535px;}
.y1332_c00002{bottom:386.583000px;}
.y1374_c00002{bottom:386.583675px;}
.yf0f_c00002{bottom:386.584200px;}
.y14a5_c00002{bottom:386.585145px;}
.y14c0_c00002{bottom:386.585295px;}
.yf25_c00002{bottom:386.585400px;}
.yf66_c00002{bottom:386.585490px;}
.y1717_c00002{bottom:386.586795px;}
.y1576_c00002{bottom:386.587395px;}
.y1654_c00002{bottom:386.588625px;}
.y104a_c00002{bottom:386.588940px;}
.y1397_c00002{bottom:386.589225px;}
.yf88_c00002{bottom:386.589690px;}
.yd34_c00002{bottom:387.119715px;}
.y4c0_c00002{bottom:387.685455px;}
.y420_c00002{bottom:387.686505px;}
.y134e_c00002{bottom:387.841665px;}
.yf41_c00002{bottom:387.842280px;}
.y147e_c00002{bottom:387.843780px;}
.y15db_c00002{bottom:388.078365px;}
.y1430_c00002{bottom:388.079415px;}
.y16dd_c00002{bottom:388.080615px;}
.yebb_c00002{bottom:388.080855px;}
.y1065_c00002{bottom:388.081455px;}
.yfe1_c00002{bottom:388.082055px;}
.y12e2_c00002{bottom:388.082265px;}
.y10c1_c00002{bottom:388.082655px;}
.y1617_c00002{bottom:388.082715px;}
.y167d_c00002{bottom:388.082865px;}
.y1092_c00002{bottom:388.082955px;}
.y112a_c00002{bottom:388.083255px;}
.y13d3_c00002{bottom:388.083450px;}
.ye3e_c00002{bottom:388.083600px;}
.y16a9_c00002{bottom:388.083765px;}
.y10ee_c00002{bottom:388.084155px;}
.y130f_c00002{bottom:388.084515px;}
.yee7_c00002{bottom:388.084890px;}
.y114f_c00002{bottom:388.085055px;}
.ye5c_c00002{bottom:388.086000px;}
.y18e8_c00002{bottom:388.260333px;}
.y303_c00002{bottom:388.708275px;}
.y2ac_c00002{bottom:388.708680px;}
.y2c4_c00002{bottom:388.709250px;}
.y1b65_c00002{bottom:388.738500px;}
.y31c_c00002{bottom:388.765740px;}
.yfe_c00002{bottom:389.007675px;}
.y8f_c00002{bottom:389.008050px;}
.ya5_c00002{bottom:389.008500px;}
.ye0_c00002{bottom:389.009325px;}
.ybf_c00002{bottom:389.009430px;}
.y1400_c00002{bottom:389.342190px;}
.ye8b_c00002{bottom:389.343150px;}
.y12b2_c00002{bottom:389.344455px;}
.y11e3_c00002{bottom:389.345655px;}
.y8ef_c00002{bottom:389.940480px;}
.y8cd_c00002{bottom:389.941500px;}
.y91e_c00002{bottom:389.942010px;}
.y944_c00002{bottom:389.942160px;}
.y19c0_c00002{bottom:390.479880px;}
.y2e1_c00002{bottom:391.467300px;}
.y29f_c00002{bottom:392.071365px;}
.y199_c00002{bottom:392.670000px;}
.y141_c00002{bottom:392.671800px;}
.y1c4_c00002{bottom:392.726550px;}
.y122_c00002{bottom:393.929550px;}
.yc73_c00002{bottom:394.499115px;}
.yaf4_c00002{bottom:394.499715px;}
.ya95_c00002{bottom:394.500000px;}
.yb18_c00002{bottom:394.500315px;}
.yc01_c00002{bottom:394.502640px;}
.yc97_c00002{bottom:394.504515px;}
.yb90_c00002{bottom:394.506165px;}
.y17e8_c00002{bottom:394.798200px;}
.y56_c00002{bottom:394.825695px;}
.y46e_c00002{bottom:394.826745px;}
.y1a5b_c00002{bottom:394.861500px;}
.y9bb_c00002{bottom:395.088915px;}
.y735_c00002{bottom:395.099370px;}
.y74f_c00002{bottom:395.099550px;}
.y718_c00002{bottom:395.101200px;}
.y96e_c00002{bottom:395.101500px;}
.y988_c00002{bottom:395.103135px;}
.y9a3_c00002{bottom:395.103315px;}
.yb52_c00002{bottom:395.280180px;}
.y1a25_c00002{bottom:395.403000px;}
.y174_c00002{bottom:395.428575px;}
.yac3_c00002{bottom:395.758500px;}
.y14ed_c00002{bottom:396.000000px;}
.y1a87_c00002{bottom:396.121500px;}
.y1807_c00002{bottom:396.421500px;}
.y1b2_c00002{bottom:396.624750px;}
.y528_c00002{bottom:397.078770px;}
.y7f7_c00002{bottom:397.078995px;}
.y4e7_c00002{bottom:397.079250px;}
.y790_c00002{bottom:397.079370px;}
.y547_c00002{bottom:397.079580px;}
.y7af_c00002{bottom:397.079610px;}
.y194d_c00002{bottom:397.081620px;}
.ybd0_c00002{bottom:397.200495px;}
.y1a26_c00002{bottom:397.563000px;}
.y1f1_c00002{bottom:397.890495px;}
.y207_c00002{bottom:397.890600px;}
.y26a_c00002{bottom:397.891440px;}
.y3d2_c00002{bottom:397.892040px;}
.y244_c00002{bottom:397.892790px;}
.y225_c00002{bottom:397.893015px;}
.y454_c00002{bottom:397.893090px;}
.y48a_c00002{bottom:397.893690px;}
.y174c_c00002{bottom:398.041500px;}
.yde9_c00002{bottom:398.098335px;}
.ye10_c00002{bottom:398.098485px;}
.y1252_c00002{bottom:398.100180px;}
.y127d_c00002{bottom:398.101230px;}
.y1296_c00002{bottom:398.101530px;}
.yd78_c00002{bottom:398.101980px;}
.ydc3_c00002{bottom:398.102430px;}
.yd94_c00002{bottom:398.103750px;}
.y6bf_c00002{bottom:398.161425px;}
.y65e_c00002{bottom:398.161500px;}
.y6ed_c00002{bottom:398.163375px;}
.y811_c00002{bottom:398.338995px;}
.y9e3_c00002{bottom:398.339145px;}
.yc54_c00002{bottom:398.340000px;}
.y1977_c00002{bottom:398.580333px;}
.ya62_c00002{bottom:398.758830px;}
.yb6a_c00002{bottom:398.760030px;}
.ya48_c00002{bottom:398.760180px;}
.y9f7_c00002{bottom:398.762400px;}
.ycff_c00002{bottom:398.880255px;}
.y1ab0_c00002{bottom:399.181500px;}
.ye1f_c00002{bottom:399.360750px;}
.y68e_c00002{bottom:399.420825px;}
.y509_c00002{bottom:399.779205px;}
.y58a_c00002{bottom:400.078800px;}
.y5a5_c00002{bottom:400.079400px;}
.y818_c00002{bottom:400.080450px;}
.y87a_c00002{bottom:400.080555px;}
.y5fe_c00002{bottom:400.087080px;}
.y84f_c00002{bottom:400.139085px;}
.y8a3_c00002{bottom:400.144155px;}
.y62b_c00002{bottom:400.149030px;}
.y1782_c00002{bottom:400.251450px;}
.y33b_c00002{bottom:400.770450px;}
.y389_c00002{bottom:400.773075px;}
.y3ab_c00002{bottom:400.830075px;}
.y4bf_c00002{bottom:401.005575px;}
.y4a9_c00002{bottom:401.006100px;}
.y41f_c00002{bottom:401.006625px;}
.ya22_c00002{bottom:401.463435px;}
.y480_c00002{bottom:401.793990px;}
.y35a_c00002{bottom:402.032970px;}
.y1331_c00002{bottom:402.783000px;}
.y1373_c00002{bottom:402.783675px;}
.yf0e_c00002{bottom:402.784200px;}
.y14a4_c00002{bottom:402.785145px;}
.yf24_c00002{bottom:402.785400px;}
.yf65_c00002{bottom:402.785490px;}
.y1530_c00002{bottom:402.841725px;}
.y5d6_c00002{bottom:402.842835px;}
.y14bf_c00002{bottom:402.844995px;}
.y1716_c00002{bottom:402.846045px;}
.y1575_c00002{bottom:402.846645px;}
.y1653_c00002{bottom:402.848325px;}
.y1396_c00002{bottom:402.848475px;}
.y1049_c00002{bottom:402.849240px;}
.yf87_c00002{bottom:402.849990px;}
.y19bf_c00002{bottom:403.800000px;}
.y134d_c00002{bottom:404.041665px;}
.yf40_c00002{bottom:404.042280px;}
.y1b1e_c00002{bottom:404.043000px;}
.y147d_c00002{bottom:404.043780px;}
.y15da_c00002{bottom:404.278365px;}
.y142f_c00002{bottom:404.279415px;}
.y1458_c00002{bottom:404.280465px;}
.y16dc_c00002{bottom:404.280615px;}
.yeba_c00002{bottom:404.280855px;}
.yfe0_c00002{bottom:404.281455px;}
.y1108_c00002{bottom:404.282055px;}
.y12e1_c00002{bottom:404.282265px;}
.y10c0_c00002{bottom:404.282655px;}
.y1616_c00002{bottom:404.282715px;}
.y167c_c00002{bottom:404.282865px;}
.y1091_c00002{bottom:404.282955px;}
.y13d2_c00002{bottom:404.283450px;}
.ye3d_c00002{bottom:404.283600px;}
.y16a8_c00002{bottom:404.283765px;}
.y10ed_c00002{bottom:404.284155px;}
.y130e_c00002{bottom:404.284515px;}
.yee6_c00002{bottom:404.284890px;}
.y114e_c00002{bottom:404.285055px;}
.ye5b_c00002{bottom:404.286000px;}
.y18e7_c00002{bottom:404.820633px;}
.y2e0_c00002{bottom:404.967300px;}
.y2ab_c00002{bottom:404.967330px;}
.y186e_c00002{bottom:404.999509px;}
.y1b42_c00002{bottom:405.118500px;}
.y8e_c00002{bottom:405.208050px;}
.ya4_c00002{bottom:405.208500px;}
.ydf_c00002{bottom:405.209325px;}
.yfd_c00002{bottom:405.267375px;}
.ybe_c00002{bottom:405.268680px;}
.y3fe_c00002{bottom:405.388740px;}
.y29e_c00002{bottom:405.391485px;}
.y13ff_c00002{bottom:405.542190px;}
.ye8a_c00002{bottom:405.543150px;}
.y12b1_c00002{bottom:405.544455px;}
.y1735_c00002{bottom:405.546165px;}
.y8ee_c00002{bottom:405.600780px;}
.ybad_c00002{bottom:406.921380px;}
.y1795_c00002{bottom:407.041500px;}
.yd1d_c00002{bottom:407.699310px;}
.y1012_c00002{bottom:407.700165px;}
.yd3b_c00002{bottom:407.700315px;}
.ycc6_c00002{bottom:407.700495px;}
.y173_c00002{bottom:408.388335px;}
.y15b0_c00002{bottom:409.320000px;}
.ycfe_c00002{bottom:410.400375px;}
.y194c_c00002{bottom:410.401740px;}
.y1b64_c00002{bottom:410.518500px;}
.y1aff_c00002{bottom:410.523000px;}
.yc72_c00002{bottom:410.699115px;}
.yaf3_c00002{bottom:410.699715px;}
.ya94_c00002{bottom:410.700000px;}
.yb17_c00002{bottom:410.700315px;}
.yc00_c00002{bottom:410.702640px;}
.yc24_c00002{bottom:410.703390px;}
.yc96_c00002{bottom:410.704515px;}
.yb8f_c00002{bottom:410.706165px;}
.y17e7_c00002{bottom:410.998200px;}
.y74e_c00002{bottom:411.299550px;}
.y717_c00002{bottom:411.301200px;}
.y96d_c00002{bottom:411.301500px;}
.y9a2_c00002{bottom:411.303315px;}
.y9ba_c00002{bottom:411.348165px;}
.y767_c00002{bottom:411.358800px;}
.y734_c00002{bottom:411.359670px;}
.y987_c00002{bottom:411.363435px;}
.yd33_c00002{bottom:411.598365px;}
.yac2_c00002{bottom:411.958500px;}
.y527_c00002{bottom:413.278770px;}
.y4e6_c00002{bottom:413.279250px;}
.y78f_c00002{bottom:413.279370px;}
.y7f6_c00002{bottom:413.338695px;}
.y810_c00002{bottom:413.338995px;}
.y9e2_c00002{bottom:413.339145px;}
.y546_c00002{bottom:413.339880px;}
.y7ae_c00002{bottom:413.339910px;}
.y1f0_c00002{bottom:414.090495px;}
.y206_c00002{bottom:414.090600px;}
.y243_c00002{bottom:414.092790px;}
.y224_c00002{bottom:414.152265px;}
.y269_c00002{bottom:414.153540px;}
.y3d1_c00002{bottom:414.154140px;}
.y453_c00002{bottom:414.155190px;}
.yde8_c00002{bottom:414.298335px;}
.ye0f_c00002{bottom:414.298485px;}
.ye1e_c00002{bottom:414.298635px;}
.y1251_c00002{bottom:414.300180px;}
.y127c_c00002{bottom:414.301230px;}
.yd77_c00002{bottom:414.301980px;}
.ydc2_c00002{bottom:414.302430px;}
.yd93_c00002{bottom:414.303750px;}
.y55_c00002{bottom:414.325695px;}
.y4a8_c00002{bottom:414.326220px;}
.y46d_c00002{bottom:414.326745px;}
.y6be_c00002{bottom:414.421725px;}
.y65d_c00002{bottom:414.421800px;}
.y91d_c00002{bottom:414.421860px;}
.y8cc_c00002{bottom:414.421950px;}
.y6ec_c00002{bottom:414.422625px;}
.ya61_c00002{bottom:414.958830px;}
.yb69_c00002{bottom:414.959430px;}
.ya47_c00002{bottom:414.960180px;}
.y9f6_c00002{bottom:414.962400px;}
.y1a5a_c00002{bottom:415.561500px;}
.y68d_c00002{bottom:415.681125px;}
.y508_c00002{bottom:416.039505px;}
.y174b_c00002{bottom:416.221500px;}
.y589_c00002{bottom:416.339700px;}
.y879_c00002{bottom:416.340255px;}
.y8a2_c00002{bottom:416.344155px;}
.y5fd_c00002{bottom:416.347380px;}
.y62a_c00002{bottom:416.349030px;}
.y1806_c00002{bottom:416.401500px;}
.y1a86_c00002{bottom:416.461500px;}
.y3aa_c00002{bottom:417.030075px;}
.y33a_c00002{bottom:417.030150px;}
.y388_c00002{bottom:417.032775px;}
.y8ed_c00002{bottom:417.120315px;}
.y1c3_c00002{bottom:417.146100px;}
.y121_c00002{bottom:417.149700px;}
.y198_c00002{bottom:417.149850px;}
.y140_c00002{bottom:417.151650px;}
.ya21_c00002{bottom:417.663435px;}
.y359_c00002{bottom:418.292670px;}
.y3fd_c00002{bottom:418.708860px;}
.y29d_c00002{bottom:418.711605px;}
.y19ae_c00002{bottom:418.743000px;}
.y1781_c00002{bottom:418.791150px;}
.y84e_c00002{bottom:419.039685px;}
.y5d5_c00002{bottom:419.041635px;}
.y152f_c00002{bottom:419.041725px;}
.y1372_c00002{bottom:419.042925px;}
.y1330_c00002{bottom:419.043300px;}
.y14a3_c00002{bottom:419.044395px;}
.yf0d_c00002{bottom:419.044500px;}
.yf64_c00002{bottom:419.044740px;}
.y14be_c00002{bottom:419.044995px;}
.yf23_c00002{bottom:419.045700px;}
.y1715_c00002{bottom:419.046045px;}
.y1574_c00002{bottom:419.046645px;}
.y1395_c00002{bottom:419.047875px;}
.y1048_c00002{bottom:419.048040px;}
.y1652_c00002{bottom:419.048325px;}
.yf86_c00002{bottom:419.048790px;}
.y7ca_c00002{bottom:419.049225px;}
.y7d5_c00002{bottom:419.049240px;}
.y1aaf_c00002{bottom:419.701500px;}
.y172_c00002{bottom:419.849280px;}
.ybac_c00002{bottom:420.241500px;}
.y134c_c00002{bottom:420.301965px;}
.yf3f_c00002{bottom:420.302580px;}
.y147c_c00002{bottom:420.304080px;}
.y142e_c00002{bottom:420.479415px;}
.yeb9_c00002{bottom:420.480855px;}
.y1064_c00002{bottom:420.481455px;}
.y1107_c00002{bottom:420.482055px;}
.y12e0_c00002{bottom:420.482265px;}
.y10bf_c00002{bottom:420.482655px;}
.y167b_c00002{bottom:420.482865px;}
.y13d1_c00002{bottom:420.483450px;}
.ye3c_c00002{bottom:420.483600px;}
.ye5a_c00002{bottom:420.486000px;}
.y15d9_c00002{bottom:420.539265px;}
.y16db_c00002{bottom:420.540915px;}
.y11fc_c00002{bottom:420.541155px;}
.y1457_c00002{bottom:420.541365px;}
.yfdf_c00002{bottom:420.541755px;}
.y11dd_c00002{bottom:420.542655px;}
.y1129_c00002{bottom:420.542955px;}
.y1615_c00002{bottom:420.543015px;}
.y1090_c00002{bottom:420.543255px;}
.y16a7_c00002{bottom:420.544065px;}
.yee5_c00002{bottom:420.544140px;}
.y114d_c00002{bottom:420.544305px;}
.y10ec_c00002{bottom:420.544455px;}
.y130d_c00002{bottom:420.544815px;}
.y31b_c00002{bottom:421.165740px;}
.y2df_c00002{bottom:421.167300px;}
.y2aa_c00002{bottom:421.167330px;}
.y302_c00002{bottom:421.167525px;}
.y2c3_c00002{bottom:421.168500px;}
.y8d_c00002{bottom:421.467300px;}
.yfc_c00002{bottom:421.467375px;}
.ya3_c00002{bottom:421.467750px;}
.yde_c00002{bottom:421.468575px;}
.ybd_c00002{bottom:421.468680px;}
.y13fe_c00002{bottom:421.801890px;}
.ye89_c00002{bottom:421.803450px;}
.y12b0_c00002{bottom:421.804755px;}
.y11e2_c00002{bottom:421.804905px;}
.y1324_c00002{bottom:421.805865px;}
.yb51_c00002{bottom:421.919880px;}
.y14ec_c00002{bottom:422.578500px;}
.y1190_c00002{bottom:422.640000px;}
.y194b_c00002{bottom:423.661500px;}
.yd1c_c00002{bottom:423.899310px;}
.yce0_c00002{bottom:423.899850px;}
.y1011_c00002{bottom:423.900165px;}
.yd3a_c00002{bottom:423.900315px;}
.ycc5_c00002{bottom:423.900495px;}
.y1b1d_c00002{bottom:425.823000px;}
.ycfd_c00002{bottom:426.600375px;}
.y1b41_c00002{bottom:426.898500px;}
.yc71_c00002{bottom:426.899115px;}
.yaf2_c00002{bottom:426.899715px;}
.ya93_c00002{bottom:426.900000px;}
.yb16_c00002{bottom:426.900315px;}
.ybff_c00002{bottom:426.902640px;}
.yc95_c00002{bottom:426.902715px;}
.yc23_c00002{bottom:426.903390px;}
.yb8e_c00002{bottom:426.904365px;}
.y17e6_c00002{bottom:427.198200px;}
.y9b9_c00002{bottom:427.548165px;}
.y766_c00002{bottom:427.558800px;}
.y733_c00002{bottom:427.559670px;}
.y74d_c00002{bottom:427.560450px;}
.y716_c00002{bottom:427.561500px;}
.y96c_c00002{bottom:427.561800px;}
.y986_c00002{bottom:427.563435px;}
.y9a1_c00002{bottom:427.563615px;}
.y54_c00002{bottom:427.645230px;}
.y4be_c00002{bottom:427.645275px;}
.y46c_c00002{bottom:427.646280px;}
.y41e_c00002{bottom:427.646325px;}
.yd5a_c00002{bottom:427.859565px;}
.y10b6_c00002{bottom:427.859865px;}
.y13bf_c00002{bottom:427.860015px;}
.y1218_c00002{bottom:427.860165px;}
.yac1_c00002{bottom:428.158500px;}
.y1794_c00002{bottom:428.821500px;}
.y7f5_c00002{bottom:429.538695px;}
.y80f_c00002{bottom:429.538995px;}
.y526_c00002{bottom:429.539070px;}
.y4e5_c00002{bottom:429.539550px;}
.y55f_c00002{bottom:429.539580px;}
.y7d3_c00002{bottom:429.539610px;}
.y78e_c00002{bottom:429.539670px;}
.y7c8_c00002{bottom:429.539760px;}
.y545_c00002{bottom:429.539880px;}
.y7ad_c00002{bottom:429.539910px;}
.y1ef_c00002{bottom:430.349745px;}
.y205_c00002{bottom:430.350300px;}
.y268_c00002{bottom:430.350540px;}
.y3d0_c00002{bottom:430.351140px;}
.y242_c00002{bottom:430.351440px;}
.y223_c00002{bottom:430.352265px;}
.y452_c00002{bottom:430.354590px;}
.yd76_c00002{bottom:430.501980px;}
.ydc1_c00002{bottom:430.561680px;}
.y6bd_c00002{bottom:430.621725px;}
.y65c_c00002{bottom:430.621800px;}
.y91c_c00002{bottom:430.621860px;}
.y8cb_c00002{bottom:430.621950px;}
.y943_c00002{bottom:430.622010px;}
.y6eb_c00002{bottom:430.622625px;}
.y9e1_c00002{bottom:430.799445px;}
.ya60_c00002{bottom:431.158830px;}
.yb68_c00002{bottom:431.159430px;}
.ya46_c00002{bottom:431.160180px;}
.y9f5_c00002{bottom:431.162400px;}
.y68c_c00002{bottom:431.881125px;}
.y8ec_c00002{bottom:431.883015px;}
.y3fc_c00002{bottom:432.028980px;}
.y29c_c00002{bottom:432.031140px;}
.y507_c00002{bottom:432.239505px;}
.y1b63_c00002{bottom:432.298500px;}
.y1afe_c00002{bottom:432.303000px;}
.y588_c00002{bottom:432.539700px;}
.y878_c00002{bottom:432.540255px;}
.y8a1_c00002{bottom:432.542355px;}
.y5fc_c00002{bottom:432.547380px;}
.y629_c00002{bottom:432.549030px;}
.y358_c00002{bottom:432.692670px;}
.y171_c00002{bottom:432.809625px;}
.y186d_c00002{bottom:433.499509px;}
.y645_c00002{bottom:433.811340px;}
.ya20_c00002{bottom:433.863435px;}
.y174a_c00002{bottom:434.401500px;}
.ye04_c00002{bottom:434.457735px;}
.y126d_c00002{bottom:434.458980px;}
.y84d_c00002{bottom:435.239685px;}
.yb50_c00002{bottom:435.240000px;}
.y5d4_c00002{bottom:435.240435px;}
.y152e_c00002{bottom:435.241725px;}
.y1371_c00002{bottom:435.242925px;}
.y132f_c00002{bottom:435.243300px;}
.y14a2_c00002{bottom:435.244395px;}
.yf0c_c00002{bottom:435.244500px;}
.yf63_c00002{bottom:435.244740px;}
.y14bd_c00002{bottom:435.244995px;}
.yf22_c00002{bottom:435.245700px;}
.y1714_c00002{bottom:435.246045px;}
.y1573_c00002{bottom:435.246645px;}
.y1394_c00002{bottom:435.247275px;}
.y1047_c00002{bottom:435.248040px;}
.y1651_c00002{bottom:435.248325px;}
.yf85_c00002{bottom:435.248790px;}
.y15af_c00002{bottom:435.898500px;}
.yfba_c00002{bottom:435.960000px;}
.y1805_c00002{bottom:436.381500px;}
.y134b_c00002{bottom:436.501965px;}
.yf3e_c00002{bottom:436.501980px;}
.y147b_c00002{bottom:436.503480px;}
.y15d8_c00002{bottom:436.739265px;}
.y142d_c00002{bottom:436.739715px;}
.y16da_c00002{bottom:436.740915px;}
.y11fb_c00002{bottom:436.741155px;}
.y1456_c00002{bottom:436.741365px;}
.yeb8_c00002{bottom:436.741755px;}
.y1145_c00002{bottom:436.742355px;}
.y108f_c00002{bottom:436.742655px;}
.y10be_c00002{bottom:436.742955px;}
.y1614_c00002{bottom:436.743015px;}
.y13d0_c00002{bottom:436.743150px;}
.y12df_c00002{bottom:436.743165px;}
.ye3b_c00002{bottom:436.743300px;}
.y10eb_c00002{bottom:436.743855px;}
.y16a6_c00002{bottom:436.744065px;}
.yee4_c00002{bottom:436.744140px;}
.y114c_c00002{bottom:436.744305px;}
.y130c_c00002{bottom:436.744815px;}
.ye59_c00002{bottom:436.745700px;}
.y1780_c00002{bottom:437.331900px;}
.y31a_c00002{bottom:437.365740px;}
.y2a9_c00002{bottom:437.367330px;}
.y301_c00002{bottom:437.367525px;}
.y2c2_c00002{bottom:437.368500px;}
.y18e9_c00002{bottom:437.400633px;}
.y8c_c00002{bottom:437.667300px;}
.ybc_c00002{bottom:437.668680px;}
.y19cc_c00002{bottom:437.760000px;}
.y1993_c00002{bottom:437.879550px;}
.y199a_c00002{bottom:437.942100px;}
.y13fd_c00002{bottom:438.001890px;}
.ye88_c00002{bottom:438.003450px;}
.y12af_c00002{bottom:438.004155px;}
.y11e1_c00002{bottom:438.004905px;}
.y1734_c00002{bottom:438.005865px;}
.y1169_c00002{bottom:438.007005px;}
.y2de_c00002{bottom:438.626550px;}
.y193d_c00002{bottom:438.660000px;}
.y19a4_c00002{bottom:439.859850px;}
.yd1b_c00002{bottom:440.099310px;}
.ycdf_c00002{bottom:440.099850px;}
.y1010_c00002{bottom:440.100165px;}
.yd39_c00002{bottom:440.100315px;}
.ycfc_c00002{bottom:440.100375px;}
.y1447_c00002{bottom:440.638065px;}
.y4bd_c00002{bottom:440.965395px;}
.y4a7_c00002{bottom:440.965920px;}
.y41d_c00002{bottom:440.966445px;}
.y102c_c00002{bottom:441.360165px;}
.ycc4_c00002{bottom:441.360195px;}
.y339_c00002{bottom:441.450900px;}
.y387_c00002{bottom:441.454725px;}
.y1c2_c00002{bottom:441.625350px;}
.y120_c00002{bottom:441.628950px;}
.y197_c00002{bottom:441.629700px;}
.y13f_c00002{bottom:441.631500px;}
.y197d_c00002{bottom:441.839700px;}
.yc70_c00002{bottom:443.159415px;}
.yaf1_c00002{bottom:443.160015px;}
.ya92_c00002{bottom:443.160300px;}
.yb15_c00002{bottom:443.161215px;}
.ybfe_c00002{bottom:443.162940px;}
.yc94_c00002{bottom:443.163015px;}
.yc22_c00002{bottom:443.164290px;}
.yb8d_c00002{bottom:443.165265px;}
.y17e5_c00002{bottom:443.398200px;}
.y9b8_c00002{bottom:443.748165px;}
.y765_c00002{bottom:443.758800px;}
.y732_c00002{bottom:443.759670px;}
.y715_c00002{bottom:443.760300px;}
.y74c_c00002{bottom:443.760450px;}
.y96b_c00002{bottom:443.761800px;}
.y985_c00002{bottom:443.763435px;}
.y9a0_c00002{bottom:443.763615px;}
.y357_c00002{bottom:444.153615px;}
.y19ac_c00002{bottom:444.300000px;}
.y170_c00002{bottom:444.329745px;}
.yac0_c00002{bottom:444.419400px;}
.y3fb_c00002{bottom:445.349100px;}
.y506_c00002{bottom:445.739505px;}
.y4e4_c00002{bottom:445.739550px;}
.y1ee_c00002{bottom:446.009445px;}
.y222_c00002{bottom:446.011965px;}
.ye06_c00002{bottom:446.756535px;}
.y126f_c00002{bottom:446.758980px;}
.ye0e_c00002{bottom:446.759385px;}
.y127b_c00002{bottom:446.761530px;}
.ydc0_c00002{bottom:446.761680px;}
.yd75_c00002{bottom:446.762280px;}
.yd92_c00002{bottom:446.764050px;}
.y6bc_c00002{bottom:446.821725px;}
.y65b_c00002{bottom:446.821800px;}
.y91b_c00002{bottom:446.821860px;}
.y8ca_c00002{bottom:446.821950px;}
.y942_c00002{bottom:446.822010px;}
.y6ea_c00002{bottom:446.822625px;}
.y186c_c00002{bottom:446.999506px;}
.ya45_c00002{bottom:447.360180px;}
.y9f4_c00002{bottom:447.362400px;}
.ya5f_c00002{bottom:447.419130px;}
.yb67_c00002{bottom:447.420330px;}
.y1b1c_c00002{bottom:447.603000px;}
.y68b_c00002{bottom:448.081125px;}
.y8eb_c00002{bottom:448.083015px;}
.y1b40_c00002{bottom:448.678500px;}
.y587_c00002{bottom:448.739700px;}
.y877_c00002{bottom:448.740255px;}
.y8a0_c00002{bottom:448.742355px;}
.y5fb_c00002{bottom:448.747380px;}
.y628_c00002{bottom:448.749030px;}
.y14eb_c00002{bottom:449.218500px;}
.y118f_c00002{bottom:449.280000px;}
.y5d3_c00002{bottom:450.000195px;}
.ya1f_c00002{bottom:450.122685px;}
.y1793_c00002{bottom:450.601500px;}
.ye03_c00002{bottom:450.718035px;}
.y126c_c00002{bottom:450.719880px;}
.y17c6_c00002{bottom:450.843000px;}
.y1a24_c00002{bottom:451.203000px;}
.y11c0_c00002{bottom:451.425000px;}
.y84c_c00002{bottom:451.439685px;}
.y152d_c00002{bottom:451.441725px;}
.y1370_c00002{bottom:451.442925px;}
.y132e_c00002{bottom:451.443300px;}
.y14a1_c00002{bottom:451.444395px;}
.yf0b_c00002{bottom:451.444500px;}
.yf62_c00002{bottom:451.444740px;}
.y14bc_c00002{bottom:451.444995px;}
.yf21_c00002{bottom:451.445700px;}
.y1713_c00002{bottom:451.446045px;}
.y1572_c00002{bottom:451.446645px;}
.y1393_c00002{bottom:451.446675px;}
.y1046_c00002{bottom:451.448040px;}
.y1650_c00002{bottom:451.448325px;}
.yf84_c00002{bottom:451.448790px;}
.y1749_c00002{bottom:452.581500px;}
.yf3d_c00002{bottom:452.701380px;}
.y134a_c00002{bottom:452.701965px;}
.y147a_c00002{bottom:452.702880px;}
.y15d7_c00002{bottom:452.939265px;}
.y142c_c00002{bottom:452.939715px;}
.y16d9_c00002{bottom:452.940915px;}
.y11fa_c00002{bottom:452.941155px;}
.y1455_c00002{bottom:452.941365px;}
.yeb7_c00002{bottom:452.941755px;}
.y1144_c00002{bottom:452.942355px;}
.y108e_c00002{bottom:452.942655px;}
.y10bd_c00002{bottom:452.942955px;}
.y1613_c00002{bottom:452.943015px;}
.y13cf_c00002{bottom:452.943150px;}
.y12de_c00002{bottom:452.943165px;}
.ye3a_c00002{bottom:452.943300px;}
.y10ea_c00002{bottom:452.943855px;}
.y16a5_c00002{bottom:452.944065px;}
.yee3_c00002{bottom:452.944140px;}
.y114b_c00002{bottom:452.944305px;}
.y130b_c00002{bottom:452.944815px;}
.ye58_c00002{bottom:452.945700px;}
.y4ba_c00002{bottom:453.543000px;}
.y319_c00002{bottom:453.627840px;}
.y2dd_c00002{bottom:453.628950px;}
.y300_c00002{bottom:453.629625px;}
.y2c1_c00002{bottom:453.630000px;}
.y8b_c00002{bottom:453.867300px;}
.yfb_c00002{bottom:453.867375px;}
.ya2_c00002{bottom:453.867750px;}
.ydd_c00002{bottom:453.868575px;}
.ybb_c00002{bottom:453.868680px;}
.y1b62_c00002{bottom:454.078500px;}
.y18d8_c00002{bottom:454.081500px;}
.y13fc_c00002{bottom:454.201890px;}
.ye87_c00002{bottom:454.203450px;}
.y12ae_c00002{bottom:454.203555px;}
.y10a7_c00002{bottom:454.203705px;}
.y16be_c00002{bottom:454.205115px;}
.y1733_c00002{bottom:454.205865px;}
.y1104_c00002{bottom:454.206105px;}
.y1168_c00002{bottom:454.207005px;}
.y53_c00002{bottom:454.285530px;}
.y4a6_c00002{bottom:454.286040px;}
.y46b_c00002{bottom:454.286580px;}
.y2a8_c00002{bottom:454.827030px;}
.y204_c00002{bottom:454.830150px;}
.y267_c00002{bottom:454.830390px;}
.y3cf_c00002{bottom:454.830990px;}
.y241_c00002{bottom:454.831890px;}
.y451_c00002{bottom:454.834440px;}
.y489_c00002{bottom:454.835040px;}
.y177f_c00002{bottom:455.871600px;}
.yd1a_c00002{bottom:456.299310px;}
.ycc3_c00002{bottom:456.299850px;}
.y100f_c00002{bottom:456.360465px;}
.yd38_c00002{bottom:456.360615px;}
.y1804_c00002{bottom:456.361500px;}
.y16f_c00002{bottom:457.289505px;}
.y1ed_c00002{bottom:457.529565px;}
.y221_c00002{bottom:457.532085px;}
.ycfb_c00002{bottom:457.619925px;}
.y102b_c00002{bottom:457.620465px;}
.yd54_c00002{bottom:457.620615px;}
.y338_c00002{bottom:457.650900px;}
.y386_c00002{bottom:457.654125px;}
.y1adb_c00002{bottom:457.680000px;}
.y1923_c00002{bottom:457.681500px;}
.y3a9_c00002{bottom:457.710525px;}
.y18fd_c00002{bottom:457.738950px;}
.y1904_c00002{bottom:457.798650px;}
.yc50_c00002{bottom:457.800000px;}
.y4b9_c00002{bottom:458.157000px;}
.y3fa_c00002{bottom:458.607105px;}
.y29b_c00002{bottom:458.671440px;}
.y24e_c00002{bottom:458.732040px;}
.y19cb_c00002{bottom:458.880000px;}
.y1992_c00002{bottom:458.939850px;}
.y356_c00002{bottom:458.974320px;}
.y1999_c00002{bottom:459.001800px;}
.yc6f_c00002{bottom:459.359415px;}
.yaf0_c00002{bottom:459.360015px;}
.ya91_c00002{bottom:459.360300px;}
.yb14_c00002{bottom:459.361215px;}
.yc93_c00002{bottom:459.362415px;}
.ybfd_c00002{bottom:459.362940px;}
.yb8c_c00002{bottom:459.364065px;}
.yc21_c00002{bottom:459.364290px;}
.y17e4_c00002{bottom:459.598200px;}
.y190e_c00002{bottom:459.779250px;}
.y9b7_c00002{bottom:459.948165px;}
.y96a_c00002{bottom:459.961800px;}
.y984_c00002{bottom:459.963435px;}
.y99f_c00002{bottom:459.963615px;}
.y186b_c00002{bottom:460.499503px;}
.yabf_c00002{bottom:460.619400px;}
.y706_c00002{bottom:460.679730px;}
.y19a3_c00002{bottom:460.980000px;}
.y7f4_c00002{bottom:461.938695px;}
.y525_c00002{bottom:461.939070px;}
.y4e3_c00002{bottom:461.939550px;}
.y78d_c00002{bottom:461.939670px;}
.y544_c00002{bottom:461.939880px;}
.y7ac_c00002{bottom:461.939910px;}
.y15ae_c00002{bottom:462.481500px;}
.yfb9_c00002{bottom:462.538500px;}
.y1a22_c00002{bottom:462.903000px;}
.ye05_c00002{bottom:462.956535px;}
.y126e_c00002{bottom:462.958980px;}
.ye0d_c00002{bottom:462.959385px;}
.y127a_c00002{bottom:462.961530px;}
.ydbf_c00002{bottom:462.961680px;}
.yd74_c00002{bottom:462.962280px;}
.yd91_c00002{bottom:462.964050px;}
.y6bb_c00002{bottom:463.021725px;}
.y65a_c00002{bottom:463.021800px;}
.y91a_c00002{bottom:463.021860px;}
.y8c9_c00002{bottom:463.021950px;}
.y941_c00002{bottom:463.081710px;}
.y6e9_c00002{bottom:463.082925px;}
.y505_c00002{bottom:463.199805px;}
.y7c7_c00002{bottom:463.200060px;}
.ya5e_c00002{bottom:463.619130px;}
.ya44_c00002{bottom:463.619430px;}
.yb66_c00002{bottom:463.619730px;}
.y9f3_c00002{bottom:463.621650px;}
.y18e5_c00002{bottom:463.739883px;}
.y1916_c00002{bottom:464.161500px;}
.y68a_c00002{bottom:464.281125px;}
.y8ea_c00002{bottom:464.283015px;}
.y586_c00002{bottom:464.939700px;}
.y876_c00002{bottom:464.940255px;}
.y5fa_c00002{bottom:464.947380px;}
.y89f_c00002{bottom:465.002655px;}
.y627_c00002{bottom:465.008730px;}
.y1a1f_c00002{bottom:465.063000px;}
.y19ab_c00002{bottom:465.360000px;}
.y19d4_c00002{bottom:465.599550px;}
.y1c1_c00002{bottom:466.043700px;}
.y11f_c00002{bottom:466.050300px;}
.y196_c00002{bottom:466.050450px;}
.y13e_c00002{bottom:466.052850px;}
.y1a1e_c00002{bottom:466.143000px;}
.y5d2_c00002{bottom:466.260495px;}
.ya1e_c00002{bottom:466.322685px;}
.ye02_c00002{bottom:466.918035px;}
.y126b_c00002{bottom:466.919880px;}
.y52_c00002{bottom:467.605650px;}
.y4bc_c00002{bottom:467.605695px;}
.y4a5_c00002{bottom:467.606160px;}
.y46a_c00002{bottom:467.606700px;}
.y41c_c00002{bottom:467.606745px;}
.y136f_c00002{bottom:467.642925px;}
.y132d_c00002{bottom:467.643300px;}
.y14a0_c00002{bottom:467.644395px;}
.yf0a_c00002{bottom:467.644500px;}
.yf61_c00002{bottom:467.644740px;}
.yf20_c00002{bottom:467.645700px;}
.y84b_c00002{bottom:467.699985px;}
.y152c_c00002{bottom:467.702025px;}
.y9de_c00002{bottom:467.703195px;}
.y8bd_c00002{bottom:467.703225px;}
.y14bb_c00002{bottom:467.704695px;}
.y1712_c00002{bottom:467.706345px;}
.y1571_c00002{bottom:467.706945px;}
.y1392_c00002{bottom:467.707575px;}
.y164f_c00002{bottom:467.708025px;}
.y1045_c00002{bottom:467.708340px;}
.yf83_c00002{bottom:467.709090px;}
.y1a20_c00002{bottom:468.481500px;}
.y16e_c00002{bottom:468.750450px;}
.yf3c_c00002{bottom:468.961680px;}
.y1349_c00002{bottom:468.962265px;}
.y1479_c00002{bottom:468.963180px;}
.y142b_c00002{bottom:469.139715px;}
.yeb6_c00002{bottom:469.141755px;}
.y1143_c00002{bottom:469.142355px;}
.y10bc_c00002{bottom:469.142955px;}
.y13ce_c00002{bottom:469.143150px;}
.y12dd_c00002{bottom:469.143165px;}
.ye39_c00002{bottom:469.143300px;}
.ye57_c00002{bottom:469.145700px;}
.y15d6_c00002{bottom:469.199565px;}
.y1454_c00002{bottom:469.200015px;}
.y16d8_c00002{bottom:469.201215px;}
.y11f9_c00002{bottom:469.201455px;}
.yfde_c00002{bottom:469.202055px;}
.y11dc_c00002{bottom:469.202355px;}
.y108d_c00002{bottom:469.202955px;}
.y1128_c00002{bottom:469.203255px;}
.y114a_c00002{bottom:469.203555px;}
.y1612_c00002{bottom:469.203915px;}
.y10e9_c00002{bottom:469.204155px;}
.y16a4_c00002{bottom:469.204365px;}
.yee2_c00002{bottom:469.204440px;}
.y130a_c00002{bottom:469.205115px;}
.y2dc_c00002{bottom:469.288650px;}
.y1b1b_c00002{bottom:469.381500px;}
.ya1_c00002{bottom:470.067750px;}
.ydc_c00002{bottom:470.068575px;}
.yfa_c00002{bottom:470.126625px;}
.yba_c00002{bottom:470.128380px;}
.y13fb_c00002{bottom:470.401890px;}
.y12ad_c00002{bottom:470.402955px;}
.ye86_c00002{bottom:470.403450px;}
.y11e0_c00002{bottom:470.404905px;}
.y1167_c00002{bottom:470.407005px;}
.y1b3f_c00002{bottom:470.458500px;}
.y1ec_c00002{bottom:470.489910px;}
.y220_c00002{bottom:470.491845px;}
.y1748_c00002{bottom:470.761500px;}
.y8a_c00002{bottom:471.327000px;}
.y3f9_c00002{bottom:471.927225px;}
.y29a_c00002{bottom:471.991560px;}
.y1792_c00002{bottom:472.381500px;}
.ycc2_c00002{bottom:472.560150px;}
.ycfa_c00002{bottom:472.560165px;}
.y17c5_c00002{bottom:472.623000px;}
.y337_c00002{bottom:473.910150px;}
.y3a8_c00002{bottom:473.910525px;}
.y385_c00002{bottom:473.913825px;}
.y186a_c00002{bottom:473.999500px;}
.y177e_c00002{bottom:474.412350px;}
.y197c_c00002{bottom:474.959850px;}
.y355_c00002{bottom:475.173120px;}
.yc6e_c00002{bottom:475.559415px;}
.yaef_c00002{bottom:475.560015px;}
.ya90_c00002{bottom:475.560300px;}
.yb13_c00002{bottom:475.561215px;}
.yc92_c00002{bottom:475.561815px;}
.yb8b_c00002{bottom:475.562865px;}
.ybfc_c00002{bottom:475.562940px;}
.yc20_c00002{bottom:475.564290px;}
.y17e3_c00002{bottom:475.798200px;}
.y14ea_c00002{bottom:475.801500px;}
.y118e_c00002{bottom:475.858500px;}
.y18d7_c00002{bottom:475.861500px;}
.y969_c00002{bottom:476.161800px;}
.y99e_c00002{bottom:476.163615px;}
.y9b6_c00002{bottom:476.208465px;}
.y983_c00002{bottom:476.222685px;}
.y1803_c00002{bottom:476.341500px;}
.yabe_c00002{bottom:476.819400px;}
.y11bf_c00002{bottom:478.018500px;}
.y318_c00002{bottom:478.045590px;}
.y2ff_c00002{bottom:478.047375px;}
.y2a7_c00002{bottom:478.047780px;}
.y4e2_c00002{bottom:478.139550px;}
.y504_c00002{bottom:478.201005px;}
.ycb7_c00002{bottom:478.381095px;}
.yba9_c00002{bottom:478.382145px;}
.y1922_c00002{bottom:478.741500px;}
.y18fc_c00002{bottom:478.859100px;}
.y1903_c00002{bottom:478.917600px;}
.yd73_c00002{bottom:478.982430px;}
.y203_c00002{bottom:479.250900px;}
.y240_c00002{bottom:479.252640px;}
.y659_c00002{bottom:479.281050px;}
.y6ba_c00002{bottom:479.281425px;}
.y940_c00002{bottom:479.281710px;}
.y919_c00002{bottom:479.282160px;}
.y8c8_c00002{bottom:479.282250px;}
.y6e8_c00002{bottom:479.282925px;}
.y2c0_c00002{bottom:479.307000px;}
.y266_c00002{bottom:479.313240px;}
.y450_c00002{bottom:479.313690px;}
.y3ce_c00002{bottom:479.313840px;}
.y488_c00002{bottom:479.314890px;}
.y9f2_c00002{bottom:479.821650px;}
.ya1d_c00002{bottom:479.822685px;}
.y198a_c00002{bottom:480.120150px;}
.y430_c00002{bottom:480.181500px;}
.y689_c00002{bottom:480.540375px;}
.y8e9_c00002{bottom:480.542265px;}
.y2db_c00002{bottom:480.747240px;}
.y190d_c00002{bottom:480.839550px;}
.y4bb_c00002{bottom:480.925815px;}
.y4a4_c00002{bottom:480.926280px;}
.y41b_c00002{bottom:480.926865px;}
.y5a4_c00002{bottom:481.200000px;}
.y585_c00002{bottom:481.200600px;}
.y875_c00002{bottom:481.201155px;}
.y89e_c00002{bottom:481.202655px;}
.y5f9_c00002{bottom:481.207680px;}
.y626_c00002{bottom:481.208730px;}
.y74b_c00002{bottom:481.680000px;}
.y714_c00002{bottom:481.681050px;}
.y16d_c00002{bottom:481.710795px;}
.y764_c00002{bottom:481.738650px;}
.y1eb_c00002{bottom:481.950855px;}
.y21f_c00002{bottom:482.011965px;}
.y5d1_c00002{bottom:482.459895px;}
.y9dd_c00002{bottom:482.464725px;}
.y731_c00002{bottom:483.002220px;}
.y24d_c00002{bottom:483.212490px;}
.y84a_c00002{bottom:483.899985px;}
.y152b_c00002{bottom:483.902025px;}
.y132c_c00002{bottom:483.903000px;}
.y136e_c00002{bottom:483.903225px;}
.yf09_c00002{bottom:483.904200px;}
.y149f_c00002{bottom:483.904695px;}
.yf60_c00002{bottom:483.905040px;}
.yf1f_c00002{bottom:483.905400px;}
.y1711_c00002{bottom:483.905745px;}
.y1570_c00002{bottom:483.906945px;}
.y1391_c00002{bottom:483.907575px;}
.y164e_c00002{bottom:483.908025px;}
.y1044_c00002{bottom:483.908340px;}
.yf82_c00002{bottom:483.908490px;}
.y42e_c00002{bottom:484.797000px;}
.y1aae_c00002{bottom:484.861905px;}
.yf3b_c00002{bottom:485.161680px;}
.y1348_c00002{bottom:485.162265px;}
.y1478_c00002{bottom:485.163180px;}
.y1915_c00002{bottom:485.280000px;}
.y15d5_c00002{bottom:485.399565px;}
.y142a_c00002{bottom:485.400015px;}
.y16d7_c00002{bottom:485.401215px;}
.y11f8_c00002{bottom:485.401455px;}
.yeb5_c00002{bottom:485.402055px;}
.y11db_c00002{bottom:485.402355px;}
.y1142_c00002{bottom:485.402655px;}
.y13cd_c00002{bottom:485.402850px;}
.y108c_c00002{bottom:485.402955px;}
.ye38_c00002{bottom:485.403000px;}
.y10bb_c00002{bottom:485.403255px;}
.y12dc_c00002{bottom:485.403465px;}
.y1149_c00002{bottom:485.403555px;}
.y1611_c00002{bottom:485.403915px;}
.y10e8_c00002{bottom:485.404155px;}
.y16a3_c00002{bottom:485.404365px;}
.yee1_c00002{bottom:485.404440px;}
.y1309_c00002{bottom:485.404515px;}
.ye56_c00002{bottom:485.405400px;}
.y1955_c00002{bottom:485.463450px;}
.y19fb_c00002{bottom:485.464050px;}
.y193a_c00002{bottom:485.464800px;}
.yf7_c00002{bottom:486.326775px;}
.y89_c00002{bottom:486.327000px;}
.yb9_c00002{bottom:486.327180px;}
.y13fa_c00002{bottom:486.661590px;}
.y12ac_c00002{bottom:486.662655px;}
.ye85_c00002{bottom:486.662700px;}
.y11df_c00002{bottom:486.665205px;}
.y1166_c00002{bottom:486.667305px;}
.y1869_c00002{bottom:487.499500px;}
.ycf9_c00002{bottom:488.220465px;}
.y1747_c00002{bottom:488.941500px;}
.y15ad_c00002{bottom:489.121500px;}
.yfb8_c00002{bottom:489.178500px;}
.y1ada_c00002{bottom:489.720300px;}
.y336_c00002{bottom:490.110150px;}
.y3a7_c00002{bottom:490.110525px;}
.y384_c00002{bottom:490.113825px;}
.yf4_c00002{bottom:490.286625px;}
.y1c0_c00002{bottom:490.524150px;}
.y11e_c00002{bottom:490.530750px;}
.y195_c00002{bottom:490.530900px;}
.y13d_c00002{bottom:490.532700px;}
.ydbe_c00002{bottom:491.102430px;}
.y1b1a_c00002{bottom:491.161500px;}
.y354_c00002{bottom:491.371920px;}
.y197b_c00002{bottom:491.459850px;}
.ycb6_c00002{bottom:491.701215px;}
.yba8_c00002{bottom:491.702265px;}
.yc6d_c00002{bottom:491.759415px;}
.yaee_c00002{bottom:491.760015px;}
.ya8f_c00002{bottom:491.760300px;}
.ybfb_c00002{bottom:491.762940px;}
.yb12_c00002{bottom:491.821515px;}
.yb8a_c00002{bottom:491.822115px;}
.yc1f_c00002{bottom:491.824590px;}
.y17e2_c00002{bottom:491.998200px;}
.y1b3e_c00002{bottom:492.238500px;}
.y1a59_c00002{bottom:492.240405px;}
.yd72_c00002{bottom:492.302550px;}
.y177d_c00002{bottom:492.953100px;}
.yabd_c00002{bottom:493.019400px;}
.y95d_c00002{bottom:493.138530px;}
.y16c_c00002{bottom:493.230330px;}
.yb4e_c00002{bottom:493.382760px;}
.y2a6_c00002{bottom:493.707030px;}
.y2da_c00002{bottom:493.769115px;}
.y503_c00002{bottom:493.861305px;}
.y1791_c00002{bottom:494.161500px;}
.y51_c00002{bottom:494.245350px;}
.y41a_c00002{bottom:494.246400px;}
.y17c4_c00002{bottom:494.403000px;}
.y1ea_c00002{bottom:495.329565px;}
.y658_c00002{bottom:495.481050px;}
.y6b9_c00002{bottom:495.481425px;}
.y93f_c00002{bottom:495.481710px;}
.y918_c00002{bottom:495.482160px;}
.y8c7_c00002{bottom:495.482250px;}
.y6e7_c00002{bottom:495.482925px;}
.ya5d_c00002{bottom:496.019130px;}
.ya43_c00002{bottom:496.019430px;}
.yb65_c00002{bottom:496.019730px;}
.y9f1_c00002{bottom:496.021650px;}
.ya1c_c00002{bottom:496.022685px;}
.y1802_c00002{bottom:496.321500px;}
.y688_c00002{bottom:496.740375px;}
.y8e8_c00002{bottom:496.742265px;}
.y18e4_c00002{bottom:496.799583px;}
.ycc1_c00002{bottom:496.979700px;}
.y100e_c00002{bottom:497.039115px;}
.yd37_c00002{bottom:497.040465px;}
.y5a3_c00002{bottom:497.400000px;}
.y584_c00002{bottom:497.400600px;}
.y874_c00002{bottom:497.401155px;}
.y89d_c00002{bottom:497.402655px;}
.y5f8_c00002{bottom:497.407680px;}
.y625_c00002{bottom:497.408730px;}
.y1b61_c00002{bottom:497.638500px;}
.y18d6_c00002{bottom:497.643000px;}
.y763_c00002{bottom:497.938650px;}
.y713_c00002{bottom:497.940300px;}
.y1a85_c00002{bottom:498.001020px;}
.y102a_c00002{bottom:498.240015px;}
.yd53_c00002{bottom:498.240165px;}
.y299_c00002{bottom:498.451260px;}
.y3f8_c00002{bottom:498.566925px;}
.y21e_c00002{bottom:498.571665px;}
.y849_c00002{bottom:498.662100px;}
.y730_c00002{bottom:499.202220px;}
.ycf8_c00002{bottom:499.740000px;}
.y18f4_c00002{bottom:500.039550px;}
.y5d0_c00002{bottom:500.100195px;}
.y152a_c00002{bottom:500.102025px;}
.y132b_c00002{bottom:500.103000px;}
.y136d_c00002{bottom:500.103225px;}
.yf08_c00002{bottom:500.104200px;}
.y149e_c00002{bottom:500.104695px;}
.yf5f_c00002{bottom:500.105040px;}
.yf1e_c00002{bottom:500.105400px;}
.y1710_c00002{bottom:500.105745px;}
.y156f_c00002{bottom:500.106945px;}
.y1390_c00002{bottom:500.107575px;}
.y164d_c00002{bottom:500.108025px;}
.y1043_c00002{bottom:500.108340px;}
.yf81_c00002{bottom:500.108490px;}
.y19ca_c00002{bottom:500.280000px;}
.y1991_c00002{bottom:500.339850px;}
.y1998_c00002{bottom:500.401800px;}
.yd32_c00002{bottom:500.939160px;}
.y1868_c00002{bottom:500.999497px;}
.y1a1d_c00002{bottom:501.063000px;}
.yf3a_c00002{bottom:501.361680px;}
.y1347_c00002{bottom:501.362265px;}
.y1477_c00002{bottom:501.363180px;}
.y15d4_c00002{bottom:501.599565px;}
.y1429_c00002{bottom:501.600015px;}
.y16d6_c00002{bottom:501.601215px;}
.y11f7_c00002{bottom:501.601455px;}
.yeb4_c00002{bottom:501.602055px;}
.y11da_c00002{bottom:501.602355px;}
.y13cc_c00002{bottom:501.602850px;}
.y108b_c00002{bottom:501.602955px;}
.ye37_c00002{bottom:501.603000px;}
.y1127_c00002{bottom:501.603255px;}
.y1610_c00002{bottom:501.603315px;}
.y12db_c00002{bottom:501.603465px;}
.y1148_c00002{bottom:501.603555px;}
.y10e7_c00002{bottom:501.604155px;}
.ye55_c00002{bottom:501.604200px;}
.y16a2_c00002{bottom:501.604365px;}
.yee0_c00002{bottom:501.604440px;}
.y1308_c00002{bottom:501.604515px;}
.yb8_c00002{bottom:501.986880px;}
.y19a2_c00002{bottom:502.380000px;}
.y118d_c00002{bottom:502.441500px;}
.y317_c00002{bottom:502.525440px;}
.y2fe_c00002{bottom:502.527825px;}
.y7f3_c00002{bottom:502.619145px;}
.y4e1_c00002{bottom:502.620000px;}
.y543_c00002{bottom:502.620330px;}
.y7ab_c00002{bottom:502.620360px;}
.y12ab_c00002{bottom:502.862655px;}
.ye84_c00002{bottom:502.862700px;}
.y11de_c00002{bottom:502.865205px;}
.y1165_c00002{bottom:502.867305px;}
.y2bf_c00002{bottom:503.786850px;}
.y80e_c00002{bottom:503.879295px;}
.y55e_c00002{bottom:503.879880px;}
.y7c6_c00002{bottom:503.879910px;}
.y13f9_c00002{bottom:504.301290px;}
.y11be_c00002{bottom:504.601500px;}
.y2d9_c00002{bottom:505.227120px;}
.y2a5_c00002{bottom:505.227150px;}
.y502_c00002{bottom:505.322250px;}
.y16b_c00002{bottom:506.190675px;}
.y335_c00002{bottom:506.310150px;}
.y3a6_c00002{bottom:506.310525px;}
.y383_c00002{bottom:506.313825px;}
.y7f0_c00002{bottom:506.578320px;}
.y540_c00002{bottom:506.578920px;}
.y7a8_c00002{bottom:506.580120px;}
.yb4d_c00002{bottom:506.702880px;}
.y19aa_c00002{bottom:506.760000px;}
.y67_c00002{bottom:506.823000px;}
.y1746_c00002{bottom:507.121500px;}
.y202_c00002{bottom:507.390000px;}
.y23f_c00002{bottom:507.391740px;}
.y265_c00002{bottom:507.393090px;}
.y44f_c00002{bottom:507.393540px;}
.y487_c00002{bottom:507.394140px;}
.y3cd_c00002{bottom:507.394290px;}
.yabc_c00002{bottom:507.479745px;}
.y50_c00002{bottom:507.565470px;}
.y419_c00002{bottom:507.566520px;}
.y353_c00002{bottom:507.570720px;}
.y17e1_c00002{bottom:508.198200px;}
.y1e9_c00002{bottom:508.649100px;}
.yc4e_c00002{bottom:509.581245px;}
.y21d_c00002{bottom:510.091785px;}
.y1171_c00002{bottom:510.477300px;}
.y1217_c00002{bottom:510.477450px;}
.y100b_c00002{bottom:510.477555px;}
.yfd0_c00002{bottom:510.477600px;}
.y10ba_c00002{bottom:510.478650px;}
.ye28_c00002{bottom:510.480000px;}
.y154d_c00002{bottom:510.481380px;}
.y1501_c00002{bottom:510.482130px;}
.y1600_c00002{bottom:510.482580px;}
.y129e_c00002{bottom:510.482730px;}
.y1597_c00002{bottom:510.482880px;}
.y167a_c00002{bottom:510.483930px;}
.yf9_c00002{bottom:510.747375px;}
.yf6_c00002{bottom:510.747525px;}
.y88_c00002{bottom:510.747750px;}
.y24c_c00002{bottom:511.292340px;}
.y65_c00002{bottom:511.380000px;}
.y177c_c00002{bottom:511.493850px;}
.y657_c00002{bottom:511.681050px;}
.y6b8_c00002{bottom:511.681425px;}
.y93e_c00002{bottom:511.681710px;}
.y917_c00002{bottom:511.682160px;}
.y8c6_c00002{bottom:511.682250px;}
.y6e6_c00002{bottom:511.682925px;}
.y298_c00002{bottom:511.771380px;}
.y3f7_c00002{bottom:511.887045px;}
.ya42_c00002{bottom:512.219430px;}
.y9f0_c00002{bottom:512.221650px;}
.ya5c_c00002{bottom:512.278830px;}
.yb64_c00002{bottom:512.279430px;}
.y687_c00002{bottom:512.940375px;}
.y8e7_c00002{bottom:512.942265px;}
.y1a1b_c00002{bottom:512.943000px;}
.y100d_c00002{bottom:513.239115px;}
.yd19_c00002{bottom:513.239610px;}
.ycc0_c00002{bottom:513.240000px;}
.yd36_c00002{bottom:513.240465px;}
.y18e3_c00002{bottom:513.359283px;}
.ya1b_c00002{bottom:513.482985px;}
.yb7_c00002{bottom:513.507000px;}
.y5a2_c00002{bottom:513.600000px;}
.y5cf_c00002{bottom:513.600195px;}
.y583_c00002{bottom:513.600600px;}
.y873_c00002{bottom:513.601155px;}
.y89c_c00002{bottom:513.602655px;}
.y5f7_c00002{bottom:513.608280px;}
.y624_c00002{bottom:513.608730px;}
.y1b3d_c00002{bottom:514.018500px;}
.y9b5_c00002{bottom:514.128015px;}
.y762_c00002{bottom:514.138650px;}
.y712_c00002{bottom:514.140300px;}
.y968_c00002{bottom:514.142250px;}
.y99d_c00002{bottom:514.143465px;}
.y1867_c00002{bottom:514.499494px;}
.yf3_c00002{bottom:514.708575px;}
.y848_c00002{bottom:514.862100px;}
.y644_c00002{bottom:514.871640px;}
.y11d_c00002{bottom:514.949100px;}
.y194_c00002{bottom:514.949250px;}
.y13c_c00002{bottom:514.951050px;}
.y1bf_c00002{bottom:515.004600px;}
.y1a19_c00002{bottom:515.283000px;}
.y982_c00002{bottom:515.401935px;}
.y72f_c00002{bottom:515.402220px;}
.y1aad_c00002{bottom:515.641755px;}
.y15ac_c00002{bottom:515.700000px;}
.yfb7_c00002{bottom:515.761500px;}
.y1790_c00002{bottom:515.941500px;}
.y17c3_c00002{bottom:516.181500px;}
.yc6c_c00002{bottom:516.239865px;}
.yaed_c00002{bottom:516.240465px;}
.ya8e_c00002{bottom:516.240750px;}
.ybfa_c00002{bottom:516.243390px;}
.y1801_c00002{bottom:516.301500px;}
.y1529_c00002{bottom:516.302025px;}
.y132a_c00002{bottom:516.303000px;}
.y136c_c00002{bottom:516.303225px;}
.yf07_c00002{bottom:516.304200px;}
.y149d_c00002{bottom:516.304695px;}
.yf5e_c00002{bottom:516.305040px;}
.yf1d_c00002{bottom:516.305400px;}
.y170f_c00002{bottom:516.305745px;}
.y156e_c00002{bottom:516.306945px;}
.y138f_c00002{bottom:516.307575px;}
.y164c_c00002{bottom:516.308025px;}
.y1042_c00002{bottom:516.308340px;}
.yf80_c00002{bottom:516.308490px;}
.y1a18_c00002{bottom:516.363000px;}
.y13f8_c00002{bottom:517.261635px;}
.yf39_c00002{bottom:517.561680px;}
.y1346_c00002{bottom:517.562265px;}
.y1476_c00002{bottom:517.563180px;}
.y16a_c00002{bottom:517.710795px;}
.y11f6_c00002{bottom:517.801455px;}
.yeb3_c00002{bottom:517.802055px;}
.y11d9_c00002{bottom:517.802355px;}
.y108a_c00002{bottom:517.802955px;}
.ye36_c00002{bottom:517.803000px;}
.y1126_c00002{bottom:517.803255px;}
.y160f_c00002{bottom:517.803315px;}
.y12da_c00002{bottom:517.803465px;}
.y1147_c00002{bottom:517.803555px;}
.y1307_c00002{bottom:517.803915px;}
.y10e6_c00002{bottom:517.804155px;}
.y16a1_c00002{bottom:517.804365px;}
.yedf_c00002{bottom:517.804440px;}
.y2d8_c00002{bottom:518.186880px;}
.ycb5_c00002{bottom:518.341515px;}
.yba7_c00002{bottom:518.342565px;}
.y7f2_c00002{bottom:518.819145px;}
.y524_c00002{bottom:518.819520px;}
.y4e0_c00002{bottom:518.820000px;}
.y78c_c00002{bottom:518.820120px;}
.y542_c00002{bottom:518.820330px;}
.y7aa_c00002{bottom:518.820360px;}
.y501_c00002{bottom:518.822250px;}
.yabb_c00002{bottom:518.938920px;}
.ye83_c00002{bottom:519.062700px;}
.y1675_c00002{bottom:519.067365px;}
.y1b60_c00002{bottom:519.418500px;}
.y18d5_c00002{bottom:519.423000px;}
.y1921_c00002{bottom:520.141500px;}
.y18fb_c00002{bottom:520.198800px;}
.y1902_c00002{bottom:520.258350px;}
.y12aa_c00002{bottom:520.502355px;}
.y1a1a_c00002{bottom:520.863000px;}
.y4f_c00002{bottom:520.885590px;}
.y418_c00002{bottom:520.886640px;}
.y19c9_c00002{bottom:521.340000px;}
.y1990_c00002{bottom:521.399550px;}
.y1997_c00002{bottom:521.522550px;}
.y1ad9_c00002{bottom:521.760600px;}
.y190c_c00002{bottom:522.239550px;}
.y334_c00002{bottom:522.510150px;}
.y382_c00002{bottom:522.513825px;}
.y3a5_c00002{bottom:522.572625px;}
.y1a58_c00002{bottom:522.660555px;}
.yc4d_c00002{bottom:522.901365px;}
.y21c_c00002{bottom:523.052130px;}
.y19a1_c00002{bottom:523.440300px;}
.y352_c00002{bottom:523.832220px;}
.y17e0_c00002{bottom:524.398200px;}
.y197a_c00002{bottom:524.580000px;}
.y297_c00002{bottom:525.091500px;}
.y1745_c00002{bottom:525.301500px;}
.y1428_c00002{bottom:526.020165px;}
.y13cb_c00002{bottom:526.023600px;}
.y1914_c00002{bottom:526.680000px;}
.yf8_c00002{bottom:527.006625px;}
.yf5_c00002{bottom:527.006775px;}
.y87_c00002{bottom:527.007000px;}
.yc51_c00002{bottom:527.338500px;}
.y656_c00002{bottom:527.881050px;}
.y6b7_c00002{bottom:527.881425px;}
.y19a9_c00002{bottom:527.881500px;}
.y916_c00002{bottom:527.882160px;}
.y8c5_c00002{bottom:527.882250px;}
.y93d_c00002{bottom:527.941410px;}
.y6e5_c00002{bottom:527.942175px;}
.y1866_c00002{bottom:527.999491px;}
.y19d3_c00002{bottom:528.059850px;}
.y1a84_c00002{bottom:528.241320px;}
.ya5b_c00002{bottom:528.478230px;}
.yb63_c00002{bottom:528.478830px;}
.ya41_c00002{bottom:528.479730px;}
.ya1a_c00002{bottom:528.481230px;}
.ya09_c00002{bottom:528.481950px;}
.y13f7_c00002{bottom:528.781755px;}
.y14e9_c00002{bottom:529.020000px;}
.y118c_c00002{bottom:529.081500px;}
.y686_c00002{bottom:529.140375px;}
.y8e6_c00002{bottom:529.142265px;}
.y100c_c00002{bottom:529.439115px;}
.yd18_c00002{bottom:529.439610px;}
.ycbf_c00002{bottom:529.440000px;}
.yd35_c00002{bottom:529.440465px;}
.y9ef_c00002{bottom:529.681950px;}
.y2d7_c00002{bottom:529.707000px;}
.y582_c00002{bottom:529.800600px;}
.y872_c00002{bottom:529.801155px;}
.y5f6_c00002{bottom:529.807680px;}
.y89b_c00002{bottom:529.861905px;}
.y623_c00002{bottom:529.868430px;}
.y177b_c00002{bottom:530.034150px;}
.y9b4_c00002{bottom:530.328015px;}
.y761_c00002{bottom:530.338650px;}
.y711_c00002{bottom:530.340300px;}
.y967_c00002{bottom:530.342250px;}
.y99c_c00002{bottom:530.343465px;}
.y169_c00002{bottom:530.670555px;}
.y316_c00002{bottom:530.905875px;}
.yf2_c00002{bottom:530.907975px;}
.y847_c00002{bottom:531.121350px;}
.y5ce_c00002{bottom:531.122595px;}
.y643_c00002{bottom:531.132540px;}
.y11bd_c00002{bottom:531.241500px;}
.y981_c00002{bottom:531.601935px;}
.y72e_c00002{bottom:531.602220px;}
.ycb4_c00002{bottom:531.661635px;}
.yba6_c00002{bottom:531.662685px;}
.y201_c00002{bottom:531.811950px;}
.y23e_c00002{bottom:531.813090px;}
.y3cc_c00002{bottom:531.872490px;}
.y264_c00002{bottom:531.873540px;}
.y44e_c00002{bottom:531.873990px;}
.y1a17_c00002{bottom:532.022700px;}
.yc6b_c00002{bottom:532.439865px;}
.yaec_c00002{bottom:532.440465px;}
.ya8d_c00002{bottom:532.440750px;}
.yb11_c00002{bottom:532.441065px;}
.yc91_c00002{bottom:532.441665px;}
.yb89_c00002{bottom:532.442865px;}
.ybf9_c00002{bottom:532.443390px;}
.yc1e_c00002{bottom:532.444140px;}
.y1528_c00002{bottom:532.562325px;}
.y136b_c00002{bottom:532.562475px;}
.y1329_c00002{bottom:532.562700px;}
.yf06_c00002{bottom:532.563900px;}
.y149c_c00002{bottom:532.563945px;}
.y14ba_c00002{bottom:532.564995px;}
.yf1c_c00002{bottom:532.565100px;}
.yf5d_c00002{bottom:532.565340px;}
.y170e_c00002{bottom:532.566045px;}
.y156d_c00002{bottom:532.566645px;}
.y138e_c00002{bottom:532.567875px;}
.y164b_c00002{bottom:532.568325px;}
.y1041_c00002{bottom:532.568640px;}
.yf7f_c00002{bottom:532.568790px;}
.ydbd_c00002{bottom:532.682280px;}
.y1e8_c00002{bottom:533.071050px;}
.yb4c_c00002{bottom:533.343180px;}
.y12a9_c00002{bottom:533.462700px;}
.yaba_c00002{bottom:533.701035px;}
.yf38_c00002{bottom:533.821380px;}
.y1345_c00002{bottom:533.821965px;}
.y1475_c00002{bottom:533.822430px;}
.ye35_c00002{bottom:534.001800px;}
.yeb2_c00002{bottom:534.002055px;}
.y11f5_c00002{bottom:534.060705px;}
.y11d8_c00002{bottom:534.061605px;}
.yfdd_c00002{bottom:534.061755px;}
.y1089_c00002{bottom:534.062205px;}
.y1146_c00002{bottom:534.062805px;}
.y1125_c00002{bottom:534.062955px;}
.y10e5_c00002{bottom:534.063405px;}
.yede_c00002{bottom:534.063690px;}
.y4e_c00002{bottom:534.205710px;}
.y417_c00002{bottom:534.206760px;}
.y21b_c00002{bottom:534.572250px;}
.y1b19_c00002{bottom:534.723000px;}
.y4df_c00002{bottom:535.020000px;}
.y523_c00002{bottom:535.020120px;}
.y7f1_c00002{bottom:535.078845px;}
.y541_c00002{bottom:535.079580px;}
.y7a9_c00002{bottom:535.079610px;}
.y500_c00002{bottom:535.081500px;}
.y1103_c00002{bottom:535.266405px;}
.y113f_c00002{bottom:535.266705px;}
.y1164_c00002{bottom:535.267305px;}
.y24b_c00002{bottom:535.772190px;}
.y1b3c_c00002{bottom:535.798500px;}
.y1800_c00002{bottom:536.281500px;}
.ye82_c00002{bottom:536.763300px;}
.y178f_c00002{bottom:537.721500px;}
.y17c2_c00002{bottom:537.961500px;}
.y3f6_c00002{bottom:538.347345px;}
.y333_c00002{bottom:538.772250px;}
.y3a4_c00002{bottom:538.772625px;}
.y381_c00002{bottom:538.775325px;}
.y1be_c00002{bottom:539.425950px;}
.y11c_c00002{bottom:539.428950px;}
.y193_c00002{bottom:539.429100px;}
.y13b_c00002{bottom:539.430900px;}
.y351_c00002{bottom:540.032220px;}
.y17df_c00002{bottom:540.598200px;}
.y1b5f_c00002{bottom:541.198500px;}
.y18d4_c00002{bottom:541.203000px;}
.y1920_c00002{bottom:541.260000px;}
.y18fa_c00002{bottom:541.319550px;}
.y1901_c00002{bottom:541.378500px;}
.yde7_c00002{bottom:541.438635px;}
.y1250_c00002{bottom:541.440480px;}
.yd71_c00002{bottom:541.444500px;}
.y1865_c00002{bottom:541.499491px;}
.y168_c00002{bottom:542.128560px;}
.y15aa_c00002{bottom:542.278500px;}
.y15d3_c00002{bottom:542.279415px;}
.y1427_c00002{bottom:542.279865px;}
.y16d5_c00002{bottom:542.281065px;}
.y129f_c00002{bottom:542.281650px;}
.y1453_c00002{bottom:542.281665px;}
.y13ca_c00002{bottom:542.282850px;}
.y12d9_c00002{bottom:542.283315px;}
.yfb6_c00002{bottom:542.401500px;}
.y19c8_c00002{bottom:542.461500px;}
.y198f_c00002{bottom:542.520300px;}
.y1996_c00002{bottom:542.582250px;}
.y86_c00002{bottom:543.207000px;}
.y190b_c00002{bottom:543.358500px;}
.y1744_c00002{bottom:543.481500px;}
.y13f6_c00002{bottom:543.539175px;}
.ya19_c00002{bottom:544.140480px;}
.y6b6_c00002{bottom:544.141125px;}
.y655_c00002{bottom:544.141350px;}
.y915_c00002{bottom:544.141410px;}
.y6e4_c00002{bottom:544.142175px;}
.y8c4_c00002{bottom:544.142550px;}
.ydbc_c00002{bottom:544.202400px;}
.y19a0_c00002{bottom:544.560450px;}
.y12a8_c00002{bottom:544.982820px;}
.y685_c00002{bottom:545.400675px;}
.y8e5_c00002{bottom:545.402565px;}
.y581_c00002{bottom:546.059250px;}
.y871_c00002{bottom:546.059805px;}
.y5cd_c00002{bottom:546.060480px;}
.y89a_c00002{bottom:546.061905px;}
.y5f5_c00002{bottom:546.066930px;}
.y622_c00002{bottom:546.068430px;}
.y642_c00002{bottom:546.072780px;}
.y1aac_c00002{bottom:546.421605px;}
.y18e2_c00002{bottom:546.479433px;}
.y9b3_c00002{bottom:546.588315px;}
.y760_c00002{bottom:546.599550px;}
.y74a_c00002{bottom:546.600000px;}
.y710_c00002{bottom:546.601200px;}
.y966_c00002{bottom:546.602550px;}
.y99b_c00002{bottom:546.603765px;}
.yb4b_c00002{bottom:546.662715px;}
.y4d_c00002{bottom:547.466640px;}
.y416_c00002{bottom:547.467690px;}
.y1913_c00002{bottom:547.740000px;}
.y980_c00002{bottom:547.861185px;}
.y72d_c00002{bottom:547.861470px;}
.y19fa_c00002{bottom:547.983600px;}
.y1939_c00002{bottom:547.983750px;}
.y1954_c00002{bottom:547.984200px;}
.y3cb_c00002{bottom:548.070090px;}
.y263_c00002{bottom:548.070540px;}
.y1e7_c00002{bottom:548.071050px;}
.y200_c00002{bottom:548.071200px;}
.y23d_c00002{bottom:548.071740px;}
.y21a_c00002{bottom:548.072250px;}
.y44d_c00002{bottom:548.073990px;}
.y177a_c00002{bottom:548.574900px;}
.y1a16_c00002{bottom:548.583000px;}
.yc6a_c00002{bottom:548.639865px;}
.yaeb_c00002{bottom:548.640465px;}
.ya8c_c00002{bottom:548.640750px;}
.ybf8_c00002{bottom:548.643390px;}
.yb10_c00002{bottom:548.701365px;}
.yc90_c00002{bottom:548.701965px;}
.yb88_c00002{bottom:548.702115px;}
.yc1d_c00002{bottom:548.704440px;}
.y846_c00002{bottom:548.762100px;}
.y1527_c00002{bottom:548.762325px;}
.y136a_c00002{bottom:548.762475px;}
.y1328_c00002{bottom:548.762700px;}
.yf05_c00002{bottom:548.763900px;}
.y149b_c00002{bottom:548.763945px;}
.y14b9_c00002{bottom:548.764995px;}
.yf5c_c00002{bottom:548.765340px;}
.y170d_c00002{bottom:548.766045px;}
.y156c_c00002{bottom:548.766645px;}
.y138d_c00002{bottom:548.767875px;}
.y164a_c00002{bottom:548.768325px;}
.y1040_c00002{bottom:548.768640px;}
.yf7e_c00002{bottom:548.768790px;}
.yd5b_c00002{bottom:548.819865px;}
.y10b7_c00002{bottom:548.820165px;}
.y13c0_c00002{bottom:548.820315px;}
.y1219_c00002{bottom:548.820465px;}
.y19a8_c00002{bottom:548.941500px;}
.y19d2_c00002{bottom:549.180000px;}
.yc4c_c00002{bottom:549.541665px;}
.ye81_c00002{bottom:549.723060px;}
.yab9_c00002{bottom:549.961935px;}
.yf37_c00002{bottom:550.021380px;}
.y1344_c00002{bottom:550.021965px;}
.ybaa_c00002{bottom:550.378500px;}
.y1474_c00002{bottom:551.462730px;}
.y3f5_c00002{bottom:551.666880px;}
.y4de_c00002{bottom:552.000147px;}
.y14cd_c00002{bottom:552.727845px;}
.y1583_c00002{bottom:552.728445px;}
.y1724_c00002{bottom:552.730245px;}
.ya5a_c00002{bottom:552.898380px;}
.yb62_c00002{bottom:552.898980px;}
.y9ee_c00002{bottom:552.901500px;}
.y1a57_c00002{bottom:553.081305px;}
.y1ad8_c00002{bottom:553.800300px;}
.y332_c00002{bottom:554.972250px;}
.y3a3_c00002{bottom:554.972625px;}
.y380_c00002{bottom:554.974725px;}
.y1864_c00002{bottom:554.999488px;}
.y167_c00002{bottom:555.088905px;}
.y14e7_c00002{bottom:555.598500px;}
.ya18_c00002{bottom:555.599655px;}
.y118b_c00002{bottom:555.660000px;}
.y350_c00002{bottom:556.232220px;}
.y17ff_c00002{bottom:556.261500px;}
.y1b18_c00002{bottom:556.503000px;}
.y17de_c00002{bottom:556.798200px;}
.ydbb_c00002{bottom:557.162160px;}
.y1b3b_c00002{bottom:557.578500px;}
.y11bc_c00002{bottom:557.820000px;}
.ycb3_c00002{bottom:558.242685px;}
.yba5_c00002{bottom:558.243735px;}
.y15d2_c00002{bottom:558.479415px;}
.y1426_c00002{bottom:558.479865px;}
.y1452_c00002{bottom:558.480465px;}
.y1a83_c00002{bottom:558.481020px;}
.y16d4_c00002{bottom:558.481065px;}
.yeb1_c00002{bottom:558.481305px;}
.ye34_c00002{bottom:558.481650px;}
.y13c9_c00002{bottom:558.482850px;}
.y160e_c00002{bottom:558.483165px;}
.y12d8_c00002{bottom:558.483315px;}
.y1306_c00002{bottom:558.484365px;}
.y16a0_c00002{bottom:558.484815px;}
.y178d_c00002{bottom:559.501500px;}
.y13f5_c00002{bottom:559.739175px;}
.y12a7_c00002{bottom:559.742580px;}
.y17c1_c00002{bottom:559.743000px;}
.y6b5_c00002{bottom:560.341125px;}
.y654_c00002{bottom:560.341350px;}
.y914_c00002{bottom:560.341410px;}
.y6e3_c00002{bottom:560.342175px;}
.y8c3_c00002{bottom:560.342550px;}
.y1837_c00002{bottom:560.458500px;}
.y4c_c00002{bottom:560.786760px;}
.y415_c00002{bottom:560.787810px;}
.ye80_c00002{bottom:561.182820px;}
.y684_c00002{bottom:561.600675px;}
.y8e4_c00002{bottom:561.602565px;}
.y1742_c00002{bottom:561.661500px;}
.y580_c00002{bottom:562.259250px;}
.y870_c00002{bottom:562.259805px;}
.y5cc_c00002{bottom:562.260480px;}
.y899_c00002{bottom:562.261905px;}
.y845_c00002{bottom:562.262100px;}
.y191f_c00002{bottom:562.320000px;}
.y18f9_c00002{bottom:562.379250px;}
.y1900_c00002{bottom:562.498650px;}
.y110_c00002{bottom:562.585725px;}
.y32f_c00002{bottom:562.586190px;}
.y9b2_c00002{bottom:562.788315px;}
.y70f_c00002{bottom:562.799400px;}
.y75f_c00002{bottom:562.799550px;}
.y749_c00002{bottom:562.800000px;}
.y99a_c00002{bottom:562.803765px;}
.yc4b_c00002{bottom:562.861785px;}
.y1b5e_c00002{bottom:562.978500px;}
.y18d3_c00002{bottom:562.981500px;}
.y19c7_c00002{bottom:563.521500px;}
.y8bc_c00002{bottom:563.525625px;}
.y198e_c00002{bottom:563.640450px;}
.y1995_c00002{bottom:563.701800px;}
.y1bd_c00002{bottom:563.904600px;}
.y11b_c00002{bottom:563.908800px;}
.y192_c00002{bottom:563.908950px;}
.y13a_c00002{bottom:563.910750px;}
.y97f_c00002{bottom:564.060585px;}
.y72c_c00002{bottom:564.061470px;}
.y197e_c00002{bottom:564.180450px;}
.y262_c00002{bottom:564.269940px;}
.y3ca_c00002{bottom:564.270090px;}
.y1e6_c00002{bottom:564.271050px;}
.y1ff_c00002{bottom:564.271200px;}
.y23c_c00002{bottom:564.271740px;}
.y219_c00002{bottom:564.272250px;}
.y44c_c00002{bottom:564.273990px;}
.y190a_c00002{bottom:564.418200px;}
.yc69_c00002{bottom:564.900165px;}
.yaea_c00002{bottom:564.900765px;}
.ya8b_c00002{bottom:564.901050px;}
.yb0f_c00002{bottom:564.901365px;}
.yc8f_c00002{bottom:564.901965px;}
.yb87_c00002{bottom:564.902115px;}
.ybf7_c00002{bottom:564.903690px;}
.yc1c_c00002{bottom:564.904440px;}
.y1526_c00002{bottom:564.962325px;}
.y1369_c00002{bottom:564.962475px;}
.yf04_c00002{bottom:564.962700px;}
.yf5b_c00002{bottom:564.965340px;}
.y138c_c00002{bottom:564.967875px;}
.y1649_c00002{bottom:564.968325px;}
.y103f_c00002{bottom:564.968640px;}
.yf7d_c00002{bottom:564.968790px;}
.y3f4_c00002{bottom:564.987000px;}
.yb4f_c00002{bottom:565.380000px;}
.y199f_c00002{bottom:565.620750px;}
.yde6_c00002{bottom:565.919085px;}
.y124f_c00002{bottom:565.920930px;}
.y1279_c00002{bottom:565.921830px;}
.yd70_c00002{bottom:565.923150px;}
.yab8_c00002{bottom:566.161935px;}
.yf36_c00002{bottom:566.221380px;}
.y618_c00002{bottom:566.229480px;}
.y166_c00002{bottom:566.609025px;}
.y1779_c00002{bottom:567.115200px;}
.y1343_c00002{bottom:567.662265px;}
.y15fa_c00002{bottom:568.140000px;}
.y158e_c00002{bottom:568.142685px;}
.y14d9_c00002{bottom:568.143030px;}
.y159f_c00002{bottom:568.143150px;}
.y1730_c00002{bottom:568.145550px;}
.y1863_c00002{bottom:568.499485px;}
.ydba_c00002{bottom:568.621920px;}
.y1912_c00002{bottom:568.860000px;}
.y153d_c00002{bottom:568.925475px;}
.y13a3_c00002{bottom:568.930275px;}
.y165a_c00002{bottom:568.932075px;}
.yfb5_c00002{bottom:568.980000px;}
.y19f9_c00002{bottom:569.042850px;}
.y1938_c00002{bottom:569.043450px;}
.y1953_c00002{bottom:569.043900px;}
.y9ed_c00002{bottom:569.101500px;}
.ya17_c00002{bottom:569.160000px;}
.y19a7_c00002{bottom:570.060000px;}
.y19d1_c00002{bottom:570.240300px;}
.y331_c00002{bottom:571.172250px;}
.y3a2_c00002{bottom:571.172625px;}
.y37f_c00002{bottom:571.174125px;}
.ybb7_c00002{bottom:571.258500px;}
.ycb2_c00002{bottom:571.562220px;}
.yba4_c00002{bottom:571.563270px;}
.y34f_c00002{bottom:572.432220px;}
.y17dd_c00002{bottom:572.998200px;}
.yb4a_c00002{bottom:573.242565px;}
.ycbe_c00002{bottom:573.720282px;}
.y15d1_c00002{bottom:574.679415px;}
.y1425_c00002{bottom:574.679865px;}
.y1451_c00002{bottom:574.680465px;}
.y16d3_c00002{bottom:574.681065px;}
.yeb0_c00002{bottom:574.681305px;}
.ye33_c00002{bottom:574.681650px;}
.y11f4_c00002{bottom:574.682055px;}
.y12d7_c00002{bottom:574.682115px;}
.y13c8_c00002{bottom:574.682850px;}
.yfdc_c00002{bottom:574.683105px;}
.y160d_c00002{bottom:574.683165px;}
.y11d7_c00002{bottom:574.683555px;}
.y1305_c00002{bottom:574.683765px;}
.y1088_c00002{bottom:574.684155px;}
.y1124_c00002{bottom:574.684305px;}
.yedd_c00002{bottom:574.684440px;}
.y169f_c00002{bottom:574.684815px;}
.y10e4_c00002{bottom:574.685355px;}
.y4dd_c00002{bottom:575.100147px;}
.y18b7_c00002{bottom:575.758500px;}
.ybb6_c00002{bottom:575.881500px;}
.y13f4_c00002{bottom:575.939175px;}
.ye7f_c00002{bottom:575.942580px;}
.y17fd_c00002{bottom:576.241500px;}
.y6b4_c00002{bottom:576.541125px;}
.y653_c00002{bottom:576.541350px;}
.y913_c00002{bottom:576.541410px;}
.y6e2_c00002{bottom:576.542175px;}
.y1aab_c00002{bottom:577.201560px;}
.y683_c00002{bottom:577.800675px;}
.y8e3_c00002{bottom:577.802565px;}
.y1b17_c00002{bottom:578.281500px;}
.y57f_c00002{bottom:578.459250px;}
.y86f_c00002{bottom:578.459805px;}
.y5cb_c00002{bottom:578.460480px;}
.y898_c00002{bottom:578.461905px;}
.y621_c00002{bottom:578.468430px;}
.y61a_c00002{bottom:578.469180px;}
.y9b1_c00002{bottom:578.988315px;}
.y70e_c00002{bottom:578.999400px;}
.y75e_c00002{bottom:578.999550px;}
.y748_c00002{bottom:579.000000px;}
.y999_c00002{bottom:579.003765px;}
.y1b3a_c00002{bottom:579.358500px;}
.y844_c00002{bottom:579.721350px;}
.y8bb_c00002{bottom:579.725625px;}
.y1741_c00002{bottom:579.841500px;}
.y11a_c00002{bottom:579.928950px;}
.y97e_c00002{bottom:580.259985px;}
.y72b_c00002{bottom:580.261470px;}
.y4b_c00002{bottom:580.464360px;}
.y3d_c00002{bottom:580.464960px;}
.y414_c00002{bottom:580.465410px;}
.y40a_c00002{bottom:580.466010px;}
.y21_c00002{bottom:580.467000px;}
.y261_c00002{bottom:580.469340px;}
.y14_c00002{bottom:580.470000px;}
.y3c9_c00002{bottom:580.470090px;}
.y1e5_c00002{bottom:580.471050px;}
.y1fe_c00002{bottom:580.471200px;}
.y23b_c00002{bottom:580.471740px;}
.y218_c00002{bottom:580.472250px;}
.y44b_c00002{bottom:580.473990px;}
.y1836_c00002{bottom:580.618500px;}
.yc68_c00002{bottom:581.100165px;}
.yae9_c00002{bottom:581.100765px;}
.ya8a_c00002{bottom:581.101050px;}
.yb0e_c00002{bottom:581.101365px;}
.yc8e_c00002{bottom:581.101965px;}
.yb86_c00002{bottom:581.102115px;}
.ybf6_c00002{bottom:581.103090px;}
.yc1b_c00002{bottom:581.104440px;}
.yf03_c00002{bottom:581.161500px;}
.yf5a_c00002{bottom:581.164740px;}
.y103e_c00002{bottom:581.227890px;}
.yf7c_c00002{bottom:581.228040px;}
.y178c_c00002{bottom:581.281500px;}
.y17c0_c00002{bottom:581.523000px;}
.yc4f_c00002{bottom:581.580000px;}
.ydb9_c00002{bottom:581.581680px;}
.y1862_c00002{bottom:581.999482px;}
.y1188_c00002{bottom:582.238500px;}
.yab7_c00002{bottom:582.361935px;}
.y617_c00002{bottom:582.429480px;}
.y2f_c00002{bottom:583.167510px;}
.y165_c00002{bottom:583.230975px;}
.y191e_c00002{bottom:583.440000px;}
.y18f8_c00002{bottom:583.498200px;}
.y1a56_c00002{bottom:583.501410px;}
.y18ff_c00002{bottom:583.558950px;}
.yf35_c00002{bottom:583.923180px;}
.y15c3_c00002{bottom:584.340000px;}
.y1549_c00002{bottom:584.340540px;}
.y13ae_c00002{bottom:584.345895px;}
.y1667_c00002{bottom:584.347140px;}
.y11bb_c00002{bottom:584.460000px;}
.y1b5d_c00002{bottom:584.758500px;}
.y18d2_c00002{bottom:584.761500px;}
.ycb1_c00002{bottom:584.882340px;}
.yba3_c00002{bottom:584.883390px;}
.y1055_c00002{bottom:585.129090px;}
.yf93_c00002{bottom:585.131190px;}
.y1909_c00002{bottom:585.538950px;}
.y1778_c00002{bottom:585.654900px;}
.y1ad7_c00002{bottom:585.840600px;}
.y1989_c00002{bottom:586.079850px;}
.y9ec_c00002{bottom:586.080117px;}
.y18e6_c00002{bottom:586.080633px;}
.yb5b_c00002{bottom:586.260000px;}
.yb49_c00002{bottom:586.562685px;}
.y34e_c00002{bottom:586.890225px;}
.ycbd_c00002{bottom:587.039817px;}
.y1976_c00002{bottom:587.341833px;}
.y85_c00002{bottom:587.488031px;}
.y4dc_c00002{bottom:588.420267px;}
.y1a82_c00002{bottom:588.721260px;}
.y17dc_c00002{bottom:589.198200px;}
.yc4a_c00002{bottom:589.501485px;}
.y1911_c00002{bottom:589.920000px;}
.y1a15_c00002{bottom:590.160750px;}
.y1952_c00002{bottom:590.163450px;}
.y1937_c00002{bottom:590.164200px;}
.y1473_c00002{bottom:590.342580px;}
.yde5_c00002{bottom:590.398935px;}
.y124e_c00002{bottom:590.400780px;}
.y1278_c00002{bottom:590.401680px;}
.yd6f_c00002{bottom:590.401800px;}
.yb5a_c00002{bottom:590.878500px;}
.y1424_c00002{bottom:590.879865px;}
.yeaf_c00002{bottom:590.880105px;}
.y12d6_c00002{bottom:590.880915px;}
.ye32_c00002{bottom:590.881650px;}
.y13c7_c00002{bottom:590.882850px;}
.y15d0_c00002{bottom:590.939115px;}
.y1450_c00002{bottom:590.940165px;}
.y16d2_c00002{bottom:590.940315px;}
.y11f3_c00002{bottom:590.941305px;}
.yfdb_c00002{bottom:590.942805px;}
.y160c_c00002{bottom:590.942865px;}
.y1087_c00002{bottom:590.943405px;}
.y1304_c00002{bottom:590.943465px;}
.yedc_c00002{bottom:590.943690px;}
.y1123_c00002{bottom:590.944005px;}
.y169e_c00002{bottom:590.944065px;}
.y10e3_c00002{bottom:590.944605px;}
.y1bc_c00002{bottom:591.984450px;}
.y191_c00002{bottom:591.988800px;}
.y139_c00002{bottom:591.990600px;}
.y13f3_c00002{bottom:592.199475px;}
.ye7e_c00002{bottom:592.202880px;}
.y6b3_c00002{bottom:592.741125px;}
.y652_c00002{bottom:592.741350px;}
.y912_c00002{bottom:592.741410px;}
.y93c_c00002{bottom:592.801710px;}
.y6e1_c00002{bottom:592.802475px;}
.ydb8_c00002{bottom:593.101800px;}
.y119_c00002{bottom:593.249070px;}
.y18b6_c00002{bottom:593.938500px;}
.y682_c00002{bottom:594.060975px;}
.y8e2_c00002{bottom:594.062865px;}
.y72a_c00002{bottom:594.661470px;}
.y164_c00002{bottom:594.688980px;}
.y57e_c00002{bottom:594.720150px;}
.y5ca_c00002{bottom:594.720180px;}
.y86e_c00002{bottom:594.720705px;}
.y897_c00002{bottom:594.722205px;}
.y8ba_c00002{bottom:594.724455px;}
.y620_c00002{bottom:594.728130px;}
.y619_c00002{bottom:594.729480px;}
.y787_c00002{bottom:595.021200px;}
.y965_c00002{bottom:595.199550px;}
.y998_c00002{bottom:595.203765px;}
.y9b0_c00002{bottom:595.248615px;}
.y1861_c00002{bottom:595.499482px;}
.yfb2_c00002{bottom:595.558500px;}
.y330_c00002{bottom:595.652100px;}
.y37e_c00002{bottom:595.654575px;}
.y1b1_c00002{bottom:595.884750px;}
.y17fc_c00002{bottom:596.221500px;}
.y97d_c00002{bottom:596.459385px;}
.y3c_c00002{bottom:596.664960px;}
.y409_c00002{bottom:596.666010px;}
.y20_c00002{bottom:596.667000px;}
.y13_c00002{bottom:596.668200px;}
.y1e4_c00002{bottom:596.669250px;}
.y1fd_c00002{bottom:596.669400px;}
.y23a_c00002{bottom:596.671740px;}
.y4a_c00002{bottom:596.726460px;}
.y413_c00002{bottom:596.727510px;}
.y260_c00002{bottom:596.730240px;}
.y3c8_c00002{bottom:596.731590px;}
.y44a_c00002{bottom:596.733240px;}
.y217_c00002{bottom:596.733750px;}
.yc67_c00002{bottom:597.300165px;}
.yae8_c00002{bottom:597.300765px;}
.ya89_c00002{bottom:597.301050px;}
.yb0d_c00002{bottom:597.301365px;}
.yc8d_c00002{bottom:597.301965px;}
.yb85_c00002{bottom:597.302115px;}
.ybf5_c00002{bottom:597.302490px;}
.yc1a_c00002{bottom:597.304440px;}
.y2e_c00002{bottom:597.991140px;}
.y1740_c00002{bottom:598.021500px;}
.ycb0_c00002{bottom:598.202460px;}
.yba2_c00002{bottom:598.203510px;}
.y34d_c00002{bottom:598.351170px;}
.yab6_c00002{bottom:598.561935px;}
.y616_c00002{bottom:598.629480px;}
.y146e_c00002{bottom:599.162700px;}
.y149a_c00002{bottom:599.163945px;}
.yb48_c00002{bottom:599.882805px;}
.y1b16_c00002{bottom:600.061500px;}
.y1061_c00002{bottom:600.604455px;}
.y11ac_c00002{bottom:600.605310px;}
.y1001_c00002{bottom:600.605385px;}
.y117b_c00002{bottom:600.605910px;}
.y10b4_c00002{bottom:600.606210px;}
.yfa0_c00002{bottom:600.606540px;}
.y1835_c00002{bottom:600.778500px;}
.y1b39_c00002{bottom:601.138500px;}
.y1472_c00002{bottom:601.862700px;}
.yc5f_c00002{bottom:602.521500px;}
.yc49_c00002{bottom:602.821605px;}
.y178b_c00002{bottom:603.061500px;}
.y17bf_c00002{bottom:603.303000px;}
.y747_c00002{bottom:603.479850px;}
.y70d_c00002{bottom:603.481050px;}
.y1777_c00002{bottom:604.195650px;}
.y19c6_c00002{bottom:604.921500px;}
.y198d_c00002{bottom:604.980150px;}
.y1994_c00002{bottom:605.042550px;}
.y17db_c00002{bottom:605.398200px;}
.y18f3_c00002{bottom:605.939550px;}
.ydb7_c00002{bottom:606.062145px;}
.y729_c00002{bottom:606.181590px;}
.y1b5c_c00002{bottom:606.538500px;}
.y18d1_c00002{bottom:606.543000px;}
.y1342_c00002{bottom:606.603015px;}
.y199e_c00002{bottom:607.020750px;}
.yc5e_c00002{bottom:607.078500px;}
.y15cf_c00002{bottom:607.139115px;}
.y1423_c00002{bottom:607.140165px;}
.y16d1_c00002{bottom:607.140315px;}
.yeae_c00002{bottom:607.140405px;}
.y12d5_c00002{bottom:607.141215px;}
.y11f2_c00002{bottom:607.141305px;}
.ye31_c00002{bottom:607.141950px;}
.yfda_c00002{bottom:607.142805px;}
.y160b_c00002{bottom:607.142865px;}
.y13c6_c00002{bottom:607.143150px;}
.y1086_c00002{bottom:607.143405px;}
.y1303_c00002{bottom:607.143465px;}
.yedb_c00002{bottom:607.143690px;}
.y1122_c00002{bottom:607.144005px;}
.y169d_c00002{bottom:607.144065px;}
.y10e2_c00002{bottom:607.144605px;}
.y1975_c00002{bottom:607.441200px;}
.y1aaa_c00002{bottom:607.982010px;}
.y118_c00002{bottom:608.008830px;}
.y4db_c00002{bottom:608.340417px;}
.y13f2_c00002{bottom:608.399475px;}
.ycbc_c00002{bottom:608.400717px;}
.ye7d_c00002{bottom:608.402880px;}
.y15a9_c00002{bottom:608.821500px;}
.y84_c00002{bottom:608.848931px;}
.y1860_c00002{bottom:608.999479px;}
.y651_c00002{bottom:609.000600px;}
.y6b2_c00002{bottom:609.001425px;}
.y911_c00002{bottom:609.001710px;}
.y6e0_c00002{bottom:609.002475px;}
.y9eb_c00002{bottom:609.180117px;}
.y18e1_c00002{bottom:609.239133px;}
.y681_c00002{bottom:610.260975px;}
.y8e1_c00002{bottom:610.262865px;}
.y5c9_c00002{bottom:610.919580px;}
.y817_c00002{bottom:610.920150px;}
.y11b9_c00002{bottom:611.038500px;}
.y163_c00002{bottom:611.310930px;}
.y9af_c00002{bottom:611.448615px;}
.y19a6_c00002{bottom:611.460000px;}
.y964_c00002{bottom:611.460450px;}
.y997_c00002{bottom:611.463015px;}
.ycaf_c00002{bottom:611.522580px;}
.yba1_c00002{bottom:611.523630px;}
.y786_c00002{bottom:611.581500px;}
.y18b5_c00002{bottom:612.118500px;}
.y57d_c00002{bottom:612.179850px;}
.y843_c00002{bottom:612.179880px;}
.y1a14_c00002{bottom:612.480900px;}
.y97c_c00002{bottom:612.720285px;}
.y49_c00002{bottom:612.926460px;}
.y3b_c00002{bottom:612.927060px;}
.y412_c00002{bottom:612.927510px;}
.y408_c00002{bottom:612.928110px;}
.y1f_c00002{bottom:612.928500px;}
.y25f_c00002{bottom:612.930240px;}
.y12_c00002{bottom:612.931500px;}
.y3c7_c00002{bottom:612.931590px;}
.y1e3_c00002{bottom:612.932550px;}
.y1fc_c00002{bottom:612.932700px;}
.y449_c00002{bottom:612.933240px;}
.y216_c00002{bottom:612.933750px;}
.y239_c00002{bottom:612.933840px;}
.yb47_c00002{bottom:613.202340px;}
.yc66_c00002{bottom:613.559415px;}
.yae7_c00002{bottom:613.560015px;}
.ya88_c00002{bottom:613.560300px;}
.yb0c_c00002{bottom:613.560615px;}
.yc8c_c00002{bottom:613.561215px;}
.yb84_c00002{bottom:613.561815px;}
.ybf4_c00002{bottom:613.562190px;}
.yc19_c00002{bottom:613.563690px;}
.y1a55_c00002{bottom:613.921560px;}
.yde4_c00002{bottom:614.818485px;}
.y124d_c00002{bottom:614.820330px;}
.yab5_c00002{bottom:614.821185px;}
.y1277_c00002{bottom:614.821230px;}
.yd6e_c00002{bottom:614.822550px;}
.y1368_c00002{bottom:615.362475px;}
.y1327_c00002{bottom:615.362700px;}
.y1499_c00002{bottom:615.363945px;}
.y14b8_c00002{bottom:615.364995px;}
.y170c_c00002{bottom:615.366045px;}
.y156b_c00002{bottom:615.366645px;}
.y2d_c00002{bottom:615.629640px;}
.yc48_c00002{bottom:616.141725px;}
.y173f_c00002{bottom:616.201500px;}
.ydb6_c00002{bottom:617.581680px;}
.y1ad6_c00002{bottom:617.881350px;}
.y1341_c00002{bottom:618.062775px;}
.y1a81_c00002{bottom:618.961560px;}
.y16fe_c00002{bottom:619.267395px;}
.y75d_c00002{bottom:619.679400px;}
.y746_c00002{bottom:619.679850px;}
.y70c_c00002{bottom:619.681050px;}
.y190_c00002{bottom:620.068650px;}
.y138_c00002{bottom:620.070450px;}
.y37d_c00002{bottom:620.072325px;}
.y1bb_c00002{bottom:620.124150px;}
.y3a1_c00002{bottom:620.132325px;}
.y1834_c00002{bottom:620.938500px;}
.y728_c00002{bottom:620.939595px;}
.y117_c00002{bottom:621.328950px;}
.y17da_c00002{bottom:621.600000px;}
.y1b15_c00002{bottom:621.843000px;}
.y14e6_c00002{bottom:622.141500px;}
.y1187_c00002{bottom:622.198500px;}
.y185f_c00002{bottom:622.499476px;}
.y1776_c00002{bottom:622.735950px;}
.yf34_c00002{bottom:622.801830px;}
.y162_c00002{bottom:622.831050px;}
.y1b38_c00002{bottom:622.918500px;}
.y144f_c00002{bottom:623.338965px;}
.y15ce_c00002{bottom:623.339115px;}
.y1422_c00002{bottom:623.339565px;}
.y16d0_c00002{bottom:623.340315px;}
.yead_c00002{bottom:623.340405px;}
.y12d4_c00002{bottom:623.341215px;}
.y11f1_c00002{bottom:623.341305px;}
.ye30_c00002{bottom:623.341950px;}
.yfd9_c00002{bottom:623.342805px;}
.y160a_c00002{bottom:623.342865px;}
.y13c5_c00002{bottom:623.343150px;}
.y1085_c00002{bottom:623.343405px;}
.y1302_c00002{bottom:623.343465px;}
.yeda_c00002{bottom:623.343690px;}
.y1121_c00002{bottom:623.344005px;}
.y169c_c00002{bottom:623.344065px;}
.y10e1_c00002{bottom:623.344605px;}
.y1b0_c00002{bottom:624.024450px;}
.y1893_c00002{bottom:624.369300px;}
.y13f1_c00002{bottom:624.599475px;}
.ye7c_c00002{bottom:624.602880px;}
.y191d_c00002{bottom:624.780000px;}
.y178a_c00002{bottom:624.841500px;}
.ycae_c00002{bottom:624.842700px;}
.yba0_c00002{bottom:624.843750px;}
.y18f7_c00002{bottom:624.898200px;}
.y18fe_c00002{bottom:624.958950px;}
.y17be_c00002{bottom:625.081500px;}
.y650_c00002{bottom:625.200600px;}
.y6b1_c00002{bottom:625.201425px;}
.y910_c00002{bottom:625.201710px;}
.y6df_c00002{bottom:625.202475px;}
.y1988_c00002{bottom:626.161500px;}
.y680_c00002{bottom:626.460975px;}
.y8e0_c00002{bottom:626.462865px;}
.yb46_c00002{bottom:626.522460px;}
.y1908_c00002{bottom:626.938950px;}
.y97b_c00002{bottom:627.122040px;}
.ycbb_c00002{bottom:627.779967px;}
.y4da_c00002{bottom:627.780117px;}
.y1974_c00002{bottom:627.781500px;}
.y576_c00002{bottom:627.839730px;}
.y83_c00002{bottom:628.229981px;}
.y1b5b_c00002{bottom:628.318500px;}
.y18d0_c00002{bottom:628.323000px;}
.y48_c00002{bottom:629.126460px;}
.y3a_c00002{bottom:629.127060px;}
.y411_c00002{bottom:629.127510px;}
.y407_c00002{bottom:629.128110px;}
.y1e_c00002{bottom:629.128500px;}
.y11_c00002{bottom:629.129700px;}
.y25e_c00002{bottom:629.130240px;}
.y1e2_c00002{bottom:629.130750px;}
.y1fb_c00002{bottom:629.130900px;}
.y215_c00002{bottom:629.131350px;}
.y3c6_c00002{bottom:629.131590px;}
.y448_c00002{bottom:629.133240px;}
.y238_c00002{bottom:629.133840px;}
.y18e0_c00002{bottom:629.340300px;}
.yc47_c00002{bottom:629.400900px;}
.yc65_c00002{bottom:629.759415px;}
.yae6_c00002{bottom:629.760015px;}
.ya87_c00002{bottom:629.760300px;}
.yb0b_c00002{bottom:629.760615px;}
.yc8b_c00002{bottom:629.761215px;}
.yb83_c00002{bottom:629.761815px;}
.ybf3_c00002{bottom:629.762190px;}
.yc18_c00002{bottom:629.763690px;}
.y9dc_c00002{bottom:630.121200px;}
.y18b4_c00002{bottom:630.298500px;}
.ydb5_c00002{bottom:630.542025px;}
.yab4_c00002{bottom:631.021185px;}
.y1910_c00002{bottom:631.320000px;}
.y1367_c00002{bottom:631.562475px;}
.yf02_c00002{bottom:631.562700px;}
.y1498_c00002{bottom:631.563945px;}
.yf59_c00002{bottom:631.564740px;}
.y1525_c00002{bottom:631.621575px;}
.y1340_c00002{bottom:631.621950px;}
.y14b7_c00002{bottom:631.624245px;}
.y170b_c00002{bottom:631.625295px;}
.y156a_c00002{bottom:631.626345px;}
.y138b_c00002{bottom:631.627125px;}
.y1648_c00002{bottom:631.627575px;}
.y2c_c00002{bottom:631.829640px;}
.yf33_c00002{bottom:634.321950px;}
.y173e_c00002{bottom:634.381500px;}
.yfb1_c00002{bottom:635.518500px;}
.y1634_c00002{bottom:635.525775px;}
.y16fd_c00002{bottom:635.528295px;}
.y161_c00002{bottom:635.790810px;}
.y75c_c00002{bottom:635.879400px;}
.y745_c00002{bottom:635.879850px;}
.y70b_c00002{bottom:635.881050px;}
.y963_c00002{bottom:635.881200px;}
.y996_c00002{bottom:635.883765px;}
.y185e_c00002{bottom:635.999473px;}
.y17fa_c00002{bottom:636.181500px;}
.y727_c00002{bottom:637.139595px;}
.y17d9_c00002{bottom:637.800000px;}
.y97a_c00002{bottom:638.581800px;}
.y1aa9_c00002{bottom:638.761860px;}
.yde3_c00002{bottom:639.298335px;}
.y124c_c00002{bottom:639.300180px;}
.y1276_c00002{bottom:639.300480px;}
.yd6d_c00002{bottom:639.301200px;}
.y15cd_c00002{bottom:639.539115px;}
.y1421_c00002{bottom:639.539565px;}
.y144e_c00002{bottom:639.540165px;}
.y16cf_c00002{bottom:639.540315px;}
.yeac_c00002{bottom:639.540405px;}
.y12d3_c00002{bottom:639.541215px;}
.y11f0_c00002{bottom:639.541305px;}
.ye2f_c00002{bottom:639.541950px;}
.yfd8_c00002{bottom:639.542805px;}
.y1609_c00002{bottom:639.542865px;}
.y13c4_c00002{bottom:639.543150px;}
.y1084_c00002{bottom:639.543405px;}
.y1301_c00002{bottom:639.543465px;}
.yed9_c00002{bottom:639.543690px;}
.y1120_c00002{bottom:639.544005px;}
.y169b_c00002{bottom:639.544065px;}
.y10e0_c00002{bottom:639.544605px;}
.ycad_c00002{bottom:639.841530px;}
.yb45_c00002{bottom:639.842580px;}
.y1892_c00002{bottom:640.749150px;}
.y13f0_c00002{bottom:640.799475px;}
.ye7b_c00002{bottom:640.802880px;}
.y1833_c00002{bottom:641.098500px;}
.y1775_c00002{bottom:641.275650px;}
.y64f_c00002{bottom:641.400600px;}
.y6b0_c00002{bottom:641.401425px;}
.y90f_c00002{bottom:641.401710px;}
.y6de_c00002{bottom:641.402475px;}
.ydb4_c00002{bottom:642.001200px;}
.y8df_c00002{bottom:642.662865px;}
.yc46_c00002{bottom:642.721020px;}
.y1b14_c00002{bottom:643.623000px;}
.y67f_c00002{bottom:644.101275px;}
.y1a54_c00002{bottom:644.341710px;}
.y1ba_c00002{bottom:644.546100px;}
.y18f_c00002{bottom:644.549100px;}
.y116_c00002{bottom:644.550300px;}
.y3a0_c00002{bottom:644.550675px;}
.y37c_c00002{bottom:644.552175px;}
.y1b37_c00002{bottom:644.698500px;}
.y47_c00002{bottom:645.326460px;}
.y39_c00002{bottom:645.327060px;}
.y410_c00002{bottom:645.327510px;}
.y406_c00002{bottom:645.328110px;}
.y1d_c00002{bottom:645.328500px;}
.y10_c00002{bottom:645.329700px;}
.y25d_c00002{bottom:645.330240px;}
.y1e1_c00002{bottom:645.330750px;}
.y1fa_c00002{bottom:645.330900px;}
.y214_c00002{bottom:645.331350px;}
.y3c5_c00002{bottom:645.331590px;}
.y447_c00002{bottom:645.333240px;}
.y237_c00002{bottom:645.333840px;}
.yc64_c00002{bottom:645.959415px;}
.yae5_c00002{bottom:645.960015px;}
.ya86_c00002{bottom:645.960300px;}
.yb0a_c00002{bottom:645.960615px;}
.yc8a_c00002{bottom:645.961215px;}
.yb82_c00002{bottom:645.961815px;}
.ybf2_c00002{bottom:645.962190px;}
.yc17_c00002{bottom:645.963690px;}
.y18f2_c00002{bottom:646.080300px;}
.y19c5_c00002{bottom:646.321500px;}
.y198c_c00002{bottom:646.380150px;}
.y1789_c00002{bottom:646.621500px;}
.y9db_c00002{bottom:646.681500px;}
.y17bd_c00002{bottom:646.861500px;}
.ycba_c00002{bottom:647.100717px;}
.y4d9_c00002{bottom:647.161167px;}
.yab3_c00002{bottom:647.221185px;}
.y160_c00002{bottom:647.249400px;}
.y82_c00002{bottom:647.548931px;}
.y1524_c00002{bottom:647.821575px;}
.yf01_c00002{bottom:647.821950px;}
.y1366_c00002{bottom:647.822775px;}
.y1497_c00002{bottom:647.824245px;}
.yf58_c00002{bottom:647.824440px;}
.y170a_c00002{bottom:647.825295px;}
.y1569_c00002{bottom:647.826345px;}
.y138a_c00002{bottom:647.827125px;}
.y1647_c00002{bottom:647.827575px;}
.y103d_c00002{bottom:647.827890px;}
.yf7b_c00002{bottom:647.828040px;}
.y2b_c00002{bottom:648.088890px;}
.y5c8_c00002{bottom:648.299430px;}
.y199d_c00002{bottom:648.420750px;}
.y18b3_c00002{bottom:648.478500px;}
.y1186_c00002{bottom:648.781500px;}
.y1a80_c00002{bottom:649.201260px;}
.y185d_c00002{bottom:649.499473px;}
.y18df_c00002{bottom:649.680000px;}
.y1ad5_c00002{bottom:649.921050px;}
.y1b5a_c00002{bottom:650.098500px;}
.y18cf_c00002{bottom:650.103000px;}
.y11b8_c00002{bottom:650.941500px;}
.y1633_c00002{bottom:651.725775px;}
.y16fc_c00002{bottom:651.728295px;}
.y744_c00002{bottom:652.079850px;}
.y70a_c00002{bottom:652.081050px;}
.y962_c00002{bottom:652.081200px;}
.y995_c00002{bottom:652.083765px;}
.y9ae_c00002{bottom:652.129065px;}
.y75b_c00002{bottom:652.138650px;}
.y296_c00002{bottom:652.320000px;}
.y173d_c00002{bottom:652.561500px;}
.y19a5_c00002{bottom:652.803000px;}
.y979_c00002{bottom:653.399580px;}
.y726_c00002{bottom:653.399895px;}
.ydb3_c00002{bottom:654.961545px;}
.y17d8_c00002{bottom:655.081350px;}
.y15cc_c00002{bottom:655.798815px;}
.y1420_c00002{bottom:655.799865px;}
.y144d_c00002{bottom:655.800465px;}
.y16ce_c00002{bottom:655.800615px;}
.yeab_c00002{bottom:655.800705px;}
.y12d2_c00002{bottom:655.801515px;}
.y11ef_c00002{bottom:655.801605px;}
.ye2e_c00002{bottom:655.802250px;}
.y13c3_c00002{bottom:655.802400px;}
.yfd7_c00002{bottom:655.802505px;}
.y11d6_c00002{bottom:655.803105px;}
.y1300_c00002{bottom:655.803165px;}
.y1083_c00002{bottom:655.803705px;}
.yed8_c00002{bottom:655.803990px;}
.y169a_c00002{bottom:655.804365px;}
.y10df_c00002{bottom:655.804905px;}
.yc45_c00002{bottom:656.041140px;}
.y13ef_c00002{bottom:657.059775px;}
.y67e_c00002{bottom:657.061035px;}
.ye7a_c00002{bottom:657.062130px;}
.y57c_c00002{bottom:657.119550px;}
.y86d_c00002{bottom:657.120105px;}
.y1a13_c00002{bottom:657.121200px;}
.y5f4_c00002{bottom:657.127230px;}
.y1891_c00002{bottom:657.129000px;}
.y8c2_c00002{bottom:657.600600px;}
.y90e_c00002{bottom:657.601710px;}
.y93b_c00002{bottom:657.662010px;}
.y8de_c00002{bottom:658.922565px;}
.y1774_c00002{bottom:659.816400px;}
.y5c7_c00002{bottom:659.819550px;}
.y15f_c00002{bottom:660.209160px;}
.y1832_c00002{bottom:661.258500px;}
.y46_c00002{bottom:661.585710px;}
.y38_c00002{bottom:661.586310px;}
.y40f_c00002{bottom:661.586760px;}
.y405_c00002{bottom:661.587360px;}
.y1c_c00002{bottom:661.587750px;}
.yf_c00002{bottom:661.589400px;}
.y25c_c00002{bottom:661.589940px;}
.y1e0_c00002{bottom:661.590450px;}
.y1f9_c00002{bottom:661.590600px;}
.y3c4_c00002{bottom:661.590840px;}
.y213_c00002{bottom:661.591050px;}
.y446_c00002{bottom:661.592940px;}
.y236_c00002{bottom:661.593090px;}
.yab2_c00002{bottom:661.619430px;}
.y14e4_c00002{bottom:662.040000px;}
.yfaf_c00002{bottom:662.101500px;}
.ycaa_c00002{bottom:662.939880px;}
.yb41_c00002{bottom:662.940930px;}
.yb2f_c00002{bottom:662.941200px;}
.y185c_c00002{bottom:662.999470px;}
.ycac_c00002{bottom:663.000180px;}
.yb44_c00002{bottom:663.001230px;}
.yde2_c00002{bottom:663.719685px;}
.y124b_c00002{bottom:663.720930px;}
.yd6c_c00002{bottom:663.722550px;}
.ye0c_c00002{bottom:663.778185px;}
.y1275_c00002{bottom:663.779730px;}
.y1523_c00002{bottom:664.021575px;}
.yf00_c00002{bottom:664.021950px;}
.y1365_c00002{bottom:664.022775px;}
.y1496_c00002{bottom:664.024245px;}
.yf57_c00002{bottom:664.024440px;}
.y1709_c00002{bottom:664.025295px;}
.y1568_c00002{bottom:664.026345px;}
.y1389_c00002{bottom:664.027125px;}
.y1646_c00002{bottom:664.027575px;}
.y103c_c00002{bottom:664.027890px;}
.yf7a_c00002{bottom:664.028040px;}
.y2a_c00002{bottom:664.288890px;}
.y1b13_c00002{bottom:665.403000px;}
.yb38_c00002{bottom:665.700180px;}
.y64e_c00002{bottom:665.880450px;}
.y6af_c00002{bottom:665.881875px;}
.y191c_c00002{bottom:666.166500px;}
.y18f6_c00002{bottom:666.239550px;}
.y1b36_c00002{bottom:666.478500px;}
.ycb9_c00002{bottom:666.479967px;}
.ydb2_c00002{bottom:666.481665px;}
.y4d8_c00002{bottom:666.541017px;}
.y18b2_c00002{bottom:666.658500px;}
.y81_c00002{bottom:666.929981px;}
.y1632_c00002{bottom:667.925775px;}
.y16fb_c00002{bottom:667.928295px;}
.y1907_c00002{bottom:668.278650px;}
.y9ad_c00002{bottom:668.329065px;}
.y75a_c00002{bottom:668.338650px;}
.y743_c00002{bottom:668.339100px;}
.y709_c00002{bottom:668.341350px;}
.y961_c00002{bottom:668.341500px;}
.y994_c00002{bottom:668.343015px;}
.y1788_c00002{bottom:668.401500px;}
.y67d_c00002{bottom:668.581155px;}
.y17bc_c00002{bottom:668.643000px;}
.y1b9_c00002{bottom:669.025350px;}
.y18e_c00002{bottom:669.028950px;}
.y115_c00002{bottom:669.030150px;}
.y39f_c00002{bottom:669.030525px;}
.y37b_c00002{bottom:669.032025px;}
.y15a7_c00002{bottom:669.420000px;}
.y1aa8_c00002{bottom:669.541800px;}
.y978_c00002{bottom:669.599580px;}
.y725_c00002{bottom:669.599895px;}
.yc63_c00002{bottom:670.439265px;}
.yae4_c00002{bottom:670.439865px;}
.ya85_c00002{bottom:670.440150px;}
.ybf1_c00002{bottom:670.440840px;}
.y173c_c00002{bottom:670.741500px;}
.y15e_c00002{bottom:671.729280px;}
.y1b59_c00002{bottom:671.878500px;}
.y18ce_c00002{bottom:671.881500px;}
.y15cb_c00002{bottom:671.998815px;}
.y144c_c00002{bottom:671.999265px;}
.y141f_c00002{bottom:671.999865px;}
.y16cd_c00002{bottom:672.000615px;}
.yeaa_c00002{bottom:672.000705px;}
.y12d1_c00002{bottom:672.001515px;}
.y11ee_c00002{bottom:672.001605px;}
.ye2d_c00002{bottom:672.002250px;}
.y13c2_c00002{bottom:672.002400px;}
.yfd6_c00002{bottom:672.002505px;}
.y12ff_c00002{bottom:672.003165px;}
.y1082_c00002{bottom:672.003705px;}
.yed7_c00002{bottom:672.003990px;}
.y1699_c00002{bottom:672.004365px;}
.y10de_c00002{bottom:672.004905px;}
.y190f_c00002{bottom:672.720000px;}
.y5c6_c00002{bottom:672.779310px;}
.yab1_c00002{bottom:673.139550px;}
.y13ee_c00002{bottom:673.259775px;}
.ye79_c00002{bottom:673.262130px;}
.y1890_c00002{bottom:673.508850px;}
.y8c1_c00002{bottom:673.860900px;}
.y93a_c00002{bottom:673.862010px;}
.y90d_c00002{bottom:673.862610px;}
.y17d7_c00002{bottom:674.160000px;}
.y1a53_c00002{bottom:674.761800px;}
.y8dd_c00002{bottom:675.122565px;}
.yc84_c00002{bottom:675.781215px;}
.yb7c_c00002{bottom:675.781815px;}
.y185b_c00002{bottom:676.499467px;}
.y11b7_c00002{bottom:677.581500px;}
.y45_c00002{bottom:677.785710px;}
.y37_c00002{bottom:677.786310px;}
.y40e_c00002{bottom:677.786760px;}
.y404_c00002{bottom:677.787360px;}
.y1b_c00002{bottom:677.787750px;}
.y25b_c00002{bottom:677.789340px;}
.ye_c00002{bottom:677.789400px;}
.y1f8_c00002{bottom:677.790000px;}
.y1df_c00002{bottom:677.790450px;}
.y3c3_c00002{bottom:677.790840px;}
.y212_c00002{bottom:677.791050px;}
.y445_c00002{bottom:677.792940px;}
.y235_c00002{bottom:677.793090px;}
.y1773_c00002{bottom:678.356100px;}
.y295_c00002{bottom:678.903000px;}
.yc43_c00002{bottom:679.199790px;}
.yca9_c00002{bottom:679.200180px;}
.yb2e_c00002{bottom:679.200450px;}
.yb40_c00002{bottom:679.201230px;}
.y1a12_c00002{bottom:679.441350px;}
.ydb1_c00002{bottom:679.441425px;}
.y1a7f_c00002{bottom:679.441500px;}
.y1986_c00002{bottom:679.833300px;}
.y1522_c00002{bottom:680.221575px;}
.yeff_c00002{bottom:680.221950px;}
.y1364_c00002{bottom:680.222775px;}
.y1495_c00002{bottom:680.224245px;}
.yf56_c00002{bottom:680.224440px;}
.y1708_c00002{bottom:680.225295px;}
.y1567_c00002{bottom:680.226345px;}
.y1388_c00002{bottom:680.227125px;}
.y1645_c00002{bottom:680.227575px;}
.y103b_c00002{bottom:680.227890px;}
.yf79_c00002{bottom:680.228040px;}
.yb37_c00002{bottom:680.459940px;}
.y29_c00002{bottom:680.488890px;}
.y1831_c00002{bottom:681.418500px;}
.y57b_c00002{bottom:681.540300px;}
.y86c_c00002{bottom:681.540855px;}
.y5f3_c00002{bottom:681.547980px;}
.y896_c00002{bottom:681.603255px;}
.y61f_c00002{bottom:681.607980px;}
.y253_c00002{bottom:681.690990px;}
.y43d_c00002{bottom:681.693990px;}
.yc3b_c00002{bottom:681.899790px;}
.y1ad4_c00002{bottom:681.961800px;}
.y64d_c00002{bottom:682.080450px;}
.y6ae_c00002{bottom:682.081875px;}
.y6dd_c00002{bottom:682.082325px;}
.y14e2_c00002{bottom:682.741500px;}
.y67c_c00002{bottom:683.341500px;}
.y1631_c00002{bottom:684.125775px;}
.y16fa_c00002{bottom:684.128295px;}
.y5c5_c00002{bottom:684.299430px;}
.y9ac_c00002{bottom:684.529065px;}
.y759_c00002{bottom:684.538650px;}
.y742_c00002{bottom:684.539100px;}
.y708_c00002{bottom:684.540150px;}
.y960_c00002{bottom:684.540300px;}
.y993_c00002{bottom:684.543015px;}
.y15d_c00002{bottom:684.689040px;}
.y18b1_c00002{bottom:684.838500px;}
.y977_c00002{bottom:685.799580px;}
.y724_c00002{bottom:685.799895px;}
.ycb8_c00002{bottom:685.861017px;}
.y4d7_c00002{bottom:685.920267px;}
.yab0_c00002{bottom:686.099310px;}
.y80_c00002{bottom:686.308031px;}
.y1b12_c00002{bottom:687.181500px;}
.y15a6_c00002{bottom:687.362790px;}
.y19c4_c00002{bottom:687.660000px;}
.y198b_c00002{bottom:687.780150px;}
.y15ca_c00002{bottom:688.198815px;}
.ye0b_c00002{bottom:688.198935px;}
.y144b_c00002{bottom:688.199265px;}
.yde1_c00002{bottom:688.199535px;}
.y141e_c00002{bottom:688.199865px;}
.y16cc_c00002{bottom:688.200615px;}
.yea9_c00002{bottom:688.200705px;}
.y1274_c00002{bottom:688.201080px;}
.y124a_c00002{bottom:688.201380px;}
.y12d0_c00002{bottom:688.201515px;}
.y11ed_c00002{bottom:688.201605px;}
.ye2c_c00002{bottom:688.202250px;}
.yd6b_c00002{bottom:688.202400px;}
.yfd5_c00002{bottom:688.202505px;}
.y12fe_c00002{bottom:688.203165px;}
.y1081_c00002{bottom:688.203705px;}
.yed6_c00002{bottom:688.203990px;}
.y1698_c00002{bottom:688.204365px;}
.y10dd_c00002{bottom:688.204905px;}
.y1b35_c00002{bottom:688.258500px;}
.y15a8_c00002{bottom:688.680000px;}
.y1185_c00002{bottom:688.741500px;}
.y173b_c00002{bottom:688.921500px;}
.y13ed_c00002{bottom:689.459775px;}
.ye78_c00002{bottom:689.462130px;}
.y199c_c00002{bottom:689.820750px;}
.y188f_c00002{bottom:689.888700px;}
.y185a_c00002{bottom:689.999464px;}
.y8c0_c00002{bottom:690.060900px;}
.y939_c00002{bottom:690.062010px;}
.y90c_c00002{bottom:690.062610px;}
.y1786_c00002{bottom:690.181500px;}
.y17bb_c00002{bottom:690.423000px;}
.ydb0_c00002{bottom:690.902370px;}
.y3f3_c00002{bottom:692.223000px;}
.y8dc_c00002{bottom:692.762865px;}
.y17d6_c00002{bottom:693.240000px;}
.y1b8_c00002{bottom:693.446700px;}
.y114_c00002{bottom:693.449700px;}
.y39e_c00002{bottom:693.451875px;}
.y37a_c00002{bottom:693.452775px;}
.y1b58_c00002{bottom:693.658500px;}
.y18cd_c00002{bottom:693.661500px;}
.y44_c00002{bottom:693.985710px;}
.y36_c00002{bottom:693.986310px;}
.y40d_c00002{bottom:693.986760px;}
.y403_c00002{bottom:693.987360px;}
.y1a_c00002{bottom:693.987750px;}
.y25a_c00002{bottom:693.988740px;}
.yd_c00002{bottom:693.989400px;}
.y1de_c00002{bottom:693.990450px;}
.y3c2_c00002{bottom:693.990840px;}
.y211_c00002{bottom:693.991050px;}
.y444_c00002{bottom:693.992940px;}
.y234_c00002{bottom:693.993090px;}
.yc62_c00002{bottom:694.860015px;}
.yae3_c00002{bottom:694.860615px;}
.ya84_c00002{bottom:694.860900px;}
.yb09_c00002{bottom:694.861215px;}
.yc89_c00002{bottom:694.861815px;}
.ybf0_c00002{bottom:694.862190px;}
.yb81_c00002{bottom:694.862415px;}
.yc16_c00002{bottom:694.864290px;}
.y785_c00002{bottom:695.162925px;}
.yc42_c00002{bottom:695.399790px;}
.yca8_c00002{bottom:695.400180px;}
.yb2d_c00002{bottom:695.400450px;}
.yb3f_c00002{bottom:695.401230px;}
.y15c_c00002{bottom:696.209160px;}
.yefe_c00002{bottom:696.421950px;}
.y1363_c00002{bottom:696.422775px;}
.y1494_c00002{bottom:696.424245px;}
.yf55_c00002{bottom:696.424440px;}
.y1521_c00002{bottom:696.481875px;}
.yf32_c00002{bottom:696.482250px;}
.y14b6_c00002{bottom:696.484545px;}
.y1707_c00002{bottom:696.485595px;}
.y1566_c00002{bottom:696.486645px;}
.y1387_c00002{bottom:696.487425px;}
.y1644_c00002{bottom:696.487875px;}
.y103a_c00002{bottom:696.488190px;}
.yf78_c00002{bottom:696.488340px;}
.yc3a_c00002{bottom:696.659550px;}
.y28_c00002{bottom:696.688890px;}
.y1772_c00002{bottom:696.896400px;}
.y5c4_c00002{bottom:697.259190px;}
.yaaf_c00002{bottom:697.560255px;}
.y252_c00002{bottom:697.890990px;}
.y43c_c00002{bottom:697.893990px;}
.yb36_c00002{bottom:698.100690px;}
.y64c_c00002{bottom:698.280450px;}
.y6ad_c00002{bottom:698.281875px;}
.y6dc_c00002{bottom:698.342625px;}
.y1a40_c00002{bottom:699.059700px;}
.y67b_c00002{bottom:699.541500px;}
.y1aa7_c00002{bottom:700.321650px;}
.y1630_c00002{bottom:700.385025px;}
.y16f9_c00002{bottom:700.387545px;}
.y15a5_c00002{bottom:700.441500px;}
.y14e1_c00002{bottom:700.682460px;}
.y9ab_c00002{bottom:700.729065px;}
.y758_c00002{bottom:700.738650px;}
.y741_c00002{bottom:700.739100px;}
.y707_c00002{bottom:700.740150px;}
.y95f_c00002{bottom:700.740300px;}
.y992_c00002{bottom:700.743015px;}
.y1830_c00002{bottom:701.578500px;}
.y976_c00002{bottom:701.999580px;}
.yfac_c00002{bottom:702.000000px;}
.y18b0_c00002{bottom:703.018500px;}
.y723_c00002{bottom:703.440195px;}
.y1859_c00002{bottom:703.499464px;}
.ydaf_c00002{bottom:703.862715px;}
.y141d_c00002{bottom:704.399865px;}
.yea8_c00002{bottom:704.400705px;}
.y17f8_c00002{bottom:704.401500px;}
.y12cf_c00002{bottom:704.401515px;}
.ye2b_c00002{bottom:704.402250px;}
.y13c1_c00002{bottom:704.402400px;}
.y15c9_c00002{bottom:704.459115px;}
.y144a_c00002{bottom:704.459565px;}
.y16cb_c00002{bottom:704.460915px;}
.y11ec_c00002{bottom:704.461905px;}
.yfd4_c00002{bottom:704.462205px;}
.y11d5_c00002{bottom:704.462805px;}
.y1080_c00002{bottom:704.463405px;}
.y12fd_c00002{bottom:704.463465px;}
.y1697_c00002{bottom:704.464065px;}
.yed5_c00002{bottom:704.464290px;}
.y10dc_c00002{bottom:704.464605px;}
.y76c_c00002{bottom:704.697900px;}
.y4d6_c00002{bottom:704.880600px;}
.y1a52_c00002{bottom:705.181950px;}
.y7f_c00002{bottom:705.329250px;}
.y293_c00002{bottom:705.477000px;}
.y13ec_c00002{bottom:705.659775px;}
.ye77_c00002{bottom:705.662130px;}
.y8db_c00002{bottom:705.722625px;}
.y57a_c00002{bottom:706.020750px;}
.y86b_c00002{bottom:706.021305px;}
.y895_c00002{bottom:706.024005px;}
.y5f2_c00002{bottom:706.028430px;}
.y61e_c00002{bottom:706.029330px;}
.y188e_c00002{bottom:706.268550px;}
.y1739_c00002{bottom:707.101500px;}
.y191b_c00002{bottom:707.580000px;}
.y18f5_c00002{bottom:707.639550px;}
.y784_c00002{bottom:708.482460px;}
.y5c3_c00002{bottom:708.720135px;}
.y1987_c00002{bottom:708.961500px;}
.y15b_c00002{bottom:709.110330px;}
.y1183_c00002{bottom:709.380000px;}
.y1906_c00002{bottom:709.678650px;}
.y1a7e_c00002{bottom:709.681800px;}
.y1b34_c00002{bottom:710.038500px;}
.y35_c00002{bottom:710.185710px;}
.y402_c00002{bottom:710.186760px;}
.y19_c00002{bottom:710.187750px;}
.yc_c00002{bottom:710.188800px;}
.y1dd_c00002{bottom:710.189850px;}
.y233_c00002{bottom:710.193090px;}
.y43_c00002{bottom:710.244360px;}
.y40c_c00002{bottom:710.245410px;}
.y259_c00002{bottom:710.248440px;}
.y3c1_c00002{bottom:710.250090px;}
.y210_c00002{bottom:710.250300px;}
.y443_c00002{bottom:710.255040px;}
.y486_c00002{bottom:710.255640px;}
.y15a4_c00002{bottom:710.341500px;}
.yaae_c00002{bottom:710.520600px;}
.y27_c00002{bottom:711.448650px;}
.yc41_c00002{bottom:711.599790px;}
.yca7_c00002{bottom:711.600180px;}
.yb2c_c00002{bottom:711.600450px;}
.yb3e_c00002{bottom:711.601230px;}
.y17ba_c00002{bottom:712.203000px;}
.yde0_c00002{bottom:712.679385px;}
.y1249_c00002{bottom:712.681230px;}
.y1520_c00002{bottom:712.681875px;}
.yd6a_c00002{bottom:712.682250px;}
.y1362_c00002{bottom:712.683075px;}
.yf54_c00002{bottom:712.684140px;}
.y1493_c00002{bottom:712.684545px;}
.y1706_c00002{bottom:712.685595px;}
.y1565_c00002{bottom:712.686645px;}
.y1386_c00002{bottom:712.686825px;}
.y1643_c00002{bottom:712.687275px;}
.y1039_c00002{bottom:712.688190px;}
.yf77_c00002{bottom:712.688340px;}
.y14e0_c00002{bottom:713.760585px;}
.y1ad3_c00002{bottom:714.001500px;}
.yc39_c00002{bottom:714.360750px;}
.yb35_c00002{bottom:714.360990px;}
.y64b_c00002{bottom:714.540750px;}
.y6db_c00002{bottom:714.542025px;}
.y6ac_c00002{bottom:714.542175px;}
.y90b_c00002{bottom:714.542460px;}
.ydae_c00002{bottom:715.382250px;}
.y1771_c00002{bottom:715.437150px;}
.y1b57_c00002{bottom:715.438500px;}
.y18cc_c00002{bottom:715.443000px;}
.y67a_c00002{bottom:715.800750px;}
.y18d9_c00002{bottom:716.341500px;}
.y162f_c00002{bottom:716.585025px;}
.y16f8_c00002{bottom:716.587545px;}
.y95e_c00002{bottom:716.940300px;}
.y991_c00002{bottom:716.943015px;}
.y9aa_c00002{bottom:716.987715px;}
.y1858_c00002{bottom:716.999461px;}
.y8da_c00002{bottom:717.242745px;}
.y11b6_c00002{bottom:717.480000px;}
.y705_c00002{bottom:717.659730px;}
.y1b7_c00002{bottom:717.925950px;}
.y113_c00002{bottom:717.930150px;}
.y39d_c00002{bottom:717.932325px;}
.y379_c00002{bottom:717.932625px;}
.y975_c00002{bottom:718.259880px;}
.y3f1_c00002{bottom:718.797000px;}
.yc61_c00002{bottom:719.339865px;}
.yae2_c00002{bottom:719.340465px;}
.ya83_c00002{bottom:719.340750px;}
.yb08_c00002{bottom:719.341065px;}
.yc88_c00002{bottom:719.341665px;}
.ybef_c00002{bottom:719.342040px;}
.yb80_c00002{bottom:719.342265px;}
.yc15_c00002{bottom:719.344140px;}
.y13eb_c00002{bottom:720.121305px;}
.y15a_c00002{bottom:720.630450px;}
.yea7_c00002{bottom:720.659955px;}
.y12ce_c00002{bottom:720.660765px;}
.ye2a_c00002{bottom:720.661500px;}
.y11eb_c00002{bottom:720.661905px;}
.yfd3_c00002{bottom:720.662205px;}
.y107f_c00002{bottom:720.663405px;}
.y12fc_c00002{bottom:720.663465px;}
.y1696_c00002{bottom:720.664065px;}
.yed4_c00002{bottom:720.664290px;}
.y10db_c00002{bottom:720.664605px;}
.y18af_c00002{bottom:721.198500px;}
.y1a3f_c00002{bottom:721.379850px;}
.y1a11_c00002{bottom:721.381050px;}
.y5c2_c00002{bottom:721.680480px;}
.y182f_c00002{bottom:721.738500px;}
.y783_c00002{bottom:721.802580px;}
.ye76_c00002{bottom:721.921380px;}
.yaad_c00002{bottom:722.040135px;}
.y188d_c00002{bottom:722.648400px;}
.yfa8_c00002{bottom:722.700000px;}
.y15c1_c00002{bottom:722.880000px;}
.y4d5_c00002{bottom:723.240900px;}
.y15a3_c00002{bottom:723.361365px;}
.y14df_c00002{bottom:723.660000px;}
.y7e_c00002{bottom:723.688950px;}
.y42_c00002{bottom:726.444360px;}
.y34_c00002{bottom:726.445410px;}
.y401_c00002{bottom:726.446010px;}
.y18_c00002{bottom:726.447000px;}
.y258_c00002{bottom:726.448440px;}
.yb_c00002{bottom:726.448500px;}
.y1dc_c00002{bottom:726.449100px;}
.y20f_c00002{bottom:726.449700px;}
.y3c0_c00002{bottom:726.450090px;}
.y442_c00002{bottom:726.452040px;}
.y485_c00002{bottom:726.452190px;}
.y232_c00002{bottom:726.452340px;}
.y1182_c00002{bottom:727.321290px;}
.y15c0_c00002{bottom:727.498500px;}
.y26_c00002{bottom:727.707900px;}
.yc40_c00002{bottom:727.859040px;}
.yca6_c00002{bottom:727.859430px;}
.yb3d_c00002{bottom:727.860480px;}
.yb2b_c00002{bottom:727.860750px;}
.y1184_c00002{bottom:728.640000px;}
.y19bb_c00002{bottom:728.640015px;}
.y18f1_c00002{bottom:728.820000px;}
.ye0a_c00002{bottom:728.878785px;}
.yddf_c00002{bottom:728.879385px;}
.y141c_c00002{bottom:728.880315px;}
.y1273_c00002{bottom:728.880330px;}
.y1248_c00002{bottom:728.881230px;}
.y151f_c00002{bottom:728.881875px;}
.yd69_c00002{bottom:728.882250px;}
.y1361_c00002{bottom:728.883075px;}
.yf53_c00002{bottom:728.884140px;}
.y1492_c00002{bottom:728.884545px;}
.y1705_c00002{bottom:728.885595px;}
.y1385_c00002{bottom:728.886225px;}
.y1564_c00002{bottom:728.886645px;}
.y1642_c00002{bottom:728.886675px;}
.y1038_c00002{bottom:728.888190px;}
.yf76_c00002{bottom:728.888340px;}
.y9da_c00002{bottom:730.260165px;}
.y251_c00002{bottom:730.350690px;}
.y43b_c00002{bottom:730.353240px;}
.y579_c00002{bottom:730.440300px;}
.y86a_c00002{bottom:730.440855px;}
.y13be_c00002{bottom:730.441500px;}
.y5f1_c00002{bottom:730.447980px;}
.y1857_c00002{bottom:730.499458px;}
.y894_c00002{bottom:730.504455px;}
.y61d_c00002{bottom:730.508580px;}
.yc38_c00002{bottom:730.560750px;}
.yb34_c00002{bottom:730.560990px;}
.y6ab_c00002{bottom:730.740375px;}
.y90a_c00002{bottom:730.740660px;}
.y64a_c00002{bottom:730.740750px;}
.y6da_c00002{bottom:730.741425px;}
.y938_c00002{bottom:730.741860px;}
.y1b11_c00002{bottom:730.743000px;}
.y1aa6_c00002{bottom:731.101500px;}
.y13ea_c00002{bottom:731.582250px;}
.y1b33_c00002{bottom:731.818500px;}
.y19bd_c00002{bottom:731.881410px;}
.y679_c00002{bottom:732.000750px;}
.y291_c00002{bottom:732.118500px;}
.y162e_c00002{bottom:732.785025px;}
.y16f7_c00002{bottom:732.787545px;}
.y9a9_c00002{bottom:733.187715px;}
.y5c1_c00002{bottom:733.200600px;}
.y990_c00002{bottom:733.203315px;}
.y159_c00002{bottom:733.590210px;}
.y1770_c00002{bottom:733.977450px;}
.y17b9_c00002{bottom:733.981500px;}
.y1738_c00002{bottom:734.145000px;}
.y1784_c00002{bottom:734.281500px;}
.yaac_c00002{bottom:735.000480px;}
.y782_c00002{bottom:735.122115px;}
.y1a51_c00002{bottom:735.601500px;}
.y974_c00002{bottom:735.900630px;}
.y14fd_c00002{bottom:736.200000px;}
.y12a6_c00002{bottom:736.321380px;}
.y14de_c00002{bottom:736.681500px;}
.yea6_c00002{bottom:736.859955px;}
.ye29_c00002{bottom:736.861500px;}
.y11ea_c00002{bottom:736.861905px;}
.yfd2_c00002{bottom:736.862205px;}
.y107e_c00002{bottom:736.862805px;}
.y111f_c00002{bottom:736.863405px;}
.yed3_c00002{bottom:736.864290px;}
.y10da_c00002{bottom:736.864605px;}
.y9c0_c00002{bottom:737.147565px;}
.y1b56_c00002{bottom:737.218500px;}
.y18cb_c00002{bottom:737.223000px;}
.ye75_c00002{bottom:738.121380px;}
.y11b3_c00002{bottom:738.121500px;}
.y722_c00002{bottom:738.179895px;}
.y19ba_c00002{bottom:738.540015px;}
.y188c_c00002{bottom:739.028250px;}
.y18ae_c00002{bottom:739.378500px;}
.y19bc_c00002{bottom:739.921065px;}
.y1a7d_c00002{bottom:739.921500px;}
.y1181_c00002{bottom:740.400000px;}
.yfa7_c00002{bottom:740.641290px;}
.y14fc_c00002{bottom:740.818500px;}
.y182e_c00002{bottom:741.898500px;}
.yfa9_c00002{bottom:741.960000px;}
.y18d_c00002{bottom:742.350900px;}
.y112_c00002{bottom:742.351500px;}
.y378_c00002{bottom:742.353975px;}
.y1b6_c00002{bottom:742.405200px;}
.y39c_c00002{bottom:742.412775px;}
.y41_c00002{bottom:742.644360px;}
.y33_c00002{bottom:742.645410px;}
.y400_c00002{bottom:742.646010px;}
.y17_c00002{bottom:742.647000px;}
.y257_c00002{bottom:742.648440px;}
.ya_c00002{bottom:742.648500px;}
.y1db_c00002{bottom:742.649100px;}
.y3bf_c00002{bottom:742.650090px;}
.y441_c00002{bottom:742.650840px;}
.y484_c00002{bottom:742.650990px;}
.y231_c00002{bottom:742.652340px;}
.y4cd_c00002{bottom:743.146350px;}
.y9d9_c00002{bottom:743.519925px;}
.y1a3e_c00002{bottom:743.700000px;}
.yc60_c00002{bottom:743.759415px;}
.yae1_c00002{bottom:743.760015px;}
.ya82_c00002{bottom:743.760300px;}
.ybee_c00002{bottom:743.761590px;}
.yb07_c00002{bottom:743.820915px;}
.yc87_c00002{bottom:743.821515px;}
.yb7f_c00002{bottom:743.822115px;}
.yc14_c00002{bottom:743.823990px;}
.y25_c00002{bottom:743.907900px;}
.y1856_c00002{bottom:743.999455px;}
.yc3f_c00002{bottom:744.059040px;}
.yca5_c00002{bottom:744.059430px;}
.yb3c_c00002{bottom:744.060480px;}
.yb2a_c00002{bottom:744.060750px;}
.y15c8_c00002{bottom:745.078665px;}
.ye09_c00002{bottom:745.078785px;}
.ydde_c00002{bottom:745.079385px;}
.y141b_c00002{bottom:745.080315px;}
.y1272_c00002{bottom:745.080330px;}
.y16ca_c00002{bottom:745.080465px;}
.y1247_c00002{bottom:745.081230px;}
.y151e_c00002{bottom:745.081875px;}
.y12cd_c00002{bottom:745.082115px;}
.yd68_c00002{bottom:745.082250px;}
.y1360_c00002{bottom:745.083075px;}
.yf52_c00002{bottom:745.084140px;}
.y1491_c00002{bottom:745.084545px;}
.y1704_c00002{bottom:745.085595px;}
.y1384_c00002{bottom:745.085625px;}
.y1641_c00002{bottom:745.086075px;}
.y1563_c00002{bottom:745.086645px;}
.y1037_c00002{bottom:745.088190px;}
.yf75_c00002{bottom:745.088340px;}
.y158_c00002{bottom:745.110330px;}
.y3f0_c00002{bottom:745.437000px;}
.y5c0_c00002{bottom:746.160360px;}
.yaab_c00002{bottom:746.520600px;}
.yc37_c00002{bottom:746.760750px;}
.yb33_c00002{bottom:746.760990px;}
.y17f4_c00002{bottom:746.880000px;}
.y740_c00002{bottom:746.940300px;}
.y6aa_c00002{bottom:746.940375px;}
.y909_c00002{bottom:746.940660px;}
.y649_c00002{bottom:746.940750px;}
.y6d9_c00002{bottom:746.940825px;}
.y4d4_c00002{bottom:746.941500px;}
.y937_c00002{bottom:746.941860px;}
.y7d_c00002{bottom:747.389550px;}
.y12a5_c00002{bottom:747.782325px;}
.y678_c00002{bottom:748.200750px;}
.y1919_c00002{bottom:748.500705px;}
.y15c5_c00002{bottom:748.978065px;}
.y162d_c00002{bottom:748.985025px;}
.y16f6_c00002{bottom:748.987545px;}
.y721_c00002{bottom:749.639655px;}
.y95c_c00002{bottom:750.120030px;}
.y1180_c00002{bottom:750.300000px;}
.y15a2_c00002{bottom:751.560165px;}
.y199b_c00002{bottom:751.562100px;}
.y19ad_c00002{bottom:751.621500px;}
.y194a_c00002{bottom:751.739775px;}
.y193c_c00002{bottom:751.740345px;}
.y19ff_c00002{bottom:751.740360px;}
.y176f_c00002{bottom:752.517750px;}
.ye74_c00002{bottom:752.521380px;}
.y1b10_c00002{bottom:752.523000px;}
.y1b32_c00002{bottom:753.598500px;}
.yfa6_c00002{bottom:753.720000px;}
.y19fd_c00002{bottom:754.440015px;}
.y19f4_c00002{bottom:754.440360px;}
.y578_c00002{bottom:754.920150px;}
.y869_c00002{bottom:754.920705px;}
.y893_c00002{bottom:754.924605px;}
.y5f0_c00002{bottom:754.927830px;}
.y61c_c00002{bottom:754.928730px;}
.y188b_c00002{bottom:755.408100px;}
.y19f1_c00002{bottom:755.698350px;}
.y19de_c00002{bottom:755.761950px;}
.y17b8_c00002{bottom:755.763000px;}
.y19e6_c00002{bottom:755.763600px;}
.y1ad1_c00002{bottom:755.938500px;}
.y11b2_c00002{bottom:756.122550px;}
.y9d8_c00002{bottom:756.840045px;}
.y11b4_c00002{bottom:757.378500px;}
.y1855_c00002{bottom:757.499455px;}
.y18ad_c00002{bottom:757.558500px;}
.y5bf_c00002{bottom:757.620120px;}
.y19f6_c00002{bottom:757.664775px;}
.y157_c00002{bottom:758.070090px;}
.y1918_c00002{bottom:758.400705px;}
.y290_c00002{bottom:758.700000px;}
.y40_c00002{bottom:758.844360px;}
.y32_c00002{bottom:758.845410px;}
.y16_c00002{bottom:758.847000px;}
.y256_c00002{bottom:758.848440px;}
.y9_c00002{bottom:758.848500px;}
.y3be_c00002{bottom:758.850090px;}
.y440_c00002{bottom:758.850840px;}
.y483_c00002{bottom:758.850990px;}
.y230_c00002{bottom:758.852340px;}
.y1b55_c00002{bottom:758.998500px;}
.y18ca_c00002{bottom:759.003000px;}
.yaaa_c00002{bottom:759.480360px;}
.y1949_c00002{bottom:759.839775px;}
.y193b_c00002{bottom:759.840345px;}
.y24_c00002{bottom:760.107900px;}
.y17f6_c00002{bottom:760.201500px;}
.yc3e_c00002{bottom:760.259040px;}
.yca4_c00002{bottom:760.259430px;}
.yb3b_c00002{bottom:760.260480px;}
.yb29_c00002{bottom:760.260750px;}
.y1972_c00002{bottom:760.741500px;}
.y19fc_c00002{bottom:761.099775px;}
.y19f3_c00002{bottom:761.100120px;}
.yddd_c00002{bottom:761.279385px;}
.y141a_c00002{bottom:761.280315px;}
.yea5_c00002{bottom:761.280705px;}
.y1246_c00002{bottom:761.281230px;}
.y12cc_c00002{bottom:761.282115px;}
.yd67_c00002{bottom:761.282250px;}
.y135f_c00002{bottom:761.283075px;}
.yf51_c00002{bottom:761.284140px;}
.y1490_c00002{bottom:761.284545px;}
.ye08_c00002{bottom:761.338035px;}
.y15c7_c00002{bottom:761.338965px;}
.y1449_c00002{bottom:761.339565px;}
.y1271_c00002{bottom:761.339580px;}
.y16c9_c00002{bottom:761.340765px;}
.ydad_c00002{bottom:761.341500px;}
.y151d_c00002{bottom:761.342175px;}
.y1608_c00002{bottom:761.342715px;}
.y12fb_c00002{bottom:761.343315px;}
.y1695_c00002{bottom:761.343915px;}
.y14b5_c00002{bottom:761.344845px;}
.y1703_c00002{bottom:761.345895px;}
.y1383_c00002{bottom:761.345925px;}
.y1640_c00002{bottom:761.346375px;}
.y1562_c00002{bottom:761.346945px;}
.y1036_c00002{bottom:761.348490px;}
.yf74_c00002{bottom:761.348640px;}
.y1758_c00002{bottom:761.461500px;}
.y781_c00002{bottom:761.701965px;}
.y182d_c00002{bottom:762.058500px;}
.y19f5_c00002{bottom:762.540360px;}
.y11a1_c00002{bottom:762.840000px;}
.yc36_c00002{bottom:762.960750px;}
.yb32_c00002{bottom:762.960990px;}
.y73f_c00002{bottom:763.140300px;}
.y6a9_c00002{bottom:763.140375px;}
.y908_c00002{bottom:763.140660px;}
.y648_c00002{bottom:763.140750px;}
.y757_c00002{bottom:763.198350px;}
.y720_c00002{bottom:763.200000px;}
.y6d8_c00002{bottom:763.200525px;}
.y936_c00002{bottom:763.201110px;}
.y117f_c00002{bottom:763.321200px;}
.yfa5_c00002{bottom:763.620000px;}
.ye73_c00002{bottom:764.041500px;}
.y15a1_c00002{bottom:764.340045px;}
.y677_c00002{bottom:764.400750px;}
.y14dd_c00002{bottom:764.879700px;}
.y162c_c00002{bottom:765.244725px;}
.y16f5_c00002{bottom:765.247845px;}
.y1a3d_c00002{bottom:766.020150px;}
.y1b5_c00002{bottom:766.823550px;}
.y111_c00002{bottom:766.830750px;}
.y39b_c00002{bottom:766.833525px;}
.y377_c00002{bottom:766.833825px;}
.y11a0_c00002{bottom:767.458500px;}
.yae0_c00002{bottom:768.239865px;}
.ya81_c00002{bottom:768.240150px;}
.yb06_c00002{bottom:768.240465px;}
.ybed_c00002{bottom:768.240840px;}
.yc86_c00002{bottom:768.241065px;}
.yb7e_c00002{bottom:768.241665px;}
.yc13_c00002{bottom:768.243540px;}
.y11b1_c00002{bottom:769.201845px;}
.y156_c00002{bottom:769.531035px;}
.y9d7_c00002{bottom:770.159580px;}
.y5be_c00002{bottom:770.579880px;}
.yaa9_c00002{bottom:770.940120px;}
.y1854_c00002{bottom:770.999452px;}
.y176e_c00002{bottom:771.058500px;}
.y1905_c00002{bottom:771.417150px;}
.y1917_c00002{bottom:771.480000px;}
.y1aa5_c00002{bottom:771.598500px;}
.y1737_c00002{bottom:771.766500px;}
.y188a_c00002{bottom:771.787950px;}
.y3ef_c00002{bottom:772.020000px;}
.y4d3_c00002{bottom:773.639700px;}
.y7c_c00002{bottom:774.088950px;}
.y1b0f_c00002{bottom:774.303000px;}
.y19f0_c00002{bottom:774.418500px;}
.y19dd_c00002{bottom:774.482100px;}
.y19e5_c00002{bottom:774.483750px;}
.y780_c00002{bottom:775.021500px;}
.y31_c00002{bottom:775.045410px;}
.y15_c00002{bottom:775.047000px;}
.y8_c00002{bottom:775.048500px;}
.y22f_c00002{bottom:775.052340px;}
.y3f_c00002{bottom:775.106460px;}
.y40b_c00002{bottom:775.107510px;}
.y23_c00002{bottom:775.109700px;}
.y20e_c00002{bottom:775.110000px;}
.y255_c00002{bottom:775.111140px;}
.y3bd_c00002{bottom:775.112190px;}
.y482_c00002{bottom:775.112490px;}
.y43f_c00002{bottom:775.112940px;}
.y1b31_c00002{bottom:775.378500px;}
.y1a4f_c00002{bottom:775.558500px;}
.y1971_c00002{bottom:775.561200px;}
.y195e_c00002{bottom:775.621050px;}
.y1966_c00002{bottom:775.621500px;}
.y18ac_c00002{bottom:775.738500px;}
.yfcc_c00002{bottom:776.160000px;}
.yc3d_c00002{bottom:776.459040px;}
.yca3_c00002{bottom:776.459430px;}
.yb3a_c00002{bottom:776.460480px;}
.yb28_c00002{bottom:776.460750px;}
.yc44_c00002{bottom:776.519340px;}
.ycab_c00002{bottom:776.519730px;}
.yb43_c00002{bottom:776.520780px;}
.yfa4_c00002{bottom:776.641320px;}
.ye07_c00002{bottom:777.538035px;}
.yddc_c00002{bottom:777.538635px;}
.y15c6_c00002{bottom:777.538965px;}
.y1270_c00002{bottom:777.538980px;}
.y1448_c00002{bottom:777.539565px;}
.y1245_c00002{bottom:777.540480px;}
.y1419_c00002{bottom:777.540615px;}
.y16c8_c00002{bottom:777.540765px;}
.yea4_c00002{bottom:777.541005px;}
.yd66_c00002{bottom:777.541500px;}
.y11e9_c00002{bottom:777.541755px;}
.yfd1_c00002{bottom:777.542055px;}
.y151c_c00002{bottom:777.542175px;}
.y135e_c00002{bottom:777.542325px;}
.y12cb_c00002{bottom:777.542415px;}
.y107d_c00002{bottom:777.542655px;}
.y1607_c00002{bottom:777.542715px;}
.y17b7_c00002{bottom:777.543000px;}
.y111e_c00002{bottom:777.543255px;}
.y12fa_c00002{bottom:777.543315px;}
.y148f_c00002{bottom:777.543795px;}
.y10d9_c00002{bottom:777.543855px;}
.y1694_c00002{bottom:777.543915px;}
.yf50_c00002{bottom:777.544440px;}
.y14b4_c00002{bottom:777.544845px;}
.y1702_c00002{bottom:777.545895px;}
.y163f_c00002{bottom:777.546375px;}
.y1382_c00002{bottom:777.546525px;}
.y1561_c00002{bottom:777.546945px;}
.y1035_c00002{bottom:777.548490px;}
.yf73_c00002{bottom:777.548640px;}
.y14dc_c00002{bottom:777.659580px;}
.y11b0_c00002{bottom:779.041500px;}
.yc35_c00002{bottom:779.220000px;}
.yb31_c00002{bottom:779.220240px;}
.y756_c00002{bottom:779.398350px;}
.y73e_c00002{bottom:779.399550px;}
.y577_c00002{bottom:779.400000px;}
.y6d7_c00002{bottom:779.400525px;}
.y868_c00002{bottom:779.400555px;}
.y6a8_c00002{bottom:779.400675px;}
.y907_c00002{bottom:779.400960px;}
.y935_c00002{bottom:779.401110px;}
.y98f_c00002{bottom:779.403315px;}
.y892_c00002{bottom:779.403855px;}
.y5ef_c00002{bottom:779.407680px;}
.y61b_c00002{bottom:779.409180px;}
.y1a7b_c00002{bottom:779.698500px;}
.y676_c00002{bottom:780.660000px;}
.y4cc_c00002{bottom:780.766500px;}
.yfca_c00002{bottom:780.778500px;}
.y18c9_c00002{bottom:780.781500px;}
.yed2_c00002{bottom:781.443555px;}
.y162b_c00002{bottom:781.444725px;}
.y16f4_c00002{bottom:781.447845px;}
.y5bd_c00002{bottom:782.100000px;}
.y182c_c00002{bottom:782.218500px;}
.y155_c00002{bottom:782.491380px;}
.y18dd_c00002{bottom:782.640000px;}
.yaa8_c00002{bottom:783.899880px;}
.y1853_c00002{bottom:784.499449px;}
.y1889_c00002{bottom:788.167800px;}
.y1a3c_c00002{bottom:788.340300px;}
.y1a10_c00002{bottom:788.341350px;}
.y176d_c00002{bottom:789.598800px;}
.y14db_c00002{bottom:790.979700px;}
.y1b4_c00002{bottom:791.303400px;}
.y3e_c00002{bottom:791.306460px;}
.y30_c00002{bottom:791.307510px;}
.y7_c00002{bottom:791.310000px;}
.y18c_c00002{bottom:791.310600px;}
.y254_c00002{bottom:791.311140px;}
.y3bc_c00002{bottom:791.312190px;}
.y481_c00002{bottom:791.312490px;}
.y43e_c00002{bottom:791.312940px;}
.y39a_c00002{bottom:791.313375px;}
.y376_c00002{bottom:791.313675px;}
.y22e_c00002{bottom:791.314440px;}
.y117e_c00002{bottom:791.520000px;}
.y11d2_c00002{bottom:791.640000px;}
.y11af_c00002{bottom:792.076590px;}
.y22_c00002{bottom:792.570000px;}
.yc3c_c00002{bottom:792.719340px;}
.yadf_c00002{bottom:792.719715px;}
.yb39_c00002{bottom:792.719730px;}
.ya80_c00002{bottom:792.720000px;}
.ybec_c00002{bottom:792.720090px;}
.yb05_c00002{bottom:792.720315px;}
.yb42_c00002{bottom:792.720780px;}
.yc85_c00002{bottom:792.720915px;}
.yb7d_c00002{bottom:792.721515px;}
.yc12_c00002{bottom:792.723390px;}
.y19ef_c00002{bottom:793.138650px;}
.y19dc_c00002{bottom:793.202250px;}
.y19e4_c00002{bottom:793.203300px;}
.y18ab_c00002{bottom:793.918500px;}
.y18dc_c00002{bottom:793.921350px;}
.yb30_c00002{bottom:793.980000px;}
.y154_c00002{bottom:794.011500px;}
.y1970_c00002{bottom:794.282550px;}
.y1965_c00002{bottom:794.341050px;}
.y195d_c00002{bottom:794.341200px;}
.y43a_c00002{bottom:795.210690px;}
.yaa7_c00002{bottom:795.420000px;}
.y4d2_c00002{bottom:795.840300px;}
.y1b0e_c00002{bottom:796.081500px;}
.y11d1_c00002{bottom:796.258500px;}
.y7b_c00002{bottom:796.287750px;}
.y19e9_c00002{bottom:796.621050px;}
.y9d6_c00002{bottom:796.799880px;}
.y1b30_c00002{bottom:797.158500px;}
.y1852_c00002{bottom:797.999446px;}
.y28e_c00002{bottom:798.603000px;}
.y17b6_c00002{bottom:799.323000px;}
.y182b_c00002{bottom:802.378500px;}
.yd65_c00002{bottom:802.440180px;}
.y1b54_c00002{bottom:802.558500px;}
.y575_c00002{bottom:802.559730px;}
.y18c8_c00002{bottom:802.563000px;}
.y117d_c00002{bottom:804.299880px;}
.y1888_c00002{bottom:804.547650px;}
.yfa3_c00002{bottom:804.840120px;}
.y176c_c00002{bottom:808.139100px;}
.y9d5_c00002{bottom:810.120000px;}
.y1a3b_c00002{bottom:810.660450px;}
.y1a0f_c00002{bottom:810.662100px;}
.y1851_c00002{bottom:811.499446px;}
.y19ee_c00002{bottom:811.858800px;}
.y19db_c00002{bottom:811.922400px;}
.y19e3_c00002{bottom:811.923450px;}
.y18aa_c00002{bottom:812.098500px;}
.y196f_c00002{bottom:813.002700px;}
.y1964_c00002{bottom:813.061200px;}
.y195c_c00002{bottom:813.121650px;}
.y4cb_c00002{bottom:814.966500px;}
.yd64_c00002{bottom:815.760300px;}
.y574_c00002{bottom:815.879850px;}
.y6_c00002{bottom:816.209850px;}
.y18db_c00002{bottom:816.362100px;}
.y1969_c00002{bottom:816.481050px;}
.yfa2_c00002{bottom:817.620000px;}
.y1b0d_c00002{bottom:817.863000px;}
.y1b2f_c00002{bottom:818.938500px;}
.y11ae_c00002{bottom:820.335840px;}
.y1887_c00002{bottom:820.927500px;}
.y17b5_c00002{bottom:821.103000px;}
.y182a_c00002{bottom:822.538500px;}
.y1b53_c00002{bottom:824.338500px;}
.y18c7_c00002{bottom:824.343000px;}
.y1850_c00002{bottom:825.000030px;}
.y28c_c00002{bottom:825.243000px;}
.y176b_c00002{bottom:826.679850px;}
.y1928_c00002{bottom:828.543150px;}
.y1932_c00002{bottom:828.543900px;}
.y192d_c00002{bottom:828.544050px;}
.y17d5_c00002{bottom:829.743000px;}
.y19f8_c00002{bottom:829.804350px;}
.y18a9_c00002{bottom:830.278500px;}
.y19ed_c00002{bottom:830.578950px;}
.y19da_c00002{bottom:830.642550px;}
.y19e2_c00002{bottom:830.643600px;}
.y196e_c00002{bottom:831.722850px;}
.y1963_c00002{bottom:831.781350px;}
.y195b_c00002{bottom:831.841200px;}
.y1a3a_c00002{bottom:832.980600px;}
.y1a0e_c00002{bottom:832.981650px;}
.y19e8_c00002{bottom:834.061350px;}
.y573_c00002{bottom:834.239550px;}
.y5_c00002{bottom:834.690900px;}
.y1886_c00002{bottom:837.307350px;}
.y184f_c00002{bottom:838.500029px;}
.y3ed_c00002{bottom:838.563000px;}
.y18da_c00002{bottom:838.801800px;}
.y1b0c_c00002{bottom:839.643000px;}
.y1b2e_c00002{bottom:840.718500px;}
.y1829_c00002{bottom:842.698500px;}
.y17b4_c00002{bottom:842.881500px;}
.y176a_c00002{bottom:845.220150px;}
.y1b52_c00002{bottom:846.118500px;}
.y18c6_c00002{bottom:846.123000px;}
.y18a8_c00002{bottom:848.458500px;}
.y1927_c00002{bottom:849.182850px;}
.y1931_c00002{bottom:849.183000px;}
.y1935_c00002{bottom:849.183600px;}
.y192c_c00002{bottom:849.183750px;}
.y19ec_c00002{bottom:849.298500px;}
.y19d9_c00002{bottom:849.362700px;}
.y19e1_c00002{bottom:849.363750px;}
.y19cf_c00002{bottom:849.961500px;}
.y196d_c00002{bottom:850.442400px;}
.y19f7_c00002{bottom:850.444050px;}
.y1962_c00002{bottom:850.501500px;}
.y195a_c00002{bottom:850.560750px;}
.y17d4_c00002{bottom:851.523000px;}
.y28b_c00002{bottom:851.818500px;}
.y184e_c00002{bottom:852.000027px;}
.y19e7_c00002{bottom:852.781500px;}
.y1885_c00002{bottom:853.687200px;}
.y1968_c00002{bottom:853.921350px;}
.yfc9_c00002{bottom:854.928750px;}
.y11d0_c00002{bottom:854.938650px;}
.y1170_c00002{bottom:854.938800px;}
.ybb5_c00002{bottom:854.938950px;}
.y100a_c00002{bottom:854.939055px;}
.yfcf_c00002{bottom:854.939100px;}
.y16c2_c00002{bottom:854.939550px;}
.ye27_c00002{bottom:854.940000px;}
.y10b9_c00002{bottom:854.940150px;}
.y15bf_c00002{bottom:854.940450px;}
.y1548_c00002{bottom:854.940540px;}
.y789_c00002{bottom:854.940750px;}
.y119f_c00002{bottom:854.940900px;}
.y1514_c00002{bottom:854.940975px;}
.y14fb_c00002{bottom:854.941155px;}
.y13bd_c00002{bottom:854.941200px;}
.yc5d_c00002{bottom:854.941350px;}
.y15f1_c00002{bottom:854.941365px;}
.yb59_c00002{bottom:854.942250px;}
.y77c_c00002{bottom:854.942550px;}
.y15f8_c00002{bottom:854.942670px;}
.y158d_c00002{bottom:854.942685px;}
.y154c_c00002{bottom:854.942880px;}
.y14d8_c00002{bottom:854.943030px;}
.y159e_c00002{bottom:854.943150px;}
.y146d_c00002{bottom:854.943165px;}
.y1500_c00002{bottom:854.943630px;}
.y704_c00002{bottom:854.943975px;}
.y15ff_c00002{bottom:854.944080px;}
.y129d_c00002{bottom:854.944230px;}
.y9e0_c00002{bottom:854.944245px;}
.y8bf_c00002{bottom:854.944275px;}
.y1211_c00002{bottom:854.944305px;}
.y1596_c00002{bottom:854.944380px;}
.y1060_c00002{bottom:854.944455px;}
.yefd_c00002{bottom:854.944590px;}
.y10a9_c00002{bottom:854.944755px;}
.y16f3_c00002{bottom:854.944815px;}
.y11ab_c00002{bottom:854.945310px;}
.y9ea_c00002{bottom:854.945325px;}
.y1000_c00002{bottom:854.945385px;}
.y1679_c00002{bottom:854.945430px;}
.y172f_c00002{bottom:854.945550px;}
.y95b_c00002{bottom:854.945760px;}
.y13ad_c00002{bottom:854.945895px;}
.y117a_c00002{bottom:854.945910px;}
.yff7_c00002{bottom:854.945955px;}
.y11e7_c00002{bottom:854.946105px;}
.y16c0_c00002{bottom:854.946165px;}
.y10b3_c00002{bottom:854.946210px;}
.y1106_c00002{bottom:854.946255px;}
.yf9f_c00002{bottom:854.946540px;}
.y1141_c00002{bottom:854.946855px;}
.y1326_c00002{bottom:854.946915px;}
.y1666_c00002{bottom:854.947140px;}
.y116b_c00002{bottom:854.947155px;}
.y1628_c00002{bottom:854.947215px;}
.y1676_c00002{bottom:854.947515px;}
.y1736_c00002{bottom:854.947815px;}
.y1503_c00002{bottom:854.948415px;}
.y7d2_c00002{bottom:854.950575px;}
.y7cc_c00002{bottom:854.952375px;}
.y7d7_c00002{bottom:854.952390px;}
.y647_c00002{bottom:854.952990px;}
.y7cf_c00002{bottom:854.954040px;}
.yb27_c00002{bottom:854.958165px;}
.yca2_c00002{bottom:854.958765px;}
.yb9f_c00002{bottom:854.961015px;}
.yc34_c00002{bottom:854.961240px;}
.y1a39_c00002{bottom:855.300750px;}
.y1a0d_c00002{bottom:855.302400px;}
.y1d9_c00002{bottom:855.384450px;}
.y2a4_c00002{bottom:855.387150px;}
.y64_c00002{bottom:855.390150px;}
.y3ba_c00002{bottom:855.392475px;}
.y283_c00002{bottom:855.395070px;}
.y1ad0_c00002{bottom:856.918500px;}
.y1b0b_c00002{bottom:861.423000px;}
.y1b2d_c00002{bottom:862.498500px;}
.y1828_c00002{bottom:862.858500px;}
.y1769_c00002{bottom:863.759850px;}
.y17b3_c00002{bottom:864.663000px;}
.y3ec_c00002{bottom:865.137000px;}
.y184d_c00002{bottom:865.500027px;}
.y18a7_c00002{bottom:866.638500px;}
.y1b51_c00002{bottom:867.898500px;}
.y18c5_c00002{bottom:867.903000px;}
.y19eb_c00002{bottom:868.019850px;}
.y19e0_c00002{bottom:868.082100px;}
.y19d8_c00002{bottom:868.082850px;}
.y1aa4_c00002{bottom:868.798500px;}
.y196c_c00002{bottom:869.162550px;}
.y1961_c00002{bottom:869.221650px;}
.y1959_c00002{bottom:869.280300px;}
.y19fe_c00002{bottom:869.820000px;}
.y1934_c00002{bottom:869.823300px;}
.y192b_c00002{bottom:869.823450px;}
.y1926_c00002{bottom:869.823600px;}
.y1930_c00002{bottom:869.824350px;}
.y1884_c00002{bottom:870.067050px;}
.y19ce_c00002{bottom:870.600750px;}
.y1a4e_c00002{bottom:871.858500px;}
.y1967_c00002{bottom:872.641500px;}
.y17d3_c00002{bottom:873.303000px;}
.yfc8_c00002{bottom:874.909200px;}
.y11cf_c00002{bottom:874.918500px;}
.y116f_c00002{bottom:874.918650px;}
.ybb4_c00002{bottom:874.918800px;}
.y1009_c00002{bottom:874.918905px;}
.yfce_c00002{bottom:874.918950px;}
.ye26_c00002{bottom:874.919850px;}
.y15be_c00002{bottom:874.920300px;}
.y10b8_c00002{bottom:874.920600px;}
.y1547_c00002{bottom:874.920990px;}
.y788_c00002{bottom:874.921200px;}
.y15f0_c00002{bottom:874.921215px;}
.y1513_c00002{bottom:874.921425px;}
.y14fa_c00002{bottom:874.921605px;}
.y13bc_c00002{bottom:874.921650px;}
.yc5c_c00002{bottom:874.921800px;}
.y1674_c00002{bottom:874.922400px;}
.y119e_c00002{bottom:874.922550px;}
.yb58_c00002{bottom:874.922700px;}
.y77b_c00002{bottom:874.923000px;}
.y15f7_c00002{bottom:874.923120px;}
.y158c_c00002{bottom:874.923135px;}
.y154b_c00002{bottom:874.923330px;}
.y14d7_c00002{bottom:874.923480px;}
.y159d_c00002{bottom:874.923600px;}
.y146c_c00002{bottom:874.923615px;}
.y14ff_c00002{bottom:874.924080px;}
.y703_c00002{bottom:874.924425px;}
.yefc_c00002{bottom:874.924440px;}
.y15fe_c00002{bottom:874.924530px;}
.y16f2_c00002{bottom:874.924665px;}
.y129c_c00002{bottom:874.924680px;}
.y9df_c00002{bottom:874.924695px;}
.y8be_c00002{bottom:874.924725px;}
.y1210_c00002{bottom:874.924755px;}
.y1595_c00002{bottom:874.924830px;}
.y105f_c00002{bottom:874.924905px;}
.y95a_c00002{bottom:874.925010px;}
.y9e9_c00002{bottom:874.925175px;}
.y10a8_c00002{bottom:874.925205px;}
.y1678_c00002{bottom:874.925280px;}
.y11e6_c00002{bottom:874.925355px;}
.y10b2_c00002{bottom:874.925460px;}
.y1179_c00002{bottom:874.925760px;}
.yfff_c00002{bottom:874.925835px;}
.y172e_c00002{bottom:874.926000px;}
.y1105_c00002{bottom:874.926105px;}
.y13ac_c00002{bottom:874.926345px;}
.yf9e_c00002{bottom:874.926390px;}
.yff6_c00002{bottom:874.926405px;}
.y16bf_c00002{bottom:874.926615px;}
.y1140_c00002{bottom:874.926705px;}
.y116a_c00002{bottom:874.927005px;}
.y1325_c00002{bottom:874.927365px;}
.y1665_c00002{bottom:874.927590px;}
.y1627_c00002{bottom:874.927665px;}
.y1502_c00002{bottom:874.928865px;}
.y7d1_c00002{bottom:874.931025px;}
.y7cb_c00002{bottom:874.932225px;}
.y7d6_c00002{bottom:874.932240px;}
.y646_c00002{bottom:874.932840px;}
.y7ce_c00002{bottom:874.933290px;}
.yb26_c00002{bottom:874.939815px;}
.yca1_c00002{bottom:874.940415px;}
.yb9e_c00002{bottom:874.942665px;}
.yc33_c00002{bottom:874.942890px;}
.y1d8_c00002{bottom:875.364300px;}
.y2a3_c00002{bottom:875.367000px;}
.y63_c00002{bottom:875.370000px;}
.y3b9_c00002{bottom:875.372325px;}
.y282_c00002{bottom:875.374920px;}
.y1acf_c00002{bottom:876.178500px;}
.y1a38_c00002{bottom:877.620900px;}
.y1a0c_c00002{bottom:877.623150px;}
.y184c_c00002{bottom:879.000026px;}
.y1768_c00002{bottom:882.300600px;}
.y1827_c00002{bottom:883.018500px;}
.y1b0a_c00002{bottom:883.203000px;}
.y1b2c_c00002{bottom:884.278500px;}
.y18a6_c00002{bottom:884.818500px;}
.y17b2_c00002{bottom:886.443000px;}
.y1883_c00002{bottom:886.446900px;}
.y19ea_c00002{bottom:886.740000px;}
.y19df_c00002{bottom:886.802250px;}
.y19d7_c00002{bottom:886.803000px;}
.y1aa3_c00002{bottom:887.338500px;}
.y196b_c00002{bottom:887.882700px;}
.y1960_c00002{bottom:887.941200px;}
.y1958_c00002{bottom:887.999850px;}
.y1b50_c00002{bottom:889.678500px;}
.y18c4_c00002{bottom:889.681500px;}
.y1a4d_c00002{bottom:890.218500px;}
.y1950_c00002{bottom:890.461500px;}
.y192a_c00002{bottom:890.463150px;}
.y1925_c00002{bottom:890.463300px;}
.y192f_c00002{bottom:890.464050px;}
.y19cd_c00002{bottom:891.241500px;}
.y288_c00002{bottom:891.777000px;}
.y184b_c00002{bottom:892.500024px;}
.y1a7a_c00002{bottom:893.098500px;}
.y17d2_c00002{bottom:895.081500px;}
.y1ace_c00002{bottom:895.438500px;}
.y572_c00002{bottom:897.180300px;}
.y4_c00002{bottom:897.628800px;}
.y1a37_c00002{bottom:899.941050px;}
.y1a0b_c00002{bottom:899.943900px;}
.y1767_c00002{bottom:900.840300px;}
.y1882_c00002{bottom:902.826750px;}
.y18a5_c00002{bottom:902.998500px;}
.y1826_c00002{bottom:903.178500px;}
.y1b09_c00002{bottom:904.981500px;}
.y77f_c00002{bottom:905.220000px;}
.y19d6_c00002{bottom:905.703000px;}
.y1aa2_c00002{bottom:905.878500px;}
.y184a_c00002{bottom:906.000023px;}
.y1b2b_c00002{bottom:906.058500px;}
.y196a_c00002{bottom:906.602850px;}
.y195f_c00002{bottom:906.661350px;}
.y1957_c00002{bottom:906.720000px;}
.y17b1_c00002{bottom:908.223000px;}
.y1a4c_c00002{bottom:908.578500px;}
.y1929_c00002{bottom:911.102850px;}
.y1924_c00002{bottom:911.103000px;}
.y1933_c00002{bottom:911.103150px;}
.y192e_c00002{bottom:911.103750px;}
.y1a79_c00002{bottom:911.278500px;}
.y1b4f_c00002{bottom:911.458500px;}
.y18c3_c00002{bottom:911.463000px;}
.y19d0_c00002{bottom:913.620300px;}
.y1acd_c00002{bottom:914.698500px;}
.y571_c00002{bottom:915.780900px;}
.y3_c00002{bottom:916.231200px;}
.y17d1_c00002{bottom:916.863000px;}
.y1881_c00002{bottom:919.206600px;}
.y1766_c00002{bottom:919.381050px;}
.y1849_c00002{bottom:919.500023px;}
.y18a4_c00002{bottom:921.178500px;}
.y1a36_c00002{bottom:922.261200px;}
.y1a0a_c00002{bottom:922.264650px;}
.y1825_c00002{bottom:923.338500px;}
.y1aa1_c00002{bottom:924.418500px;}
.y1956_c00002{bottom:925.620000px;}
.y1b08_c00002{bottom:926.763000px;}
.y1a4b_c00002{bottom:926.938500px;}
.y1b2a_c00002{bottom:927.838500px;}
.y1a78_c00002{bottom:929.458500px;}
.y17b0_c00002{bottom:930.003000px;}
.y78a_c00002{bottom:930.718500px;}
.y1848_c00002{bottom:933.000021px;}
.y1b4e_c00002{bottom:933.238500px;}
.y18c2_c00002{bottom:933.243000px;}
.y1951_c00002{bottom:933.483450px;}
.y1936_c00002{bottom:933.484200px;}
.y1acc_c00002{bottom:933.958500px;}
.y1880_c00002{bottom:935.586450px;}
.y1765_c00002{bottom:937.921800px;}
.y570_c00002{bottom:937.981500px;}
.y2_c00002{bottom:938.430000px;}
.y17d0_c00002{bottom:938.643000px;}
.y18a3_c00002{bottom:939.358500px;}
.y4d1_c00002{bottom:941.100000px;}
.y7a_c00002{bottom:941.547000px;}
.y1aa0_c00002{bottom:942.958500px;}
.y1824_c00002{bottom:943.498500px;}
.y1a4a_c00002{bottom:945.298500px;}
.y1a35_c00002{bottom:945.661200px;}
.y1a09_c00002{bottom:945.664050px;}
.y1847_c00002{bottom:946.500020px;}
.y1a77_c00002{bottom:947.638500px;}
.y1b07_c00002{bottom:948.543000px;}
.y1b29_c00002{bottom:949.618500px;}
.y17af_c00002{bottom:951.781500px;}
.y187f_c00002{bottom:951.966300px;}
.y1acb_c00002{bottom:953.218500px;}
.y1b4d_c00002{bottom:955.018500px;}
.y18c1_c00002{bottom:955.023000px;}
.y1764_c00002{bottom:956.462550px;}
.y4d0_c00002{bottom:957.303585px;}
.y18a2_c00002{bottom:957.538500px;}
.y79_c00002{bottom:957.748830px;}
.y19f2_c00002{bottom:959.878350px;}
.y19d5_c00002{bottom:959.881050px;}
.y1846_c00002{bottom:960.000018px;}
.y17cf_c00002{bottom:960.423000px;}
.y1a9f_c00002{bottom:961.498500px;}
.y4cf_c00002{bottom:962.103000px;}
.y78_c00002{bottom:962.550000px;}
.y1823_c00002{bottom:963.658500px;}
.y1a76_c00002{bottom:965.818500px;}
.y1a34_c00002{bottom:966.900900px;}
.y1a08_c00002{bottom:966.904350px;}
.y187e_c00002{bottom:968.346150px;}
.y1b06_c00002{bottom:970.323000px;}
.y1b28_c00002{bottom:971.398500px;}
.y1aca_c00002{bottom:972.478500px;}
.y1845_c00002{bottom:973.500018px;}
.y17ae_c00002{bottom:973.563000px;}
.y1763_c00002{bottom:975.002850px;}
.y18a1_c00002{bottom:975.718500px;}
.y1b4c_c00002{bottom:976.798500px;}
.y18c0_c00002{bottom:976.803000px;}
.y1a9e_c00002{bottom:980.038500px;}
.y1a49_c00002{bottom:982.018500px;}
.y17ce_c00002{bottom:982.203000px;}
.y1822_c00002{bottom:983.818500px;}
.y1a75_c00002{bottom:983.998500px;}
.y187d_c00002{bottom:984.726000px;}
.y1844_c00002{bottom:987.000017px;}
.y1a33_c00002{bottom:989.221050px;}
.y1a07_c00002{bottom:989.223900px;}
.y1ac8_c00002{bottom:991.738500px;}
.y1b05_c00002{bottom:992.103000px;}
.y1762_c00002{bottom:993.543600px;}
.y18a0_c00002{bottom:993.898500px;}
.y17ac_c00002{bottom:995.343000px;}
.y1a9d_c00002{bottom:998.578500px;}
.y1afd_c00002{bottom:998.581500px;}
.y1a48_c00002{bottom:1000.378500px;}
.y1843_c00002{bottom:1000.500015px;}
.y187c_c00002{bottom:1001.105850px;}
.y1a74_c00002{bottom:1002.178500px;}
.y18bf_c00002{bottom:1003.084800px;}
.y1821_c00002{bottom:1003.978500px;}
.y17cd_c00002{bottom:1003.981500px;}
.y1ac6_c00002{bottom:1010.998500px;}
.y1a32_c00002{bottom:1011.541200px;}
.y1a06_c00002{bottom:1011.544650px;}
.y189f_c00002{bottom:1012.078500px;}
.y1761_c00002{bottom:1012.083900px;}
.y1b04_c00002{bottom:1013.881500px;}
.y1842_c00002{bottom:1014.000014px;}
.y1a9c_c00002{bottom:1017.118500px;}
.y17ab_c00002{bottom:1017.123000px;}
.y187b_c00002{bottom:1017.485700px;}
.y1a47_c00002{bottom:1018.738500px;}
.y1a73_c00002{bottom:1020.358500px;}
.y1afc_c00002{bottom:1020.363000px;}
.y1820_c00002{bottom:1024.138500px;}
.y17cc_c00002{bottom:1025.763000px;}
.y18be_c00002{bottom:1025.944500px;}
.y1841_c00002{bottom:1027.500014px;}
.y189d_c00002{bottom:1030.258500px;}
.y1760_c00002{bottom:1030.623600px;}
.y1a31_c00002{bottom:1033.862550px;}
.y1a05_c00002{bottom:1033.864800px;}
.y187a_c00002{bottom:1033.865550px;}
.y1ac5_c00002{bottom:1034.223000px;}
.y1b03_c00002{bottom:1035.663000px;}
.y17a9_c00002{bottom:1038.903000px;}
.y1a9b_c00002{bottom:1039.441500px;}
.y1a46_c00002{bottom:1040.881500px;}
.y1840_c00002{bottom:1041.000009px;}
.y1b4b_c00002{bottom:1042.138500px;}
.y1afb_c00002{bottom:1042.143000px;}
.y1a72_c00002{bottom:1042.323000px;}
.y19be_c00002{bottom:1043.938500px;}
.y181e_c00002{bottom:1044.298500px;}
.y18bd_c00002{bottom:1044.303000px;}
.y17cb_c00002{bottom:1047.543000px;}
.y189c_c00002{bottom:1048.438500px;}
.y175f_c00002{bottom:1049.164350px;}
.y1879_c00002{bottom:1050.246000px;}
.y183f_c00002{bottom:1054.500005px;}
.y1a30_c00002{bottom:1056.182700px;}
.y1a04_c00002{bottom:1056.184350px;}
.y1b6e_c00002{bottom:1057.443000px;}
.y1877_c00002{bottom:1063.563000px;}
.y191a_c00002{bottom:1063.800000px;}
.y1b26_c00002{bottom:1063.918500px;}
.y181c_c00002{bottom:1064.458500px;}
.y189a_c00002{bottom:1066.618500px;}
.y175e_c00002{bottom:1067.704650px;}
.y183e_c00002{bottom:1068.000000px;}
.y17ca_c00002{bottom:1069.323000px;}
.y1ac4_c00002{bottom:1074.543000px;}
.y1a9a_c00002{bottom:1078.323000px;}
.y1a2f_c00002{bottom:1078.502850px;}
.y1a03_c00002{bottom:1078.503900px;}
.y1a45_c00002{bottom:1079.403000px;}
.y1a71_c00002{bottom:1080.303000px;}
.y183d_c00002{bottom:1081.500000px;}
.y1b4a_c00002{bottom:1085.698500px;}
.y1afa_c00002{bottom:1085.703000px;}
.y175d_c00002{bottom:1086.244350px;}
.y17a6_c00002{bottom:1087.144500px;}
.y17c9_c00002{bottom:1091.103000px;}
.y183c_c00002{bottom:1095.000000px;}
.ya7a_c00002{bottom:1096.634550px;}
.y567_c00002{bottom:1096.635480px;}
.y1875_c00002{bottom:1099.746000px;}
.y1874_c00002{bottom:1101.544500px;}
.y1876_c00002{bottom:1102.264500px;}
.y17a7_c00002{bottom:1104.423000px;}
.y175c_c00002{bottom:1104.784650px;}
.y1b6d_c00002{bottom:1105.503000px;}
.y1a2e_c00002{bottom:1107.302850px;}
.y1a02_c00002{bottom:1107.304500px;}
.y1b25_c00002{bottom:1107.658500px;}
.y1af8_c00002{bottom:1107.661500px;}
.y183b_c00002{bottom:1108.500000px;}
.y72_c00002{bottom:1108.634895px;}
.ya79_c00002{bottom:1108.635720px;}
.y18ef_c00002{bottom:1108.636140px;}
.yd5e_c00002{bottom:1108.636470px;}
.y566_c00002{bottom:1108.636650px;}
.y121c_c00002{bottom:1108.636920px;}
.y166b_c00002{bottom:1108.637850px;}
.y1819_c00002{bottom:1112.881500px;}
.y1ac1_c00002{bottom:1113.238500px;}
.y18bb_c00002{bottom:1113.426000px;}
.y18ba_c00002{bottom:1115.403000px;}
.y1a97_c00002{bottom:1115.578500px;}
.y18bc_c00002{bottom:1116.304500px;}
.y1a43_c00002{bottom:1116.478500px;}
.y1a6e_c00002{bottom:1117.198500px;}
.y1ac3_c00002{bottom:1119.003000px;}
.y71_c00002{bottom:1120.634895px;}
.y18ee_c00002{bottom:1120.636140px;}
.yd5d_c00002{bottom:1120.636470px;}
.y121b_c00002{bottom:1120.636920px;}
.y166a_c00002{bottom:1120.637850px;}
.y1a99_c00002{bottom:1121.161500px;}
.y1a44_c00002{bottom:1121.881500px;}
.y183a_c00002{bottom:1122.000000px;}
.y1a70_c00002{bottom:1122.603000px;}
.y1b02_c00002{bottom:1122.781500px;}
.y1898_c00002{bottom:1124.223000px;}
.y1897_c00002{bottom:1126.023000px;}
.y1899_c00002{bottom:1126.743000px;}
.y1b49_c00002{bottom:1129.438500px;}
.y70_c00002{bottom:1132.636065px;}
.y18ed_c00002{bottom:1132.636140px;}
.yd5c_c00002{bottom:1132.636470px;}
.y121a_c00002{bottom:1132.636920px;}
.y1669_c00002{bottom:1132.637850px;}
.y181a_c00002{bottom:1132.678500px;}
.y1818_c00002{bottom:1134.661500px;}
.y1839_c00002{bottom:1138.503000px;}
.y1873_c00002{bottom:1140.784500px;}
.y175b_c00002{bottom:1141.864500px;}
.y1a00_c00002{bottom:1144.023000px;}
.y1b00_c00002{bottom:1144.381500px;}
.y1a2d_c00002{bottom:1147.623000px;}
.y17a4_c00002{bottom:1148.343000px;}
.y6f_c00002{bottom:1149.988665px;}
.y18f0_c00002{bottom:1149.990390px;}
.y565_c00002{bottom:1149.991500px;}
.yd63_c00002{bottom:1149.992640px;}
.ya78_c00002{bottom:1149.992970px;}
.y17c8_c00002{bottom:1156.443000px;}
.y1895_c00002{bottom:1159.678500px;}
.y18b9_c00002{bottom:1159.864500px;}
.y1ac0_c00002{bottom:1215.303000px;}
.y1a96_c00002{bottom:1215.843000px;}
.y1a42_c00002{bottom:1216.023000px;}
.y1a6d_c00002{bottom:1216.203000px;}
.h3a_c00002{height:4.017780px;}
.ha_c00002{height:4.018950px;}
.h20_c00002{height:4.019535px;}
.h37_c00002{height:4.020120px;}
.h38_c00002{height:4.020705px;}
.h1a_c00002{height:4.021875px;}
.h75_c00002{height:9.000000px;}
.ha1_c00002{height:9.360345px;}
.h12_c00002{height:9.900000px;}
.h40_c00002{height:13.318365px;}
.h41_c00002{height:13.318950px;}
.h1d_c00002{height:13.319535px;}
.h1e_c00002{height:13.320120px;}
.hd3_c00002{height:13.500000px;}
.ha4_c00002{height:14.759760px;}
.hd1_c00002{height:14.760345px;}
.ha3_c00002{height:14.940240px;}
.h7b_c00002{height:15.119550px;}
.h9d_c00002{height:15.300000px;}
.hb_c00002{height:15.477487px;}
.h36_c00002{height:15.477539px;}
.h8f_c00002{height:15.741211px;}
.h87_c00002{height:15.779250px;}
.h8c_c00002{height:15.780450px;}
.h93_c00002{height:16.379850px;}
.h46_c00002{height:16.738500px;}
.h49_c00002{height:16.739100px;}
.h4a_c00002{height:16.739700px;}
.h4b_c00002{height:16.740300px;}
.h4c_c00002{height:16.740750px;}
.hac_c00002{height:16.919550px;}
.had_c00002{height:16.920150px;}
.hc1_c00002{height:17.099400px;}
.hb1_c00002{height:17.100000px;}
.h7d_c00002{height:17.279850px;}
.hc7_c00002{height:17.280450px;}
.hce_c00002{height:17.819550px;}
.hcd_c00002{height:17.820150px;}
.hd2_c00002{height:18.000000px;}
.h73_c00002{height:18.351563px;}
.h64_c00002{height:18.538500px;}
.h67_c00002{height:18.539100px;}
.h69_c00002{height:18.539700px;}
.h68_c00002{height:18.540300px;}
.h6a_c00002{height:18.540750px;}
.h70_c00002{height:18.719550px;}
.h6e_c00002{height:18.720150px;}
.h59_c00002{height:19.979850px;}
.h52_c00002{height:20.158650px;}
.h5a_c00002{height:20.159250px;}
.h55_c00002{height:20.159700px;}
.h56_c00002{height:20.160300px;}
.h8e_c00002{height:20.988281px;}
.hb8_c00002{height:21.059250px;}
.hae_c00002{height:21.420150px;}
.h9f_c00002{height:21.503744px;}
.h76_c00002{height:21.562500px;}
.hc2_c00002{height:21.600000px;}
.h39_c00002{height:21.840820px;}
.h9a_c00002{height:21.853459px;}
.ha6_c00002{height:22.151464px;}
.h2f_c00002{height:22.230000px;}
.ha2_c00002{height:22.339579px;}
.hcf_c00002{height:22.499400px;}
.h9c_c00002{height:22.702887px;}
.hc_c00002{height:22.726620px;}
.h3c_c00002{height:22.726665px;}
.h74_c00002{height:22.939453px;}
.hb5_c00002{height:23.400000px;}
.ha9_c00002{height:23.579850px;}
.h6c_c00002{height:23.940300px;}
.hbe_c00002{height:24.120150px;}
.h80_c00002{height:24.652969px;}
.hca_c00002{height:25.019550px;}
.hda_c00002{height:25.379850px;}
.hd6_c00002{height:25.380450px;}
.hbb_c00002{height:25.442227px;}
.h79_c00002{height:25.702031px;}
.hb2_c00002{height:25.941094px;}
.h63_c00002{height:26.097600px;}
.h61_c00002{height:26.100000px;}
.h18_c00002{height:26.208941px;}
.h34_c00002{height:26.208984px;}
.h8a_c00002{height:26.235352px;}
.hc6_c00002{height:26.439961px;}
.h3f_c00002{height:26.638500px;}
.h1c_c00002{height:26.639700px;}
.h1b_c00002{height:26.640300px;}
.h43_c00002{height:26.640750px;}
.h11_c00002{height:26.675956px;}
.h31_c00002{height:26.676000px;}
.h4d_c00002{height:27.360300px;}
.hd4_c00002{height:27.437695px;}
.h50_c00002{height:28.258650px;}
.h57_c00002{height:28.259700px;}
.h85_c00002{height:28.849219px;}
.h3e_c00002{height:30.835060px;}
.h32_c00002{height:30.955078px;}
.he_c00002{height:31.121956px;}
.h30_c00002{height:31.122000px;}
.h16_c00002{height:31.482369px;}
.h2d_c00002{height:31.482422px;}
.h1f_c00002{height:31.621240px;}
.hd8_c00002{height:32.220150px;}
.h3b_c00002{height:33.119550px;}
.h42_c00002{height:33.120150px;}
.ha0_c00002{height:34.110938px;}
.h89_c00002{height:34.595947px;}
.h9b_c00002{height:34.663202px;}
.h90_c00002{height:34.729661px;}
.h9_c00002{height:34.945313px;}
.h33_c00002{height:34.945356px;}
.ha5_c00002{height:35.136115px;}
.h91_c00002{height:35.243551px;}
.h95_c00002{height:35.319851px;}
.ha7_c00002{height:35.375136px;}
.h9e_c00002{height:35.436805px;}
.h10_c00002{height:35.568000px;}
.h2e_c00002{height:35.568044px;}
.h99_c00002{height:36.010535px;}
.h7_c00002{height:36.114206px;}
.h2c_c00002{height:36.114258px;}
.hd_c00002{height:36.362637px;}
.h3d_c00002{height:36.362726px;}
.h96_c00002{height:36.692707px;}
.h81_c00002{height:36.717319px;}
.h19_c00002{height:36.729440px;}
.h5e_c00002{height:37.336067px;}
.hbc_c00002{height:37.681997px;}
.h48_c00002{height:37.709068px;}
.h5c_c00002{height:37.741069px;}
.hb3_c00002{height:38.171372px;}
.h7c_c00002{height:38.265248px;}
.h7a_c00002{height:38.290912px;}
.h94_c00002{height:38.304617px;}
.hb4_c00002{height:38.412898px;}
.hc8_c00002{height:38.660747px;}
.ha8_c00002{height:38.911765px;}
.h98_c00002{height:39.141291px;}
.h15_c00002{height:39.313433px;}
.h2a_c00002{height:39.313564px;}
.hbd_c00002{height:39.410633px;}
.h5d_c00002{height:39.549500px;}
.h7f_c00002{height:39.597787px;}
.h82_c00002{height:39.793489px;}
.hd5_c00002{height:40.128872px;}
.h47_c00002{height:40.253685px;}
.hc9_c00002{height:40.907234px;}
.h78_c00002{height:41.171380px;}
.h5_c00002{height:41.273438px;}
.h25_c00002{height:41.273489px;}
.h66_c00002{height:41.626758px;}
.h17_c00002{height:41.976563px;}
.h35_c00002{height:41.976615px;}
.h71_c00002{height:42.116484px;}
.h7e_c00002{height:43.292813px;}
.h4f_c00002{height:43.507045px;}
.h86_c00002{height:43.536225px;}
.h72_c00002{height:43.681641px;}
.h65_c00002{height:44.435742px;}
.h6f_c00002{height:44.958516px;}
.h54_c00002{height:45.054844px;}
.h6b_c00002{height:45.281250px;}
.h58_c00002{height:45.895781px;}
.h77_c00002{height:46.127813px;}
.h6_c00002{height:46.432566px;}
.h29_c00002{height:46.432720px;}
.h84_c00002{height:47.136225px;}
.h88_c00002{height:47.152252px;}
.h8_c00002{height:47.223580px;}
.h2b_c00002{height:47.223738px;}
.h97_c00002{height:47.492707px;}
.h5b_c00002{height:47.545313px;}
.h92_c00002{height:47.835352px;}
.hb9_c00002{height:47.958750px;}
.h53_c00002{height:48.095156px;}
.h23_c00002{height:48.224531px;}
.haf_c00002{height:48.448125px;}
.hb7_c00002{height:48.888984px;}
.hc3_c00002{height:48.937500px;}
.hab_c00002{height:49.387852px;}
.hc0_c00002{height:49.886719px;}
.hd0_c00002{height:50.895000px;}
.h3_c00002{height:51.591745px;}
.h26_c00002{height:51.591797px;}
.h14_c00002{height:51.748773px;}
.h28_c00002{height:51.751171px;}
.hcc_c00002{height:51.882188px;}
.h83_c00002{height:52.417969px;}
.h4_c00002{height:52.470651px;}
.h27_c00002{height:52.470703px;}
.h8d_c00002{height:52.477734px;}
.hb6_c00002{height:54.810000px;}
.haa_c00002{height:55.299375px;}
.hbf_c00002{height:56.278125px;}
.h6d_c00002{height:57.505078px;}
.hcb_c00002{height:58.235625px;}
.h8b_c00002{height:58.635352px;}
.h5f_c00002{height:60.280664px;}
.hd7_c00002{height:61.164492px;}
.hf_c00002{height:62.244000px;}
.h60_c00002{height:64.580625px;}
.h62_c00002{height:64.823906px;}
.h4e_c00002{height:65.869453px;}
.h51_c00002{height:69.528867px;}
.h22_c00002{height:69.715898px;}
.hdb_c00002{height:71.982422px;}
.hba_c00002{height:74.412898px;}
.hb0_c00002{height:75.631285px;}
.hc4_c00002{height:76.849673px;}
.hc5_c00002{height:76.852013px;}
.hd9_c00002{height:78.416016px;}
.h13_c00002{height:83.953125px;}
.h44_c00002{height:892.499700px;}
.h45_c00002{height:892.500000px;}
.h24_c00002{height:973.800000px;}
.h2_c00002{height:974.250000px;}
.h21_c00002{height:1262.879850px;}
.h0_c00002{height:1262.999700px;}
.h1_c00002{height:1263.000000px;}
.wbb_c00002{width:0.540234px;}
.wb8_c00002{width:2.700000px;}
.wbc_c00002{width:3.059760px;}
.wbe_c00002{width:4.140240px;}
.wb9_c00002{width:4.319535px;}
.wba_c00002{width:4.320120px;}
.wcf_c00002{width:6.300000px;}
.wc6_c00002{width:6.479880px;}
.wc5_c00002{width:6.839655px;}
.wcd_c00002{width:6.840240px;}
.wc1_c00002{width:7.019535px;}
.w1e_c00002{width:7.020120px;}
.wd5_c00002{width:7.199415px;}
.w9d_c00002{width:7.200000px;}
.w82_c00002{width:7.379880px;}
.wcb_c00002{width:7.380465px;}
.wc3_c00002{width:7.559760px;}
.w98_c00002{width:7.560345px;}
.wdb_c00002{width:7.739655px;}
.we3_c00002{width:7.919535px;}
.w38_c00002{width:7.920120px;}
.w5c_c00002{width:8.100000px;}
.wd7_c00002{width:8.279880px;}
.w44_c00002{width:8.459760px;}
.wcc_c00002{width:8.460345px;}
.wc4_c00002{width:8.639655px;}
.wd1_c00002{width:8.640240px;}
.w32_c00002{width:8.819535px;}
.wd0_c00002{width:8.820120px;}
.w2f_c00002{width:9.000000px;}
.w7d_c00002{width:9.178710px;}
.wb_c00002{width:9.179880px;}
.we5_c00002{width:9.359760px;}
.wfe_c00002{width:9.720120px;}
.w5f_c00002{width:10.620120px;}
.w96_c00002{width:11.339655px;}
.w7c_c00002{width:11.520120px;}
.w53_c00002{width:11.879880px;}
.w9b_c00002{width:12.239655px;}
.wa0_c00002{width:12.240240px;}
.wfd_c00002{width:12.420120px;}
.w9c_c00002{width:13.139655px;}
.w97_c00002{width:13.500000px;}
.wa9_c00002{width:13.680465px;}
.w21_c00002{width:13.859760px;}
.w7a_c00002{width:14.039655px;}
.w25_c00002{width:14.040240px;}
.w99_c00002{width:14.219535px;}
.w2c_c00002{width:14.220120px;}
.wd6_c00002{width:14.399415px;}
.w23_c00002{width:14.400000px;}
.wa1_c00002{width:14.578710px;}
.w9a_c00002{width:14.759760px;}
.w1d_c00002{width:15.119550px;}
.w15_c00002{width:15.120150px;}
.w83_c00002{width:15.300000px;}
.w76_c00002{width:15.479850px;}
.w7b_c00002{width:15.659250px;}
.w9f_c00002{width:15.659700px;}
.w69_c00002{width:15.839700px;}
.w2e_c00002{width:15.840300px;}
.wfc_c00002{width:16.019550px;}
.w88_c00002{width:16.020150px;}
.w60_c00002{width:16.200000px;}
.w3a_c00002{width:16.379850px;}
.w78_c00002{width:16.559250px;}
.w77_c00002{width:16.559700px;}
.wff_c00002{width:16.740300px;}
.wfa_c00002{width:16.740750px;}
.w2d_c00002{width:16.919550px;}
.w41_c00002{width:16.920150px;}
.w42_c00002{width:17.100000px;}
.w24_c00002{width:17.459700px;}
.waf_c00002{width:17.460300px;}
.w39_c00002{width:17.639700px;}
.wfb_c00002{width:17.640300px;}
.w9e_c00002{width:18.360300px;}
.wb1_c00002{width:18.719550px;}
.w4a_c00002{width:19.079850px;}
.w31_c00002{width:19.080450px;}
.w6e_c00002{width:19.259700px;}
.w8a_c00002{width:19.620150px;}
.w6f_c00002{width:20.700000px;}
.w26_c00002{width:20.879850px;}
.w104_c00002{width:21.059250px;}
.w22_c00002{width:21.059700px;}
.wb3_c00002{width:21.060300px;}
.w27_c00002{width:21.420150px;}
.w79_c00002{width:21.779850px;}
.w30_c00002{width:22.320150px;}
.w6b_c00002{width:22.859250px;}
.w6c_c00002{width:22.860300px;}
.w63_c00002{width:23.219550px;}
.w33_c00002{width:23.220150px;}
.w6d_c00002{width:23.579850px;}
.w8b_c00002{width:23.940300px;}
.wae_c00002{width:24.478650px;}
.w20_c00002{width:24.479850px;}
.w17_c00002{width:24.660300px;}
.w46_c00002{width:24.840300px;}
.w10_c00002{width:25.379850px;}
.w47_c00002{width:25.559700px;}
.wa4_c00002{width:26.278650px;}
.wa2_c00002{width:26.279850px;}
.wa3_c00002{width:26.280450px;}
.w68_c00002{width:26.999400px;}
.w67_c00002{width:27.000000px;}
.w14_c00002{width:27.179850px;}
.w87_c00002{width:27.539700px;}
.w89_c00002{width:27.540300px;}
.w45_c00002{width:29.519550px;}
.w40_c00002{width:29.520150px;}
.w58_c00002{width:29.700000px;}
.w5e_c00002{width:30.059700px;}
.wa5_c00002{width:30.060300px;}
.w81_c00002{width:30.419550px;}
.w80_c00002{width:30.420150px;}
.w1f_c00002{width:31.499400px;}
.w1c_c00002{width:31.500000px;}
.w109_c00002{width:31.679850px;}
.wdc_c00002{width:32.399400px;}
.wd9_c00002{width:32.400000px;}
.w100_c00002{width:32.759250px;}
.w37_c00002{width:32.759700px;}
.w36_c00002{width:32.760300px;}
.w107_c00002{width:33.120150px;}
.wf6_c00002{width:33.659700px;}
.w95_c00002{width:33.660300px;}
.wc2_c00002{width:33.839700px;}
.w71_c00002{width:33.840300px;}
.w101_c00002{width:34.019550px;}
.w4e_c00002{width:34.020150px;}
.wb2_c00002{width:34.379850px;}
.w65_c00002{width:34.739700px;}
.w62_c00002{width:34.740300px;}
.w86_c00002{width:35.459250px;}
.w1b_c00002{width:35.459700px;}
.w84_c00002{width:35.460300px;}
.we2_c00002{width:35.639700px;}
.wf1_c00002{width:36.000000px;}
.w11_c00002{width:36.900000px;}
.wa_c00002{width:37.079850px;}
.wf_c00002{width:37.080450px;}
.w5b_c00002{width:37.800000px;}
.w102_c00002{width:37.978650px;}
.w3d_c00002{width:37.979850px;}
.w3e_c00002{width:37.980450px;}
.w75_c00002{width:38.160300px;}
.waa_c00002{width:38.519550px;}
.wab_c00002{width:38.520150px;}
.wb0_c00002{width:38.879850px;}
.wda_c00002{width:39.599400px;}
.wd8_c00002{width:39.600000px;}
.w18_c00002{width:39.779850px;}
.w13_c00002{width:39.959700px;}
.w2b_c00002{width:40.679850px;}
.w48_c00002{width:40.859700px;}
.wbd_c00002{width:40.860300px;}
.w57_c00002{width:41.219550px;}
.wa8_c00002{width:41.398200px;}
.wa7_c00002{width:41.399400px;}
.wa6_c00002{width:41.400000px;}
.w61_c00002{width:42.119550px;}
.w6a_c00002{width:42.479850px;}
.w66_c00002{width:42.840300px;}
.w4c_c00002{width:43.019550px;}
.w70_c00002{width:43.379850px;}
.w1a_c00002{width:43.920150px;}
.wd_c00002{width:45.360300px;}
.wac_c00002{width:45.539700px;}
.w4b_c00002{width:46.079850px;}
.w64_c00002{width:46.260300px;}
.w3b_c00002{width:46.439700px;}
.w3c_c00002{width:46.440300px;}
.w85_c00002{width:46.799400px;}
.w51_c00002{width:46.800000px;}
.w19_c00002{width:46.979850px;}
.w52_c00002{width:47.340300px;}
.w3f_c00002{width:50.039700px;}
.wf2_c00002{width:50.040300px;}
.wce_c00002{width:52.200000px;}
.w8f_c00002{width:52.379850px;}
.wdd_c00002{width:53.100000px;}
.w43_c00002{width:54.900000px;}
.we4_c00002{width:55.259700px;}
.wad_c00002{width:55.440300px;}
.w91_c00002{width:56.160300px;}
.w5d_c00002{width:56.879850px;}
.w59_c00002{width:56.880450px;}
.w7f_c00002{width:58.139700px;}
.we7_c00002{width:58.140300px;}
.w92_c00002{width:58.500000px;}
.web_c00002{width:60.839700px;}
.w5a_c00002{width:61.200000px;}
.w7e_c00002{width:61.379850px;}
.w35_c00002{width:62.100000px;}
.wb4_c00002{width:64.440300px;}
.wec_c00002{width:65.340300px;}
.w34_c00002{width:65.879850px;}
.w8d_c00002{width:66.600000px;}
.w106_c00002{width:67.500000px;}
.wdf_c00002{width:67.859700px;}
.w90_c00002{width:68.040300px;}
.w8e_c00002{width:68.040750px;}
.w12_c00002{width:68.399400px;}
.wc8_c00002{width:68.400000px;}
.we_c00002{width:69.300000px;}
.w4d_c00002{width:70.200000px;}
.wed_c00002{width:73.259700px;}
.wd3_c00002{width:74.160300px;}
.wbf_c00002{width:74.700000px;}
.we0_c00002{width:75.600000px;}
.wc9_c00002{width:75.779850px;}
.we8_c00002{width:75.959700px;}
.w16_c00002{width:76.859700px;}
.wb7_c00002{width:77.759700px;}
.w93_c00002{width:82.260300px;}
.we9_c00002{width:84.240300px;}
.wea_c00002{width:84.420150px;}
.w4f_c00002{width:86.400000px;}
.w108_c00002{width:93.240750px;}
.wc_c00002{width:98.100000px;}
.wca_c00002{width:101.700000px;}
.wc0_c00002{width:102.600000px;}
.wf8_c00002{width:102.779850px;}
.wd4_c00002{width:104.759700px;}
.wf4_c00002{width:105.120150px;}
.w2a_c00002{width:106.920150px;}
.wef_c00002{width:107.100000px;}
.we1_c00002{width:107.820150px;}
.w54_c00002{width:110.340300px;}
.w50_c00002{width:114.840300px;}
.w74_c00002{width:126.539700px;}
.w105_c00002{width:132.300000px;}
.w29_c00002{width:139.139700px;}
.wee_c00002{width:144.900000px;}
.w94_c00002{width:172.620000px;}
.w49_c00002{width:182.160000px;}
.wf3_c00002{width:199.800000px;}
.wd2_c00002{width:238.500000px;}
.wc7_c00002{width:239.220000px;}
.wde_c00002{width:243.360000px;}
.we6_c00002{width:253.440000px;}
.wf9_c00002{width:256.680000px;}
.wf7_c00002{width:297.000000px;}
.w103_c00002{width:307.620000px;}
.w56_c00002{width:322.560000px;}
.wf5_c00002{width:371.880000px;}
.w28_c00002{width:378.180000px;}
.wf0_c00002{width:380.520000px;}
.w55_c00002{width:401.400000px;}
.w8c_c00002{width:504.000000px;}
.wb6_c00002{width:762.718500px;}
.wb5_c00002{width:767.880000px;}
.w2_c00002{width:771.120000px;}
.w7_c00002{width:773.460000px;}
.w6_c00002{width:774.298500px;}
.w3_c00002{width:774.303000px;}
.w0_c00002{width:892.499700px;}
.w1_c00002{width:892.500000px;}
.w4_c00002{width:892.979850px;}
.w5_c00002{width:893.250000px;}
.w8_c00002{width:1262.999700px;}
.w9_c00002{width:1263.000000px;}
.w72_c00002{width:1786.499700px;}
.w73_c00002{width:1786.500000px;}
.x119_c00002{left:-12.612000px;}
.x0_c00002{left:0.000000px;}
.x18_c00002{left:37.499400px;}
.x1c_c00002{left:67.559250px;}
.x1b_c00002{left:76.531050px;}
.x1da_c00002{left:77.531850px;}
.x123_c00002{left:78.792150px;}
.xab_c00002{left:80.100000px;}
.x1d9_c00002{left:81.312300px;}
.x1e_c00002{left:82.426350px;}
.x3_c00002{left:84.718350px;}
.x6_c00002{left:86.160900px;}
.x17_c00002{left:87.297498px;}
.x4f_c00002{left:88.438272px;}
.xb5_c00002{left:90.179850px;}
.x1a7_c00002{left:91.932454px;}
.x166_c00002{left:93.059700px;}
.x1aa_c00002{left:94.452000px;}
.x11b_c00002{left:95.760300px;}
.x1ca_c00002{left:96.792150px;}
.x5c_c00002{left:98.265750px;}
.x124_c00002{left:100.031850px;}
.x1ad_c00002{left:101.112300px;}
.xb0_c00002{left:102.240300px;}
.x1a8_c00002{left:103.272032px;}
.x7d_c00002{left:105.285900px;}
.x50_c00002{left:106.379400px;}
.xb6_c00002{left:108.359700px;}
.x74_c00002{left:109.785900px;}
.xa9_c00002{left:112.485900px;}
.x81_c00002{left:113.579879px;}
.x1b8_c00002{left:115.872000px;}
.x1d_c00002{left:117.015750px;}
.x1b9_c00002{left:118.751877px;}
.x1a6_c00002{left:120.012330px;}
.x82_c00002{left:121.319850px;}
.x80_c00002{left:125.460350px;}
.x1ba_c00002{left:152.952000px;}
.x1a9_c00002{left:154.752000px;}
.x174_c00002{left:159.721200px;}
.x191_c00002{left:163.440000px;}
.x1cb_c00002{left:165.012000px;}
.xce_c00002{left:167.026500px;}
.x1ae_c00002{left:170.772000px;}
.x1bc_c00002{left:172.212000px;}
.x160_c00002{left:174.192000px;}
.x144_c00002{left:176.352000px;}
.x158_c00002{left:177.792000px;}
.x11d_c00002{left:179.460000px;}
.x6a_c00002{left:181.245000px;}
.x65_c00002{left:183.406500px;}
.xc1_c00002{left:188.626500px;}
.x125_c00002{left:191.292000px;}
.x5d_c00002{left:192.406500px;}
.xfa_c00002{left:194.712000px;}
.xea_c00002{left:197.232000px;}
.x95_c00002{left:198.706500px;}
.x122_c00002{left:200.520000px;}
.xa1_c00002{left:203.026500px;}
.x8b_c00002{left:205.545000px;}
.x1a_c00002{left:207.076500px;}
.xbc_c00002{left:210.588000px;}
.xdb_c00002{left:212.400000px;}
.x1e0_c00002{left:213.612000px;}
.x85_c00002{left:214.906500px;}
.xbb_c00002{left:219.060000px;}
.x182_c00002{left:221.340150px;}
.xb8_c00002{left:223.200000px;}
.x197_c00002{left:225.360000px;}
.x198_c00002{left:229.500000px;}
.x1af_c00002{left:239.172000px;}
.x17e_c00002{left:240.181627px;}
.x181_c00002{left:241.499850px;}
.x19e_c00002{left:243.492000px;}
.xbf_c00002{left:245.868000px;}
.x180_c00002{left:247.979700px;}
.x17f_c00002{left:249.060150px;}
.x1ac_c00002{left:251.052000px;}
.x1bb_c00002{left:254.472000px;}
.x5b_c00002{left:256.170000px;}
.x17d_c00002{left:260.341327px;}
.x151_c00002{left:261.492000px;}
.x11e_c00002{left:263.160000px;}
.x134_c00002{left:264.192000px;}
.x17c_c00002{left:266.760877px;}
.x17b_c00002{left:267.901627px;}
.x126_c00002{left:270.492000px;}
.x84_c00002{left:273.406500px;}
.xd6_c00002{left:276.286500px;}
.xcf_c00002{left:280.245000px;}
.xc2_c00002{left:282.766500px;}
.xd8_c00002{left:284.026500px;}
.x10f_c00002{left:285.252000px;}
.xeb_c00002{left:287.772000px;}
.x9f_c00002{left:291.226500px;}
.x1c0_c00002{left:292.272000px;}
.x4e_c00002{left:293.636868px;}
.x96_c00002{left:295.366500px;}
.xdc_c00002{left:296.820000px;}
.xa5_c00002{left:299.686500px;}
.x167_c00002{left:301.020300px;}
.x8c_c00002{left:302.206500px;}
.x165_c00002{left:303.840000px;}
.xdd_c00002{left:306.000000px;}
.x7_c00002{left:308.937000px;}
.x86_c00002{left:310.126500px;}
.x192_c00002{left:317.160000px;}
.x1b0_c00002{left:319.452000px;}
.x193_c00002{left:321.480000px;}
.x1bd_c00002{left:324.672000px;}
.x5e_c00002{left:325.966500px;}
.xba_c00002{left:331.200000px;}
.x145_c00002{left:336.912000px;}
.x194_c00002{left:338.040000px;}
.x152_c00002{left:341.772000px;}
.x135_c00002{left:344.472000px;}
.x157_c00002{left:348.792000px;}
.x4_c00002{left:353.396850px;}
.x11f_c00002{left:355.500000px;}
.xc3_c00002{left:357.645000px;}
.x75_c00002{left:359.445000px;}
.x7c_c00002{left:362.866500px;}
.x186_c00002{left:364.739700px;}
.x169_c00002{left:365.939250px;}
.x66_c00002{left:367.545000px;}
.x17a_c00002{left:368.880000px;}
.x107_c00002{left:370.033500px;}
.xd3_c00002{left:372.405000px;}
.x1c1_c00002{left:374.533500px;}
.x3b_c00002{left:376.136400px;}
.xec_c00002{left:378.313500px;}
.x18d_c00002{left:379.319700px;}
.xc9_c00002{left:380.685000px;}
.x33_c00002{left:383.696700px;}
.xdf_c00002{left:385.153500px;}
.x11c_c00002{left:386.640000px;}
.xa7_c00002{left:387.885000px;}
.xfb_c00002{left:389.473500px;}
.x53_c00002{left:391.561761px;}
.x27_c00002{left:393.358320px;}
.x34_c00002{left:395.036250px;}
.x97_c00002{left:396.345000px;}
.x8d_c00002{left:398.866500px;}
.xa6_c00002{left:400.485000px;}
.x2d_c00002{left:402.599595px;}
.x179_c00002{left:404.340000px;}
.x3e_c00002{left:406.695000px;}
.x171_c00002{left:407.760000px;}
.x16f_c00002{left:409.020000px;}
.x26_c00002{left:410.160120px;}
.x1cc_c00002{left:411.433500px;}
.x19d_c00002{left:413.820000px;}
.x168_c00002{left:415.140450px;}
.x32_c00002{left:416.277180px;}
.x3d_c00002{left:417.718113px;}
.xde_c00002{left:420.793500px;}
.x153_c00002{left:422.053500px;}
.x170_c00002{left:423.240000px;}
.x136_c00002{left:424.753500px;}
.x164_c00002{left:426.420000px;}
.x35_c00002{left:429.416100px;}
.x127_c00002{left:430.693500px;}
.x120_c00002{left:432.000000px;}
.x3a_c00002{left:435.177300px;}
.x2e_c00002{left:436.979445px;}
.x16a_c00002{left:439.379550px;}
.x54_c00002{left:440.757705px;}
.x39_c00002{left:442.738263px;}
.xb7_c00002{left:443.880000px;}
.x58_c00002{left:444.898618px;}
.x3f_c00002{left:446.475750px;}
.x4a_c00002{left:448.322790px;}
.x2c_c00002{left:452.099595px;}
.xf_c00002{left:455.877963px;}
.x1a0_c00002{left:458.053500px;}
.x57_c00002{left:460.018769px;}
.xb9_c00002{left:461.340000px;}
.x25_c00002{left:463.439985px;}
.xac_c00002{left:465.840000px;}
.x2f_c00002{left:467.579400px;}
.xed_c00002{left:468.853500px;}
.xe_c00002{left:471.357813px;}
.x38_c00002{left:473.699556px;}
.xd_c00002{left:475.138278px;}
.x18e_c00002{left:477.179550px;}
.xc_c00002{left:478.918158px;}
.x1b1_c00002{left:480.013500px;}
.x5a_c00002{left:481.258644px;}
.x11_c00002{left:482.338278px;}
.x30_c00002{left:483.419175px;}
.x59_c00002{left:484.677351px;}
.x3c_c00002{left:486.836370px;}
.x31_c00002{left:488.438025px;}
.x10_c00002{left:490.257813px;}
.x19b_c00002{left:491.400000px;}
.x98_c00002{left:493.005000px;}
.x8e_c00002{left:495.525000px;}
.xa4_c00002{left:497.145000px;}
.x15e_c00002{left:498.913500px;}
.x1dd_c00002{left:500.760000px;}
.x146_c00002{left:502.333500px;}
.x137_c00002{left:505.033500px;}
.x4c_c00002{left:507.602520px;}
.x172_c00002{left:509.339700px;}
.x46_c00002{left:511.378393px;}
.x45_c00002{left:515.159443px;}
.x43_c00002{left:518.938153px;}
.x4b_c00002{left:520.862280px;}
.x121_c00002{left:522.360000px;}
.x44_c00002{left:524.580148px;}
.x5f_c00002{left:528.105000px;}
.x19c_c00002{left:533.340000px;}
.x16b_c00002{left:537.300150px;}
.x1c2_c00002{left:539.053500px;}
.x175_c00002{left:540.719550px;}
.xb4_c00002{left:542.520000px;}
.x183_c00002{left:544.139700px;}
.xb1_c00002{left:546.840000px;}
.xaf_c00002{left:549.360000px;}
.x1cf_c00002{left:550.393500px;}
.x76_c00002{left:552.225000px;}
.xad_c00002{left:554.580000px;}
.xfc_c00002{left:556.873500px;}
.x1d7_c00002{left:557.953500px;}
.xee_c00002{left:559.393500px;}
.x111_c00002{left:560.833500px;}
.x56_c00002{left:567.058200px;}
.x5_c00002{left:568.316850px;}
.x55_c00002{left:570.837495px;}
.x187_c00002{left:572.878800px;}
.x14_c00002{left:574.616448px;}
.x15_c00002{left:578.396328px;}
.x16_c00002{left:582.176208px;}
.x13_c00002{left:584.097498px;}
.xa8_c00002{left:585.345000px;}
.x12_c00002{left:587.877378px;}
.x99_c00002{left:589.666500px;}
.x128_c00002{left:591.073500px;}
.x8f_c00002{left:592.185000px;}
.x1df_c00002{left:593.820000px;}
.x188_c00002{left:596.098950px;}
.x87_c00002{left:597.405000px;}
.x1de_c00002{left:599.040000px;}
.x1e1_c00002{left:601.153500px;}
.xc0_c00002{left:609.825000px;}
.x1b7_c00002{left:616.093500px;}
.x184_c00002{left:618.061650px;}
.x199_c00002{left:620.820000px;}
.x1a1_c00002{left:622.573500px;}
.x19a_c00002{left:625.140000px;}
.x1c7_c00002{left:628.513500px;}
.x41_c00002{left:630.766821px;}
.x51_c00002{left:632.340397px;}
.x40_c00002{left:633.527166px;}
.x52_c00002{left:635.162323px;}
.x47_c00002{left:636.540494px;}
.x49_c00002{left:638.537368px;}
.x1_c00002{left:640.857000px;}
.x48_c00002{left:642.002023px;}
.x1d0_c00002{left:644.353500px;}
.xfd_c00002{left:647.413500px;}
.xef_c00002{left:649.933500px;}
.x108_c00002{left:651.373500px;}
.x1be_c00002{left:653.713500px;}
.x19f_c00002{left:654.793500px;}
.xe0_c00002{left:656.773500px;}
.x15b_c00002{left:658.033500px;}
.x16c_c00002{left:659.581200px;}
.x147_c00002{left:662.893500px;}
.x18f_c00002{left:664.081500px;}
.x138_c00002{left:665.593500px;}
.x189_c00002{left:668.759850px;}
.x129_c00002{left:671.353500px;}
.x195_c00002{left:675.540000px;}
.x196_c00002{left:679.860000px;}
.x9a_c00002{left:682.005000px;}
.x173_c00002{left:683.759700px;}
.xa2_c00002{left:686.325000px;}
.x90_c00002{left:688.845000px;}
.x20_c00002{left:690.718500px;}
.xb3_c00002{left:693.000000px;}
.x8_c00002{left:695.397000px;}
.xb2_c00002{left:697.320000px;}
.x9_c00002{left:698.997000px;}
.xa_c00002{left:700.076883px;}
.xb_c00002{left:701.336658px;}
.x42_c00002{left:702.780099px;}
.x2b_c00002{left:704.217675px;}
.x4d_c00002{left:705.361515px;}
.xae_c00002{left:706.680000px;}
.x1f_c00002{left:710.221500px;}
.x23_c00002{left:713.218485px;}
.x29_c00002{left:714.900000px;}
.xd0_c00002{left:716.385000px;}
.x2a_c00002{left:717.898245px;}
.xc4_c00002{left:720.525000px;}
.x1d1_c00002{left:723.193500px;}
.x18a_c00002{left:725.280000px;}
.xd9_c00002{left:727.725000px;}
.x83_c00002{left:728.805000px;}
.x18b_c00002{left:730.500750px;}
.xd4_c00002{left:731.866500px;}
.x16d_c00002{left:733.021500px;}
.x28_c00002{left:735.358050px;}
.x22_c00002{left:736.680000px;}
.x10b_c00002{left:737.953500px;}
.x37_c00002{left:740.937966px;}
.x24_c00002{left:742.079985px;}
.x154_c00002{left:743.173500px;}
.xe1_c00002{left:744.793500px;}
.x139_c00002{left:745.873500px;}
.x176_c00002{left:749.940375px;}
.x12a_c00002{left:752.893500px;}
.x185_c00002{left:756.242700px;}
.x16e_c00002{left:757.441050px;}
.x36_c00002{left:767.460450px;}
.x21_c00002{left:769.723950px;}
.x19_c00002{left:775.696500px;}
.x1eb_c00002{left:776.833500px;}
.xbe_c00002{left:779.745812px;}
.x9b_c00002{left:782.985000px;}
.x91_c00002{left:785.505000px;}
.xa3_c00002{left:787.125000px;}
.x2_c00002{left:790.436850px;}
.x60_c00002{left:794.685000px;}
.x88_c00002{left:797.566500px;}
.x18c_c00002{left:801.420900px;}
.x7b_c00002{left:806.205000px;}
.x6f_c00002{left:809.625000px;}
.xca_c00002{left:812.866500px;}
.xd7_c00002{left:814.305000px;}
.x1dc_c00002{left:817.153500px;}
.x148_c00002{left:818.593500px;}
.xc5_c00002{left:823.666500px;}
.x13a_c00002{left:826.153500px;}
.xfe_c00002{left:828.493500px;}
.xf0_c00002{left:831.013500px;}
.x10c_c00002{left:832.453500px;}
.x178_c00002{left:834.300885px;}
.x190_c00002{left:837.960360px;}
.xe2_c00002{left:839.113500px;}
.x1cd_c00002{left:843.433500px;}
.x177_c00002{left:847.799580px;}
.x1b3_c00002{left:849.913500px;}
.xbd_c00002{left:857.870591px;}
.x1c3_c00002{left:868.093500px;}
.x1a2_c00002{left:869.353500px;}
.x9c_c00002{left:873.525000px;}
.x1c8_c00002{left:875.293500px;}
.x70_c00002{left:877.666500px;}
.xa0_c00002{left:879.645000px;}
.x61_c00002{left:880.725000px;}
.x92_c00002{left:882.166500px;}
.x6b_c00002{left:885.766500px;}
.x89_c00002{left:887.025000px;}
.x161_c00002{left:891.853500px;}
.x1d5_c00002{left:895.993500px;}
.xd1_c00002{left:898.905000px;}
.xcb_c00002{left:901.245000px;}
.xd5_c00002{left:902.685000px;}
.x7e_c00002{left:904.125000px;}
.x13b_c00002{left:906.433500px;}
.xc6_c00002{left:912.225000px;}
.x10d_c00002{left:913.273500px;}
.xff_c00002{left:919.033500px;}
.xf1_c00002{left:921.553500px;}
.x10e_c00002{left:922.993500px;}
.xe3_c00002{left:928.393500px;}
.x1b4_c00002{left:930.193500px;}
.x1c4_c00002{left:950.353500px;}
.x1a3_c00002{left:951.613500px;}
.x67_c00002{left:953.805000px;}
.x62_c00002{left:955.245000px;}
.x71_c00002{left:957.945000px;}
.x7a_c00002{left:961.545000px;}
.x6c_c00002{left:966.045000px;}
.x1ef_c00002{left:970.153500px;}
.x9e_c00002{left:971.985000px;}
.xc7_c00002{left:976.305000px;}
.x1e3_c00002{left:978.793500px;}
.x9d_c00002{left:980.445000px;}
.x1d2_c00002{left:982.393500px;}
.x149_c00002{left:984.013500px;}
.x13c_c00002{left:986.713500px;}
.x1d8_c00002{left:989.953500px;}
.x93_c00002{left:991.245000px;}
.x12b_c00002{left:996.253500px;}
.xcc_c00002{left:999.345000px;}
.x100_c00002{left:1003.813500px;}
.x110_c00002{left:1009.573500px;}
.xf2_c00002{left:1012.093500px;}
.x63_c00002{left:1019.866500px;}
.x68_c00002{left:1030.485000px;}
.x1c5_c00002{left:1032.613500px;}
.x1a4_c00002{left:1033.873500px;}
.x1b2_c00002{left:1034.953500px;}
.x72_c00002{left:1038.225000px;}
.x1c9_c00002{left:1039.813500px;}
.x77_c00002{left:1041.825000px;}
.x6d_c00002{left:1046.325000px;}
.x1bf_c00002{left:1057.813500px;}
.x14a_c00002{left:1059.433500px;}
.x8a_c00002{left:1060.905000px;}
.xc8_c00002{left:1062.345000px;}
.x15f_c00002{left:1064.293500px;}
.x13d_c00002{left:1066.993500px;}
.x1d3_c00002{left:1068.793500px;}
.x1e7_c00002{left:1072.933500px;}
.x12c_c00002{left:1075.633500px;}
.x1ee_c00002{left:1077.073500px;}
.xd2_c00002{left:1081.425000px;}
.x94_c00002{left:1083.045000px;}
.xcd_c00002{left:1084.845000px;}
.x1b5_c00002{left:1090.753500px;}
.x101_c00002{left:1094.353500px;}
.x118_c00002{left:1098.673500px;}
.xf3_c00002{left:1102.633500px;}
.xaa_c00002{left:1110.948000px;}
.x69_c00002{left:1112.385000px;}
.x64_c00002{left:1114.366500px;}
.xda_c00002{left:1116.528000px;}
.x79_c00002{left:1118.505000px;}
.x73_c00002{left:1122.105000px;}
.x7f_c00002{left:1123.551000px;}
.x78_c00002{left:1125.525000px;}
.x6e_c00002{left:1126.605000px;}
.x1b6_c00002{left:1134.133500px;}
.x14b_c00002{left:1139.713500px;}
.x15c_c00002{left:1141.153500px;}
.x155_c00002{left:1144.573500px;}
.x13e_c00002{left:1147.273500px;}
.x12d_c00002{left:1151.233500px;}
.x1d4_c00002{left:1155.193500px;}
.x1c6_c00002{left:1159.333500px;}
.x1a5_c00002{left:1160.413500px;}
.x1d6_c00002{left:1162.753500px;}
.x1e8_c00002{left:1169.593500px;}
.x1e4_c00002{left:1172.113500px;}
.x1ce_c00002{left:1181.473500px;}
.x102_c00002{left:1190.653500px;}
.xf4_c00002{left:1193.173500px;}
.x113_c00002{left:1194.613500px;}
.xe4_c00002{left:1202.533500px;}
.x14c_c00002{left:1219.993500px;}
.x116_c00002{left:1224.689100px;}
.x13f_c00002{left:1227.553500px;}
.x12e_c00002{left:1231.153500px;}
.x117_c00002{left:1254.689100px;}
.x1ec_c00002{left:1260.133500px;}
.x1e9_c00002{left:1266.253500px;}
.x1e5_c00002{left:1268.773500px;}
.x103_c00002{left:1275.433500px;}
.x1e2_c00002{left:1280.293500px;}
.xf5_c00002{left:1283.713500px;}
.xe5_c00002{left:1293.073500px;}
.x159_c00002{left:1298.113500px;}
.x156_c00002{left:1301.713500px;}
.x14d_c00002{left:1305.133500px;}
.x140_c00002{left:1307.833500px;}
.x12f_c00002{left:1313.053500px;}
.x1ed_c00002{left:1356.793500px;}
.x1f0_c00002{left:1362.913500px;}
.x1e6_c00002{left:1365.433500px;}
.x1ea_c00002{left:1367.053500px;}
.x104_c00002{left:1371.733500px;}
.xf6_c00002{left:1374.253500px;}
.x114_c00002{left:1375.693500px;}
.x14e_c00002{left:1380.553500px;}
.xe6_c00002{left:1384.873500px;}
.x141_c00002{left:1388.113500px;}
.x130_c00002{left:1395.133500px;}
.x105_c00002{left:1462.273500px;}
.xf7_c00002{left:1464.793500px;}
.x109_c00002{left:1466.233500px;}
.x142_c00002{left:1468.393500px;}
.x112_c00002{left:1470.193500px;}
.xe7_c00002{left:1472.173500px;}
.x131_c00002{left:1477.933500px;}
.xe8_c00002{left:1539.855000px;}
.x14f_c00002{left:1541.115000px;}
.x15d_c00002{left:1545.975000px;}
.x10a_c00002{left:1548.855000px;}
.x132_c00002{left:1554.615000px;}
.x106_c00002{left:1556.775000px;}
.xf8_c00002{left:1566.855000px;}
.x150_c00002{left:1621.395000px;}
.x15a_c00002{left:1626.255000px;}
.x143_c00002{left:1628.955000px;}
.xe9_c00002{left:1632.015000px;}
.x162_c00002{left:1633.275000px;}
.x133_c00002{left:1635.255000px;}
.x115_c00002{left:1639.215000px;}
.x1db_c00002{left:1642.275000px;}
.x1ab_c00002{left:1645.515000px;}
.x163_c00002{left:1646.955000px;}
.xf9_c00002{left:1652.895000px;}
.x11a_c00002{left:1667.175000px;}
@media print{
.vb_c00002{vertical-align:-22.400000pt;}
.v9_c00002{vertical-align:-21.120853pt;}
.v1_c00002{vertical-align:-13.868747pt;}
.v2_c00002{vertical-align:-5.322917pt;}
.v0_c00002{vertical-align:0.000000pt;}
.v3_c00002{vertical-align:2.560416pt;}
.v8_c00002{vertical-align:9.600000pt;}
.v5_c00002{vertical-align:12.214560pt;}
.v6_c00002{vertical-align:17.335413pt;}
.v7_c00002{vertical-align:19.200000pt;}
.v4_c00002{vertical-align:28.800000pt;}
.va_c00002{vertical-align:32.639573pt;}
.ls0_c00002{letter-spacing:0.000000pt;}
.lsd_c00002{letter-spacing:0.146882pt;}
.ls7_c00002{letter-spacing:10.558773pt;}
.ls6_c00002{letter-spacing:10.562933pt;}
.lsc_c00002{letter-spacing:10.773333pt;}
.ls9_c00002{letter-spacing:13.331680pt;}
.lsa_c00002{letter-spacing:13.333760pt;}
.ls8_c00002{letter-spacing:22.292107pt;}
.lsb_c00002{letter-spacing:24.637920pt;}
.ls5_c00002{letter-spacing:155.760853pt;}
.ls4_c00002{letter-spacing:264.526933pt;}
.ls2_c00002{letter-spacing:264.529067pt;}
.ls3_c00002{letter-spacing:264.533333pt;}
.ls1_c00002{letter-spacing:264.539755pt;}
.ws32_c00002{word-spacing:-162.011520pt;}
.ws8_c00002{word-spacing:-23.722667pt;}
.wsf_c00002{word-spacing:-16.368640pt;}
.ws11_c00002{word-spacing:-14.826667pt;}
.ws1_c00002{word-spacing:-14.826652pt;}
.ws17_c00002{word-spacing:-13.344030pt;}
.ws3_c00002{word-spacing:-13.343985pt;}
.ws27_c00002{word-spacing:-13.306880pt;}
.ws15_c00002{word-spacing:-11.861348pt;}
.ws4_c00002{word-spacing:-11.861333pt;}
.ws4f_c00002{word-spacing:-11.742750pt;}
.ws22_c00002{word-spacing:-11.137316pt;}
.ws7d_c00002{word-spacing:-10.954780pt;}
.ws18_c00002{word-spacing:-10.378667pt;}
.wsc_c00002{word-spacing:-10.378652pt;}
.ws7f_c00002{word-spacing:-9.833820pt;}
.ws1c_c00002{word-spacing:-8.896000pt;}
.wsd_c00002{word-spacing:-8.895985pt;}
.ws1f_c00002{word-spacing:-7.413333pt;}
.ws7e_c00002{word-spacing:-6.354035pt;}
.ws73_c00002{word-spacing:-5.930667pt;}
.ws7_c00002{word-spacing:0.000000pt;}
.ws74_c00002{word-spacing:14.695529pt;}
.ws6e_c00002{word-spacing:28.832480pt;}
.ws68_c00002{word-spacing:29.012474pt;}
.ws3c_c00002{word-spacing:53.926761pt;}
.ws3e_c00002{word-spacing:53.931027pt;}
.ws3a_c00002{word-spacing:62.178754pt;}
.ws21_c00002{word-spacing:67.298812pt;}
.ws75_c00002{word-spacing:73.516329pt;}
.ws25_c00002{word-spacing:77.993675pt;}
.ws20_c00002{word-spacing:87.353212pt;}
.ws30_c00002{word-spacing:89.441493pt;}
.ws26_c00002{word-spacing:92.723364pt;}
.ws24_c00002{word-spacing:100.524060pt;}
.ws38_c00002{word-spacing:107.192000pt;}
.ws35_c00002{word-spacing:121.583360pt;}
.ws37_c00002{word-spacing:121.587627pt;}
.ws36_c00002{word-spacing:121.591893pt;}
.ws41_c00002{word-spacing:121.594027pt;}
.ws33_c00002{word-spacing:121.616640pt;}
.ws39_c00002{word-spacing:122.018400pt;}
.ws34_c00002{word-spacing:122.022667pt;}
.ws60_c00002{word-spacing:122.232752pt;}
.ws69_c00002{word-spacing:122.238992pt;}
.ws47_c00002{word-spacing:123.705640pt;}
.ws8c_c00002{word-spacing:136.804188pt;}
.ws95_c00002{word-spacing:140.409104pt;}
.ws2d_c00002{word-spacing:141.039850pt;}
.ws85_c00002{word-spacing:142.544022pt;}
.ws8f_c00002{word-spacing:144.753808pt;}
.ws46_c00002{word-spacing:146.762506pt;}
.ws97_c00002{word-spacing:147.448208pt;}
.ws8e_c00002{word-spacing:148.948791pt;}
.ws9e_c00002{word-spacing:149.062547pt;}
.ws79_c00002{word-spacing:153.238306pt;}
.ws2f_c00002{word-spacing:153.829398pt;}
.ws45_c00002{word-spacing:157.274542pt;}
.ws44_c00002{word-spacing:157.642697pt;}
.ws48_c00002{word-spacing:161.225027pt;}
.ws8d_c00002{word-spacing:161.778880pt;}
.ws2c_c00002{word-spacing:164.117715pt;}
.ws2b_c00002{word-spacing:164.118176pt;}
.ws82_c00002{word-spacing:164.768747pt;}
.ws28_c00002{word-spacing:165.531455pt;}
.ws96_c00002{word-spacing:166.037037pt;}
.ws86_c00002{word-spacing:167.847053pt;}
.ws43_c00002{word-spacing:170.451029pt;}
.ws4c_c00002{word-spacing:174.663748pt;}
.ws9f_c00002{word-spacing:175.659492pt;}
.ws2e_c00002{word-spacing:176.907264pt;}
.ws81_c00002{word-spacing:177.297507pt;}
.ws23_c00002{word-spacing:183.314485pt;}
.ws29_c00002{word-spacing:184.706792pt;}
.ws92_c00002{word-spacing:186.348983pt;}
.ws91_c00002{word-spacing:186.757515pt;}
.wsa3_c00002{word-spacing:189.215642pt;}
.ws90_c00002{word-spacing:189.423653pt;}
.ws7b_c00002{word-spacing:191.005895pt;}
.ws9b_c00002{word-spacing:191.240266pt;}
.ws99_c00002{word-spacing:191.396026pt;}
.ws9a_c00002{word-spacing:191.662443pt;}
.ws9c_c00002{word-spacing:192.233600pt;}
.ws89_c00002{word-spacing:192.732253pt;}
.ws3f_c00002{word-spacing:192.960000pt;}
.ws40_c00002{word-spacing:192.964267pt;}
.ws3d_c00002{word-spacing:192.966400pt;}
.ws88_c00002{word-spacing:193.148587pt;}
.ws87_c00002{word-spacing:195.370106pt;}
.ws3b_c00002{word-spacing:197.120000pt;}
.ws8a_c00002{word-spacing:198.561600pt;}
.ws42_c00002{word-spacing:199.107306pt;}
.wsa2_c00002{word-spacing:201.822427pt;}
.wsa1_c00002{word-spacing:202.256962pt;}
.ws93_c00002{word-spacing:203.315733pt;}
.ws31_c00002{word-spacing:205.013333pt;}
.ws83_c00002{word-spacing:205.953600pt;}
.ws7a_c00002{word-spacing:207.538388pt;}
.ws78_c00002{word-spacing:207.816482pt;}
.ws6f_c00002{word-spacing:213.124148pt;}
.ws5e_c00002{word-spacing:213.129481pt;}
.ws76_c00002{word-spacing:213.134815pt;}
.ws71_c00002{word-spacing:213.342815pt;}
.ws53_c00002{word-spacing:213.538284pt;}
.ws6c_c00002{word-spacing:213.543617pt;}
.ws50_c00002{word-spacing:217.765167pt;}
.ws6b_c00002{word-spacing:217.770371pt;}
.ws80_c00002{word-spacing:219.066557pt;}
.ws7c_c00002{word-spacing:219.344651pt;}
.ws8b_c00002{word-spacing:224.029579pt;}
.ws2a_c00002{word-spacing:225.349667pt;}
.ws98_c00002{word-spacing:229.901092pt;}
.ws5b_c00002{word-spacing:239.765593pt;}
.ws55_c00002{word-spacing:239.770926pt;}
.ws59_c00002{word-spacing:239.776259pt;}
.ws72_c00002{word-spacing:239.984259pt;}
.ws77_c00002{word-spacing:240.179728pt;}
.ws6d_c00002{word-spacing:240.185062pt;}
.ws5a_c00002{word-spacing:241.045593pt;}
.ws5f_c00002{word-spacing:241.050926pt;}
.ws56_c00002{word-spacing:241.056259pt;}
.ws54_c00002{word-spacing:241.264259pt;}
.ws52_c00002{word-spacing:241.284148pt;}
.ws5c_c00002{word-spacing:241.285971pt;}
.ws5d_c00002{word-spacing:241.291304pt;}
.wsa0_c00002{word-spacing:241.948757pt;}
.ws1e_c00002{word-spacing:251.187438pt;}
.ws94_c00002{word-spacing:255.529026pt;}
.ws84_c00002{word-spacing:256.205736pt;}
.ws62_c00002{word-spacing:266.410371pt;}
.ws51_c00002{word-spacing:267.930926pt;}
.ws70_c00002{word-spacing:268.171304pt;}
.ws9d_c00002{word-spacing:268.552000pt;}
.ws63_c00002{word-spacing:273.690926pt;}
.ws64_c00002{word-spacing:273.929481pt;}
.ws66_c00002{word-spacing:273.931304pt;}
.ws67_c00002{word-spacing:274.105062pt;}
.ws65_c00002{word-spacing:274.343617pt;}
.ws4a_c00002{word-spacing:285.392411pt;}
.wse_c00002{word-spacing:287.365794pt;}
.ws61_c00002{word-spacing:298.023467pt;}
.ws4e_c00002{word-spacing:298.024000pt;}
.ws6a_c00002{word-spacing:298.027733pt;}
.ws4d_c00002{word-spacing:298.028267pt;}
.ws58_c00002{word-spacing:316.054400pt;}
.ws10_c00002{word-spacing:331.146667pt;}
.ws0_c00002{word-spacing:331.146869pt;}
.ws49_c00002{word-spacing:333.830123pt;}
.ws57_c00002{word-spacing:335.517866pt;}
.ws16_c00002{word-spacing:340.006398pt;}
.ws2_c00002{word-spacing:340.008533pt;}
.ws19_c00002{word-spacing:340.012798pt;}
.wsb_c00002{word-spacing:340.017067pt;}
.ws14_c00002{word-spacing:392.266667pt;}
.ws6_c00002{word-spacing:660.849102pt;}
.ws1d_c00002{word-spacing:660.850923pt;}
.ws1b_c00002{word-spacing:660.856257pt;}
.ws13_c00002{word-spacing:665.970923pt;}
.wsa_c00002{word-spacing:665.974435pt;}
.ws5_c00002{word-spacing:770.016993pt;}
.ws1a_c00002{word-spacing:770.029590pt;}
.ws9_c00002{word-spacing:775.142326pt;}
.ws12_c00002{word-spacing:775.149590pt;}
.ws4b_c00002{word-spacing:1303.855697pt;}
._16_c00002{margin-left:-2370.294795pt;}
._b1_c00002{margin-left:-2334.741887pt;}
._29_c00002{margin-left:-2306.935161pt;}
._12_c00002{margin-left:-2303.895161pt;}
._19_c00002{margin-left:-2292.055161pt;}
._18_c00002{margin-left:-2274.295161pt;}
._25_c00002{margin-left:-2259.575161pt;}
._14_c00002{margin-left:-2229.761827pt;}
._28_c00002{margin-left:-2228.108128pt;}
._35_c00002{margin-left:-2206.135161pt;}
._17_c00002{margin-left:-2185.281827pt;}
._1d_c00002{margin-left:-2180.534795pt;}
._24_c00002{margin-left:-2179.575161pt;}
._7_c00002{margin-left:-2173.710986pt;}
._27_c00002{margin-left:-2158.775161pt;}
._b8_c00002{margin-left:-2151.688466pt;}
._34_c00002{margin-left:-2127.308128pt;}
._2_c00002{margin-left:-2094.501651pt;}
._33_c00002{margin-left:-2093.548494pt;}
._26_c00002{margin-left:-2079.948128pt;}
._1a_c00002{margin-left:-2058.988128pt;}
._2b_c00002{margin-left:-2044.374795pt;}
._2d_c00002{margin-left:-2023.681462pt;}
._c_c00002{margin-left:-2017.707062pt;}
._32_c00002{margin-left:-2014.721462pt;}
._1c_c00002{margin-left:-2008.588128pt;}
._2a_c00002{margin-left:-1964.374795pt;}
._2c_c00002{margin-left:-1943.681462pt;}
._b_c00002{margin-left:-1937.707142pt;}
._31_c00002{margin-left:-1928.854795pt;}
._23_c00002{margin-left:-1885.601096pt;}
._30_c00002{margin-left:-1848.854795pt;}
._15_c00002{margin-left:-1832.161096pt;}
._f_c00002{margin-left:-1805.334430pt;}
._13_c00002{margin-left:-1799.414430pt;}
._2f_c00002{margin-left:-1774.668128pt;}
._21_c00002{margin-left:-1728.321096pt;}
._1f_c00002{margin-left:-1723.574064pt;}
._2e_c00002{margin-left:-1695.841096pt;}
._22_c00002{margin-left:-1686.987763pt;}
._20_c00002{margin-left:-1670.240731pt;}
._1e_c00002{margin-left:-1664.320731pt;}
._9_c00002{margin-left:-1303.680019pt;}
._a_c00002{margin-left:-1290.016031pt;}
._8_c00002{margin-left:-1225.599733pt;}
._3_c00002{margin-left:-1078.754414pt;}
._ac_c00002{margin-left:-892.927148pt;}
._11_c00002{margin-left:-849.857603pt;}
._1_c00002{margin-left:-769.705897pt;}
._a9_c00002{margin-left:-705.601772pt;}
._aa_c00002{margin-left:-676.163647pt;}
._ab_c00002{margin-left:-645.523178pt;}
._10_c00002{margin-left:-632.387125pt;}
._ad_c00002{margin-left:-364.848043pt;}
._82_c00002{margin-left:-155.768960pt;}
._0_c00002{margin-left:-1.172968pt;}
._ba_c00002{width:1.536850pt;}
._b9_c00002{width:5.966444pt;}
._6_c00002{width:7.897400pt;}
._b4_c00002{width:11.145600pt;}
._b5_c00002{width:13.707733pt;}
._67_c00002{width:18.941397pt;}
._5_c00002{width:21.798904pt;}
._e_c00002{width:23.229883pt;}
._85_c00002{width:25.127040pt;}
._92_c00002{width:43.145852pt;}
._bd_c00002{width:44.960000pt;}
._74_c00002{width:52.054613pt;}
._73_c00002{width:53.214080pt;}
._90_c00002{width:54.259144pt;}
._8d_c00002{width:55.345831pt;}
._7a_c00002{width:58.416427pt;}
._86_c00002{width:62.651076pt;}
._76_c00002{width:69.345920pt;}
._80_c00002{width:70.782933pt;}
._77_c00002{width:72.594347pt;}
._98_c00002{width:77.480168pt;}
._75_c00002{width:78.579627pt;}
._79_c00002{width:81.551608pt;}
._78_c00002{width:84.040107pt;}
._49_c00002{width:86.114355pt;}
._6a_c00002{width:91.587413pt;}
._3f_c00002{width:92.761079pt;}
._e1_c00002{width:97.502235pt;}
._72_c00002{width:98.778027pt;}
._4f_c00002{width:100.397815pt;}
._4c_c00002{width:103.022899pt;}
._c6_c00002{width:104.424668pt;}
._7e_c00002{width:106.292984pt;}
._41_c00002{width:108.245606pt;}
._68_c00002{width:110.370347pt;}
._7d_c00002{width:113.824620pt;}
._43_c00002{width:115.291464pt;}
._6b_c00002{width:117.738240pt;}
._8a_c00002{width:118.762933pt;}
._66_c00002{width:120.783089pt;}
._47_c00002{width:122.302263pt;}
._84_c00002{width:123.395627pt;}
._89_c00002{width:124.832492pt;}
._53_c00002{width:125.879630pt;}
._69_c00002{width:127.283627pt;}
._7f_c00002{width:128.293539pt;}
._44_c00002{width:130.019560pt;}
._c4_c00002{width:131.051972pt;}
._52_c00002{width:133.310433pt;}
._3c_c00002{width:136.948553pt;}
._87_c00002{width:139.908693pt;}
._6f_c00002{width:146.391467pt;}
._8b_c00002{width:147.362039pt;}
._d5_c00002{width:148.623751pt;}
._6d_c00002{width:151.585707pt;}
._df_c00002{width:152.515518pt;}
._55_c00002{width:153.850134pt;}
._6e_c00002{width:158.043520pt;}
._3d_c00002{width:159.729134pt;}
._d6_c00002{width:160.657145pt;}
._48_c00002{width:161.546906pt;}
._dd_c00002{width:163.905412pt;}
._dc_c00002{width:165.393922pt;}
._61_c00002{width:166.639683pt;}
._6c_c00002{width:169.681280pt;}
._9f_c00002{width:170.630901pt;}
._a6_c00002{width:172.885364pt;}
._3b_c00002{width:174.659086pt;}
._40_c00002{width:176.358400pt;}
._4e_c00002{width:177.912102pt;}
._cf_c00002{width:179.129009pt;}
._93_c00002{width:181.089493pt;}
._a1_c00002{width:183.071078pt;}
._a4_c00002{width:184.020699pt;}
._7c_c00002{width:185.459200pt;}
._36_c00002{width:188.105923pt;}
._37_c00002{width:189.998595pt;}
._e0_c00002{width:191.152609pt;}
._9d_c00002{width:192.067045pt;}
._8f_c00002{width:192.960000pt;}
._94_c00002{width:195.040000pt;}
._9b_c00002{width:196.502937pt;}
._d8_c00002{width:197.487196pt;}
._71_c00002{width:198.606080pt;}
._a8_c00002{width:200.530560pt;}
._95_c00002{width:201.601226pt;}
._5e_c00002{width:203.223137pt;}
._d0_c00002{width:204.335973pt;}
._a5_c00002{width:207.350314pt;}
._60_c00002{width:209.009929pt;}
._a2_c00002{width:210.434141pt;}
._a7_c00002{width:213.121459pt;}
._5c_c00002{width:214.826713pt;}
._9e_c00002{width:215.725667pt;}
._d7_c00002{width:217.034841pt;}
._ca_c00002{width:218.085958pt;}
._42_c00002{width:219.001140pt;}
._38_c00002{width:221.135508pt;}
._ae_c00002{width:222.570388pt;}
._d1_c00002{width:224.004938pt;}
._99_c00002{width:224.903375pt;}
._d4_c00002{width:226.680358pt;}
._4a_c00002{width:228.481485pt;}
._cb_c00002{width:229.614127pt;}
._a0_c00002{width:230.735453pt;}
._e6_c00002{width:233.007238pt;}
._5b_c00002{width:234.641096pt;}
._39_c00002{width:236.492015pt;}
._3a_c00002{width:238.413902pt;}
._91_c00002{width:239.800687pt;}
._da_c00002{width:240.896939pt;}
._50_c00002{width:241.892951pt;}
._a3_c00002{width:244.503791pt;}
._ce_c00002{width:246.144328pt;}
._3e_c00002{width:249.134082pt;}
._8c_c00002{width:250.732101pt;}
._96_c00002{width:252.169114pt;}
._e3_c00002{width:253.262955pt;}
._bc_c00002{width:254.582011pt;}
._9c_c00002{width:256.446491pt;}
._54_c00002{width:261.333490pt;}
._45_c00002{width:263.945576pt;}
._e2_c00002{width:267.527587pt;}
._b3_c00002{width:271.705782pt;}
._b2_c00002{width:272.618791pt;}
._d9_c00002{width:274.228196pt;}
._c0_c00002{width:276.000058pt;}
._c9_c00002{width:276.963160pt;}
._46_c00002{width:278.591866pt;}
._bb_c00002{width:279.876713pt;}
._af_c00002{width:281.226518pt;}
._9a_c00002{width:285.100432pt;}
._b6_c00002{width:287.210388pt;}
._4b_c00002{width:298.496678pt;}
._1b_c00002{width:300.620282pt;}
._e7_c00002{width:304.010394pt;}
._bf_c00002{width:306.682617pt;}
._c8_c00002{width:307.645719pt;}
._59_c00002{width:313.137266pt;}
._64_c00002{width:325.972434pt;}
._83_c00002{width:327.785327pt;}
._65_c00002{width:348.371078pt;}
._5d_c00002{width:350.975068pt;}
._57_c00002{width:373.995795pt;}
._b7_c00002{width:381.141121pt;}
._8e_c00002{width:385.210880pt;}
._c5_c00002{width:389.543565pt;}
._88_c00002{width:390.506667pt;}
._c1_c00002{width:394.277190pt;}
._97_c00002{width:396.294828pt;}
._4d_c00002{width:448.351320pt;}
._be_c00002{width:507.071289pt;}
._c3_c00002{width:517.928468pt;}
._58_c00002{width:528.000297pt;}
._c2_c00002{width:534.130921pt;}
._62_c00002{width:540.838230pt;}
._c7_c00002{width:545.565604pt;}
._63_c00002{width:553.630082pt;}
._5f_c00002{width:578.582489pt;}
._5a_c00002{width:591.374341pt;}
._d2_c00002{width:649.818056pt;}
._d3_c00002{width:663.423139pt;}
._db_c00002{width:667.177878pt;}
._cc_c00002{width:669.093144pt;}
._de_c00002{width:679.970914pt;}
._cd_c00002{width:681.554172pt;}
._4_c00002{width:694.398946pt;}
._e4_c00002{width:701.801009pt;}
._e5_c00002{width:715.041054pt;}
._51_c00002{width:749.377411pt;}
._d_c00002{width:751.738624pt;}
._b0_c00002{width:822.456011pt;}
._56_c00002{width:1624.712713pt;}
._7b_c00002{width:2228.872533pt;}
._81_c00002{width:2250.189234pt;}
._70_c00002{width:2321.362133pt;}
.fs9_c00002{font-size:10.666667pt;}
.fs4_c00002{font-size:15.999947pt;}
.fs13_c00002{font-size:16.000000pt;}
.fs21_c00002{font-size:21.333333pt;}
.fs12_c00002{font-size:26.666667pt;}
.fs5_c00002{font-size:27.262403pt;}
.fs14_c00002{font-size:27.262456pt;}
.fs32_c00002{font-size:27.432320pt;}
.fs30_c00002{font-size:27.665280pt;}
.fs2e_c00002{font-size:28.115200pt;}
.fs27_c00002{font-size:30.080000pt;}
.fs24_c00002{font-size:31.360000pt;}
.fs8_c00002{font-size:31.999947pt;}
.fs11_c00002{font-size:32.000000pt;}
.fs39_c00002{font-size:32.640000pt;}
.fs36_c00002{font-size:33.280000pt;}
.fs3a_c00002{font-size:33.920000pt;}
.fs29_c00002{font-size:35.200000pt;}
.fs3_c00002{font-size:37.333280pt;}
.fs10_c00002{font-size:37.333333pt;}
.fs2a_c00002{font-size:42.240107pt;}
.fs1_c00002{font-size:42.666667pt;}
.fsd_c00002{font-size:42.666720pt;}
.fs31_c00002{font-size:43.512480pt;}
.fs6_c00002{font-size:43.619898pt;}
.fs15_c00002{font-size:43.620004pt;}
.fs2f_c00002{font-size:43.884853pt;}
.fs2d_c00002{font-size:44.595360pt;}
.fs26_c00002{font-size:44.800160pt;}
.fs2b_c00002{font-size:45.440160pt;}
.fs19_c00002{font-size:46.080160pt;}
.fs23_c00002{font-size:46.720160pt;}
.fs2_c00002{font-size:47.999947pt;}
.fsf_c00002{font-size:48.000107pt;}
.fs2c_c00002{font-size:48.472480pt;}
.fs16_c00002{font-size:49.280160pt;}
.fs33_c00002{font-size:49.920160pt;}
.fs1a_c00002{font-size:50.560160pt;}
.fs3b_c00002{font-size:52.480160pt;}
.fs18_c00002{font-size:53.120160pt;}
.fs0_c00002{font-size:53.333280pt;}
.fse_c00002{font-size:53.333333pt;}
.fs25_c00002{font-size:53.760000pt;}
.fs1e_c00002{font-size:54.400000pt;}
.fs20_c00002{font-size:55.040000pt;}
.fs22_c00002{font-size:56.320000pt;}
.fsc_c00002{font-size:58.880000pt;}
.fs38_c00002{font-size:62.720000pt;}
.fs35_c00002{font-size:63.360000pt;}
.fs28_c00002{font-size:64.000000pt;}
.fs3d_c00002{font-size:66.560000pt;}
.fs1f_c00002{font-size:70.400000pt;}
.fs37_c00002{font-size:71.680000pt;}
.fs34_c00002{font-size:72.320000pt;}
.fs1b_c00002{font-size:73.600000pt;}
.fs7_c00002{font-size:74.666667pt;}
.fs3e_c00002{font-size:74.880000pt;}
.fs3c_c00002{font-size:76.160000pt;}
.fs1d_c00002{font-size:79.360000pt;}
.fs17_c00002{font-size:80.640000pt;}
.fs1c_c00002{font-size:82.560000pt;}
.fsb_c00002{font-size:85.120000pt;}
.fsa_c00002{font-size:85.333333pt;}
.fs3f_c00002{font-size:96.000000pt;}
.y1aee_c00002{bottom:-0.640133pt;}
.y1af4_c00002{bottom:-0.639600pt;}
.y0_c00002{bottom:0.000000pt;}
.y11d3_c00002{bottom:0.040000pt;}
.y68_c00002{bottom:0.049333pt;}
.y66_c00002{bottom:0.050667pt;}
.y47e_c00002{bottom:0.052000pt;}
.y9d4_c00002{bottom:0.052533pt;}
.y285_c00002{bottom:0.052667pt;}
.y3ea_c00002{bottom:0.053333pt;}
.y9d2_c00002{bottom:0.053600pt;}
.y78b_c00002{bottom:0.054667pt;}
.y287_c00002{bottom:0.055200pt;}
.yfcb_c00002{bottom:0.056000pt;}
.y42f_c00002{bottom:0.057333pt;}
.y77e_c00002{bottom:0.066133pt;}
.yb5c_c00002{bottom:0.108000pt;}
.y1ae0_c00002{bottom:0.640000pt;}
.y1871_c00002{bottom:1.332000pt;}
.y1a21_c00002{bottom:1.921333pt;}
.y1973_c00002{bottom:2.025333pt;}
.y18de_c00002{bottom:2.028000pt;}
.y28d_c00002{bottom:2.237333pt;}
.y28a_c00002{bottom:2.238560pt;}
.y292_c00002{bottom:2.238667pt;}
.yfb0_c00002{bottom:2.239080pt;}
.yfab_c00002{bottom:2.239893pt;}
.y294_c00002{bottom:2.240000pt;}
.y9d0_c00002{bottom:2.240133pt;}
.y437_c00002{bottom:2.240160pt;}
.y14e3_c00002{bottom:2.240413pt;}
.y3f2_c00002{bottom:2.241333pt;}
.y11ba_c00002{bottom:2.242560pt;}
.ybab_c00002{bottom:2.242667pt;}
.y11b5_c00002{bottom:2.243080pt;}
.y11c1_c00002{bottom:2.253333pt;}
.y28f_c00002{bottom:2.290667pt;}
.y3ee_c00002{bottom:2.291173pt;}
.y3e8_c00002{bottom:2.293173pt;}
.yfae_c00002{bottom:2.293227pt;}
.y14e5_c00002{bottom:2.293747pt;}
.y15ab_c00002{bottom:2.294560pt;}
.y118a_c00002{bottom:2.295080pt;}
.y14e8_c00002{bottom:2.296213pt;}
.yfb4_c00002{bottom:2.296733pt;}
.y14d6_c00002{bottom:2.668427pt;}
.y13b3_c00002{bottom:2.719733pt;}
.y1878_c00002{bottom:2.720000pt;}
.yc53_c00002{bottom:2.722400pt;}
.y150a_c00002{bottom:2.773333pt;}
.y1a23_c00002{bottom:2.880000pt;}
.y1a1c_c00002{bottom:3.040000pt;}
.y1896_c00002{bottom:3.044000pt;}
.y1a01_c00002{bottom:3.200000pt;}
.y1743_c00002{bottom:3.357333pt;}
.y173a_c00002{bottom:3.358667pt;}
.y1a64_c00002{bottom:3.360000pt;}
.y1a69_c00002{bottom:3.360400pt;}
.y189e_c00002{bottom:3.362667pt;}
.y189b_c00002{bottom:3.364000pt;}
.y15bd_c00002{bottom:3.413600pt;}
.y1ade_c00002{bottom:3.520000pt;}
.y1aec_c00002{bottom:3.520267pt;}
.y1af2_c00002{bottom:3.520400pt;}
.y1ac7_c00002{bottom:3.522667pt;}
.y1ac9_c00002{bottom:3.524000pt;}
.y17fe_c00002{bottom:3.677333pt;}
.y17fb_c00002{bottom:3.678667pt;}
.y181f_c00002{bottom:3.682667pt;}
.y181d_c00002{bottom:3.684000pt;}
.y178e_c00002{bottom:3.997333pt;}
.y17a2_c00002{bottom:3.998267pt;}
.y1787_c00002{bottom:3.998667pt;}
.y17aa_c00002{bottom:4.000000pt;}
.y17ad_c00002{bottom:4.001333pt;}
.y17a8_c00002{bottom:4.002667pt;}
.y1b27_c00002{bottom:4.004000pt;}
.y1a7c_c00002{bottom:4.162667pt;}
.y1a50_c00002{bottom:4.322667pt;}
.y1ad2_c00002{bottom:4.482667pt;}
.y10b1_c00002{bottom:4.750187pt;}
.yf9d_c00002{bottom:4.751013pt;}
.y181b_c00002{bottom:4.802667pt;}
.y1a6f_c00002{bottom:4.804000pt;}
.y1a98_c00002{bottom:4.962667pt;}
.y1af9_c00002{bottom:4.964000pt;}
.y1ac2_c00002{bottom:5.124000pt;}
.y1664_c00002{bottom:5.232080pt;}
.y17f9_c00002{bottom:5.278667pt;}
.y17f7_c00002{bottom:5.280000pt;}
.y1872_c00002{bottom:5.332293pt;}
.y1759_c00002{bottom:5.438667pt;}
.y159c_c00002{bottom:5.708533pt;}
.y172d_c00002{bottom:5.710667pt;}
.y1785_c00002{bottom:5.758667pt;}
.y17a5_c00002{bottom:5.760000pt;}
.y522_c00002{bottom:6.292107pt;}
.y1b01_c00002{bottom:6.402667pt;}
.y6a7_c00002{bottom:7.787267pt;}
.y6d6_c00002{bottom:7.788467pt;}
.y675_c00002{bottom:7.788667pt;}
.y702_c00002{bottom:7.789267pt;}
.ye01_c00002{bottom:7.944920pt;}
.yddb_c00002{bottom:7.945453pt;}
.y126a_c00002{bottom:7.946560pt;}
.y1244_c00002{bottom:7.947093pt;}
.y1295_c00002{bottom:7.948027pt;}
.yd90_c00002{bottom:7.948160pt;}
.y122c_c00002{bottom:7.948667pt;}
.ydac_c00002{bottom:7.948800pt;}
.y1d7_c00002{bottom:8.661600pt;}
.y137_c00002{bottom:8.665200pt;}
.y153_c00002{bottom:8.667600pt;}
.y1aa_c00002{bottom:8.667867pt;}
.y18b_c00002{bottom:8.668533pt;}
.yd31_c00002{bottom:9.119253pt;}
.yd17_c00002{bottom:9.119653pt;}
.ycf7_c00002{bottom:9.119733pt;}
.y1029_c00002{bottom:9.120013pt;}
.yd52_c00002{bottom:9.120147pt;}
.ycde_c00002{bottom:9.120307pt;}
.y11aa_c00002{bottom:10.510453pt;}
.y1673_c00002{bottom:10.666133pt;}
.y15f6_c00002{bottom:11.414773pt;}
.y158b_c00002{bottom:11.414787pt;}
.y2fd_c00002{bottom:12.346067pt;}
.ybc9_c00002{bottom:13.066267pt;}
.yc83_c00002{bottom:13.066413pt;}
.yaa6_c00002{bottom:13.066667pt;}
.yb04_c00002{bottom:13.066947pt;}
.ybcf_c00002{bottom:13.067333pt;}
.yc11_c00002{bottom:13.069680pt;}
.yb25_c00002{bottom:13.081613pt;}
.yca0_c00002{bottom:13.082147pt;}
.yb9d_c00002{bottom:13.084147pt;}
.yc32_c00002{bottom:13.084347pt;}
.y1418_c00002{bottom:13.225880pt;}
.y1446_c00002{bottom:13.226280pt;}
.y15ef_c00002{bottom:13.226413pt;}
.y146b_c00002{bottom:13.227213pt;}
.yea3_c00002{bottom:13.227560pt;}
.ye54_c00002{bottom:13.227867pt;}
.y120f_c00002{bottom:13.228227pt;}
.yed1_c00002{bottom:13.228493pt;}
.y12ca_c00002{bottom:13.228813pt;}
.y107b_c00002{bottom:13.229027pt;}
.y12a4_c00002{bottom:13.229467pt;}
.y16f1_c00002{bottom:13.229480pt;}
.y111d_c00002{bottom:13.229560pt;}
.y12f8_c00002{bottom:13.229613pt;}
.yff5_c00002{bottom:13.229693pt;}
.y10a6_c00002{bottom:13.229960pt;}
.ye72_c00002{bottom:13.230000pt;}
.y10d7_c00002{bottom:13.230093pt;}
.y1692_c00002{bottom:13.230147pt;}
.yefb_c00002{bottom:13.230613pt;}
.y1626_c00002{bottom:13.230813pt;}
.y13e9_c00002{bottom:13.230933pt;}
.y1102_c00002{bottom:13.231027pt;}
.y16bd_c00002{bottom:13.231213pt;}
.y113e_c00002{bottom:13.231293pt;}
.y1163_c00002{bottom:13.231827pt;}
.y1323_c00002{bottom:13.231880pt;}
.y105e_c00002{bottom:13.549693pt;}
.yffe_c00002{bottom:13.550520pt;}
.ya40_c00002{bottom:13.706427pt;}
.y1546_c00002{bottom:14.026213pt;}
.y289_c00002{bottom:14.078667pt;}
.yfaa_c00002{bottom:14.080000pt;}
.y436_c00002{bottom:14.080267pt;}
.y3e7_c00002{bottom:14.080667pt;}
.yfb3_c00002{bottom:14.082667pt;}
.y7ef_c00002{bottom:14.131840pt;}
.y53f_c00002{bottom:14.132373pt;}
.y80d_c00002{bottom:14.132707pt;}
.y4fe_c00002{bottom:14.132800pt;}
.y55d_c00002{bottom:14.133227pt;}
.y7c5_c00002{bottom:14.133253pt;}
.yfad_c00002{bottom:14.133333pt;}
.y7a7_c00002{bottom:14.133440pt;}
.y1189_c00002{bottom:14.134667pt;}
.ybeb_c00002{bottom:14.185413pt;}
.yade_c00002{bottom:14.186413pt;}
.y14d5_c00002{bottom:14.454880pt;}
.y34c_c00002{bottom:14.907200pt;}
.y3b8_c00002{bottom:14.910067pt;}
.y399_c00002{bottom:14.911000pt;}
.y375_c00002{bottom:14.911267pt;}
.y1559_c00002{bottom:15.253600pt;}
.y119d_c00002{bottom:15.306267pt;}
.y521_c00002{bottom:16.532213pt;}
.y16c7_c00002{bottom:16.692680pt;}
.y1606_c00002{bottom:16.695747pt;}
.y842_c00002{bottom:16.799067pt;}
.y5a1_c00002{bottom:16.799333pt;}
.y5bc_c00002{bottom:16.800667pt;}
.y891_c00002{bottom:16.800760pt;}
.y82f_c00002{bottom:16.801200pt;}
.y8b9_c00002{bottom:16.802627pt;}
.y615_c00002{bottom:16.807093pt;}
.y641_c00002{bottom:16.808693pt;}
.y1663_c00002{bottom:17.072187pt;}
.y13b2_c00002{bottom:17.440000pt;}
.yc52_c00002{bottom:17.442667pt;}
.y159b_c00002{bottom:17.548640pt;}
.y172c_c00002{bottom:17.550773pt;}
.y867_c00002{bottom:17.920493pt;}
.y5ee_c00002{bottom:17.925493pt;}
.y1178_c00002{bottom:19.630453pt;}
.ydb_c00002{bottom:19.708067pt;}
.y315_c00002{bottom:20.185667pt;}
.y32e_c00002{bottom:20.185947pt;}
.y2d6_c00002{bottom:20.186533pt;}
.y2be_c00002{bottom:20.187147pt;}
.ya73_c00002{bottom:21.491360pt;}
.yb7b_c00002{bottom:21.492427pt;}
.ya59_c00002{bottom:21.493227pt;}
.ya08_c00002{bottom:21.493653pt;}
.yb61_c00002{bottom:21.493760pt;}
.ya16_c00002{bottom:21.495200pt;}
.y906_c00002{bottom:22.186187pt;}
.y959_c00002{bottom:22.187120pt;}
.y6a6_c00002{bottom:22.187267pt;}
.y6d5_c00002{bottom:22.188467pt;}
.y674_c00002{bottom:22.188667pt;}
.y934_c00002{bottom:22.188987pt;}
.y8d9_c00002{bottom:22.189200pt;}
.y701_c00002{bottom:22.189267pt;}
.y11a9_c00002{bottom:22.296387pt;}
.ye00_c00002{bottom:22.344920pt;}
.ydda_c00002{bottom:22.345453pt;}
.y1732_c00002{bottom:22.346400pt;}
.y1269_c00002{bottom:22.346560pt;}
.y1243_c00002{bottom:22.347093pt;}
.y1294_c00002{bottom:22.348027pt;}
.yd8f_c00002{bottom:22.348160pt;}
.y122b_c00002{bottom:22.348667pt;}
.ydab_c00002{bottom:22.348800pt;}
.y2fc_c00002{bottom:22.586173pt;}
.y13ab_c00002{bottom:22.776307pt;}
.y1d6_c00002{bottom:23.061600pt;}
.y136_c00002{bottom:23.065200pt;}
.y152_c00002{bottom:23.067600pt;}
.y1a9_c00002{bottom:23.067867pt;}
.y18a_c00002{bottom:23.068533pt;}
.y15f5_c00002{bottom:23.254880pt;}
.y158a_c00002{bottom:23.254893pt;}
.yd30_c00002{bottom:23.519253pt;}
.ycf6_c00002{bottom:23.519733pt;}
.ycdd_c00002{bottom:23.520307pt;}
.y1028_c00002{bottom:23.573613pt;}
.yd51_c00002{bottom:23.573747pt;}
.yd16_c00002{bottom:23.573787pt;}
.ya3f_c00002{bottom:23.894453pt;}
.y1545_c00002{bottom:25.866320pt;}
.y14d4_c00002{bottom:26.294467pt;}
.yfc7_c00002{bottom:27.146400pt;}
.ybc8_c00002{bottom:27.466267pt;}
.yc82_c00002{bottom:27.466413pt;}
.yaa5_c00002{bottom:27.466667pt;}
.yb03_c00002{bottom:27.466947pt;}
.ybce_c00002{bottom:27.467333pt;}
.yc10_c00002{bottom:27.469680pt;}
.yb24_c00002{bottom:27.481613pt;}
.yc9f_c00002{bottom:27.482147pt;}
.yb9c_c00002{bottom:27.484147pt;}
.yc31_c00002{bottom:27.484347pt;}
.yb6_c00002{bottom:27.489467pt;}
.ya0_c00002{bottom:27.489867pt;}
.yf1_c00002{bottom:27.490200pt;}
.y10f_c00002{bottom:27.545533pt;}
.y1417_c00002{bottom:27.625880pt;}
.y1445_c00002{bottom:27.626280pt;}
.y15ee_c00002{bottom:27.626413pt;}
.y146a_c00002{bottom:27.627213pt;}
.yea2_c00002{bottom:27.627560pt;}
.y120e_c00002{bottom:27.628227pt;}
.ye53_c00002{bottom:27.628400pt;}
.yed0_c00002{bottom:27.628493pt;}
.y12c9_c00002{bottom:27.628813pt;}
.y107a_c00002{bottom:27.629027pt;}
.y12a3_c00002{bottom:27.629467pt;}
.y16f0_c00002{bottom:27.629480pt;}
.y111c_c00002{bottom:27.629560pt;}
.y12f7_c00002{bottom:27.629613pt;}
.yff4_c00002{bottom:27.629693pt;}
.y10a5_c00002{bottom:27.629960pt;}
.y10d6_c00002{bottom:27.630093pt;}
.y1691_c00002{bottom:27.630147pt;}
.ye71_c00002{bottom:27.630533pt;}
.yefa_c00002{bottom:27.630613pt;}
.y1625_c00002{bottom:27.630813pt;}
.y13e8_c00002{bottom:27.630933pt;}
.y1101_c00002{bottom:27.631027pt;}
.y16bc_c00002{bottom:27.631213pt;}
.y113d_c00002{bottom:27.631293pt;}
.y1162_c00002{bottom:27.631827pt;}
.y1322_c00002{bottom:27.631880pt;}
.y520_c00002{bottom:28.052520pt;}
.y10b0_c00002{bottom:28.430453pt;}
.yf9c_c00002{bottom:28.431280pt;}
.ybea_c00002{bottom:28.585413pt;}
.yadd_c00002{bottom:28.586413pt;}
.y1662_c00002{bottom:28.912293pt;}
.y34b_c00002{bottom:29.307200pt;}
.y159a_c00002{bottom:29.388227pt;}
.y172b_c00002{bottom:29.390360pt;}
.yda_c00002{bottom:29.947653pt;}
.y374_c00002{bottom:30.431533pt;}
.y16c6_c00002{bottom:31.092680pt;}
.y1605_c00002{bottom:31.095747pt;}
.y841_c00002{bottom:31.199067pt;}
.y5a0_c00002{bottom:31.199333pt;}
.y5bb_c00002{bottom:31.200667pt;}
.y890_c00002{bottom:31.200760pt;}
.y82e_c00002{bottom:31.201200pt;}
.y8b8_c00002{bottom:31.202627pt;}
.y614_c00002{bottom:31.207093pt;}
.y640_c00002{bottom:31.208693pt;}
.y1177_c00002{bottom:31.470560pt;}
.y866_c00002{bottom:32.320493pt;}
.y5ed_c00002{bottom:32.325493pt;}
.y69_c00002{bottom:33.332800pt;}
.y564_c00002{bottom:33.333867pt;}
.y1a41_c00002{bottom:33.707333pt;}
.y2fb_c00002{bottom:34.105960pt;}
.y16c1_c00002{bottom:34.186400pt;}
.y18b8_c00002{bottom:34.346400pt;}
.y175a_c00002{bottom:34.452667pt;}
.y1af7_c00002{bottom:34.506267pt;}
.y13aa_c00002{bottom:34.616413pt;}
.y1838_c00002{bottom:34.666133pt;}
.y1817_c00002{bottom:34.772400pt;}
.y15f4_c00002{bottom:35.094467pt;}
.y1589_c00002{bottom:35.094480pt;}
.y1b48_c00002{bottom:35.306267pt;}
.y17c7_c00002{bottom:35.307333pt;}
.y17a3_c00002{bottom:35.412533pt;}
.ya3e_c00002{bottom:35.414240pt;}
.y281_c00002{bottom:35.763040pt;}
.y7ee_c00002{bottom:35.838107pt;}
.y53e_c00002{bottom:35.838640pt;}
.y4fd_c00002{bottom:35.839067pt;}
.y7a6_c00002{bottom:35.839707pt;}
.y905_c00002{bottom:36.586187pt;}
.y6a5_c00002{bottom:36.587267pt;}
.y6d4_c00002{bottom:36.588467pt;}
.y673_c00002{bottom:36.588667pt;}
.y958_c00002{bottom:36.588720pt;}
.y933_c00002{bottom:36.588987pt;}
.y8d8_c00002{bottom:36.589200pt;}
.y700_c00002{bottom:36.589267pt;}
.ydff_c00002{bottom:36.744920pt;}
.ydd9_c00002{bottom:36.745453pt;}
.y1268_c00002{bottom:36.746560pt;}
.y1242_c00002{bottom:36.747093pt;}
.y1293_c00002{bottom:36.748027pt;}
.yd8e_c00002{bottom:36.748160pt;}
.y122a_c00002{bottom:36.748667pt;}
.ydaa_c00002{bottom:36.748800pt;}
.y105d_c00002{bottom:37.229427pt;}
.yffd_c00002{bottom:37.230253pt;}
.y135_c00002{bottom:37.465200pt;}
.y151_c00002{bottom:37.467600pt;}
.y1a8_c00002{bottom:37.467867pt;}
.y1d5_c00002{bottom:37.516800pt;}
.y1544_c00002{bottom:37.706427pt;}
.yd2f_c00002{bottom:37.972853pt;}
.ycf5_c00002{bottom:37.973333pt;}
.y1027_c00002{bottom:37.973613pt;}
.yd50_c00002{bottom:37.973747pt;}
.yd15_c00002{bottom:37.973787pt;}
.ycdc_c00002{bottom:37.973907pt;}
.y14d3_c00002{bottom:38.134573pt;}
.y51f_c00002{bottom:38.238453pt;}
.y6e_c00002{bottom:38.252147pt;}
.y76_c00002{bottom:38.252720pt;}
.ya7e_c00002{bottom:38.253973pt;}
.yd62_c00002{bottom:38.254347pt;}
.ya77_c00002{bottom:38.254640pt;}
.y121f_c00002{bottom:38.254747pt;}
.y56b_c00002{bottom:38.254800pt;}
.y166f_c00002{bottom:38.255573pt;}
.y18ec_c00002{bottom:38.255680pt;}
.y56e_c00002{bottom:38.255840pt;}
.y1672_c00002{bottom:38.256613pt;}
.y189_c00002{bottom:39.921200pt;}
.y10af_c00002{bottom:40.270560pt;}
.yf9b_c00002{bottom:40.271387pt;}
.y1661_c00002{bottom:40.752400pt;}
.y11ce_c00002{bottom:40.853333pt;}
.y1599_c00002{bottom:41.174680pt;}
.y172a_c00002{bottom:41.176813pt;}
.yd9_c00002{bottom:41.466400pt;}
.ybc7_c00002{bottom:41.866267pt;}
.yc81_c00002{bottom:41.866413pt;}
.yaa4_c00002{bottom:41.866667pt;}
.yb02_c00002{bottom:41.866947pt;}
.ybcd_c00002{bottom:41.867333pt;}
.yc0f_c00002{bottom:41.869680pt;}
.yb23_c00002{bottom:41.881613pt;}
.yc9e_c00002{bottom:41.882147pt;}
.yb9b_c00002{bottom:41.884147pt;}
.yc30_c00002{bottom:41.884347pt;}
.y314_c00002{bottom:41.890867pt;}
.y2d5_c00002{bottom:41.891733pt;}
.y2bd_c00002{bottom:41.892347pt;}
.y32d_c00002{bottom:41.945813pt;}
.y1416_c00002{bottom:42.025880pt;}
.y1444_c00002{bottom:42.026280pt;}
.y15ed_c00002{bottom:42.026413pt;}
.y1469_c00002{bottom:42.027213pt;}
.yea1_c00002{bottom:42.027560pt;}
.y120d_c00002{bottom:42.028227pt;}
.yecf_c00002{bottom:42.028493pt;}
.y12c8_c00002{bottom:42.028813pt;}
.ye52_c00002{bottom:42.028933pt;}
.y1079_c00002{bottom:42.029027pt;}
.y12a2_c00002{bottom:42.029467pt;}
.y16ef_c00002{bottom:42.029480pt;}
.y111b_c00002{bottom:42.029560pt;}
.y12f6_c00002{bottom:42.029613pt;}
.yff3_c00002{bottom:42.029693pt;}
.y10a4_c00002{bottom:42.029960pt;}
.y10d5_c00002{bottom:42.030093pt;}
.y1690_c00002{bottom:42.030147pt;}
.yef9_c00002{bottom:42.030613pt;}
.y1624_c00002{bottom:42.030813pt;}
.y13e7_c00002{bottom:42.030933pt;}
.y1100_c00002{bottom:42.031027pt;}
.ye70_c00002{bottom:42.031067pt;}
.y16bb_c00002{bottom:42.031213pt;}
.y113c_c00002{bottom:42.031293pt;}
.y1161_c00002{bottom:42.031827pt;}
.y1321_c00002{bottom:42.031880pt;}
.ybe9_c00002{bottom:42.985413pt;}
.yadc_c00002{bottom:42.986413pt;}
.ya72_c00002{bottom:43.251227pt;}
.yb7a_c00002{bottom:43.252293pt;}
.ya58_c00002{bottom:43.253093pt;}
.ya07_c00002{bottom:43.253520pt;}
.yb60_c00002{bottom:43.253627pt;}
.ya15_c00002{bottom:43.255600pt;}
.y1176_c00002{bottom:43.310667pt;}
.y77a_c00002{bottom:43.360000pt;}
.y2fa_c00002{bottom:44.346067pt;}
.y16c5_c00002{bottom:45.492680pt;}
.y1604_c00002{bottom:45.495747pt;}
.y840_c00002{bottom:45.599067pt;}
.y59f_c00002{bottom:45.599333pt;}
.y5ba_c00002{bottom:45.600667pt;}
.y88f_c00002{bottom:45.600760pt;}
.y82d_c00002{bottom:45.601200pt;}
.y613_c00002{bottom:45.607093pt;}
.ya3d_c00002{bottom:45.653827pt;}
.y8b7_c00002{bottom:45.656227pt;}
.y63f_c00002{bottom:45.661760pt;}
.y11a8_c00002{bottom:46.030253pt;}
.y13a9_c00002{bottom:46.456520pt;}
.y3bb_c00002{bottom:46.590200pt;}
.y865_c00002{bottom:46.774093pt;}
.y5ec_c00002{bottom:46.779093pt;}
.y15f3_c00002{bottom:46.934573pt;}
.y1588_c00002{bottom:46.934587pt;}
.y6d_c00002{bottom:47.587040pt;}
.ya7d_c00002{bottom:47.587307pt;}
.y75_c00002{bottom:47.587613pt;}
.yd61_c00002{bottom:47.587680pt;}
.ya76_c00002{bottom:47.587973pt;}
.y121e_c00002{bottom:47.588080pt;}
.y56a_c00002{bottom:47.588133pt;}
.y166e_c00002{bottom:47.588907pt;}
.y280_c00002{bottom:47.603147pt;}
.y105c_c00002{bottom:49.069533pt;}
.yffc_c00002{bottom:49.070360pt;}
.y9f_c00002{bottom:49.249733pt;}
.yb5_c00002{bottom:49.249867pt;}
.yf0_c00002{bottom:49.250600pt;}
.y10e_c00002{bottom:49.253400pt;}
.y1543_c00002{bottom:49.492360pt;}
.y14d2_c00002{bottom:49.974680pt;}
.y7ed_c00002{bottom:50.238107pt;}
.y53d_c00002{bottom:50.238640pt;}
.y4ff_c00002{bottom:50.239067pt;}
.y4fc_c00002{bottom:50.239600pt;}
.y7a5_c00002{bottom:50.239707pt;}
.y51e_c00002{bottom:50.292093pt;}
.y80c_c00002{bottom:50.293107pt;}
.y55c_c00002{bottom:50.293627pt;}
.y7c4_c00002{bottom:50.293653pt;}
.y4a0_c00002{bottom:50.642800pt;}
.y6d3_c00002{bottom:50.988467pt;}
.y672_c00002{bottom:50.988667pt;}
.y932_c00002{bottom:50.988987pt;}
.y8d7_c00002{bottom:50.989200pt;}
.y904_c00002{bottom:51.039787pt;}
.y6a4_c00002{bottom:51.040867pt;}
.y957_c00002{bottom:51.042320pt;}
.y6ff_c00002{bottom:51.042867pt;}
.ydfe_c00002{bottom:51.144920pt;}
.y1267_c00002{bottom:51.146560pt;}
.yd8d_c00002{bottom:51.148160pt;}
.y1229_c00002{bottom:51.148667pt;}
.yda9_c00002{bottom:51.148800pt;}
.ydd8_c00002{bottom:51.199053pt;}
.y1241_c00002{bottom:51.200693pt;}
.y1292_c00002{bottom:51.201627pt;}
.yd8_c00002{bottom:51.651813pt;}
.y1d4_c00002{bottom:51.916800pt;}
.y134_c00002{bottom:51.917333pt;}
.y1a7_c00002{bottom:51.920533pt;}
.y150_c00002{bottom:51.920667pt;}
.y1894_c00002{bottom:51.947333pt;}
.y17f5_c00002{bottom:52.052667pt;}
.y10ae_c00002{bottom:52.110667pt;}
.yf9a_c00002{bottom:52.111493pt;}
.yd2e_c00002{bottom:52.372853pt;}
.ycf4_c00002{bottom:52.373333pt;}
.y1026_c00002{bottom:52.373613pt;}
.yd4f_c00002{bottom:52.373747pt;}
.yd14_c00002{bottom:52.373787pt;}
.ycdb_c00002{bottom:52.373907pt;}
.y1783_c00002{bottom:52.587467pt;}
.y1660_c00002{bottom:52.591987pt;}
.y47b_c00002{bottom:53.308880pt;}
.y1598_c00002{bottom:53.873640pt;}
.y1729_c00002{bottom:53.875773pt;}
.y188_c00002{bottom:54.321200pt;}
.y1175_c00002{bottom:55.150773pt;}
.y2f9_c00002{bottom:55.865853pt;}
.ybc6_c00002{bottom:56.266267pt;}
.yc80_c00002{bottom:56.266413pt;}
.yaa3_c00002{bottom:56.266667pt;}
.yb01_c00002{bottom:56.266947pt;}
.ybcc_c00002{bottom:56.267333pt;}
.yc0e_c00002{bottom:56.269680pt;}
.yadb_c00002{bottom:56.319747pt;}
.yb22_c00002{bottom:56.335747pt;}
.yb9a_c00002{bottom:56.337747pt;}
.yc2f_c00002{bottom:56.338480pt;}
.y1443_c00002{bottom:56.426280pt;}
.yece_c00002{bottom:56.428493pt;}
.y1078_c00002{bottom:56.429027pt;}
.ye51_c00002{bottom:56.429467pt;}
.y111a_c00002{bottom:56.429560pt;}
.y12f5_c00002{bottom:56.429613pt;}
.y10d4_c00002{bottom:56.430093pt;}
.y168f_c00002{bottom:56.430147pt;}
.y13e6_c00002{bottom:56.430933pt;}
.ye6f_c00002{bottom:56.431600pt;}
.y1415_c00002{bottom:56.479480pt;}
.y15ec_c00002{bottom:56.480013pt;}
.yea0_c00002{bottom:56.480227pt;}
.y1468_c00002{bottom:56.480813pt;}
.y12c7_c00002{bottom:56.481480pt;}
.y120c_c00002{bottom:56.482360pt;}
.y16ee_c00002{bottom:56.483080pt;}
.yff2_c00002{bottom:56.483827pt;}
.y10a3_c00002{bottom:56.484093pt;}
.yef8_c00002{bottom:56.484213pt;}
.y1623_c00002{bottom:56.484947pt;}
.y10ff_c00002{bottom:56.485160pt;}
.y16ba_c00002{bottom:56.485347pt;}
.y113b_c00002{bottom:56.485427pt;}
.y1160_c00002{bottom:56.485960pt;}
.y1320_c00002{bottom:56.486013pt;}
.y4b8_c00002{bottom:56.720000pt;}
.ya7c_c00002{bottom:56.919600pt;}
.yd60_c00002{bottom:56.919973pt;}
.ya75_c00002{bottom:56.920267pt;}
.y6c_c00002{bottom:56.920373pt;}
.y569_c00002{bottom:56.920427pt;}
.y74_c00002{bottom:56.920947pt;}
.y166d_c00002{bottom:56.921200pt;}
.y18eb_c00002{bottom:56.921307pt;}
.y56d_c00002{bottom:56.921467pt;}
.y1671_c00002{bottom:56.922240pt;}
.ya3c_c00002{bottom:57.174133pt;}
.ybe8_c00002{bottom:57.439013pt;}
.y11a7_c00002{bottom:57.816707pt;}
.y13a8_c00002{bottom:58.296107pt;}
.y15f2_c00002{bottom:58.774680pt;}
.y1587_c00002{bottom:58.774693pt;}
.y779_c00002{bottom:59.306773pt;}
.y434_c00002{bottom:59.442747pt;}
.y469_c00002{bottom:59.442787pt;}
.y16c4_c00002{bottom:59.946280pt;}
.y1603_c00002{bottom:59.949347pt;}
.y83f_c00002{bottom:60.052133pt;}
.y59e_c00002{bottom:60.052933pt;}
.y5b9_c00002{bottom:60.054267pt;}
.y88e_c00002{bottom:60.054360pt;}
.y82c_c00002{bottom:60.054800pt;}
.y8b6_c00002{bottom:60.056227pt;}
.y612_c00002{bottom:60.061227pt;}
.y63e_c00002{bottom:60.061760pt;}
.y105b_c00002{bottom:60.909640pt;}
.yffb_c00002{bottom:60.910467pt;}
.y864_c00002{bottom:61.174093pt;}
.y5eb_c00002{bottom:61.179093pt;}
.y13bb_c00002{bottom:61.280133pt;}
.y1542_c00002{bottom:61.332467pt;}
.y49f_c00002{bottom:62.482907pt;}
.y14d1_c00002{bottom:62.673640pt;}
.y1728_c00002{bottom:62.675773pt;}
.yd7_c00002{bottom:63.171600pt;}
.y313_c00002{bottom:63.650733pt;}
.y32c_c00002{bottom:63.651013pt;}
.y2d4_c00002{bottom:63.651600pt;}
.y2bc_c00002{bottom:63.651680pt;}
.y10ad_c00002{bottom:63.950253pt;}
.yf99_c00002{bottom:63.951080pt;}
.y165f_c00002{bottom:64.378440pt;}
.y7ec_c00002{bottom:64.692240pt;}
.y51d_c00002{bottom:64.692627pt;}
.y53c_c00002{bottom:64.692773pt;}
.y80b_c00002{bottom:64.693107pt;}
.y4fb_c00002{bottom:64.693200pt;}
.y55b_c00002{bottom:64.693627pt;}
.y7c3_c00002{bottom:64.693653pt;}
.y7a4_c00002{bottom:64.693840pt;}
.ya71_c00002{bottom:64.957493pt;}
.yb79_c00002{bottom:64.958560pt;}
.ya57_c00002{bottom:64.959360pt;}
.ya06_c00002{bottom:64.959787pt;}
.yb5f_c00002{bottom:64.959893pt;}
.ya14_c00002{bottom:64.962933pt;}
.y47a_c00002{bottom:65.148987pt;}
.y903_c00002{bottom:65.439787pt;}
.y6a3_c00002{bottom:65.440867pt;}
.y6d2_c00002{bottom:65.441133pt;}
.y671_c00002{bottom:65.441333pt;}
.y931_c00002{bottom:65.441653pt;}
.y956_c00002{bottom:65.442320pt;}
.y6fe_c00002{bottom:65.442867pt;}
.ydfd_c00002{bottom:65.598520pt;}
.ydd7_c00002{bottom:65.599053pt;}
.y1266_c00002{bottom:65.600160pt;}
.y1291_c00002{bottom:65.601627pt;}
.yd8c_c00002{bottom:65.601760pt;}
.y1228_c00002{bottom:65.602267pt;}
.yda8_c00002{bottom:65.602400pt;}
.y2f8_c00002{bottom:66.051267pt;}
.y6b_c00002{bottom:66.252667pt;}
.ya7b_c00002{bottom:66.252933pt;}
.y73_c00002{bottom:66.253240pt;}
.yd5f_c00002{bottom:66.253307pt;}
.ya74_c00002{bottom:66.253600pt;}
.y121d_c00002{bottom:66.253707pt;}
.y568_c00002{bottom:66.253760pt;}
.y166c_c00002{bottom:66.254533pt;}
.y18ea_c00002{bottom:66.254640pt;}
.y56c_c00002{bottom:66.254800pt;}
.y1670_c00002{bottom:66.255573pt;}
.y1d3_c00002{bottom:66.316800pt;}
.y133_c00002{bottom:66.317867pt;}
.y1a6_c00002{bottom:66.320533pt;}
.y14f_c00002{bottom:66.320667pt;}
.y373_c00002{bottom:66.323133pt;}
.yd2d_c00002{bottom:66.772853pt;}
.ycf3_c00002{bottom:66.773333pt;}
.y1025_c00002{bottom:66.773613pt;}
.yd4e_c00002{bottom:66.773747pt;}
.yd13_c00002{bottom:66.773787pt;}
.ycda_c00002{bottom:66.773907pt;}
.y1174_c00002{bottom:66.990360pt;}
.ya3b_c00002{bottom:67.414240pt;}
.y187_c00002{bottom:67.440987pt;}
.y1240_c00002{bottom:68.000693pt;}
.y11a6_c00002{bottom:69.656813pt;}
.y13a7_c00002{bottom:70.136213pt;}
.ybe7_c00002{bottom:70.719227pt;}
.ybc5_c00002{bottom:70.719333pt;}
.yc7f_c00002{bottom:70.720013pt;}
.yaa2_c00002{bottom:70.720267pt;}
.yb00_c00002{bottom:70.720547pt;}
.ybcb_c00002{bottom:70.720933pt;}
.yc0d_c00002{bottom:70.723280pt;}
.yb21_c00002{bottom:70.735747pt;}
.yb99_c00002{bottom:70.737747pt;}
.yc2e_c00002{bottom:70.738480pt;}
.y1442_c00002{bottom:70.879347pt;}
.y1414_c00002{bottom:70.879480pt;}
.y15eb_c00002{bottom:70.880013pt;}
.ye9f_c00002{bottom:70.880227pt;}
.y1467_c00002{bottom:70.880813pt;}
.yecd_c00002{bottom:70.881160pt;}
.y12c6_c00002{bottom:70.881480pt;}
.y1077_c00002{bottom:70.881693pt;}
.y1119_c00002{bottom:70.882227pt;}
.y12f4_c00002{bottom:70.882280pt;}
.y120b_c00002{bottom:70.882360pt;}
.y10d3_c00002{bottom:70.882760pt;}
.y168e_c00002{bottom:70.882813pt;}
.ye50_c00002{bottom:70.883067pt;}
.y16ed_c00002{bottom:70.883080pt;}
.yff1_c00002{bottom:70.883827pt;}
.y13e5_c00002{bottom:70.884000pt;}
.y10a2_c00002{bottom:70.884093pt;}
.yef7_c00002{bottom:70.884213pt;}
.y10fe_c00002{bottom:70.885160pt;}
.ye6e_c00002{bottom:70.885200pt;}
.y16b9_c00002{bottom:70.885347pt;}
.y113a_c00002{bottom:70.885427pt;}
.y1622_c00002{bottom:70.885480pt;}
.y115f_c00002{bottom:70.885960pt;}
.y131f_c00002{bottom:70.886013pt;}
.y778_c00002{bottom:70.933333pt;}
.y9e_c00002{bottom:71.009600pt;}
.yb4_c00002{bottom:71.010267pt;}
.yef_c00002{bottom:71.011000pt;}
.y10d_c00002{bottom:71.013267pt;}
.y468_c00002{bottom:71.282373pt;}
.y433_c00002{bottom:71.282853pt;}
.y14d0_c00002{bottom:71.473640pt;}
.y1586_c00002{bottom:71.474173pt;}
.y1727_c00002{bottom:71.475773pt;}
.yada_c00002{bottom:71.839080pt;}
.y9ce_c00002{bottom:72.160000pt;}
.y105a_c00002{bottom:72.695573pt;}
.yffa_c00002{bottom:72.696400pt;}
.y13ba_c00002{bottom:73.120240pt;}
.y1541_c00002{bottom:73.172573pt;}
.yd6_c00002{bottom:73.411707pt;}
.y5ea_c00002{bottom:73.979613pt;}
.y34a_c00002{bottom:74.107200pt;}
.y398_c00002{bottom:74.111000pt;}
.y16c3_c00002{bottom:74.346280pt;}
.y1602_c00002{bottom:74.349347pt;}
.y83e_c00002{bottom:74.452667pt;}
.y88d_c00002{bottom:74.454360pt;}
.y82b_c00002{bottom:74.454800pt;}
.y8b5_c00002{bottom:74.456227pt;}
.y863_c00002{bottom:75.574093pt;}
.y10ac_c00002{bottom:75.790360pt;}
.yf98_c00002{bottom:75.791187pt;}
.y372_c00002{bottom:76.563240pt;}
.y3e5_c00002{bottom:76.989107pt;}
.y165e_c00002{bottom:77.077400pt;}
.y2f7_c00002{bottom:77.571053pt;}
.y1173_c00002{bottom:78.832027pt;}
.ya3a_c00002{bottom:78.934027pt;}
.y7eb_c00002{bottom:79.092240pt;}
.y53b_c00002{bottom:79.092773pt;}
.y80a_c00002{bottom:79.093107pt;}
.y51c_c00002{bottom:79.093160pt;}
.y4fa_c00002{bottom:79.093200pt;}
.y55a_c00002{bottom:79.093627pt;}
.y7c2_c00002{bottom:79.093653pt;}
.y7a3_c00002{bottom:79.093840pt;}
.y77_c00002{bottom:79.372400pt;}
.y56f_c00002{bottom:79.374000pt;}
.y777_c00002{bottom:79.733333pt;}
.y902_c00002{bottom:79.839787pt;}
.y6a2_c00002{bottom:79.840867pt;}
.y6d1_c00002{bottom:79.841133pt;}
.y670_c00002{bottom:79.841333pt;}
.y930_c00002{bottom:79.841653pt;}
.y955_c00002{bottom:79.842320pt;}
.y6fd_c00002{bottom:79.842867pt;}
.ydfc_c00002{bottom:79.998520pt;}
.ydd6_c00002{bottom:79.999053pt;}
.y1265_c00002{bottom:80.000160pt;}
.y1290_c00002{bottom:80.001627pt;}
.yd8b_c00002{bottom:80.001760pt;}
.y1227_c00002{bottom:80.002267pt;}
.yda7_c00002{bottom:80.002400pt;}
.y14cf_c00002{bottom:80.273640pt;}
.y1585_c00002{bottom:80.274173pt;}
.y1726_c00002{bottom:80.275773pt;}
.y42d_c00002{bottom:80.400000pt;}
.y1d2_c00002{bottom:80.717333pt;}
.y132_c00002{bottom:80.718400pt;}
.y1a5_c00002{bottom:80.720533pt;}
.y14e_c00002{bottom:80.720667pt;}
.yd2c_c00002{bottom:81.172853pt;}
.ycf2_c00002{bottom:81.173333pt;}
.ycd9_c00002{bottom:81.173907pt;}
.yd12_c00002{bottom:81.226453pt;}
.y1024_c00002{bottom:81.227213pt;}
.yd4d_c00002{bottom:81.227347pt;}
.y6a_c00002{bottom:81.452667pt;}
.y563_c00002{bottom:81.453600pt;}
.y11a5_c00002{bottom:81.496400pt;}
.y59d_c00002{bottom:81.759200pt;}
.y5b8_c00002{bottom:81.761067pt;}
.y611_c00002{bottom:81.767493pt;}
.y13a6_c00002{bottom:81.976320pt;}
.y123f_c00002{bottom:82.400693pt;}
.y186_c00002{bottom:83.121253pt;}
.y27f_c00002{bottom:83.123413pt;}
.y1590_c00002{bottom:83.465760pt;}
.y5e9_c00002{bottom:84.219720pt;}
.y1af3_c00002{bottom:84.266133pt;}
.y1059_c00002{bottom:84.535680pt;}
.yff9_c00002{bottom:84.536507pt;}
.y1413_c00002{bottom:84.799213pt;}
.y14f9_c00002{bottom:84.800093pt;}
.yd5_c00002{bottom:84.931493pt;}
.y13b9_c00002{bottom:84.959827pt;}
.y1512_c00002{bottom:84.959933pt;}
.yad9_c00002{bottom:85.119293pt;}
.ybc4_c00002{bottom:85.119867pt;}
.yc7e_c00002{bottom:85.120013pt;}
.yaa1_c00002{bottom:85.120267pt;}
.yaff_c00002{bottom:85.120547pt;}
.yc0c_c00002{bottom:85.123280pt;}
.yb20_c00002{bottom:85.135747pt;}
.yb98_c00002{bottom:85.137747pt;}
.yc2d_c00002{bottom:85.138480pt;}
.ye9e_c00002{bottom:85.280227pt;}
.yecc_c00002{bottom:85.281160pt;}
.y12c5_c00002{bottom:85.281480pt;}
.y1076_c00002{bottom:85.281693pt;}
.y1118_c00002{bottom:85.282227pt;}
.y12f3_c00002{bottom:85.282280pt;}
.y120a_c00002{bottom:85.282360pt;}
.y10d2_c00002{bottom:85.282760pt;}
.y168d_c00002{bottom:85.282813pt;}
.ye4f_c00002{bottom:85.283067pt;}
.yff0_c00002{bottom:85.283827pt;}
.y10a1_c00002{bottom:85.284093pt;}
.yef6_c00002{bottom:85.284213pt;}
.y10fd_c00002{bottom:85.285160pt;}
.ye6d_c00002{bottom:85.285200pt;}
.y16b8_c00002{bottom:85.285347pt;}
.y1139_c00002{bottom:85.285427pt;}
.y115e_c00002{bottom:85.285960pt;}
.y131e_c00002{bottom:85.286013pt;}
.y32b_c00002{bottom:85.410347pt;}
.y312_c00002{bottom:85.410600pt;}
.y2d3_c00002{bottom:85.411467pt;}
.y2bb_c00002{bottom:85.411547pt;}
.y1540_c00002{bottom:85.871533pt;}
.y165d_c00002{bottom:85.877400pt;}
.y1816_c00002{bottom:85.974000pt;}
.ybe6_c00002{bottom:86.238960pt;}
.ya70_c00002{bottom:86.717893pt;}
.yb78_c00002{bottom:86.718960pt;}
.ya56_c00002{bottom:86.719227pt;}
.yb5e_c00002{bottom:86.719760pt;}
.ya05_c00002{bottom:86.720187pt;}
.ya13_c00002{bottom:86.722800pt;}
.y10ab_c00002{bottom:87.630467pt;}
.yf97_c00002{bottom:87.631293pt;}
.y2f6_c00002{bottom:87.811160pt;}
.y371_c00002{bottom:88.083547pt;}
.y1a6a_c00002{bottom:88.106267pt;}
.y9cd_c00002{bottom:88.159893pt;}
.y1601_c00002{bottom:88.749347pt;}
.y3e4_c00002{bottom:88.829213pt;}
.y83d_c00002{bottom:88.853200pt;}
.y88c_c00002{bottom:88.854360pt;}
.y82a_c00002{bottom:88.854800pt;}
.y8b4_c00002{bottom:88.856227pt;}
.y1abd_c00002{bottom:89.066133pt;}
.y14ce_c00002{bottom:89.073640pt;}
.y1584_c00002{bottom:89.074173pt;}
.y1725_c00002{bottom:89.075773pt;}
.ya39_c00002{bottom:89.120480pt;}
.y862_c00002{bottom:89.974093pt;}
.y1af5_c00002{bottom:90.186400pt;}
.y776_c00002{bottom:91.320267pt;}
.y1172_c00002{bottom:91.528907pt;}
.y1a93_c00002{bottom:91.786400pt;}
.y1441_c00002{bottom:92.586680pt;}
.y13e4_c00002{bottom:92.591333pt;}
.yb3_c00002{bottom:92.717600pt;}
.y9d_c00002{bottom:92.718000pt;}
.yee_c00002{bottom:92.718333pt;}
.y10c_c00002{bottom:92.718467pt;}
.y11a4_c00002{bottom:93.337027pt;}
.y7ea_c00002{bottom:93.492240pt;}
.y53a_c00002{bottom:93.492773pt;}
.y4f9_c00002{bottom:93.493200pt;}
.y7a2_c00002{bottom:93.493840pt;}
.y51b_c00002{bottom:93.545293pt;}
.y1af6_c00002{bottom:93.546400pt;}
.y809_c00002{bottom:93.546707pt;}
.y559_c00002{bottom:93.547227pt;}
.y7c1_c00002{bottom:93.547253pt;}
.y1_c00002{bottom:94.000000pt;}
.y901_c00002{bottom:94.239787pt;}
.y6a1_c00002{bottom:94.240867pt;}
.y6d0_c00002{bottom:94.241133pt;}
.y66f_c00002{bottom:94.241333pt;}
.y92f_c00002{bottom:94.241653pt;}
.y954_c00002{bottom:94.242320pt;}
.y6fc_c00002{bottom:94.242867pt;}
.y1a6b_c00002{bottom:94.346400pt;}
.ydfb_c00002{bottom:94.398520pt;}
.ye1d_c00002{bottom:94.399053pt;}
.y4ce_c00002{bottom:94.400000pt;}
.y1264_c00002{bottom:94.400160pt;}
.y128f_c00002{bottom:94.401627pt;}
.yd8a_c00002{bottom:94.401760pt;}
.y1226_c00002{bottom:94.402267pt;}
.yda6_c00002{bottom:94.402400pt;}
.y153f_c00002{bottom:94.671533pt;}
.y13a5_c00002{bottom:94.675800pt;}
.y165c_c00002{bottom:94.677400pt;}
.y27e_c00002{bottom:94.963000pt;}
.y77d_c00002{bottom:94.974000pt;}
.y1412_c00002{bottom:94.985667pt;}
.y131_c00002{bottom:95.118933pt;}
.yd4_c00002{bottom:95.119000pt;}
.y1a4_c00002{bottom:95.120533pt;}
.y14d_c00002{bottom:95.120667pt;}
.y1d1_c00002{bottom:95.170000pt;}
.y1abe_c00002{bottom:95.306267pt;}
.ycf1_c00002{bottom:95.626000pt;}
.yd11_c00002{bottom:95.626453pt;}
.ycd8_c00002{bottom:95.626573pt;}
.y1023_c00002{bottom:95.627213pt;}
.yd4c_c00002{bottom:95.627347pt;}
.y349_c00002{bottom:95.867067pt;}
.y397_c00002{bottom:95.870867pt;}
.y59c_c00002{bottom:96.212267pt;}
.y5b7_c00002{bottom:96.214133pt;}
.y5e8_c00002{bottom:96.219720pt;}
.y610_c00002{bottom:96.221093pt;}
.y63d_c00002{bottom:96.221627pt;}
.y1058_c00002{bottom:96.375787pt;}
.yff8_c00002{bottom:96.376613pt;}
.y15bc_c00002{bottom:96.640160pt;}
.y14f8_c00002{bottom:96.640200pt;}
.ydd5_c00002{bottom:96.799053pt;}
.y13b8_c00002{bottom:96.799933pt;}
.y1511_c00002{bottom:96.800040pt;}
.y123e_c00002{bottom:96.800693pt;}
.y1a6c_c00002{bottom:97.546400pt;}
.y185_c00002{bottom:97.573387pt;}
.y15c2_c00002{bottom:97.640133pt;}
.y1a94_c00002{bottom:97.866133pt;}
.y49e_c00002{bottom:98.002640pt;}
.y15f9_c00002{bottom:98.133867pt;}
.y370_c00002{bottom:98.271053pt;}
.y1abf_c00002{bottom:98.506267pt;}
.y12c4_c00002{bottom:99.201213pt;}
.y2f5_c00002{bottom:99.330947pt;}
.ybe5_c00002{bottom:99.519173pt;}
.yaa0_c00002{bottom:99.520267pt;}
.ybc3_c00002{bottom:99.520400pt;}
.ybca_c00002{bottom:99.520933pt;}
.yc0b_c00002{bottom:99.523280pt;}
.yc2c_c00002{bottom:99.538480pt;}
.y1af1_c00002{bottom:99.626000pt;}
.ye9d_c00002{bottom:99.680227pt;}
.yecb_c00002{bottom:99.681160pt;}
.y1075_c00002{bottom:99.681693pt;}
.y1117_c00002{bottom:99.682227pt;}
.y1209_c00002{bottom:99.682360pt;}
.y10d1_c00002{bottom:99.682760pt;}
.ye4e_c00002{bottom:99.683067pt;}
.yfef_c00002{bottom:99.683827pt;}
.y10a0_c00002{bottom:99.684093pt;}
.yef5_c00002{bottom:99.684213pt;}
.y10fc_c00002{bottom:99.685160pt;}
.ye6c_c00002{bottom:99.685200pt;}
.y1138_c00002{bottom:99.685427pt;}
.y115d_c00002{bottom:99.685960pt;}
.y9cc_c00002{bottom:99.785933pt;}
.y10aa_c00002{bottom:100.328907pt;}
.yf96_c00002{bottom:100.329733pt;}
.yad8_c00002{bottom:100.639027pt;}
.ya38_c00002{bottom:100.640267pt;}
.y479_c00002{bottom:100.669253pt;}
.y1a95_c00002{bottom:100.906267pt;}
.y9cf_c00002{bottom:101.119733pt;}
.y4a1_c00002{bottom:102.400000pt;}
.y83c_c00002{bottom:103.305867pt;}
.y88b_c00002{bottom:103.307427pt;}
.y829_c00002{bottom:103.308400pt;}
.y8b3_c00002{bottom:103.310360pt;}
.y1a68_c00002{bottom:103.466133pt;}
.y153e_c00002{bottom:103.471533pt;}
.y13a4_c00002{bottom:103.475800pt;}
.y165b_c00002{bottom:103.477400pt;}
.y1815_c00002{bottom:103.733867pt;}
.y62_c00002{bottom:104.080000pt;}
.y1471_c00002{bottom:104.109067pt;}
.y14b3_c00002{bottom:104.110973pt;}
.y148e_c00002{bottom:104.162040pt;}
.y14cc_c00002{bottom:104.164307pt;}
.y1723_c00002{bottom:104.165107pt;}
.y1582_c00002{bottom:104.166173pt;}
.y1abc_c00002{bottom:104.426000pt;}
.y861_c00002{bottom:104.426227pt;}
.y47c_c00002{bottom:105.119733pt;}
.y11a3_c00002{bottom:105.177133pt;}
.yd3_c00002{bottom:106.638787pt;}
.y467_c00002{bottom:106.802107pt;}
.y432_c00002{bottom:106.802587pt;}
.y27d_c00002{bottom:106.803107pt;}
.y1a92_c00002{bottom:106.826000pt;}
.y1440_c00002{bottom:106.986680pt;}
.y12a1_c00002{bottom:106.989333pt;}
.y12f2_c00002{bottom:106.989613pt;}
.y168c_c00002{bottom:106.990147pt;}
.y13e3_c00002{bottom:106.991333pt;}
.y1411_c00002{bottom:107.039307pt;}
.y15ea_c00002{bottom:107.039880pt;}
.y1466_c00002{bottom:107.040680pt;}
.y16ec_c00002{bottom:107.042413pt;}
.y311_c00002{bottom:107.117933pt;}
.y32a_c00002{bottom:107.118747pt;}
.y2d2_c00002{bottom:107.118800pt;}
.y2ba_c00002{bottom:107.119413pt;}
.y1701_c00002{bottom:107.631907pt;}
.y7e9_c00002{bottom:107.944373pt;}
.y539_c00002{bottom:107.944907pt;}
.y51a_c00002{bottom:107.945293pt;}
.y4f8_c00002{bottom:107.945867pt;}
.y7a1_c00002{bottom:107.945973pt;}
.y808_c00002{bottom:107.946707pt;}
.y558_c00002{bottom:107.947227pt;}
.y7c0_c00002{bottom:107.947253pt;}
.ya55_c00002{bottom:108.425493pt;}
.yb5d_c00002{bottom:108.426027pt;}
.ya04_c00002{bottom:108.426453pt;}
.y15bb_c00002{bottom:108.426613pt;}
.y1558_c00002{bottom:108.427040pt;}
.ya12_c00002{bottom:108.429067pt;}
.ya6f_c00002{bottom:108.478293pt;}
.yb77_c00002{bottom:108.479360pt;}
.y14f7_c00002{bottom:108.480307pt;}
.y119c_c00002{bottom:108.480600pt;}
.y9cb_c00002{bottom:108.533333pt;}
.y13b7_c00002{bottom:108.640040pt;}
.y1510_c00002{bottom:108.640147pt;}
.y6cf_c00002{bottom:108.641133pt;}
.y66e_c00002{bottom:108.641333pt;}
.y92e_c00002{bottom:108.641653pt;}
.y900_c00002{bottom:108.693920pt;}
.y6a0_c00002{bottom:108.694467pt;}
.y953_c00002{bottom:108.694987pt;}
.y6fb_c00002{bottom:108.695533pt;}
.ydfa_c00002{bottom:108.798520pt;}
.y1263_c00002{bottom:108.800160pt;}
.yd89_c00002{bottom:108.801760pt;}
.y1225_c00002{bottom:108.802267pt;}
.yda5_c00002{bottom:108.802400pt;}
.ye1c_c00002{bottom:108.852653pt;}
.y123d_c00002{bottom:108.854333pt;}
.y128e_c00002{bottom:108.855227pt;}
.y1057_c00002{bottom:109.074747pt;}
.yf95_c00002{bottom:109.076613pt;}
.y12c3_c00002{bottom:109.441320pt;}
.y2f4_c00002{bottom:109.518453pt;}
.y1d0_c00002{bottom:109.570000pt;}
.y130_c00002{bottom:109.571067pt;}
.y1a3_c00002{bottom:109.573200pt;}
.y14c_c00002{bottom:109.573733pt;}
.y36f_c00002{bottom:109.790840pt;}
.y49d_c00002{bottom:109.842227pt;}
.y116e_c00002{bottom:109.972133pt;}
.ycf0_c00002{bottom:110.026000pt;}
.yd10_c00002{bottom:110.026453pt;}
.ycd7_c00002{bottom:110.026573pt;}
.y1022_c00002{bottom:110.027213pt;}
.yd4b_c00002{bottom:110.027347pt;}
.y59b_c00002{bottom:110.612267pt;}
.y5b6_c00002{bottom:110.614133pt;}
.y5e7_c00002{bottom:110.619720pt;}
.y60f_c00002{bottom:110.621093pt;}
.y63c_c00002{bottom:110.621627pt;}
.ya37_c00002{bottom:110.880373pt;}
.y435_c00002{bottom:111.200000pt;}
.ydd4_c00002{bottom:111.253187pt;}
.y184_c00002{bottom:111.973387pt;}
.y478_c00002{bottom:112.508840pt;}
.y1aed_c00002{bottom:112.746400pt;}
.y19b9_c00002{bottom:113.173347pt;}
.ye9c_c00002{bottom:113.600493pt;}
.ybc2_c00002{bottom:113.920933pt;}
.y9c_c00002{bottom:114.476800pt;}
.yb2_c00002{bottom:114.477467pt;}
.yed_c00002{bottom:114.478200pt;}
.y10b_c00002{bottom:114.478333pt;}
.ya7f_c00002{bottom:114.559867pt;}
.ybe4_c00002{bottom:115.092107pt;}
.y775_c00002{bottom:116.388533pt;}
.yd2_c00002{bottom:116.878373pt;}
.y860_c00002{bottom:117.225707pt;}
.y348_c00002{bottom:117.626933pt;}
.y3b7_c00002{bottom:117.630333pt;}
.y396_c00002{bottom:117.631267pt;}
.y1056_c00002{bottom:117.874747pt;}
.yf94_c00002{bottom:117.876613pt;}
.y286_c00002{bottom:117.972400pt;}
.y135d_c00002{bottom:118.560733pt;}
.y153c_c00002{bottom:118.560867pt;}
.y1381_c00002{bottom:118.561800pt;}
.y148d_c00002{bottom:118.562040pt;}
.y133f_c00002{bottom:118.562667pt;}
.y162a_c00002{bottom:118.562867pt;}
.y14b2_c00002{bottom:118.563640pt;}
.y14cb_c00002{bottom:118.564307pt;}
.y1722_c00002{bottom:118.565107pt;}
.y1581_c00002{bottom:118.566173pt;}
.y1659_c00002{bottom:118.566733pt;}
.y13a2_c00002{bottom:118.567800pt;}
.y466_c00002{bottom:118.589600pt;}
.y431_c00002{bottom:118.590080pt;}
.y27c_c00002{bottom:118.590600pt;}
.y1aef_c00002{bottom:118.666133pt;}
.y9d3_c00002{bottom:119.733867pt;}
.y36e_c00002{bottom:120.030947pt;}
.y9ca_c00002{bottom:120.150093pt;}
.y15ba_c00002{bottom:120.266200pt;}
.y1557_c00002{bottom:120.266627pt;}
.y14f6_c00002{bottom:120.320413pt;}
.yfc6_c00002{bottom:120.320693pt;}
.y119b_c00002{bottom:120.320707pt;}
.y150f_c00002{bottom:120.426080pt;}
.y13b6_c00002{bottom:120.480147pt;}
.y2f3_c00002{bottom:121.038760pt;}
.y1410_c00002{bottom:121.439307pt;}
.y143f_c00002{bottom:121.439747pt;}
.y15e9_c00002{bottom:121.439880pt;}
.y1465_c00002{bottom:121.440680pt;}
.yeca_c00002{bottom:121.441027pt;}
.y12c2_c00002{bottom:121.441320pt;}
.y1074_c00002{bottom:121.441560pt;}
.y1116_c00002{bottom:121.442093pt;}
.y12f1_c00002{bottom:121.442280pt;}
.y16eb_c00002{bottom:121.442413pt;}
.y10d0_c00002{bottom:121.442627pt;}
.y168b_c00002{bottom:121.442813pt;}
.ye4d_c00002{bottom:121.442933pt;}
.y13e2_c00002{bottom:121.444000pt;}
.ye6b_c00002{bottom:121.445067pt;}
.y16b7_c00002{bottom:121.445213pt;}
.y1621_c00002{bottom:121.445347pt;}
.y131d_c00002{bottom:121.445880pt;}
.y1814_c00002{bottom:121.493733pt;}
.y49c_c00002{bottom:121.682333pt;}
.y1af0_c00002{bottom:122.026533pt;}
.y284_c00002{bottom:122.027600pt;}
.y1700_c00002{bottom:122.031907pt;}
.y163e_c00002{bottom:122.032333pt;}
.y7e8_c00002{bottom:122.344373pt;}
.y538_c00002{bottom:122.344907pt;}
.y519_c00002{bottom:122.345293pt;}
.y4f7_c00002{bottom:122.345867pt;}
.y7a0_c00002{bottom:122.345973pt;}
.y807_c00002{bottom:122.346707pt;}
.y557_c00002{bottom:122.347227pt;}
.y7bf_c00002{bottom:122.347253pt;}
.ya36_c00002{bottom:122.400680pt;}
.y8ff_c00002{bottom:123.093920pt;}
.y69f_c00002{bottom:123.094467pt;}
.y6ce_c00002{bottom:123.094733pt;}
.y66d_c00002{bottom:123.094933pt;}
.y952_c00002{bottom:123.094987pt;}
.y92d_c00002{bottom:123.095253pt;}
.y6fa_c00002{bottom:123.095533pt;}
.y1a65_c00002{bottom:123.146400pt;}
.ydf9_c00002{bottom:123.252653pt;}
.y1262_c00002{bottom:123.253760pt;}
.y128d_c00002{bottom:123.255227pt;}
.yd88_c00002{bottom:123.255893pt;}
.y1224_c00002{bottom:123.256400pt;}
.yda4_c00002{bottom:123.256533pt;}
.ye9b_c00002{bottom:123.840080pt;}
.y9d1_c00002{bottom:123.840133pt;}
.y1cf_c00002{bottom:123.970000pt;}
.y12f_c00002{bottom:123.971067pt;}
.y1a2_c00002{bottom:123.973200pt;}
.y14b_c00002{bottom:123.973733pt;}
.y3e3_c00002{bottom:124.348947pt;}
.ycef_c00002{bottom:124.426000pt;}
.yd0f_c00002{bottom:124.426453pt;}
.ycd6_c00002{bottom:124.426573pt;}
.y1021_c00002{bottom:124.427213pt;}
.yd4a_c00002{bottom:124.427347pt;}
.y1ab9_c00002{bottom:124.586400pt;}
.y59a_c00002{bottom:125.012267pt;}
.y83b_c00002{bottom:125.013733pt;}
.y5b5_c00002{bottom:125.014133pt;}
.y828_c00002{bottom:125.014667pt;}
.y88a_c00002{bottom:125.014760pt;}
.y5e6_c00002{bottom:125.019720pt;}
.y60e_c00002{bottom:125.021093pt;}
.y63b_c00002{bottom:125.021627pt;}
.y1216_c00002{bottom:125.652267pt;}
.y1008_c00002{bottom:125.652360pt;}
.yfcd_c00002{bottom:125.652400pt;}
.ydd3_c00002{bottom:125.653187pt;}
.y123c_c00002{bottom:125.654333pt;}
.y183_c00002{bottom:126.373387pt;}
.y1a90_c00002{bottom:126.506267pt;}
.y85f_c00002{bottom:127.413213pt;}
.y774_c00002{bottom:127.747387pt;}
.y19b8_c00002{bottom:127.893613pt;}
.y1aeb_c00002{bottom:128.106267pt;}
.yd1_c00002{bottom:128.398680pt;}
.y3e6_c00002{bottom:128.747333pt;}
.y329_c00002{bottom:128.878080pt;}
.y310_c00002{bottom:128.878333pt;}
.y2b9_c00002{bottom:128.878747pt;}
.y2d1_c00002{bottom:128.879200pt;}
.ybb8_c00002{bottom:129.014533pt;}
.y1a66_c00002{bottom:129.386400pt;}
.y17a1_c00002{bottom:129.493733pt;}
.ya6e_c00002{bottom:130.185627pt;}
.ya54_c00002{bottom:130.185893pt;}
.ya03_c00002{bottom:130.186320pt;}
.yb76_c00002{bottom:130.186693pt;}
.ya11_c00002{bottom:130.188933pt;}
.y465_c00002{bottom:130.429707pt;}
.y27b_c00002{bottom:130.430187pt;}
.y1aba_c00002{bottom:130.826533pt;}
.y1948_c00002{bottom:130.879800pt;}
.y2f2_c00002{bottom:131.278347pt;}
.y36d_c00002{bottom:131.550733pt;}
.y15b9_c00002{bottom:132.106307pt;}
.y1556_c00002{bottom:132.106733pt;}
.y14f5_c00002{bottom:132.160000pt;}
.yfc5_c00002{bottom:132.160280pt;}
.y119a_c00002{bottom:132.160293pt;}
.y150e_c00002{bottom:132.266187pt;}
.y1a67_c00002{bottom:132.586400pt;}
.ya35_c00002{bottom:132.587133pt;}
.yad7_c00002{bottom:132.799427pt;}
.y4a3_c00002{bottom:132.852667pt;}
.y135c_c00002{bottom:132.960733pt;}
.yf4f_c00002{bottom:132.961280pt;}
.y153b_c00002{bottom:132.961400pt;}
.y148c_c00002{bottom:132.962040pt;}
.y1380_c00002{bottom:132.962333pt;}
.y133e_c00002{bottom:132.962667pt;}
.y1629_c00002{bottom:132.962867pt;}
.y14b1_c00002{bottom:132.963640pt;}
.yf1b_c00002{bottom:132.963733pt;}
.y14ca_c00002{bottom:132.964307pt;}
.yf31_c00002{bottom:132.964800pt;}
.yf72_c00002{bottom:132.965013pt;}
.y1721_c00002{bottom:132.965107pt;}
.y1580_c00002{bottom:132.966173pt;}
.y1658_c00002{bottom:132.967267pt;}
.y13a1_c00002{bottom:132.967800pt;}
.y1054_c00002{bottom:132.968080pt;}
.yf92_c00002{bottom:132.968613pt;}
.y49b_c00002{bottom:133.522440pt;}
.y1abb_c00002{bottom:134.026667pt;}
.y11cd_c00002{bottom:134.080707pt;}
.y47f_c00002{bottom:135.520000pt;}
.y1a91_c00002{bottom:135.626667pt;}
.y140f_c00002{bottom:135.839307pt;}
.y143e_c00002{bottom:135.839747pt;}
.y15e8_c00002{bottom:135.839880pt;}
.ye9a_c00002{bottom:135.840080pt;}
.y1464_c00002{bottom:135.840680pt;}
.yec9_c00002{bottom:135.841027pt;}
.y12c1_c00002{bottom:135.841320pt;}
.y1073_c00002{bottom:135.841560pt;}
.y1115_c00002{bottom:135.842093pt;}
.y1208_c00002{bottom:135.842227pt;}
.y12f0_c00002{bottom:135.842280pt;}
.y16ea_c00002{bottom:135.842413pt;}
.y10cf_c00002{bottom:135.842627pt;}
.y168a_c00002{bottom:135.842813pt;}
.ye4c_c00002{bottom:135.842933pt;}
.yfee_c00002{bottom:135.843693pt;}
.y109f_c00002{bottom:135.843960pt;}
.y13e1_c00002{bottom:135.844000pt;}
.yef4_c00002{bottom:135.844080pt;}
.y10fb_c00002{bottom:135.845027pt;}
.ye6a_c00002{bottom:135.845067pt;}
.y16b6_c00002{bottom:135.845213pt;}
.y1137_c00002{bottom:135.845293pt;}
.y115c_c00002{bottom:135.845827pt;}
.y131c_c00002{bottom:135.845880pt;}
.yb1_c00002{bottom:136.185333pt;}
.y9b_c00002{bottom:136.185600pt;}
.yec_c00002{bottom:136.186067pt;}
.y3e2_c00002{bottom:136.189053pt;}
.y10a_c00002{bottom:136.236733pt;}
.y16ff_c00002{bottom:136.431907pt;}
.y163d_c00002{bottom:136.432333pt;}
.y7e7_c00002{bottom:136.744373pt;}
.y537_c00002{bottom:136.744907pt;}
.y518_c00002{bottom:136.745293pt;}
.y4f6_c00002{bottom:136.745867pt;}
.y79f_c00002{bottom:136.745973pt;}
.y806_c00002{bottom:136.746707pt;}
.y556_c00002{bottom:136.747227pt;}
.y7be_c00002{bottom:136.747253pt;}
.y4a2_c00002{bottom:136.906667pt;}
.y8fe_c00002{bottom:137.493920pt;}
.y69e_c00002{bottom:137.494467pt;}
.y6cd_c00002{bottom:137.494733pt;}
.y66c_c00002{bottom:137.494933pt;}
.y951_c00002{bottom:137.494987pt;}
.y92c_c00002{bottom:137.495253pt;}
.y6f9_c00002{bottom:137.495533pt;}
.ydf8_c00002{bottom:137.652653pt;}
.ydd2_c00002{bottom:137.653187pt;}
.y1261_c00002{bottom:137.653760pt;}
.y128c_c00002{bottom:137.655227pt;}
.yd87_c00002{bottom:137.655893pt;}
.y1223_c00002{bottom:137.656400pt;}
.yda3_c00002{bottom:137.656533pt;}
.y1ce_c00002{bottom:138.370000pt;}
.y12e_c00002{bottom:138.371067pt;}
.y1a1_c00002{bottom:138.373200pt;}
.y14a_c00002{bottom:138.373733pt;}
.y1a63_c00002{bottom:138.506667pt;}
.yd0_c00002{bottom:138.638787pt;}
.ycee_c00002{bottom:138.826000pt;}
.yd2b_c00002{bottom:138.826453pt;}
.ycd5_c00002{bottom:138.826573pt;}
.y1020_c00002{bottom:138.879880pt;}
.yd49_c00002{bottom:138.880013pt;}
.yd0e_c00002{bottom:138.880053pt;}
.y1813_c00002{bottom:139.253333pt;}
.y11e8_c00002{bottom:139.308227pt;}
.y347_c00002{bottom:139.332133pt;}
.y3b6_c00002{bottom:139.335000pt;}
.y395_c00002{bottom:139.335933pt;}
.y599_c00002{bottom:139.412267pt;}
.y83a_c00002{bottom:139.413733pt;}
.y5b4_c00002{bottom:139.414133pt;}
.y827_c00002{bottom:139.414667pt;}
.y889_c00002{bottom:139.414760pt;}
.y60d_c00002{bottom:139.421093pt;}
.y85e_c00002{bottom:139.465813pt;}
.y8b2_c00002{bottom:139.470227pt;}
.y5e5_c00002{bottom:139.472387pt;}
.y63a_c00002{bottom:139.475760pt;}
.y773_c00002{bottom:139.588533pt;}
.y47d_c00002{bottom:139.628000pt;}
.y1ab8_c00002{bottom:139.946667pt;}
.y123b_c00002{bottom:140.054333pt;}
.yc7d_c00002{bottom:140.586147pt;}
.ya9f_c00002{bottom:140.586400pt;}
.yafe_c00002{bottom:140.586680pt;}
.y182_c00002{bottom:140.773387pt;}
.y1a8f_c00002{bottom:141.546667pt;}
.y439_c00002{bottom:141.600000pt;}
.y36c_c00002{bottom:141.736147pt;}
.y464_c00002{bottom:142.269813pt;}
.y27a_c00002{bottom:142.270293pt;}
.y2f1_c00002{bottom:142.798133pt;}
.yad6_c00002{bottom:142.985880pt;}
.y15b8_c00002{bottom:143.946413pt;}
.y1555_c00002{bottom:143.946840pt;}
.y14f4_c00002{bottom:144.000107pt;}
.yfc4_c00002{bottom:144.000387pt;}
.y1199_c00002{bottom:144.000400pt;}
.y150d_c00002{bottom:144.106293pt;}
.ya34_c00002{bottom:144.106920pt;}
.y13b5_c00002{bottom:144.160413pt;}
.y9c9_c00002{bottom:145.214093pt;}
.y49a_c00002{bottom:145.309933pt;}
.y1947_c00002{bottom:145.599533pt;}
.y438_c00002{bottom:145.706667pt;}
.y11cc_c00002{bottom:145.866640pt;}
.ybe3_c00002{bottom:147.199440pt;}
.y135b_c00002{bottom:147.360733pt;}
.yf4e_c00002{bottom:147.361280pt;}
.y153a_c00002{bottom:147.361933pt;}
.y148b_c00002{bottom:147.362573pt;}
.y133d_c00002{bottom:147.362667pt;}
.y137f_c00002{bottom:147.362867pt;}
.y14b0_c00002{bottom:147.363640pt;}
.yf1a_c00002{bottom:147.363733pt;}
.y14c9_c00002{bottom:147.364307pt;}
.yf30_c00002{bottom:147.364800pt;}
.yf71_c00002{bottom:147.365013pt;}
.y1720_c00002{bottom:147.365107pt;}
.y157f_c00002{bottom:147.366173pt;}
.y13a0_c00002{bottom:147.367800pt;}
.y1053_c00002{bottom:147.368080pt;}
.yf91_c00002{bottom:147.368613pt;}
.y3e1_c00002{bottom:148.029160pt;}
.y17a0_c00002{bottom:148.853333pt;}
.y4b7_c00002{bottom:149.890400pt;}
.ycf_c00002{bottom:150.158573pt;}
.y140e_c00002{bottom:150.239307pt;}
.y143d_c00002{bottom:150.239747pt;}
.y15e7_c00002{bottom:150.239880pt;}
.ye99_c00002{bottom:150.240080pt;}
.y1463_c00002{bottom:150.240680pt;}
.yec8_c00002{bottom:150.241027pt;}
.y12c0_c00002{bottom:150.241320pt;}
.y1072_c00002{bottom:150.241560pt;}
.y1114_c00002{bottom:150.242093pt;}
.y1207_c00002{bottom:150.242227pt;}
.y12ef_c00002{bottom:150.242280pt;}
.y16e9_c00002{bottom:150.242413pt;}
.y10ce_c00002{bottom:150.242627pt;}
.y1689_c00002{bottom:150.242813pt;}
.ye4b_c00002{bottom:150.242933pt;}
.yfed_c00002{bottom:150.243693pt;}
.y109e_c00002{bottom:150.243960pt;}
.y13e0_c00002{bottom:150.244000pt;}
.yef3_c00002{bottom:150.244080pt;}
.y10fa_c00002{bottom:150.245027pt;}
.ye69_c00002{bottom:150.245067pt;}
.y16b5_c00002{bottom:150.245213pt;}
.y1136_c00002{bottom:150.245293pt;}
.y115b_c00002{bottom:150.245827pt;}
.y131b_c00002{bottom:150.245880pt;}
.y1620_c00002{bottom:150.246413pt;}
.y1aea_c00002{bottom:150.506400pt;}
.y30f_c00002{bottom:150.585667pt;}
.y2d0_c00002{bottom:150.586533pt;}
.y2b8_c00002{bottom:150.586613pt;}
.y328_c00002{bottom:150.637413pt;}
.y1560_c00002{bottom:150.831507pt;}
.y163c_c00002{bottom:150.832333pt;}
.y7e6_c00002{bottom:151.144373pt;}
.y536_c00002{bottom:151.144907pt;}
.y4f5_c00002{bottom:151.145867pt;}
.y79e_c00002{bottom:151.145973pt;}
.y805_c00002{bottom:151.199373pt;}
.y517_c00002{bottom:151.199427pt;}
.y555_c00002{bottom:151.199893pt;}
.y7bd_c00002{bottom:151.199920pt;}
.y8fd_c00002{bottom:151.893920pt;}
.y69d_c00002{bottom:151.894467pt;}
.y6cc_c00002{bottom:151.894733pt;}
.y66b_c00002{bottom:151.894933pt;}
.y950_c00002{bottom:151.894987pt;}
.y92b_c00002{bottom:151.895253pt;}
.y6f8_c00002{bottom:151.895533pt;}
.ya6d_c00002{bottom:151.945493pt;}
.ya02_c00002{bottom:151.946187pt;}
.ya53_c00002{bottom:151.946293pt;}
.yb75_c00002{bottom:151.946560pt;}
.ya10_c00002{bottom:151.948800pt;}
.ydf7_c00002{bottom:152.052653pt;}
.y1260_c00002{bottom:152.054293pt;}
.y128b_c00002{bottom:152.055227pt;}
.yd86_c00002{bottom:152.055893pt;}
.y1222_c00002{bottom:152.056400pt;}
.yda2_c00002{bottom:152.056533pt;}
.y12d_c00002{bottom:152.771067pt;}
.y1a0_c00002{bottom:152.771600pt;}
.y149_c00002{bottom:152.773733pt;}
.y1cd_c00002{bottom:152.822667pt;}
.y2f0_c00002{bottom:153.038760pt;}
.y1215_c00002{bottom:153.173067pt;}
.y1007_c00002{bottom:153.173160pt;}
.ye25_c00002{bottom:153.173200pt;}
.y36b_c00002{bottom:153.255933pt;}
.yd2a_c00002{bottom:153.279120pt;}
.yced_c00002{bottom:153.279600pt;}
.y101f_c00002{bottom:153.279880pt;}
.yd48_c00002{bottom:153.280013pt;}
.yd0d_c00002{bottom:153.280053pt;}
.ycd4_c00002{bottom:153.280173pt;}
.y598_c00002{bottom:153.865333pt;}
.y85d_c00002{bottom:153.865813pt;}
.y839_c00002{bottom:153.866400pt;}
.y5b3_c00002{bottom:153.867200pt;}
.y888_c00002{bottom:153.867427pt;}
.y826_c00002{bottom:153.867733pt;}
.y8b1_c00002{bottom:153.870227pt;}
.y5e4_c00002{bottom:153.871853pt;}
.y60c_c00002{bottom:153.873760pt;}
.y639_c00002{bottom:153.875760pt;}
.y279_c00002{bottom:154.109880pt;}
.y463_c00002{bottom:154.109920pt;}
.ya33_c00002{bottom:154.347027pt;}
.yad5_c00002{bottom:154.505667pt;}
.ydd1_c00002{bottom:154.505853pt;}
.y123a_c00002{bottom:154.507000pt;}
.ybc1_c00002{bottom:154.986533pt;}
.yc0a_c00002{bottom:154.989413pt;}
.y181_c00002{bottom:155.228053pt;}
.y15b7_c00002{bottom:155.786520pt;}
.y1554_c00002{bottom:155.786947pt;}
.yfc3_c00002{bottom:155.840493pt;}
.y1198_c00002{bottom:155.840507pt;}
.y13b4_c00002{bottom:156.000000pt;}
.y9c8_c00002{bottom:156.520867pt;}
.y1812_c00002{bottom:157.013333pt;}
.y499_c00002{bottom:157.150040pt;}
.ybe2_c00002{bottom:157.439547pt;}
.y11cb_c00002{bottom:157.706747pt;}
.y109_c00002{bottom:157.944067pt;}
.y9a_c00002{bottom:157.944400pt;}
.yb0_c00002{bottom:157.945200pt;}
.yeb_c00002{bottom:157.945933pt;}
.y19b7_c00002{bottom:158.666013pt;}
.y3eb_c00002{bottom:159.200000pt;}
.y3e0_c00002{bottom:159.869267pt;}
.yce_c00002{bottom:160.346080pt;}
.y346_c00002{bottom:161.092000pt;}
.y3b5_c00002{bottom:161.094867pt;}
.y394_c00002{bottom:161.096333pt;}
.y148a_c00002{bottom:161.282307pt;}
.y4b6_c00002{bottom:161.730507pt;}
.y133c_c00002{bottom:161.762667pt;}
.y137e_c00002{bottom:161.762867pt;}
.yf19_c00002{bottom:161.763733pt;}
.yf2f_c00002{bottom:161.764800pt;}
.yf70_c00002{bottom:161.765013pt;}
.y135a_c00002{bottom:161.814333pt;}
.yf4d_c00002{bottom:161.814880pt;}
.y1539_c00002{bottom:161.815533pt;}
.y1052_c00002{bottom:161.821147pt;}
.yf90_c00002{bottom:161.821280pt;}
.y139f_c00002{bottom:161.821400pt;}
.yc7c_c00002{bottom:162.346013pt;}
.yafd_c00002{bottom:162.346547pt;}
.ya9e_c00002{bottom:162.346800pt;}
.y772_c00002{bottom:163.268267pt;}
.y3e9_c00002{bottom:163.306667pt;}
.y36a_c00002{bottom:163.496040pt;}
.y2ef_c00002{bottom:164.558547pt;}
.y143c_c00002{bottom:164.639747pt;}
.yec7_c00002{bottom:164.641027pt;}
.y1071_c00002{bottom:164.641560pt;}
.y1113_c00002{bottom:164.642093pt;}
.y12ee_c00002{bottom:164.642280pt;}
.y10cd_c00002{bottom:164.642627pt;}
.y1688_c00002{bottom:164.642813pt;}
.ye4a_c00002{bottom:164.642933pt;}
.y13df_c00002{bottom:164.644000pt;}
.ye68_c00002{bottom:164.645067pt;}
.y15e6_c00002{bottom:164.692547pt;}
.y1462_c00002{bottom:164.693347pt;}
.y140d_c00002{bottom:164.693440pt;}
.ye98_c00002{bottom:164.694213pt;}
.y16e8_c00002{bottom:164.695080pt;}
.y1206_c00002{bottom:164.695293pt;}
.y12bf_c00002{bottom:164.695453pt;}
.yfec_c00002{bottom:164.696360pt;}
.y109d_c00002{bottom:164.696627pt;}
.yef2_c00002{bottom:164.696747pt;}
.y10f9_c00002{bottom:164.697693pt;}
.y16b4_c00002{bottom:164.697880pt;}
.y1135_c00002{bottom:164.697960pt;}
.y115a_c00002{bottom:164.698493pt;}
.y131a_c00002{bottom:164.698547pt;}
.y161f_c00002{bottom:164.699080pt;}
.yad4_c00002{bottom:164.745773pt;}
.y151b_c00002{bottom:165.280600pt;}
.y163b_c00002{bottom:165.285000pt;}
.y7e5_c00002{bottom:165.597973pt;}
.y535_c00002{bottom:165.598507pt;}
.y804_c00002{bottom:165.599373pt;}
.y516_c00002{bottom:165.599427pt;}
.y4f4_c00002{bottom:165.599467pt;}
.y79d_c00002{bottom:165.599573pt;}
.y554_c00002{bottom:165.599893pt;}
.y7bc_c00002{bottom:165.599920pt;}
.ya32_c00002{bottom:165.867333pt;}
.y278_c00002{bottom:165.949987pt;}
.y462_c00002{bottom:165.950027pt;}
.y6cb_c00002{bottom:166.294733pt;}
.y66a_c00002{bottom:166.294933pt;}
.y92a_c00002{bottom:166.295253pt;}
.y8fc_c00002{bottom:166.346587pt;}
.y69c_c00002{bottom:166.347133pt;}
.y94f_c00002{bottom:166.348587pt;}
.y6f7_c00002{bottom:166.349133pt;}
.ydf6_c00002{bottom:166.505320pt;}
.y125f_c00002{bottom:166.506427pt;}
.y128a_c00002{bottom:166.507893pt;}
.yd85_c00002{bottom:166.508560pt;}
.y1221_c00002{bottom:166.509067pt;}
.yda1_c00002{bottom:166.510133pt;}
.y1cc_c00002{bottom:167.222667pt;}
.y12c_c00002{bottom:167.226267pt;}
.y19f_c00002{bottom:167.228400pt;}
.y148_c00002{bottom:167.228933pt;}
.y1214_c00002{bottom:167.625733pt;}
.y11a2_c00002{bottom:167.625827pt;}
.y1063_c00002{bottom:167.625867pt;}
.y1553_c00002{bottom:167.627053pt;}
.y1a62_c00002{bottom:167.627093pt;}
.yd29_c00002{bottom:167.679120pt;}
.ycec_c00002{bottom:167.679600pt;}
.y101e_c00002{bottom:167.679880pt;}
.yd47_c00002{bottom:167.680013pt;}
.yd0c_c00002{bottom:167.680053pt;}
.ycd3_c00002{bottom:167.680173pt;}
.y14f3_c00002{bottom:167.680373pt;}
.yfc2_c00002{bottom:167.680600pt;}
.y1197_c00002{bottom:167.680613pt;}
.y150c_c00002{bottom:167.786560pt;}
.y179f_c00002{bottom:168.213333pt;}
.y597_c00002{bottom:168.265333pt;}
.y85c_c00002{bottom:168.265813pt;}
.y838_c00002{bottom:168.266400pt;}
.y5b2_c00002{bottom:168.267200pt;}
.y887_c00002{bottom:168.267427pt;}
.y825_c00002{bottom:168.267733pt;}
.y8b0_c00002{bottom:168.270227pt;}
.y5e3_c00002{bottom:168.271320pt;}
.y60b_c00002{bottom:168.273760pt;}
.y638_c00002{bottom:168.275760pt;}
.y9c7_c00002{bottom:168.360973pt;}
.ydd0_c00002{bottom:168.905853pt;}
.y1239_c00002{bottom:168.907000pt;}
.ybe1_c00002{bottom:168.959853pt;}
.y498_c00002{bottom:168.990147pt;}
.y1470_c00002{bottom:169.123067pt;}
.y14af_c00002{bottom:169.124040pt;}
.y1ab7_c00002{bottom:169.546760pt;}
.y11ca_c00002{bottom:169.546853pt;}
.y180_c00002{bottom:169.628053pt;}
.y1ae8_c00002{bottom:169.706667pt;}
.y1a8e_c00002{bottom:170.347733pt;}
.y19b6_c00002{bottom:170.506120pt;}
.y1489_c00002{bottom:171.522413pt;}
.y3df_c00002{bottom:171.709373pt;}
.ycd_c00002{bottom:171.866387pt;}
.y327_c00002{bottom:172.344213pt;}
.y30e_c00002{bottom:172.345533pt;}
.y2cf_c00002{bottom:172.346400pt;}
.y2b7_c00002{bottom:172.347013pt;}
.y4ca_c00002{bottom:173.569160pt;}
.y42c_c00002{bottom:173.570093pt;}
.y4b5_c00002{bottom:173.570613pt;}
.ya6c_c00002{bottom:173.651760pt;}
.yb74_c00002{bottom:173.652827pt;}
.ya52_c00002{bottom:173.653627pt;}
.ya01_c00002{bottom:173.654053pt;}
.ya0f_c00002{bottom:173.656133pt;}
.y1980_c00002{bottom:174.720667pt;}
.y2ee_c00002{bottom:174.746053pt;}
.y1811_c00002{bottom:174.773333pt;}
.y369_c00002{bottom:175.015827pt;}
.y771_c00002{bottom:175.108373pt;}
.y1359_c00002{bottom:175.733667pt;}
.y1757_c00002{bottom:176.053333pt;}
.ya31_c00002{bottom:176.054840pt;}
.yf4c_c00002{bottom:176.214880pt;}
.yf18_c00002{bottom:176.217867pt;}
.yf6f_c00002{bottom:176.218080pt;}
.yf2e_c00002{bottom:176.218933pt;}
.y1051_c00002{bottom:176.221147pt;}
.yf8f_c00002{bottom:176.221280pt;}
.yad3_c00002{bottom:176.266080pt;}
.y1946_c00002{bottom:176.373533pt;}
.ybc0_c00002{bottom:176.746400pt;}
.yc09_c00002{bottom:176.749813pt;}
.y277_c00002{bottom:177.789573pt;}
.y461_c00002{bottom:177.790133pt;}
.y1ae9_c00002{bottom:178.986667pt;}
.y15e5_c00002{bottom:179.092547pt;}
.y1461_c00002{bottom:179.093347pt;}
.y140c_c00002{bottom:179.093440pt;}
.y143b_c00002{bottom:179.093880pt;}
.ye97_c00002{bottom:179.094213pt;}
.yec6_c00002{bottom:179.094627pt;}
.y16e7_c00002{bottom:179.095080pt;}
.y1070_c00002{bottom:179.095160pt;}
.y1205_c00002{bottom:179.095293pt;}
.y12be_c00002{bottom:179.095453pt;}
.y1112_c00002{bottom:179.095693pt;}
.y12ed_c00002{bottom:179.095880pt;}
.y10cc_c00002{bottom:179.096227pt;}
.yfeb_c00002{bottom:179.096360pt;}
.y1687_c00002{bottom:179.096413pt;}
.ye49_c00002{bottom:179.096533pt;}
.y109c_c00002{bottom:179.096627pt;}
.yef1_c00002{bottom:179.096747pt;}
.y13de_c00002{bottom:179.097600pt;}
.y10f8_c00002{bottom:179.097693pt;}
.y16b3_c00002{bottom:179.097880pt;}
.y1134_c00002{bottom:179.097960pt;}
.y1159_c00002{bottom:179.098493pt;}
.y1319_c00002{bottom:179.098547pt;}
.ye67_c00002{bottom:179.098667pt;}
.ybe0_c00002{bottom:179.145787pt;}
.y15b6_c00002{bottom:179.466787pt;}
.y14f2_c00002{bottom:179.466827pt;}
.yfc1_c00002{bottom:179.520707pt;}
.y150b_c00002{bottom:179.626667pt;}
.y99_c00002{bottom:179.649600pt;}
.yaf_c00002{bottom:179.650400pt;}
.yea_c00002{bottom:179.651133pt;}
.y1034_c00002{bottom:179.684880pt;}
.y108_c00002{bottom:179.703933pt;}
.y7e4_c00002{bottom:179.997973pt;}
.y534_c00002{bottom:179.998507pt;}
.y803_c00002{bottom:179.999373pt;}
.y515_c00002{bottom:179.999427pt;}
.y4f3_c00002{bottom:179.999467pt;}
.y79c_c00002{bottom:179.999573pt;}
.y553_c00002{bottom:179.999893pt;}
.y7bb_c00002{bottom:179.999920pt;}
.y8fb_c00002{bottom:180.746587pt;}
.y69b_c00002{bottom:180.747133pt;}
.y669_c00002{bottom:180.748533pt;}
.y94e_c00002{bottom:180.748587pt;}
.y929_c00002{bottom:180.748853pt;}
.y6ca_c00002{bottom:180.748867pt;}
.y6f6_c00002{bottom:180.749133pt;}
.y497_c00002{bottom:180.830253pt;}
.ydf5_c00002{bottom:180.905320pt;}
.y125e_c00002{bottom:180.906427pt;}
.y1238_c00002{bottom:180.907000pt;}
.y1289_c00002{bottom:180.907893pt;}
.yd84_c00002{bottom:180.908560pt;}
.y1220_c00002{bottom:180.909067pt;}
.yda0_c00002{bottom:180.910133pt;}
.y11c9_c00002{bottom:181.386960pt;}
.y1cb_c00002{bottom:181.622667pt;}
.y12b_c00002{bottom:181.626267pt;}
.y17f_c00002{bottom:181.628053pt;}
.y19e_c00002{bottom:181.628400pt;}
.y147_c00002{bottom:181.628933pt;}
.y1213_c00002{bottom:182.025733pt;}
.y1006_c00002{bottom:182.025827pt;}
.ye24_c00002{bottom:182.025867pt;}
.yd28_c00002{bottom:182.079120pt;}
.yceb_c00002{bottom:182.079600pt;}
.yd59_c00002{bottom:182.079613pt;}
.y101d_c00002{bottom:182.079880pt;}
.yd46_c00002{bottom:182.080013pt;}
.ycd2_c00002{bottom:182.080173pt;}
.ycc_c00002{bottom:182.105973pt;}
.y19b5_c00002{bottom:182.345707pt;}
.y596_c00002{bottom:182.665333pt;}
.y85b_c00002{bottom:182.665813pt;}
.y837_c00002{bottom:182.666400pt;}
.y5b1_c00002{bottom:182.667200pt;}
.y886_c00002{bottom:182.667427pt;}
.y824_c00002{bottom:182.667733pt;}
.y8af_c00002{bottom:182.670227pt;}
.y5e2_c00002{bottom:182.670787pt;}
.y60a_c00002{bottom:182.673760pt;}
.y637_c00002{bottom:182.675760pt;}
.y345_c00002{bottom:182.799333pt;}
.y393_c00002{bottom:182.803667pt;}
.y3b4_c00002{bottom:182.854733pt;}
.ydcf_c00002{bottom:183.305853pt;}
.y1488_c00002{bottom:183.522413pt;}
.y137d_c00002{bottom:183.522733pt;}
.y133b_c00002{bottom:183.523067pt;}
.y14ae_c00002{bottom:183.524040pt;}
.y14c8_c00002{bottom:183.524173pt;}
.y171f_c00002{bottom:183.525507pt;}
.y157e_c00002{bottom:183.526573pt;}
.y3de_c00002{bottom:183.548960pt;}
.y1ae7_c00002{bottom:183.946667pt;}
.yc7b_c00002{bottom:184.053347pt;}
.yafc_c00002{bottom:184.053880pt;}
.ya9d_c00002{bottom:184.054133pt;}
.yb1f_c00002{bottom:184.108147pt;}
.yc9d_c00002{bottom:184.110280pt;}
.yb97_c00002{bottom:184.111747pt;}
.yd0b_c00002{bottom:184.480053pt;}
.y368_c00002{bottom:185.255933pt;}
.y4c9_c00002{bottom:185.409267pt;}
.y42b_c00002{bottom:185.410200pt;}
.y4b4_c00002{bottom:185.410720pt;}
.y1358_c00002{bottom:185.920120pt;}
.y2ed_c00002{bottom:186.265840pt;}
.yad2_c00002{bottom:186.505667pt;}
.y770_c00002{bottom:186.948480pt;}
.y155f_c00002{bottom:186.991373pt;}
.y179e_c00002{bottom:187.573333pt;}
.ya30_c00002{bottom:187.574627pt;}
.y1945_c00002{bottom:188.213640pt;}
.y197f_c00002{bottom:189.440400pt;}
.y276_c00002{bottom:189.629680pt;}
.y460_c00002{bottom:189.630240pt;}
.yf4b_c00002{bottom:190.134613pt;}
.ybdf_c00002{bottom:190.666093pt;}
.y15b5_c00002{bottom:191.306373pt;}
.y1552_c00002{bottom:191.306787pt;}
.y1196_c00002{bottom:191.360880pt;}
.y9c6_c00002{bottom:192.040707pt;}
.y1756_c00002{bottom:192.213333pt;}
.y17f3_c00002{bottom:192.532800pt;}
.y1810_c00002{bottom:192.533333pt;}
.y140b_c00002{bottom:193.013173pt;}
.y11c8_c00002{bottom:193.227067pt;}
.ye96_c00002{bottom:193.494213pt;}
.yec5_c00002{bottom:193.494627pt;}
.y106f_c00002{bottom:193.495160pt;}
.y1204_c00002{bottom:193.495293pt;}
.y12bd_c00002{bottom:193.495453pt;}
.y1111_c00002{bottom:193.495693pt;}
.y12ec_c00002{bottom:193.495880pt;}
.y10cb_c00002{bottom:193.496227pt;}
.yfea_c00002{bottom:193.496360pt;}
.y1686_c00002{bottom:193.496413pt;}
.ye48_c00002{bottom:193.496533pt;}
.y109b_c00002{bottom:193.496627pt;}
.yef0_c00002{bottom:193.496747pt;}
.y10f7_c00002{bottom:193.497693pt;}
.y16b2_c00002{bottom:193.497880pt;}
.y1133_c00002{bottom:193.497960pt;}
.y161e_c00002{bottom:193.498013pt;}
.y1158_c00002{bottom:193.498493pt;}
.y1318_c00002{bottom:193.498547pt;}
.ye66_c00002{bottom:193.498667pt;}
.y496_c00002{bottom:193.522440pt;}
.ycb_c00002{bottom:193.626280pt;}
.yc5b_c00002{bottom:194.080267pt;}
.y326_c00002{bottom:194.104080pt;}
.y30d_c00002{bottom:194.105933pt;}
.y2ce_c00002{bottom:194.106267pt;}
.y19b4_c00002{bottom:194.185813pt;}
.y7e3_c00002{bottom:194.397973pt;}
.y533_c00002{bottom:194.398507pt;}
.y802_c00002{bottom:194.399373pt;}
.y514_c00002{bottom:194.399427pt;}
.y4f2_c00002{bottom:194.399467pt;}
.y79b_c00002{bottom:194.399573pt;}
.y552_c00002{bottom:194.399893pt;}
.y7ba_c00002{bottom:194.399920pt;}
.y1a61_c00002{bottom:194.506800pt;}
.y8fa_c00002{bottom:195.146587pt;}
.y69a_c00002{bottom:195.147133pt;}
.y668_c00002{bottom:195.148533pt;}
.y94d_c00002{bottom:195.148587pt;}
.y928_c00002{bottom:195.148853pt;}
.y6c9_c00002{bottom:195.148867pt;}
.y6f5_c00002{bottom:195.149133pt;}
.y2b6_c00002{bottom:195.170480pt;}
.ydf4_c00002{bottom:195.305320pt;}
.ye1b_c00002{bottom:195.306387pt;}
.y125d_c00002{bottom:195.306427pt;}
.y1288_c00002{bottom:195.307893pt;}
.yd83_c00002{bottom:195.308560pt;}
.yd9f_c00002{bottom:195.310133pt;}
.y3dd_c00002{bottom:195.389067pt;}
.ya6b_c00002{bottom:195.412160pt;}
.yb73_c00002{bottom:195.413227pt;}
.ya51_c00002{bottom:195.413493pt;}
.ya00_c00002{bottom:195.413920pt;}
.ya0e_c00002{bottom:195.416000pt;}
.y1ca_c00002{bottom:196.022667pt;}
.y12a_c00002{bottom:196.026267pt;}
.y19d_c00002{bottom:196.026800pt;}
.yd27_c00002{bottom:196.479120pt;}
.ycea_c00002{bottom:196.479600pt;}
.ycd1_c00002{bottom:196.480173pt;}
.y2ec_c00002{bottom:196.505947pt;}
.yd0a_c00002{bottom:196.533693pt;}
.y101c_c00002{bottom:196.534013pt;}
.yd45_c00002{bottom:196.534147pt;}
.y1ab6_c00002{bottom:196.746720pt;}
.y367_c00002{bottom:196.775720pt;}
.y595_c00002{bottom:197.066400pt;}
.y5b0_c00002{bottom:197.067200pt;}
.y885_c00002{bottom:197.067427pt;}
.y823_c00002{bottom:197.067733pt;}
.y1a8d_c00002{bottom:197.068000pt;}
.y609_c00002{bottom:197.073760pt;}
.y85a_c00002{bottom:197.119413pt;}
.y8ae_c00002{bottom:197.122893pt;}
.y636_c00002{bottom:197.128827pt;}
.y17e_c00002{bottom:197.148320pt;}
.y4c8_c00002{bottom:197.249373pt;}
.y42a_c00002{bottom:197.250307pt;}
.y61_c00002{bottom:197.250427pt;}
.y4b3_c00002{bottom:197.250827pt;}
.y477_c00002{bottom:197.251360pt;}
.ye23_c00002{bottom:197.705067pt;}
.y1212_c00002{bottom:197.705467pt;}
.y1005_c00002{bottom:197.705560pt;}
.ydce_c00002{bottom:197.705853pt;}
.y1237_c00002{bottom:197.707000pt;}
.y15fd_c00002{bottom:197.708027pt;}
.y129b_c00002{bottom:197.708160pt;}
.y1594_c00002{bottom:197.708293pt;}
.y1677_c00002{bottom:197.708693pt;}
.ya2f_c00002{bottom:197.814733pt;}
.y1357_c00002{bottom:197.920120pt;}
.y1538_c00002{bottom:197.921800pt;}
.y1487_c00002{bottom:197.922413pt;}
.y137c_c00002{bottom:197.922733pt;}
.y133a_c00002{bottom:197.923067pt;}
.y14ad_c00002{bottom:197.924040pt;}
.yf17_c00002{bottom:197.924133pt;}
.y14c7_c00002{bottom:197.924173pt;}
.yf6e_c00002{bottom:197.924347pt;}
.yf2d_c00002{bottom:197.925200pt;}
.y171e_c00002{bottom:197.925507pt;}
.y157d_c00002{bottom:197.926573pt;}
.y139e_c00002{bottom:197.927667pt;}
.yad1_c00002{bottom:198.025973pt;}
.ybbf_c00002{bottom:198.506267pt;}
.yc08_c00002{bottom:198.509680pt;}
.yc2b_c00002{bottom:198.510880pt;}
.y76f_c00002{bottom:198.788587pt;}
.y5e1_c00002{bottom:199.524387pt;}
.y1944_c00002{bottom:200.053747pt;}
.yf4a_c00002{bottom:200.374720pt;}
.y143a_c00002{bottom:200.800147pt;}
.y13dd_c00002{bottom:200.803867pt;}
.ybde_c00002{bottom:200.905680pt;}
.y98_c00002{bottom:201.409467pt;}
.yae_c00002{bottom:201.410267pt;}
.ye9_c00002{bottom:201.411000pt;}
.y107_c00002{bottom:201.412333pt;}
.y151a_c00002{bottom:201.440467pt;}
.y155e_c00002{bottom:201.444040pt;}
.y163a_c00002{bottom:201.444867pt;}
.y275_c00002{bottom:202.320827pt;}
.y495_c00002{bottom:202.322440pt;}
.y45f_c00002{bottom:202.322947pt;}
.y14f1_c00002{bottom:203.040293pt;}
.yfc0_c00002{bottom:203.146707pt;}
.y1195_c00002{bottom:203.146813pt;}
.y1551_c00002{bottom:203.146893pt;}
.y140a_c00002{bottom:203.253280pt;}
.yca_c00002{bottom:203.811173pt;}
.y9c5_c00002{bottom:203.880813pt;}
.y1ae5_c00002{bottom:203.946667pt;}
.y344_c00002{bottom:204.559733pt;}
.y3b3_c00002{bottom:204.562067pt;}
.y392_c00002{bottom:204.563533pt;}
.yc7a_c00002{bottom:205.813213pt;}
.yafb_c00002{bottom:205.813747pt;}
.ya9c_c00002{bottom:205.814000pt;}
.yb1e_c00002{bottom:205.815480pt;}
.yc9c_c00002{bottom:205.816547pt;}
.yb96_c00002{bottom:205.818013pt;}
.y19b3_c00002{bottom:206.025920pt;}
.y17f2_c00002{bottom:206.932800pt;}
.y179d_c00002{bottom:206.933333pt;}
.y366_c00002{bottom:206.963227pt;}
.y3dc_c00002{bottom:207.229173pt;}
.y12bc_c00002{bottom:207.415187pt;}
.y1ae6_c00002{bottom:207.466667pt;}
.ye95_c00002{bottom:207.894213pt;}
.yec4_c00002{bottom:207.894627pt;}
.y106e_c00002{bottom:207.895160pt;}
.y1203_c00002{bottom:207.895293pt;}
.y1110_c00002{bottom:207.895693pt;}
.y10ca_c00002{bottom:207.896227pt;}
.yfe9_c00002{bottom:207.896360pt;}
.ye47_c00002{bottom:207.896533pt;}
.y109a_c00002{bottom:207.896627pt;}
.yeef_c00002{bottom:207.896747pt;}
.y10f6_c00002{bottom:207.897693pt;}
.y1132_c00002{bottom:207.897960pt;}
.y1157_c00002{bottom:207.898493pt;}
.ye65_c00002{bottom:207.898667pt;}
.y2eb_c00002{bottom:208.026253pt;}
.yad0_c00002{bottom:208.213480pt;}
.y1755_c00002{bottom:208.373333pt;}
.y7e2_c00002{bottom:208.797973pt;}
.y532_c00002{bottom:208.798507pt;}
.y4f1_c00002{bottom:208.799467pt;}
.y79a_c00002{bottom:208.799573pt;}
.yc5a_c00002{bottom:208.800000pt;}
.y13b0_c00002{bottom:208.800013pt;}
.y801_c00002{bottom:208.852973pt;}
.y513_c00002{bottom:208.853027pt;}
.y551_c00002{bottom:208.853493pt;}
.y7b9_c00002{bottom:208.853520pt;}
.y699_c00002{bottom:209.067400pt;}
.y4c7_c00002{bottom:209.087920pt;}
.y429_c00002{bottom:209.088853pt;}
.y60_c00002{bottom:209.088973pt;}
.y476_c00002{bottom:209.089907pt;}
.y4b2_c00002{bottom:209.090933pt;}
.ya2e_c00002{bottom:209.334520pt;}
.y8f9_c00002{bottom:209.547653pt;}
.y8d6_c00002{bottom:209.548533pt;}
.y94c_c00002{bottom:209.548587pt;}
.y927_c00002{bottom:209.548853pt;}
.ydf3_c00002{bottom:209.705320pt;}
.y125c_c00002{bottom:209.706427pt;}
.yd82_c00002{bottom:209.708560pt;}
.yd9e_c00002{bottom:209.710133pt;}
.ye1a_c00002{bottom:209.759053pt;}
.ydcd_c00002{bottom:209.759493pt;}
.y1287_c00002{bottom:209.761493pt;}
.y1b6c_c00002{bottom:210.026667pt;}
.y180f_c00002{bottom:210.293333pt;}
.y129_c00002{bottom:210.426267pt;}
.y19c_c00002{bottom:210.426800pt;}
.y146_c00002{bottom:210.428933pt;}
.y1c9_c00002{bottom:210.477867pt;}
.y17d_c00002{bottom:210.480613pt;}
.y76e_c00002{bottom:210.628693pt;}
.y1004_c00002{bottom:210.825867pt;}
.y1a60_c00002{bottom:210.827067pt;}
.yd58_c00002{bottom:210.933213pt;}
.yd26_c00002{bottom:210.933253pt;}
.yce9_c00002{bottom:210.933733pt;}
.ycd0_c00002{bottom:210.933773pt;}
.y101b_c00002{bottom:210.934013pt;}
.yd44_c00002{bottom:210.934147pt;}
.y274_c00002{bottom:211.120827pt;}
.y494_c00002{bottom:211.122440pt;}
.y45e_c00002{bottom:211.122947pt;}
.y859_c00002{bottom:211.519413pt;}
.y594_c00002{bottom:211.519467pt;}
.y5af_c00002{bottom:211.519867pt;}
.y836_c00002{bottom:211.520000pt;}
.y822_c00002{bottom:211.520400pt;}
.y884_c00002{bottom:211.521027pt;}
.y8ad_c00002{bottom:211.522893pt;}
.y608_c00002{bottom:211.527360pt;}
.y635_c00002{bottom:211.528827pt;}
.y1943_c00002{bottom:211.893333pt;}
.y1236_c00002{bottom:212.161133pt;}
.y1356_c00002{bottom:212.373720pt;}
.yf49_c00002{bottom:212.374720pt;}
.y1537_c00002{bottom:212.375400pt;}
.y1486_c00002{bottom:212.376013pt;}
.y137b_c00002{bottom:212.376333pt;}
.y1339_c00002{bottom:212.376667pt;}
.y14ac_c00002{bottom:212.377640pt;}
.yf16_c00002{bottom:212.377733pt;}
.yf6d_c00002{bottom:212.377947pt;}
.y14c6_c00002{bottom:212.378307pt;}
.yf2c_c00002{bottom:212.378800pt;}
.y171d_c00002{bottom:212.379107pt;}
.y157c_c00002{bottom:212.379640pt;}
.y1050_c00002{bottom:212.381013pt;}
.y139d_c00002{bottom:212.381267pt;}
.yf8e_c00002{bottom:212.381680pt;}
.ybdd_c00002{bottom:212.425987pt;}
.y1ab5_c00002{bottom:213.226987pt;}
.y1a8c_c00002{bottom:213.227867pt;}
.yd09_c00002{bottom:213.333693pt;}
.ybb3_c00002{bottom:213.493600pt;}
.y5e0_c00002{bottom:213.923853pt;}
.y15b4_c00002{bottom:214.826640pt;}
.y14f0_c00002{bottom:214.880400pt;}
.yfbf_c00002{bottom:214.987853pt;}
.y15e4_c00002{bottom:215.252413pt;}
.y1439_c00002{bottom:215.253213pt;}
.y1460_c00002{bottom:215.254280pt;}
.y16e6_c00002{bottom:215.255480pt;}
.y12eb_c00002{bottom:215.255747pt;}
.y1685_c00002{bottom:215.256280pt;}
.y12a0_c00002{bottom:215.256933pt;}
.y13dc_c00002{bottom:215.258000pt;}
.yc9_c00002{bottom:215.330960pt;}
.y9c4_c00002{bottom:215.720920pt;}
.y325_c00002{bottom:215.808747pt;}
.y30c_c00002{bottom:215.810600pt;}
.y2cd_c00002{bottom:215.811467pt;}
.y1519_c00002{bottom:215.840467pt;}
.y155d_c00002{bottom:215.844040pt;}
.y1033_c00002{bottom:215.844747pt;}
.y1639_c00002{bottom:215.844867pt;}
.y1409_c00002{bottom:216.375680pt;}
.y11c7_c00002{bottom:216.906800pt;}
.y667_c00002{bottom:216.908400pt;}
.y6c8_c00002{bottom:216.908733pt;}
.y2b5_c00002{bottom:216.930347pt;}
.ya50_c00002{bottom:217.119760pt;}
.y9ff_c00002{bottom:217.120187pt;}
.ya0d_c00002{bottom:217.122267pt;}
.ya6a_c00002{bottom:217.172560pt;}
.yb72_c00002{bottom:217.173627pt;}
.y12bb_c00002{bottom:217.655293pt;}
.y19b2_c00002{bottom:217.866027pt;}
.y2ea_c00002{bottom:218.211147pt;}
.y1981_c00002{bottom:218.440400pt;}
.y365_c00002{bottom:218.483533pt;}
.y12f9_c00002{bottom:218.721613pt;}
.y1693_c00002{bottom:218.722147pt;}
.y698_c00002{bottom:219.307507pt;}
.ya2d_c00002{bottom:219.574627pt;}
.yacf_c00002{bottom:219.733267pt;}
.y273_c00002{bottom:219.920827pt;}
.y3db_c00002{bottom:219.921880pt;}
.y493_c00002{bottom:219.922440pt;}
.y45d_c00002{bottom:219.922947pt;}
.ybbe_c00002{bottom:220.214667pt;}
.yc07_c00002{bottom:220.217013pt;}
.yc2a_c00002{bottom:220.218213pt;}
.y4c6_c00002{bottom:220.928027pt;}
.y428_c00002{bottom:220.928960pt;}
.y5f_c00002{bottom:220.929080pt;}
.y475_c00002{bottom:220.930013pt;}
.y17f1_c00002{bottom:221.332800pt;}
.ye94_c00002{bottom:221.867680pt;}
.y76d_c00002{bottom:222.468800pt;}
.ybdc_c00002{bottom:222.614533pt;}
.yad_c00002{bottom:223.170133pt;}
.ye8_c00002{bottom:223.170867pt;}
.y106_c00002{bottom:223.171667pt;}
.y7e1_c00002{bottom:223.251573pt;}
.y531_c00002{bottom:223.252107pt;}
.y800_c00002{bottom:223.252973pt;}
.y512_c00002{bottom:223.253027pt;}
.y4f0_c00002{bottom:223.253067pt;}
.y799_c00002{bottom:223.253173pt;}
.y550_c00002{bottom:223.253493pt;}
.y7b8_c00002{bottom:223.253520pt;}
.y1942_c00002{bottom:223.679787pt;}
.y8f8_c00002{bottom:224.000320pt;}
.y8d5_c00002{bottom:224.001200pt;}
.y926_c00002{bottom:224.001520pt;}
.y94b_c00002{bottom:224.002720pt;}
.ydf2_c00002{bottom:224.158920pt;}
.ye19_c00002{bottom:224.159053pt;}
.y125b_c00002{bottom:224.160560pt;}
.y1286_c00002{bottom:224.161493pt;}
.yd81_c00002{bottom:224.162160pt;}
.yd9d_c00002{bottom:224.163733pt;}
.y97_c00002{bottom:224.290667pt;}
.y1754_c00002{bottom:224.533333pt;}
.y1c8_c00002{bottom:224.877867pt;}
.y128_c00002{bottom:224.878933pt;}
.y19b_c00002{bottom:224.879467pt;}
.y145_c00002{bottom:224.881600pt;}
.y129a_c00002{bottom:225.281627pt;}
.y1593_c00002{bottom:225.281760pt;}
.y15fc_c00002{bottom:225.282027pt;}
.y102d_c00002{bottom:225.333213pt;}
.yd25_c00002{bottom:225.333253pt;}
.yce8_c00002{bottom:225.333733pt;}
.yccf_c00002{bottom:225.333773pt;}
.y101a_c00002{bottom:225.334013pt;}
.yd43_c00002{bottom:225.334147pt;}
.yc8_c00002{bottom:225.571587pt;}
.y858_c00002{bottom:225.919413pt;}
.y593_c00002{bottom:225.919467pt;}
.y5ae_c00002{bottom:225.919867pt;}
.y835_c00002{bottom:225.920000pt;}
.y821_c00002{bottom:225.920400pt;}
.y883_c00002{bottom:225.921027pt;}
.y8ac_c00002{bottom:225.922893pt;}
.y607_c00002{bottom:225.927360pt;}
.y634_c00002{bottom:225.928827pt;}
.y17c_c00002{bottom:226.000880pt;}
.y179c_c00002{bottom:226.293333pt;}
.y343_c00002{bottom:226.320133pt;}
.y3b2_c00002{bottom:226.321933pt;}
.y391_c00002{bottom:226.323400pt;}
.ye22_c00002{bottom:226.559200pt;}
.ydcc_c00002{bottom:226.559493pt;}
.y1235_c00002{bottom:226.561133pt;}
.y15b3_c00002{bottom:226.666747pt;}
.y14ef_c00002{bottom:226.666853pt;}
.y1550_c00002{bottom:226.667160pt;}
.y1194_c00002{bottom:226.720813pt;}
.y1355_c00002{bottom:226.773720pt;}
.yf48_c00002{bottom:226.774720pt;}
.y1536_c00002{bottom:226.775400pt;}
.y1485_c00002{bottom:226.776013pt;}
.y137a_c00002{bottom:226.776333pt;}
.y1338_c00002{bottom:226.776667pt;}
.y14ab_c00002{bottom:226.777640pt;}
.yf15_c00002{bottom:226.777733pt;}
.yf6c_c00002{bottom:226.777947pt;}
.y14c5_c00002{bottom:226.778307pt;}
.yf2b_c00002{bottom:226.778800pt;}
.y171c_c00002{bottom:226.779107pt;}
.y157b_c00002{bottom:226.779640pt;}
.y104f_c00002{bottom:226.781013pt;}
.y139c_c00002{bottom:226.781267pt;}
.yf8d_c00002{bottom:226.781680pt;}
.yb57_c00002{bottom:226.827733pt;}
.y9c3_c00002{bottom:227.561027pt;}
.yc79_c00002{bottom:227.573080pt;}
.yafa_c00002{bottom:227.573613pt;}
.ya9b_c00002{bottom:227.573867pt;}
.yb1d_c00002{bottom:227.575880pt;}
.yb95_c00002{bottom:227.577880pt;}
.yd08_c00002{bottom:227.733693pt;}
.y180e_c00002{bottom:228.053333pt;}
.ybb2_c00002{bottom:228.213333pt;}
.y5df_c00002{bottom:228.323320pt;}
.y272_c00002{bottom:228.668747pt;}
.y3da_c00002{bottom:228.669280pt;}
.y45c_c00002{bottom:228.670347pt;}
.y492_c00002{bottom:228.670880pt;}
.y364_c00002{bottom:228.723640pt;}
.y11c6_c00002{bottom:228.748467pt;}
.y1b6b_c00002{bottom:229.386667pt;}
.y15e3_c00002{bottom:229.652413pt;}
.y1438_c00002{bottom:229.653213pt;}
.y145f_c00002{bottom:229.654280pt;}
.yec3_c00002{bottom:229.654493pt;}
.y106d_c00002{bottom:229.655027pt;}
.y16e5_c00002{bottom:229.655480pt;}
.y110f_c00002{bottom:229.655560pt;}
.y12ea_c00002{bottom:229.655747pt;}
.y10c9_c00002{bottom:229.656093pt;}
.y1684_c00002{bottom:229.656280pt;}
.ye46_c00002{bottom:229.656933pt;}
.y16b1_c00002{bottom:229.657747pt;}
.y161d_c00002{bottom:229.657880pt;}
.y13db_c00002{bottom:229.658000pt;}
.y1317_c00002{bottom:229.658413pt;}
.ye64_c00002{bottom:229.659067pt;}
.yace_c00002{bottom:229.973373pt;}
.y2b4_c00002{bottom:230.210560pt;}
.y30b_c00002{bottom:230.210600pt;}
.y2cc_c00002{bottom:230.211467pt;}
.y1518_c00002{bottom:230.240467pt;}
.y155c_c00002{bottom:230.244040pt;}
.y1032_c00002{bottom:230.244747pt;}
.y1638_c00002{bottom:230.244867pt;}
.y324_c00002{bottom:230.265013pt;}
.y1408_c00002{bottom:230.775680pt;}
.y12ba_c00002{bottom:230.777693pt;}
.ya2c_c00002{bottom:231.094413pt;}
.y697_c00002{bottom:231.307507pt;}
.y666_c00002{bottom:231.308400pt;}
.y6c7_c00002{bottom:231.308733pt;}
.y6f4_c00002{bottom:231.309000pt;}
.y2a2_c00002{bottom:231.650667pt;}
.ye93_c00002{bottom:232.054133pt;}
.y1ae3_c00002{bottom:232.426667pt;}
.y1508_c00002{bottom:232.479933pt;}
.y2e9_c00002{bottom:232.666347pt;}
.y4c5_c00002{bottom:232.768133pt;}
.y427_c00002{bottom:232.769067pt;}
.y5e_c00002{bottom:232.769187pt;}
.y4b1_c00002{bottom:232.769600pt;}
.y474_c00002{bottom:232.770120pt;}
.y11d4_c00002{bottom:233.120493pt;}
.y107c_c00002{bottom:233.121027pt;}
.y10d8_c00002{bottom:233.122093pt;}
.ybdb_c00002{bottom:234.134840pt;}
.y1941_c00002{bottom:235.519893pt;}
.y17f0_c00002{bottom:235.732800pt;}
.y1ae4_c00002{bottom:235.946667pt;}
.yc7_c00002{bottom:237.091373pt;}
.y271_c00002{bottom:237.468747pt;}
.y3d9_c00002{bottom:237.469280pt;}
.y45b_c00002{bottom:237.470347pt;}
.y491_c00002{bottom:237.470880pt;}
.y7e0_c00002{bottom:237.652107pt;}
.y530_c00002{bottom:237.652640pt;}
.y7ff_c00002{bottom:237.652973pt;}
.y511_c00002{bottom:237.653027pt;}
.y4ef_c00002{bottom:237.653067pt;}
.y798_c00002{bottom:237.653173pt;}
.y54f_c00002{bottom:237.653493pt;}
.y7b7_c00002{bottom:237.653520pt;}
.y1a5f_c00002{bottom:237.706800pt;}
.y8f7_c00002{bottom:238.400320pt;}
.y925_c00002{bottom:238.401520pt;}
.y8d4_c00002{bottom:238.402267pt;}
.y94a_c00002{bottom:238.402720pt;}
.y15b2_c00002{bottom:238.507893pt;}
.y14ee_c00002{bottom:238.508000pt;}
.y154f_c00002{bottom:238.508307pt;}
.ydf1_c00002{bottom:238.558920pt;}
.ye18_c00002{bottom:238.559053pt;}
.y125a_c00002{bottom:238.560560pt;}
.y1285_c00002{bottom:238.561493pt;}
.yfbe_c00002{bottom:238.561853pt;}
.y1193_c00002{bottom:238.561960pt;}
.yd80_c00002{bottom:238.562160pt;}
.yd9c_c00002{bottom:238.563733pt;}
.ya69_c00002{bottom:238.878827pt;}
.yb71_c00002{bottom:238.879893pt;}
.y9fe_c00002{bottom:238.880053pt;}
.ya4f_c00002{bottom:238.880160pt;}
.ya0c_c00002{bottom:238.882133pt;}
.y1985_c00002{bottom:239.026933pt;}
.y127_c00002{bottom:239.278933pt;}
.y17b_c00002{bottom:239.280573pt;}
.y9c2_c00002{bottom:239.402173pt;}
.yd24_c00002{bottom:239.733253pt;}
.yce7_c00002{bottom:239.733733pt;}
.ycce_c00002{bottom:239.733773pt;}
.y1019_c00002{bottom:239.734013pt;}
.yd42_c00002{bottom:239.734147pt;}
.y1a8b_c00002{bottom:239.787733pt;}
.y363_c00002{bottom:240.243427pt;}
.y592_c00002{bottom:240.319467pt;}
.y5ad_c00002{bottom:240.319867pt;}
.y834_c00002{bottom:240.320000pt;}
.y820_c00002{bottom:240.320400pt;}
.y882_c00002{bottom:240.321027pt;}
.y8ab_c00002{bottom:240.322893pt;}
.y5de_c00002{bottom:240.323320pt;}
.y606_c00002{bottom:240.327360pt;}
.y633_c00002{bottom:240.328827pt;}
.y1ab4_c00002{bottom:240.586853pt;}
.y1753_c00002{bottom:240.693333pt;}
.yd57_c00002{bottom:240.853480pt;}
.y116d_c00002{bottom:240.855613pt;}
.ydcb_c00002{bottom:240.959493pt;}
.y1234_c00002{bottom:240.961133pt;}
.y1299_c00002{bottom:240.962293pt;}
.y1592_c00002{bottom:240.962427pt;}
.y1354_c00002{bottom:241.174787pt;}
.y1535_c00002{bottom:241.175400pt;}
.yf47_c00002{bottom:241.176320pt;}
.y1379_c00002{bottom:241.176333pt;}
.y1337_c00002{bottom:241.176667pt;}
.y1484_c00002{bottom:241.177080pt;}
.y14aa_c00002{bottom:241.177640pt;}
.yf14_c00002{bottom:241.177733pt;}
.yf6b_c00002{bottom:241.177947pt;}
.y14c4_c00002{bottom:241.178307pt;}
.yf2a_c00002{bottom:241.178800pt;}
.y171b_c00002{bottom:241.179107pt;}
.y157a_c00002{bottom:241.179640pt;}
.y104e_c00002{bottom:241.181013pt;}
.y139b_c00002{bottom:241.181267pt;}
.yf8c_c00002{bottom:241.181680pt;}
.ya2b_c00002{bottom:241.280867pt;}
.yacd_c00002{bottom:241.493160pt;}
.y19b1_c00002{bottom:241.545760pt;}
.yb56_c00002{bottom:241.548000pt;}
.ybbd_c00002{bottom:241.973467pt;}
.yc06_c00002{bottom:241.976880pt;}
.yc29_c00002{bottom:241.978080pt;}
.yd07_c00002{bottom:242.186360pt;}
.y857_c00002{bottom:242.772480pt;}
.y1ad_c00002{bottom:242.798533pt;}
.y76b_c00002{bottom:242.986133pt;}
.y755_c00002{bottom:242.986533pt;}
.y71f_c00002{bottom:242.987333pt;}
.y73d_c00002{bottom:242.987600pt;}
.y1b24_c00002{bottom:242.988000pt;}
.y15e2_c00002{bottom:244.052413pt;}
.y1437_c00002{bottom:244.053213pt;}
.y145e_c00002{bottom:244.054280pt;}
.yec2_c00002{bottom:244.054493pt;}
.y1202_c00002{bottom:244.054627pt;}
.y106c_c00002{bottom:244.055027pt;}
.y16e4_c00002{bottom:244.055480pt;}
.y110e_c00002{bottom:244.055560pt;}
.y12e9_c00002{bottom:244.055747pt;}
.y10c8_c00002{bottom:244.056093pt;}
.yfe8_c00002{bottom:244.056227pt;}
.y1683_c00002{bottom:244.056280pt;}
.y1099_c00002{bottom:244.056493pt;}
.yeee_c00002{bottom:244.056613pt;}
.ye45_c00002{bottom:244.056933pt;}
.y1131_c00002{bottom:244.057293pt;}
.y161c_c00002{bottom:244.057347pt;}
.y10f5_c00002{bottom:244.057560pt;}
.y16b0_c00002{bottom:244.057747pt;}
.y13da_c00002{bottom:244.058000pt;}
.y1156_c00002{bottom:244.058360pt;}
.y1316_c00002{bottom:244.058413pt;}
.ye63_c00002{bottom:244.059067pt;}
.ybda_c00002{bottom:244.374427pt;}
.y5d_c00002{bottom:244.609293pt;}
.y4b0_c00002{bottom:244.609707pt;}
.y473_c00002{bottom:244.610227pt;}
.y1517_c00002{bottom:244.640467pt;}
.y155b_c00002{bottom:244.644040pt;}
.y1031_c00002{bottom:244.644747pt;}
.y1637_c00002{bottom:244.644867pt;}
.y323_c00002{bottom:244.665013pt;}
.y2b3_c00002{bottom:244.665760pt;}
.y30a_c00002{bottom:244.665800pt;}
.y2cb_c00002{bottom:244.666667pt;}
.y105_c00002{bottom:244.876867pt;}
.yac_c00002{bottom:244.878000pt;}
.ye7_c00002{bottom:244.878733pt;}
.y1407_c00002{bottom:245.175680pt;}
.ye92_c00002{bottom:245.176533pt;}
.y12b9_c00002{bottom:245.177693pt;}
.y179b_c00002{bottom:245.653333pt;}
.y696_c00002{bottom:245.707507pt;}
.y665_c00002{bottom:245.708400pt;}
.y6c6_c00002{bottom:245.708733pt;}
.y6f3_c00002{bottom:245.709000pt;}
.y180d_c00002{bottom:245.813333pt;}
.y96_c00002{bottom:245.998000pt;}
.y2e8_c00002{bottom:247.066347pt;}
.yc6_c00002{bottom:247.330960pt;}
.y342_c00002{bottom:248.027467pt;}
.y3b1_c00002{bottom:248.029800pt;}
.y390_c00002{bottom:248.031267pt;}
.y1b6a_c00002{bottom:248.746667pt;}
.yc78_c00002{bottom:249.279347pt;}
.yaf9_c00002{bottom:249.279880pt;}
.ya9a_c00002{bottom:249.280133pt;}
.yb1c_c00002{bottom:249.282147pt;}
.yc9b_c00002{bottom:249.283213pt;}
.yb94_c00002{bottom:249.284680pt;}
.y17ef_c00002{bottom:250.132800pt;}
.y15b1_c00002{bottom:250.348000pt;}
.y1507_c00002{bottom:250.348200pt;}
.y154e_c00002{bottom:250.348413pt;}
.yfbd_c00002{bottom:250.401960pt;}
.y1192_c00002{bottom:250.402067pt;}
.y362_c00002{bottom:250.430933pt;}
.y9c1_c00002{bottom:251.242280pt;}
.yacc_c00002{bottom:251.679613pt;}
.y7df_c00002{bottom:252.052107pt;}
.y52f_c00002{bottom:252.052640pt;}
.y7fe_c00002{bottom:252.052973pt;}
.y510_c00002{bottom:252.053027pt;}
.y4ee_c00002{bottom:252.053067pt;}
.y797_c00002{bottom:252.053173pt;}
.y54e_c00002{bottom:252.053493pt;}
.y7b6_c00002{bottom:252.053520pt;}
.y22d_c00002{bottom:252.082613pt;}
.y11c5_c00002{bottom:252.268200pt;}
.y8f6_c00002{bottom:252.320053pt;}
.ya2a_c00002{bottom:252.801173pt;}
.ydf0_c00002{bottom:252.958920pt;}
.ye17_c00002{bottom:252.959053pt;}
.y1259_c00002{bottom:252.960560pt;}
.y1284_c00002{bottom:252.961493pt;}
.yd7f_c00002{bottom:252.962160pt;}
.yd9b_c00002{bottom:252.963733pt;}
.y19b0_c00002{bottom:253.385867pt;}
.y1af_c00002{bottom:253.677733pt;}
.y1c7_c00002{bottom:253.677867pt;}
.y126_c00002{bottom:253.678933pt;}
.y17a_c00002{bottom:253.680573pt;}
.y144_c00002{bottom:253.681600pt;}
.ye21_c00002{bottom:254.080533pt;}
.yce6_c00002{bottom:254.186400pt;}
.yccd_c00002{bottom:254.186440pt;}
.yd23_c00002{bottom:254.186853pt;}
.y1018_c00002{bottom:254.187613pt;}
.yd41_c00002{bottom:254.187747pt;}
.y591_c00002{bottom:254.772533pt;}
.y833_c00002{bottom:254.773067pt;}
.y5ac_c00002{bottom:254.773467pt;}
.y81f_c00002{bottom:254.774000pt;}
.y881_c00002{bottom:254.774627pt;}
.y8aa_c00002{bottom:254.776493pt;}
.y605_c00002{bottom:254.780427pt;}
.y632_c00002{bottom:254.782427pt;}
.y116c_c00002{bottom:255.309213pt;}
.ydca_c00002{bottom:255.359493pt;}
.y1233_c00002{bottom:255.361133pt;}
.y1378_c00002{bottom:255.576333pt;}
.y1336_c00002{bottom:255.576667pt;}
.y14a9_c00002{bottom:255.577640pt;}
.yf13_c00002{bottom:255.577733pt;}
.yf6a_c00002{bottom:255.577947pt;}
.yf29_c00002{bottom:255.578800pt;}
.y1353_c00002{bottom:255.627853pt;}
.yf46_c00002{bottom:255.628453pt;}
.y1534_c00002{bottom:255.628467pt;}
.y1483_c00002{bottom:255.629747pt;}
.y14c3_c00002{bottom:255.631907pt;}
.y171a_c00002{bottom:255.632707pt;}
.y1579_c00002{bottom:255.633240pt;}
.y104d_c00002{bottom:255.634613pt;}
.y1657_c00002{bottom:255.634867pt;}
.yf8b_c00002{bottom:255.635280pt;}
.y139a_c00002{bottom:255.635400pt;}
.ybd9_c00002{bottom:255.894733pt;}
.y4c4_c00002{bottom:256.395733pt;}
.y426_c00002{bottom:256.396667pt;}
.y5c_c00002{bottom:256.396787pt;}
.y472_c00002{bottom:256.397720pt;}
.yd06_c00002{bottom:256.586360pt;}
.y1752_c00002{bottom:256.853333pt;}
.y856_c00002{bottom:257.172480pt;}
.y5dd_c00002{bottom:257.176920pt;}
.y1ac_c00002{bottom:257.198533pt;}
.y76a_c00002{bottom:257.386133pt;}
.y754_c00002{bottom:257.386533pt;}
.y71e_c00002{bottom:257.387333pt;}
.y73c_c00002{bottom:257.387600pt;}
.y1436_c00002{bottom:258.453213pt;}
.yec1_c00002{bottom:258.454493pt;}
.y106b_c00002{bottom:258.455027pt;}
.y110d_c00002{bottom:258.455560pt;}
.y12e8_c00002{bottom:258.455747pt;}
.y10c7_c00002{bottom:258.456093pt;}
.y1682_c00002{bottom:258.456280pt;}
.ye44_c00002{bottom:258.456933pt;}
.y13d9_c00002{bottom:258.458000pt;}
.ye62_c00002{bottom:258.459067pt;}
.y15e1_c00002{bottom:258.506547pt;}
.y1201_c00002{bottom:258.508227pt;}
.y145d_c00002{bottom:258.508413pt;}
.y16e3_c00002{bottom:258.509080pt;}
.yfe7_c00002{bottom:258.509827pt;}
.y1098_c00002{bottom:258.510093pt;}
.yeed_c00002{bottom:258.510747pt;}
.y1130_c00002{bottom:258.510893pt;}
.y161b_c00002{bottom:258.510947pt;}
.y10f4_c00002{bottom:258.511160pt;}
.y16af_c00002{bottom:258.511347pt;}
.y1155_c00002{bottom:258.511960pt;}
.y1315_c00002{bottom:258.512013pt;}
.y322_c00002{bottom:259.063947pt;}
.y2b2_c00002{bottom:259.065760pt;}
.y309_c00002{bottom:259.065800pt;}
.y2ca_c00002{bottom:259.066667pt;}
.y1516_c00002{bottom:259.094600pt;}
.y155a_c00002{bottom:259.097640pt;}
.y1030_c00002{bottom:259.098347pt;}
.y1636_c00002{bottom:259.098467pt;}
.y1940_c00002{bottom:259.199627pt;}
.yab_c00002{bottom:259.330133pt;}
.ye6_c00002{bottom:259.330867pt;}
.yc5_c00002{bottom:259.330960pt;}
.y95_c00002{bottom:259.331333pt;}
.y104_c00002{bottom:259.331533pt;}
.y1406_c00002{bottom:259.575680pt;}
.ye91_c00002{bottom:259.576533pt;}
.y12b8_c00002{bottom:259.577693pt;}
.y20d_c00002{bottom:259.868133pt;}
.y270_c00002{bottom:259.868747pt;}
.y3d8_c00002{bottom:259.869280pt;}
.y24a_c00002{bottom:259.869947pt;}
.y45a_c00002{bottom:259.870347pt;}
.y490_c00002{bottom:259.870880pt;}
.y664_c00002{bottom:260.108400pt;}
.y8d3_c00002{bottom:260.108533pt;}
.y6c5_c00002{bottom:260.108733pt;}
.y924_c00002{bottom:260.108853pt;}
.y695_c00002{bottom:260.161107pt;}
.y6f2_c00002{bottom:260.163133pt;}
.y2e7_c00002{bottom:260.186133pt;}
.ya68_c00002{bottom:260.638693pt;}
.yb70_c00002{bottom:260.639760pt;}
.ya4e_c00002{bottom:260.640027pt;}
.ya0b_c00002{bottom:260.642000pt;}
.y1f7_c00002{bottom:260.989400pt;}
.y9fd_c00002{bottom:261.708187pt;}
.y361_c00002{bottom:261.950720pt;}
.y1506_c00002{bottom:262.187787pt;}
.yfbc_c00002{bottom:262.187893pt;}
.y1191_c00002{bottom:262.188000pt;}
.y22c_c00002{bottom:262.322200pt;}
.y1b23_c00002{bottom:262.348000pt;}
.y8f5_c00002{bottom:262.560160pt;}
.ya29_c00002{bottom:263.040760pt;}
.yacb_c00002{bottom:263.200973pt;}
.y1b47_c00002{bottom:263.306667pt;}
.y250_c00002{bottom:263.389947pt;}
.y180c_c00002{bottom:263.573333pt;}
.ybbc_c00002{bottom:263.680800pt;}
.yc05_c00002{bottom:263.683147pt;}
.yc28_c00002{bottom:263.737947pt;}
.y11c4_c00002{bottom:264.108307pt;}
.y1ae2_c00002{bottom:264.426933pt;}
.y17ee_c00002{bottom:264.532800pt;}
.y179a_c00002{bottom:265.013333pt;}
.ybd8_c00002{bottom:266.134840pt;}
.y7de_c00002{bottom:266.452107pt;}
.y52e_c00002{bottom:266.452640pt;}
.y4ed_c00002{bottom:266.453067pt;}
.y796_c00002{bottom:266.453173pt;}
.y50f_c00002{bottom:266.505693pt;}
.y7fd_c00002{bottom:266.506573pt;}
.y54d_c00002{bottom:266.507093pt;}
.y7b5_c00002{bottom:266.507120pt;}
.y3ff_c00002{bottom:267.170667pt;}
.ydef_c00002{bottom:267.358920pt;}
.y1258_c00002{bottom:267.360560pt;}
.yd7e_c00002{bottom:267.362160pt;}
.yd9a_c00002{bottom:267.363733pt;}
.ye16_c00002{bottom:267.413187pt;}
.y1283_c00002{bottom:267.415627pt;}
.y1b69_c00002{bottom:268.106667pt;}
.y4af_c00002{bottom:268.129440pt;}
.y1ae_c00002{bottom:268.130800pt;}
.y1c6_c00002{bottom:268.130933pt;}
.y125_c00002{bottom:268.132000pt;}
.y179_c00002{bottom:268.133240pt;}
.y143_c00002{bottom:268.133733pt;}
.y4c3_c00002{bottom:268.235840pt;}
.y425_c00002{bottom:268.236773pt;}
.y1984_c00002{bottom:268.467067pt;}
.y1232_c00002{bottom:268.480400pt;}
.y14fe_c00002{bottom:268.483627pt;}
.yce5_c00002{bottom:268.586400pt;}
.yccc_c00002{bottom:268.586440pt;}
.yd22_c00002{bottom:268.586853pt;}
.y1017_c00002{bottom:268.587613pt;}
.yd40_c00002{bottom:268.587747pt;}
.y590_c00002{bottom:269.172533pt;}
.y832_c00002{bottom:269.173067pt;}
.y5ab_c00002{bottom:269.173467pt;}
.y81e_c00002{bottom:269.174000pt;}
.y880_c00002{bottom:269.174627pt;}
.y8a9_c00002{bottom:269.176493pt;}
.y604_c00002{bottom:269.180427pt;}
.y631_c00002{bottom:269.181893pt;}
.y341_c00002{bottom:269.787333pt;}
.y38f_c00002{bottom:269.791133pt;}
.ydc9_c00002{bottom:269.813093pt;}
.y1352_c00002{bottom:270.027853pt;}
.yf45_c00002{bottom:270.028453pt;}
.y1533_c00002{bottom:270.028467pt;}
.y1335_c00002{bottom:270.029333pt;}
.y1377_c00002{bottom:270.029933pt;}
.yf12_c00002{bottom:270.030400pt;}
.yf28_c00002{bottom:270.031467pt;}
.yf69_c00002{bottom:270.031547pt;}
.y1399_c00002{bottom:270.034333pt;}
.y104c_c00002{bottom:270.034613pt;}
.y1656_c00002{bottom:270.034867pt;}
.yf8a_c00002{bottom:270.035280pt;}
.y7d0_c00002{bottom:270.301800pt;}
.y7cd_c00002{bottom:270.303813pt;}
.y13b1_c00002{bottom:270.613333pt;}
.yd05_c00002{bottom:270.986360pt;}
.y193f_c00002{bottom:271.039733pt;}
.yc77_c00002{bottom:271.039747pt;}
.yaf8_c00002{bottom:271.040280pt;}
.ya99_c00002{bottom:271.040533pt;}
.yb1b_c00002{bottom:271.041480pt;}
.yc9a_c00002{bottom:271.043080pt;}
.yb93_c00002{bottom:271.044547pt;}
.y855_c00002{bottom:271.572480pt;}
.y5dc_c00002{bottom:271.576387pt;}
.y1ab_c00002{bottom:271.598533pt;}
.y753_c00002{bottom:271.786533pt;}
.y71d_c00002{bottom:271.787333pt;}
.y973_c00002{bottom:271.788800pt;}
.y9a8_c00002{bottom:271.790413pt;}
.y9bf_c00002{bottom:271.830280pt;}
.y769_c00002{bottom:271.839733pt;}
.y73b_c00002{bottom:271.840667pt;}
.y98e_c00002{bottom:271.842947pt;}
.y360_c00002{bottom:272.190827pt;}
.y1a5e_c00002{bottom:272.746933pt;}
.y15fb_c00002{bottom:272.853333pt;}
.y158f_c00002{bottom:272.855720pt;}
.y14da_c00002{bottom:272.856027pt;}
.y15a0_c00002{bottom:272.856133pt;}
.y1731_c00002{bottom:272.858267pt;}
.y15e0_c00002{bottom:272.906547pt;}
.y1435_c00002{bottom:272.906813pt;}
.y1200_c00002{bottom:272.908227pt;}
.y145c_c00002{bottom:272.908413pt;}
.yec0_c00002{bottom:272.908627pt;}
.ye43_c00002{bottom:272.909067pt;}
.y16e2_c00002{bottom:272.909080pt;}
.y106a_c00002{bottom:272.909160pt;}
.y110c_c00002{bottom:272.909693pt;}
.yfe6_c00002{bottom:272.909827pt;}
.y12e7_c00002{bottom:272.909880pt;}
.y1097_c00002{bottom:272.910093pt;}
.y10c6_c00002{bottom:272.910227pt;}
.y161a_c00002{bottom:272.910413pt;}
.yeec_c00002{bottom:272.910747pt;}
.y112f_c00002{bottom:272.910893pt;}
.y10f3_c00002{bottom:272.911160pt;}
.ye61_c00002{bottom:272.911200pt;}
.y16ae_c00002{bottom:272.911347pt;}
.y13d8_c00002{bottom:272.911600pt;}
.y1154_c00002{bottom:272.911960pt;}
.y1314_c00002{bottom:272.912013pt;}
.y1751_c00002{bottom:273.013333pt;}
.y19af_c00002{bottom:273.333200pt;}
.yaca_c00002{bottom:273.441080pt;}
.y321_c00002{bottom:273.463947pt;}
.y2b1_c00002{bottom:273.465760pt;}
.y308_c00002{bottom:273.465800pt;}
.y2c9_c00002{bottom:273.466667pt;}
.y1515_c00002{bottom:273.495133pt;}
.y102f_c00002{bottom:273.498347pt;}
.y1635_c00002{bottom:273.498467pt;}
.yaa_c00002{bottom:273.730133pt;}
.ye5_c00002{bottom:273.730867pt;}
.yc4_c00002{bottom:273.730960pt;}
.y94_c00002{bottom:273.731333pt;}
.y103_c00002{bottom:273.731533pt;}
.y22b_c00002{bottom:273.842507pt;}
.y1505_c00002{bottom:274.027893pt;}
.yfbb_c00002{bottom:274.028000pt;}
.y1405_c00002{bottom:274.028347pt;}
.ye90_c00002{bottom:274.030133pt;}
.y12b7_c00002{bottom:274.031293pt;}
.y1a8a_c00002{bottom:274.507467pt;}
.y8f4_c00002{bottom:274.560160pt;}
.ya28_c00002{bottom:274.561067pt;}
.y694_c00002{bottom:274.561107pt;}
.y6c4_c00002{bottom:274.561400pt;}
.y923_c00002{bottom:274.561520pt;}
.y663_c00002{bottom:274.562533pt;}
.y949_c00002{bottom:274.562587pt;}
.y8d2_c00002{bottom:274.562667pt;}
.y6f1_c00002{bottom:274.563133pt;}
.y2e6_c00002{bottom:275.864800pt;}
.y11c3_c00002{bottom:275.948413pt;}
.y1ab3_c00002{bottom:276.106587pt;}
.ybd7_c00002{bottom:277.654627pt;}
.y17ed_c00002{bottom:278.932800pt;}
.y4ae_c00002{bottom:279.969547pt;}
.y5b_c00002{bottom:280.076520pt;}
.y471_c00002{bottom:280.077453pt;}
.y7dd_c00002{bottom:280.904773pt;}
.y52d_c00002{bottom:280.905307pt;}
.y4ec_c00002{bottom:280.905733pt;}
.y795_c00002{bottom:280.905840pt;}
.y7fc_c00002{bottom:280.906573pt;}
.y54c_c00002{bottom:280.907093pt;}
.y7b4_c00002{bottom:280.907120pt;}
.y562_c00002{bottom:280.907760pt;}
.y7d8_c00002{bottom:280.908853pt;}
.y180b_c00002{bottom:281.333333pt;}
.y20c_c00002{bottom:281.627467pt;}
.y26f_c00002{bottom:281.628613pt;}
.y3d7_c00002{bottom:281.629147pt;}
.y249_c00002{bottom:281.629813pt;}
.y459_c00002{bottom:281.630213pt;}
.y48f_c00002{bottom:281.630747pt;}
.y1b22_c00002{bottom:281.706667pt;}
.ydee_c00002{bottom:281.812520pt;}
.ye15_c00002{bottom:281.813187pt;}
.y1257_c00002{bottom:281.814160pt;}
.y1282_c00002{bottom:281.815627pt;}
.yd7d_c00002{bottom:281.815760pt;}
.yd99_c00002{bottom:281.817333pt;}
.y9e7_c00002{bottom:282.027240pt;}
.y816_c00002{bottom:282.028587pt;}
.ya67_c00002{bottom:282.346027pt;}
.ya4d_c00002{bottom:282.346293pt;}
.yb6f_c00002{bottom:282.347093pt;}
.ya0a_c00002{bottom:282.348267pt;}
.y178_c00002{bottom:282.533240pt;}
.y1b46_c00002{bottom:282.666667pt;}
.y1f6_c00002{bottom:282.749267pt;}
.y1231_c00002{bottom:282.934533pt;}
.ye20_c00002{bottom:282.934667pt;}
.yce4_c00002{bottom:282.986400pt;}
.yccb_c00002{bottom:282.986440pt;}
.yd21_c00002{bottom:282.986853pt;}
.y1016_c00002{bottom:282.987613pt;}
.yd3f_c00002{bottom:282.987747pt;}
.yd56_c00002{bottom:282.989480pt;}
.yc59_c00002{bottom:283.093493pt;}
.y1983_c00002{bottom:283.186800pt;}
.y50e_c00002{bottom:283.305693pt;}
.y9fc_c00002{bottom:283.468053pt;}
.y854_c00002{bottom:283.572480pt;}
.y58f_c00002{bottom:283.572533pt;}
.y831_c00002{bottom:283.573067pt;}
.y5aa_c00002{bottom:283.573467pt;}
.y81d_c00002{bottom:283.574000pt;}
.y87f_c00002{bottom:283.574627pt;}
.y8a8_c00002{bottom:283.576493pt;}
.y603_c00002{bottom:283.580427pt;}
.y630_c00002{bottom:283.581893pt;}
.y1adf_c00002{bottom:283.626667pt;}
.y124_c00002{bottom:283.651733pt;}
.y22a_c00002{bottom:284.030013pt;}
.y340_c00002{bottom:284.187333pt;}
.y3b0_c00002{bottom:284.189667pt;}
.y38e_c00002{bottom:284.190067pt;}
.ydc8_c00002{bottom:284.213093pt;}
.y1799_c00002{bottom:284.373333pt;}
.yf44_c00002{bottom:284.428453pt;}
.yf11_c00002{bottom:284.430400pt;}
.yf27_c00002{bottom:284.431467pt;}
.yf68_c00002{bottom:284.431547pt;}
.y104b_c00002{bottom:284.434613pt;}
.yf89_c00002{bottom:284.435280pt;}
.ya27_c00002{bottom:284.747000pt;}
.yac9_c00002{bottom:284.960867pt;}
.y24f_c00002{bottom:285.095147pt;}
.y35f_c00002{bottom:285.309573pt;}
.yd04_c00002{bottom:285.386360pt;}
.ybbb_c00002{bottom:285.440667pt;}
.yc04_c00002{bottom:285.443013pt;}
.yc27_c00002{bottom:285.444213pt;}
.y1504_c00002{bottom:285.868000pt;}
.y5db_c00002{bottom:285.975853pt;}
.y9be_c00002{bottom:286.230280pt;}
.y73a_c00002{bottom:286.239600pt;}
.y768_c00002{bottom:286.239733pt;}
.y71c_c00002{bottom:286.240000pt;}
.y972_c00002{bottom:286.241467pt;}
.y9a7_c00002{bottom:286.242547pt;}
.y98d_c00002{bottom:286.242947pt;}
.y15c4_c00002{bottom:287.253333pt;}
.y154a_c00002{bottom:287.253813pt;}
.y13af_c00002{bottom:287.258573pt;}
.y1668_c00002{bottom:287.259680pt;}
.y15df_c00002{bottom:287.306013pt;}
.y1434_c00002{bottom:287.306813pt;}
.y11ff_c00002{bottom:287.308227pt;}
.y145b_c00002{bottom:287.308413pt;}
.yebf_c00002{bottom:287.308627pt;}
.ye42_c00002{bottom:287.309067pt;}
.y16e1_c00002{bottom:287.309080pt;}
.y1069_c00002{bottom:287.309160pt;}
.yfe5_c00002{bottom:287.309293pt;}
.y110b_c00002{bottom:287.309693pt;}
.y12e6_c00002{bottom:287.309880pt;}
.y1096_c00002{bottom:287.310093pt;}
.y10c5_c00002{bottom:287.310227pt;}
.y112e_c00002{bottom:287.310360pt;}
.y1681_c00002{bottom:287.310413pt;}
.yeeb_c00002{bottom:287.310747pt;}
.y13d7_c00002{bottom:287.311067pt;}
.y10f2_c00002{bottom:287.311160pt;}
.ye60_c00002{bottom:287.311200pt;}
.y16ad_c00002{bottom:287.311347pt;}
.y1153_c00002{bottom:287.311960pt;}
.y1313_c00002{bottom:287.312013pt;}
.y1b68_c00002{bottom:287.466667pt;}
.y11c2_c00002{bottom:287.788000pt;}
.ybd6_c00002{bottom:287.841080pt;}
.y2b0_c00002{bottom:287.865760pt;}
.y307_c00002{bottom:287.865800pt;}
.y2c8_c00002{bottom:287.866667pt;}
.y102e_c00002{bottom:287.898347pt;}
.y320_c00002{bottom:287.917013pt;}
.y93_c00002{bottom:288.129733pt;}
.ya9_c00002{bottom:288.130133pt;}
.ye4_c00002{bottom:288.130867pt;}
.y102_c00002{bottom:288.131533pt;}
.y1404_c00002{bottom:288.428347pt;}
.ye8f_c00002{bottom:288.430133pt;}
.y12b6_c00002{bottom:288.431293pt;}
.y11e5_c00002{bottom:288.431427pt;}
.y8f3_c00002{bottom:288.960160pt;}
.y662_c00002{bottom:288.960933pt;}
.y8d1_c00002{bottom:288.961067pt;}
.y693_c00002{bottom:288.961107pt;}
.y6c3_c00002{bottom:288.961400pt;}
.y922_c00002{bottom:288.961520pt;}
.y948_c00002{bottom:288.962587pt;}
.y6f0_c00002{bottom:288.963133pt;}
.y1750_c00002{bottom:289.173333pt;}
.yc3_c00002{bottom:289.251227pt;}
.y2e5_c00002{bottom:290.317867pt;}
.y193e_c00002{bottom:291.039733pt;}
.y4c2_c00002{bottom:291.808773pt;}
.y4ad_c00002{bottom:291.809653pt;}
.y424_c00002{bottom:291.809707pt;}
.y5a_c00002{bottom:291.916107pt;}
.y470_c00002{bottom:291.917040pt;}
.y1482_c00002{bottom:292.589613pt;}
.yc76_c00002{bottom:292.746013pt;}
.yaf7_c00002{bottom:292.746547pt;}
.ya98_c00002{bottom:292.746800pt;}
.yb1a_c00002{bottom:292.800813pt;}
.yc99_c00002{bottom:292.802947pt;}
.yb92_c00002{bottom:292.804413pt;}
.y1ae1_c00002{bottom:292.906667pt;}
.y17ec_c00002{bottom:293.332800pt;}
.y1509_c00002{bottom:294.240000pt;}
.yc58_c00002{bottom:294.933600pt;}
.yac8_c00002{bottom:295.200973pt;}
.y7dc_c00002{bottom:295.304773pt;}
.y52c_c00002{bottom:295.305307pt;}
.y7fb_c00002{bottom:295.305507pt;}
.y50d_c00002{bottom:295.305693pt;}
.y4eb_c00002{bottom:295.305733pt;}
.y794_c00002{bottom:295.305840pt;}
.y54b_c00002{bottom:295.306027pt;}
.y7b3_c00002{bottom:295.306053pt;}
.y20b_c00002{bottom:296.027467pt;}
.y1f5_c00002{bottom:296.027907pt;}
.y26e_c00002{bottom:296.028613pt;}
.y3d6_c00002{bottom:296.029147pt;}
.y458_c00002{bottom:296.029680pt;}
.y248_c00002{bottom:296.029813pt;}
.y229_c00002{bottom:296.030013pt;}
.y48e_c00002{bottom:296.030213pt;}
.yded_c00002{bottom:296.212520pt;}
.ye14_c00002{bottom:296.213187pt;}
.y1256_c00002{bottom:296.214160pt;}
.y1281_c00002{bottom:296.215627pt;}
.yd7c_c00002{bottom:296.215760pt;}
.yd98_c00002{bottom:296.217333pt;}
.y815_c00002{bottom:296.428587pt;}
.ya4c_c00002{bottom:296.746293pt;}
.y9fb_c00002{bottom:296.748267pt;}
.ya66_c00002{bottom:296.798693pt;}
.yb6e_c00002{bottom:296.799760pt;}
.y1230_c00002{bottom:297.334533pt;}
.ydc7_c00002{bottom:297.335493pt;}
.ycca_c00002{bottom:297.386440pt;}
.yd03_c00002{bottom:297.440000pt;}
.y1add_c00002{bottom:297.866667pt;}
.y1982_c00002{bottom:297.907067pt;}
.y58e_c00002{bottom:297.972533pt;}
.y830_c00002{bottom:297.973067pt;}
.y5a9_c00002{bottom:297.973467pt;}
.y81c_c00002{bottom:297.974000pt;}
.y87e_c00002{bottom:297.974093pt;}
.y602_c00002{bottom:297.980427pt;}
.y8a7_c00002{bottom:298.030093pt;}
.y62f_c00002{bottom:298.035493pt;}
.y33f_c00002{bottom:298.587333pt;}
.y3af_c00002{bottom:298.589667pt;}
.y38d_c00002{bottom:298.590067pt;}
.y180a_c00002{bottom:299.093333pt;}
.ya26_c00002{bottom:299.201133pt;}
.ybd5_c00002{bottom:299.360867pt;}
.y35e_c00002{bottom:299.709573pt;}
.y1da_c00002{bottom:299.756400pt;}
.y739_c00002{bottom:300.159333pt;}
.y146f_c00002{bottom:300.376667pt;}
.y14a8_c00002{bottom:300.377640pt;}
.y853_c00002{bottom:300.425547pt;}
.y5da_c00002{bottom:300.428920pt;}
.y9bd_c00002{bottom:300.630280pt;}
.y971_c00002{bottom:300.641467pt;}
.y9a6_c00002{bottom:300.642547pt;}
.y98c_c00002{bottom:300.642947pt;}
.y1b21_c00002{bottom:301.068000pt;}
.y1062_c00002{bottom:301.657293pt;}
.y11ad_c00002{bottom:301.658053pt;}
.y1002_c00002{bottom:301.658120pt;}
.y117c_c00002{bottom:301.658587pt;}
.y10b5_c00002{bottom:301.658853pt;}
.yfa1_c00002{bottom:301.659147pt;}
.y15de_c00002{bottom:301.706013pt;}
.y1433_c00002{bottom:301.706813pt;}
.y16e0_c00002{bottom:301.708013pt;}
.y11fe_c00002{bottom:301.708227pt;}
.y145a_c00002{bottom:301.708413pt;}
.yebe_c00002{bottom:301.708627pt;}
.yfe4_c00002{bottom:301.708760pt;}
.ye41_c00002{bottom:301.709067pt;}
.y1068_c00002{bottom:301.709160pt;}
.y110a_c00002{bottom:301.709693pt;}
.y112d_c00002{bottom:301.709827pt;}
.y12e5_c00002{bottom:301.709880pt;}
.y1095_c00002{bottom:301.710093pt;}
.y10c4_c00002{bottom:301.710227pt;}
.y1680_c00002{bottom:301.710413pt;}
.y13d6_c00002{bottom:301.710533pt;}
.yeea_c00002{bottom:301.710747pt;}
.y16ac_c00002{bottom:301.710813pt;}
.y10f1_c00002{bottom:301.711160pt;}
.ye5f_c00002{bottom:301.711200pt;}
.y1152_c00002{bottom:301.711960pt;}
.y1312_c00002{bottom:301.712013pt;}
.y1b45_c00002{bottom:302.026667pt;}
.y31f_c00002{bottom:302.316480pt;}
.y306_c00002{bottom:302.318467pt;}
.y2af_c00002{bottom:302.318827pt;}
.y2c7_c00002{bottom:302.319333pt;}
.ybb1_c00002{bottom:302.507827pt;}
.y92_c00002{bottom:302.529733pt;}
.ya8_c00002{bottom:302.530133pt;}
.ye3_c00002{bottom:302.530867pt;}
.y101_c00002{bottom:302.584600pt;}
.yc2_c00002{bottom:302.586160pt;}
.y1403_c00002{bottom:302.828347pt;}
.y1481_c00002{bottom:302.829720pt;}
.ye8e_c00002{bottom:302.830133pt;}
.y12b5_c00002{bottom:302.831293pt;}
.y8f2_c00002{bottom:303.360160pt;}
.y661_c00002{bottom:303.360933pt;}
.y8d0_c00002{bottom:303.361067pt;}
.y692_c00002{bottom:303.361107pt;}
.y6c2_c00002{bottom:303.361400pt;}
.y921_c00002{bottom:303.361520pt;}
.y947_c00002{bottom:303.362587pt;}
.y6ef_c00002{bottom:303.363133pt;}
.y4c1_c00002{bottom:303.648880pt;}
.y4ac_c00002{bottom:303.649760pt;}
.y423_c00002{bottom:303.649813pt;}
.y1798_c00002{bottom:303.733333pt;}
.y2e4_c00002{bottom:304.717867pt;}
.y174f_c00002{bottom:305.333333pt;}
.yc57_c00002{bottom:306.720053pt;}
.yac7_c00002{bottom:306.720760pt;}
.y1b67_c00002{bottom:306.826667pt;}
.y1351_c00002{bottom:306.988253pt;}
.ybba_c00002{bottom:307.200533pt;}
.yc03_c00002{bottom:307.202880pt;}
.yc26_c00002{bottom:307.203547pt;}
.y1a2c_c00002{bottom:307.629333pt;}
.y17eb_c00002{bottom:307.731733pt;}
.y1a5d_c00002{bottom:307.787067pt;}
.y752_c00002{bottom:307.947467pt;}
.y71b_c00002{bottom:307.948400pt;}
.y1a2b_c00002{bottom:308.589333pt;}
.y1a89_c00002{bottom:309.226800pt;}
.ybd4_c00002{bottom:309.600973pt;}
.y7db_c00002{bottom:309.704773pt;}
.y52b_c00002{bottom:309.705307pt;}
.y7fa_c00002{bottom:309.705507pt;}
.y4ea_c00002{bottom:309.705733pt;}
.y793_c00002{bottom:309.705840pt;}
.y54a_c00002{bottom:309.706027pt;}
.y7b2_c00002{bottom:309.706053pt;}
.y9e6_c00002{bottom:309.706440pt;}
.y814_c00002{bottom:309.706707pt;}
.y561_c00002{bottom:309.707760pt;}
.y738_c00002{bottom:310.399440pt;}
.y1f4_c00002{bottom:310.427373pt;}
.y20a_c00002{bottom:310.427467pt;}
.y247_c00002{bottom:310.429813pt;}
.y26d_c00002{bottom:310.481280pt;}
.y3d5_c00002{bottom:310.481813pt;}
.y228_c00002{bottom:310.482680pt;}
.y457_c00002{bottom:310.482747pt;}
.y48d_c00002{bottom:310.483280pt;}
.ydec_c00002{bottom:310.612520pt;}
.ye13_c00002{bottom:310.613187pt;}
.y1255_c00002{bottom:310.614160pt;}
.y1280_c00002{bottom:310.615093pt;}
.yd7b_c00002{bottom:310.615760pt;}
.yd97_c00002{bottom:310.617333pt;}
.ya65_c00002{bottom:311.198693pt;}
.yb6d_c00002{bottom:311.199760pt;}
.ya4b_c00002{bottom:311.199893pt;}
.y9fa_c00002{bottom:311.201867pt;}
.y19c3_c00002{bottom:311.572907pt;}
.y1ab2_c00002{bottom:311.627920pt;}
.ydc6_c00002{bottom:311.735493pt;}
.y1591_c00002{bottom:311.737360pt;}
.yd20_c00002{bottom:311.839520pt;}
.yce3_c00002{bottom:311.840000pt;}
.ycc9_c00002{bottom:311.840040pt;}
.y1015_c00002{bottom:311.840280pt;}
.yd3e_c00002{bottom:311.840413pt;}
.y50c_c00002{bottom:312.159293pt;}
.y58d_c00002{bottom:312.425600pt;}
.y5a8_c00002{bottom:312.426133pt;}
.y81b_c00002{bottom:312.427067pt;}
.y87d_c00002{bottom:312.427160pt;}
.y5d9_c00002{bottom:312.428920pt;}
.y8a6_c00002{bottom:312.430093pt;}
.y601_c00002{bottom:312.433493pt;}
.y62e_c00002{bottom:312.435493pt;}
.yd02_c00002{bottom:312.960267pt;}
.y122f_c00002{bottom:313.016267pt;}
.y33e_c00002{bottom:313.040400pt;}
.y3ae_c00002{bottom:313.042333pt;}
.y38c_c00002{bottom:313.042733pt;}
.y9e8_c00002{bottom:313.551267pt;}
.ya25_c00002{bottom:313.601133pt;}
.y35d_c00002{bottom:314.162640pt;}
.ybb0_c00002{bottom:314.347933pt;}
.yc75_c00002{bottom:314.505880pt;}
.yaf6_c00002{bottom:314.506413pt;}
.ya97_c00002{bottom:314.506667pt;}
.yb19_c00002{bottom:314.507080pt;}
.yc98_c00002{bottom:314.510280pt;}
.yb91_c00002{bottom:314.511747pt;}
.y852_c00002{bottom:314.825547pt;}
.y1334_c00002{bottom:314.829333pt;}
.y1376_c00002{bottom:314.829933pt;}
.y14a7_c00002{bottom:314.831240pt;}
.y14c2_c00002{bottom:314.831907pt;}
.y1719_c00002{bottom:314.832707pt;}
.y1578_c00002{bottom:314.833240pt;}
.y9bc_c00002{bottom:315.030280pt;}
.y970_c00002{bottom:315.041467pt;}
.y9a5_c00002{bottom:315.042547pt;}
.y98b_c00002{bottom:315.042947pt;}
.y59_c00002{bottom:315.436373pt;}
.y422_c00002{bottom:315.437307pt;}
.yb55_c00002{bottom:315.839840pt;}
.y1480_c00002{bottom:315.950027pt;}
.y1432_c00002{bottom:316.106813pt;}
.yebd_c00002{bottom:316.108627pt;}
.ye40_c00002{bottom:316.109067pt;}
.y1067_c00002{bottom:316.109160pt;}
.y1109_c00002{bottom:316.109693pt;}
.y12e4_c00002{bottom:316.109880pt;}
.y13d5_c00002{bottom:316.110000pt;}
.y10c3_c00002{bottom:316.110227pt;}
.y167f_c00002{bottom:316.110413pt;}
.ye5e_c00002{bottom:316.111200pt;}
.y15dd_c00002{bottom:316.160147pt;}
.y16df_c00002{bottom:316.161613pt;}
.y11fd_c00002{bottom:316.161827pt;}
.y1459_c00002{bottom:316.162013pt;}
.yfe3_c00002{bottom:316.162360pt;}
.y112c_c00002{bottom:316.163427pt;}
.y1094_c00002{bottom:316.163693pt;}
.y1619_c00002{bottom:316.164013pt;}
.yee9_c00002{bottom:316.164347pt;}
.y16ab_c00002{bottom:316.164413pt;}
.y10f0_c00002{bottom:316.164760pt;}
.y1151_c00002{bottom:316.165560pt;}
.y1311_c00002{bottom:316.165613pt;}
.y31e_c00002{bottom:316.716480pt;}
.y305_c00002{bottom:316.718467pt;}
.y2ae_c00002{bottom:316.718827pt;}
.y2c6_c00002{bottom:316.719333pt;}
.y1809_c00002{bottom:316.853333pt;}
.yac6_c00002{bottom:316.907213pt;}
.y100_c00002{bottom:316.984600pt;}
.y91_c00002{bottom:316.984933pt;}
.ya7_c00002{bottom:316.985333pt;}
.ye2_c00002{bottom:316.986067pt;}
.yc1_c00002{bottom:316.986160pt;}
.y1350_c00002{bottom:317.227840pt;}
.y691_c00002{bottom:317.280840pt;}
.y1402_c00002{bottom:317.281947pt;}
.ye8d_c00002{bottom:317.282800pt;}
.y12b4_c00002{bottom:317.283960pt;}
.y8cf_c00002{bottom:317.761067pt;}
.y920_c00002{bottom:317.761520pt;}
.y8f1_c00002{bottom:317.813760pt;}
.y946_c00002{bottom:317.815253pt;}
.yc56_c00002{bottom:318.560160pt;}
.y2e3_c00002{bottom:319.117867pt;}
.y177_c00002{bottom:319.493107pt;}
.y1870_c00002{bottom:320.000000pt;}
.y1adc_c00002{bottom:320.108000pt;}
.y1b20_c00002{bottom:320.428000pt;}
.y4ab_c00002{bottom:320.929493pt;}
.ybd3_c00002{bottom:321.120760pt;}
.y1b44_c00002{bottom:321.385333pt;}
.yf43_c00002{bottom:321.442453pt;}
.y174e_c00002{bottom:321.494667pt;}
.y17ea_c00002{bottom:322.131733pt;}
.y737_c00002{bottom:322.399440pt;}
.y751_c00002{bottom:322.399600pt;}
.y71a_c00002{bottom:322.401067pt;}
.y1a2a_c00002{bottom:322.829333pt;}
.y1797_c00002{bottom:323.094667pt;}
.y19c2_c00002{bottom:323.413013pt;}
.y1a29_c00002{bottom:323.789333pt;}
.y7da_c00002{bottom:324.158373pt;}
.y52a_c00002{bottom:324.158907pt;}
.y7f9_c00002{bottom:324.159107pt;}
.y4e9_c00002{bottom:324.159333pt;}
.y813_c00002{bottom:324.159373pt;}
.y792_c00002{bottom:324.159440pt;}
.y9e5_c00002{bottom:324.159507pt;}
.y549_c00002{bottom:324.159627pt;}
.y7b1_c00002{bottom:324.159653pt;}
.y2a1_c00002{bottom:324.827667pt;}
.y1f3_c00002{bottom:324.880440pt;}
.y209_c00002{bottom:324.880533pt;}
.y26c_c00002{bottom:324.881280pt;}
.y3d4_c00002{bottom:324.881813pt;}
.y246_c00002{bottom:324.882480pt;}
.y227_c00002{bottom:324.882680pt;}
.y456_c00002{bottom:324.882747pt;}
.y48c_c00002{bottom:324.883280pt;}
.ydeb_c00002{bottom:325.012520pt;}
.y1254_c00002{bottom:325.014160pt;}
.yd7a_c00002{bottom:325.015760pt;}
.yd96_c00002{bottom:325.017333pt;}
.ye12_c00002{bottom:325.065320pt;}
.y127f_c00002{bottom:325.067760pt;}
.y122e_c00002{bottom:325.068867pt;}
.y6c1_c00002{bottom:325.121267pt;}
.y660_c00002{bottom:325.122400pt;}
.ya64_c00002{bottom:325.598693pt;}
.yb6c_c00002{bottom:325.599760pt;}
.ya4a_c00002{bottom:325.599893pt;}
.y9f9_c00002{bottom:325.601867pt;}
.y1b66_c00002{bottom:326.185333pt;}
.ybaf_c00002{bottom:326.187520pt;}
.ydc5_c00002{bottom:326.188160pt;}
.y1298_c00002{bottom:326.190427pt;}
.yd1f_c00002{bottom:326.239520pt;}
.yd01_c00002{bottom:326.239960pt;}
.yce2_c00002{bottom:326.240000pt;}
.ycc8_c00002{bottom:326.240040pt;}
.y1014_c00002{bottom:326.240280pt;}
.yd3d_c00002{bottom:326.240413pt;}
.y50b_c00002{bottom:326.559293pt;}
.ya24_c00002{bottom:326.720920pt;}
.y58c_c00002{bottom:326.825600pt;}
.y5a7_c00002{bottom:326.826133pt;}
.y81a_c00002{bottom:326.827067pt;}
.y87c_c00002{bottom:326.827160pt;}
.y8a5_c00002{bottom:326.830093pt;}
.y600_c00002{bottom:326.833493pt;}
.y62d_c00002{bottom:326.835493pt;}
.y58_c00002{bottom:327.275960pt;}
.y421_c00002{bottom:327.276893pt;}
.y1c5_c00002{bottom:327.330933pt;}
.y19a_c00002{bottom:327.332133pt;}
.y142_c00002{bottom:327.333733pt;}
.yd55_c00002{bottom:327.360280pt;}
.y33d_c00002{bottom:327.440400pt;}
.y3ad_c00002{bottom:327.440733pt;}
.y38b_c00002{bottom:327.442733pt;}
.y690_c00002{bottom:327.520947pt;}
.yb54_c00002{bottom:327.679947pt;}
.yac5_c00002{bottom:328.427000pt;}
.y123_c00002{bottom:328.451733pt;}
.y35c_c00002{bottom:328.562640pt;}
.ybb9_c00002{bottom:328.906800pt;}
.yc02_c00002{bottom:328.909147pt;}
.yc25_c00002{bottom:328.909813pt;}
.y98a_c00002{bottom:328.962680pt;}
.y851_c00002{bottom:329.225547pt;}
.y1532_c00002{bottom:329.228467pt;}
.y5d8_c00002{bottom:329.228920pt;}
.y1333_c00002{bottom:329.229333pt;}
.y1375_c00002{bottom:329.229933pt;}
.yf10_c00002{bottom:329.230400pt;}
.y14a6_c00002{bottom:329.231240pt;}
.yf26_c00002{bottom:329.231467pt;}
.yf67_c00002{bottom:329.231547pt;}
.y14c1_c00002{bottom:329.231907pt;}
.y1718_c00002{bottom:329.232707pt;}
.y1577_c00002{bottom:329.233240pt;}
.y1655_c00002{bottom:329.234333pt;}
.y1398_c00002{bottom:329.234867pt;}
.y194f_c00002{bottom:329.281227pt;}
.y176_c00002{bottom:329.733213pt;}
.y1979_c00002{bottom:330.133333pt;}
.y134f_c00002{bottom:330.348147pt;}
.y147f_c00002{bottom:330.350027pt;}
.y15dc_c00002{bottom:330.558547pt;}
.y1431_c00002{bottom:330.559480pt;}
.y16de_c00002{bottom:330.560547pt;}
.yebc_c00002{bottom:330.560760pt;}
.y1066_c00002{bottom:330.561293pt;}
.yfe2_c00002{bottom:330.561827pt;}
.y12e3_c00002{bottom:330.562013pt;}
.y10c2_c00002{bottom:330.562360pt;}
.y1618_c00002{bottom:330.562413pt;}
.y167e_c00002{bottom:330.562547pt;}
.y1093_c00002{bottom:330.562627pt;}
.y112b_c00002{bottom:330.562893pt;}
.y13d4_c00002{bottom:330.563067pt;}
.ye3f_c00002{bottom:330.563200pt;}
.y16aa_c00002{bottom:330.563347pt;}
.y10ef_c00002{bottom:330.563693pt;}
.y1310_c00002{bottom:330.564013pt;}
.yee8_c00002{bottom:330.564347pt;}
.y1150_c00002{bottom:330.564493pt;}
.ye5d_c00002{bottom:330.565333pt;}
.y1b3_c00002{bottom:330.795467pt;}
.y31d_c00002{bottom:331.116480pt;}
.y304_c00002{bottom:331.118467pt;}
.y2ad_c00002{bottom:331.118827pt;}
.y2c5_c00002{bottom:331.119333pt;}
.ybd2_c00002{bottom:331.307213pt;}
.yff_c00002{bottom:331.384600pt;}
.y90_c00002{bottom:331.384933pt;}
.ya6_c00002{bottom:331.385333pt;}
.ye1_c00002{bottom:331.386067pt;}
.yc0_c00002{bottom:331.386160pt;}
.yf42_c00002{bottom:331.628387pt;}
.y1401_c00002{bottom:331.681947pt;}
.ye8c_c00002{bottom:331.682800pt;}
.y12b3_c00002{bottom:331.683960pt;}
.y11e4_c00002{bottom:331.685027pt;}
.y8f0_c00002{bottom:332.213760pt;}
.y8ce_c00002{bottom:332.214667pt;}
.y91f_c00002{bottom:332.215120pt;}
.y945_c00002{bottom:332.215253pt;}
.y4aa_c00002{bottom:332.769600pt;}
.y2e2_c00002{bottom:333.517867pt;}
.y1808_c00002{bottom:334.614667pt;}
.y1a5c_c00002{bottom:334.668267pt;}
.y19c1_c00002{bottom:335.253120pt;}
.y1a88_c00002{bottom:335.948133pt;}
.yc74_c00002{bottom:336.213213pt;}
.yaf5_c00002{bottom:336.213747pt;}
.ya96_c00002{bottom:336.214000pt;}
.y17e9_c00002{bottom:336.531733pt;}
.y2a0_c00002{bottom:336.667773pt;}
.y736_c00002{bottom:336.799440pt;}
.y750_c00002{bottom:336.799600pt;}
.y719_c00002{bottom:336.801067pt;}
.y96f_c00002{bottom:336.801333pt;}
.y9a4_c00002{bottom:336.802947pt;}
.y174d_c00002{bottom:337.654667pt;}
.ybae_c00002{bottom:338.027627pt;}
.y1a28_c00002{bottom:338.029333pt;}
.y1ab1_c00002{bottom:338.348267pt;}
.y7d9_c00002{bottom:338.558373pt;}
.y529_c00002{bottom:338.558907pt;}
.y7f8_c00002{bottom:338.559107pt;}
.y4e8_c00002{bottom:338.559333pt;}
.y791_c00002{bottom:338.559440pt;}
.y548_c00002{bottom:338.559627pt;}
.y7b0_c00002{bottom:338.559653pt;}
.yac4_c00002{bottom:338.667107pt;}
.y1a27_c00002{bottom:338.989333pt;}
.y57_c00002{bottom:339.116067pt;}
.y46f_c00002{bottom:339.117000pt;}
.y989_c00002{bottom:339.202787pt;}
.y1f2_c00002{bottom:339.280440pt;}
.y208_c00002{bottom:339.280533pt;}
.y26b_c00002{bottom:339.281280pt;}
.y3d3_c00002{bottom:339.281813pt;}
.y245_c00002{bottom:339.282480pt;}
.y226_c00002{bottom:339.282680pt;}
.y455_c00002{bottom:339.282747pt;}
.y48b_c00002{bottom:339.283280pt;}
.ydea_c00002{bottom:339.465187pt;}
.ye11_c00002{bottom:339.465320pt;}
.y1253_c00002{bottom:339.466827pt;}
.y127e_c00002{bottom:339.467760pt;}
.yd79_c00002{bottom:339.468427pt;}
.yd95_c00002{bottom:339.470000pt;}
.yb53_c00002{bottom:339.520053pt;}
.y6c0_c00002{bottom:339.521267pt;}
.y65f_c00002{bottom:339.522400pt;}
.y6ee_c00002{bottom:339.523000pt;}
.y812_c00002{bottom:339.679107pt;}
.y9e4_c00002{bottom:339.679240pt;}
.y560_c00002{bottom:339.679627pt;}
.y7d4_c00002{bottom:339.679653pt;}
.y7c9_c00002{bottom:339.679787pt;}
.y1b1f_c00002{bottom:339.788000pt;}
.ya63_c00002{bottom:339.998693pt;}
.yb6b_c00002{bottom:339.999760pt;}
.ya49_c00002{bottom:339.999893pt;}
.y9f8_c00002{bottom:340.001867pt;}
.y1003_c00002{bottom:340.587333pt;}
.y122d_c00002{bottom:340.589133pt;}
.y1297_c00002{bottom:340.590427pt;}
.yd1e_c00002{bottom:340.639520pt;}
.yd00_c00002{bottom:340.639960pt;}
.yce1_c00002{bottom:340.640000pt;}
.y1013_c00002{bottom:340.640280pt;}
.yd3c_c00002{bottom:340.640413pt;}
.y68f_c00002{bottom:340.640733pt;}
.y1b43_c00002{bottom:340.745333pt;}
.y50a_c00002{bottom:340.959293pt;}
.y194e_c00002{bottom:341.121333pt;}
.y58b_c00002{bottom:341.225600pt;}
.y5a6_c00002{bottom:341.226133pt;}
.y819_c00002{bottom:341.227067pt;}
.y87b_c00002{bottom:341.227160pt;}
.y8a4_c00002{bottom:341.230093pt;}
.y5ff_c00002{bottom:341.232960pt;}
.y62c_c00002{bottom:341.234960pt;}
.y175_c00002{bottom:341.253520pt;}
.y186f_c00002{bottom:341.332897pt;}
.ycc7_c00002{bottom:341.760307pt;}
.y33c_c00002{bottom:341.840400pt;}
.y3ac_c00002{bottom:341.840733pt;}
.y38a_c00002{bottom:341.842733pt;}
.ydc4_c00002{bottom:341.868827pt;}
.y1978_c00002{bottom:341.972803pt;}
.yc55_c00002{bottom:342.239893pt;}
.y1796_c00002{bottom:342.454667pt;}
.ya23_c00002{bottom:342.456387pt;}
.ybd1_c00002{bottom:342.827000pt;}
.y35b_c00002{bottom:342.962640pt;}
.y850_c00002{bottom:343.625547pt;}
.y1531_c00002{bottom:343.628467pt;}
.y5d7_c00002{bottom:343.628920pt;}
.y1332_c00002{bottom:343.629333pt;}
.y1374_c00002{bottom:343.629933pt;}
.yf0f_c00002{bottom:343.630400pt;}
.y14a5_c00002{bottom:343.631240pt;}
.y14c0_c00002{bottom:343.631373pt;}
.yf25_c00002{bottom:343.631467pt;}
.yf66_c00002{bottom:343.631547pt;}
.y1717_c00002{bottom:343.632707pt;}
.y1576_c00002{bottom:343.633240pt;}
.y1654_c00002{bottom:343.634333pt;}
.y104a_c00002{bottom:343.634613pt;}
.y1397_c00002{bottom:343.634867pt;}
.yf88_c00002{bottom:343.635280pt;}
.yd34_c00002{bottom:344.106413pt;}
.y4c0_c00002{bottom:344.609293pt;}
.y420_c00002{bottom:344.610227pt;}
.y134e_c00002{bottom:344.748147pt;}
.yf41_c00002{bottom:344.748693pt;}
.y147e_c00002{bottom:344.750027pt;}
.y15db_c00002{bottom:344.958547pt;}
.y1430_c00002{bottom:344.959480pt;}
.y16dd_c00002{bottom:344.960547pt;}
.yebb_c00002{bottom:344.960760pt;}
.y1065_c00002{bottom:344.961293pt;}
.yfe1_c00002{bottom:344.961827pt;}
.y12e2_c00002{bottom:344.962013pt;}
.y10c1_c00002{bottom:344.962360pt;}
.y1617_c00002{bottom:344.962413pt;}
.y167d_c00002{bottom:344.962547pt;}
.y1092_c00002{bottom:344.962627pt;}
.y112a_c00002{bottom:344.962893pt;}
.y13d3_c00002{bottom:344.963067pt;}
.ye3e_c00002{bottom:344.963200pt;}
.y16a9_c00002{bottom:344.963347pt;}
.y10ee_c00002{bottom:344.963693pt;}
.y130f_c00002{bottom:344.964013pt;}
.yee7_c00002{bottom:344.964347pt;}
.y114f_c00002{bottom:344.964493pt;}
.ye5c_c00002{bottom:344.965333pt;}
.y18e8_c00002{bottom:345.120296pt;}
.y303_c00002{bottom:345.518467pt;}
.y2ac_c00002{bottom:345.518827pt;}
.y2c4_c00002{bottom:345.519333pt;}
.y1b65_c00002{bottom:345.545333pt;}
.y31c_c00002{bottom:345.569547pt;}
.yfe_c00002{bottom:345.784600pt;}
.y8f_c00002{bottom:345.784933pt;}
.ya5_c00002{bottom:345.785333pt;}
.ye0_c00002{bottom:345.786067pt;}
.ybf_c00002{bottom:345.786160pt;}
.y1400_c00002{bottom:346.081947pt;}
.ye8b_c00002{bottom:346.082800pt;}
.y12b2_c00002{bottom:346.083960pt;}
.y11e3_c00002{bottom:346.085027pt;}
.y8ef_c00002{bottom:346.613760pt;}
.y8cd_c00002{bottom:346.614667pt;}
.y91e_c00002{bottom:346.615120pt;}
.y944_c00002{bottom:346.615253pt;}
.y19c0_c00002{bottom:347.093227pt;}
.y2e1_c00002{bottom:347.970933pt;}
.y29f_c00002{bottom:348.507880pt;}
.y199_c00002{bottom:349.040000pt;}
.y141_c00002{bottom:349.041600pt;}
.y1c4_c00002{bottom:349.090267pt;}
.y122_c00002{bottom:350.159600pt;}
.yc73_c00002{bottom:350.665880pt;}
.yaf4_c00002{bottom:350.666413pt;}
.ya95_c00002{bottom:350.666667pt;}
.yb18_c00002{bottom:350.666947pt;}
.yc01_c00002{bottom:350.669013pt;}
.yc97_c00002{bottom:350.670680pt;}
.yb90_c00002{bottom:350.672147pt;}
.y17e8_c00002{bottom:350.931733pt;}
.y56_c00002{bottom:350.956173pt;}
.y46e_c00002{bottom:350.957107pt;}
.y1a5b_c00002{bottom:350.988000pt;}
.y9bb_c00002{bottom:351.190147pt;}
.y735_c00002{bottom:351.199440pt;}
.y74f_c00002{bottom:351.199600pt;}
.y718_c00002{bottom:351.201067pt;}
.y96e_c00002{bottom:351.201333pt;}
.y988_c00002{bottom:351.202787pt;}
.y9a3_c00002{bottom:351.202947pt;}
.yb52_c00002{bottom:351.360160pt;}
.y1a25_c00002{bottom:351.469333pt;}
.y174_c00002{bottom:351.492067pt;}
.yac3_c00002{bottom:351.785333pt;}
.y14ed_c00002{bottom:352.000000pt;}
.y1a87_c00002{bottom:352.108000pt;}
.y1807_c00002{bottom:352.374667pt;}
.y1b2_c00002{bottom:352.555333pt;}
.y528_c00002{bottom:352.958907pt;}
.y7f7_c00002{bottom:352.959107pt;}
.y4e7_c00002{bottom:352.959333pt;}
.y790_c00002{bottom:352.959440pt;}
.y547_c00002{bottom:352.959627pt;}
.y7af_c00002{bottom:352.959653pt;}
.y194d_c00002{bottom:352.961440pt;}
.ybd0_c00002{bottom:353.067107pt;}
.y1a26_c00002{bottom:353.389333pt;}
.y1f1_c00002{bottom:353.680440pt;}
.y207_c00002{bottom:353.680533pt;}
.y26a_c00002{bottom:353.681280pt;}
.y3d2_c00002{bottom:353.681813pt;}
.y244_c00002{bottom:353.682480pt;}
.y225_c00002{bottom:353.682680pt;}
.y454_c00002{bottom:353.682747pt;}
.y48a_c00002{bottom:353.683280pt;}
.y174c_c00002{bottom:353.814667pt;}
.yde9_c00002{bottom:353.865187pt;}
.ye10_c00002{bottom:353.865320pt;}
.y1252_c00002{bottom:353.866827pt;}
.y127d_c00002{bottom:353.867760pt;}
.y1296_c00002{bottom:353.868027pt;}
.yd78_c00002{bottom:353.868427pt;}
.ydc3_c00002{bottom:353.868827pt;}
.yd94_c00002{bottom:353.870000pt;}
.y6bf_c00002{bottom:353.921267pt;}
.y65e_c00002{bottom:353.921333pt;}
.y6ed_c00002{bottom:353.923000pt;}
.y811_c00002{bottom:354.079107pt;}
.y9e3_c00002{bottom:354.079240pt;}
.yc54_c00002{bottom:354.080000pt;}
.y1977_c00002{bottom:354.293629pt;}
.ya62_c00002{bottom:354.452293pt;}
.yb6a_c00002{bottom:354.453360pt;}
.ya48_c00002{bottom:354.453493pt;}
.y9f7_c00002{bottom:354.455467pt;}
.ycff_c00002{bottom:354.560227pt;}
.y1ab0_c00002{bottom:354.828000pt;}
.ye1f_c00002{bottom:354.987333pt;}
.y68e_c00002{bottom:355.040733pt;}
.y509_c00002{bottom:355.359293pt;}
.y58a_c00002{bottom:355.625600pt;}
.y5a5_c00002{bottom:355.626133pt;}
.y818_c00002{bottom:355.627067pt;}
.y87a_c00002{bottom:355.627160pt;}
.y5fe_c00002{bottom:355.632960pt;}
.y84f_c00002{bottom:355.679187pt;}
.y8a3_c00002{bottom:355.683693pt;}
.y62b_c00002{bottom:355.688027pt;}
.y1782_c00002{bottom:355.779067pt;}
.y33b_c00002{bottom:356.240400pt;}
.y389_c00002{bottom:356.242733pt;}
.y3ab_c00002{bottom:356.293400pt;}
.y4bf_c00002{bottom:356.449400pt;}
.y4a9_c00002{bottom:356.449867pt;}
.y41f_c00002{bottom:356.450333pt;}
.ya22_c00002{bottom:356.856387pt;}
.y480_c00002{bottom:357.150213pt;}
.y35a_c00002{bottom:357.362640pt;}
.y1331_c00002{bottom:358.029333pt;}
.y1373_c00002{bottom:358.029933pt;}
.yf0e_c00002{bottom:358.030400pt;}
.y14a4_c00002{bottom:358.031240pt;}
.yf24_c00002{bottom:358.031467pt;}
.yf65_c00002{bottom:358.031547pt;}
.y1530_c00002{bottom:358.081533pt;}
.y5d6_c00002{bottom:358.082520pt;}
.y14bf_c00002{bottom:358.084440pt;}
.y1716_c00002{bottom:358.085373pt;}
.y1575_c00002{bottom:358.085907pt;}
.y1653_c00002{bottom:358.087400pt;}
.y1396_c00002{bottom:358.087533pt;}
.y1049_c00002{bottom:358.088213pt;}
.yf87_c00002{bottom:358.088880pt;}
.y19bf_c00002{bottom:358.933333pt;}
.y134d_c00002{bottom:359.148147pt;}
.yf40_c00002{bottom:359.148693pt;}
.y1b1e_c00002{bottom:359.149333pt;}
.y147d_c00002{bottom:359.150027pt;}
.y15da_c00002{bottom:359.358547pt;}
.y142f_c00002{bottom:359.359480pt;}
.y1458_c00002{bottom:359.360413pt;}
.y16dc_c00002{bottom:359.360547pt;}
.yeba_c00002{bottom:359.360760pt;}
.yfe0_c00002{bottom:359.361293pt;}
.y1108_c00002{bottom:359.361827pt;}
.y12e1_c00002{bottom:359.362013pt;}
.y10c0_c00002{bottom:359.362360pt;}
.y1616_c00002{bottom:359.362413pt;}
.y167c_c00002{bottom:359.362547pt;}
.y1091_c00002{bottom:359.362627pt;}
.y13d2_c00002{bottom:359.363067pt;}
.ye3d_c00002{bottom:359.363200pt;}
.y16a8_c00002{bottom:359.363347pt;}
.y10ed_c00002{bottom:359.363693pt;}
.y130e_c00002{bottom:359.364013pt;}
.yee6_c00002{bottom:359.364347pt;}
.y114e_c00002{bottom:359.364493pt;}
.ye5b_c00002{bottom:359.365333pt;}
.y18e7_c00002{bottom:359.840563pt;}
.y2e0_c00002{bottom:359.970933pt;}
.y2ab_c00002{bottom:359.970960pt;}
.y186e_c00002{bottom:359.999564pt;}
.y1b42_c00002{bottom:360.105333pt;}
.y8e_c00002{bottom:360.184933pt;}
.ya4_c00002{bottom:360.185333pt;}
.ydf_c00002{bottom:360.186067pt;}
.yfd_c00002{bottom:360.237667pt;}
.ybe_c00002{bottom:360.238827pt;}
.y3fe_c00002{bottom:360.345547pt;}
.y29e_c00002{bottom:360.347987pt;}
.y13ff_c00002{bottom:360.481947pt;}
.ye8a_c00002{bottom:360.482800pt;}
.y12b1_c00002{bottom:360.483960pt;}
.y1735_c00002{bottom:360.485480pt;}
.y8ee_c00002{bottom:360.534027pt;}
.ybad_c00002{bottom:361.707893pt;}
.y1795_c00002{bottom:361.814667pt;}
.yd1d_c00002{bottom:362.399387pt;}
.y1012_c00002{bottom:362.400147pt;}
.yd3b_c00002{bottom:362.400280pt;}
.ycc6_c00002{bottom:362.400440pt;}
.y173_c00002{bottom:363.011853pt;}
.y15b0_c00002{bottom:363.840000pt;}
.ycfe_c00002{bottom:364.800333pt;}
.y194c_c00002{bottom:364.801547pt;}
.y1b64_c00002{bottom:364.905333pt;}
.y1aff_c00002{bottom:364.909333pt;}
.yc72_c00002{bottom:365.065880pt;}
.yaf3_c00002{bottom:365.066413pt;}
.ya94_c00002{bottom:365.066667pt;}
.yb17_c00002{bottom:365.066947pt;}
.yc00_c00002{bottom:365.069013pt;}
.yc24_c00002{bottom:365.069680pt;}
.yc96_c00002{bottom:365.070680pt;}
.yb8f_c00002{bottom:365.072147pt;}
.y17e7_c00002{bottom:365.331733pt;}
.y74e_c00002{bottom:365.599600pt;}
.y717_c00002{bottom:365.601067pt;}
.y96d_c00002{bottom:365.601333pt;}
.y9a2_c00002{bottom:365.602947pt;}
.y9ba_c00002{bottom:365.642813pt;}
.y767_c00002{bottom:365.652267pt;}
.y734_c00002{bottom:365.653040pt;}
.y987_c00002{bottom:365.656387pt;}
.yd33_c00002{bottom:365.865213pt;}
.yac2_c00002{bottom:366.185333pt;}
.y527_c00002{bottom:367.358907pt;}
.y4e6_c00002{bottom:367.359333pt;}
.y78f_c00002{bottom:367.359440pt;}
.y7f6_c00002{bottom:367.412173pt;}
.y810_c00002{bottom:367.412440pt;}
.y9e2_c00002{bottom:367.412573pt;}
.y546_c00002{bottom:367.413227pt;}
.y7ae_c00002{bottom:367.413253pt;}
.y1f0_c00002{bottom:368.080440pt;}
.y206_c00002{bottom:368.080533pt;}
.y243_c00002{bottom:368.082480pt;}
.y224_c00002{bottom:368.135347pt;}
.y269_c00002{bottom:368.136480pt;}
.y3d1_c00002{bottom:368.137013pt;}
.y453_c00002{bottom:368.137947pt;}
.yde8_c00002{bottom:368.265187pt;}
.ye0f_c00002{bottom:368.265320pt;}
.ye1e_c00002{bottom:368.265453pt;}
.y1251_c00002{bottom:368.266827pt;}
.y127c_c00002{bottom:368.267760pt;}
.yd77_c00002{bottom:368.268427pt;}
.ydc2_c00002{bottom:368.268827pt;}
.yd93_c00002{bottom:368.270000pt;}
.y55_c00002{bottom:368.289507pt;}
.y4a8_c00002{bottom:368.289973pt;}
.y46d_c00002{bottom:368.290440pt;}
.y6be_c00002{bottom:368.374867pt;}
.y65d_c00002{bottom:368.374933pt;}
.y91d_c00002{bottom:368.374987pt;}
.y8cc_c00002{bottom:368.375067pt;}
.y6ec_c00002{bottom:368.375667pt;}
.ya61_c00002{bottom:368.852293pt;}
.yb69_c00002{bottom:368.852827pt;}
.ya47_c00002{bottom:368.853493pt;}
.y9f6_c00002{bottom:368.855467pt;}
.y1a5a_c00002{bottom:369.388000pt;}
.y68d_c00002{bottom:369.494333pt;}
.y508_c00002{bottom:369.812893pt;}
.y174b_c00002{bottom:369.974667pt;}
.y589_c00002{bottom:370.079733pt;}
.y879_c00002{bottom:370.080227pt;}
.y8a2_c00002{bottom:370.083693pt;}
.y5fd_c00002{bottom:370.086560pt;}
.y62a_c00002{bottom:370.088027pt;}
.y1806_c00002{bottom:370.134667pt;}
.y1a86_c00002{bottom:370.188000pt;}
.y3aa_c00002{bottom:370.693400pt;}
.y33a_c00002{bottom:370.693467pt;}
.y388_c00002{bottom:370.695800pt;}
.y8ed_c00002{bottom:370.773613pt;}
.y1c3_c00002{bottom:370.796533pt;}
.y121_c00002{bottom:370.799733pt;}
.y198_c00002{bottom:370.799867pt;}
.y140_c00002{bottom:370.801467pt;}
.ya21_c00002{bottom:371.256387pt;}
.y359_c00002{bottom:371.815707pt;}
.y3fd_c00002{bottom:372.185653pt;}
.y29d_c00002{bottom:372.188093pt;}
.y19ae_c00002{bottom:372.216000pt;}
.y1781_c00002{bottom:372.258800pt;}
.y84e_c00002{bottom:372.479720pt;}
.y5d5_c00002{bottom:372.481453pt;}
.y152f_c00002{bottom:372.481533pt;}
.y1372_c00002{bottom:372.482600pt;}
.y1330_c00002{bottom:372.482933pt;}
.y14a3_c00002{bottom:372.483907pt;}
.yf0d_c00002{bottom:372.484000pt;}
.yf64_c00002{bottom:372.484213pt;}
.y14be_c00002{bottom:372.484440pt;}
.yf23_c00002{bottom:372.485067pt;}
.y1715_c00002{bottom:372.485373pt;}
.y1574_c00002{bottom:372.485907pt;}
.y1395_c00002{bottom:372.487000pt;}
.y1048_c00002{bottom:372.487147pt;}
.y1652_c00002{bottom:372.487400pt;}
.yf86_c00002{bottom:372.487813pt;}
.y7ca_c00002{bottom:372.488200pt;}
.y7d5_c00002{bottom:372.488213pt;}
.y1aaf_c00002{bottom:373.068000pt;}
.y172_c00002{bottom:373.199360pt;}
.ybac_c00002{bottom:373.548000pt;}
.y134c_c00002{bottom:373.601747pt;}
.yf3f_c00002{bottom:373.602293pt;}
.y147c_c00002{bottom:373.603627pt;}
.y142e_c00002{bottom:373.759480pt;}
.yeb9_c00002{bottom:373.760760pt;}
.y1064_c00002{bottom:373.761293pt;}
.y1107_c00002{bottom:373.761827pt;}
.y12e0_c00002{bottom:373.762013pt;}
.y10bf_c00002{bottom:373.762360pt;}
.y167b_c00002{bottom:373.762547pt;}
.y13d1_c00002{bottom:373.763067pt;}
.ye3c_c00002{bottom:373.763200pt;}
.ye5a_c00002{bottom:373.765333pt;}
.y15d9_c00002{bottom:373.812680pt;}
.y16db_c00002{bottom:373.814147pt;}
.y11fc_c00002{bottom:373.814360pt;}
.y1457_c00002{bottom:373.814547pt;}
.yfdf_c00002{bottom:373.814893pt;}
.y11dd_c00002{bottom:373.815693pt;}
.y1129_c00002{bottom:373.815960pt;}
.y1615_c00002{bottom:373.816013pt;}
.y1090_c00002{bottom:373.816227pt;}
.y16a7_c00002{bottom:373.816947pt;}
.yee5_c00002{bottom:373.817013pt;}
.y114d_c00002{bottom:373.817160pt;}
.y10ec_c00002{bottom:373.817293pt;}
.y130d_c00002{bottom:373.817613pt;}
.y31b_c00002{bottom:374.369547pt;}
.y2df_c00002{bottom:374.370933pt;}
.y2aa_c00002{bottom:374.370960pt;}
.y302_c00002{bottom:374.371133pt;}
.y2c3_c00002{bottom:374.372000pt;}
.y8d_c00002{bottom:374.637600pt;}
.yfc_c00002{bottom:374.637667pt;}
.ya3_c00002{bottom:374.638000pt;}
.yde_c00002{bottom:374.638733pt;}
.ybd_c00002{bottom:374.638827pt;}
.y13fe_c00002{bottom:374.935013pt;}
.ye89_c00002{bottom:374.936400pt;}
.y12b0_c00002{bottom:374.937560pt;}
.y11e2_c00002{bottom:374.937693pt;}
.y1324_c00002{bottom:374.938547pt;}
.yb51_c00002{bottom:375.039893pt;}
.y14ec_c00002{bottom:375.625333pt;}
.y1190_c00002{bottom:375.680000pt;}
.y194b_c00002{bottom:376.588000pt;}
.yd1c_c00002{bottom:376.799387pt;}
.yce0_c00002{bottom:376.799867pt;}
.y1011_c00002{bottom:376.800147pt;}
.yd3a_c00002{bottom:376.800280pt;}
.ycc5_c00002{bottom:376.800440pt;}
.y1b1d_c00002{bottom:378.509333pt;}
.ycfd_c00002{bottom:379.200333pt;}
.y1b41_c00002{bottom:379.465333pt;}
.yc71_c00002{bottom:379.465880pt;}
.yaf2_c00002{bottom:379.466413pt;}
.ya93_c00002{bottom:379.466667pt;}
.yb16_c00002{bottom:379.466947pt;}
.ybff_c00002{bottom:379.469013pt;}
.yc95_c00002{bottom:379.469080pt;}
.yc23_c00002{bottom:379.469680pt;}
.yb8e_c00002{bottom:379.470547pt;}
.y17e6_c00002{bottom:379.731733pt;}
.y9b9_c00002{bottom:380.042813pt;}
.y766_c00002{bottom:380.052267pt;}
.y733_c00002{bottom:380.053040pt;}
.y74d_c00002{bottom:380.053733pt;}
.y716_c00002{bottom:380.054667pt;}
.y96c_c00002{bottom:380.054933pt;}
.y986_c00002{bottom:380.056387pt;}
.y9a1_c00002{bottom:380.056547pt;}
.y54_c00002{bottom:380.129093pt;}
.y4be_c00002{bottom:380.129133pt;}
.y46c_c00002{bottom:380.130027pt;}
.y41e_c00002{bottom:380.130067pt;}
.yd5a_c00002{bottom:380.319613pt;}
.y10b6_c00002{bottom:380.319880pt;}
.y13bf_c00002{bottom:380.320013pt;}
.y1218_c00002{bottom:380.320147pt;}
.yac1_c00002{bottom:380.585333pt;}
.y1794_c00002{bottom:381.174667pt;}
.y7f5_c00002{bottom:381.812173pt;}
.y80f_c00002{bottom:381.812440pt;}
.y526_c00002{bottom:381.812507pt;}
.y4e5_c00002{bottom:381.812933pt;}
.y55f_c00002{bottom:381.812960pt;}
.y7d3_c00002{bottom:381.812987pt;}
.y78e_c00002{bottom:381.813040pt;}
.y7c8_c00002{bottom:381.813120pt;}
.y545_c00002{bottom:381.813227pt;}
.y7ad_c00002{bottom:381.813253pt;}
.y1ef_c00002{bottom:382.533107pt;}
.y205_c00002{bottom:382.533600pt;}
.y268_c00002{bottom:382.533813pt;}
.y3d0_c00002{bottom:382.534347pt;}
.y242_c00002{bottom:382.534613pt;}
.y223_c00002{bottom:382.535347pt;}
.y452_c00002{bottom:382.537413pt;}
.yd76_c00002{bottom:382.668427pt;}
.ydc1_c00002{bottom:382.721493pt;}
.y6bd_c00002{bottom:382.774867pt;}
.y65c_c00002{bottom:382.774933pt;}
.y91c_c00002{bottom:382.774987pt;}
.y8cb_c00002{bottom:382.775067pt;}
.y943_c00002{bottom:382.775120pt;}
.y6eb_c00002{bottom:382.775667pt;}
.y9e1_c00002{bottom:382.932840pt;}
.ya60_c00002{bottom:383.252293pt;}
.yb68_c00002{bottom:383.252827pt;}
.ya46_c00002{bottom:383.253493pt;}
.y9f5_c00002{bottom:383.255467pt;}
.y68c_c00002{bottom:383.894333pt;}
.y8ec_c00002{bottom:383.896013pt;}
.y3fc_c00002{bottom:384.025760pt;}
.y29c_c00002{bottom:384.027680pt;}
.y507_c00002{bottom:384.212893pt;}
.y1b63_c00002{bottom:384.265333pt;}
.y1afe_c00002{bottom:384.269333pt;}
.y588_c00002{bottom:384.479733pt;}
.y878_c00002{bottom:384.480227pt;}
.y8a1_c00002{bottom:384.482093pt;}
.y5fc_c00002{bottom:384.486560pt;}
.y629_c00002{bottom:384.488027pt;}
.y358_c00002{bottom:384.615707pt;}
.y171_c00002{bottom:384.719667pt;}
.y186d_c00002{bottom:385.332897pt;}
.y645_c00002{bottom:385.610080pt;}
.ya20_c00002{bottom:385.656387pt;}
.y174a_c00002{bottom:386.134667pt;}
.ye04_c00002{bottom:386.184653pt;}
.y126d_c00002{bottom:386.185760pt;}
.y84d_c00002{bottom:386.879720pt;}
.yb50_c00002{bottom:386.880000pt;}
.y5d4_c00002{bottom:386.880387pt;}
.y152e_c00002{bottom:386.881533pt;}
.y1371_c00002{bottom:386.882600pt;}
.y132f_c00002{bottom:386.882933pt;}
.y14a2_c00002{bottom:386.883907pt;}
.yf0c_c00002{bottom:386.884000pt;}
.yf63_c00002{bottom:386.884213pt;}
.y14bd_c00002{bottom:386.884440pt;}
.yf22_c00002{bottom:386.885067pt;}
.y1714_c00002{bottom:386.885373pt;}
.y1573_c00002{bottom:386.885907pt;}
.y1394_c00002{bottom:386.886467pt;}
.y1047_c00002{bottom:386.887147pt;}
.y1651_c00002{bottom:386.887400pt;}
.yf85_c00002{bottom:386.887813pt;}
.y15af_c00002{bottom:387.465333pt;}
.yfba_c00002{bottom:387.520000pt;}
.y1805_c00002{bottom:387.894667pt;}
.y134b_c00002{bottom:388.001747pt;}
.yf3e_c00002{bottom:388.001760pt;}
.y147b_c00002{bottom:388.003093pt;}
.y15d8_c00002{bottom:388.212680pt;}
.y142d_c00002{bottom:388.213080pt;}
.y16da_c00002{bottom:388.214147pt;}
.y11fb_c00002{bottom:388.214360pt;}
.y1456_c00002{bottom:388.214547pt;}
.yeb8_c00002{bottom:388.214893pt;}
.y1145_c00002{bottom:388.215427pt;}
.y108f_c00002{bottom:388.215693pt;}
.y10be_c00002{bottom:388.215960pt;}
.y1614_c00002{bottom:388.216013pt;}
.y13d0_c00002{bottom:388.216133pt;}
.y12df_c00002{bottom:388.216147pt;}
.ye3b_c00002{bottom:388.216267pt;}
.y10eb_c00002{bottom:388.216760pt;}
.y16a6_c00002{bottom:388.216947pt;}
.yee4_c00002{bottom:388.217013pt;}
.y114c_c00002{bottom:388.217160pt;}
.y130c_c00002{bottom:388.217613pt;}
.ye59_c00002{bottom:388.218400pt;}
.y1780_c00002{bottom:388.739467pt;}
.y31a_c00002{bottom:388.769547pt;}
.y2a9_c00002{bottom:388.770960pt;}
.y301_c00002{bottom:388.771133pt;}
.y2c2_c00002{bottom:388.772000pt;}
.y18e9_c00002{bottom:388.800563pt;}
.y8c_c00002{bottom:389.037600pt;}
.ybc_c00002{bottom:389.038827pt;}
.y19cc_c00002{bottom:389.120000pt;}
.y1993_c00002{bottom:389.226267pt;}
.y199a_c00002{bottom:389.281867pt;}
.y13fd_c00002{bottom:389.335013pt;}
.ye88_c00002{bottom:389.336400pt;}
.y12af_c00002{bottom:389.337027pt;}
.y11e1_c00002{bottom:389.337693pt;}
.y1734_c00002{bottom:389.338547pt;}
.y1169_c00002{bottom:389.339560pt;}
.y2de_c00002{bottom:389.890267pt;}
.y193d_c00002{bottom:389.920000pt;}
.y19a4_c00002{bottom:390.986533pt;}
.yd1b_c00002{bottom:391.199387pt;}
.ycdf_c00002{bottom:391.199867pt;}
.y1010_c00002{bottom:391.200147pt;}
.yd39_c00002{bottom:391.200280pt;}
.ycfc_c00002{bottom:391.200333pt;}
.y1447_c00002{bottom:391.678280pt;}
.y4bd_c00002{bottom:391.969240pt;}
.y4a7_c00002{bottom:391.969707pt;}
.y41d_c00002{bottom:391.970173pt;}
.y102c_c00002{bottom:392.320147pt;}
.ycc4_c00002{bottom:392.320173pt;}
.y339_c00002{bottom:392.400800pt;}
.y387_c00002{bottom:392.404200pt;}
.y1c2_c00002{bottom:392.555867pt;}
.y120_c00002{bottom:392.559067pt;}
.y197_c00002{bottom:392.559733pt;}
.y13f_c00002{bottom:392.561333pt;}
.y197d_c00002{bottom:392.746400pt;}
.yc70_c00002{bottom:393.919480pt;}
.yaf1_c00002{bottom:393.920013pt;}
.ya92_c00002{bottom:393.920267pt;}
.yb15_c00002{bottom:393.921080pt;}
.ybfe_c00002{bottom:393.922613pt;}
.yc94_c00002{bottom:393.922680pt;}
.yc22_c00002{bottom:393.923813pt;}
.yb8d_c00002{bottom:393.924680pt;}
.y17e5_c00002{bottom:394.131733pt;}
.y9b8_c00002{bottom:394.442813pt;}
.y765_c00002{bottom:394.452267pt;}
.y732_c00002{bottom:394.453040pt;}
.y715_c00002{bottom:394.453600pt;}
.y74c_c00002{bottom:394.453733pt;}
.y96b_c00002{bottom:394.454933pt;}
.y985_c00002{bottom:394.456387pt;}
.y9a0_c00002{bottom:394.456547pt;}
.y357_c00002{bottom:394.803213pt;}
.y19ac_c00002{bottom:394.933333pt;}
.y170_c00002{bottom:394.959773pt;}
.yac0_c00002{bottom:395.039467pt;}
.y3fb_c00002{bottom:395.865867pt;}
.y506_c00002{bottom:396.212893pt;}
.y4e4_c00002{bottom:396.212933pt;}
.y1ee_c00002{bottom:396.452840pt;}
.y222_c00002{bottom:396.455080pt;}
.ye06_c00002{bottom:397.116920pt;}
.y126f_c00002{bottom:397.119093pt;}
.ye0e_c00002{bottom:397.119453pt;}
.y127b_c00002{bottom:397.121360pt;}
.ydc0_c00002{bottom:397.121493pt;}
.yd75_c00002{bottom:397.122027pt;}
.yd92_c00002{bottom:397.123600pt;}
.y6bc_c00002{bottom:397.174867pt;}
.y65b_c00002{bottom:397.174933pt;}
.y91b_c00002{bottom:397.174987pt;}
.y8ca_c00002{bottom:397.175067pt;}
.y942_c00002{bottom:397.175120pt;}
.y6ea_c00002{bottom:397.175667pt;}
.y186c_c00002{bottom:397.332895pt;}
.ya45_c00002{bottom:397.653493pt;}
.y9f4_c00002{bottom:397.655467pt;}
.ya5f_c00002{bottom:397.705893pt;}
.yb67_c00002{bottom:397.706960pt;}
.y1b1c_c00002{bottom:397.869333pt;}
.y68b_c00002{bottom:398.294333pt;}
.y8eb_c00002{bottom:398.296013pt;}
.y1b40_c00002{bottom:398.825333pt;}
.y587_c00002{bottom:398.879733pt;}
.y877_c00002{bottom:398.880227pt;}
.y8a0_c00002{bottom:398.882093pt;}
.y5fb_c00002{bottom:398.886560pt;}
.y628_c00002{bottom:398.888027pt;}
.y14eb_c00002{bottom:399.305333pt;}
.y118f_c00002{bottom:399.360000pt;}
.y5d3_c00002{bottom:400.000173pt;}
.ya1f_c00002{bottom:400.109053pt;}
.y1793_c00002{bottom:400.534667pt;}
.ye03_c00002{bottom:400.638253pt;}
.y126c_c00002{bottom:400.639893pt;}
.y17c6_c00002{bottom:400.749333pt;}
.y1a24_c00002{bottom:401.069333pt;}
.y11c0_c00002{bottom:401.266667pt;}
.y84c_c00002{bottom:401.279720pt;}
.y152d_c00002{bottom:401.281533pt;}
.y1370_c00002{bottom:401.282600pt;}
.y132e_c00002{bottom:401.282933pt;}
.y14a1_c00002{bottom:401.283907pt;}
.yf0b_c00002{bottom:401.284000pt;}
.yf62_c00002{bottom:401.284213pt;}
.y14bc_c00002{bottom:401.284440pt;}
.yf21_c00002{bottom:401.285067pt;}
.y1713_c00002{bottom:401.285373pt;}
.y1572_c00002{bottom:401.285907pt;}
.y1393_c00002{bottom:401.285933pt;}
.y1046_c00002{bottom:401.287147pt;}
.y1650_c00002{bottom:401.287400pt;}
.yf84_c00002{bottom:401.287813pt;}
.y1749_c00002{bottom:402.294667pt;}
.yf3d_c00002{bottom:402.401227pt;}
.y134a_c00002{bottom:402.401747pt;}
.y147a_c00002{bottom:402.402560pt;}
.y15d7_c00002{bottom:402.612680pt;}
.y142c_c00002{bottom:402.613080pt;}
.y16d9_c00002{bottom:402.614147pt;}
.y11fa_c00002{bottom:402.614360pt;}
.y1455_c00002{bottom:402.614547pt;}
.yeb7_c00002{bottom:402.614893pt;}
.y1144_c00002{bottom:402.615427pt;}
.y108e_c00002{bottom:402.615693pt;}
.y10bd_c00002{bottom:402.615960pt;}
.y1613_c00002{bottom:402.616013pt;}
.y13cf_c00002{bottom:402.616133pt;}
.y12de_c00002{bottom:402.616147pt;}
.ye3a_c00002{bottom:402.616267pt;}
.y10ea_c00002{bottom:402.616760pt;}
.y16a5_c00002{bottom:402.616947pt;}
.yee3_c00002{bottom:402.617013pt;}
.y114b_c00002{bottom:402.617160pt;}
.y130b_c00002{bottom:402.617613pt;}
.ye58_c00002{bottom:402.618400pt;}
.y4ba_c00002{bottom:403.149333pt;}
.y319_c00002{bottom:403.224747pt;}
.y2dd_c00002{bottom:403.225733pt;}
.y300_c00002{bottom:403.226333pt;}
.y2c1_c00002{bottom:403.226667pt;}
.y8b_c00002{bottom:403.437600pt;}
.yfb_c00002{bottom:403.437667pt;}
.ya2_c00002{bottom:403.438000pt;}
.ydd_c00002{bottom:403.438733pt;}
.ybb_c00002{bottom:403.438827pt;}
.y1b62_c00002{bottom:403.625333pt;}
.y18d8_c00002{bottom:403.628000pt;}
.y13fc_c00002{bottom:403.735013pt;}
.ye87_c00002{bottom:403.736400pt;}
.y12ae_c00002{bottom:403.736493pt;}
.y10a7_c00002{bottom:403.736627pt;}
.y16be_c00002{bottom:403.737880pt;}
.y1733_c00002{bottom:403.738547pt;}
.y1104_c00002{bottom:403.738760pt;}
.y1168_c00002{bottom:403.739560pt;}
.y53_c00002{bottom:403.809360pt;}
.y4a6_c00002{bottom:403.809813pt;}
.y46b_c00002{bottom:403.810293pt;}
.y2a8_c00002{bottom:404.290693pt;}
.y204_c00002{bottom:404.293467pt;}
.y267_c00002{bottom:404.293680pt;}
.y3cf_c00002{bottom:404.294213pt;}
.y241_c00002{bottom:404.295013pt;}
.y451_c00002{bottom:404.297280pt;}
.y489_c00002{bottom:404.297813pt;}
.y177f_c00002{bottom:405.219200pt;}
.yd1a_c00002{bottom:405.599387pt;}
.ycc3_c00002{bottom:405.599867pt;}
.y100f_c00002{bottom:405.653747pt;}
.yd38_c00002{bottom:405.653880pt;}
.y1804_c00002{bottom:405.654667pt;}
.y16f_c00002{bottom:406.479560pt;}
.y1ed_c00002{bottom:406.692947pt;}
.y221_c00002{bottom:406.695187pt;}
.ycfb_c00002{bottom:406.773267pt;}
.y102b_c00002{bottom:406.773747pt;}
.yd54_c00002{bottom:406.773880pt;}
.y338_c00002{bottom:406.800800pt;}
.y386_c00002{bottom:406.803667pt;}
.y1adb_c00002{bottom:406.826667pt;}
.y1923_c00002{bottom:406.828000pt;}
.y3a9_c00002{bottom:406.853800pt;}
.y18fd_c00002{bottom:406.879067pt;}
.y1904_c00002{bottom:406.932133pt;}
.yc50_c00002{bottom:406.933333pt;}
.y4b9_c00002{bottom:407.250667pt;}
.y3fa_c00002{bottom:407.650760pt;}
.y29b_c00002{bottom:407.707947pt;}
.y24e_c00002{bottom:407.761813pt;}
.y19cb_c00002{bottom:407.893333pt;}
.y1992_c00002{bottom:407.946533pt;}
.y356_c00002{bottom:407.977173pt;}
.y1999_c00002{bottom:408.001600pt;}
.yc6f_c00002{bottom:408.319480pt;}
.yaf0_c00002{bottom:408.320013pt;}
.ya91_c00002{bottom:408.320267pt;}
.yb14_c00002{bottom:408.321080pt;}
.yc93_c00002{bottom:408.322147pt;}
.ybfd_c00002{bottom:408.322613pt;}
.yb8c_c00002{bottom:408.323613pt;}
.yc21_c00002{bottom:408.323813pt;}
.y17e4_c00002{bottom:408.531733pt;}
.y190e_c00002{bottom:408.692667pt;}
.y9b7_c00002{bottom:408.842813pt;}
.y96a_c00002{bottom:408.854933pt;}
.y984_c00002{bottom:408.856387pt;}
.y99f_c00002{bottom:408.856547pt;}
.y186b_c00002{bottom:409.332892pt;}
.yabf_c00002{bottom:409.439467pt;}
.y706_c00002{bottom:409.493093pt;}
.y19a3_c00002{bottom:409.760000pt;}
.y7f4_c00002{bottom:410.612173pt;}
.y525_c00002{bottom:410.612507pt;}
.y4e3_c00002{bottom:410.612933pt;}
.y78d_c00002{bottom:410.613040pt;}
.y544_c00002{bottom:410.613227pt;}
.y7ac_c00002{bottom:410.613253pt;}
.y15ae_c00002{bottom:411.094667pt;}
.yfb9_c00002{bottom:411.145333pt;}
.y1a22_c00002{bottom:411.469333pt;}
.ye05_c00002{bottom:411.516920pt;}
.y126e_c00002{bottom:411.519093pt;}
.ye0d_c00002{bottom:411.519453pt;}
.y127a_c00002{bottom:411.521360pt;}
.ydbf_c00002{bottom:411.521493pt;}
.yd74_c00002{bottom:411.522027pt;}
.yd91_c00002{bottom:411.523600pt;}
.y6bb_c00002{bottom:411.574867pt;}
.y65a_c00002{bottom:411.574933pt;}
.y91a_c00002{bottom:411.574987pt;}
.y8c9_c00002{bottom:411.575067pt;}
.y941_c00002{bottom:411.628187pt;}
.y6e9_c00002{bottom:411.629267pt;}
.y505_c00002{bottom:411.733160pt;}
.y7c7_c00002{bottom:411.733387pt;}
.ya5e_c00002{bottom:412.105893pt;}
.ya44_c00002{bottom:412.106160pt;}
.yb66_c00002{bottom:412.106427pt;}
.y9f3_c00002{bottom:412.108133pt;}
.y18e5_c00002{bottom:412.213229pt;}
.y1916_c00002{bottom:412.588000pt;}
.y68a_c00002{bottom:412.694333pt;}
.y8ea_c00002{bottom:412.696013pt;}
.y586_c00002{bottom:413.279733pt;}
.y876_c00002{bottom:413.280227pt;}
.y5fa_c00002{bottom:413.286560pt;}
.y89f_c00002{bottom:413.335693pt;}
.y627_c00002{bottom:413.341093pt;}
.y1a1f_c00002{bottom:413.389333pt;}
.y19ab_c00002{bottom:413.653333pt;}
.y19d4_c00002{bottom:413.866267pt;}
.y1c1_c00002{bottom:414.261067pt;}
.y11f_c00002{bottom:414.266933pt;}
.y196_c00002{bottom:414.267067pt;}
.y13e_c00002{bottom:414.269200pt;}
.y1a1e_c00002{bottom:414.349333pt;}
.y5d2_c00002{bottom:414.453773pt;}
.ya1e_c00002{bottom:414.509053pt;}
.ye02_c00002{bottom:415.038253pt;}
.y126b_c00002{bottom:415.039893pt;}
.y52_c00002{bottom:415.649467pt;}
.y4bc_c00002{bottom:415.649507pt;}
.y4a5_c00002{bottom:415.649920pt;}
.y46a_c00002{bottom:415.650400pt;}
.y41c_c00002{bottom:415.650440pt;}
.y136f_c00002{bottom:415.682600pt;}
.y132d_c00002{bottom:415.682933pt;}
.y14a0_c00002{bottom:415.683907pt;}
.yf0a_c00002{bottom:415.684000pt;}
.yf61_c00002{bottom:415.684213pt;}
.yf20_c00002{bottom:415.685067pt;}
.y84b_c00002{bottom:415.733320pt;}
.y152c_c00002{bottom:415.735133pt;}
.y9de_c00002{bottom:415.736173pt;}
.y8bd_c00002{bottom:415.736200pt;}
.y14bb_c00002{bottom:415.737507pt;}
.y1712_c00002{bottom:415.738973pt;}
.y1571_c00002{bottom:415.739507pt;}
.y1392_c00002{bottom:415.740067pt;}
.y164f_c00002{bottom:415.740467pt;}
.y1045_c00002{bottom:415.740747pt;}
.yf83_c00002{bottom:415.741413pt;}
.y1a20_c00002{bottom:416.428000pt;}
.y16e_c00002{bottom:416.667067pt;}
.yf3c_c00002{bottom:416.854827pt;}
.y1349_c00002{bottom:416.855347pt;}
.y1479_c00002{bottom:416.856160pt;}
.y142b_c00002{bottom:417.013080pt;}
.yeb6_c00002{bottom:417.014893pt;}
.y1143_c00002{bottom:417.015427pt;}
.y10bc_c00002{bottom:417.015960pt;}
.y13ce_c00002{bottom:417.016133pt;}
.y12dd_c00002{bottom:417.016147pt;}
.ye39_c00002{bottom:417.016267pt;}
.ye57_c00002{bottom:417.018400pt;}
.y15d6_c00002{bottom:417.066280pt;}
.y1454_c00002{bottom:417.066680pt;}
.y16d8_c00002{bottom:417.067747pt;}
.y11f9_c00002{bottom:417.067960pt;}
.yfde_c00002{bottom:417.068493pt;}
.y11dc_c00002{bottom:417.068760pt;}
.y108d_c00002{bottom:417.069293pt;}
.y1128_c00002{bottom:417.069560pt;}
.y114a_c00002{bottom:417.069827pt;}
.y1612_c00002{bottom:417.070147pt;}
.y10e9_c00002{bottom:417.070360pt;}
.y16a4_c00002{bottom:417.070547pt;}
.yee2_c00002{bottom:417.070613pt;}
.y130a_c00002{bottom:417.071213pt;}
.y2dc_c00002{bottom:417.145467pt;}
.y1b1b_c00002{bottom:417.228000pt;}
.ya1_c00002{bottom:417.838000pt;}
.ydc_c00002{bottom:417.838733pt;}
.yfa_c00002{bottom:417.890333pt;}
.yba_c00002{bottom:417.891893pt;}
.y13fb_c00002{bottom:418.135013pt;}
.y12ad_c00002{bottom:418.135960pt;}
.ye86_c00002{bottom:418.136400pt;}
.y11e0_c00002{bottom:418.137693pt;}
.y1167_c00002{bottom:418.139560pt;}
.y1b3f_c00002{bottom:418.185333pt;}
.y1ec_c00002{bottom:418.213253pt;}
.y220_c00002{bottom:418.214973pt;}
.y1748_c00002{bottom:418.454667pt;}
.y8a_c00002{bottom:418.957333pt;}
.y3f9_c00002{bottom:419.490867pt;}
.y29a_c00002{bottom:419.548053pt;}
.y1792_c00002{bottom:419.894667pt;}
.ycc2_c00002{bottom:420.053467pt;}
.ycfa_c00002{bottom:420.053480pt;}
.y17c5_c00002{bottom:420.109333pt;}
.y337_c00002{bottom:421.253467pt;}
.y3a8_c00002{bottom:421.253800pt;}
.y385_c00002{bottom:421.256733pt;}
.y186a_c00002{bottom:421.332889pt;}
.y177e_c00002{bottom:421.699867pt;}
.y197c_c00002{bottom:422.186533pt;}
.y355_c00002{bottom:422.376107pt;}
.yc6e_c00002{bottom:422.719480pt;}
.yaef_c00002{bottom:422.720013pt;}
.ya90_c00002{bottom:422.720267pt;}
.yb13_c00002{bottom:422.721080pt;}
.yc92_c00002{bottom:422.721613pt;}
.yb8b_c00002{bottom:422.722547pt;}
.ybfc_c00002{bottom:422.722613pt;}
.yc20_c00002{bottom:422.723813pt;}
.y17e3_c00002{bottom:422.931733pt;}
.y14ea_c00002{bottom:422.934667pt;}
.y118e_c00002{bottom:422.985333pt;}
.y18d7_c00002{bottom:422.988000pt;}
.y969_c00002{bottom:423.254933pt;}
.y99e_c00002{bottom:423.256547pt;}
.y9b6_c00002{bottom:423.296413pt;}
.y983_c00002{bottom:423.309053pt;}
.y1803_c00002{bottom:423.414667pt;}
.yabe_c00002{bottom:423.839467pt;}
.y11bf_c00002{bottom:424.905333pt;}
.y318_c00002{bottom:424.929413pt;}
.y2ff_c00002{bottom:424.931000pt;}
.y2a7_c00002{bottom:424.931360pt;}
.y4e2_c00002{bottom:425.012933pt;}
.y504_c00002{bottom:425.067560pt;}
.ycb7_c00002{bottom:425.227640pt;}
.yba9_c00002{bottom:425.228573pt;}
.y1922_c00002{bottom:425.548000pt;}
.y18fc_c00002{bottom:425.652533pt;}
.y1903_c00002{bottom:425.704533pt;}
.yd73_c00002{bottom:425.762160pt;}
.y203_c00002{bottom:426.000800pt;}
.y240_c00002{bottom:426.002347pt;}
.y659_c00002{bottom:426.027600pt;}
.y6ba_c00002{bottom:426.027933pt;}
.y940_c00002{bottom:426.028187pt;}
.y919_c00002{bottom:426.028587pt;}
.y8c8_c00002{bottom:426.028667pt;}
.y6e8_c00002{bottom:426.029267pt;}
.y2c0_c00002{bottom:426.050667pt;}
.y266_c00002{bottom:426.056213pt;}
.y450_c00002{bottom:426.056613pt;}
.y3ce_c00002{bottom:426.056747pt;}
.y488_c00002{bottom:426.057680pt;}
.y9f2_c00002{bottom:426.508133pt;}
.ya1d_c00002{bottom:426.509053pt;}
.y198a_c00002{bottom:426.773467pt;}
.y430_c00002{bottom:426.828000pt;}
.y689_c00002{bottom:427.147000pt;}
.y8e9_c00002{bottom:427.148680pt;}
.y2db_c00002{bottom:427.330880pt;}
.y190d_c00002{bottom:427.412933pt;}
.y4bb_c00002{bottom:427.489613pt;}
.y4a4_c00002{bottom:427.490027pt;}
.y41b_c00002{bottom:427.490547pt;}
.y5a4_c00002{bottom:427.733333pt;}
.y585_c00002{bottom:427.733867pt;}
.y875_c00002{bottom:427.734360pt;}
.y89e_c00002{bottom:427.735693pt;}
.y5f9_c00002{bottom:427.740160pt;}
.y626_c00002{bottom:427.741093pt;}
.y74b_c00002{bottom:428.160000pt;}
.y714_c00002{bottom:428.160933pt;}
.y16d_c00002{bottom:428.187373pt;}
.y764_c00002{bottom:428.212133pt;}
.y1eb_c00002{bottom:428.400760pt;}
.y21f_c00002{bottom:428.455080pt;}
.y5d1_c00002{bottom:428.853240pt;}
.y9dd_c00002{bottom:428.857533pt;}
.y731_c00002{bottom:429.335307pt;}
.y24d_c00002{bottom:429.522213pt;}
.y84a_c00002{bottom:430.133320pt;}
.y152b_c00002{bottom:430.135133pt;}
.y132c_c00002{bottom:430.136000pt;}
.y136e_c00002{bottom:430.136200pt;}
.yf09_c00002{bottom:430.137067pt;}
.y149f_c00002{bottom:430.137507pt;}
.yf60_c00002{bottom:430.137813pt;}
.yf1f_c00002{bottom:430.138133pt;}
.y1711_c00002{bottom:430.138440pt;}
.y1570_c00002{bottom:430.139507pt;}
.y1391_c00002{bottom:430.140067pt;}
.y164e_c00002{bottom:430.140467pt;}
.y1044_c00002{bottom:430.140747pt;}
.yf82_c00002{bottom:430.140880pt;}
.y42e_c00002{bottom:430.930667pt;}
.y1aae_c00002{bottom:430.988360pt;}
.yf3b_c00002{bottom:431.254827pt;}
.y1348_c00002{bottom:431.255347pt;}
.y1478_c00002{bottom:431.256160pt;}
.y1915_c00002{bottom:431.360000pt;}
.y15d5_c00002{bottom:431.466280pt;}
.y142a_c00002{bottom:431.466680pt;}
.y16d7_c00002{bottom:431.467747pt;}
.y11f8_c00002{bottom:431.467960pt;}
.yeb5_c00002{bottom:431.468493pt;}
.y11db_c00002{bottom:431.468760pt;}
.y1142_c00002{bottom:431.469027pt;}
.y13cd_c00002{bottom:431.469200pt;}
.y108c_c00002{bottom:431.469293pt;}
.ye38_c00002{bottom:431.469333pt;}
.y10bb_c00002{bottom:431.469560pt;}
.y12dc_c00002{bottom:431.469747pt;}
.y1149_c00002{bottom:431.469827pt;}
.y1611_c00002{bottom:431.470147pt;}
.y10e8_c00002{bottom:431.470360pt;}
.y16a3_c00002{bottom:431.470547pt;}
.yee1_c00002{bottom:431.470613pt;}
.y1309_c00002{bottom:431.470680pt;}
.ye56_c00002{bottom:431.471467pt;}
.y1955_c00002{bottom:431.523067pt;}
.y19fb_c00002{bottom:431.523600pt;}
.y193a_c00002{bottom:431.524267pt;}
.yf7_c00002{bottom:432.290467pt;}
.y89_c00002{bottom:432.290667pt;}
.yb9_c00002{bottom:432.290827pt;}
.y13fa_c00002{bottom:432.588080pt;}
.y12ac_c00002{bottom:432.589027pt;}
.ye85_c00002{bottom:432.589067pt;}
.y11df_c00002{bottom:432.591293pt;}
.y1166_c00002{bottom:432.593160pt;}
.y1869_c00002{bottom:433.332889pt;}
.ycf9_c00002{bottom:433.973747pt;}
.y1747_c00002{bottom:434.614667pt;}
.y15ad_c00002{bottom:434.774667pt;}
.yfb8_c00002{bottom:434.825333pt;}
.y1ada_c00002{bottom:435.306933pt;}
.y336_c00002{bottom:435.653467pt;}
.y3a7_c00002{bottom:435.653800pt;}
.y384_c00002{bottom:435.656733pt;}
.yf4_c00002{bottom:435.810333pt;}
.y1c0_c00002{bottom:436.021467pt;}
.y11e_c00002{bottom:436.027333pt;}
.y195_c00002{bottom:436.027467pt;}
.y13d_c00002{bottom:436.029067pt;}
.ydbe_c00002{bottom:436.535493pt;}
.y1b1a_c00002{bottom:436.588000pt;}
.y354_c00002{bottom:436.775040pt;}
.y197b_c00002{bottom:436.853200pt;}
.ycb6_c00002{bottom:437.067747pt;}
.yba8_c00002{bottom:437.068680pt;}
.yc6d_c00002{bottom:437.119480pt;}
.yaee_c00002{bottom:437.120013pt;}
.ya8f_c00002{bottom:437.120267pt;}
.ybfb_c00002{bottom:437.122613pt;}
.yb12_c00002{bottom:437.174680pt;}
.yb8a_c00002{bottom:437.175213pt;}
.yc1f_c00002{bottom:437.177413pt;}
.y17e2_c00002{bottom:437.331733pt;}
.y1b3e_c00002{bottom:437.545333pt;}
.y1a59_c00002{bottom:437.547027pt;}
.yd72_c00002{bottom:437.602267pt;}
.y177d_c00002{bottom:438.180533pt;}
.yabd_c00002{bottom:438.239467pt;}
.y95d_c00002{bottom:438.345360pt;}
.y16c_c00002{bottom:438.426960pt;}
.yb4e_c00002{bottom:438.562453pt;}
.y2a6_c00002{bottom:438.850693pt;}
.y2da_c00002{bottom:438.905880pt;}
.y503_c00002{bottom:438.987827pt;}
.y1791_c00002{bottom:439.254667pt;}
.y51_c00002{bottom:439.329200pt;}
.y41a_c00002{bottom:439.330133pt;}
.y17c4_c00002{bottom:439.469333pt;}
.y1ea_c00002{bottom:440.292947pt;}
.y658_c00002{bottom:440.427600pt;}
.y6b9_c00002{bottom:440.427933pt;}
.y93f_c00002{bottom:440.428187pt;}
.y918_c00002{bottom:440.428587pt;}
.y8c7_c00002{bottom:440.428667pt;}
.y6e7_c00002{bottom:440.429267pt;}
.ya5d_c00002{bottom:440.905893pt;}
.ya43_c00002{bottom:440.906160pt;}
.yb65_c00002{bottom:440.906427pt;}
.y9f1_c00002{bottom:440.908133pt;}
.ya1c_c00002{bottom:440.909053pt;}
.y1802_c00002{bottom:441.174667pt;}
.y688_c00002{bottom:441.547000pt;}
.y8e8_c00002{bottom:441.548680pt;}
.y18e4_c00002{bottom:441.599629pt;}
.ycc1_c00002{bottom:441.759733pt;}
.y100e_c00002{bottom:441.812547pt;}
.yd37_c00002{bottom:441.813747pt;}
.y5a3_c00002{bottom:442.133333pt;}
.y584_c00002{bottom:442.133867pt;}
.y874_c00002{bottom:442.134360pt;}
.y89d_c00002{bottom:442.135693pt;}
.y5f8_c00002{bottom:442.140160pt;}
.y625_c00002{bottom:442.141093pt;}
.y1b61_c00002{bottom:442.345333pt;}
.y18d6_c00002{bottom:442.349333pt;}
.y763_c00002{bottom:442.612133pt;}
.y713_c00002{bottom:442.613600pt;}
.y1a85_c00002{bottom:442.667573pt;}
.y102a_c00002{bottom:442.880013pt;}
.yd53_c00002{bottom:442.880147pt;}
.y299_c00002{bottom:443.067787pt;}
.y3f8_c00002{bottom:443.170600pt;}
.y21e_c00002{bottom:443.174813pt;}
.y849_c00002{bottom:443.255200pt;}
.y730_c00002{bottom:443.735307pt;}
.ycf8_c00002{bottom:444.213333pt;}
.y18f4_c00002{bottom:444.479600pt;}
.y5d0_c00002{bottom:444.533507pt;}
.y152a_c00002{bottom:444.535133pt;}
.y132b_c00002{bottom:444.536000pt;}
.y136d_c00002{bottom:444.536200pt;}
.yf08_c00002{bottom:444.537067pt;}
.y149e_c00002{bottom:444.537507pt;}
.yf5f_c00002{bottom:444.537813pt;}
.yf1e_c00002{bottom:444.538133pt;}
.y1710_c00002{bottom:444.538440pt;}
.y156f_c00002{bottom:444.539507pt;}
.y1390_c00002{bottom:444.540067pt;}
.y164d_c00002{bottom:444.540467pt;}
.y1043_c00002{bottom:444.540747pt;}
.yf81_c00002{bottom:444.540880pt;}
.y19ca_c00002{bottom:444.693333pt;}
.y1991_c00002{bottom:444.746533pt;}
.y1998_c00002{bottom:444.801600pt;}
.yd32_c00002{bottom:445.279253pt;}
.y1868_c00002{bottom:445.332887pt;}
.y1a1d_c00002{bottom:445.389333pt;}
.yf3a_c00002{bottom:445.654827pt;}
.y1347_c00002{bottom:445.655347pt;}
.y1477_c00002{bottom:445.656160pt;}
.y15d4_c00002{bottom:445.866280pt;}
.y1429_c00002{bottom:445.866680pt;}
.y16d6_c00002{bottom:445.867747pt;}
.y11f7_c00002{bottom:445.867960pt;}
.yeb4_c00002{bottom:445.868493pt;}
.y11da_c00002{bottom:445.868760pt;}
.y13cc_c00002{bottom:445.869200pt;}
.y108b_c00002{bottom:445.869293pt;}
.ye37_c00002{bottom:445.869333pt;}
.y1127_c00002{bottom:445.869560pt;}
.y1610_c00002{bottom:445.869613pt;}
.y12db_c00002{bottom:445.869747pt;}
.y1148_c00002{bottom:445.869827pt;}
.y10e7_c00002{bottom:445.870360pt;}
.ye55_c00002{bottom:445.870400pt;}
.y16a2_c00002{bottom:445.870547pt;}
.yee0_c00002{bottom:445.870613pt;}
.y1308_c00002{bottom:445.870680pt;}
.yb8_c00002{bottom:446.210560pt;}
.y19a2_c00002{bottom:446.560000pt;}
.y118d_c00002{bottom:446.614667pt;}
.y317_c00002{bottom:446.689280pt;}
.y2fe_c00002{bottom:446.691400pt;}
.y7f3_c00002{bottom:446.772573pt;}
.y4e1_c00002{bottom:446.773333pt;}
.y543_c00002{bottom:446.773627pt;}
.y7ab_c00002{bottom:446.773653pt;}
.y12ab_c00002{bottom:446.989027pt;}
.ye84_c00002{bottom:446.989067pt;}
.y11de_c00002{bottom:446.991293pt;}
.y1165_c00002{bottom:446.993160pt;}
.y2bf_c00002{bottom:447.810533pt;}
.y80e_c00002{bottom:447.892707pt;}
.y55e_c00002{bottom:447.893227pt;}
.y7c6_c00002{bottom:447.893253pt;}
.y13f9_c00002{bottom:448.267813pt;}
.y11be_c00002{bottom:448.534667pt;}
.y2d9_c00002{bottom:449.090773pt;}
.y2a5_c00002{bottom:449.090800pt;}
.y502_c00002{bottom:449.175333pt;}
.y16b_c00002{bottom:449.947267pt;}
.y335_c00002{bottom:450.053467pt;}
.y3a6_c00002{bottom:450.053800pt;}
.y383_c00002{bottom:450.056733pt;}
.y7f0_c00002{bottom:450.291840pt;}
.y540_c00002{bottom:450.292373pt;}
.y7a8_c00002{bottom:450.293440pt;}
.yb4d_c00002{bottom:450.402560pt;}
.y19aa_c00002{bottom:450.453333pt;}
.y67_c00002{bottom:450.509333pt;}
.y1746_c00002{bottom:450.774667pt;}
.y202_c00002{bottom:451.013333pt;}
.y23f_c00002{bottom:451.014880pt;}
.y265_c00002{bottom:451.016080pt;}
.y44f_c00002{bottom:451.016480pt;}
.y487_c00002{bottom:451.017013pt;}
.y3cd_c00002{bottom:451.017147pt;}
.yabc_c00002{bottom:451.093107pt;}
.y50_c00002{bottom:451.169307pt;}
.y419_c00002{bottom:451.170240pt;}
.y353_c00002{bottom:451.173973pt;}
.y17e1_c00002{bottom:451.731733pt;}
.y1e9_c00002{bottom:452.132533pt;}
.yc4e_c00002{bottom:452.961107pt;}
.y21d_c00002{bottom:453.414920pt;}
.y1171_c00002{bottom:453.757600pt;}
.y1217_c00002{bottom:453.757733pt;}
.y100b_c00002{bottom:453.757827pt;}
.yfd0_c00002{bottom:453.757867pt;}
.y10ba_c00002{bottom:453.758800pt;}
.ye28_c00002{bottom:453.760000pt;}
.y154d_c00002{bottom:453.761227pt;}
.y1501_c00002{bottom:453.761893pt;}
.y1600_c00002{bottom:453.762293pt;}
.y129e_c00002{bottom:453.762427pt;}
.y1597_c00002{bottom:453.762560pt;}
.y167a_c00002{bottom:453.763493pt;}
.yf9_c00002{bottom:453.997667pt;}
.yf6_c00002{bottom:453.997800pt;}
.y88_c00002{bottom:453.998000pt;}
.y24c_c00002{bottom:454.482080pt;}
.y65_c00002{bottom:454.560000pt;}
.y177c_c00002{bottom:454.661200pt;}
.y657_c00002{bottom:454.827600pt;}
.y6b8_c00002{bottom:454.827933pt;}
.y93e_c00002{bottom:454.828187pt;}
.y917_c00002{bottom:454.828587pt;}
.y8c6_c00002{bottom:454.828667pt;}
.y6e6_c00002{bottom:454.829267pt;}
.y298_c00002{bottom:454.907893pt;}
.y3f7_c00002{bottom:455.010707pt;}
.ya42_c00002{bottom:455.306160pt;}
.y9f0_c00002{bottom:455.308133pt;}
.ya5c_c00002{bottom:455.358960pt;}
.yb64_c00002{bottom:455.359493pt;}
.y687_c00002{bottom:455.947000pt;}
.y8e7_c00002{bottom:455.948680pt;}
.y1a1b_c00002{bottom:455.949333pt;}
.y100d_c00002{bottom:456.212547pt;}
.yd19_c00002{bottom:456.212987pt;}
.ycc0_c00002{bottom:456.213333pt;}
.yd36_c00002{bottom:456.213747pt;}
.y18e3_c00002{bottom:456.319363pt;}
.ya1b_c00002{bottom:456.429320pt;}
.yb7_c00002{bottom:456.450667pt;}
.y5a2_c00002{bottom:456.533333pt;}
.y5cf_c00002{bottom:456.533507pt;}
.y583_c00002{bottom:456.533867pt;}
.y873_c00002{bottom:456.534360pt;}
.y89c_c00002{bottom:456.535693pt;}
.y5f7_c00002{bottom:456.540693pt;}
.y624_c00002{bottom:456.541093pt;}
.y1b3d_c00002{bottom:456.905333pt;}
.y9b5_c00002{bottom:457.002680pt;}
.y762_c00002{bottom:457.012133pt;}
.y712_c00002{bottom:457.013600pt;}
.y968_c00002{bottom:457.015333pt;}
.y99d_c00002{bottom:457.016413pt;}
.y1867_c00002{bottom:457.332884pt;}
.yf3_c00002{bottom:457.518733pt;}
.y848_c00002{bottom:457.655200pt;}
.y644_c00002{bottom:457.663680pt;}
.y11d_c00002{bottom:457.732533pt;}
.y194_c00002{bottom:457.732667pt;}
.y13c_c00002{bottom:457.734267pt;}
.y1bf_c00002{bottom:457.781867pt;}
.y1a19_c00002{bottom:458.029333pt;}
.y982_c00002{bottom:458.135053pt;}
.y72f_c00002{bottom:458.135307pt;}
.y1aad_c00002{bottom:458.348227pt;}
.y15ac_c00002{bottom:458.400000pt;}
.yfb7_c00002{bottom:458.454667pt;}
.y1790_c00002{bottom:458.614667pt;}
.y17c3_c00002{bottom:458.828000pt;}
.yc6c_c00002{bottom:458.879880pt;}
.yaed_c00002{bottom:458.880413pt;}
.ya8e_c00002{bottom:458.880667pt;}
.ybfa_c00002{bottom:458.883013pt;}
.y1801_c00002{bottom:458.934667pt;}
.y1529_c00002{bottom:458.935133pt;}
.y132a_c00002{bottom:458.936000pt;}
.y136c_c00002{bottom:458.936200pt;}
.yf07_c00002{bottom:458.937067pt;}
.y149d_c00002{bottom:458.937507pt;}
.yf5e_c00002{bottom:458.937813pt;}
.yf1d_c00002{bottom:458.938133pt;}
.y170f_c00002{bottom:458.938440pt;}
.y156e_c00002{bottom:458.939507pt;}
.y138f_c00002{bottom:458.940067pt;}
.y164c_c00002{bottom:458.940467pt;}
.y1042_c00002{bottom:458.940747pt;}
.yf80_c00002{bottom:458.940880pt;}
.y1a18_c00002{bottom:458.989333pt;}
.y13f8_c00002{bottom:459.788120pt;}
.yf39_c00002{bottom:460.054827pt;}
.y1346_c00002{bottom:460.055347pt;}
.y1476_c00002{bottom:460.056160pt;}
.y16a_c00002{bottom:460.187373pt;}
.y11f6_c00002{bottom:460.267960pt;}
.yeb3_c00002{bottom:460.268493pt;}
.y11d9_c00002{bottom:460.268760pt;}
.y108a_c00002{bottom:460.269293pt;}
.ye36_c00002{bottom:460.269333pt;}
.y1126_c00002{bottom:460.269560pt;}
.y160f_c00002{bottom:460.269613pt;}
.y12da_c00002{bottom:460.269747pt;}
.y1147_c00002{bottom:460.269827pt;}
.y1307_c00002{bottom:460.270147pt;}
.y10e6_c00002{bottom:460.270360pt;}
.y16a1_c00002{bottom:460.270547pt;}
.yedf_c00002{bottom:460.270613pt;}
.y2d8_c00002{bottom:460.610560pt;}
.ycb5_c00002{bottom:460.748013pt;}
.yba7_c00002{bottom:460.748947pt;}
.y7f2_c00002{bottom:461.172573pt;}
.y524_c00002{bottom:461.172907pt;}
.y4e0_c00002{bottom:461.173333pt;}
.y78c_c00002{bottom:461.173440pt;}
.y542_c00002{bottom:461.173627pt;}
.y7aa_c00002{bottom:461.173653pt;}
.y501_c00002{bottom:461.175333pt;}
.yabb_c00002{bottom:461.279040pt;}
.ye83_c00002{bottom:461.389067pt;}
.y1675_c00002{bottom:461.393213pt;}
.y1b60_c00002{bottom:461.705333pt;}
.y18d5_c00002{bottom:461.709333pt;}
.y1921_c00002{bottom:462.348000pt;}
.y18fb_c00002{bottom:462.398933pt;}
.y1902_c00002{bottom:462.451867pt;}
.y12aa_c00002{bottom:462.668760pt;}
.y1a1a_c00002{bottom:462.989333pt;}
.y4f_c00002{bottom:463.009413pt;}
.y418_c00002{bottom:463.010347pt;}
.y19c9_c00002{bottom:463.413333pt;}
.y1990_c00002{bottom:463.466267pt;}
.y1997_c00002{bottom:463.575600pt;}
.y1ad9_c00002{bottom:463.787200pt;}
.y190c_c00002{bottom:464.212933pt;}
.y334_c00002{bottom:464.453467pt;}
.y382_c00002{bottom:464.456733pt;}
.y3a5_c00002{bottom:464.509000pt;}
.y1a58_c00002{bottom:464.587160pt;}
.yc4d_c00002{bottom:464.801213pt;}
.y21c_c00002{bottom:464.935227pt;}
.y19a1_c00002{bottom:465.280267pt;}
.y352_c00002{bottom:465.628640pt;}
.y17e0_c00002{bottom:466.131733pt;}
.y197a_c00002{bottom:466.293333pt;}
.y297_c00002{bottom:466.748000pt;}
.y1745_c00002{bottom:466.934667pt;}
.y1428_c00002{bottom:467.573480pt;}
.y13cb_c00002{bottom:467.576533pt;}
.y1914_c00002{bottom:468.160000pt;}
.yf8_c00002{bottom:468.450333pt;}
.yf5_c00002{bottom:468.450467pt;}
.y87_c00002{bottom:468.450667pt;}
.yc51_c00002{bottom:468.745333pt;}
.y656_c00002{bottom:469.227600pt;}
.y6b7_c00002{bottom:469.227933pt;}
.y19a9_c00002{bottom:469.228000pt;}
.y916_c00002{bottom:469.228587pt;}
.y8c5_c00002{bottom:469.228667pt;}
.y93d_c00002{bottom:469.281253pt;}
.y6e5_c00002{bottom:469.281933pt;}
.y1866_c00002{bottom:469.332881pt;}
.y19d3_c00002{bottom:469.386533pt;}
.y1a84_c00002{bottom:469.547840pt;}
.ya5b_c00002{bottom:469.758427pt;}
.yb63_c00002{bottom:469.758960pt;}
.ya41_c00002{bottom:469.759760pt;}
.ya1a_c00002{bottom:469.761093pt;}
.ya09_c00002{bottom:469.761733pt;}
.y13f7_c00002{bottom:470.028227pt;}
.y14e9_c00002{bottom:470.240000pt;}
.y118c_c00002{bottom:470.294667pt;}
.y686_c00002{bottom:470.347000pt;}
.y8e6_c00002{bottom:470.348680pt;}
.y100c_c00002{bottom:470.612547pt;}
.yd18_c00002{bottom:470.612987pt;}
.ycbf_c00002{bottom:470.613333pt;}
.yd35_c00002{bottom:470.613747pt;}
.y9ef_c00002{bottom:470.828400pt;}
.y2d7_c00002{bottom:470.850667pt;}
.y582_c00002{bottom:470.933867pt;}
.y872_c00002{bottom:470.934360pt;}
.y5f6_c00002{bottom:470.940160pt;}
.y89b_c00002{bottom:470.988360pt;}
.y623_c00002{bottom:470.994160pt;}
.y177b_c00002{bottom:471.141467pt;}
.y9b4_c00002{bottom:471.402680pt;}
.y761_c00002{bottom:471.412133pt;}
.y711_c00002{bottom:471.413600pt;}
.y967_c00002{bottom:471.415333pt;}
.y99c_c00002{bottom:471.416413pt;}
.y169_c00002{bottom:471.707160pt;}
.y316_c00002{bottom:471.916333pt;}
.yf2_c00002{bottom:471.918200pt;}
.y847_c00002{bottom:472.107867pt;}
.y5ce_c00002{bottom:472.108973pt;}
.y643_c00002{bottom:472.117813pt;}
.y11bd_c00002{bottom:472.214667pt;}
.y981_c00002{bottom:472.535053pt;}
.y72e_c00002{bottom:472.535307pt;}
.ycb4_c00002{bottom:472.588120pt;}
.yba6_c00002{bottom:472.589053pt;}
.y201_c00002{bottom:472.721733pt;}
.y23e_c00002{bottom:472.722747pt;}
.y3cc_c00002{bottom:472.775547pt;}
.y264_c00002{bottom:472.776480pt;}
.y44e_c00002{bottom:472.776880pt;}
.y1a17_c00002{bottom:472.909067pt;}
.yc6b_c00002{bottom:473.279880pt;}
.yaec_c00002{bottom:473.280413pt;}
.ya8d_c00002{bottom:473.280667pt;}
.yb11_c00002{bottom:473.280947pt;}
.yc91_c00002{bottom:473.281480pt;}
.yb89_c00002{bottom:473.282547pt;}
.ybf9_c00002{bottom:473.283013pt;}
.yc1e_c00002{bottom:473.283680pt;}
.y1528_c00002{bottom:473.388733pt;}
.y136b_c00002{bottom:473.388867pt;}
.y1329_c00002{bottom:473.389067pt;}
.yf06_c00002{bottom:473.390133pt;}
.y149c_c00002{bottom:473.390173pt;}
.y14ba_c00002{bottom:473.391107pt;}
.yf1c_c00002{bottom:473.391200pt;}
.yf5d_c00002{bottom:473.391413pt;}
.y170e_c00002{bottom:473.392040pt;}
.y156d_c00002{bottom:473.392573pt;}
.y138e_c00002{bottom:473.393667pt;}
.y164b_c00002{bottom:473.394067pt;}
.y1041_c00002{bottom:473.394347pt;}
.yf7f_c00002{bottom:473.394480pt;}
.ydbd_c00002{bottom:473.495360pt;}
.y1e8_c00002{bottom:473.840933pt;}
.yb4c_c00002{bottom:474.082827pt;}
.y12a9_c00002{bottom:474.189067pt;}
.yaba_c00002{bottom:474.400920pt;}
.yf38_c00002{bottom:474.507893pt;}
.y1345_c00002{bottom:474.508413pt;}
.y1475_c00002{bottom:474.508827pt;}
.ye35_c00002{bottom:474.668267pt;}
.yeb2_c00002{bottom:474.668493pt;}
.y11f5_c00002{bottom:474.720627pt;}
.y11d8_c00002{bottom:474.721427pt;}
.yfdd_c00002{bottom:474.721560pt;}
.y1089_c00002{bottom:474.721960pt;}
.y1146_c00002{bottom:474.722493pt;}
.y1125_c00002{bottom:474.722627pt;}
.y10e5_c00002{bottom:474.723027pt;}
.yede_c00002{bottom:474.723280pt;}
.y4e_c00002{bottom:474.849520pt;}
.y417_c00002{bottom:474.850453pt;}
.y21b_c00002{bottom:475.175333pt;}
.y1b19_c00002{bottom:475.309333pt;}
.y4df_c00002{bottom:475.573333pt;}
.y523_c00002{bottom:475.573440pt;}
.y7f1_c00002{bottom:475.625640pt;}
.y541_c00002{bottom:475.626293pt;}
.y7a9_c00002{bottom:475.626320pt;}
.y500_c00002{bottom:475.628000pt;}
.y1103_c00002{bottom:475.792360pt;}
.y113f_c00002{bottom:475.792627pt;}
.y1164_c00002{bottom:475.793160pt;}
.y24b_c00002{bottom:476.241947pt;}
.y1b3c_c00002{bottom:476.265333pt;}
.y1800_c00002{bottom:476.694667pt;}
.ye82_c00002{bottom:477.122933pt;}
.y178f_c00002{bottom:477.974667pt;}
.y17c2_c00002{bottom:478.188000pt;}
.y3f6_c00002{bottom:478.530973pt;}
.y333_c00002{bottom:478.908667pt;}
.y3a4_c00002{bottom:478.909000pt;}
.y381_c00002{bottom:478.911400pt;}
.y1be_c00002{bottom:479.489733pt;}
.y11c_c00002{bottom:479.492400pt;}
.y193_c00002{bottom:479.492533pt;}
.y13b_c00002{bottom:479.494133pt;}
.y351_c00002{bottom:480.028640pt;}
.y17df_c00002{bottom:480.531733pt;}
.y1b5f_c00002{bottom:481.065333pt;}
.y18d4_c00002{bottom:481.069333pt;}
.y1920_c00002{bottom:481.120000pt;}
.y18fa_c00002{bottom:481.172933pt;}
.y1901_c00002{bottom:481.225333pt;}
.yde7_c00002{bottom:481.278787pt;}
.y1250_c00002{bottom:481.280427pt;}
.yd71_c00002{bottom:481.284000pt;}
.y1865_c00002{bottom:481.332881pt;}
.y168_c00002{bottom:481.892053pt;}
.y15aa_c00002{bottom:482.025333pt;}
.y15d3_c00002{bottom:482.026147pt;}
.y1427_c00002{bottom:482.026547pt;}
.y16d5_c00002{bottom:482.027613pt;}
.y129f_c00002{bottom:482.028133pt;}
.y1453_c00002{bottom:482.028147pt;}
.y13ca_c00002{bottom:482.029200pt;}
.y12d9_c00002{bottom:482.029613pt;}
.yfb6_c00002{bottom:482.134667pt;}
.y19c8_c00002{bottom:482.188000pt;}
.y198f_c00002{bottom:482.240267pt;}
.y1996_c00002{bottom:482.295333pt;}
.y86_c00002{bottom:482.850667pt;}
.y190b_c00002{bottom:482.985333pt;}
.y1744_c00002{bottom:483.094667pt;}
.y13f6_c00002{bottom:483.145933pt;}
.ya19_c00002{bottom:483.680427pt;}
.y6b6_c00002{bottom:483.681000pt;}
.y655_c00002{bottom:483.681200pt;}
.y915_c00002{bottom:483.681253pt;}
.y6e4_c00002{bottom:483.681933pt;}
.y8c4_c00002{bottom:483.682267pt;}
.ydbc_c00002{bottom:483.735467pt;}
.y19a0_c00002{bottom:484.053733pt;}
.y12a8_c00002{bottom:484.429173pt;}
.y685_c00002{bottom:484.800600pt;}
.y8e5_c00002{bottom:484.802280pt;}
.y581_c00002{bottom:485.386000pt;}
.y871_c00002{bottom:485.386493pt;}
.y5cd_c00002{bottom:485.387093pt;}
.y89a_c00002{bottom:485.388360pt;}
.y5f5_c00002{bottom:485.392827pt;}
.y622_c00002{bottom:485.394160pt;}
.y642_c00002{bottom:485.398027pt;}
.y1aac_c00002{bottom:485.708093pt;}
.y18e2_c00002{bottom:485.759496pt;}
.y9b3_c00002{bottom:485.856280pt;}
.y760_c00002{bottom:485.866267pt;}
.y74a_c00002{bottom:485.866667pt;}
.y710_c00002{bottom:485.867733pt;}
.y966_c00002{bottom:485.868933pt;}
.y99b_c00002{bottom:485.870013pt;}
.yb4b_c00002{bottom:485.922413pt;}
.y4d_c00002{bottom:486.637013pt;}
.y416_c00002{bottom:486.637947pt;}
.y1913_c00002{bottom:486.880000pt;}
.y980_c00002{bottom:486.987720pt;}
.y72d_c00002{bottom:486.987973pt;}
.y19fa_c00002{bottom:487.096533pt;}
.y1939_c00002{bottom:487.096667pt;}
.y1954_c00002{bottom:487.097067pt;}
.y3cb_c00002{bottom:487.173413pt;}
.y263_c00002{bottom:487.173813pt;}
.y1e7_c00002{bottom:487.174267pt;}
.y200_c00002{bottom:487.174400pt;}
.y23d_c00002{bottom:487.174880pt;}
.y21a_c00002{bottom:487.175333pt;}
.y44d_c00002{bottom:487.176880pt;}
.y177a_c00002{bottom:487.622133pt;}
.y1a16_c00002{bottom:487.629333pt;}
.yc6a_c00002{bottom:487.679880pt;}
.yaeb_c00002{bottom:487.680413pt;}
.ya8c_c00002{bottom:487.680667pt;}
.ybf8_c00002{bottom:487.683013pt;}
.yb10_c00002{bottom:487.734547pt;}
.yc90_c00002{bottom:487.735080pt;}
.yb88_c00002{bottom:487.735213pt;}
.yc1d_c00002{bottom:487.737280pt;}
.y846_c00002{bottom:487.788533pt;}
.y1527_c00002{bottom:487.788733pt;}
.y136a_c00002{bottom:487.788867pt;}
.y1328_c00002{bottom:487.789067pt;}
.yf05_c00002{bottom:487.790133pt;}
.y149b_c00002{bottom:487.790173pt;}
.y14b9_c00002{bottom:487.791107pt;}
.yf5c_c00002{bottom:487.791413pt;}
.y170d_c00002{bottom:487.792040pt;}
.y156c_c00002{bottom:487.792573pt;}
.y138d_c00002{bottom:487.793667pt;}
.y164a_c00002{bottom:487.794067pt;}
.y1040_c00002{bottom:487.794347pt;}
.yf7e_c00002{bottom:487.794480pt;}
.yd5b_c00002{bottom:487.839880pt;}
.y10b7_c00002{bottom:487.840147pt;}
.y13c0_c00002{bottom:487.840280pt;}
.y1219_c00002{bottom:487.840413pt;}
.y19a8_c00002{bottom:487.948000pt;}
.y19d2_c00002{bottom:488.160000pt;}
.yc4c_c00002{bottom:488.481480pt;}
.ye81_c00002{bottom:488.642720pt;}
.yab9_c00002{bottom:488.855053pt;}
.yf37_c00002{bottom:488.907893pt;}
.y1344_c00002{bottom:488.908413pt;}
.ybaa_c00002{bottom:489.225333pt;}
.y1474_c00002{bottom:490.189093pt;}
.y3f5_c00002{bottom:490.370560pt;}
.y4de_c00002{bottom:490.666797pt;}
.y14cd_c00002{bottom:491.313640pt;}
.y1583_c00002{bottom:491.314173pt;}
.y1724_c00002{bottom:491.315773pt;}
.ya5a_c00002{bottom:491.465227pt;}
.yb62_c00002{bottom:491.465760pt;}
.y9ee_c00002{bottom:491.468000pt;}
.y1a57_c00002{bottom:491.627827pt;}
.y1ad8_c00002{bottom:492.266933pt;}
.y332_c00002{bottom:493.308667pt;}
.y3a3_c00002{bottom:493.309000pt;}
.y380_c00002{bottom:493.310867pt;}
.y1864_c00002{bottom:493.332879pt;}
.y167_c00002{bottom:493.412360pt;}
.y14e7_c00002{bottom:493.865333pt;}
.ya18_c00002{bottom:493.866360pt;}
.y118b_c00002{bottom:493.920000pt;}
.y350_c00002{bottom:494.428640pt;}
.y17ff_c00002{bottom:494.454667pt;}
.y1b18_c00002{bottom:494.669333pt;}
.y17de_c00002{bottom:494.931733pt;}
.ydbb_c00002{bottom:495.255253pt;}
.y1b3b_c00002{bottom:495.625333pt;}
.y11bc_c00002{bottom:495.840000pt;}
.ycb3_c00002{bottom:496.215720pt;}
.yba5_c00002{bottom:496.216653pt;}
.y15d2_c00002{bottom:496.426147pt;}
.y1426_c00002{bottom:496.426547pt;}
.y1452_c00002{bottom:496.427080pt;}
.y1a83_c00002{bottom:496.427573pt;}
.y16d4_c00002{bottom:496.427613pt;}
.yeb1_c00002{bottom:496.427827pt;}
.ye34_c00002{bottom:496.428133pt;}
.y13c9_c00002{bottom:496.429200pt;}
.y160e_c00002{bottom:496.429480pt;}
.y12d8_c00002{bottom:496.429613pt;}
.y1306_c00002{bottom:496.430547pt;}
.y16a0_c00002{bottom:496.430947pt;}
.y178d_c00002{bottom:497.334667pt;}
.y13f5_c00002{bottom:497.545933pt;}
.y12a7_c00002{bottom:497.548960pt;}
.y17c1_c00002{bottom:497.549333pt;}
.y6b5_c00002{bottom:498.081000pt;}
.y654_c00002{bottom:498.081200pt;}
.y914_c00002{bottom:498.081253pt;}
.y6e3_c00002{bottom:498.081933pt;}
.y8c3_c00002{bottom:498.082267pt;}
.y1837_c00002{bottom:498.185333pt;}
.y4c_c00002{bottom:498.477120pt;}
.y415_c00002{bottom:498.478053pt;}
.ye80_c00002{bottom:498.829173pt;}
.y684_c00002{bottom:499.200600pt;}
.y8e4_c00002{bottom:499.202280pt;}
.y1742_c00002{bottom:499.254667pt;}
.y580_c00002{bottom:499.786000pt;}
.y870_c00002{bottom:499.786493pt;}
.y5cc_c00002{bottom:499.787093pt;}
.y899_c00002{bottom:499.788360pt;}
.y845_c00002{bottom:499.788533pt;}
.y191f_c00002{bottom:499.840000pt;}
.y18f9_c00002{bottom:499.892667pt;}
.y1900_c00002{bottom:499.998800pt;}
.y110_c00002{bottom:500.076200pt;}
.y32f_c00002{bottom:500.076613pt;}
.y9b2_c00002{bottom:500.256280pt;}
.y70f_c00002{bottom:500.266133pt;}
.y75f_c00002{bottom:500.266267pt;}
.y749_c00002{bottom:500.266667pt;}
.y99a_c00002{bottom:500.270013pt;}
.yc4b_c00002{bottom:500.321587pt;}
.y1b5e_c00002{bottom:500.425333pt;}
.y18d3_c00002{bottom:500.428000pt;}
.y19c7_c00002{bottom:500.908000pt;}
.y8bc_c00002{bottom:500.911667pt;}
.y198e_c00002{bottom:501.013733pt;}
.y1995_c00002{bottom:501.068267pt;}
.y1bd_c00002{bottom:501.248533pt;}
.y11b_c00002{bottom:501.252267pt;}
.y192_c00002{bottom:501.252400pt;}
.y13a_c00002{bottom:501.254000pt;}
.y97f_c00002{bottom:501.387187pt;}
.y72c_c00002{bottom:501.387973pt;}
.y197e_c00002{bottom:501.493733pt;}
.y262_c00002{bottom:501.573280pt;}
.y3ca_c00002{bottom:501.573413pt;}
.y1e6_c00002{bottom:501.574267pt;}
.y1ff_c00002{bottom:501.574400pt;}
.y23c_c00002{bottom:501.574880pt;}
.y219_c00002{bottom:501.575333pt;}
.y44c_c00002{bottom:501.576880pt;}
.y190a_c00002{bottom:501.705067pt;}
.yc69_c00002{bottom:502.133480pt;}
.yaea_c00002{bottom:502.134013pt;}
.ya8b_c00002{bottom:502.134267pt;}
.yb0f_c00002{bottom:502.134547pt;}
.yc8f_c00002{bottom:502.135080pt;}
.yb87_c00002{bottom:502.135213pt;}
.ybf7_c00002{bottom:502.136613pt;}
.yc1c_c00002{bottom:502.137280pt;}
.y1526_c00002{bottom:502.188733pt;}
.y1369_c00002{bottom:502.188867pt;}
.yf04_c00002{bottom:502.189067pt;}
.yf5b_c00002{bottom:502.191413pt;}
.y138c_c00002{bottom:502.193667pt;}
.y1649_c00002{bottom:502.194067pt;}
.y103f_c00002{bottom:502.194347pt;}
.yf7d_c00002{bottom:502.194480pt;}
.y3f4_c00002{bottom:502.210667pt;}
.yb4f_c00002{bottom:502.560000pt;}
.y199f_c00002{bottom:502.774000pt;}
.yde6_c00002{bottom:503.039187pt;}
.y124f_c00002{bottom:503.040827pt;}
.y1279_c00002{bottom:503.041627pt;}
.yd70_c00002{bottom:503.042800pt;}
.yab8_c00002{bottom:503.255053pt;}
.yf36_c00002{bottom:503.307893pt;}
.y618_c00002{bottom:503.315093pt;}
.y166_c00002{bottom:503.652467pt;}
.y1779_c00002{bottom:504.102400pt;}
.y1343_c00002{bottom:504.588680pt;}
.y15fa_c00002{bottom:505.013333pt;}
.y158e_c00002{bottom:505.015720pt;}
.y14d9_c00002{bottom:505.016027pt;}
.y159f_c00002{bottom:505.016133pt;}
.y1730_c00002{bottom:505.018267pt;}
.y1863_c00002{bottom:505.332876pt;}
.ydba_c00002{bottom:505.441707pt;}
.y1912_c00002{bottom:505.653333pt;}
.y153d_c00002{bottom:505.711533pt;}
.y13a3_c00002{bottom:505.715800pt;}
.y165a_c00002{bottom:505.717400pt;}
.yfb5_c00002{bottom:505.760000pt;}
.y19f9_c00002{bottom:505.815867pt;}
.y1938_c00002{bottom:505.816400pt;}
.y1953_c00002{bottom:505.816800pt;}
.y9ed_c00002{bottom:505.868000pt;}
.ya17_c00002{bottom:505.920000pt;}
.y19a7_c00002{bottom:506.720000pt;}
.y19d1_c00002{bottom:506.880267pt;}
.y331_c00002{bottom:507.708667pt;}
.y3a2_c00002{bottom:507.709000pt;}
.y37f_c00002{bottom:507.710333pt;}
.ybb7_c00002{bottom:507.785333pt;}
.ycb2_c00002{bottom:508.055307pt;}
.yba4_c00002{bottom:508.056240pt;}
.y34f_c00002{bottom:508.828640pt;}
.y17dd_c00002{bottom:509.331733pt;}
.yb4a_c00002{bottom:509.548947pt;}
.ycbe_c00002{bottom:509.973584pt;}
.y15d1_c00002{bottom:510.826147pt;}
.y1425_c00002{bottom:510.826547pt;}
.y1451_c00002{bottom:510.827080pt;}
.y16d3_c00002{bottom:510.827613pt;}
.yeb0_c00002{bottom:510.827827pt;}
.ye33_c00002{bottom:510.828133pt;}
.y11f4_c00002{bottom:510.828493pt;}
.y12d7_c00002{bottom:510.828547pt;}
.y13c8_c00002{bottom:510.829200pt;}
.yfdc_c00002{bottom:510.829427pt;}
.y160d_c00002{bottom:510.829480pt;}
.y11d7_c00002{bottom:510.829827pt;}
.y1305_c00002{bottom:510.830013pt;}
.y1088_c00002{bottom:510.830360pt;}
.y1124_c00002{bottom:510.830493pt;}
.yedd_c00002{bottom:510.830613pt;}
.y169f_c00002{bottom:510.830947pt;}
.y10e4_c00002{bottom:510.831427pt;}
.y4dd_c00002{bottom:511.200131pt;}
.y18b7_c00002{bottom:511.785333pt;}
.ybb6_c00002{bottom:511.894667pt;}
.y13f4_c00002{bottom:511.945933pt;}
.ye7f_c00002{bottom:511.948960pt;}
.y17fd_c00002{bottom:512.214667pt;}
.y6b4_c00002{bottom:512.481000pt;}
.y653_c00002{bottom:512.481200pt;}
.y913_c00002{bottom:512.481253pt;}
.y6e2_c00002{bottom:512.481933pt;}
.y1aab_c00002{bottom:513.068053pt;}
.y683_c00002{bottom:513.600600pt;}
.y8e3_c00002{bottom:513.602280pt;}
.y1b17_c00002{bottom:514.028000pt;}
.y57f_c00002{bottom:514.186000pt;}
.y86f_c00002{bottom:514.186493pt;}
.y5cb_c00002{bottom:514.187093pt;}
.y898_c00002{bottom:514.188360pt;}
.y621_c00002{bottom:514.194160pt;}
.y61a_c00002{bottom:514.194827pt;}
.y9b1_c00002{bottom:514.656280pt;}
.y70e_c00002{bottom:514.666133pt;}
.y75e_c00002{bottom:514.666267pt;}
.y748_c00002{bottom:514.666667pt;}
.y999_c00002{bottom:514.670013pt;}
.y1b3a_c00002{bottom:514.985333pt;}
.y844_c00002{bottom:515.307867pt;}
.y8bb_c00002{bottom:515.311667pt;}
.y1741_c00002{bottom:515.414667pt;}
.y11a_c00002{bottom:515.492400pt;}
.y97e_c00002{bottom:515.786653pt;}
.y72b_c00002{bottom:515.787973pt;}
.y4b_c00002{bottom:515.968320pt;}
.y3d_c00002{bottom:515.968853pt;}
.y414_c00002{bottom:515.969253pt;}
.y40a_c00002{bottom:515.969787pt;}
.y21_c00002{bottom:515.970667pt;}
.y261_c00002{bottom:515.972747pt;}
.y14_c00002{bottom:515.973333pt;}
.y3c9_c00002{bottom:515.973413pt;}
.y1e5_c00002{bottom:515.974267pt;}
.y1fe_c00002{bottom:515.974400pt;}
.y23b_c00002{bottom:515.974880pt;}
.y218_c00002{bottom:515.975333pt;}
.y44b_c00002{bottom:515.976880pt;}
.y1836_c00002{bottom:516.105333pt;}
.yc68_c00002{bottom:516.533480pt;}
.yae9_c00002{bottom:516.534013pt;}
.ya8a_c00002{bottom:516.534267pt;}
.yb0e_c00002{bottom:516.534547pt;}
.yc8e_c00002{bottom:516.535080pt;}
.yb86_c00002{bottom:516.535213pt;}
.ybf6_c00002{bottom:516.536080pt;}
.yc1b_c00002{bottom:516.537280pt;}
.yf03_c00002{bottom:516.588000pt;}
.yf5a_c00002{bottom:516.590880pt;}
.y103e_c00002{bottom:516.647013pt;}
.yf7c_c00002{bottom:516.647147pt;}
.y178c_c00002{bottom:516.694667pt;}
.y17c0_c00002{bottom:516.909333pt;}
.yc4f_c00002{bottom:516.960000pt;}
.ydb9_c00002{bottom:516.961493pt;}
.y1862_c00002{bottom:517.332873pt;}
.y1188_c00002{bottom:517.545333pt;}
.yab7_c00002{bottom:517.655053pt;}
.y617_c00002{bottom:517.715093pt;}
.y2f_c00002{bottom:518.371120pt;}
.y165_c00002{bottom:518.427533pt;}
.y191e_c00002{bottom:518.613333pt;}
.y18f8_c00002{bottom:518.665067pt;}
.y1a56_c00002{bottom:518.667920pt;}
.y18ff_c00002{bottom:518.719067pt;}
.yf35_c00002{bottom:519.042827pt;}
.y15c3_c00002{bottom:519.413333pt;}
.y1549_c00002{bottom:519.413813pt;}
.y13ae_c00002{bottom:519.418573pt;}
.y1667_c00002{bottom:519.419680pt;}
.y11bb_c00002{bottom:519.520000pt;}
.y1b5d_c00002{bottom:519.785333pt;}
.y18d2_c00002{bottom:519.788000pt;}
.ycb1_c00002{bottom:519.895413pt;}
.yba3_c00002{bottom:519.896347pt;}
.y1055_c00002{bottom:520.114747pt;}
.yf93_c00002{bottom:520.116613pt;}
.y1909_c00002{bottom:520.479067pt;}
.y1778_c00002{bottom:520.582133pt;}
.y1ad7_c00002{bottom:520.747200pt;}
.y1989_c00002{bottom:520.959867pt;}
.y9ec_c00002{bottom:520.960104pt;}
.y18e6_c00002{bottom:520.960563pt;}
.yb5b_c00002{bottom:521.120000pt;}
.yb49_c00002{bottom:521.389053pt;}
.y34e_c00002{bottom:521.680200pt;}
.ycbd_c00002{bottom:521.813171pt;}
.y1976_c00002{bottom:522.081629pt;}
.y85_c00002{bottom:522.211583pt;}
.y4dc_c00002{bottom:523.040237pt;}
.y1a82_c00002{bottom:523.307787pt;}
.y17dc_c00002{bottom:523.731733pt;}
.yc4a_c00002{bottom:524.001320pt;}
.y1911_c00002{bottom:524.373333pt;}
.y1a15_c00002{bottom:524.587333pt;}
.y1952_c00002{bottom:524.589733pt;}
.y1937_c00002{bottom:524.590400pt;}
.y1473_c00002{bottom:524.748960pt;}
.yde5_c00002{bottom:524.799053pt;}
.y124e_c00002{bottom:524.800693pt;}
.y1278_c00002{bottom:524.801493pt;}
.yd6f_c00002{bottom:524.801600pt;}
.yb5a_c00002{bottom:525.225333pt;}
.y1424_c00002{bottom:525.226547pt;}
.yeaf_c00002{bottom:525.226760pt;}
.y12d6_c00002{bottom:525.227480pt;}
.ye32_c00002{bottom:525.228133pt;}
.y13c7_c00002{bottom:525.229200pt;}
.y15d0_c00002{bottom:525.279213pt;}
.y1450_c00002{bottom:525.280147pt;}
.y16d2_c00002{bottom:525.280280pt;}
.y11f3_c00002{bottom:525.281160pt;}
.yfdb_c00002{bottom:525.282493pt;}
.y160c_c00002{bottom:525.282547pt;}
.y1087_c00002{bottom:525.283027pt;}
.y1304_c00002{bottom:525.283080pt;}
.yedc_c00002{bottom:525.283280pt;}
.y1123_c00002{bottom:525.283560pt;}
.y169e_c00002{bottom:525.283613pt;}
.y10e3_c00002{bottom:525.284093pt;}
.y1bc_c00002{bottom:526.208400pt;}
.y191_c00002{bottom:526.212267pt;}
.y139_c00002{bottom:526.213867pt;}
.y13f3_c00002{bottom:526.399533pt;}
.ye7e_c00002{bottom:526.402560pt;}
.y6b3_c00002{bottom:526.881000pt;}
.y652_c00002{bottom:526.881200pt;}
.y912_c00002{bottom:526.881253pt;}
.y93c_c00002{bottom:526.934853pt;}
.y6e1_c00002{bottom:526.935533pt;}
.ydb8_c00002{bottom:527.201600pt;}
.y119_c00002{bottom:527.332507pt;}
.y18b6_c00002{bottom:527.945333pt;}
.y682_c00002{bottom:528.054200pt;}
.y8e2_c00002{bottom:528.055880pt;}
.y72a_c00002{bottom:528.587973pt;}
.y164_c00002{bottom:528.612427pt;}
.y57e_c00002{bottom:528.640133pt;}
.y5ca_c00002{bottom:528.640160pt;}
.y86e_c00002{bottom:528.640627pt;}
.y897_c00002{bottom:528.641960pt;}
.y8ba_c00002{bottom:528.643960pt;}
.y620_c00002{bottom:528.647227pt;}
.y619_c00002{bottom:528.648427pt;}
.y787_c00002{bottom:528.907733pt;}
.y965_c00002{bottom:529.066267pt;}
.y998_c00002{bottom:529.070013pt;}
.y9b0_c00002{bottom:529.109880pt;}
.y1861_c00002{bottom:529.332873pt;}
.yfb2_c00002{bottom:529.385333pt;}
.y330_c00002{bottom:529.468533pt;}
.y37e_c00002{bottom:529.470733pt;}
.y1b1_c00002{bottom:529.675333pt;}
.y17fc_c00002{bottom:529.974667pt;}
.y97d_c00002{bottom:530.186120pt;}
.y3c_c00002{bottom:530.368853pt;}
.y409_c00002{bottom:530.369787pt;}
.y20_c00002{bottom:530.370667pt;}
.y13_c00002{bottom:530.371733pt;}
.y1e4_c00002{bottom:530.372667pt;}
.y1fd_c00002{bottom:530.372800pt;}
.y23a_c00002{bottom:530.374880pt;}
.y4a_c00002{bottom:530.423520pt;}
.y413_c00002{bottom:530.424453pt;}
.y260_c00002{bottom:530.426880pt;}
.y3c8_c00002{bottom:530.428080pt;}
.y44a_c00002{bottom:530.429547pt;}
.y217_c00002{bottom:530.430000pt;}
.yc67_c00002{bottom:530.933480pt;}
.yae8_c00002{bottom:530.934013pt;}
.ya89_c00002{bottom:530.934267pt;}
.yb0d_c00002{bottom:530.934547pt;}
.yc8d_c00002{bottom:530.935080pt;}
.yb85_c00002{bottom:530.935213pt;}
.ybf5_c00002{bottom:530.935547pt;}
.yc1a_c00002{bottom:530.937280pt;}
.y2e_c00002{bottom:531.547680pt;}
.y1740_c00002{bottom:531.574667pt;}
.ycb0_c00002{bottom:531.735520pt;}
.yba2_c00002{bottom:531.736453pt;}
.y34d_c00002{bottom:531.867707pt;}
.yab6_c00002{bottom:532.055053pt;}
.y616_c00002{bottom:532.115093pt;}
.y146e_c00002{bottom:532.589067pt;}
.y149a_c00002{bottom:532.590173pt;}
.yb48_c00002{bottom:533.229160pt;}
.y1b16_c00002{bottom:533.388000pt;}
.y1061_c00002{bottom:533.870627pt;}
.y11ac_c00002{bottom:533.871387pt;}
.y1001_c00002{bottom:533.871453pt;}
.y117b_c00002{bottom:533.871920pt;}
.y10b4_c00002{bottom:533.872187pt;}
.yfa0_c00002{bottom:533.872480pt;}
.y1835_c00002{bottom:534.025333pt;}
.y1b39_c00002{bottom:534.345333pt;}
.y1472_c00002{bottom:534.989067pt;}
.yc5f_c00002{bottom:535.574667pt;}
.yc49_c00002{bottom:535.841427pt;}
.y178b_c00002{bottom:536.054667pt;}
.y17bf_c00002{bottom:536.269333pt;}
.y747_c00002{bottom:536.426533pt;}
.y70d_c00002{bottom:536.427600pt;}
.y1777_c00002{bottom:537.062800pt;}
.y19c6_c00002{bottom:537.708000pt;}
.y198d_c00002{bottom:537.760133pt;}
.y1994_c00002{bottom:537.815600pt;}
.y17db_c00002{bottom:538.131733pt;}
.y18f3_c00002{bottom:538.612933pt;}
.ydb7_c00002{bottom:538.721907pt;}
.y729_c00002{bottom:538.828080pt;}
.y1b5c_c00002{bottom:539.145333pt;}
.y18d1_c00002{bottom:539.149333pt;}
.y1342_c00002{bottom:539.202680pt;}
.y199e_c00002{bottom:539.574000pt;}
.yc5e_c00002{bottom:539.625333pt;}
.y15cf_c00002{bottom:539.679213pt;}
.y1423_c00002{bottom:539.680147pt;}
.y16d1_c00002{bottom:539.680280pt;}
.yeae_c00002{bottom:539.680360pt;}
.y12d5_c00002{bottom:539.681080pt;}
.y11f2_c00002{bottom:539.681160pt;}
.ye31_c00002{bottom:539.681733pt;}
.yfda_c00002{bottom:539.682493pt;}
.y160b_c00002{bottom:539.682547pt;}
.y13c6_c00002{bottom:539.682800pt;}
.y1086_c00002{bottom:539.683027pt;}
.y1303_c00002{bottom:539.683080pt;}
.yedb_c00002{bottom:539.683280pt;}
.y1122_c00002{bottom:539.683560pt;}
.y169d_c00002{bottom:539.683613pt;}
.y10e2_c00002{bottom:539.684093pt;}
.y1975_c00002{bottom:539.947733pt;}
.y1aaa_c00002{bottom:540.428453pt;}
.y118_c00002{bottom:540.452293pt;}
.y4db_c00002{bottom:540.747037pt;}
.y13f2_c00002{bottom:540.799533pt;}
.ycbc_c00002{bottom:540.800637pt;}
.ye7d_c00002{bottom:540.802560pt;}
.y15a9_c00002{bottom:541.174667pt;}
.y84_c00002{bottom:541.199049pt;}
.y1860_c00002{bottom:541.332871pt;}
.y651_c00002{bottom:541.333867pt;}
.y6b2_c00002{bottom:541.334600pt;}
.y911_c00002{bottom:541.334853pt;}
.y6e0_c00002{bottom:541.335533pt;}
.y9eb_c00002{bottom:541.493437pt;}
.y18e1_c00002{bottom:541.545896pt;}
.y681_c00002{bottom:542.454200pt;}
.y8e1_c00002{bottom:542.455880pt;}
.y5c9_c00002{bottom:543.039627pt;}
.y817_c00002{bottom:543.040133pt;}
.y11b9_c00002{bottom:543.145333pt;}
.y163_c00002{bottom:543.387493pt;}
.y9af_c00002{bottom:543.509880pt;}
.y19a6_c00002{bottom:543.520000pt;}
.y964_c00002{bottom:543.520400pt;}
.y997_c00002{bottom:543.522680pt;}
.ycaf_c00002{bottom:543.575627pt;}
.yba1_c00002{bottom:543.576560pt;}
.y786_c00002{bottom:543.628000pt;}
.y18b5_c00002{bottom:544.105333pt;}
.y57d_c00002{bottom:544.159867pt;}
.y843_c00002{bottom:544.159893pt;}
.y1a14_c00002{bottom:544.427467pt;}
.y97c_c00002{bottom:544.640253pt;}
.y49_c00002{bottom:544.823520pt;}
.y3b_c00002{bottom:544.824053pt;}
.y412_c00002{bottom:544.824453pt;}
.y408_c00002{bottom:544.824987pt;}
.y1f_c00002{bottom:544.825333pt;}
.y25f_c00002{bottom:544.826880pt;}
.y12_c00002{bottom:544.828000pt;}
.y3c7_c00002{bottom:544.828080pt;}
.y1e3_c00002{bottom:544.828933pt;}
.y1fc_c00002{bottom:544.829067pt;}
.y449_c00002{bottom:544.829547pt;}
.y216_c00002{bottom:544.830000pt;}
.y239_c00002{bottom:544.830080pt;}
.yb47_c00002{bottom:545.068747pt;}
.yc66_c00002{bottom:545.386147pt;}
.yae7_c00002{bottom:545.386680pt;}
.ya88_c00002{bottom:545.386933pt;}
.yb0c_c00002{bottom:545.387213pt;}
.yc8c_c00002{bottom:545.387747pt;}
.yb84_c00002{bottom:545.388280pt;}
.ybf4_c00002{bottom:545.388613pt;}
.yc19_c00002{bottom:545.389947pt;}
.y1a55_c00002{bottom:545.708053pt;}
.yde4_c00002{bottom:546.505320pt;}
.y124d_c00002{bottom:546.506960pt;}
.yab5_c00002{bottom:546.507720pt;}
.y1277_c00002{bottom:546.507760pt;}
.yd6e_c00002{bottom:546.508933pt;}
.y1368_c00002{bottom:546.988867pt;}
.y1327_c00002{bottom:546.989067pt;}
.y1499_c00002{bottom:546.990173pt;}
.y14b8_c00002{bottom:546.991107pt;}
.y170c_c00002{bottom:546.992040pt;}
.y156b_c00002{bottom:546.992573pt;}
.y2d_c00002{bottom:547.226347pt;}
.yc48_c00002{bottom:547.681533pt;}
.y173f_c00002{bottom:547.734667pt;}
.ydb6_c00002{bottom:548.961493pt;}
.y1ad6_c00002{bottom:549.227867pt;}
.y1341_c00002{bottom:549.389133pt;}
.y1a81_c00002{bottom:550.188053pt;}
.y16fe_c00002{bottom:550.459907pt;}
.y75d_c00002{bottom:550.826133pt;}
.y746_c00002{bottom:550.826533pt;}
.y70c_c00002{bottom:550.827600pt;}
.y190_c00002{bottom:551.172133pt;}
.y138_c00002{bottom:551.173733pt;}
.y37d_c00002{bottom:551.175400pt;}
.y1bb_c00002{bottom:551.221467pt;}
.y3a1_c00002{bottom:551.228733pt;}
.y1834_c00002{bottom:551.945333pt;}
.y728_c00002{bottom:551.946307pt;}
.y117_c00002{bottom:552.292400pt;}
.y17da_c00002{bottom:552.533333pt;}
.y1b15_c00002{bottom:552.749333pt;}
.y14e6_c00002{bottom:553.014667pt;}
.y1187_c00002{bottom:553.065333pt;}
.y185f_c00002{bottom:553.332868pt;}
.y1776_c00002{bottom:553.543067pt;}
.yf34_c00002{bottom:553.601627pt;}
.y162_c00002{bottom:553.627600pt;}
.y1b38_c00002{bottom:553.705333pt;}
.y144f_c00002{bottom:554.079080pt;}
.y15ce_c00002{bottom:554.079213pt;}
.y1422_c00002{bottom:554.079613pt;}
.y16d0_c00002{bottom:554.080280pt;}
.yead_c00002{bottom:554.080360pt;}
.y12d4_c00002{bottom:554.081080pt;}
.y11f1_c00002{bottom:554.081160pt;}
.ye30_c00002{bottom:554.081733pt;}
.yfd9_c00002{bottom:554.082493pt;}
.y160a_c00002{bottom:554.082547pt;}
.y13c5_c00002{bottom:554.082800pt;}
.y1085_c00002{bottom:554.083027pt;}
.y1302_c00002{bottom:554.083080pt;}
.yeda_c00002{bottom:554.083280pt;}
.y1121_c00002{bottom:554.083560pt;}
.y169c_c00002{bottom:554.083613pt;}
.y10e1_c00002{bottom:554.084093pt;}
.y1b0_c00002{bottom:554.688400pt;}
.y1893_c00002{bottom:554.994933pt;}
.y13f1_c00002{bottom:555.199533pt;}
.ye7c_c00002{bottom:555.202560pt;}
.y191d_c00002{bottom:555.360000pt;}
.y178a_c00002{bottom:555.414667pt;}
.ycae_c00002{bottom:555.415733pt;}
.yba0_c00002{bottom:555.416667pt;}
.y18f7_c00002{bottom:555.465067pt;}
.y18fe_c00002{bottom:555.519067pt;}
.y17be_c00002{bottom:555.628000pt;}
.y650_c00002{bottom:555.733867pt;}
.y6b1_c00002{bottom:555.734600pt;}
.y910_c00002{bottom:555.734853pt;}
.y6df_c00002{bottom:555.735533pt;}
.y1988_c00002{bottom:556.588000pt;}
.y680_c00002{bottom:556.854200pt;}
.y8e0_c00002{bottom:556.855880pt;}
.yb46_c00002{bottom:556.908853pt;}
.y1908_c00002{bottom:557.279067pt;}
.y97b_c00002{bottom:557.441813pt;}
.ycbb_c00002{bottom:558.026637pt;}
.y4da_c00002{bottom:558.026771pt;}
.y1974_c00002{bottom:558.028000pt;}
.y576_c00002{bottom:558.079760pt;}
.y83_c00002{bottom:558.426649pt;}
.y1b5b_c00002{bottom:558.505333pt;}
.y18d0_c00002{bottom:558.509333pt;}
.y48_c00002{bottom:559.223520pt;}
.y3a_c00002{bottom:559.224053pt;}
.y411_c00002{bottom:559.224453pt;}
.y407_c00002{bottom:559.224987pt;}
.y1e_c00002{bottom:559.225333pt;}
.y11_c00002{bottom:559.226400pt;}
.y25e_c00002{bottom:559.226880pt;}
.y1e2_c00002{bottom:559.227333pt;}
.y1fb_c00002{bottom:559.227467pt;}
.y215_c00002{bottom:559.227867pt;}
.y3c6_c00002{bottom:559.228080pt;}
.y448_c00002{bottom:559.229547pt;}
.y238_c00002{bottom:559.230080pt;}
.y18e0_c00002{bottom:559.413600pt;}
.yc47_c00002{bottom:559.467467pt;}
.yc65_c00002{bottom:559.786147pt;}
.yae6_c00002{bottom:559.786680pt;}
.ya87_c00002{bottom:559.786933pt;}
.yb0b_c00002{bottom:559.787213pt;}
.yc8b_c00002{bottom:559.787747pt;}
.yb83_c00002{bottom:559.788280pt;}
.ybf3_c00002{bottom:559.788613pt;}
.yc18_c00002{bottom:559.789947pt;}
.y9dc_c00002{bottom:560.107733pt;}
.y18b4_c00002{bottom:560.265333pt;}
.ydb5_c00002{bottom:560.481800pt;}
.yab4_c00002{bottom:560.907720pt;}
.y1910_c00002{bottom:561.173333pt;}
.y1367_c00002{bottom:561.388867pt;}
.yf02_c00002{bottom:561.389067pt;}
.y1498_c00002{bottom:561.390173pt;}
.yf59_c00002{bottom:561.390880pt;}
.y1525_c00002{bottom:561.441400pt;}
.y1340_c00002{bottom:561.441733pt;}
.y14b7_c00002{bottom:561.443773pt;}
.y170b_c00002{bottom:561.444707pt;}
.y156a_c00002{bottom:561.445640pt;}
.y138b_c00002{bottom:561.446333pt;}
.y1648_c00002{bottom:561.446733pt;}
.y2c_c00002{bottom:561.626347pt;}
.yf33_c00002{bottom:563.841733pt;}
.y173e_c00002{bottom:563.894667pt;}
.yfb1_c00002{bottom:564.905333pt;}
.y1634_c00002{bottom:564.911800pt;}
.y16fd_c00002{bottom:564.914040pt;}
.y161_c00002{bottom:565.147387pt;}
.y75c_c00002{bottom:565.226133pt;}
.y745_c00002{bottom:565.226533pt;}
.y70b_c00002{bottom:565.227600pt;}
.y963_c00002{bottom:565.227733pt;}
.y996_c00002{bottom:565.230013pt;}
.y185e_c00002{bottom:565.332865pt;}
.y17fa_c00002{bottom:565.494667pt;}
.y727_c00002{bottom:566.346307pt;}
.y17d9_c00002{bottom:566.933333pt;}
.y97a_c00002{bottom:567.628267pt;}
.y1aa9_c00002{bottom:567.788320pt;}
.yde3_c00002{bottom:568.265187pt;}
.y124c_c00002{bottom:568.266827pt;}
.y1276_c00002{bottom:568.267093pt;}
.yd6d_c00002{bottom:568.267733pt;}
.y15cd_c00002{bottom:568.479213pt;}
.y1421_c00002{bottom:568.479613pt;}
.y144e_c00002{bottom:568.480147pt;}
.y16cf_c00002{bottom:568.480280pt;}
.yeac_c00002{bottom:568.480360pt;}
.y12d3_c00002{bottom:568.481080pt;}
.y11f0_c00002{bottom:568.481160pt;}
.ye2f_c00002{bottom:568.481733pt;}
.yfd8_c00002{bottom:568.482493pt;}
.y1609_c00002{bottom:568.482547pt;}
.y13c4_c00002{bottom:568.482800pt;}
.y1084_c00002{bottom:568.483027pt;}
.y1301_c00002{bottom:568.483080pt;}
.yed9_c00002{bottom:568.483280pt;}
.y1120_c00002{bottom:568.483560pt;}
.y169b_c00002{bottom:568.483613pt;}
.y10e0_c00002{bottom:568.484093pt;}
.ycad_c00002{bottom:568.748027pt;}
.yb45_c00002{bottom:568.748960pt;}
.y1892_c00002{bottom:569.554800pt;}
.y13f0_c00002{bottom:569.599533pt;}
.ye7b_c00002{bottom:569.602560pt;}
.y1833_c00002{bottom:569.865333pt;}
.y1775_c00002{bottom:570.022800pt;}
.y64f_c00002{bottom:570.133867pt;}
.y6b0_c00002{bottom:570.134600pt;}
.y90f_c00002{bottom:570.134853pt;}
.y6de_c00002{bottom:570.135533pt;}
.ydb4_c00002{bottom:570.667733pt;}
.y8df_c00002{bottom:571.255880pt;}
.yc46_c00002{bottom:571.307573pt;}
.y1b14_c00002{bottom:572.109333pt;}
.y67f_c00002{bottom:572.534467pt;}
.y1a54_c00002{bottom:572.748187pt;}
.y1ba_c00002{bottom:572.929867pt;}
.y18f_c00002{bottom:572.932533pt;}
.y116_c00002{bottom:572.933600pt;}
.y3a0_c00002{bottom:572.933933pt;}
.y37c_c00002{bottom:572.935267pt;}
.y1b37_c00002{bottom:573.065333pt;}
.y47_c00002{bottom:573.623520pt;}
.y39_c00002{bottom:573.624053pt;}
.y410_c00002{bottom:573.624453pt;}
.y406_c00002{bottom:573.624987pt;}
.y1d_c00002{bottom:573.625333pt;}
.y10_c00002{bottom:573.626400pt;}
.y25d_c00002{bottom:573.626880pt;}
.y1e1_c00002{bottom:573.627333pt;}
.y1fa_c00002{bottom:573.627467pt;}
.y214_c00002{bottom:573.627867pt;}
.y3c5_c00002{bottom:573.628080pt;}
.y447_c00002{bottom:573.629547pt;}
.y237_c00002{bottom:573.630080pt;}
.yc64_c00002{bottom:574.186147pt;}
.yae5_c00002{bottom:574.186680pt;}
.ya86_c00002{bottom:574.186933pt;}
.yb0a_c00002{bottom:574.187213pt;}
.yc8a_c00002{bottom:574.187747pt;}
.yb82_c00002{bottom:574.188280pt;}
.ybf2_c00002{bottom:574.188613pt;}
.yc17_c00002{bottom:574.189947pt;}
.y18f2_c00002{bottom:574.293600pt;}
.y19c5_c00002{bottom:574.508000pt;}
.y198c_c00002{bottom:574.560133pt;}
.y1789_c00002{bottom:574.774667pt;}
.y9db_c00002{bottom:574.828000pt;}
.y17bd_c00002{bottom:574.988000pt;}
.ycba_c00002{bottom:575.200637pt;}
.y4d9_c00002{bottom:575.254371pt;}
.yab3_c00002{bottom:575.307720pt;}
.y160_c00002{bottom:575.332800pt;}
.y82_c00002{bottom:575.599049pt;}
.y1524_c00002{bottom:575.841400pt;}
.yf01_c00002{bottom:575.841733pt;}
.y1366_c00002{bottom:575.842467pt;}
.y1497_c00002{bottom:575.843773pt;}
.yf58_c00002{bottom:575.843947pt;}
.y170a_c00002{bottom:575.844707pt;}
.y1569_c00002{bottom:575.845640pt;}
.y138a_c00002{bottom:575.846333pt;}
.y1647_c00002{bottom:575.846733pt;}
.y103d_c00002{bottom:575.847013pt;}
.yf7b_c00002{bottom:575.847147pt;}
.y2b_c00002{bottom:576.079013pt;}
.y5c8_c00002{bottom:576.266160pt;}
.y199d_c00002{bottom:576.374000pt;}
.y18b3_c00002{bottom:576.425333pt;}
.y1186_c00002{bottom:576.694667pt;}
.y1a80_c00002{bottom:577.067787pt;}
.y185d_c00002{bottom:577.332865pt;}
.y18df_c00002{bottom:577.493333pt;}
.y1ad5_c00002{bottom:577.707600pt;}
.y1b5a_c00002{bottom:577.865333pt;}
.y18cf_c00002{bottom:577.869333pt;}
.y11b8_c00002{bottom:578.614667pt;}
.y1633_c00002{bottom:579.311800pt;}
.y16fc_c00002{bottom:579.314040pt;}
.y744_c00002{bottom:579.626533pt;}
.y70a_c00002{bottom:579.627600pt;}
.y962_c00002{bottom:579.627733pt;}
.y995_c00002{bottom:579.630013pt;}
.y9ae_c00002{bottom:579.670280pt;}
.y75b_c00002{bottom:579.678800pt;}
.y296_c00002{bottom:579.840000pt;}
.y173d_c00002{bottom:580.054667pt;}
.y19a5_c00002{bottom:580.269333pt;}
.y979_c00002{bottom:580.799627pt;}
.y726_c00002{bottom:580.799907pt;}
.ydb3_c00002{bottom:582.188040pt;}
.y17d8_c00002{bottom:582.294533pt;}
.y15cc_c00002{bottom:582.932280pt;}
.y1420_c00002{bottom:582.933213pt;}
.y144d_c00002{bottom:582.933747pt;}
.y16ce_c00002{bottom:582.933880pt;}
.yeab_c00002{bottom:582.933960pt;}
.y12d2_c00002{bottom:582.934680pt;}
.y11ef_c00002{bottom:582.934760pt;}
.ye2e_c00002{bottom:582.935333pt;}
.y13c3_c00002{bottom:582.935467pt;}
.yfd7_c00002{bottom:582.935560pt;}
.y11d6_c00002{bottom:582.936093pt;}
.y1300_c00002{bottom:582.936147pt;}
.y1083_c00002{bottom:582.936627pt;}
.yed8_c00002{bottom:582.936880pt;}
.y169a_c00002{bottom:582.937213pt;}
.y10df_c00002{bottom:582.937693pt;}
.yc45_c00002{bottom:583.147680pt;}
.y13ef_c00002{bottom:584.053133pt;}
.y67e_c00002{bottom:584.054253pt;}
.ye7a_c00002{bottom:584.055227pt;}
.y57c_c00002{bottom:584.106267pt;}
.y86d_c00002{bottom:584.106760pt;}
.y1a13_c00002{bottom:584.107733pt;}
.y5f4_c00002{bottom:584.113093pt;}
.y1891_c00002{bottom:584.114667pt;}
.y8c2_c00002{bottom:584.533867pt;}
.y90e_c00002{bottom:584.534853pt;}
.y93b_c00002{bottom:584.588453pt;}
.y8de_c00002{bottom:585.708947pt;}
.y1774_c00002{bottom:586.503467pt;}
.y5c7_c00002{bottom:586.506267pt;}
.y15f_c00002{bottom:586.852587pt;}
.y1832_c00002{bottom:587.785333pt;}
.y46_c00002{bottom:588.076187pt;}
.y38_c00002{bottom:588.076720pt;}
.y40f_c00002{bottom:588.077120pt;}
.y405_c00002{bottom:588.077653pt;}
.y1c_c00002{bottom:588.078000pt;}
.yf_c00002{bottom:588.079467pt;}
.y25c_c00002{bottom:588.079947pt;}
.y1e0_c00002{bottom:588.080400pt;}
.y1f9_c00002{bottom:588.080533pt;}
.y3c4_c00002{bottom:588.080747pt;}
.y213_c00002{bottom:588.080933pt;}
.y446_c00002{bottom:588.082613pt;}
.y236_c00002{bottom:588.082747pt;}
.yab2_c00002{bottom:588.106160pt;}
.y14e4_c00002{bottom:588.480000pt;}
.yfaf_c00002{bottom:588.534667pt;}
.ycaa_c00002{bottom:589.279893pt;}
.yb41_c00002{bottom:589.280827pt;}
.yb2f_c00002{bottom:589.281067pt;}
.y185c_c00002{bottom:589.332863pt;}
.ycac_c00002{bottom:589.333493pt;}
.yb44_c00002{bottom:589.334427pt;}
.yde2_c00002{bottom:589.973053pt;}
.y124b_c00002{bottom:589.974160pt;}
.yd6c_c00002{bottom:589.975600pt;}
.ye0c_c00002{bottom:590.025053pt;}
.y1275_c00002{bottom:590.026427pt;}
.y1523_c00002{bottom:590.241400pt;}
.yf00_c00002{bottom:590.241733pt;}
.y1365_c00002{bottom:590.242467pt;}
.y1496_c00002{bottom:590.243773pt;}
.yf57_c00002{bottom:590.243947pt;}
.y1709_c00002{bottom:590.244707pt;}
.y1568_c00002{bottom:590.245640pt;}
.y1389_c00002{bottom:590.246333pt;}
.y1646_c00002{bottom:590.246733pt;}
.y103c_c00002{bottom:590.247013pt;}
.yf7a_c00002{bottom:590.247147pt;}
.y2a_c00002{bottom:590.479013pt;}
.y1b13_c00002{bottom:591.469333pt;}
.yb38_c00002{bottom:591.733493pt;}
.y64e_c00002{bottom:591.893733pt;}
.y6af_c00002{bottom:591.895000pt;}
.y191c_c00002{bottom:592.148000pt;}
.y18f6_c00002{bottom:592.212933pt;}
.y1b36_c00002{bottom:592.425333pt;}
.ycb9_c00002{bottom:592.426637pt;}
.ydb2_c00002{bottom:592.428147pt;}
.y4d8_c00002{bottom:592.480904pt;}
.y18b2_c00002{bottom:592.585333pt;}
.y81_c00002{bottom:592.826649pt;}
.y1632_c00002{bottom:593.711800pt;}
.y16fb_c00002{bottom:593.714040pt;}
.y1907_c00002{bottom:594.025467pt;}
.y9ad_c00002{bottom:594.070280pt;}
.y75a_c00002{bottom:594.078800pt;}
.y743_c00002{bottom:594.079200pt;}
.y709_c00002{bottom:594.081200pt;}
.y961_c00002{bottom:594.081333pt;}
.y994_c00002{bottom:594.082680pt;}
.y1788_c00002{bottom:594.134667pt;}
.y67d_c00002{bottom:594.294360pt;}
.y17bc_c00002{bottom:594.349333pt;}
.y1b9_c00002{bottom:594.689200pt;}
.y18e_c00002{bottom:594.692400pt;}
.y115_c00002{bottom:594.693467pt;}
.y39f_c00002{bottom:594.693800pt;}
.y37b_c00002{bottom:594.695133pt;}
.y15a7_c00002{bottom:595.040000pt;}
.y1aa8_c00002{bottom:595.148267pt;}
.y978_c00002{bottom:595.199627pt;}
.y725_c00002{bottom:595.199907pt;}
.yc63_c00002{bottom:595.946013pt;}
.yae4_c00002{bottom:595.946547pt;}
.ya85_c00002{bottom:595.946800pt;}
.ybf1_c00002{bottom:595.947413pt;}
.y173c_c00002{bottom:596.214667pt;}
.y15e_c00002{bottom:597.092693pt;}
.y1b59_c00002{bottom:597.225333pt;}
.y18ce_c00002{bottom:597.228000pt;}
.y15cb_c00002{bottom:597.332280pt;}
.y144c_c00002{bottom:597.332680pt;}
.y141f_c00002{bottom:597.333213pt;}
.y16cd_c00002{bottom:597.333880pt;}
.yeaa_c00002{bottom:597.333960pt;}
.y12d1_c00002{bottom:597.334680pt;}
.y11ee_c00002{bottom:597.334760pt;}
.ye2d_c00002{bottom:597.335333pt;}
.y13c2_c00002{bottom:597.335467pt;}
.yfd6_c00002{bottom:597.335560pt;}
.y12ff_c00002{bottom:597.336147pt;}
.y1082_c00002{bottom:597.336627pt;}
.yed7_c00002{bottom:597.336880pt;}
.y1699_c00002{bottom:597.337213pt;}
.y10de_c00002{bottom:597.337693pt;}
.y190f_c00002{bottom:597.973333pt;}
.y5c6_c00002{bottom:598.026053pt;}
.yab1_c00002{bottom:598.346267pt;}
.y13ee_c00002{bottom:598.453133pt;}
.ye79_c00002{bottom:598.455227pt;}
.y1890_c00002{bottom:598.674533pt;}
.y8c1_c00002{bottom:598.987467pt;}
.y93a_c00002{bottom:598.988453pt;}
.y90d_c00002{bottom:598.988987pt;}
.y17d7_c00002{bottom:599.253333pt;}
.y1a53_c00002{bottom:599.788267pt;}
.y8dd_c00002{bottom:600.108947pt;}
.yc84_c00002{bottom:600.694413pt;}
.yb7c_c00002{bottom:600.694947pt;}
.y185b_c00002{bottom:601.332860pt;}
.y11b7_c00002{bottom:602.294667pt;}
.y45_c00002{bottom:602.476187pt;}
.y37_c00002{bottom:602.476720pt;}
.y40e_c00002{bottom:602.477120pt;}
.y404_c00002{bottom:602.477653pt;}
.y1b_c00002{bottom:602.478000pt;}
.y25b_c00002{bottom:602.479413pt;}
.ye_c00002{bottom:602.479467pt;}
.y1f8_c00002{bottom:602.480000pt;}
.y1df_c00002{bottom:602.480400pt;}
.y3c3_c00002{bottom:602.480747pt;}
.y212_c00002{bottom:602.480933pt;}
.y445_c00002{bottom:602.482613pt;}
.y235_c00002{bottom:602.482747pt;}
.y1773_c00002{bottom:602.983200pt;}
.y295_c00002{bottom:603.469333pt;}
.yc43_c00002{bottom:603.733147pt;}
.yca9_c00002{bottom:603.733493pt;}
.yb2e_c00002{bottom:603.733733pt;}
.yb40_c00002{bottom:603.734427pt;}
.y1a12_c00002{bottom:603.947867pt;}
.ydb1_c00002{bottom:603.947933pt;}
.y1a7f_c00002{bottom:603.948000pt;}
.y1986_c00002{bottom:604.296267pt;}
.y1522_c00002{bottom:604.641400pt;}
.yeff_c00002{bottom:604.641733pt;}
.y1364_c00002{bottom:604.642467pt;}
.y1495_c00002{bottom:604.643773pt;}
.yf56_c00002{bottom:604.643947pt;}
.y1708_c00002{bottom:604.644707pt;}
.y1567_c00002{bottom:604.645640pt;}
.y1388_c00002{bottom:604.646333pt;}
.y1645_c00002{bottom:604.646733pt;}
.y103b_c00002{bottom:604.647013pt;}
.yf79_c00002{bottom:604.647147pt;}
.yb37_c00002{bottom:604.853280pt;}
.y29_c00002{bottom:604.879013pt;}
.y1831_c00002{bottom:605.705333pt;}
.y57b_c00002{bottom:605.813600pt;}
.y86c_c00002{bottom:605.814093pt;}
.y5f3_c00002{bottom:605.820427pt;}
.y896_c00002{bottom:605.869560pt;}
.y61f_c00002{bottom:605.873760pt;}
.y253_c00002{bottom:605.947547pt;}
.y43d_c00002{bottom:605.950213pt;}
.yc3b_c00002{bottom:606.133147pt;}
.y1ad4_c00002{bottom:606.188267pt;}
.y64d_c00002{bottom:606.293733pt;}
.y6ae_c00002{bottom:606.295000pt;}
.y6dd_c00002{bottom:606.295400pt;}
.y14e2_c00002{bottom:606.881333pt;}
.y67c_c00002{bottom:607.414667pt;}
.y1631_c00002{bottom:608.111800pt;}
.y16fa_c00002{bottom:608.114040pt;}
.y5c5_c00002{bottom:608.266160pt;}
.y9ac_c00002{bottom:608.470280pt;}
.y759_c00002{bottom:608.478800pt;}
.y742_c00002{bottom:608.479200pt;}
.y708_c00002{bottom:608.480133pt;}
.y960_c00002{bottom:608.480267pt;}
.y993_c00002{bottom:608.482680pt;}
.y15d_c00002{bottom:608.612480pt;}
.y18b1_c00002{bottom:608.745333pt;}
.y977_c00002{bottom:609.599627pt;}
.y724_c00002{bottom:609.599907pt;}
.ycb8_c00002{bottom:609.654237pt;}
.y4d7_c00002{bottom:609.706904pt;}
.yab0_c00002{bottom:609.866053pt;}
.y80_c00002{bottom:610.051583pt;}
.y1b12_c00002{bottom:610.828000pt;}
.y15a6_c00002{bottom:610.989147pt;}
.y19c4_c00002{bottom:611.253333pt;}
.y198b_c00002{bottom:611.360133pt;}
.y15ca_c00002{bottom:611.732280pt;}
.ye0b_c00002{bottom:611.732387pt;}
.y144b_c00002{bottom:611.732680pt;}
.yde1_c00002{bottom:611.732920pt;}
.y141e_c00002{bottom:611.733213pt;}
.y16cc_c00002{bottom:611.733880pt;}
.yea9_c00002{bottom:611.733960pt;}
.y1274_c00002{bottom:611.734293pt;}
.y124a_c00002{bottom:611.734560pt;}
.y12d0_c00002{bottom:611.734680pt;}
.y11ed_c00002{bottom:611.734760pt;}
.ye2c_c00002{bottom:611.735333pt;}
.yd6b_c00002{bottom:611.735467pt;}
.yfd5_c00002{bottom:611.735560pt;}
.y12fe_c00002{bottom:611.736147pt;}
.y1081_c00002{bottom:611.736627pt;}
.yed6_c00002{bottom:611.736880pt;}
.y1698_c00002{bottom:611.737213pt;}
.y10dd_c00002{bottom:611.737693pt;}
.y1b35_c00002{bottom:611.785333pt;}
.y15a8_c00002{bottom:612.160000pt;}
.y1185_c00002{bottom:612.214667pt;}
.y173b_c00002{bottom:612.374667pt;}
.y13ed_c00002{bottom:612.853133pt;}
.ye78_c00002{bottom:612.855227pt;}
.y199c_c00002{bottom:613.174000pt;}
.y188f_c00002{bottom:613.234400pt;}
.y185a_c00002{bottom:613.332857pt;}
.y8c0_c00002{bottom:613.387467pt;}
.y939_c00002{bottom:613.388453pt;}
.y90c_c00002{bottom:613.388987pt;}
.y1786_c00002{bottom:613.494667pt;}
.y17bb_c00002{bottom:613.709333pt;}
.ydb0_c00002{bottom:614.135440pt;}
.y3f3_c00002{bottom:615.309333pt;}
.y8dc_c00002{bottom:615.789213pt;}
.y17d6_c00002{bottom:616.213333pt;}
.y1b8_c00002{bottom:616.397067pt;}
.y114_c00002{bottom:616.399733pt;}
.y39e_c00002{bottom:616.401667pt;}
.y37a_c00002{bottom:616.402467pt;}
.y1b58_c00002{bottom:616.585333pt;}
.y18cd_c00002{bottom:616.588000pt;}
.y44_c00002{bottom:616.876187pt;}
.y36_c00002{bottom:616.876720pt;}
.y40d_c00002{bottom:616.877120pt;}
.y403_c00002{bottom:616.877653pt;}
.y1a_c00002{bottom:616.878000pt;}
.y25a_c00002{bottom:616.878880pt;}
.yd_c00002{bottom:616.879467pt;}
.y1de_c00002{bottom:616.880400pt;}
.y3c2_c00002{bottom:616.880747pt;}
.y211_c00002{bottom:616.880933pt;}
.y444_c00002{bottom:616.882613pt;}
.y234_c00002{bottom:616.882747pt;}
.yc62_c00002{bottom:617.653347pt;}
.yae3_c00002{bottom:617.653880pt;}
.ya84_c00002{bottom:617.654133pt;}
.yb09_c00002{bottom:617.654413pt;}
.yc89_c00002{bottom:617.654947pt;}
.ybf0_c00002{bottom:617.655280pt;}
.yb81_c00002{bottom:617.655480pt;}
.yc16_c00002{bottom:617.657147pt;}
.y785_c00002{bottom:617.922600pt;}
.yc42_c00002{bottom:618.133147pt;}
.yca8_c00002{bottom:618.133493pt;}
.yb2d_c00002{bottom:618.133733pt;}
.yb3f_c00002{bottom:618.134427pt;}
.y15c_c00002{bottom:618.852587pt;}
.yefe_c00002{bottom:619.041733pt;}
.y1363_c00002{bottom:619.042467pt;}
.y1494_c00002{bottom:619.043773pt;}
.yf55_c00002{bottom:619.043947pt;}
.y1521_c00002{bottom:619.095000pt;}
.yf32_c00002{bottom:619.095333pt;}
.y14b6_c00002{bottom:619.097373pt;}
.y1707_c00002{bottom:619.098307pt;}
.y1566_c00002{bottom:619.099240pt;}
.y1387_c00002{bottom:619.099933pt;}
.y1644_c00002{bottom:619.100333pt;}
.y103a_c00002{bottom:619.100613pt;}
.yf78_c00002{bottom:619.100747pt;}
.yc3a_c00002{bottom:619.252933pt;}
.y28_c00002{bottom:619.279013pt;}
.y1772_c00002{bottom:619.463467pt;}
.y5c4_c00002{bottom:619.785947pt;}
.yaaf_c00002{bottom:620.053560pt;}
.y252_c00002{bottom:620.347547pt;}
.y43c_c00002{bottom:620.350213pt;}
.yb36_c00002{bottom:620.533947pt;}
.y64c_c00002{bottom:620.693733pt;}
.y6ad_c00002{bottom:620.695000pt;}
.y6dc_c00002{bottom:620.749000pt;}
.y1a40_c00002{bottom:621.386400pt;}
.y67b_c00002{bottom:621.814667pt;}
.y1aa7_c00002{bottom:622.508133pt;}
.y1630_c00002{bottom:622.564467pt;}
.y16f9_c00002{bottom:622.566707pt;}
.y15a5_c00002{bottom:622.614667pt;}
.y14e1_c00002{bottom:622.828853pt;}
.y9ab_c00002{bottom:622.870280pt;}
.y758_c00002{bottom:622.878800pt;}
.y741_c00002{bottom:622.879200pt;}
.y707_c00002{bottom:622.880133pt;}
.y95f_c00002{bottom:622.880267pt;}
.y992_c00002{bottom:622.882680pt;}
.y1830_c00002{bottom:623.625333pt;}
.y976_c00002{bottom:623.999627pt;}
.yfac_c00002{bottom:624.000000pt;}
.y18b0_c00002{bottom:624.905333pt;}
.y723_c00002{bottom:625.280173pt;}
.y1859_c00002{bottom:625.332857pt;}
.ydaf_c00002{bottom:625.655747pt;}
.y141d_c00002{bottom:626.133213pt;}
.yea8_c00002{bottom:626.133960pt;}
.y17f8_c00002{bottom:626.134667pt;}
.y12cf_c00002{bottom:626.134680pt;}
.ye2b_c00002{bottom:626.135333pt;}
.y13c1_c00002{bottom:626.135467pt;}
.y15c9_c00002{bottom:626.185880pt;}
.y144a_c00002{bottom:626.186280pt;}
.y16cb_c00002{bottom:626.187480pt;}
.y11ec_c00002{bottom:626.188360pt;}
.yfd4_c00002{bottom:626.188627pt;}
.y11d5_c00002{bottom:626.189160pt;}
.y1080_c00002{bottom:626.189693pt;}
.y12fd_c00002{bottom:626.189747pt;}
.y1697_c00002{bottom:626.190280pt;}
.yed5_c00002{bottom:626.190480pt;}
.y10dc_c00002{bottom:626.190760pt;}
.y76c_c00002{bottom:626.398133pt;}
.y4d6_c00002{bottom:626.560533pt;}
.y1a52_c00002{bottom:626.828400pt;}
.y7f_c00002{bottom:626.959333pt;}
.y293_c00002{bottom:627.090667pt;}
.y13ec_c00002{bottom:627.253133pt;}
.ye77_c00002{bottom:627.255227pt;}
.y8db_c00002{bottom:627.309000pt;}
.y57a_c00002{bottom:627.574000pt;}
.y86b_c00002{bottom:627.574493pt;}
.y895_c00002{bottom:627.576893pt;}
.y5f2_c00002{bottom:627.580827pt;}
.y61e_c00002{bottom:627.581627pt;}
.y188e_c00002{bottom:627.794267pt;}
.y1739_c00002{bottom:628.534667pt;}
.y191b_c00002{bottom:628.960000pt;}
.y18f5_c00002{bottom:629.012933pt;}
.y784_c00002{bottom:629.762187pt;}
.y5c3_c00002{bottom:629.973453pt;}
.y1987_c00002{bottom:630.188000pt;}
.y15b_c00002{bottom:630.320293pt;}
.y1183_c00002{bottom:630.560000pt;}
.y1906_c00002{bottom:630.825467pt;}
.y1a7e_c00002{bottom:630.828267pt;}
.y1b34_c00002{bottom:631.145333pt;}
.y35_c00002{bottom:631.276187pt;}
.y402_c00002{bottom:631.277120pt;}
.y19_c00002{bottom:631.278000pt;}
.yc_c00002{bottom:631.278933pt;}
.y1dd_c00002{bottom:631.279867pt;}
.y233_c00002{bottom:631.282747pt;}
.y43_c00002{bottom:631.328320pt;}
.y40c_c00002{bottom:631.329253pt;}
.y259_c00002{bottom:631.331947pt;}
.y3c1_c00002{bottom:631.333413pt;}
.y210_c00002{bottom:631.333600pt;}
.y443_c00002{bottom:631.337813pt;}
.y486_c00002{bottom:631.338347pt;}
.y15a4_c00002{bottom:631.414667pt;}
.yaae_c00002{bottom:631.573867pt;}
.y27_c00002{bottom:632.398800pt;}
.yc41_c00002{bottom:632.533147pt;}
.yca7_c00002{bottom:632.533493pt;}
.yb2c_c00002{bottom:632.533733pt;}
.yb3e_c00002{bottom:632.534427pt;}
.y17ba_c00002{bottom:633.069333pt;}
.yde0_c00002{bottom:633.492787pt;}
.y1249_c00002{bottom:633.494427pt;}
.y1520_c00002{bottom:633.495000pt;}
.yd6a_c00002{bottom:633.495333pt;}
.y1362_c00002{bottom:633.496067pt;}
.yf54_c00002{bottom:633.497013pt;}
.y1493_c00002{bottom:633.497373pt;}
.y1706_c00002{bottom:633.498307pt;}
.y1565_c00002{bottom:633.499240pt;}
.y1386_c00002{bottom:633.499400pt;}
.y1643_c00002{bottom:633.499800pt;}
.y1039_c00002{bottom:633.500613pt;}
.yf77_c00002{bottom:633.500747pt;}
.y14e0_c00002{bottom:634.453853pt;}
.y1ad3_c00002{bottom:634.668000pt;}
.yc39_c00002{bottom:634.987333pt;}
.yb35_c00002{bottom:634.987547pt;}
.y64b_c00002{bottom:635.147333pt;}
.y6db_c00002{bottom:635.148467pt;}
.y6ac_c00002{bottom:635.148600pt;}
.y90b_c00002{bottom:635.148853pt;}
.ydae_c00002{bottom:635.895333pt;}
.y1771_c00002{bottom:635.944133pt;}
.y1b57_c00002{bottom:635.945333pt;}
.y18cc_c00002{bottom:635.949333pt;}
.y67a_c00002{bottom:636.267333pt;}
.y18d9_c00002{bottom:636.748000pt;}
.y162f_c00002{bottom:636.964467pt;}
.y16f8_c00002{bottom:636.966707pt;}
.y95e_c00002{bottom:637.280267pt;}
.y991_c00002{bottom:637.282680pt;}
.y9aa_c00002{bottom:637.322413pt;}
.y1858_c00002{bottom:637.332855pt;}
.y8da_c00002{bottom:637.549107pt;}
.y11b6_c00002{bottom:637.760000pt;}
.y705_c00002{bottom:637.919760pt;}
.y1b7_c00002{bottom:638.156400pt;}
.y113_c00002{bottom:638.160133pt;}
.y39d_c00002{bottom:638.162067pt;}
.y379_c00002{bottom:638.162333pt;}
.y975_c00002{bottom:638.453227pt;}
.y3f1_c00002{bottom:638.930667pt;}
.yc61_c00002{bottom:639.413213pt;}
.yae2_c00002{bottom:639.413747pt;}
.ya83_c00002{bottom:639.414000pt;}
.yb08_c00002{bottom:639.414280pt;}
.yc88_c00002{bottom:639.414813pt;}
.ybef_c00002{bottom:639.415147pt;}
.yb80_c00002{bottom:639.415347pt;}
.yc15_c00002{bottom:639.417013pt;}
.y13eb_c00002{bottom:640.107827pt;}
.y15a_c00002{bottom:640.560400pt;}
.yea7_c00002{bottom:640.586627pt;}
.y12ce_c00002{bottom:640.587347pt;}
.ye2a_c00002{bottom:640.588000pt;}
.y11eb_c00002{bottom:640.588360pt;}
.yfd3_c00002{bottom:640.588627pt;}
.y107f_c00002{bottom:640.589693pt;}
.y12fc_c00002{bottom:640.589747pt;}
.y1696_c00002{bottom:640.590280pt;}
.yed4_c00002{bottom:640.590480pt;}
.y10db_c00002{bottom:640.590760pt;}
.y18af_c00002{bottom:641.065333pt;}
.y1a3f_c00002{bottom:641.226533pt;}
.y1a11_c00002{bottom:641.227600pt;}
.y5c2_c00002{bottom:641.493760pt;}
.y182f_c00002{bottom:641.545333pt;}
.y783_c00002{bottom:641.602293pt;}
.ye76_c00002{bottom:641.707893pt;}
.yaad_c00002{bottom:641.813453pt;}
.y188d_c00002{bottom:642.354133pt;}
.yfa8_c00002{bottom:642.400000pt;}
.y15c1_c00002{bottom:642.560000pt;}
.y4d5_c00002{bottom:642.880800pt;}
.y15a3_c00002{bottom:642.987880pt;}
.y14df_c00002{bottom:643.253333pt;}
.y7e_c00002{bottom:643.279067pt;}
.y42_c00002{bottom:645.728320pt;}
.y34_c00002{bottom:645.729253pt;}
.y401_c00002{bottom:645.729787pt;}
.y18_c00002{bottom:645.730667pt;}
.y258_c00002{bottom:645.731947pt;}
.yb_c00002{bottom:645.732000pt;}
.y1dc_c00002{bottom:645.732533pt;}
.y20f_c00002{bottom:645.733067pt;}
.y3c0_c00002{bottom:645.733413pt;}
.y442_c00002{bottom:645.735147pt;}
.y485_c00002{bottom:645.735280pt;}
.y232_c00002{bottom:645.735413pt;}
.y1182_c00002{bottom:646.507813pt;}
.y15c0_c00002{bottom:646.665333pt;}
.y26_c00002{bottom:646.851467pt;}
.yc40_c00002{bottom:646.985813pt;}
.yca6_c00002{bottom:646.986160pt;}
.yb3d_c00002{bottom:646.987093pt;}
.yb2b_c00002{bottom:646.987333pt;}
.y1184_c00002{bottom:647.680000pt;}
.y19bb_c00002{bottom:647.680013pt;}
.y18f1_c00002{bottom:647.840000pt;}
.ye0a_c00002{bottom:647.892253pt;}
.yddf_c00002{bottom:647.892787pt;}
.y141c_c00002{bottom:647.893613pt;}
.y1273_c00002{bottom:647.893627pt;}
.y1248_c00002{bottom:647.894427pt;}
.y151f_c00002{bottom:647.895000pt;}
.yd69_c00002{bottom:647.895333pt;}
.y1361_c00002{bottom:647.896067pt;}
.yf53_c00002{bottom:647.897013pt;}
.y1492_c00002{bottom:647.897373pt;}
.y1705_c00002{bottom:647.898307pt;}
.y1385_c00002{bottom:647.898867pt;}
.y1564_c00002{bottom:647.899240pt;}
.y1642_c00002{bottom:647.899267pt;}
.y1038_c00002{bottom:647.900613pt;}
.yf76_c00002{bottom:647.900747pt;}
.y9da_c00002{bottom:649.120147pt;}
.y251_c00002{bottom:649.200613pt;}
.y43b_c00002{bottom:649.202880pt;}
.y579_c00002{bottom:649.280267pt;}
.y86a_c00002{bottom:649.280760pt;}
.y13be_c00002{bottom:649.281333pt;}
.y5f1_c00002{bottom:649.287093pt;}
.y1857_c00002{bottom:649.332852pt;}
.y894_c00002{bottom:649.337293pt;}
.y61d_c00002{bottom:649.340960pt;}
.yc38_c00002{bottom:649.387333pt;}
.yb34_c00002{bottom:649.387547pt;}
.y6ab_c00002{bottom:649.547000pt;}
.y90a_c00002{bottom:649.547253pt;}
.y64a_c00002{bottom:649.547333pt;}
.y6da_c00002{bottom:649.547933pt;}
.y938_c00002{bottom:649.548320pt;}
.y1b11_c00002{bottom:649.549333pt;}
.y1aa6_c00002{bottom:649.868000pt;}
.y13ea_c00002{bottom:650.295333pt;}
.y1b33_c00002{bottom:650.505333pt;}
.y19bd_c00002{bottom:650.561253pt;}
.y679_c00002{bottom:650.667333pt;}
.y291_c00002{bottom:650.772000pt;}
.y162e_c00002{bottom:651.364467pt;}
.y16f7_c00002{bottom:651.366707pt;}
.y9a9_c00002{bottom:651.722413pt;}
.y5c1_c00002{bottom:651.733867pt;}
.y990_c00002{bottom:651.736280pt;}
.y159_c00002{bottom:652.080187pt;}
.y1770_c00002{bottom:652.424400pt;}
.y17b9_c00002{bottom:652.428000pt;}
.y1738_c00002{bottom:652.573333pt;}
.y1784_c00002{bottom:652.694667pt;}
.yaac_c00002{bottom:653.333760pt;}
.y782_c00002{bottom:653.441880pt;}
.y1a51_c00002{bottom:653.868000pt;}
.y974_c00002{bottom:654.133893pt;}
.y14fd_c00002{bottom:654.400000pt;}
.y12a6_c00002{bottom:654.507893pt;}
.y14de_c00002{bottom:654.828000pt;}
.yea6_c00002{bottom:654.986627pt;}
.ye29_c00002{bottom:654.988000pt;}
.y11ea_c00002{bottom:654.988360pt;}
.yfd2_c00002{bottom:654.988627pt;}
.y107e_c00002{bottom:654.989160pt;}
.y111f_c00002{bottom:654.989693pt;}
.yed3_c00002{bottom:654.990480pt;}
.y10da_c00002{bottom:654.990760pt;}
.y9c0_c00002{bottom:655.242280pt;}
.y1b56_c00002{bottom:655.305333pt;}
.y18cb_c00002{bottom:655.309333pt;}
.ye75_c00002{bottom:656.107893pt;}
.y11b3_c00002{bottom:656.108000pt;}
.y722_c00002{bottom:656.159907pt;}
.y19ba_c00002{bottom:656.480013pt;}
.y188c_c00002{bottom:656.914000pt;}
.y18ae_c00002{bottom:657.225333pt;}
.y19bc_c00002{bottom:657.707613pt;}
.y1a7d_c00002{bottom:657.708000pt;}
.y1181_c00002{bottom:658.133333pt;}
.yfa7_c00002{bottom:658.347813pt;}
.y14fc_c00002{bottom:658.505333pt;}
.y182e_c00002{bottom:659.465333pt;}
.yfa9_c00002{bottom:659.520000pt;}
.y18d_c00002{bottom:659.867467pt;}
.y112_c00002{bottom:659.868000pt;}
.y378_c00002{bottom:659.870200pt;}
.y1b6_c00002{bottom:659.915733pt;}
.y39c_c00002{bottom:659.922467pt;}
.y41_c00002{bottom:660.128320pt;}
.y33_c00002{bottom:660.129253pt;}
.y400_c00002{bottom:660.129787pt;}
.y17_c00002{bottom:660.130667pt;}
.y257_c00002{bottom:660.131947pt;}
.ya_c00002{bottom:660.132000pt;}
.y1db_c00002{bottom:660.132533pt;}
.y3bf_c00002{bottom:660.133413pt;}
.y441_c00002{bottom:660.134080pt;}
.y484_c00002{bottom:660.134213pt;}
.y231_c00002{bottom:660.135413pt;}
.y4cd_c00002{bottom:660.574533pt;}
.y9d9_c00002{bottom:660.906600pt;}
.y1a3e_c00002{bottom:661.066667pt;}
.yc60_c00002{bottom:661.119480pt;}
.yae1_c00002{bottom:661.120013pt;}
.ya82_c00002{bottom:661.120267pt;}
.ybee_c00002{bottom:661.121413pt;}
.yb07_c00002{bottom:661.174147pt;}
.yc87_c00002{bottom:661.174680pt;}
.yb7f_c00002{bottom:661.175213pt;}
.yc14_c00002{bottom:661.176880pt;}
.y25_c00002{bottom:661.251467pt;}
.y1856_c00002{bottom:661.332849pt;}
.yc3f_c00002{bottom:661.385813pt;}
.yca5_c00002{bottom:661.386160pt;}
.yb3c_c00002{bottom:661.387093pt;}
.yb2a_c00002{bottom:661.387333pt;}
.y15c8_c00002{bottom:662.292147pt;}
.ye09_c00002{bottom:662.292253pt;}
.ydde_c00002{bottom:662.292787pt;}
.y141b_c00002{bottom:662.293613pt;}
.y1272_c00002{bottom:662.293627pt;}
.y16ca_c00002{bottom:662.293747pt;}
.y1247_c00002{bottom:662.294427pt;}
.y151e_c00002{bottom:662.295000pt;}
.y12cd_c00002{bottom:662.295213pt;}
.yd68_c00002{bottom:662.295333pt;}
.y1360_c00002{bottom:662.296067pt;}
.yf52_c00002{bottom:662.297013pt;}
.y1491_c00002{bottom:662.297373pt;}
.y1704_c00002{bottom:662.298307pt;}
.y1384_c00002{bottom:662.298333pt;}
.y1641_c00002{bottom:662.298733pt;}
.y1563_c00002{bottom:662.299240pt;}
.y1037_c00002{bottom:662.300613pt;}
.yf75_c00002{bottom:662.300747pt;}
.y158_c00002{bottom:662.320293pt;}
.y3f0_c00002{bottom:662.610667pt;}
.y5c0_c00002{bottom:663.253653pt;}
.yaab_c00002{bottom:663.573867pt;}
.yc37_c00002{bottom:663.787333pt;}
.yb33_c00002{bottom:663.787547pt;}
.y17f4_c00002{bottom:663.893333pt;}
.y740_c00002{bottom:663.946933pt;}
.y6aa_c00002{bottom:663.947000pt;}
.y909_c00002{bottom:663.947253pt;}
.y649_c00002{bottom:663.947333pt;}
.y6d9_c00002{bottom:663.947400pt;}
.y4d4_c00002{bottom:663.948000pt;}
.y937_c00002{bottom:663.948320pt;}
.y7d_c00002{bottom:664.346267pt;}
.y12a5_c00002{bottom:664.695400pt;}
.y678_c00002{bottom:665.067333pt;}
.y1919_c00002{bottom:665.333960pt;}
.y15c5_c00002{bottom:665.758280pt;}
.y162d_c00002{bottom:665.764467pt;}
.y16f6_c00002{bottom:665.766707pt;}
.y721_c00002{bottom:666.346360pt;}
.y95c_c00002{bottom:666.773360pt;}
.y1180_c00002{bottom:666.933333pt;}
.y15a2_c00002{bottom:668.053480pt;}
.y199b_c00002{bottom:668.055200pt;}
.y19ad_c00002{bottom:668.108000pt;}
.y194a_c00002{bottom:668.213133pt;}
.y193c_c00002{bottom:668.213640pt;}
.y19ff_c00002{bottom:668.213653pt;}
.y176f_c00002{bottom:668.904667pt;}
.ye74_c00002{bottom:668.907893pt;}
.y1b10_c00002{bottom:668.909333pt;}
.y1b32_c00002{bottom:669.865333pt;}
.yfa6_c00002{bottom:669.973333pt;}
.y19fd_c00002{bottom:670.613347pt;}
.y19f4_c00002{bottom:670.613653pt;}
.y578_c00002{bottom:671.040133pt;}
.y869_c00002{bottom:671.040627pt;}
.y893_c00002{bottom:671.044093pt;}
.y5f0_c00002{bottom:671.046960pt;}
.y61c_c00002{bottom:671.047760pt;}
.y188b_c00002{bottom:671.473867pt;}
.y19f1_c00002{bottom:671.731867pt;}
.y19de_c00002{bottom:671.788400pt;}
.y17b8_c00002{bottom:671.789333pt;}
.y19e6_c00002{bottom:671.789867pt;}
.y1ad1_c00002{bottom:671.945333pt;}
.y11b2_c00002{bottom:672.108933pt;}
.y9d8_c00002{bottom:672.746707pt;}
.y11b4_c00002{bottom:673.225333pt;}
.y1855_c00002{bottom:673.332849pt;}
.y18ad_c00002{bottom:673.385333pt;}
.y5bf_c00002{bottom:673.440107pt;}
.y19f6_c00002{bottom:673.479800pt;}
.y157_c00002{bottom:673.840080pt;}
.y1918_c00002{bottom:674.133960pt;}
.y290_c00002{bottom:674.400000pt;}
.y40_c00002{bottom:674.528320pt;}
.y32_c00002{bottom:674.529253pt;}
.y16_c00002{bottom:674.530667pt;}
.y256_c00002{bottom:674.531947pt;}
.y9_c00002{bottom:674.532000pt;}
.y3be_c00002{bottom:674.533413pt;}
.y440_c00002{bottom:674.534080pt;}
.y483_c00002{bottom:674.534213pt;}
.y230_c00002{bottom:674.535413pt;}
.y1b55_c00002{bottom:674.665333pt;}
.y18ca_c00002{bottom:674.669333pt;}
.yaaa_c00002{bottom:675.093653pt;}
.y1949_c00002{bottom:675.413133pt;}
.y193b_c00002{bottom:675.413640pt;}
.y24_c00002{bottom:675.651467pt;}
.y17f6_c00002{bottom:675.734667pt;}
.yc3e_c00002{bottom:675.785813pt;}
.yca4_c00002{bottom:675.786160pt;}
.yb3b_c00002{bottom:675.787093pt;}
.yb29_c00002{bottom:675.787333pt;}
.y1972_c00002{bottom:676.214667pt;}
.y19fc_c00002{bottom:676.533133pt;}
.y19f3_c00002{bottom:676.533440pt;}
.yddd_c00002{bottom:676.692787pt;}
.y141a_c00002{bottom:676.693613pt;}
.yea5_c00002{bottom:676.693960pt;}
.y1246_c00002{bottom:676.694427pt;}
.y12cc_c00002{bottom:676.695213pt;}
.yd67_c00002{bottom:676.695333pt;}
.y135f_c00002{bottom:676.696067pt;}
.yf51_c00002{bottom:676.697013pt;}
.y1490_c00002{bottom:676.697373pt;}
.ye08_c00002{bottom:676.744920pt;}
.y15c7_c00002{bottom:676.745747pt;}
.y1449_c00002{bottom:676.746280pt;}
.y1271_c00002{bottom:676.746293pt;}
.y16c9_c00002{bottom:676.747347pt;}
.ydad_c00002{bottom:676.748000pt;}
.y151d_c00002{bottom:676.748600pt;}
.y1608_c00002{bottom:676.749080pt;}
.y12fb_c00002{bottom:676.749613pt;}
.y1695_c00002{bottom:676.750147pt;}
.y14b5_c00002{bottom:676.750973pt;}
.y1703_c00002{bottom:676.751907pt;}
.y1383_c00002{bottom:676.751933pt;}
.y1640_c00002{bottom:676.752333pt;}
.y1562_c00002{bottom:676.752840pt;}
.y1036_c00002{bottom:676.754213pt;}
.yf74_c00002{bottom:676.754347pt;}
.y1758_c00002{bottom:676.854667pt;}
.y781_c00002{bottom:677.068413pt;}
.y182d_c00002{bottom:677.385333pt;}
.y19f5_c00002{bottom:677.813653pt;}
.y11a1_c00002{bottom:678.080000pt;}
.yc36_c00002{bottom:678.187333pt;}
.yb32_c00002{bottom:678.187547pt;}
.y73f_c00002{bottom:678.346933pt;}
.y6a9_c00002{bottom:678.347000pt;}
.y908_c00002{bottom:678.347253pt;}
.y648_c00002{bottom:678.347333pt;}
.y757_c00002{bottom:678.398533pt;}
.y720_c00002{bottom:678.400000pt;}
.y6d8_c00002{bottom:678.400467pt;}
.y936_c00002{bottom:678.400987pt;}
.y117f_c00002{bottom:678.507733pt;}
.yfa5_c00002{bottom:678.773333pt;}
.ye73_c00002{bottom:679.148000pt;}
.y15a1_c00002{bottom:679.413373pt;}
.y677_c00002{bottom:679.467333pt;}
.y14dd_c00002{bottom:679.893067pt;}
.y162c_c00002{bottom:680.217533pt;}
.y16f5_c00002{bottom:680.220307pt;}
.y1a3d_c00002{bottom:680.906800pt;}
.y1b5_c00002{bottom:681.620933pt;}
.y111_c00002{bottom:681.627333pt;}
.y39b_c00002{bottom:681.629800pt;}
.y377_c00002{bottom:681.630067pt;}
.y11a0_c00002{bottom:682.185333pt;}
.yae0_c00002{bottom:682.879880pt;}
.ya81_c00002{bottom:682.880133pt;}
.yb06_c00002{bottom:682.880413pt;}
.ybed_c00002{bottom:682.880747pt;}
.yc86_c00002{bottom:682.880947pt;}
.yb7e_c00002{bottom:682.881480pt;}
.yc13_c00002{bottom:682.883147pt;}
.y11b1_c00002{bottom:683.734973pt;}
.y156_c00002{bottom:684.027587pt;}
.y9d7_c00002{bottom:684.586293pt;}
.y5be_c00002{bottom:684.959893pt;}
.yaa9_c00002{bottom:685.280107pt;}
.y1854_c00002{bottom:685.332847pt;}
.y176e_c00002{bottom:685.385333pt;}
.y1905_c00002{bottom:685.704133pt;}
.y1917_c00002{bottom:685.760000pt;}
.y1aa5_c00002{bottom:685.865333pt;}
.y1737_c00002{bottom:686.014667pt;}
.y188a_c00002{bottom:686.033733pt;}
.y3ef_c00002{bottom:686.240000pt;}
.y4d3_c00002{bottom:687.679733pt;}
.y7c_c00002{bottom:688.079067pt;}
.y1b0f_c00002{bottom:688.269333pt;}
.y19f0_c00002{bottom:688.372000pt;}
.y19dd_c00002{bottom:688.428533pt;}
.y19e5_c00002{bottom:688.430000pt;}
.y780_c00002{bottom:688.908000pt;}
.y31_c00002{bottom:688.929253pt;}
.y15_c00002{bottom:688.930667pt;}
.y8_c00002{bottom:688.932000pt;}
.y22f_c00002{bottom:688.935413pt;}
.y3f_c00002{bottom:688.983520pt;}
.y40b_c00002{bottom:688.984453pt;}
.y23_c00002{bottom:688.986400pt;}
.y20e_c00002{bottom:688.986667pt;}
.y255_c00002{bottom:688.987680pt;}
.y3bd_c00002{bottom:688.988613pt;}
.y482_c00002{bottom:688.988880pt;}
.y43f_c00002{bottom:688.989280pt;}
.y1b31_c00002{bottom:689.225333pt;}
.y1a4f_c00002{bottom:689.385333pt;}
.y1971_c00002{bottom:689.387733pt;}
.y195e_c00002{bottom:689.440933pt;}
.y1966_c00002{bottom:689.441333pt;}
.y18ac_c00002{bottom:689.545333pt;}
.yfcc_c00002{bottom:689.920000pt;}
.yc3d_c00002{bottom:690.185813pt;}
.yca3_c00002{bottom:690.186160pt;}
.yb3a_c00002{bottom:690.187093pt;}
.yb28_c00002{bottom:690.187333pt;}
.yc44_c00002{bottom:690.239413pt;}
.ycab_c00002{bottom:690.239760pt;}
.yb43_c00002{bottom:690.240693pt;}
.yfa4_c00002{bottom:690.347840pt;}
.ye07_c00002{bottom:691.144920pt;}
.yddc_c00002{bottom:691.145453pt;}
.y15c6_c00002{bottom:691.145747pt;}
.y1270_c00002{bottom:691.145760pt;}
.y1448_c00002{bottom:691.146280pt;}
.y1245_c00002{bottom:691.147093pt;}
.y1419_c00002{bottom:691.147213pt;}
.y16c8_c00002{bottom:691.147347pt;}
.yea4_c00002{bottom:691.147560pt;}
.yd66_c00002{bottom:691.148000pt;}
.y11e9_c00002{bottom:691.148227pt;}
.yfd1_c00002{bottom:691.148493pt;}
.y151c_c00002{bottom:691.148600pt;}
.y135e_c00002{bottom:691.148733pt;}
.y12cb_c00002{bottom:691.148813pt;}
.y107d_c00002{bottom:691.149027pt;}
.y1607_c00002{bottom:691.149080pt;}
.y17b7_c00002{bottom:691.149333pt;}
.y111e_c00002{bottom:691.149560pt;}
.y12fa_c00002{bottom:691.149613pt;}
.y148f_c00002{bottom:691.150040pt;}
.y10d9_c00002{bottom:691.150093pt;}
.y1694_c00002{bottom:691.150147pt;}
.yf50_c00002{bottom:691.150613pt;}
.y14b4_c00002{bottom:691.150973pt;}
.y1702_c00002{bottom:691.151907pt;}
.y163f_c00002{bottom:691.152333pt;}
.y1382_c00002{bottom:691.152467pt;}
.y1561_c00002{bottom:691.152840pt;}
.y1035_c00002{bottom:691.154213pt;}
.yf73_c00002{bottom:691.154347pt;}
.y14dc_c00002{bottom:691.252960pt;}
.y11b0_c00002{bottom:692.481333pt;}
.yc35_c00002{bottom:692.640000pt;}
.yb31_c00002{bottom:692.640213pt;}
.y756_c00002{bottom:692.798533pt;}
.y73e_c00002{bottom:692.799600pt;}
.y577_c00002{bottom:692.800000pt;}
.y6d7_c00002{bottom:692.800467pt;}
.y868_c00002{bottom:692.800493pt;}
.y6a8_c00002{bottom:692.800600pt;}
.y907_c00002{bottom:692.800853pt;}
.y935_c00002{bottom:692.800987pt;}
.y98f_c00002{bottom:692.802947pt;}
.y892_c00002{bottom:692.803427pt;}
.y5ef_c00002{bottom:692.806827pt;}
.y61b_c00002{bottom:692.808160pt;}
.y1a7b_c00002{bottom:693.065333pt;}
.y676_c00002{bottom:693.920000pt;}
.y4cc_c00002{bottom:694.014667pt;}
.yfca_c00002{bottom:694.025333pt;}
.y18c9_c00002{bottom:694.028000pt;}
.yed2_c00002{bottom:694.616493pt;}
.y162b_c00002{bottom:694.617533pt;}
.y16f4_c00002{bottom:694.620307pt;}
.y5bd_c00002{bottom:695.200000pt;}
.y182c_c00002{bottom:695.305333pt;}
.y155_c00002{bottom:695.547893pt;}
.y18dd_c00002{bottom:695.680000pt;}
.yaa8_c00002{bottom:696.799893pt;}
.y1853_c00002{bottom:697.332844pt;}
.y1889_c00002{bottom:700.593600pt;}
.y1a3c_c00002{bottom:700.746933pt;}
.y1a10_c00002{bottom:700.747867pt;}
.y176d_c00002{bottom:701.865600pt;}
.y14db_c00002{bottom:703.093067pt;}
.y1b4_c00002{bottom:703.380800pt;}
.y3e_c00002{bottom:703.383520pt;}
.y30_c00002{bottom:703.384453pt;}
.y7_c00002{bottom:703.386667pt;}
.y18c_c00002{bottom:703.387200pt;}
.y254_c00002{bottom:703.387680pt;}
.y3bc_c00002{bottom:703.388613pt;}
.y481_c00002{bottom:703.388880pt;}
.y43e_c00002{bottom:703.389280pt;}
.y39a_c00002{bottom:703.389667pt;}
.y376_c00002{bottom:703.389933pt;}
.y22e_c00002{bottom:703.390613pt;}
.y117e_c00002{bottom:703.573333pt;}
.y11d2_c00002{bottom:703.680000pt;}
.y11af_c00002{bottom:704.068080pt;}
.y22_c00002{bottom:704.506667pt;}
.yc3c_c00002{bottom:704.639413pt;}
.yadf_c00002{bottom:704.639747pt;}
.yb39_c00002{bottom:704.639760pt;}
.ya80_c00002{bottom:704.640000pt;}
.ybec_c00002{bottom:704.640080pt;}
.yb05_c00002{bottom:704.640280pt;}
.yb42_c00002{bottom:704.640693pt;}
.yc85_c00002{bottom:704.640813pt;}
.yb7d_c00002{bottom:704.641347pt;}
.yc12_c00002{bottom:704.643013pt;}
.y19ef_c00002{bottom:705.012133pt;}
.y19dc_c00002{bottom:705.068667pt;}
.y19e4_c00002{bottom:705.069600pt;}
.y18ab_c00002{bottom:705.705333pt;}
.y18dc_c00002{bottom:705.707867pt;}
.yb30_c00002{bottom:705.760000pt;}
.y154_c00002{bottom:705.788000pt;}
.y1970_c00002{bottom:706.028933pt;}
.y1965_c00002{bottom:706.080933pt;}
.y195d_c00002{bottom:706.081067pt;}
.y43a_c00002{bottom:706.853947pt;}
.yaa7_c00002{bottom:707.040000pt;}
.y4d2_c00002{bottom:707.413600pt;}
.y1b0e_c00002{bottom:707.628000pt;}
.y11d1_c00002{bottom:707.785333pt;}
.y7b_c00002{bottom:707.811333pt;}
.y19e9_c00002{bottom:708.107600pt;}
.y9d6_c00002{bottom:708.266560pt;}
.y1b30_c00002{bottom:708.585333pt;}
.y1852_c00002{bottom:709.332841pt;}
.y28e_c00002{bottom:709.869333pt;}
.y17b6_c00002{bottom:710.509333pt;}
.y182b_c00002{bottom:713.225333pt;}
.yd65_c00002{bottom:713.280160pt;}
.y1b54_c00002{bottom:713.385333pt;}
.y575_c00002{bottom:713.386427pt;}
.y18c8_c00002{bottom:713.389333pt;}
.y117d_c00002{bottom:714.933227pt;}
.y1888_c00002{bottom:715.153467pt;}
.yfa3_c00002{bottom:715.413440pt;}
.y176c_c00002{bottom:718.345867pt;}
.y9d5_c00002{bottom:720.106667pt;}
.y1a3b_c00002{bottom:720.587067pt;}
.y1a0f_c00002{bottom:720.588533pt;}
.y1851_c00002{bottom:721.332841pt;}
.y19ee_c00002{bottom:721.652267pt;}
.y19db_c00002{bottom:721.708800pt;}
.y19e3_c00002{bottom:721.709733pt;}
.y18aa_c00002{bottom:721.865333pt;}
.y196f_c00002{bottom:722.669067pt;}
.y1964_c00002{bottom:722.721067pt;}
.y195c_c00002{bottom:722.774800pt;}
.y4cb_c00002{bottom:724.414667pt;}
.yd64_c00002{bottom:725.120267pt;}
.y574_c00002{bottom:725.226533pt;}
.y6_c00002{bottom:725.519867pt;}
.y18db_c00002{bottom:725.655200pt;}
.y1969_c00002{bottom:725.760933pt;}
.yfa2_c00002{bottom:726.773333pt;}
.y1b0d_c00002{bottom:726.989333pt;}
.y1b2f_c00002{bottom:727.945333pt;}
.y11ae_c00002{bottom:729.187413pt;}
.y1887_c00002{bottom:729.713333pt;}
.y17b5_c00002{bottom:729.869333pt;}
.y182a_c00002{bottom:731.145333pt;}
.y1b53_c00002{bottom:732.745333pt;}
.y18c7_c00002{bottom:732.749333pt;}
.y1850_c00002{bottom:733.333360pt;}
.y28c_c00002{bottom:733.549333pt;}
.y176b_c00002{bottom:734.826533pt;}
.y1928_c00002{bottom:736.482800pt;}
.y1932_c00002{bottom:736.483467pt;}
.y192d_c00002{bottom:736.483600pt;}
.y17d5_c00002{bottom:737.549333pt;}
.y19f8_c00002{bottom:737.603867pt;}
.y18a9_c00002{bottom:738.025333pt;}
.y19ed_c00002{bottom:738.292400pt;}
.y19da_c00002{bottom:738.348933pt;}
.y19e2_c00002{bottom:738.349867pt;}
.y196e_c00002{bottom:739.309200pt;}
.y1963_c00002{bottom:739.361200pt;}
.y195b_c00002{bottom:739.414400pt;}
.y1a3a_c00002{bottom:740.427200pt;}
.y1a0e_c00002{bottom:740.428133pt;}
.y19e8_c00002{bottom:741.387867pt;}
.y573_c00002{bottom:741.546267pt;}
.y5_c00002{bottom:741.947467pt;}
.y1886_c00002{bottom:744.273200pt;}
.y184f_c00002{bottom:745.333359pt;}
.y3ed_c00002{bottom:745.389333pt;}
.y18da_c00002{bottom:745.601600pt;}
.y1b0c_c00002{bottom:746.349333pt;}
.y1b2e_c00002{bottom:747.305333pt;}
.y1829_c00002{bottom:749.065333pt;}
.y17b4_c00002{bottom:749.228000pt;}
.y176a_c00002{bottom:751.306800pt;}
.y1b52_c00002{bottom:752.105333pt;}
.y18c6_c00002{bottom:752.109333pt;}
.y18a8_c00002{bottom:754.185333pt;}
.y1927_c00002{bottom:754.829200pt;}
.y1931_c00002{bottom:754.829333pt;}
.y1935_c00002{bottom:754.829867pt;}
.y192c_c00002{bottom:754.830000pt;}
.y19ec_c00002{bottom:754.932000pt;}
.y19d9_c00002{bottom:754.989067pt;}
.y19e1_c00002{bottom:754.990000pt;}
.y19cf_c00002{bottom:755.521333pt;}
.y196d_c00002{bottom:755.948800pt;}
.y19f7_c00002{bottom:755.950267pt;}
.y1962_c00002{bottom:756.001333pt;}
.y195a_c00002{bottom:756.054000pt;}
.y17d4_c00002{bottom:756.909333pt;}
.y28b_c00002{bottom:757.172000pt;}
.y184e_c00002{bottom:757.333357pt;}
.y19e7_c00002{bottom:758.028000pt;}
.y1885_c00002{bottom:758.833067pt;}
.y1968_c00002{bottom:759.041200pt;}
.yfc9_c00002{bottom:759.936667pt;}
.y11d0_c00002{bottom:759.945467pt;}
.y1170_c00002{bottom:759.945600pt;}
.ybb5_c00002{bottom:759.945733pt;}
.y100a_c00002{bottom:759.945827pt;}
.yfcf_c00002{bottom:759.945867pt;}
.y16c2_c00002{bottom:759.946267pt;}
.ye27_c00002{bottom:759.946667pt;}
.y10b9_c00002{bottom:759.946800pt;}
.y15bf_c00002{bottom:759.947067pt;}
.y1548_c00002{bottom:759.947147pt;}
.y789_c00002{bottom:759.947333pt;}
.y119f_c00002{bottom:759.947467pt;}
.y1514_c00002{bottom:759.947533pt;}
.y14fb_c00002{bottom:759.947693pt;}
.y13bd_c00002{bottom:759.947733pt;}
.yc5d_c00002{bottom:759.947867pt;}
.y15f1_c00002{bottom:759.947880pt;}
.yb59_c00002{bottom:759.948667pt;}
.y77c_c00002{bottom:759.948933pt;}
.y15f8_c00002{bottom:759.949040pt;}
.y158d_c00002{bottom:759.949053pt;}
.y154c_c00002{bottom:759.949227pt;}
.y14d8_c00002{bottom:759.949360pt;}
.y159e_c00002{bottom:759.949467pt;}
.y146d_c00002{bottom:759.949480pt;}
.y1500_c00002{bottom:759.949893pt;}
.y704_c00002{bottom:759.950200pt;}
.y15ff_c00002{bottom:759.950293pt;}
.y129d_c00002{bottom:759.950427pt;}
.y9e0_c00002{bottom:759.950440pt;}
.y8bf_c00002{bottom:759.950467pt;}
.y1211_c00002{bottom:759.950493pt;}
.y1596_c00002{bottom:759.950560pt;}
.y1060_c00002{bottom:759.950627pt;}
.yefd_c00002{bottom:759.950747pt;}
.y10a9_c00002{bottom:759.950893pt;}
.y16f3_c00002{bottom:759.950947pt;}
.y11ab_c00002{bottom:759.951387pt;}
.y9ea_c00002{bottom:759.951400pt;}
.y1000_c00002{bottom:759.951453pt;}
.y1679_c00002{bottom:759.951493pt;}
.y172f_c00002{bottom:759.951600pt;}
.y95b_c00002{bottom:759.951787pt;}
.y13ad_c00002{bottom:759.951907pt;}
.y117a_c00002{bottom:759.951920pt;}
.yff7_c00002{bottom:759.951960pt;}
.y11e7_c00002{bottom:759.952093pt;}
.y16c0_c00002{bottom:759.952147pt;}
.y10b3_c00002{bottom:759.952187pt;}
.y1106_c00002{bottom:759.952227pt;}
.yf9f_c00002{bottom:759.952480pt;}
.y1141_c00002{bottom:759.952760pt;}
.y1326_c00002{bottom:759.952813pt;}
.y1666_c00002{bottom:759.953013pt;}
.y116b_c00002{bottom:759.953027pt;}
.y1628_c00002{bottom:759.953080pt;}
.y1676_c00002{bottom:759.953347pt;}
.y1736_c00002{bottom:759.953613pt;}
.y1503_c00002{bottom:759.954147pt;}
.y7d2_c00002{bottom:759.956067pt;}
.y7cc_c00002{bottom:759.957667pt;}
.y7d7_c00002{bottom:759.957680pt;}
.y647_c00002{bottom:759.958213pt;}
.y7cf_c00002{bottom:759.959147pt;}
.yb27_c00002{bottom:759.962813pt;}
.yca2_c00002{bottom:759.963347pt;}
.yb9f_c00002{bottom:759.965347pt;}
.yc34_c00002{bottom:759.965547pt;}
.y1a39_c00002{bottom:760.267333pt;}
.y1a0d_c00002{bottom:760.268800pt;}
.y1d9_c00002{bottom:760.341733pt;}
.y2a4_c00002{bottom:760.344133pt;}
.y64_c00002{bottom:760.346800pt;}
.y3ba_c00002{bottom:760.348867pt;}
.y283_c00002{bottom:760.351173pt;}
.y1ad0_c00002{bottom:761.705333pt;}
.y1b0b_c00002{bottom:765.709333pt;}
.y1b2d_c00002{bottom:766.665333pt;}
.y1828_c00002{bottom:766.985333pt;}
.y1769_c00002{bottom:767.786533pt;}
.y17b3_c00002{bottom:768.589333pt;}
.y3ec_c00002{bottom:769.010667pt;}
.y184d_c00002{bottom:769.333357pt;}
.y18a7_c00002{bottom:770.345333pt;}
.y1b51_c00002{bottom:771.465333pt;}
.y18c5_c00002{bottom:771.469333pt;}
.y19eb_c00002{bottom:771.573200pt;}
.y19e0_c00002{bottom:771.628533pt;}
.y19d8_c00002{bottom:771.629200pt;}
.y1aa4_c00002{bottom:772.265333pt;}
.y196c_c00002{bottom:772.588933pt;}
.y1961_c00002{bottom:772.641467pt;}
.y1959_c00002{bottom:772.693600pt;}
.y19fe_c00002{bottom:773.173333pt;}
.y1934_c00002{bottom:773.176267pt;}
.y192b_c00002{bottom:773.176400pt;}
.y1926_c00002{bottom:773.176533pt;}
.y1930_c00002{bottom:773.177200pt;}
.y1884_c00002{bottom:773.392933pt;}
.y19ce_c00002{bottom:773.867333pt;}
.y1a4e_c00002{bottom:774.985333pt;}
.y1967_c00002{bottom:775.681333pt;}
.y17d3_c00002{bottom:776.269333pt;}
.yfc8_c00002{bottom:777.697067pt;}
.y11cf_c00002{bottom:777.705333pt;}
.y116f_c00002{bottom:777.705467pt;}
.ybb4_c00002{bottom:777.705600pt;}
.y1009_c00002{bottom:777.705693pt;}
.yfce_c00002{bottom:777.705733pt;}
.ye26_c00002{bottom:777.706533pt;}
.y15be_c00002{bottom:777.706933pt;}
.y10b8_c00002{bottom:777.707200pt;}
.y1547_c00002{bottom:777.707547pt;}
.y788_c00002{bottom:777.707733pt;}
.y15f0_c00002{bottom:777.707747pt;}
.y1513_c00002{bottom:777.707933pt;}
.y14fa_c00002{bottom:777.708093pt;}
.y13bc_c00002{bottom:777.708133pt;}
.yc5c_c00002{bottom:777.708267pt;}
.y1674_c00002{bottom:777.708800pt;}
.y119e_c00002{bottom:777.708933pt;}
.yb58_c00002{bottom:777.709067pt;}
.y77b_c00002{bottom:777.709333pt;}
.y15f7_c00002{bottom:777.709440pt;}
.y158c_c00002{bottom:777.709453pt;}
.y154b_c00002{bottom:777.709627pt;}
.y14d7_c00002{bottom:777.709760pt;}
.y159d_c00002{bottom:777.709867pt;}
.y146c_c00002{bottom:777.709880pt;}
.y14ff_c00002{bottom:777.710293pt;}
.y703_c00002{bottom:777.710600pt;}
.yefc_c00002{bottom:777.710613pt;}
.y15fe_c00002{bottom:777.710693pt;}
.y16f2_c00002{bottom:777.710813pt;}
.y129c_c00002{bottom:777.710827pt;}
.y9df_c00002{bottom:777.710840pt;}
.y8be_c00002{bottom:777.710867pt;}
.y1210_c00002{bottom:777.710893pt;}
.y1595_c00002{bottom:777.710960pt;}
.y105f_c00002{bottom:777.711027pt;}
.y95a_c00002{bottom:777.711120pt;}
.y9e9_c00002{bottom:777.711267pt;}
.y10a8_c00002{bottom:777.711293pt;}
.y1678_c00002{bottom:777.711360pt;}
.y11e6_c00002{bottom:777.711427pt;}
.y10b2_c00002{bottom:777.711520pt;}
.y1179_c00002{bottom:777.711787pt;}
.yfff_c00002{bottom:777.711853pt;}
.y172e_c00002{bottom:777.712000pt;}
.y1105_c00002{bottom:777.712093pt;}
.y13ac_c00002{bottom:777.712307pt;}
.yf9e_c00002{bottom:777.712347pt;}
.yff6_c00002{bottom:777.712360pt;}
.y16bf_c00002{bottom:777.712547pt;}
.y1140_c00002{bottom:777.712627pt;}
.y116a_c00002{bottom:777.712893pt;}
.y1325_c00002{bottom:777.713213pt;}
.y1665_c00002{bottom:777.713413pt;}
.y1627_c00002{bottom:777.713480pt;}
.y1502_c00002{bottom:777.714547pt;}
.y7d1_c00002{bottom:777.716467pt;}
.y7cb_c00002{bottom:777.717533pt;}
.y7d6_c00002{bottom:777.717547pt;}
.y646_c00002{bottom:777.718080pt;}
.y7ce_c00002{bottom:777.718480pt;}
.yb26_c00002{bottom:777.724280pt;}
.yca1_c00002{bottom:777.724813pt;}
.yb9e_c00002{bottom:777.726813pt;}
.yc33_c00002{bottom:777.727013pt;}
.y1d8_c00002{bottom:778.101600pt;}
.y2a3_c00002{bottom:778.104000pt;}
.y63_c00002{bottom:778.106667pt;}
.y3b9_c00002{bottom:778.108733pt;}
.y282_c00002{bottom:778.111040pt;}
.y1acf_c00002{bottom:778.825333pt;}
.y1a38_c00002{bottom:780.107467pt;}
.y1a0c_c00002{bottom:780.109467pt;}
.y184c_c00002{bottom:781.333356pt;}
.y1768_c00002{bottom:784.267200pt;}
.y1827_c00002{bottom:784.905333pt;}
.y1b0a_c00002{bottom:785.069333pt;}
.y1b2c_c00002{bottom:786.025333pt;}
.y18a6_c00002{bottom:786.505333pt;}
.y17b2_c00002{bottom:787.949333pt;}
.y1883_c00002{bottom:787.952800pt;}
.y19ea_c00002{bottom:788.213333pt;}
.y19df_c00002{bottom:788.268667pt;}
.y19d7_c00002{bottom:788.269333pt;}
.y1aa3_c00002{bottom:788.745333pt;}
.y196b_c00002{bottom:789.229067pt;}
.y1960_c00002{bottom:789.281067pt;}
.y1958_c00002{bottom:789.333200pt;}
.y1b50_c00002{bottom:790.825333pt;}
.y18c4_c00002{bottom:790.828000pt;}
.y1a4d_c00002{bottom:791.305333pt;}
.y1950_c00002{bottom:791.521333pt;}
.y192a_c00002{bottom:791.522800pt;}
.y1925_c00002{bottom:791.522933pt;}
.y192f_c00002{bottom:791.523600pt;}
.y19cd_c00002{bottom:792.214667pt;}
.y288_c00002{bottom:792.690667pt;}
.y184b_c00002{bottom:793.333355pt;}
.y1a7a_c00002{bottom:793.865333pt;}
.y17d2_c00002{bottom:795.628000pt;}
.y1ace_c00002{bottom:795.945333pt;}
.y572_c00002{bottom:797.493600pt;}
.y4_c00002{bottom:797.892267pt;}
.y1a37_c00002{bottom:799.947600pt;}
.y1a0b_c00002{bottom:799.950133pt;}
.y1767_c00002{bottom:800.746933pt;}
.y1882_c00002{bottom:802.512667pt;}
.y18a5_c00002{bottom:802.665333pt;}
.y1826_c00002{bottom:802.825333pt;}
.y1b09_c00002{bottom:804.428000pt;}
.y77f_c00002{bottom:804.640000pt;}
.y19d6_c00002{bottom:805.069333pt;}
.y1aa2_c00002{bottom:805.225333pt;}
.y184a_c00002{bottom:805.333353pt;}
.y1b2b_c00002{bottom:805.385333pt;}
.y196a_c00002{bottom:805.869200pt;}
.y195f_c00002{bottom:805.921200pt;}
.y1957_c00002{bottom:805.973333pt;}
.y17b1_c00002{bottom:807.309333pt;}
.y1a4c_c00002{bottom:807.625333pt;}
.y1929_c00002{bottom:809.869200pt;}
.y1924_c00002{bottom:809.869333pt;}
.y1933_c00002{bottom:809.869467pt;}
.y192e_c00002{bottom:809.870000pt;}
.y1a79_c00002{bottom:810.025333pt;}
.y1b4f_c00002{bottom:810.185333pt;}
.y18c3_c00002{bottom:810.189333pt;}
.y19d0_c00002{bottom:812.106933pt;}
.y1acd_c00002{bottom:813.065333pt;}
.y571_c00002{bottom:814.027467pt;}
.y3_c00002{bottom:814.427733pt;}
.y17d1_c00002{bottom:814.989333pt;}
.y1881_c00002{bottom:817.072533pt;}
.y1766_c00002{bottom:817.227600pt;}
.y1849_c00002{bottom:817.333353pt;}
.y18a4_c00002{bottom:818.825333pt;}
.y1a36_c00002{bottom:819.787733pt;}
.y1a0a_c00002{bottom:819.790800pt;}
.y1825_c00002{bottom:820.745333pt;}
.y1aa1_c00002{bottom:821.705333pt;}
.y1956_c00002{bottom:822.773333pt;}
.y1b08_c00002{bottom:823.789333pt;}
.y1a4b_c00002{bottom:823.945333pt;}
.y1b2a_c00002{bottom:824.745333pt;}
.y1a78_c00002{bottom:826.185333pt;}
.y17b0_c00002{bottom:826.669333pt;}
.y78a_c00002{bottom:827.305333pt;}
.y1848_c00002{bottom:829.333352pt;}
.y1b4e_c00002{bottom:829.545333pt;}
.y18c2_c00002{bottom:829.549333pt;}
.y1951_c00002{bottom:829.763067pt;}
.y1936_c00002{bottom:829.763733pt;}
.y1acc_c00002{bottom:830.185333pt;}
.y1880_c00002{bottom:831.632400pt;}
.y1765_c00002{bottom:833.708267pt;}
.y570_c00002{bottom:833.761333pt;}
.y2_c00002{bottom:834.160000pt;}
.y17d0_c00002{bottom:834.349333pt;}
.y18a3_c00002{bottom:834.985333pt;}
.y4d1_c00002{bottom:836.533333pt;}
.y7a_c00002{bottom:836.930667pt;}
.y1aa0_c00002{bottom:838.185333pt;}
.y1824_c00002{bottom:838.665333pt;}
.y1a4a_c00002{bottom:840.265333pt;}
.y1a35_c00002{bottom:840.587733pt;}
.y1a09_c00002{bottom:840.590267pt;}
.y1847_c00002{bottom:841.333351pt;}
.y1a77_c00002{bottom:842.345333pt;}
.y1b07_c00002{bottom:843.149333pt;}
.y1b29_c00002{bottom:844.105333pt;}
.y17af_c00002{bottom:846.028000pt;}
.y187f_c00002{bottom:846.192267pt;}
.y1acb_c00002{bottom:847.305333pt;}
.y1b4d_c00002{bottom:848.905333pt;}
.y18c1_c00002{bottom:848.909333pt;}
.y1764_c00002{bottom:850.188933pt;}
.y4d0_c00002{bottom:850.936520pt;}
.y18a2_c00002{bottom:851.145333pt;}
.y79_c00002{bottom:851.332293pt;}
.y19f2_c00002{bottom:853.225200pt;}
.y19d5_c00002{bottom:853.227600pt;}
.y1846_c00002{bottom:853.333349pt;}
.y17cf_c00002{bottom:853.709333pt;}
.y1a9f_c00002{bottom:854.665333pt;}
.y4cf_c00002{bottom:855.202667pt;}
.y78_c00002{bottom:855.600000pt;}
.y1823_c00002{bottom:856.585333pt;}
.y1a76_c00002{bottom:858.505333pt;}
.y1a34_c00002{bottom:859.467467pt;}
.y1a08_c00002{bottom:859.470533pt;}
.y187e_c00002{bottom:860.752133pt;}
.y1b06_c00002{bottom:862.509333pt;}
.y1b28_c00002{bottom:863.465333pt;}
.y1aca_c00002{bottom:864.425333pt;}
.y1845_c00002{bottom:865.333349pt;}
.y17ae_c00002{bottom:865.389333pt;}
.y1763_c00002{bottom:866.669200pt;}
.y18a1_c00002{bottom:867.305333pt;}
.y1b4c_c00002{bottom:868.265333pt;}
.y18c0_c00002{bottom:868.269333pt;}
.y1a9e_c00002{bottom:871.145333pt;}
.y1a49_c00002{bottom:872.905333pt;}
.y17ce_c00002{bottom:873.069333pt;}
.y1822_c00002{bottom:874.505333pt;}
.y1a75_c00002{bottom:874.665333pt;}
.y187d_c00002{bottom:875.312000pt;}
.y1844_c00002{bottom:877.333348pt;}
.y1a33_c00002{bottom:879.307600pt;}
.y1a07_c00002{bottom:879.310133pt;}
.y1ac8_c00002{bottom:881.545333pt;}
.y1b05_c00002{bottom:881.869333pt;}
.y1762_c00002{bottom:883.149867pt;}
.y18a0_c00002{bottom:883.465333pt;}
.y17ac_c00002{bottom:884.749333pt;}
.y1a9d_c00002{bottom:887.625333pt;}
.y1afd_c00002{bottom:887.628000pt;}
.y1a48_c00002{bottom:889.225333pt;}
.y1843_c00002{bottom:889.333347pt;}
.y187c_c00002{bottom:889.871867pt;}
.y1a74_c00002{bottom:890.825333pt;}
.y18bf_c00002{bottom:891.630933pt;}
.y1821_c00002{bottom:892.425333pt;}
.y17cd_c00002{bottom:892.428000pt;}
.y1ac6_c00002{bottom:898.665333pt;}
.y1a32_c00002{bottom:899.147733pt;}
.y1a06_c00002{bottom:899.150800pt;}
.y189f_c00002{bottom:899.625333pt;}
.y1761_c00002{bottom:899.630133pt;}
.y1b04_c00002{bottom:901.228000pt;}
.y1842_c00002{bottom:901.333345pt;}
.y1a9c_c00002{bottom:904.105333pt;}
.y17ab_c00002{bottom:904.109333pt;}
.y187b_c00002{bottom:904.431733pt;}
.y1a47_c00002{bottom:905.545333pt;}
.y1a73_c00002{bottom:906.985333pt;}
.y1afc_c00002{bottom:906.989333pt;}
.y1820_c00002{bottom:910.345333pt;}
.y17cc_c00002{bottom:911.789333pt;}
.y18be_c00002{bottom:911.950667pt;}
.y1841_c00002{bottom:913.333345pt;}
.y189d_c00002{bottom:915.785333pt;}
.y1760_c00002{bottom:916.109867pt;}
.y1a31_c00002{bottom:918.988933pt;}
.y1a05_c00002{bottom:918.990933pt;}
.y187a_c00002{bottom:918.991600pt;}
.y1ac5_c00002{bottom:919.309333pt;}
.y1b03_c00002{bottom:920.589333pt;}
.y17a9_c00002{bottom:923.469333pt;}
.y1a9b_c00002{bottom:923.948000pt;}
.y1a46_c00002{bottom:925.228000pt;}
.y1840_c00002{bottom:925.333341pt;}
.y1b4b_c00002{bottom:926.345333pt;}
.y1afb_c00002{bottom:926.349333pt;}
.y1a72_c00002{bottom:926.509333pt;}
.y19be_c00002{bottom:927.945333pt;}
.y181e_c00002{bottom:928.265333pt;}
.y18bd_c00002{bottom:928.269333pt;}
.y17cb_c00002{bottom:931.149333pt;}
.y189c_c00002{bottom:931.945333pt;}
.y175f_c00002{bottom:932.590533pt;}
.y1879_c00002{bottom:933.552000pt;}
.y183f_c00002{bottom:937.333337pt;}
.y1a30_c00002{bottom:938.829067pt;}
.y1a04_c00002{bottom:938.830533pt;}
.y1b6e_c00002{bottom:939.949333pt;}
.y1877_c00002{bottom:945.389333pt;}
.y191a_c00002{bottom:945.600000pt;}
.y1b26_c00002{bottom:945.705333pt;}
.y181c_c00002{bottom:946.185333pt;}
.y189a_c00002{bottom:948.105333pt;}
.y175e_c00002{bottom:949.070800pt;}
.y183e_c00002{bottom:949.333333pt;}
.y17ca_c00002{bottom:950.509333pt;}
.y1ac4_c00002{bottom:955.149333pt;}
.y1a9a_c00002{bottom:958.509333pt;}
.y1a2f_c00002{bottom:958.669200pt;}
.y1a03_c00002{bottom:958.670133pt;}
.y1a45_c00002{bottom:959.469333pt;}
.y1a71_c00002{bottom:960.269333pt;}
.y183d_c00002{bottom:961.333333pt;}
.y1b4a_c00002{bottom:965.065333pt;}
.y1afa_c00002{bottom:965.069333pt;}
.y175d_c00002{bottom:965.550533pt;}
.y17a6_c00002{bottom:966.350667pt;}
.y17c9_c00002{bottom:969.869333pt;}
.y183c_c00002{bottom:973.333333pt;}
.ya7a_c00002{bottom:974.786267pt;}
.y567_c00002{bottom:974.787093pt;}
.y1875_c00002{bottom:977.552000pt;}
.y1874_c00002{bottom:979.150667pt;}
.y1876_c00002{bottom:979.790667pt;}
.y17a7_c00002{bottom:981.709333pt;}
.y175c_c00002{bottom:982.030800pt;}
.y1b6d_c00002{bottom:982.669333pt;}
.y1a2e_c00002{bottom:984.269200pt;}
.y1a02_c00002{bottom:984.270667pt;}
.y1b25_c00002{bottom:984.585333pt;}
.y1af8_c00002{bottom:984.588000pt;}
.y183b_c00002{bottom:985.333333pt;}
.y72_c00002{bottom:985.453240pt;}
.ya79_c00002{bottom:985.453973pt;}
.y18ef_c00002{bottom:985.454347pt;}
.yd5e_c00002{bottom:985.454640pt;}
.y566_c00002{bottom:985.454800pt;}
.y121c_c00002{bottom:985.455040pt;}
.y166b_c00002{bottom:985.455867pt;}
.y1819_c00002{bottom:989.228000pt;}
.y1ac1_c00002{bottom:989.545333pt;}
.y18bb_c00002{bottom:989.712000pt;}
.y18ba_c00002{bottom:991.469333pt;}
.y1a97_c00002{bottom:991.625333pt;}
.y18bc_c00002{bottom:992.270667pt;}
.y1a43_c00002{bottom:992.425333pt;}
.y1a6e_c00002{bottom:993.065333pt;}
.y1ac3_c00002{bottom:994.669333pt;}
.y71_c00002{bottom:996.119907pt;}
.y18ee_c00002{bottom:996.121013pt;}
.yd5d_c00002{bottom:996.121307pt;}
.y121b_c00002{bottom:996.121707pt;}
.y166a_c00002{bottom:996.122533pt;}
.y1a99_c00002{bottom:996.588000pt;}
.y1a44_c00002{bottom:997.228000pt;}
.y183a_c00002{bottom:997.333333pt;}
.y1a70_c00002{bottom:997.869333pt;}
.y1b02_c00002{bottom:998.028000pt;}
.y1898_c00002{bottom:999.309333pt;}
.y1897_c00002{bottom:1000.909333pt;}
.y1899_c00002{bottom:1001.549333pt;}
.y1b49_c00002{bottom:1003.945333pt;}
.y70_c00002{bottom:1006.787613pt;}
.y18ed_c00002{bottom:1006.787680pt;}
.yd5c_c00002{bottom:1006.787973pt;}
.y121a_c00002{bottom:1006.788373pt;}
.y1669_c00002{bottom:1006.789200pt;}
.y181a_c00002{bottom:1006.825333pt;}
.y1818_c00002{bottom:1008.588000pt;}
.y1839_c00002{bottom:1012.002667pt;}
.y1873_c00002{bottom:1014.030667pt;}
.y175b_c00002{bottom:1014.990667pt;}
.y1a00_c00002{bottom:1016.909333pt;}
.y1b00_c00002{bottom:1017.228000pt;}
.y1a2d_c00002{bottom:1020.109333pt;}
.y17a4_c00002{bottom:1020.749333pt;}
.y6f_c00002{bottom:1022.212147pt;}
.y18f0_c00002{bottom:1022.213680pt;}
.y565_c00002{bottom:1022.214667pt;}
.yd63_c00002{bottom:1022.215680pt;}
.ya78_c00002{bottom:1022.215973pt;}
.y17c8_c00002{bottom:1027.949333pt;}
.y1895_c00002{bottom:1030.825333pt;}
.y18b9_c00002{bottom:1030.990667pt;}
.y1ac0_c00002{bottom:1080.269333pt;}
.y1a96_c00002{bottom:1080.749333pt;}
.y1a42_c00002{bottom:1080.909333pt;}
.y1a6d_c00002{bottom:1081.069333pt;}
.h3a_c00002{height:3.571360pt;}
.ha_c00002{height:3.572400pt;}
.h20_c00002{height:3.572920pt;}
.h37_c00002{height:3.573440pt;}
.h38_c00002{height:3.573960pt;}
.h1a_c00002{height:3.575000pt;}
.h75_c00002{height:8.000000pt;}
.ha1_c00002{height:8.320307pt;}
.h12_c00002{height:8.800000pt;}
.h40_c00002{height:11.838547pt;}
.h41_c00002{height:11.839067pt;}
.h1d_c00002{height:11.839587pt;}
.h1e_c00002{height:11.840107pt;}
.hd3_c00002{height:12.000000pt;}
.ha4_c00002{height:13.119787pt;}
.hd1_c00002{height:13.120307pt;}
.ha3_c00002{height:13.280213pt;}
.h7b_c00002{height:13.439600pt;}
.h9d_c00002{height:13.600000pt;}
.hb_c00002{height:13.757767pt;}
.h36_c00002{height:13.757813pt;}
.h8f_c00002{height:13.992188pt;}
.h87_c00002{height:14.026000pt;}
.h8c_c00002{height:14.027067pt;}
.h93_c00002{height:14.559867pt;}
.h46_c00002{height:14.878667pt;}
.h49_c00002{height:14.879200pt;}
.h4a_c00002{height:14.879733pt;}
.h4b_c00002{height:14.880267pt;}
.h4c_c00002{height:14.880667pt;}
.hac_c00002{height:15.039600pt;}
.had_c00002{height:15.040133pt;}
.hc1_c00002{height:15.199467pt;}
.hb1_c00002{height:15.200000pt;}
.h7d_c00002{height:15.359867pt;}
.hc7_c00002{height:15.360400pt;}
.hce_c00002{height:15.839600pt;}
.hcd_c00002{height:15.840133pt;}
.hd2_c00002{height:16.000000pt;}
.h73_c00002{height:16.312500pt;}
.h64_c00002{height:16.478667pt;}
.h67_c00002{height:16.479200pt;}
.h69_c00002{height:16.479733pt;}
.h68_c00002{height:16.480267pt;}
.h6a_c00002{height:16.480667pt;}
.h70_c00002{height:16.639600pt;}
.h6e_c00002{height:16.640133pt;}
.h59_c00002{height:17.759867pt;}
.h52_c00002{height:17.918800pt;}
.h5a_c00002{height:17.919333pt;}
.h55_c00002{height:17.919733pt;}
.h56_c00002{height:17.920267pt;}
.h8e_c00002{height:18.656250pt;}
.hb8_c00002{height:18.719333pt;}
.hae_c00002{height:19.040133pt;}
.h9f_c00002{height:19.114439pt;}
.h76_c00002{height:19.166667pt;}
.hc2_c00002{height:19.200000pt;}
.h39_c00002{height:19.414063pt;}
.h9a_c00002{height:19.425297pt;}
.ha6_c00002{height:19.690191pt;}
.h2f_c00002{height:19.760000pt;}
.ha2_c00002{height:19.857403pt;}
.hcf_c00002{height:19.999467pt;}
.h9c_c00002{height:20.180344pt;}
.hc_c00002{height:20.201440pt;}
.h3c_c00002{height:20.201480pt;}
.h74_c00002{height:20.390625pt;}
.hb5_c00002{height:20.800000pt;}
.ha9_c00002{height:20.959867pt;}
.h6c_c00002{height:21.280267pt;}
.hbe_c00002{height:21.440133pt;}
.h80_c00002{height:21.913750pt;}
.hca_c00002{height:22.239600pt;}
.hda_c00002{height:22.559867pt;}
.hd6_c00002{height:22.560400pt;}
.hbb_c00002{height:22.615312pt;}
.h79_c00002{height:22.846250pt;}
.hb2_c00002{height:23.058750pt;}
.h63_c00002{height:23.197867pt;}
.h61_c00002{height:23.200000pt;}
.h18_c00002{height:23.296836pt;}
.h34_c00002{height:23.296875pt;}
.h8a_c00002{height:23.320313pt;}
.hc6_c00002{height:23.502188pt;}
.h3f_c00002{height:23.678667pt;}
.h1c_c00002{height:23.679733pt;}
.h1b_c00002{height:23.680267pt;}
.h43_c00002{height:23.680667pt;}
.h11_c00002{height:23.711960pt;}
.h31_c00002{height:23.712000pt;}
.h4d_c00002{height:24.320267pt;}
.hd4_c00002{height:24.389062pt;}
.h50_c00002{height:25.118800pt;}
.h57_c00002{height:25.119733pt;}
.h85_c00002{height:25.643750pt;}
.h3e_c00002{height:27.408943pt;}
.h32_c00002{height:27.515625pt;}
.he_c00002{height:27.663960pt;}
.h30_c00002{height:27.664000pt;}
.h16_c00002{height:27.984328pt;}
.h2d_c00002{height:27.984375pt;}
.h1f_c00002{height:28.107769pt;}
.hd8_c00002{height:28.640133pt;}
.h3b_c00002{height:29.439600pt;}
.h42_c00002{height:29.440133pt;}
.ha0_c00002{height:30.320834pt;}
.h89_c00002{height:30.751953pt;}
.h9b_c00002{height:30.811736pt;}
.h90_c00002{height:30.870810pt;}
.h9_c00002{height:31.062500pt;}
.h33_c00002{height:31.062539pt;}
.ha5_c00002{height:31.232102pt;}
.h91_c00002{height:31.327601pt;}
.h95_c00002{height:31.395423pt;}
.ha7_c00002{height:31.444566pt;}
.h9e_c00002{height:31.499382pt;}
.h10_c00002{height:31.616000pt;}
.h2e_c00002{height:31.616040pt;}
.h99_c00002{height:32.009365pt;}
.h7_c00002{height:32.101517pt;}
.h2c_c00002{height:32.101563pt;}
.hd_c00002{height:32.322344pt;}
.h3d_c00002{height:32.322423pt;}
.h96_c00002{height:32.615740pt;}
.h81_c00002{height:32.637617pt;}
.h19_c00002{height:32.648391pt;}
.h5e_c00002{height:33.187615pt;}
.hbc_c00002{height:33.495109pt;}
.h48_c00002{height:33.519171pt;}
.h5c_c00002{height:33.547616pt;}
.hb3_c00002{height:33.930109pt;}
.h7c_c00002{height:34.013554pt;}
.h7a_c00002{height:34.036367pt;}
.h94_c00002{height:34.048548pt;}
.hb4_c00002{height:34.144798pt;}
.hc8_c00002{height:34.365109pt;}
.ha8_c00002{height:34.588236pt;}
.h98_c00002{height:34.792259pt;}
.h15_c00002{height:34.945274pt;}
.h2a_c00002{height:34.945390pt;}
.hbd_c00002{height:35.031673pt;}
.h5d_c00002{height:35.155111pt;}
.h7f_c00002{height:35.198033pt;}
.h82_c00002{height:35.371990pt;}
.hd5_c00002{height:35.670109pt;}
.h47_c00002{height:35.781054pt;}
.hc9_c00002{height:36.361986pt;}
.h78_c00002{height:36.596783pt;}
.h5_c00002{height:36.687500pt;}
.h25_c00002{height:36.687546pt;}
.h66_c00002{height:37.001562pt;}
.h17_c00002{height:37.312500pt;}
.h35_c00002{height:37.312547pt;}
.h71_c00002{height:37.436875pt;}
.h7e_c00002{height:38.482500pt;}
.h4f_c00002{height:38.672929pt;}
.h86_c00002{height:38.698867pt;}
.h72_c00002{height:38.828125pt;}
.h65_c00002{height:39.498438pt;}
.h6f_c00002{height:39.963125pt;}
.h54_c00002{height:40.048750pt;}
.h6b_c00002{height:40.250000pt;}
.h58_c00002{height:40.796250pt;}
.h77_c00002{height:41.002500pt;}
.h6_c00002{height:41.273392pt;}
.h29_c00002{height:41.273529pt;}
.h84_c00002{height:41.898867pt;}
.h88_c00002{height:41.913113pt;}
.h8_c00002{height:41.976516pt;}
.h2b_c00002{height:41.976656pt;}
.h97_c00002{height:42.215740pt;}
.h5b_c00002{height:42.262500pt;}
.h92_c00002{height:42.520312pt;}
.hb9_c00002{height:42.630000pt;}
.h53_c00002{height:42.751250pt;}
.h23_c00002{height:42.866250pt;}
.haf_c00002{height:43.065000pt;}
.hb7_c00002{height:43.456875pt;}
.hc3_c00002{height:43.500000pt;}
.hab_c00002{height:43.900313pt;}
.hc0_c00002{height:44.343750pt;}
.hd0_c00002{height:45.240000pt;}
.h3_c00002{height:45.859329pt;}
.h26_c00002{height:45.859375pt;}
.h14_c00002{height:45.998909pt;}
.h28_c00002{height:46.001041pt;}
.hcc_c00002{height:46.117500pt;}
.h83_c00002{height:46.593750pt;}
.h4_c00002{height:46.640578pt;}
.h27_c00002{height:46.640625pt;}
.h8d_c00002{height:46.646875pt;}
.hb6_c00002{height:48.720000pt;}
.haa_c00002{height:49.155000pt;}
.hbf_c00002{height:50.025000pt;}
.h6d_c00002{height:51.115625pt;}
.hcb_c00002{height:51.765000pt;}
.h8b_c00002{height:52.120313pt;}
.h5f_c00002{height:53.582813pt;}
.hd7_c00002{height:54.368438pt;}
.hf_c00002{height:55.328000pt;}
.h60_c00002{height:57.405000pt;}
.h62_c00002{height:57.621250pt;}
.h4e_c00002{height:58.550625pt;}
.h51_c00002{height:61.803438pt;}
.h22_c00002{height:61.969688pt;}
.hdb_c00002{height:63.984375pt;}
.hba_c00002{height:66.144798pt;}
.hb0_c00002{height:67.227809pt;}
.hc4_c00002{height:68.310820pt;}
.hc5_c00002{height:68.312900pt;}
.hd9_c00002{height:69.703125pt;}
.h13_c00002{height:74.625000pt;}
.h44_c00002{height:793.333067pt;}
.h45_c00002{height:793.333333pt;}
.h24_c00002{height:865.600000pt;}
.h2_c00002{height:866.000000pt;}
.h21_c00002{height:1122.559867pt;}
.h0_c00002{height:1122.666400pt;}
.h1_c00002{height:1122.666667pt;}
.wbb_c00002{width:0.480208pt;}
.wb8_c00002{width:2.400000pt;}
.wbc_c00002{width:2.719787pt;}
.wbe_c00002{width:3.680213pt;}
.wb9_c00002{width:3.839587pt;}
.wba_c00002{width:3.840107pt;}
.wcf_c00002{width:5.600000pt;}
.wc6_c00002{width:5.759893pt;}
.wc5_c00002{width:6.079693pt;}
.wcd_c00002{width:6.080213pt;}
.wc1_c00002{width:6.239587pt;}
.w1e_c00002{width:6.240107pt;}
.wd5_c00002{width:6.399480pt;}
.w9d_c00002{width:6.400000pt;}
.w82_c00002{width:6.559893pt;}
.wcb_c00002{width:6.560413pt;}
.wc3_c00002{width:6.719787pt;}
.w98_c00002{width:6.720307pt;}
.wdb_c00002{width:6.879693pt;}
.we3_c00002{width:7.039587pt;}
.w38_c00002{width:7.040107pt;}
.w5c_c00002{width:7.200000pt;}
.wd7_c00002{width:7.359893pt;}
.w44_c00002{width:7.519787pt;}
.wcc_c00002{width:7.520307pt;}
.wc4_c00002{width:7.679693pt;}
.wd1_c00002{width:7.680213pt;}
.w32_c00002{width:7.839587pt;}
.wd0_c00002{width:7.840107pt;}
.w2f_c00002{width:8.000000pt;}
.w7d_c00002{width:8.158853pt;}
.wb_c00002{width:8.159893pt;}
.we5_c00002{width:8.319787pt;}
.wfe_c00002{width:8.640107pt;}
.w5f_c00002{width:9.440107pt;}
.w96_c00002{width:10.079693pt;}
.w7c_c00002{width:10.240107pt;}
.w53_c00002{width:10.559893pt;}
.w9b_c00002{width:10.879693pt;}
.wa0_c00002{width:10.880213pt;}
.wfd_c00002{width:11.040107pt;}
.w9c_c00002{width:11.679693pt;}
.w97_c00002{width:12.000000pt;}
.wa9_c00002{width:12.160413pt;}
.w21_c00002{width:12.319787pt;}
.w7a_c00002{width:12.479693pt;}
.w25_c00002{width:12.480213pt;}
.w99_c00002{width:12.639587pt;}
.w2c_c00002{width:12.640107pt;}
.wd6_c00002{width:12.799480pt;}
.w23_c00002{width:12.800000pt;}
.wa1_c00002{width:12.958853pt;}
.w9a_c00002{width:13.119787pt;}
.w1d_c00002{width:13.439600pt;}
.w15_c00002{width:13.440133pt;}
.w83_c00002{width:13.600000pt;}
.w76_c00002{width:13.759867pt;}
.w7b_c00002{width:13.919333pt;}
.w9f_c00002{width:13.919733pt;}
.w69_c00002{width:14.079733pt;}
.w2e_c00002{width:14.080267pt;}
.wfc_c00002{width:14.239600pt;}
.w88_c00002{width:14.240133pt;}
.w60_c00002{width:14.400000pt;}
.w3a_c00002{width:14.559867pt;}
.w78_c00002{width:14.719333pt;}
.w77_c00002{width:14.719733pt;}
.wff_c00002{width:14.880267pt;}
.wfa_c00002{width:14.880667pt;}
.w2d_c00002{width:15.039600pt;}
.w41_c00002{width:15.040133pt;}
.w42_c00002{width:15.200000pt;}
.w24_c00002{width:15.519733pt;}
.waf_c00002{width:15.520267pt;}
.w39_c00002{width:15.679733pt;}
.wfb_c00002{width:15.680267pt;}
.w9e_c00002{width:16.320267pt;}
.wb1_c00002{width:16.639600pt;}
.w4a_c00002{width:16.959867pt;}
.w31_c00002{width:16.960400pt;}
.w6e_c00002{width:17.119733pt;}
.w8a_c00002{width:17.440133pt;}
.w6f_c00002{width:18.400000pt;}
.w26_c00002{width:18.559867pt;}
.w104_c00002{width:18.719333pt;}
.w22_c00002{width:18.719733pt;}
.wb3_c00002{width:18.720267pt;}
.w27_c00002{width:19.040133pt;}
.w79_c00002{width:19.359867pt;}
.w30_c00002{width:19.840133pt;}
.w6b_c00002{width:20.319333pt;}
.w6c_c00002{width:20.320267pt;}
.w63_c00002{width:20.639600pt;}
.w33_c00002{width:20.640133pt;}
.w6d_c00002{width:20.959867pt;}
.w8b_c00002{width:21.280267pt;}
.wae_c00002{width:21.758800pt;}
.w20_c00002{width:21.759867pt;}
.w17_c00002{width:21.920267pt;}
.w46_c00002{width:22.080267pt;}
.w10_c00002{width:22.559867pt;}
.w47_c00002{width:22.719733pt;}
.wa4_c00002{width:23.358800pt;}
.wa2_c00002{width:23.359867pt;}
.wa3_c00002{width:23.360400pt;}
.w68_c00002{width:23.999467pt;}
.w67_c00002{width:24.000000pt;}
.w14_c00002{width:24.159867pt;}
.w87_c00002{width:24.479733pt;}
.w89_c00002{width:24.480267pt;}
.w45_c00002{width:26.239600pt;}
.w40_c00002{width:26.240133pt;}
.w58_c00002{width:26.400000pt;}
.w5e_c00002{width:26.719733pt;}
.wa5_c00002{width:26.720267pt;}
.w81_c00002{width:27.039600pt;}
.w80_c00002{width:27.040133pt;}
.w1f_c00002{width:27.999467pt;}
.w1c_c00002{width:28.000000pt;}
.w109_c00002{width:28.159867pt;}
.wdc_c00002{width:28.799467pt;}
.wd9_c00002{width:28.800000pt;}
.w100_c00002{width:29.119333pt;}
.w37_c00002{width:29.119733pt;}
.w36_c00002{width:29.120267pt;}
.w107_c00002{width:29.440133pt;}
.wf6_c00002{width:29.919733pt;}
.w95_c00002{width:29.920267pt;}
.wc2_c00002{width:30.079733pt;}
.w71_c00002{width:30.080267pt;}
.w101_c00002{width:30.239600pt;}
.w4e_c00002{width:30.240133pt;}
.wb2_c00002{width:30.559867pt;}
.w65_c00002{width:30.879733pt;}
.w62_c00002{width:30.880267pt;}
.w86_c00002{width:31.519333pt;}
.w1b_c00002{width:31.519733pt;}
.w84_c00002{width:31.520267pt;}
.we2_c00002{width:31.679733pt;}
.wf1_c00002{width:32.000000pt;}
.w11_c00002{width:32.800000pt;}
.wa_c00002{width:32.959867pt;}
.wf_c00002{width:32.960400pt;}
.w5b_c00002{width:33.600000pt;}
.w102_c00002{width:33.758800pt;}
.w3d_c00002{width:33.759867pt;}
.w3e_c00002{width:33.760400pt;}
.w75_c00002{width:33.920267pt;}
.waa_c00002{width:34.239600pt;}
.wab_c00002{width:34.240133pt;}
.wb0_c00002{width:34.559867pt;}
.wda_c00002{width:35.199467pt;}
.wd8_c00002{width:35.200000pt;}
.w18_c00002{width:35.359867pt;}
.w13_c00002{width:35.519733pt;}
.w2b_c00002{width:36.159867pt;}
.w48_c00002{width:36.319733pt;}
.wbd_c00002{width:36.320267pt;}
.w57_c00002{width:36.639600pt;}
.wa8_c00002{width:36.798400pt;}
.wa7_c00002{width:36.799467pt;}
.wa6_c00002{width:36.800000pt;}
.w61_c00002{width:37.439600pt;}
.w6a_c00002{width:37.759867pt;}
.w66_c00002{width:38.080267pt;}
.w4c_c00002{width:38.239600pt;}
.w70_c00002{width:38.559867pt;}
.w1a_c00002{width:39.040133pt;}
.wd_c00002{width:40.320267pt;}
.wac_c00002{width:40.479733pt;}
.w4b_c00002{width:40.959867pt;}
.w64_c00002{width:41.120267pt;}
.w3b_c00002{width:41.279733pt;}
.w3c_c00002{width:41.280267pt;}
.w85_c00002{width:41.599467pt;}
.w51_c00002{width:41.600000pt;}
.w19_c00002{width:41.759867pt;}
.w52_c00002{width:42.080267pt;}
.w3f_c00002{width:44.479733pt;}
.wf2_c00002{width:44.480267pt;}
.wce_c00002{width:46.400000pt;}
.w8f_c00002{width:46.559867pt;}
.wdd_c00002{width:47.200000pt;}
.w43_c00002{width:48.800000pt;}
.we4_c00002{width:49.119733pt;}
.wad_c00002{width:49.280267pt;}
.w91_c00002{width:49.920267pt;}
.w5d_c00002{width:50.559867pt;}
.w59_c00002{width:50.560400pt;}
.w7f_c00002{width:51.679733pt;}
.we7_c00002{width:51.680267pt;}
.w92_c00002{width:52.000000pt;}
.web_c00002{width:54.079733pt;}
.w5a_c00002{width:54.400000pt;}
.w7e_c00002{width:54.559867pt;}
.w35_c00002{width:55.200000pt;}
.wb4_c00002{width:57.280267pt;}
.wec_c00002{width:58.080267pt;}
.w34_c00002{width:58.559867pt;}
.w8d_c00002{width:59.200000pt;}
.w106_c00002{width:60.000000pt;}
.wdf_c00002{width:60.319733pt;}
.w90_c00002{width:60.480267pt;}
.w8e_c00002{width:60.480667pt;}
.w12_c00002{width:60.799467pt;}
.wc8_c00002{width:60.800000pt;}
.we_c00002{width:61.600000pt;}
.w4d_c00002{width:62.400000pt;}
.wed_c00002{width:65.119733pt;}
.wd3_c00002{width:65.920267pt;}
.wbf_c00002{width:66.400000pt;}
.we0_c00002{width:67.200000pt;}
.wc9_c00002{width:67.359867pt;}
.we8_c00002{width:67.519733pt;}
.w16_c00002{width:68.319733pt;}
.wb7_c00002{width:69.119733pt;}
.w93_c00002{width:73.120267pt;}
.we9_c00002{width:74.880267pt;}
.wea_c00002{width:75.040133pt;}
.w4f_c00002{width:76.800000pt;}
.w108_c00002{width:82.880667pt;}
.wc_c00002{width:87.200000pt;}
.wca_c00002{width:90.400000pt;}
.wc0_c00002{width:91.200000pt;}
.wf8_c00002{width:91.359867pt;}
.wd4_c00002{width:93.119733pt;}
.wf4_c00002{width:93.440133pt;}
.w2a_c00002{width:95.040133pt;}
.wef_c00002{width:95.200000pt;}
.we1_c00002{width:95.840133pt;}
.w54_c00002{width:98.080267pt;}
.w50_c00002{width:102.080267pt;}
.w74_c00002{width:112.479733pt;}
.w105_c00002{width:117.600000pt;}
.w29_c00002{width:123.679733pt;}
.wee_c00002{width:128.800000pt;}
.w94_c00002{width:153.440000pt;}
.w49_c00002{width:161.920000pt;}
.wf3_c00002{width:177.600000pt;}
.wd2_c00002{width:212.000000pt;}
.wc7_c00002{width:212.640000pt;}
.wde_c00002{width:216.320000pt;}
.we6_c00002{width:225.280000pt;}
.wf9_c00002{width:228.160000pt;}
.wf7_c00002{width:264.000000pt;}
.w103_c00002{width:273.440000pt;}
.w56_c00002{width:286.720000pt;}
.wf5_c00002{width:330.560000pt;}
.w28_c00002{width:336.160000pt;}
.wf0_c00002{width:338.240000pt;}
.w55_c00002{width:356.800000pt;}
.w8c_c00002{width:448.000000pt;}
.wb6_c00002{width:677.972000pt;}
.wb5_c00002{width:682.560000pt;}
.w2_c00002{width:685.440000pt;}
.w7_c00002{width:687.520000pt;}
.w6_c00002{width:688.265333pt;}
.w3_c00002{width:688.269333pt;}
.w0_c00002{width:793.333067pt;}
.w1_c00002{width:793.333333pt;}
.w4_c00002{width:793.759867pt;}
.w5_c00002{width:794.000000pt;}
.w8_c00002{width:1122.666400pt;}
.w9_c00002{width:1122.666667pt;}
.w72_c00002{width:1587.999733pt;}
.w73_c00002{width:1588.000000pt;}
.x119_c00002{left:-11.210667pt;}
.x0_c00002{left:0.000000pt;}
.x18_c00002{left:33.332800pt;}
.x1c_c00002{left:60.052667pt;}
.x1b_c00002{left:68.027600pt;}
.x1da_c00002{left:68.917200pt;}
.x123_c00002{left:70.037467pt;}
.xab_c00002{left:71.200000pt;}
.x1d9_c00002{left:72.277600pt;}
.x1e_c00002{left:73.267867pt;}
.x3_c00002{left:75.305200pt;}
.x6_c00002{left:76.587467pt;}
.x17_c00002{left:77.597776pt;}
.x4f_c00002{left:78.611797pt;}
.xb5_c00002{left:80.159867pt;}
.x1a7_c00002{left:81.717737pt;}
.x166_c00002{left:82.719733pt;}
.x1aa_c00002{left:83.957333pt;}
.x11b_c00002{left:85.120267pt;}
.x1ca_c00002{left:86.037467pt;}
.x5c_c00002{left:87.347333pt;}
.x124_c00002{left:88.917200pt;}
.x1ad_c00002{left:89.877600pt;}
.xb0_c00002{left:90.880267pt;}
.x1a8_c00002{left:91.797361pt;}
.x7d_c00002{left:93.587467pt;}
.x50_c00002{left:94.559467pt;}
.xb6_c00002{left:96.319733pt;}
.x74_c00002{left:97.587467pt;}
.xa9_c00002{left:99.987467pt;}
.x81_c00002{left:100.959893pt;}
.x1b8_c00002{left:102.997333pt;}
.x1d_c00002{left:104.014000pt;}
.x1b9_c00002{left:105.557224pt;}
.x1a6_c00002{left:106.677627pt;}
.x82_c00002{left:107.839867pt;}
.x80_c00002{left:111.520311pt;}
.x1ba_c00002{left:135.957333pt;}
.x1a9_c00002{left:137.557333pt;}
.x174_c00002{left:141.974400pt;}
.x191_c00002{left:145.280000pt;}
.x1cb_c00002{left:146.677333pt;}
.xce_c00002{left:148.468000pt;}
.x1ae_c00002{left:151.797333pt;}
.x1bc_c00002{left:153.077333pt;}
.x160_c00002{left:154.837333pt;}
.x144_c00002{left:156.757333pt;}
.x158_c00002{left:158.037333pt;}
.x11d_c00002{left:159.520000pt;}
.x6a_c00002{left:161.106667pt;}
.x65_c00002{left:163.028000pt;}
.xc1_c00002{left:167.668000pt;}
.x125_c00002{left:170.037333pt;}
.x5d_c00002{left:171.028000pt;}
.xfa_c00002{left:173.077333pt;}
.xea_c00002{left:175.317333pt;}
.x95_c00002{left:176.628000pt;}
.x122_c00002{left:178.240000pt;}
.xa1_c00002{left:180.468000pt;}
.x8b_c00002{left:182.706667pt;}
.x1a_c00002{left:184.068000pt;}
.xbc_c00002{left:187.189333pt;}
.xdb_c00002{left:188.800000pt;}
.x1e0_c00002{left:189.877333pt;}
.x85_c00002{left:191.028000pt;}
.xbb_c00002{left:194.720000pt;}
.x182_c00002{left:196.746800pt;}
.xb8_c00002{left:198.400000pt;}
.x197_c00002{left:200.320000pt;}
.x198_c00002{left:204.000000pt;}
.x1af_c00002{left:212.597333pt;}
.x17e_c00002{left:213.494779pt;}
.x181_c00002{left:214.666533pt;}
.x19e_c00002{left:216.437333pt;}
.xbf_c00002{left:218.549333pt;}
.x180_c00002{left:220.426400pt;}
.x17f_c00002{left:221.386800pt;}
.x1ac_c00002{left:223.157333pt;}
.x1bb_c00002{left:226.197333pt;}
.x5b_c00002{left:227.706667pt;}
.x17d_c00002{left:231.414512pt;}
.x151_c00002{left:232.437333pt;}
.x11e_c00002{left:233.920000pt;}
.x134_c00002{left:234.837333pt;}
.x17c_c00002{left:237.120779pt;}
.x17b_c00002{left:238.134779pt;}
.x126_c00002{left:240.437333pt;}
.x84_c00002{left:243.028000pt;}
.xd6_c00002{left:245.588000pt;}
.xcf_c00002{left:249.106667pt;}
.xc2_c00002{left:251.348000pt;}
.xd8_c00002{left:252.468000pt;}
.x10f_c00002{left:253.557333pt;}
.xeb_c00002{left:255.797333pt;}
.x9f_c00002{left:258.868000pt;}
.x1c0_c00002{left:259.797333pt;}
.x4e_c00002{left:261.010549pt;}
.x96_c00002{left:262.548000pt;}
.xdc_c00002{left:263.840000pt;}
.xa5_c00002{left:266.388000pt;}
.x167_c00002{left:267.573600pt;}
.x8c_c00002{left:268.628000pt;}
.x165_c00002{left:270.080000pt;}
.xdd_c00002{left:272.000000pt;}
.x7_c00002{left:274.610667pt;}
.x86_c00002{left:275.668000pt;}
.x192_c00002{left:281.920000pt;}
.x1b0_c00002{left:283.957333pt;}
.x193_c00002{left:285.760000pt;}
.x1bd_c00002{left:288.597333pt;}
.x5e_c00002{left:289.748000pt;}
.xba_c00002{left:294.400000pt;}
.x145_c00002{left:299.477333pt;}
.x194_c00002{left:300.480000pt;}
.x152_c00002{left:303.797333pt;}
.x135_c00002{left:306.197333pt;}
.x157_c00002{left:310.037333pt;}
.x4_c00002{left:314.130533pt;}
.x11f_c00002{left:316.000000pt;}
.xc3_c00002{left:317.906667pt;}
.x75_c00002{left:319.506667pt;}
.x7c_c00002{left:322.548000pt;}
.x186_c00002{left:324.213067pt;}
.x169_c00002{left:325.279333pt;}
.x66_c00002{left:326.706667pt;}
.x17a_c00002{left:327.893333pt;}
.x107_c00002{left:328.918667pt;}
.xd3_c00002{left:331.026667pt;}
.x1c1_c00002{left:332.918667pt;}
.x3b_c00002{left:334.343467pt;}
.xec_c00002{left:336.278667pt;}
.x18d_c00002{left:337.173067pt;}
.xc9_c00002{left:338.386667pt;}
.x33_c00002{left:341.063733pt;}
.xdf_c00002{left:342.358667pt;}
.x11c_c00002{left:343.680000pt;}
.xa7_c00002{left:344.786667pt;}
.xfb_c00002{left:346.198667pt;}
.x53_c00002{left:348.054899pt;}
.x27_c00002{left:349.651840pt;}
.x34_c00002{left:351.143333pt;}
.x97_c00002{left:352.306667pt;}
.x8d_c00002{left:354.548000pt;}
.xa6_c00002{left:355.986667pt;}
.x2d_c00002{left:357.866307pt;}
.x179_c00002{left:359.413333pt;}
.x3e_c00002{left:361.506667pt;}
.x171_c00002{left:362.453333pt;}
.x16f_c00002{left:363.573333pt;}
.x26_c00002{left:364.586773pt;}
.x1cc_c00002{left:365.718667pt;}
.x19d_c00002{left:367.840000pt;}
.x168_c00002{left:369.013733pt;}
.x32_c00002{left:370.024160pt;}
.x3d_c00002{left:371.304989pt;}
.xde_c00002{left:374.038667pt;}
.x153_c00002{left:375.158667pt;}
.x170_c00002{left:376.213333pt;}
.x136_c00002{left:377.558667pt;}
.x164_c00002{left:379.040000pt;}
.x35_c00002{left:381.703200pt;}
.x127_c00002{left:382.838667pt;}
.x120_c00002{left:384.000000pt;}
.x3a_c00002{left:386.824267pt;}
.x2e_c00002{left:388.426173pt;}
.x16a_c00002{left:390.559600pt;}
.x54_c00002{left:391.784627pt;}
.x39_c00002{left:393.545123pt;}
.xb7_c00002{left:394.560000pt;}
.x58_c00002{left:395.465439pt;}
.x3f_c00002{left:396.867333pt;}
.x4a_c00002{left:398.509147pt;}
.x2c_c00002{left:401.866307pt;}
.xf_c00002{left:405.224856pt;}
.x1a0_c00002{left:407.158667pt;}
.x57_c00002{left:408.905572pt;}
.xb9_c00002{left:410.080000pt;}
.x25_c00002{left:411.946653pt;}
.xac_c00002{left:414.080000pt;}
.x2f_c00002{left:415.626133pt;}
.xed_c00002{left:416.758667pt;}
.xe_c00002{left:418.984723pt;}
.x38_c00002{left:421.066272pt;}
.xd_c00002{left:422.345136pt;}
.x18e_c00002{left:424.159600pt;}
.xc_c00002{left:425.705029pt;}
.x1b1_c00002{left:426.678667pt;}
.x5a_c00002{left:427.785461pt;}
.x11_c00002{left:428.745136pt;}
.x30_c00002{left:429.705933pt;}
.x59_c00002{left:430.824312pt;}
.x3c_c00002{left:432.743440pt;}
.x31_c00002{left:434.167133pt;}
.x10_c00002{left:435.784723pt;}
.x19b_c00002{left:436.800000pt;}
.x98_c00002{left:438.226667pt;}
.x8e_c00002{left:440.466667pt;}
.xa4_c00002{left:441.906667pt;}
.x15e_c00002{left:443.478667pt;}
.x1dd_c00002{left:445.120000pt;}
.x146_c00002{left:446.518667pt;}
.x137_c00002{left:448.918667pt;}
.x4c_c00002{left:451.202240pt;}
.x172_c00002{left:452.746400pt;}
.x46_c00002{left:454.558572pt;}
.x45_c00002{left:457.919505pt;}
.x43_c00002{left:461.278359pt;}
.x4b_c00002{left:462.988693pt;}
.x121_c00002{left:464.320000pt;}
.x44_c00002{left:466.293465pt;}
.x5f_c00002{left:469.426667pt;}
.x19c_c00002{left:474.080000pt;}
.x16b_c00002{left:477.600133pt;}
.x1c2_c00002{left:479.158667pt;}
.x175_c00002{left:480.639600pt;}
.xb4_c00002{left:482.240000pt;}
.x183_c00002{left:483.679733pt;}
.xb1_c00002{left:486.080000pt;}
.xaf_c00002{left:488.320000pt;}
.x1cf_c00002{left:489.238667pt;}
.x76_c00002{left:490.866667pt;}
.xad_c00002{left:492.960000pt;}
.xfc_c00002{left:494.998667pt;}
.x1d7_c00002{left:495.958667pt;}
.xee_c00002{left:497.238667pt;}
.x111_c00002{left:498.518667pt;}
.x56_c00002{left:504.051733pt;}
.x5_c00002{left:505.170533pt;}
.x55_c00002{left:507.411107pt;}
.x187_c00002{left:509.225600pt;}
.x14_c00002{left:510.770176pt;}
.x15_c00002{left:514.130069pt;}
.x16_c00002{left:517.489963pt;}
.x13_c00002{left:519.197776pt;}
.xa8_c00002{left:520.306667pt;}
.x12_c00002{left:522.557669pt;}
.x99_c00002{left:524.148000pt;}
.x128_c00002{left:525.398667pt;}
.x8f_c00002{left:526.386667pt;}
.x1df_c00002{left:527.840000pt;}
.x188_c00002{left:529.865733pt;}
.x87_c00002{left:531.026667pt;}
.x1de_c00002{left:532.480000pt;}
.x1e1_c00002{left:534.358667pt;}
.xc0_c00002{left:542.066667pt;}
.x1b7_c00002{left:547.638667pt;}
.x184_c00002{left:549.388133pt;}
.x199_c00002{left:551.840000pt;}
.x1a1_c00002{left:553.398667pt;}
.x19a_c00002{left:555.680000pt;}
.x1c7_c00002{left:558.678667pt;}
.x41_c00002{left:560.681619pt;}
.x51_c00002{left:562.080353pt;}
.x40_c00002{left:563.135259pt;}
.x52_c00002{left:564.588732pt;}
.x47_c00002{left:565.813772pt;}
.x49_c00002{left:567.588772pt;}
.x1_c00002{left:569.650667pt;}
.x48_c00002{left:570.668465pt;}
.x1d0_c00002{left:572.758667pt;}
.xfd_c00002{left:575.478667pt;}
.xef_c00002{left:577.718667pt;}
.x108_c00002{left:578.998667pt;}
.x1be_c00002{left:581.078667pt;}
.x19f_c00002{left:582.038667pt;}
.xe0_c00002{left:583.798667pt;}
.x15b_c00002{left:584.918667pt;}
.x16c_c00002{left:586.294400pt;}
.x147_c00002{left:589.238667pt;}
.x18f_c00002{left:590.294667pt;}
.x138_c00002{left:591.638667pt;}
.x189_c00002{left:594.453200pt;}
.x129_c00002{left:596.758667pt;}
.x195_c00002{left:600.480000pt;}
.x196_c00002{left:604.320000pt;}
.x9a_c00002{left:606.226667pt;}
.x173_c00002{left:607.786400pt;}
.xa2_c00002{left:610.066667pt;}
.x90_c00002{left:612.306667pt;}
.x20_c00002{left:613.972000pt;}
.xb3_c00002{left:616.000000pt;}
.x8_c00002{left:618.130667pt;}
.xb2_c00002{left:619.840000pt;}
.x9_c00002{left:621.330667pt;}
.xa_c00002{left:622.290563pt;}
.xb_c00002{left:623.410363pt;}
.x42_c00002{left:624.693421pt;}
.x2b_c00002{left:625.971267pt;}
.x4d_c00002{left:626.988013pt;}
.xae_c00002{left:628.160000pt;}
.x1f_c00002{left:631.308000pt;}
.x23_c00002{left:633.971987pt;}
.x29_c00002{left:635.466667pt;}
.xd0_c00002{left:636.786667pt;}
.x2a_c00002{left:638.131773pt;}
.xc4_c00002{left:640.466667pt;}
.x1d1_c00002{left:642.838667pt;}
.x18a_c00002{left:644.693333pt;}
.xd9_c00002{left:646.866667pt;}
.x83_c00002{left:647.826667pt;}
.x18b_c00002{left:649.334000pt;}
.xd4_c00002{left:650.548000pt;}
.x16d_c00002{left:651.574667pt;}
.x28_c00002{left:653.651600pt;}
.x22_c00002{left:654.826667pt;}
.x10b_c00002{left:655.958667pt;}
.x37_c00002{left:658.611525pt;}
.x24_c00002{left:659.626653pt;}
.x154_c00002{left:660.598667pt;}
.xe1_c00002{left:662.038667pt;}
.x139_c00002{left:662.998667pt;}
.x176_c00002{left:666.613667pt;}
.x12a_c00002{left:669.238667pt;}
.x185_c00002{left:672.215733pt;}
.x16e_c00002{left:673.280933pt;}
.x36_c00002{left:682.187067pt;}
.x21_c00002{left:684.199067pt;}
.x19_c00002{left:689.508000pt;}
.x1eb_c00002{left:690.518667pt;}
.xbe_c00002{left:693.107388pt;}
.x9b_c00002{left:695.986667pt;}
.x91_c00002{left:698.226667pt;}
.xa3_c00002{left:699.666667pt;}
.x2_c00002{left:702.610533pt;}
.x60_c00002{left:706.386667pt;}
.x88_c00002{left:708.948000pt;}
.x18c_c00002{left:712.374133pt;}
.x7b_c00002{left:716.626667pt;}
.x6f_c00002{left:719.666667pt;}
.xca_c00002{left:722.548000pt;}
.xd7_c00002{left:723.826667pt;}
.x1dc_c00002{left:726.358667pt;}
.x148_c00002{left:727.638667pt;}
.xc5_c00002{left:732.148000pt;}
.x13a_c00002{left:734.358667pt;}
.xfe_c00002{left:736.438667pt;}
.xf0_c00002{left:738.678667pt;}
.x10c_c00002{left:739.958667pt;}
.x178_c00002{left:741.600787pt;}
.x190_c00002{left:744.853653pt;}
.xe2_c00002{left:745.878667pt;}
.x1cd_c00002{left:749.718667pt;}
.x177_c00002{left:753.599627pt;}
.x1b3_c00002{left:755.478667pt;}
.xbd_c00002{left:762.551636pt;}
.x1c3_c00002{left:771.638667pt;}
.x1a2_c00002{left:772.758667pt;}
.x9c_c00002{left:776.466667pt;}
.x1c8_c00002{left:778.038667pt;}
.x70_c00002{left:780.148000pt;}
.xa0_c00002{left:781.906667pt;}
.x61_c00002{left:782.866667pt;}
.x92_c00002{left:784.148000pt;}
.x6b_c00002{left:787.348000pt;}
.x89_c00002{left:788.466667pt;}
.x161_c00002{left:792.758667pt;}
.x1d5_c00002{left:796.438667pt;}
.xd1_c00002{left:799.026667pt;}
.xcb_c00002{left:801.106667pt;}
.xd5_c00002{left:802.386667pt;}
.x7e_c00002{left:803.666667pt;}
.x13b_c00002{left:805.718667pt;}
.xc6_c00002{left:810.866667pt;}
.x10d_c00002{left:811.798667pt;}
.xff_c00002{left:816.918667pt;}
.xf1_c00002{left:819.158667pt;}
.x10e_c00002{left:820.438667pt;}
.xe3_c00002{left:825.238667pt;}
.x1b4_c00002{left:826.838667pt;}
.x1c4_c00002{left:844.758667pt;}
.x1a3_c00002{left:845.878667pt;}
.x67_c00002{left:847.826667pt;}
.x62_c00002{left:849.106667pt;}
.x71_c00002{left:851.506667pt;}
.x7a_c00002{left:854.706667pt;}
.x6c_c00002{left:858.706667pt;}
.x1ef_c00002{left:862.358667pt;}
.x9e_c00002{left:863.986667pt;}
.xc7_c00002{left:867.826667pt;}
.x1e3_c00002{left:870.038667pt;}
.x9d_c00002{left:871.506667pt;}
.x1d2_c00002{left:873.238667pt;}
.x149_c00002{left:874.678667pt;}
.x13c_c00002{left:877.078667pt;}
.x1d8_c00002{left:879.958667pt;}
.x93_c00002{left:881.106667pt;}
.x12b_c00002{left:885.558667pt;}
.xcc_c00002{left:888.306667pt;}
.x100_c00002{left:892.278667pt;}
.x110_c00002{left:897.398667pt;}
.xf2_c00002{left:899.638667pt;}
.x63_c00002{left:906.548000pt;}
.x68_c00002{left:915.986667pt;}
.x1c5_c00002{left:917.878667pt;}
.x1a4_c00002{left:918.998667pt;}
.x1b2_c00002{left:919.958667pt;}
.x72_c00002{left:922.866667pt;}
.x1c9_c00002{left:924.278667pt;}
.x77_c00002{left:926.066667pt;}
.x6d_c00002{left:930.066667pt;}
.x1bf_c00002{left:940.278667pt;}
.x14a_c00002{left:941.718667pt;}
.x8a_c00002{left:943.026667pt;}
.xc8_c00002{left:944.306667pt;}
.x15f_c00002{left:946.038667pt;}
.x13d_c00002{left:948.438667pt;}
.x1d3_c00002{left:950.038667pt;}
.x1e7_c00002{left:953.718667pt;}
.x12c_c00002{left:956.118667pt;}
.x1ee_c00002{left:957.398667pt;}
.xd2_c00002{left:961.266667pt;}
.x94_c00002{left:962.706667pt;}
.xcd_c00002{left:964.306667pt;}
.x1b5_c00002{left:969.558667pt;}
.x101_c00002{left:972.758667pt;}
.x118_c00002{left:976.598667pt;}
.xf3_c00002{left:980.118667pt;}
.xaa_c00002{left:987.509333pt;}
.x69_c00002{left:988.786667pt;}
.x64_c00002{left:990.548000pt;}
.xda_c00002{left:992.469333pt;}
.x79_c00002{left:994.226667pt;}
.x73_c00002{left:997.426667pt;}
.x7f_c00002{left:998.712000pt;}
.x78_c00002{left:1000.466667pt;}
.x6e_c00002{left:1001.426667pt;}
.x1b6_c00002{left:1008.118667pt;}
.x14b_c00002{left:1013.078667pt;}
.x15c_c00002{left:1014.358667pt;}
.x155_c00002{left:1017.398667pt;}
.x13e_c00002{left:1019.798667pt;}
.x12d_c00002{left:1023.318667pt;}
.x1d4_c00002{left:1026.838667pt;}
.x1c6_c00002{left:1030.518667pt;}
.x1a5_c00002{left:1031.478667pt;}
.x1d6_c00002{left:1033.558667pt;}
.x1e8_c00002{left:1039.638667pt;}
.x1e4_c00002{left:1041.878667pt;}
.x1ce_c00002{left:1050.198667pt;}
.x102_c00002{left:1058.358667pt;}
.xf4_c00002{left:1060.598667pt;}
.x113_c00002{left:1061.878667pt;}
.xe4_c00002{left:1068.918667pt;}
.x14c_c00002{left:1084.438667pt;}
.x116_c00002{left:1088.612533pt;}
.x13f_c00002{left:1091.158667pt;}
.x12e_c00002{left:1094.358667pt;}
.x117_c00002{left:1115.279200pt;}
.x1ec_c00002{left:1120.118667pt;}
.x1e9_c00002{left:1125.558667pt;}
.x1e5_c00002{left:1127.798667pt;}
.x103_c00002{left:1133.718667pt;}
.x1e2_c00002{left:1138.038667pt;}
.xf5_c00002{left:1141.078667pt;}
.xe5_c00002{left:1149.398667pt;}
.x159_c00002{left:1153.878667pt;}
.x156_c00002{left:1157.078667pt;}
.x14d_c00002{left:1160.118667pt;}
.x140_c00002{left:1162.518667pt;}
.x12f_c00002{left:1167.158667pt;}
.x1ed_c00002{left:1206.038667pt;}
.x1f0_c00002{left:1211.478667pt;}
.x1e6_c00002{left:1213.718667pt;}
.x1ea_c00002{left:1215.158667pt;}
.x104_c00002{left:1219.318667pt;}
.xf6_c00002{left:1221.558667pt;}
.x114_c00002{left:1222.838667pt;}
.x14e_c00002{left:1227.158667pt;}
.xe6_c00002{left:1230.998667pt;}
.x141_c00002{left:1233.878667pt;}
.x130_c00002{left:1240.118667pt;}
.x105_c00002{left:1299.798667pt;}
.xf7_c00002{left:1302.038667pt;}
.x109_c00002{left:1303.318667pt;}
.x142_c00002{left:1305.238667pt;}
.x112_c00002{left:1306.838667pt;}
.xe7_c00002{left:1308.598667pt;}
.x131_c00002{left:1313.718667pt;}
.xe8_c00002{left:1368.760000pt;}
.x14f_c00002{left:1369.880000pt;}
.x15d_c00002{left:1374.200000pt;}
.x10a_c00002{left:1376.760000pt;}
.x132_c00002{left:1381.880000pt;}
.x106_c00002{left:1383.800000pt;}
.xf8_c00002{left:1392.760000pt;}
.x150_c00002{left:1441.240000pt;}
.x15a_c00002{left:1445.560000pt;}
.x143_c00002{left:1447.960000pt;}
.xe9_c00002{left:1450.680000pt;}
.x162_c00002{left:1451.800000pt;}
.x133_c00002{left:1453.560000pt;}
.x115_c00002{left:1457.080000pt;}
.x1db_c00002{left:1459.800000pt;}
.x1ab_c00002{left:1462.680000pt;}
.x163_c00002{left:1463.960000pt;}
.xf9_c00002{left:1469.240000pt;}
.x11a_c00002{left:1481.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_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_ba173fd0288b73a96e5512fb.woff2')format("woff");}.ff1_c00003{font-family:ff1_c00003;line-height:0.677734;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00003;src:url('chunks/assets/font_37c2c0c4a1e9d43bc0116599.woff2')format("woff");}.ff2_c00003{font-family:ff2_c00003;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00003;src:url('chunks/assets/font_8c9fd7bd00af6e64867ce68b.woff2')format("woff");}.ff3_c00003{font-family:ff3_c00003;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00003;src:url('chunks/assets/font_3fdf992d23b1671bd3bed3af.woff2')format("woff");}.ff4_c00003{font-family:ff4_c00003;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00003;src:url('chunks/assets/font_23e6c50a542d9d7b7bf55ca3.woff2')format("woff");}.ff5_c00003{font-family:ff5_c00003;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00003;src:url('chunks/assets/font_23c751c52676cee9e6ad5daf.woff2')format("woff");}.ff6_c00003{font-family:ff6_c00003;line-height:0.740723;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00003;src:url('chunks/assets/font_c54bac165de9f73989b08330.woff2')format("woff");}.ff7_c00003{font-family:ff7_c00003;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00003;src:url('chunks/assets/font_5a0bd3ac5f5372f1ef836d48.woff2')format("woff");}.ff8_c00003{font-family:ff8_c00003;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00003;src:url('chunks/assets/font_b025be2fa5b639cf13a9b6b4.woff2')format("woff");}.ff9_c00003{font-family:ff9_c00003;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00003;src:url('chunks/assets/font_9c839b2095c8db4aeb0fb427.woff2')format("woff");}.ffa_c00003{font-family:ffa_c00003;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00003;src:url('chunks/assets/font_4e12bf50a1723aa3f35a3118.woff2')format("woff");}.ffb_c00003{font-family:ffb_c00003;line-height:0.857910;font-style:normal;font-weight: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_c00003;src:url('chunks/assets/font_03720d3c2f8c43db53421b28.woff2')format("woff");}.ffc_c00003{font-family:ffc_c00003;line-height:0.895996;font-style:normal;font-weight: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_c00003;src:url('chunks/assets/font_07da7c8dc2d6fd1ccb689a47.woff2')format("woff");}.ffd_c00003{font-family:ffd_c00003;line-height:0.857910;font-style:normal;font-weight: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_c00003;src:url('chunks/assets/font_a1069b7983e004dbcccd9760.woff2')format("woff");}.ffe_c00003{font-family:ffe_c00003;line-height:0.895996;font-style:normal;font-weight: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_c00003;src:url('chunks/assets/font_0baf05c1e718603ca2069748.woff2')format("woff");}.fff_c00003{font-family:fff_c00003;line-height:0.904297;font-style:normal;font-weight: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_c00003;src:url('chunks/assets/font_35dd324b3390c8c73b8d1987.woff2')format("woff");}.ff10_c00003{font-family:ff10_c00003;line-height:0.858398;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11_c00003;src:url('chunks/assets/font_b655d864da7f8ddbdc6f3960.woff2')format("woff");}.ff11_c00003{font-family:ff11_c00003;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12_c00003;src:url('chunks/assets/font_59298dc2424e43df87206732.woff2')format("woff");}.ff12_c00003{font-family:ff12_c00003;line-height:0.915039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13_c00003;src:url('chunks/assets/font_6f78343d66238727593bbead.woff2')format("woff");}.ff13_c00003{font-family:ff13_c00003;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14_c00003;src:url('chunks/assets/font_f60622db8547f73f657164b4.woff2')format("woff");}.ff14_c00003{font-family:ff14_c00003;line-height:0.915039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15_c00003;src:url('chunks/assets/font_d78ded8d4df2e60ddf33f78d.woff2')format("woff");}.ff15_c00003{font-family:ff15_c00003;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16_c00003;src:url('chunks/assets/font_541233adbbeb473ebbd53aef.woff2')format("woff");}.ff16_c00003{font-family:ff16_c00003;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17_c00003;src:url('chunks/assets/font_ca108dc0f6fa66f0ff74eed2.woff2')format("woff");}.ff17_c00003{font-family:ff17_c00003;line-height:0.959000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18_c00003;src:url('chunks/assets/font_3da8c2f5abbcb39e7ee1af2b.woff2')format("woff");}.ff18_c00003{font-family:ff18_c00003;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19_c00003;src:url('chunks/assets/font_f7d1bdb70d5b53b675503648.woff2')format("woff");}.ff19_c00003{font-family:ff19_c00003;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a_c00003;src:url('chunks/assets/font_cf95e74ad25471e84bde14aa.woff2')format("woff");}.ff1a_c00003{font-family:ff1a_c00003;line-height:0.906000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b_c00003;src:url('chunks/assets/font_4e2180186592e10ec08b43f6.woff2')format("woff");}.ff1b_c00003{font-family:ff1b_c00003;line-height:0.728027;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c_c00003;src:url('chunks/assets/font_ba5262e146a83d1b60e9480e.woff2')format("woff");}.ff1c_c00003{font-family:ff1c_c00003;line-height:0.708008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d_c00003;src:url('chunks/assets/font_8a7a366ddacd61c20ee47b79.woff2')format("woff");}.ff1d_c00003{font-family:ff1d_c00003;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e_c00003;src:url('chunks/assets/font_829d51284206241b66f20484.woff2')format("woff");}.ff1e_c00003{font-family:ff1e_c00003;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f_c00003;src:url('chunks/assets/font_9aa6bddf1fb21075746643b2.woff2')format("woff");}.ff1f_c00003{font-family:ff1f_c00003;line-height:1.120605;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20_c00003;src:url('chunks/assets/font_663d28d2121ceefcf9ed4a25.woff2')format("woff");}.ff20_c00003{font-family:ff20_c00003;line-height:0.971191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21_c00003;src:url('chunks/assets/font_baf5df8949a75a11b4e11e70.woff2')format("woff");}.ff21_c00003{font-family:ff21_c00003;line-height:1.120605;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22_c00003;src:url('chunks/assets/font_4d9364459f44793d4c6dd241.woff2')format("woff");}.ff22_c00003{font-family:ff22_c00003;line-height:0.971191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23_c00003;src:url('chunks/assets/font_babea2420ed1d27757bdf9e3.woff2')format("woff");}.ff23_c00003{font-family:ff23_c00003;line-height:1.120605;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24_c00003;src:url('chunks/assets/font_1da428e97153db31d87f3eff.woff2')format("woff");}.ff24_c00003{font-family:ff24_c00003;line-height:0.971191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25_c00003;src:url('chunks/assets/font_babea2420ed1d27757bdf9e3.woff2')format("woff");}.ff25_c00003{font-family:ff25_c00003;line-height:1.120605;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26_c00003;src:url('chunks/assets/font_0d327369aa74417d307139ff.woff2')format("woff");}.ff26_c00003{font-family:ff26_c00003;line-height:0.971191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27_c00003;src:url('chunks/assets/font_babea2420ed1d27757bdf9e3.woff2')format("woff");}.ff27_c00003{font-family:ff27_c00003;line-height:1.120605;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28_c00003;src:url('chunks/assets/font_030573e2bbef0c734ab83fb1.woff2')format("woff");}.ff28_c00003{font-family:ff28_c00003;line-height:0.971191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29_c00003;src:url('chunks/assets/font_a7fafe799c6f21f1bb0f9c72.woff2')format("woff");}.ff29_c00003{font-family:ff29_c00003;line-height:1.120605;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a_c00003;src:url('chunks/assets/font_0a7ceb49f9c1ce330437157e.woff2')format("woff");}.ff2a_c00003{font-family:ff2a_c00003;line-height:0.971191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b_c00003;src:url('chunks/assets/font_f53ba612c303b8e63e32366c.woff2')format("woff");}.ff2b_c00003{font-family:ff2b_c00003;line-height:0.971191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c_c00003;src:url('chunks/assets/font_fcac36a74e51fd2db76cb276.woff2')format("woff");}.ff2c_c00003{font-family:ff2c_c00003;line-height:0.971191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d_c00003;src:url('chunks/assets/font_16f943a88379b05932da4a20.woff2')format("woff");}.ff2d_c00003{font-family:ff2d_c00003;line-height:0.858398;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e_c00003;src:url('chunks/assets/font_23bc1e4bb387dcb16930c689.woff2')format("woff");}.ff2e_c00003{font-family:ff2e_c00003;line-height:0.971191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f_c00003;src:url('chunks/assets/font_6c605204da9862a41be08edc.woff2')format("woff");}.ff2f_c00003{font-family:ff2f_c00003;line-height:0.966309;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff30_c00003;src:url('chunks/assets/font_18faa526cab11c47ac61fcf4.woff2')format("woff");}.ff30_c00003{font-family:ff30_c00003;line-height:0.858398;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff31_c00003;src:url('chunks/assets/font_23bc1e4bb387dcb16930c689.woff2')format("woff");}.ff31_c00003{font-family:ff31_c00003;line-height:0.971191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff32_c00003;src:url('chunks/assets/font_e710f14a5ed119ca08cfc187.woff2')format("woff");}.ff32_c00003{font-family:ff32_c00003;line-height:0.971191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff33_c00003;src:url('chunks/assets/font_44c82e5b1a21a671a039df21.woff2')format("woff");}.ff33_c00003{font-family:ff33_c00003;line-height:0.858398;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff34_c00003;src:url('chunks/assets/font_3e8fe06cd0811cc80c04d3de.woff2')format("woff");}.ff34_c00003{font-family:ff34_c00003;line-height:0.971191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff35_c00003;src:url('chunks/assets/font_88d8bd8a83538f7420640ead.woff2')format("woff");}.ff35_c00003{font-family:ff35_c00003;line-height:0.965820;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff36_c00003;src:url('chunks/assets/font_e3cc80a67911a93e0dfa140e.woff2')format("woff");}.ff36_c00003{font-family:ff36_c00003;line-height:0.858398;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff37_c00003;src:url('chunks/assets/font_3e8fe06cd0811cc80c04d3de.woff2')format("woff");}.ff37_c00003{font-family:ff37_c00003;line-height:0.971191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff38_c00003;src:url('chunks/assets/font_85c8a8118b1848a442734e56.woff2')format("woff");}.ff38_c00003{font-family:ff38_c00003;line-height:0.971191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff39_c00003;src:url('chunks/assets/font_5d106214ea6e2267d6a0ecb7.woff2')format("woff");}.ff39_c00003{font-family:ff39_c00003;line-height:0.858398;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3a_c00003;src:url('chunks/assets/font_3e8fe06cd0811cc80c04d3de.woff2')format("woff");}.ff3a_c00003{font-family:ff3a_c00003;line-height:0.971191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3b_c00003;src:url('chunks/assets/font_61adbcfdc9796a01a0aff121.woff2')format("woff");}.ff3b_c00003{font-family:ff3b_c00003;line-height:0.960938;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3c_c00003;src:url('chunks/assets/font_870e5ad23bd783e1664d219f.woff2')format("woff");}.ff3c_c00003{font-family:ff3c_c00003;line-height:0.858398;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3d_c00003;src:url('chunks/assets/font_59a3a48220948e05b745b3da.woff2')format("woff");}.ff3d_c00003{font-family:ff3d_c00003;line-height:0.971191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3e_c00003;src:url('chunks/assets/font_0feac16ea8800da423a0b662.woff2')format("woff");}.ff3e_c00003{font-family:ff3e_c00003;line-height:0.971191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3f_c00003;src:url('chunks/assets/font_a3f37475027664c8ce0c3463.woff2')format("woff");}.ff3f_c00003{font-family:ff3f_c00003;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff40_c00003;src:url('chunks/assets/font_59a3a48220948e05b745b3da.woff2')format("woff");}.ff40_c00003{font-family:ff40_c00003;line-height:0.971191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff41_c00003;src:url('chunks/assets/font_7bd5d31222aa8cf5a0f47e7f.woff2')format("woff");}.ff41_c00003{font-family:ff41_c00003;line-height:0.971191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff42_c00003;src:url('chunks/assets/font_a3f37475027664c8ce0c3463.woff2')format("woff");}.ff42_c00003{font-family:ff42_c00003;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff43_c00003;src:url('chunks/assets/font_9bddeaf0fb3f7386bb19bc2e.woff2')format("woff");}.ff43_c00003{font-family:ff43_c00003;line-height:0.971191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff44_c00003;src:url('chunks/assets/font_cc05a4f6f8d150d84dfb9c58.woff2')format("woff");}.ff44_c00003{font-family:ff44_c00003;line-height:0.971191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff45_c00003;src:url('chunks/assets/font_b39eb2821983df9e84880dde.woff2')format("woff");}.ff45_c00003{font-family:ff45_c00003;line-height:0.971191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff46_c00003;src:url('chunks/assets/font_9424a5c5a784aebc589d2bef.woff2')format("woff");}.ff46_c00003{font-family:ff46_c00003;line-height:0.971191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff47_c00003;src:url('chunks/assets/font_b39eb2821983df9e84880dde.woff2')format("woff");}.ff47_c00003{font-family:ff47_c00003;line-height:0.971191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff48_c00003;src:url('chunks/assets/font_bcd12e5b5f4e998d4d6a0fce.woff2')format("woff");}.ff48_c00003{font-family:ff48_c00003;line-height:0.971191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff49_c00003;src:url('chunks/assets/font_c535f89f5bebaedfba75b48c.woff2')format("woff");}.ff49_c00003{font-family:ff49_c00003;line-height:0.971191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4a_c00003;src:url('chunks/assets/font_1de80b7d8f73114255553832.woff2')format("woff");}.ff4a_c00003{font-family:ff4a_c00003;line-height:0.971191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4b_c00003;src:url('chunks/assets/font_a3f37475027664c8ce0c3463.woff2')format("woff");}.ff4b_c00003{font-family:ff4b_c00003;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4c_c00003;src:url('chunks/assets/font_cbdbc92722b7f79c7ade9775.woff2')format("woff");}.ff4c_c00003{font-family:ff4c_c00003;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4d_c00003;src:url('chunks/assets/font_fe95b5ab3fe3b7305fca836e.woff2')format("woff");}.ff4d_c00003{font-family:ff4d_c00003;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4e_c00003;src:url('chunks/assets/font_0d546ca4eb41b59a60cb220c.woff2')format("woff");}.ff4e_c00003{font-family:ff4e_c00003;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4f_c00003;src:url('chunks/assets/font_30e5caa7cbe050c0440b0484.woff2')format("woff");}.ff4f_c00003{font-family:ff4f_c00003;line-height:1.120605;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff50_c00003;src:url('chunks/assets/font_829d3919abd1e773dc960573.woff2')format("woff");}.ff50_c00003{font-family:ff50_c00003;line-height:0.971191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff51_c00003;src:url('chunks/assets/font_829d51284206241b66f20484.woff2')format("woff");}.ff51_c00003{font-family:ff51_c00003;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff52_c00003;src:url('chunks/assets/font_7331ea19e37a3fac5f31b514.woff2')format("woff");}.ff52_c00003{font-family:ff52_c00003;line-height:1.120605;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff53_c00003;src:url('chunks/assets/font_1f417e2a621d34240bb689be.woff2')format("woff");}.ff53_c00003{font-family:ff53_c00003;line-height:0.971191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff54_c00003;src:url('chunks/assets/font_a3f37475027664c8ce0c3463.woff2')format("woff");}.ff54_c00003{font-family:ff54_c00003;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff55_c00003;src:url('chunks/assets/font_b0bc02fea26246ae7b634e27.woff2')format("woff");}.ff55_c00003{font-family:ff55_c00003;line-height:1.120605;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff56_c00003;src:url('chunks/assets/font_8b320a5907b005fa93178ce7.woff2')format("woff");}.ff56_c00003{font-family:ff56_c00003;line-height:0.971191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff57_c00003;src:url('chunks/assets/font_7331ea19e37a3fac5f31b514.woff2')format("woff");}.ff57_c00003{font-family:ff57_c00003;line-height:1.120605;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff58_c00003;src:url('chunks/assets/font_c5ac05ced73c11578352d967.woff2')format("woff");}.ff58_c00003{font-family:ff58_c00003;line-height:0.965820;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff59_c00003;src:url('chunks/assets/font_a3f37475027664c8ce0c3463.woff2')format("woff");}.ff59_c00003{font-family:ff59_c00003;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5a_c00003;src:url('chunks/assets/font_d294d0e3ceb85d54d3bf499c.woff2')format("woff");}.ff5a_c00003{font-family:ff5a_c00003;line-height:1.120605;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5b_c00003;src:url('chunks/assets/font_9f67ca9c30d175a5c3477bf6.woff2')format("woff");}.ff5b_c00003{font-family:ff5b_c00003;line-height:0.971191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5c_c00003;src:url('chunks/assets/font_d294d0e3ceb85d54d3bf499c.woff2')format("woff");}.ff5c_c00003{font-family:ff5c_c00003;line-height:1.120605;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5d_c00003;src:url('chunks/assets/font_e7a79032b732773f63692d4e.woff2')format("woff");}.ff5d_c00003{font-family:ff5d_c00003;line-height:0.965820;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5e_c00003;src:url('chunks/assets/font_a3f37475027664c8ce0c3463.woff2')format("woff");}.ff5e_c00003{font-family:ff5e_c00003;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5f_c00003;src:url('chunks/assets/font_b913d82a1f9a120b6749b770.woff2')format("woff");}.ff5f_c00003{font-family:ff5f_c00003;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff60_c00003;src:url('chunks/assets/font_ee253ac6cb9bf8cae6925c97.woff2')format("woff");}.ff60_c00003{font-family:ff60_c00003;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff61_c00003;src:url('chunks/assets/font_0d546ca4eb41b59a60cb220c.woff2')format("woff");}.ff61_c00003{font-family:ff61_c00003;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff62_c00003;src:url('chunks/assets/font_5e03b56f02e347b8ab49c2a3.woff2')format("woff");}.ff62_c00003{font-family:ff62_c00003;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff63_c00003;src:url('chunks/assets/font_d71bbe281427ee7702ee63f6.woff2')format("woff");}.ff63_c00003{font-family:ff63_c00003;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff64_c00003;src:url('chunks/assets/font_f3b62e5d57325645eb8220d4.woff2')format("woff");}.ff64_c00003{font-family:ff64_c00003;line-height:1.070312;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff65_c00003;src:url('chunks/assets/font_0ca77518fbfaf6e5d7e1fdc2.woff2')format("woff");}.ff65_c00003{font-family:ff65_c00003;line-height:0.871094;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff66_c00003;src:url('chunks/assets/font_829d51284206241b66f20484.woff2')format("woff");}.ff66_c00003{font-family:ff66_c00003;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff67_c00003;src:url('chunks/assets/font_9aa5d3bf57673d8ffb2bc841.woff2')format("woff");}.ff67_c00003{font-family:ff67_c00003;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff68_c00003;src:url('chunks/assets/font_844895cbe7fd7b0980a5e756.woff2')format("woff");}.ff68_c00003{font-family:ff68_c00003;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff69_c00003;src:url('chunks/assets/font_36d5c609648665586c2bbe2f.woff2')format("woff");}.ff69_c00003{font-family:ff69_c00003;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6a_c00003;src:url('chunks/assets/font_829d51284206241b66f20484.woff2')format("woff");}.ff6a_c00003{font-family:ff6a_c00003;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6b_c00003;src:url('chunks/assets/font_9e38dcd32c6e058e44d87f38.woff2')format("woff");}.ff6b_c00003{font-family:ff6b_c00003;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6c_c00003;src:url('chunks/assets/font_196cb4bb63f7f5998ead1978.woff2')format("woff");}.ff6c_c00003{font-family:ff6c_c00003;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6d_c00003;src:url('chunks/assets/font_dbe15d67cf80e3fc2b0b6dbd.woff2')format("woff");}.ff6d_c00003{font-family:ff6d_c00003;line-height:0.800781;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6e_c00003;src:url('chunks/assets/font_03459c70e288acf141acc968.woff2')format("woff");}.ff6e_c00003{font-family:ff6e_c00003;line-height:0.929199;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6f_c00003;src:url('chunks/assets/font_31c93aa6af21452aa674f11f.woff2')format("woff");}.ff6f_c00003{font-family:ff6f_c00003;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff70_c00003;src:url('chunks/assets/font_a0042dfe8d2072a4916b8c18.woff2')format("woff");}.ff70_c00003{font-family:ff70_c00003;line-height:0.850586;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff71_c00003;src:url('chunks/assets/font_8087a4d585caf1cb267869a6.woff2')format("woff");}.ff71_c00003{font-family:ff71_c00003;line-height:0.929199;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff72_c00003;src:url('chunks/assets/font_5361aaf80340b674bdf3ef66.woff2')format("woff");}.ff72_c00003{font-family:ff72_c00003;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff73_c00003;src:url('chunks/assets/font_a2cdcabd0fca6b1af7a7ec04.woff2')format("woff");}.ff73_c00003{font-family:ff73_c00003;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff74_c00003;src:url('chunks/assets/font_f9df0de17a08b4c910a81beb.woff2')format("woff");}.ff74_c00003{font-family:ff74_c00003;line-height:0.966309;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff75_c00003;src:url('chunks/assets/font_5988ab9da2a2f908168d27d1.woff2')format("woff");}.ff75_c00003{font-family:ff75_c00003;line-height:1.120605;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff76_c00003;src:url('chunks/assets/font_d96de07cb6800089026305ea.woff2')format("woff");}.ff76_c00003{font-family:ff76_c00003;line-height:0.939453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff77_c00003;src:url('chunks/assets/font_7b7a91d86d0011398df64434.woff2')format("woff");}.ff77_c00003{font-family:ff77_c00003;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff78_c00003;src:url('chunks/assets/font_bf9bab098d9f918957d05096.woff2')format("woff");}.ff78_c00003{font-family:ff78_c00003;line-height:0.986328;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff79_c00003;src:url('chunks/assets/font_9f509a8a59cb1899298d8152.woff2')format("woff");}.ff79_c00003{font-family:ff79_c00003;line-height:0.695801;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7a_c00003;src:url('chunks/assets/font_c65462de3dfbc1283f437f4b.woff2')format("woff");}.ff7a_c00003{font-family:ff7a_c00003;line-height:0.861816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7b_c00003;src:url('chunks/assets/font_91b480e0ccfa061a734c0bd5.woff2')format("woff");}.ff7b_c00003{font-family:ff7b_c00003;line-height:0.871094;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7c_c00003;src:url('chunks/assets/font_45fec1977c5e61a7bd3eb4d4.woff2')format("woff");}.ff7c_c00003{font-family:ff7c_c00003;line-height:0.871094;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m26_c00003{transform:matrix(0.249589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249589,0.000000,0.000000,0.250000,0,0);}
.m23_c00003{transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);}
.m20_c00003{transform:matrix(0.249629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249629,0.000000,0.000000,0.250000,0,0);}
.m22_c00003{transform:matrix(0.249631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249631,0.000000,0.000000,0.250000,0,0);}
.m21_c00003{transform:matrix(0.249635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249635,0.000000,0.000000,0.250000,0,0);}
.m24_c00003{transform:matrix(0.249640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249640,0.000000,0.000000,0.250000,0,0);}
.m25_c00003{transform:matrix(0.249645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249645,0.000000,0.000000,0.250000,0,0);}
.m36_c00003{transform:matrix(0.249663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249663,0.000000,0.000000,0.250000,0,0);}
.m38_c00003{transform:matrix(0.249667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249667,0.000000,0.000000,0.250000,0,0);}
.m37_c00003{transform:matrix(0.249680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249680,0.000000,0.000000,0.250000,0,0);}
.m34_c00003{transform:matrix(0.249687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249687,0.000000,0.000000,0.250000,0,0);}
.m39_c00003{transform:matrix(0.249692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249692,0.000000,0.000000,0.250000,0,0);}
.m35_c00003{transform:matrix(0.249706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249706,0.000000,0.000000,0.250000,0,0);}
.m12_c00003{transform:matrix(0.249707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249707,0.000000,0.000000,0.250000,0,0);}
.m13_c00003{transform:matrix(0.249710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249710,0.000000,0.000000,0.250000,0,0);}
.m11_c00003{transform:matrix(0.249720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249720,0.000000,0.000000,0.250000,0,0);}
.m10_c00003{transform:matrix(0.249721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249721,0.000000,0.000000,0.250000,0,0);}
.m5_c00003{transform:matrix(0.249758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249758,0.000000,0.000000,0.250000,0,0);}
.m7_c00003{transform:matrix(0.249762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249762,0.000000,0.000000,0.250000,0,0);}
.m6_c00003{transform:matrix(0.249767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249767,0.000000,0.000000,0.250000,0,0);}
.m1_c00003{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m3f_c00003{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m2_c00003{transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);}
.m3_c00003{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m0_c00003{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.m4_c00003{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.m41_c00003{transform:matrix(0.249889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249889,0.000000,0.000000,0.250000,0,0);}
.m40_c00003{transform:matrix(0.249921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249921,0.000000,0.000000,0.250000,0,0);}
.m33_c00003{transform:matrix(0.249923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249923,0.000000,0.000000,0.250000,0,0);}
.m2d_c00003{transform:matrix(0.249926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249926,0.000000,0.000000,0.250000,0,0);}
.m31_c00003{transform:matrix(0.249933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249933,0.000000,0.000000,0.250000,0,0);}
.m30_c00003{transform:matrix(0.249941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249941,0.000000,0.000000,0.250000,0,0);}
.m32_c00003{transform:matrix(0.249945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249945,0.000000,0.000000,0.250000,0,0);}
.m2f_c00003{transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);}
.m2e_c00003{transform:matrix(0.249954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249954,0.000000,0.000000,0.250000,0,0);}
.m8_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);}
.m3d_c00003{transform:matrix(0.250078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250078,0.000000,0.000000,0.250000,0,0);}
.m3b_c00003{transform:matrix(0.250100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250100,0.000000,0.000000,0.250000,0,0);}
.m3a_c00003{transform:matrix(0.250110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250110,0.000000,0.000000,0.250000,0,0);}
.m3c_c00003{transform:matrix(0.250117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250117,0.000000,0.000000,0.250000,0,0);}
.mf_c00003{transform:matrix(0.250125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250125,0.000000,0.000000,0.250000,0,0);}
.m3e_c00003{transform:matrix(0.250130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250130,0.000000,0.000000,0.250000,0,0);}
.m2b_c00003{transform:matrix(0.250132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250132,0.000000,0.000000,0.250000,0,0);}
.me_c00003{transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);}
.md_c00003{transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);}
.mc_c00003{transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);}
.m2c_c00003{transform:matrix(0.250155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250155,0.000000,0.000000,0.250000,0,0);}
.m29_c00003{transform:matrix(0.250157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250157,0.000000,0.000000,0.250000,0,0);}
.m2a_c00003{transform:matrix(0.250177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250177,0.000000,0.000000,0.250000,0,0);}
.m28_c00003{transform:matrix(0.250182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250182,0.000000,0.000000,0.250000,0,0);}
.m16_c00003{transform:matrix(0.250185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250185,0.000000,0.000000,0.250000,0,0);}
.m27_c00003{transform:matrix(0.250192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250192,0.000000,0.000000,0.250000,0,0);}
.m14_c00003{transform:matrix(0.250200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250200,0.000000,0.000000,0.250000,0,0);}
.m15_c00003{transform:matrix(0.250202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250202,0.000000,0.000000,0.250000,0,0);}
.m9_c00003{transform:matrix(0.250207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250207,0.000000,0.000000,0.250000,0,0);}
.m1a_c00003{transform:matrix(0.250317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250317,0.000000,0.000000,0.250000,0,0);}
.m17_c00003{transform:matrix(0.250320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250320,0.000000,0.000000,0.250000,0,0);}
.m19_c00003{transform:matrix(0.250327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250327,0.000000,0.000000,0.250000,0,0);}
.m18_c00003{transform:matrix(0.250335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250335,0.000000,0.000000,0.250000,0,0);}
.ma_c00003{transform:matrix(0.250545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250545,0.000000,0.000000,0.250000,0,0);}
.mb_c00003{transform:matrix(0.250553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250553,0.000000,0.000000,0.250000,0,0);}
.m1e_c00003{transform:matrix(0.250582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250582,0.000000,0.000000,0.250000,0,0);}
.m1b_c00003{transform:matrix(0.250590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250590,0.000000,0.000000,0.250000,0,0);}
.m1c_c00003{transform:matrix(0.250597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250597,0.000000,0.000000,0.250000,0,0);}
.m1d_c00003{transform:matrix(0.250607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250607,0.000000,0.000000,0.250000,0,0);}
.m1f_c00003{transform:matrix(0.250617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250617,0.000000,0.000000,0.250000,0,0);}
.vb_c00003{vertical-align:-53.280480px;}
.v9_c00003{vertical-align:-51.121860px;}
.v16_c00003{vertical-align:-18.000000px;}
.v17_c00003{vertical-align:-5.760936px;}
.v2_c00003{vertical-align:-4.319532px;}
.vd_c00003{vertical-align:-2.158596px;}
.v0_c00003{vertical-align:0.000000px;}
.v4_c00003{vertical-align:2.160936px;}
.v1_c00003{vertical-align:4.319532px;}
.v15_c00003{vertical-align:18.000000px;}
.v11_c00003{vertical-align:19.439040px;}
.v3_c00003{vertical-align:24.479532px;}
.vc_c00003{vertical-align:26.639040px;}
.va_c00003{vertical-align:28.080480px;}
.ve_c00003{vertical-align:30.239040px;}
.v6_c00003{vertical-align:31.680480px;}
.v8_c00003{vertical-align:33.839040px;}
.v5_c00003{vertical-align:36.719520px;}
.v12_c00003{vertical-align:38.158620px;}
.vf_c00003{vertical-align:39.600000px;}
.v13_c00003{vertical-align:42.478140px;}
.v14_c00003{vertical-align:51.841380px;}
.v10_c00003{vertical-align:56.886000px;}
.v7_c00003{vertical-align:66.239100px;}
.ls0_c00003{letter-spacing:0.000000px;}
.ls1e_c00003{letter-spacing:0.016260px;}
.ls14_c00003{letter-spacing:0.079075px;}
.ls1_c00003{letter-spacing:0.359760px;}
.ls1d_c00003{letter-spacing:0.542400px;}
.ls1b_c00003{letter-spacing:17.890080px;}
.ls1c_c00003{letter-spacing:18.609600px;}
.ls5_c00003{letter-spacing:194.091166px;}
.ls3_c00003{letter-spacing:208.186621px;}
.ls8_c00003{letter-spacing:210.041284px;}
.ls6_c00003{letter-spacing:210.184276px;}
.ls7_c00003{letter-spacing:210.457732px;}
.ls4_c00003{letter-spacing:226.420029px;}
.lsf_c00003{letter-spacing:282.050520px;}
.lsc_c00003{letter-spacing:296.458920px;}
.ls12_c00003{letter-spacing:305.825520px;}
.ls18_c00003{letter-spacing:358.417920px;}
.lsa_c00003{letter-spacing:401.999962px;}
.lse_c00003{letter-spacing:524.121720px;}
.ls1a_c00003{letter-spacing:574.501080px;}
.ls17_c00003{letter-spacing:630.023520px;}
.ls10_c00003{letter-spacing:692.699520px;}
.ls11_c00003{letter-spacing:742.403520px;}
.lsd_c00003{letter-spacing:800.759520px;}
.ls9_c00003{letter-spacing:845.105280px;}
.ls2_c00003{letter-spacing:845.705280px;}
.ls13_c00003{letter-spacing:845.885280px;}
.ls15_c00003{letter-spacing:846.101280px;}
.lsb_c00003{letter-spacing:848.537883px;}
.ls19_c00003{letter-spacing:859.841520px;}
.ls16_c00003{letter-spacing:918.197520px;}
.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;}
}
.wsf1_c00003{word-spacing:-242.386791px;}
.ws13a_c00003{word-spacing:-225.664153px;}
.ws129_c00003{word-spacing:-225.390697px;}
.ws15b_c00003{word-spacing:-225.247705px;}
.wse2_c00003{word-spacing:-224.153383px;}
.ws10f_c00003{word-spacing:-208.537267px;}
.ws14_c00003{word-spacing:-29.973960px;}
.ws1a4_c00003{word-spacing:-26.864640px;}
.ws17f_c00003{word-spacing:-26.621280px;}
.ws179_c00003{word-spacing:-23.395555px;}
.ws16_c00003{word-spacing:-23.379689px;}
.ws177_c00003{word-spacing:-23.316480px;}
.ws176_c00003{word-spacing:-22.654080px;}
.ws13_c00003{word-spacing:-19.183334px;}
.ws181_c00003{word-spacing:-18.454752px;}
.ws178_c00003{word-spacing:-18.414720px;}
.wsef_c00003{word-spacing:-18.247849px;}
.ws1a1_c00003{word-spacing:-18.014400px;}
.wsa9_c00003{word-spacing:-17.994303px;}
.ws6f_c00003{word-spacing:-17.740863px;}
.ws87_c00003{word-spacing:-17.487423px;}
.ws50_c00003{word-spacing:-17.487360px;}
.ws1f_c00003{word-spacing:-17.233962px;}
.wsca_c00003{word-spacing:-16.980564px;}
.ws10d_c00003{word-spacing:-16.727146px;}
.ws1a0_c00003{word-spacing:-16.727082px;}
.ws196_c00003{word-spacing:-16.613297px;}
.ws19f_c00003{word-spacing:-16.251881px;}
.ws9f_c00003{word-spacing:-16.220181px;}
.ws46_c00003{word-spacing:-15.966762px;}
.wsc0_c00003{word-spacing:-15.459840px;}
.ws135_c00003{word-spacing:-15.206421px;}
.ws180_c00003{word-spacing:-15.012017px;}
.ws0_c00003{word-spacing:-14.970240px;}
.ws1a2_c00003{word-spacing:-14.598753px;}
.ws119_c00003{word-spacing:-14.446101px;}
.wsdf_c00003{word-spacing:-13.685781px;}
.ws15_c00003{word-spacing:-13.388385px;}
.ws10b_c00003{word-spacing:-12.925440px;}
.ws198_c00003{word-spacing:-12.409920px;}
.ws17e_c00003{word-spacing:-12.236558px;}
.ws17b_c00003{word-spacing:-12.204014px;}
.ws1c_c00003{word-spacing:-12.039915px;}
.ws17a_c00003{word-spacing:-11.609280px;}
.ws195_c00003{word-spacing:-10.808640px;}
.wsb_c00003{word-spacing:-9.925920px;}
.ws12_c00003{word-spacing:-8.992188px;}
.ws191_c00003{word-spacing:-8.599674px;}
.ws1f9_c00003{word-spacing:-8.461440px;}
.ws1f1_c00003{word-spacing:-6.508800px;}
.ws1c3_c00003{word-spacing:-6.183360px;}
.ws1a5_c00003{word-spacing:-5.857920px;}
.ws1a3_c00003{word-spacing:-0.064800px;}
.ws18_c00003{word-spacing:-0.048160px;}
.ws1_c00003{word-spacing:0.000000px;}
.ws188_c00003{word-spacing:10.488539px;}
.ws18a_c00003{word-spacing:20.797969px;}
.ws193_c00003{word-spacing:26.495603px;}
.ws1de_c00003{word-spacing:40.363661px;}
.ws1cb_c00003{word-spacing:40.379213px;}
.ws1ca_c00003{word-spacing:48.228194px;}
.ws1e1_c00003{word-spacing:48.295181px;}
.ws1cc_c00003{word-spacing:48.295440px;}
.ws1e2_c00003{word-spacing:49.712674px;}
.wse9_c00003{word-spacing:52.106531px;}
.ws126_c00003{word-spacing:53.603637px;}
.ws1d4_c00003{word-spacing:55.447482px;}
.ws1d6_c00003{word-spacing:55.492128px;}
.ws1cf_c00003{word-spacing:57.629190px;}
.ws18d_c00003{word-spacing:57.634762px;}
.ws1c9_c00003{word-spacing:57.636749px;}
.ws1c8_c00003{word-spacing:57.639558px;}
.ws1e0_c00003{word-spacing:57.652042px;}
.ws1d1_c00003{word-spacing:57.691398px;}
.ws1fe_c00003{word-spacing:58.531075px;}
.ws1ff_c00003{word-spacing:58.594349px;}
.ws163_c00003{word-spacing:61.395925px;}
.ws131_c00003{word-spacing:61.538485px;}
.ws141_c00003{word-spacing:61.812374px;}
.ws186_c00003{word-spacing:63.973267px;}
.ws1fd_c00003{word-spacing:70.028863px;}
.ws200_c00003{word-spacing:70.055856px;}
.wsf9_c00003{word-spacing:70.339938px;}
.ws201_c00003{word-spacing:71.450979px;}
.ws203_c00003{word-spacing:71.546825px;}
.ws1e3_c00003{word-spacing:75.606708px;}
.ws1d0_c00003{word-spacing:75.621711px;}
.ws18b_c00003{word-spacing:75.878582px;}
.ws1ce_c00003{word-spacing:79.939811px;}
.ws206_c00003{word-spacing:80.027789px;}
.ws20c_c00003{word-spacing:80.140694px;}
.ws209_c00003{word-spacing:80.141835px;}
.ws18e_c00003{word-spacing:80.495510px;}
.ws187_c00003{word-spacing:81.934906px;}
.ws184_c00003{word-spacing:82.488758px;}
.ws192_c00003{word-spacing:82.656259px;}
.ws207_c00003{word-spacing:82.964092px;}
.ws1fb_c00003{word-spacing:82.999286px;}
.ws1fc_c00003{word-spacing:83.022451px;}
.ws1cd_c00003{word-spacing:83.538228px;}
.ws1d5_c00003{word-spacing:85.001011px;}
.ws185_c00003{word-spacing:86.856538px;}
.ws1f8_c00003{word-spacing:88.182806px;}
.ws189_c00003{word-spacing:90.023724px;}
.ws183_c00003{word-spacing:90.122683px;}
.wsed_c00003{word-spacing:90.192876px;}
.ws182_c00003{word-spacing:90.636854px;}
.ws216_c00003{word-spacing:90.945130px;}
.ws190_c00003{word-spacing:91.476115px;}
.ws217_c00003{word-spacing:93.226349px;}
.ws7_c00003{word-spacing:94.033598px;}
.wsa_c00003{word-spacing:94.034038px;}
.ws1d8_c00003{word-spacing:97.953754px;}
.wsec_c00003{word-spacing:99.489712px;}
.ws1b7_c00003{word-spacing:101.313259px;}
.wsd_c00003{word-spacing:101.364108px;}
.ws1e5_c00003{word-spacing:102.999744px;}
.ws1d7_c00003{word-spacing:103.689361px;}
.wsf_c00003{word-spacing:104.829134px;}
.ws18c_c00003{word-spacing:105.458717px;}
.ws1e4_c00003{word-spacing:107.272775px;}
.ws1d2_c00003{word-spacing:107.310874px;}
.ws208_c00003{word-spacing:109.633825px;}
.ws202_c00003{word-spacing:109.702280px;}
.ws118_c00003{word-spacing:114.512438px;}
.ws205_c00003{word-spacing:115.396373px;}
.ws20e_c00003{word-spacing:117.596419px;}
.wsc3_c00003{word-spacing:118.615695px;}
.ws11b_c00003{word-spacing:119.353886px;}
.ws212_c00003{word-spacing:120.404512px;}
.ws213_c00003{word-spacing:120.477802px;}
.wse1_c00003{word-spacing:121.088840px;}
.wseb_c00003{word-spacing:121.615925px;}
.ws18f_c00003{word-spacing:123.273965px;}
.ws20a_c00003{word-spacing:123.359933px;}
.ws43_c00003{word-spacing:124.693381px;}
.ws167_c00003{word-spacing:125.165619px;}
.ws61_c00003{word-spacing:125.294417px;}
.wsdd_c00003{word-spacing:125.328703px;}
.ws80_c00003{word-spacing:126.846113px;}
.ws165_c00003{word-spacing:126.952448px;}
.ws133_c00003{word-spacing:127.087233px;}
.ws143_c00003{word-spacing:127.345569px;}
.ws112_c00003{word-spacing:127.465091px;}
.ws49_c00003{word-spacing:127.608048px;}
.ws42_c00003{word-spacing:128.400363px;}
.ws175_c00003{word-spacing:132.305275px;}
.ws11c_c00003{word-spacing:133.310217px;}
.ws211_c00003{word-spacing:134.124650px;}
.ws103_c00003{word-spacing:134.143441px;}
.wse5_c00003{word-spacing:134.543106px;}
.ws215_c00003{word-spacing:136.285606px;}
.ws114_c00003{word-spacing:137.045483px;}
.ws33_c00003{word-spacing:138.148323px;}
.ws11a_c00003{word-spacing:138.621421px;}
.ws1dc_c00003{word-spacing:138.925421px;}
.ws1dd_c00003{word-spacing:138.977078px;}
.wsfb_c00003{word-spacing:139.798529px;}
.ws15e_c00003{word-spacing:139.905554px;}
.ws12c_c00003{word-spacing:140.048115px;}
.ws13d_c00003{word-spacing:140.322003px;}
.ws1db_c00003{word-spacing:140.387214px;}
.ws16f_c00003{word-spacing:140.518953px;}
.ws5b_c00003{word-spacing:141.086198px;}
.ws1f3_c00003{word-spacing:141.895008px;}
.ws1ec_c00003{word-spacing:142.039335px;}
.ws20f_c00003{word-spacing:142.048153px;}
.ws1e9_c00003{word-spacing:142.068384px;}
.ws1ee_c00003{word-spacing:142.107303px;}
.wsff_c00003{word-spacing:142.585001px;}
.ws15f_c00003{word-spacing:143.885144px;}
.ws63_c00003{word-spacing:145.799340px;}
.wse8_c00003{word-spacing:146.881058px;}
.ws44_c00003{word-spacing:147.974184px;}
.ws15a_c00003{word-spacing:148.033214px;}
.ws1d3_c00003{word-spacing:149.749095px;}
.ws194_c00003{word-spacing:149.931590px;}
.ws1bb_c00003{word-spacing:149.935262px;}
.ws20d_c00003{word-spacing:149.971655px;}
.ws1ed_c00003{word-spacing:150.518286px;}
.ws1ea_c00003{word-spacing:150.541344px;}
.ws1e8_c00003{word-spacing:150.633237px;}
.ws1f4_c00003{word-spacing:150.634304px;}
.ws1f0_c00003{word-spacing:150.657510px;}
.ws1f7_c00003{word-spacing:150.663513px;}
.ws1f2_c00003{word-spacing:150.667602px;}
.ws1f5_c00003{word-spacing:150.680111px;}
.ws1ef_c00003{word-spacing:150.686115px;}
.ws1f6_c00003{word-spacing:150.692118px;}
.ws1e7_c00003{word-spacing:150.696402px;}
.ws1eb_c00003{word-spacing:150.714720px;}
.ws125_c00003{word-spacing:150.791515px;}
.ws1b4_c00003{word-spacing:151.122315px;}
.ws1b3_c00003{word-spacing:151.166413px;}
.ws161_c00003{word-spacing:151.655971px;}
.ws12f_c00003{word-spacing:151.798531px;}
.ws166_c00003{word-spacing:152.058163px;}
.ws140_c00003{word-spacing:152.072419px;}
.ws16e_c00003{word-spacing:152.255155px;}
.ws68_c00003{word-spacing:152.383144px;}
.ws174_c00003{word-spacing:152.633588px;}
.wsf4_c00003{word-spacing:152.776059px;}
.wse0_c00003{word-spacing:153.245990px;}
.ws1df_c00003{word-spacing:153.347512px;}
.ws111_c00003{word-spacing:153.553847px;}
.ws204_c00003{word-spacing:155.054016px;}
.wse_c00003{word-spacing:156.159756px;}
.ws20_c00003{word-spacing:156.998855px;}
.wsd6_c00003{word-spacing:158.147426px;}
.ws1ba_c00003{word-spacing:158.504340px;}
.ws1c2_c00003{word-spacing:158.521976px;}
.ws1c4_c00003{word-spacing:158.531538px;}
.ws1bf_c00003{word-spacing:158.547954px;}
.ws1c6_c00003{word-spacing:158.548002px;}
.ws1be_c00003{word-spacing:158.549447px;}
.ws1c5_c00003{word-spacing:158.555449px;}
.ws1b9_c00003{word-spacing:158.561634px;}
.ws1c0_c00003{word-spacing:158.576918px;}
.ws1bd_c00003{word-spacing:158.577192px;}
.ws1c1_c00003{word-spacing:158.615806px;}
.ws1bc_c00003{word-spacing:158.842037px;}
.ws1b1_c00003{word-spacing:159.077481px;}
.ws1ab_c00003{word-spacing:159.082930px;}
.ws1b0_c00003{word-spacing:159.083978px;}
.ws1b2_c00003{word-spacing:159.089975px;}
.ws1b5_c00003{word-spacing:159.098981px;}
.ws1a9_c00003{word-spacing:159.104978px;}
.ws1ae_c00003{word-spacing:159.111475px;}
.ws1a7_c00003{word-spacing:159.114482px;}
.ws1af_c00003{word-spacing:159.126768px;}
.ws1aa_c00003{word-spacing:159.127027px;}
.ws92_c00003{word-spacing:159.550382px;}
.ws5f_c00003{word-spacing:159.551294px;}
.ws104_c00003{word-spacing:159.874918px;}
.ws109_c00003{word-spacing:160.314004px;}
.ws2c_c00003{word-spacing:160.668741px;}
.ws20b_c00003{word-spacing:160.776430px;}
.ws210_c00003{word-spacing:160.782433px;}
.ws214_c00003{word-spacing:160.815283px;}
.wsb5_c00003{word-spacing:161.223846px;}
.ws9c_c00003{word-spacing:161.365560px;}
.ws108_c00003{word-spacing:161.976906px;}
.ws110_c00003{word-spacing:163.137522px;}
.wse4_c00003{word-spacing:163.382616px;}
.ws10e_c00003{word-spacing:163.675146px;}
.wsa2_c00003{word-spacing:164.214927px;}
.wsf7_c00003{word-spacing:165.114012px;}
.ws3d_c00003{word-spacing:165.275809px;}
.ws162_c00003{word-spacing:165.476102px;}
.ws7b_c00003{word-spacing:165.936545px;}
.ws10_c00003{word-spacing:166.970225px;}
.ws15d_c00003{word-spacing:167.371720px;}
.ws12b_c00003{word-spacing:167.513849px;}
.ws124_c00003{word-spacing:167.662344px;}
.ws13c_c00003{word-spacing:167.785577px;}
.ws3c_c00003{word-spacing:170.779564px;}
.wsfe_c00003{word-spacing:171.422244px;}
.ws11d_c00003{word-spacing:172.750388px;}
.ws2b_c00003{word-spacing:175.814164px;}
.ws8_c00003{word-spacing:178.420169px;}
.ws148_c00003{word-spacing:178.558752px;}
.ws113_c00003{word-spacing:179.645065px;}
.ws106_c00003{word-spacing:179.705909px;}
.ws16a_c00003{word-spacing:179.718730px;}
.ws171_c00003{word-spacing:180.096730px;}
.ws11f_c00003{word-spacing:180.366352px;}
.ws1d9_c00003{word-spacing:181.415162px;}
.wsf3_c00003{word-spacing:181.613302px;}
.wsf5_c00003{word-spacing:182.058285px;}
.ws3_c00003{word-spacing:182.542251px;}
.ws30_c00003{word-spacing:183.227374px;}
.ws121_c00003{word-spacing:184.222416px;}
.ws10c_c00003{word-spacing:185.680006px;}
.ws41_c00003{word-spacing:187.429131px;}
.ws147_c00003{word-spacing:187.884792px;}
.ws23_c00003{word-spacing:189.211280px;}
.ws2_c00003{word-spacing:189.680007px;}
.wse6_c00003{word-spacing:190.816417px;}
.ws107_c00003{word-spacing:191.306760px;}
.wse7_c00003{word-spacing:192.219859px;}
.ws25_c00003{word-spacing:194.177477px;}
.ws3b_c00003{word-spacing:194.295434px;}
.ws28_c00003{word-spacing:194.309142px;}
.ws160_c00003{word-spacing:194.834863px;}
.ws12e_c00003{word-spacing:194.977855px;}
.ws150_c00003{word-spacing:195.237122px;}
.ws13f_c00003{word-spacing:195.251311px;}
.wsd8_c00003{word-spacing:195.305208px;}
.wsea_c00003{word-spacing:195.357872px;}
.wsfd_c00003{word-spacing:196.341279px;}
.ws12d_c00003{word-spacing:196.989031px;}
.ws13e_c00003{word-spacing:197.297372px;}
.wsc1_c00003{word-spacing:198.568440px;}
.ws4_c00003{word-spacing:199.111358px;}
.wsf0_c00003{word-spacing:199.838998px;}
.ws11_c00003{word-spacing:200.682778px;}
.wsd4_c00003{word-spacing:201.246714px;}
.wsf8_c00003{word-spacing:201.512273px;}
.ws139_c00003{word-spacing:202.537433px;}
.ws7e_c00003{word-spacing:202.792655px;}
.ws47_c00003{word-spacing:202.794455px;}
.ws159_c00003{word-spacing:203.250234px;}
.ws102_c00003{word-spacing:203.341654px;}
.ws169_c00003{word-spacing:203.447227px;}
.ws170_c00003{word-spacing:203.825227px;}
.ws115_c00003{word-spacing:204.153778px;}
.ws123_c00003{word-spacing:204.783251px;}
.wsd2_c00003{word-spacing:205.573853px;}
.wsbf_c00003{word-spacing:206.282866px;}
.wsa0_c00003{word-spacing:207.607428px;}
.ws24_c00003{word-spacing:208.061265px;}
.ws8e_c00003{word-spacing:208.511690px;}
.ws173_c00003{word-spacing:208.822178px;}
.wsf6_c00003{word-spacing:210.453266px;}
.ws66_c00003{word-spacing:210.511655px;}
.wsdc_c00003{word-spacing:210.671287px;}
.ws55_c00003{word-spacing:210.672014px;}
.ws29_c00003{word-spacing:211.633546px;}
.ws117_c00003{word-spacing:211.651387px;}
.wse3_c00003{word-spacing:212.363835px;}
.wsd1_c00003{word-spacing:212.439887px;}
.ws6_c00003{word-spacing:212.790463px;}
.ws1da_c00003{word-spacing:213.087226px;}
.ws22_c00003{word-spacing:214.356708px;}
.ws77_c00003{word-spacing:214.802039px;}
.ws5_c00003{word-spacing:215.682258px;}
.ws45_c00003{word-spacing:215.758544px;}
.ws100_c00003{word-spacing:216.761045px;}
.wsd7_c00003{word-spacing:216.965786px;}
.ws7d_c00003{word-spacing:217.098255px;}
.wsd5_c00003{word-spacing:217.147618px;}
.ws8c_c00003{word-spacing:217.333399px;}
.ws5e_c00003{word-spacing:217.333606px;}
.ws14b_c00003{word-spacing:219.483558px;}
.ws26_c00003{word-spacing:221.052004px;}
.ws14a_c00003{word-spacing:221.146461px;}
.wsb0_c00003{word-spacing:221.187306px;}
.ws93_c00003{word-spacing:221.277012px;}
.ws60_c00003{word-spacing:221.277701px;}
.ws11e_c00003{word-spacing:221.418622px;}
.ws116_c00003{word-spacing:222.809769px;}
.ws16b_c00003{word-spacing:222.897622px;}
.ws1d_c00003{word-spacing:223.135308px;}
.ws172_c00003{word-spacing:223.275622px;}
.ws164_c00003{word-spacing:223.370662px;}
.ws76_c00003{word-spacing:223.469862px;}
.wsfc_c00003{word-spacing:224.592016px;}
.ws105_c00003{word-spacing:225.044710px;}
.ws54_c00003{word-spacing:225.596880px;}
.ws14e_c00003{word-spacing:225.791791px;}
.wsb6_c00003{word-spacing:225.968065px;}
.ws122_c00003{word-spacing:226.226134px;}
.ws1e_c00003{word-spacing:226.246673px;}
.ws65_c00003{word-spacing:226.327027px;}
.ws7c_c00003{word-spacing:227.877862px;}
.wsc7_c00003{word-spacing:228.008459px;}
.ws36_c00003{word-spacing:231.792211px;}
.ws27_c00003{word-spacing:232.394444px;}
.ws4d_c00003{word-spacing:233.088127px;}
.ws84_c00003{word-spacing:233.088475px;}
.ws120_c00003{word-spacing:233.620494px;}
.wsc8_c00003{word-spacing:235.176690px;}
.ws62_c00003{word-spacing:235.960625px;}
.ws151_c00003{word-spacing:236.123873px;}
.wsa6_c00003{word-spacing:237.142937px;}
.ws101_c00003{word-spacing:237.382662px;}
.ws144_c00003{word-spacing:238.268635px;}
.wscc_c00003{word-spacing:238.867337px;}
.ws4e_c00003{word-spacing:238.931040px;}
.ws85_c00003{word-spacing:238.934917px;}
.ws145_c00003{word-spacing:240.429715px;}
.ws16c_c00003{word-spacing:242.538529px;}
.ws89_c00003{word-spacing:242.804428px;}
.ws14f_c00003{word-spacing:242.901175px;}
.wsa7_c00003{word-spacing:242.926837px;}
.wsda_c00003{word-spacing:244.964522px;}
.ws52_c00003{word-spacing:244.964628px;}
.ws2e_c00003{word-spacing:245.479187px;}
.ws149_c00003{word-spacing:247.071130px;}
.wsce_c00003{word-spacing:247.370644px;}
.ws6d_c00003{word-spacing:247.601077px;}
.wsfa_c00003{word-spacing:247.887865px;}
.ws90_c00003{word-spacing:248.918071px;}
.ws57_c00003{word-spacing:248.920646px;}
.wsc4_c00003{word-spacing:250.010350px;}
.ws71_c00003{word-spacing:250.304430px;}
.ws8b_c00003{word-spacing:250.782071px;}
.ws9b_c00003{word-spacing:251.693172px;}
.ws64_c00003{word-spacing:252.246226px;}
.ws2f_c00003{word-spacing:253.306987px;}
.wsb3_c00003{word-spacing:253.690539px;}
.ws79_c00003{word-spacing:255.515305px;}
.ws81_c00003{word-spacing:256.031776px;}
.ws4a_c00003{word-spacing:256.032338px;}
.wsc9_c00003{word-spacing:257.958895px;}
.ws73_c00003{word-spacing:258.063538px;}
.ws16d_c00003{word-spacing:258.251687px;}
.ws9e_c00003{word-spacing:258.694441px;}
.wscb_c00003{word-spacing:259.152089px;}
.ws153_c00003{word-spacing:259.201787px;}
.ws15c_c00003{word-spacing:259.609033px;}
.ws12a_c00003{word-spacing:259.790905px;}
.ws13b_c00003{word-spacing:260.138665px;}
.wsa3_c00003{word-spacing:260.271240px;}
.ws142_c00003{word-spacing:262.894829px;}
.ws157_c00003{word-spacing:263.196191px;}
.ws9_c00003{word-spacing:263.463343px;}
.ws51_c00003{word-spacing:263.622000px;}
.ws88_c00003{word-spacing:263.625967px;}
.ws86_c00003{word-spacing:264.673146px;}
.ws4f_c00003{word-spacing:264.673181px;}
.ws1fa_c00003{word-spacing:264.948004px;}
.ws218_c00003{word-spacing:264.948540px;}
.wsb7_c00003{word-spacing:265.826223px;}
.ws95_c00003{word-spacing:265.826750px;}
.wsaa_c00003{word-spacing:268.333567px;}
.wsa8_c00003{word-spacing:270.358274px;}
.ws70_c00003{word-spacing:272.649967px;}
.wsdb_c00003{word-spacing:278.869754px;}
.ws154_c00003{word-spacing:279.603702px;}
.ws38_c00003{word-spacing:279.613046px;}
.wsf2_c00003{word-spacing:279.675077px;}
.wsbd_c00003{word-spacing:281.192303px;}
.ws9a_c00003{word-spacing:281.192774px;}
.ws155_c00003{word-spacing:281.807443px;}
.ws31_c00003{word-spacing:282.627528px;}
.ws146_c00003{word-spacing:284.687371px;}
.ws152_c00003{word-spacing:285.283856px;}
.wsb1_c00003{word-spacing:286.635450px;}
.ws156_c00003{word-spacing:289.676063px;}
.ws94_c00003{word-spacing:294.727380px;}
.wsd3_c00003{word-spacing:294.946347px;}
.ws1ac_c00003{word-spacing:296.897184px;}
.ws34_c00003{word-spacing:297.372508px;}
.ws1a8_c00003{word-spacing:300.474144px;}
.ws56_c00003{word-spacing:300.484560px;}
.ws8f_c00003{word-spacing:300.488660px;}
.ws1e6_c00003{word-spacing:301.654047px;}
.ws21_c00003{word-spacing:301.770934px;}
.wsb2_c00003{word-spacing:306.264740px;}
.ws128_c00003{word-spacing:308.054444px;}
.wscd_c00003{word-spacing:308.646575px;}
.ws78_c00003{word-spacing:310.046900px;}
.ws138_c00003{word-spacing:311.971393px;}
.ws3e_c00003{word-spacing:313.255661px;}
.ws53_c00003{word-spacing:314.593680px;}
.ws8a_c00003{word-spacing:314.597831px;}
.wsb9_c00003{word-spacing:315.482557px;}
.ws97_c00003{word-spacing:315.483401px;}
.ws19_c00003{word-spacing:315.917092px;}
.ws1b8_c00003{word-spacing:317.274774px;}
.ws1a6_c00003{word-spacing:317.570488px;}
.ws1ad_c00003{word-spacing:317.710944px;}
.wsac_c00003{word-spacing:320.782871px;}
.wsab_c00003{word-spacing:321.920132px;}
.ws1b6_c00003{word-spacing:321.937800px;}
.wsba_c00003{word-spacing:323.486034px;}
.ws72_c00003{word-spacing:324.360551px;}
.ws130_c00003{word-spacing:325.538804px;}
.wsc6_c00003{word-spacing:327.508509px;}
.ws32_c00003{word-spacing:327.675885px;}
.ws98_c00003{word-spacing:328.613328px;}
.ws10a_c00003{word-spacing:328.986363px;}
.ws35_c00003{word-spacing:331.946053px;}
.ws17c_c00003{word-spacing:332.694370px;}
.ws83_c00003{word-spacing:334.015582px;}
.ws96_c00003{word-spacing:334.016160px;}
.wsb8_c00003{word-spacing:334.017982px;}
.ws58_c00003{word-spacing:334.018560px;}
.wsd9_c00003{word-spacing:334.020382px;}
.ws4c_c00003{word-spacing:334.020960px;}
.ws91_c00003{word-spacing:334.022782px;}
.ws17d_c00003{word-spacing:337.318935px;}
.ws2d_c00003{word-spacing:338.833745px;}
.wsb4_c00003{word-spacing:340.770862px;}
.wsa5_c00003{word-spacing:340.773262px;}
.ws134_c00003{word-spacing:343.742013px;}
.ws7a_c00003{word-spacing:344.067022px;}
.ws6b_c00003{word-spacing:344.069422px;}
.ws2a_c00003{word-spacing:346.165026px;}
.wsbe_c00003{word-spacing:350.109642px;}
.ws9d_c00003{word-spacing:350.110361px;}
.ws14d_c00003{word-spacing:353.374386px;}
.wsad_c00003{word-spacing:357.550897px;}
.wsc5_c00003{word-spacing:364.026371px;}
.wsc2_c00003{word-spacing:364.171091px;}
.wsde_c00003{word-spacing:365.534841px;}
.ws6c_c00003{word-spacing:365.796442px;}
.ws137_c00003{word-spacing:367.824104px;}
.ws132_c00003{word-spacing:368.321120px;}
.ws4b_c00003{word-spacing:371.626320px;}
.ws82_c00003{word-spacing:371.630678px;}
.ws48_c00003{word-spacing:371.775360px;}
.ws7f_c00003{word-spacing:371.779718px;}
.ws37_c00003{word-spacing:372.896134px;}
.ws14c_c00003{word-spacing:373.287226px;}
.wsa4_c00003{word-spacing:379.468838px;}
.wsa1_c00003{word-spacing:379.622198px;}
.ws158_c00003{word-spacing:380.903717px;}
.ws168_c00003{word-spacing:381.371792px;}
.ws6a_c00003{word-spacing:382.219958px;}
.ws67_c00003{word-spacing:382.371158px;}
.ws69_c00003{word-spacing:389.269822px;}
.ws6e_c00003{word-spacing:397.834325px;}
.wsee_c00003{word-spacing:403.570361px;}
.ws40_c00003{word-spacing:410.946767px;}
.wsd0_c00003{word-spacing:497.453355px;}
.ws136_c00003{word-spacing:499.153231px;}
.wsbc_c00003{word-spacing:509.837879px;}
.ws5d_c00003{word-spacing:509.841000px;}
.wsaf_c00003{word-spacing:520.224512px;}
.ws5a_c00003{word-spacing:530.706600px;}
.ws127_c00003{word-spacing:562.080301px;}
.ws1c7_c00003{word-spacing:588.901024px;}
.ws19b_c00003{word-spacing:636.816787px;}
.ws197_c00003{word-spacing:644.013101px;}
.ws3f_c00003{word-spacing:648.019719px;}
.ws1a_c00003{word-spacing:702.357017px;}
.ws17_c00003{word-spacing:702.358049px;}
.wscf_c00003{word-spacing:723.228078px;}
.wsc_c00003{word-spacing:740.093520px;}
.wsbb_c00003{word-spacing:740.817059px;}
.ws99_c00003{word-spacing:740.817360px;}
.ws8d_c00003{word-spacing:740.835059px;}
.ws5c_c00003{word-spacing:740.835360px;}
.ws1b_c00003{word-spacing:747.199128px;}
.wsae_c00003{word-spacing:756.179939px;}
.ws74_c00003{word-spacing:759.028499px;}
.ws19c_c00003{word-spacing:797.634242px;}
.ws199_c00003{word-spacing:812.028242px;}
.ws19d_c00003{word-spacing:835.068242px;}
.ws19a_c00003{word-spacing:849.450242px;}
.ws19e_c00003{word-spacing:891.186242px;}
.ws39_c00003{word-spacing:1011.354511px;}
.ws75_c00003{word-spacing:1024.287898px;}
.ws59_c00003{word-spacing:2947.259256px;}
.ws3a_c00003{word-spacing:3113.201667px;}
._c3_c00003{margin-left:-3832.001518px;}
._a1_c00003{margin-left:-3249.833518px;}
._68_c00003{margin-left:-678.210270px;}
._91_c00003{margin-left:-598.629096px;}
._67_c00003{margin-left:-570.865207px;}
._8b_c00003{margin-left:-424.322345px;}
._1d3_c00003{margin-left:-402.721978px;}
._8a_c00003{margin-left:-395.188502px;}
._89_c00003{margin-left:-369.646524px;}
._63_c00003{margin-left:-349.163992px;}
._62_c00003{margin-left:-313.075977px;}
._f7_c00003{margin-left:-226.420029px;}
._14c_c00003{margin-left:-210.184276px;}
._d3_c00003{margin-left:-208.186621px;}
._120_c00003{margin-left:-194.091166px;}
._1e1_c00003{margin-left:-22.054663px;}
._208_c00003{margin-left:-20.755007px;}
._206_c00003{margin-left:-17.760621px;}
._1f9_c00003{margin-left:-16.241099px;}
._1df_c00003{margin-left:-12.932094px;}
._22b_c00003{margin-left:-9.037832px;}
._36_c00003{margin-left:-7.657739px;}
._200_c00003{margin-left:-5.481592px;}
._35_c00003{margin-left:-3.395037px;}
._31_c00003{margin-left:-1.591698px;}
._33_c00003{width:1.341932px;}
._34_c00003{width:2.349860px;}
._1f0_c00003{width:3.646344px;}
._44_c00003{width:4.794731px;}
._1ff_c00003{width:6.357327px;}
._229_c00003{width:7.482296px;}
._203_c00003{width:8.690703px;}
._226_c00003{width:10.223096px;}
._1eb_c00003{width:11.524610px;}
._1fe_c00003{width:13.441121px;}
._29_c00003{width:15.475212px;}
._22a_c00003{width:16.698049px;}
._202_c00003{width:18.497586px;}
._225_c00003{width:19.638345px;}
._207_c00003{width:21.640397px;}
._22f_c00003{width:23.320120px;}
._22c_c00003{width:27.197427px;}
._22d_c00003{width:29.190110px;}
._22e_c00003{width:31.151226px;}
._230_c00003{width:32.381337px;}
._1dd_c00003{width:34.850198px;}
._223_c00003{width:35.933584px;}
._1d1_c00003{width:37.206777px;}
._1f7_c00003{width:38.766500px;}
._224_c00003{width:40.110281px;}
._24f_c00003{width:41.809938px;}
._204_c00003{width:43.048556px;}
._1d0_c00003{width:44.101264px;}
._1e6_c00003{width:46.185341px;}
._1e7_c00003{width:47.425935px;}
._1ea_c00003{width:49.042724px;}
._24e_c00003{width:50.825728px;}
._24c_c00003{width:51.901594px;}
._e3_c00003{width:52.990146px;}
._12a_c00003{width:54.013215px;}
._227_c00003{width:57.407521px;}
._238_c00003{width:58.787580px;}
._201_c00003{width:61.282153px;}
._23e_c00003{width:62.681322px;}
._15a_c00003{width:63.784025px;}
._5b_c00003{width:65.440435px;}
._1f_c00003{width:67.500648px;}
._112_c00003{width:68.782980px;}
._235_c00003{width:69.825888px;}
._101_c00003{width:71.164585px;}
._237_c00003{width:72.676409px;}
._239_c00003{width:74.194526px;}
._11f_c00003{width:75.625231px;}
._1ba_c00003{width:76.744907px;}
._252_c00003{width:77.807274px;}
._234_c00003{width:79.226827px;}
._23a_c00003{width:81.001524px;}
._86_c00003{width:82.687440px;}
._134_c00003{width:84.646765px;}
._d0_c00003{width:85.929820px;}
._16f_c00003{width:87.620933px;}
._9a_c00003{width:89.092511px;}
._243_c00003{width:90.431539px;}
._147_c00003{width:92.514611px;}
._148_c00003{width:93.705089px;}
._1c7_c00003{width:94.836665px;}
._221_c00003{width:96.155788px;}
._f5_c00003{width:97.581928px;}
._233_c00003{width:98.938338px;}
._236_c00003{width:100.088517px;}
._246_c00003{width:101.617734px;}
._15_c00003{width:103.305110px;}
._141_c00003{width:104.647395px;}
._11e_c00003{width:105.823117px;}
._251_c00003{width:107.527316px;}
._23_c00003{width:109.149984px;}
._228_c00003{width:110.734098px;}
._e0_c00003{width:111.958856px;}
._da_c00003{width:113.174291px;}
._f_c00003{width:114.669850px;}
._1d9_c00003{width:115.819885px;}
._1c_c00003{width:116.998927px;}
._cf_c00003{width:118.560258px;}
._16e_c00003{width:119.935494px;}
._1e_c00003{width:121.140583px;}
._ea_c00003{width:122.708650px;}
._1a9_c00003{width:124.556467px;}
._138_c00003{width:125.558590px;}
._1d5_c00003{width:127.094092px;}
._c8_c00003{width:128.145492px;}
._83_c00003{width:129.961729px;}
._f4_c00003{width:131.413830px;}
._250_c00003{width:132.496409px;}
._111_c00003{width:133.506728px;}
._f1_c00003{width:135.276922px;}
._df_c00003{width:136.809154px;}
._119_c00003{width:138.154875px;}
._1bf_c00003{width:139.256650px;}
._dc_c00003{width:140.660015px;}
._106_c00003{width:141.683319px;}
._c6_c00003{width:142.842245px;}
._d2_c00003{width:144.293717px;}
._7b_c00003{width:145.794249px;}
._c7_c00003{width:147.559294px;}
._17e_c00003{width:148.741304px;}
._7e_c00003{width:150.110944px;}
._1b_c00003{width:151.557818px;}
._87_c00003{width:152.943240px;}
._12d_c00003{width:154.519513px;}
._8_c00003{width:155.822279px;}
._1d4_c00003{width:157.017560px;}
._19_c00003{width:158.198083px;}
._25_c00003{width:159.533690px;}
._1af_c00003{width:160.931314px;}
._108_c00003{width:162.070348px;}
._7a_c00003{width:163.321973px;}
._d5_c00003{width:164.635082px;}
._17_c00003{width:166.085676px;}
._a8_c00003{width:168.101065px;}
._136_c00003{width:169.172967px;}
._d_c00003{width:170.265103px;}
._123_c00003{width:171.298939px;}
._b_c00003{width:172.423657px;}
._113_c00003{width:175.169156px;}
._2a_c00003{width:176.896145px;}
._a5_c00003{width:178.847275px;}
._11b_c00003{width:180.048384px;}
._13_c00003{width:181.100167px;}
._110_c00003{width:182.233992px;}
._a4_c00003{width:183.234744px;}
._1d_c00003{width:184.571604px;}
._1b8_c00003{width:185.593590px;}
._21_c00003{width:186.622867px;}
._11_c00003{width:188.346089px;}
._1a_c00003{width:190.145491px;}
._5c_c00003{width:191.761690px;}
._24_c00003{width:193.158403px;}
._1aa_c00003{width:194.326398px;}
._a9_c00003{width:195.443944px;}
._d9_c00003{width:197.054111px;}
._10a_c00003{width:198.089361px;}
._3_c00003{width:199.155581px;}
._26_c00003{width:200.612066px;}
._41_c00003{width:201.799731px;}
._1_c00003{width:203.312499px;}
._18_c00003{width:205.004066px;}
._20_c00003{width:206.423236px;}
._2e_c00003{width:207.819338px;}
._24d_c00003{width:209.120832px;}
._2d_c00003{width:210.608698px;}
._b9_c00003{width:212.123306px;}
._55_c00003{width:213.780937px;}
._2_c00003{width:215.724688px;}
._bb_c00003{width:217.022033px;}
._ca_c00003{width:218.665689px;}
._e7_c00003{width:219.732247px;}
._117_c00003{width:220.835980px;}
._12_c00003{width:222.054250px;}
._8f_c00003{width:223.752548px;}
._48_c00003{width:224.806690px;}
._170_c00003{width:226.695770px;}
._bd_c00003{width:227.806641px;}
._27_c00003{width:229.521089px;}
._3a_c00003{width:231.259868px;}
._6_c00003{width:232.272282px;}
._79_c00003{width:233.420265px;}
._c5_c00003{width:234.844193px;}
._5a_c00003{width:236.846549px;}
._51_c00003{width:238.205672px;}
._22_c00003{width:239.539404px;}
._5_c00003{width:241.158023px;}
._2f_c00003{width:242.972467px;}
._e_c00003{width:244.064318px;}
._9e_c00003{width:245.771449px;}
._84_c00003{width:246.984248px;}
._85_c00003{width:248.197630px;}
._28_c00003{width:249.701890px;}
._50_c00003{width:251.068964px;}
._ee_c00003{width:252.131850px;}
._7f_c00003{width:253.447985px;}
._126_c00003{width:254.541542px;}
._115_c00003{width:255.578419px;}
._dd_c00003{width:256.649468px;}
._4_c00003{width:257.820954px;}
._191_c00003{width:258.844416px;}
._96_c00003{width:259.888841px;}
._99_c00003{width:260.897259px;}
._8e_c00003{width:262.176048px;}
._a0_c00003{width:263.740233px;}
._54_c00003{width:265.754552px;}
._82_c00003{width:267.061461px;}
._80_c00003{width:268.561138px;}
._30_c00003{width:269.639813px;}
._7d_c00003{width:271.202255px;}
._95_c00003{width:272.218356px;}
._14_c00003{width:273.389263px;}
._8d_c00003{width:274.550898px;}
._e6_c00003{width:275.836348px;}
._81_c00003{width:277.838878px;}
._94_c00003{width:278.868090px;}
._66_c00003{width:280.600729px;}
._97_c00003{width:282.165295px;}
._10_c00003{width:284.118919px;}
._88_c00003{width:285.433737px;}
._9c_c00003{width:286.515018px;}
._4f_c00003{width:287.710718px;}
._b7_c00003{width:288.822371px;}
._c9_c00003{width:290.095930px;}
._b8_c00003{width:291.132805px;}
._18a_c00003{width:292.232715px;}
._4e_c00003{width:293.456678px;}
._7_c00003{width:295.302539px;}
._2b_c00003{width:296.344930px;}
._7c_c00003{width:297.987199px;}
._4d_c00003{width:299.015744px;}
._1ac_c00003{width:300.264452px;}
._171_c00003{width:301.381957px;}
._5f_c00003{width:302.579906px;}
._92_c00003{width:304.053863px;}
._98_c00003{width:305.294050px;}
._2c_c00003{width:306.547546px;}
._b6_c00003{width:307.783993px;}
._a6_c00003{width:308.843454px;}
._fe_c00003{width:310.392041px;}
._9d_c00003{width:311.956168px;}
._47_c00003{width:314.606470px;}
._a2_c00003{width:316.185018px;}
._b1_c00003{width:317.611195px;}
._4c_c00003{width:319.474575px;}
._46_c00003{width:321.072633px;}
._c1_c00003{width:322.550345px;}
._a7_c00003{width:323.870452px;}
._53_c00003{width:325.304257px;}
._45_c00003{width:326.818593px;}
._6e_c00003{width:328.010897px;}
._52_c00003{width:330.215139px;}
._5d_c00003{width:331.324393px;}
._65_c00003{width:332.767935px;}
._90_c00003{width:333.791700px;}
._56_c00003{width:334.961151px;}
._76_c00003{width:336.245864px;}
._aa_c00003{width:337.733976px;}
._6d_c00003{width:338.786405px;}
._5e_c00003{width:340.743341px;}
._75_c00003{width:342.108546px;}
._af_c00003{width:343.932641px;}
._6c_c00003{width:345.419032px;}
._70_c00003{width:347.129209px;}
._1d7_c00003{width:348.397978px;}
._61_c00003{width:350.110881px;}
._74_c00003{width:352.265126px;}
._6f_c00003{width:353.595372px;}
._60_c00003{width:355.914613px;}
._ac_c00003{width:358.212402px;}
._ba_c00003{width:359.337548px;}
._bf_c00003{width:361.067932px;}
._1cf_c00003{width:363.468960px;}
._ad_c00003{width:364.560959px;}
._173_c00003{width:366.269117px;}
._59_c00003{width:367.769817px;}
._fa_c00003{width:369.709926px;}
._b2_c00003{width:371.917286px;}
._b3_c00003{width:373.033345px;}
._58_c00003{width:374.236469px;}
._186_c00003{width:375.829006px;}
._194_c00003{width:377.229647px;}
._176_c00003{width:378.302511px;}
._57_c00003{width:379.670652px;}
._1d6_c00003{width:380.932787px;}
._18d_c00003{width:382.058391px;}
._b4_c00003{width:383.259341px;}
._c2_c00003{width:384.711703px;}
._b0_c00003{width:385.809415px;}
._78_c00003{width:387.884592px;}
._43_c00003{width:389.748206px;}
._6b_c00003{width:392.520136px;}
._77_c00003{width:394.187908px;}
._73_c00003{width:395.312758px;}
._1a5_c00003{width:397.400465px;}
._6a_c00003{width:398.502084px;}
._69_c00003{width:399.787876px;}
._1a4_c00003{width:401.380215px;}
._177_c00003{width:402.504348px;}
._1a3_c00003{width:403.581862px;}
._c4_c00003{width:405.212414px;}
._205_c00003{width:406.676768px;}
._4b_c00003{width:407.840248px;}
._db_c00003{width:409.271662px;}
._146_c00003{width:410.541653px;}
._18c_c00003{width:412.923605px;}
._4a_c00003{width:414.306411px;}
._16d_c00003{width:416.095354px;}
._1a0_c00003{width:417.923067px;}
._190_c00003{width:418.989008px;}
._49_c00003{width:420.054818px;}
._1ef_c00003{width:422.283010px;}
._124_c00003{width:424.879533px;}
._153_c00003{width:426.044159px;}
._135_c00003{width:427.822105px;}
._242_c00003{width:430.780032px;}
._f9_c00003{width:432.391261px;}
._0_c00003{width:434.227030px;}
._15f_c00003{width:435.402488px;}
._1a7_c00003{width:436.549184px;}
._125_c00003{width:437.905648px;}
._12c_c00003{width:440.708684px;}
._14b_c00003{width:441.951310px;}
._121_c00003{width:443.876977px;}
._1e3_c00003{width:445.378098px;}
._156_c00003{width:447.601751px;}
._1ed_c00003{width:449.158646px;}
._188_c00003{width:451.589161px;}
._d7_c00003{width:452.612803px;}
._f0_c00003{width:455.873742px;}
._1e4_c00003{width:456.892098px;}
._187_c00003{width:458.083736px;}
._102_c00003{width:460.337178px;}
._151_c00003{width:461.372321px;}
._197_c00003{width:463.183026px;}
._168_c00003{width:464.478405px;}
._d8_c00003{width:467.014187px;}
._247_c00003{width:468.270720px;}
._e5_c00003{width:470.112284px;}
._127_c00003{width:471.607745px;}
._d4_c00003{width:473.614085px;}
._152_c00003{width:475.088340px;}
._1d8_c00003{width:476.338098px;}
._15d_c00003{width:478.043224px;}
._1ec_c00003{width:480.258201px;}
._14e_c00003{width:481.373949px;}
._122_c00003{width:486.135927px;}
._c_c00003{width:487.540281px;}
._18e_c00003{width:493.164297px;}
._1ee_c00003{width:494.165437px;}
._196_c00003{width:496.266929px;}
._fb_c00003{width:498.235558px;}
._16a_c00003{width:499.256609px;}
._10d_c00003{width:501.496951px;}
._1db_c00003{width:502.684176px;}
._de_c00003{width:504.263918px;}
._23f_c00003{width:505.481472px;}
._1ce_c00003{width:507.780605px;}
._154_c00003{width:510.564229px;}
._fc_c00003{width:512.632860px;}
._240_c00003{width:514.071360px;}
._104_c00003{width:515.735492px;}
._f8_c00003{width:519.232758px;}
._d6_c00003{width:520.325937px;}
._248_c00003{width:522.681984px;}
._1ab_c00003{width:525.494170px;}
._38_c00003{width:526.525731px;}
._249_c00003{width:528.954624px;}
._18f_c00003{width:530.418563px;}
._245_c00003{width:532.738944px;}
._39_c00003{width:537.304053px;}
._40_c00003{width:541.467919px;}
._20c_c00003{width:544.395252px;}
._18b_c00003{width:546.480582px;}
._241_c00003{width:547.523712px;}
._fd_c00003{width:549.891663px;}
._14d_c00003{width:553.223009px;}
._244_c00003{width:554.472864px;}
._a_c00003{width:557.802118px;}
._d1_c00003{width:559.725737px;}
._24a_c00003{width:562.311072px;}
._1d2_c00003{width:565.021941px;}
._3f_c00003{width:566.630834px;}
._149_c00003{width:568.145589px;}
._23c_c00003{width:569.755296px;}
._14a_c00003{width:570.841273px;}
._20e_c00003{width:574.993833px;}
._1e9_c00003{width:576.233538px;}
._24b_c00003{width:577.671264px;}
._37_c00003{width:581.268133px;}
._189_c00003{width:583.920825px;}
._210_c00003{width:585.929520px;}
._9_c00003{width:587.339782px;}
._150_c00003{width:589.276883px;}
._23d_c00003{width:591.546240px;}
._23b_c00003{width:595.086912px;}
._155_c00003{width:596.735169px;}
._20a_c00003{width:601.179840px;}
._14f_c00003{width:602.689119px;}
._15b_c00003{width:605.464025px;}
._f6_c00003{width:614.203241px;}
._158_c00003{width:616.382776px;}
._15e_c00003{width:619.747841px;}
._163_c00003{width:625.186137px;}
._21b_c00003{width:627.788400px;}
._1de_c00003{width:639.950898px;}
._145_c00003{width:641.671363px;}
._1e8_c00003{width:654.860658px;}
._160_c00003{width:659.432585px;}
._20b_c00003{width:663.230928px;}
._20d_c00003{width:664.345376px;}
._217_c00003{width:670.092720px;}
._209_c00003{width:690.507840px;}
._128_c00003{width:696.174850px;}
._1cc_c00003{width:701.467810px;}
._1f6_c00003{width:702.752178px;}
._212_c00003{width:705.584400px;}
._1fd_c00003{width:710.490240px;}
._3e_c00003{width:714.893210px;}
._231_c00003{width:717.759696px;}
._e1_c00003{width:719.429647px;}
._42_c00003{width:733.498091px;}
._3d_c00003{width:741.669981px;}
._1ad_c00003{width:752.009364px;}
._1c2_c00003{width:753.642327px;}
._3c_c00003{width:761.530824px;}
._17f_c00003{width:786.213352px;}
._172_c00003{width:807.711522px;}
._13c_c00003{width:813.837665px;}
._ff_c00003{width:835.469906px;}
._21c_c00003{width:837.204720px;}
._32_c00003{width:845.705952px;}
._192_c00003{width:848.447437px;}
._1f2_c00003{width:855.330978px;}
._1cb_c00003{width:872.012097px;}
._a3_c00003{width:876.542187px;}
._214_c00003{width:883.332720px;}
._9f_c00003{width:899.432665px;}
._157_c00003{width:912.432787px;}
._1e2_c00003{width:915.767154px;}
._3b_c00003{width:920.067104px;}
._215_c00003{width:925.824720px;}
._1cd_c00003{width:935.918368px;}
._20f_c00003{width:941.529138px;}
._1f1_c00003{width:943.695138px;}
._132_c00003{width:945.782938px;}
._1da_c00003{width:953.928864px;}
._1f3_c00003{width:956.808720px;}
._133_c00003{width:965.864353px;}
._139_c00003{width:966.941130px;}
._211_c00003{width:972.774978px;}
._220_c00003{width:987.731136px;}
._131_c00003{width:993.427960px;}
._12f_c00003{width:995.863785px;}
._21d_c00003{width:997.152720px;}
._1f4_c00003{width:999.306720px;}
._12e_c00003{width:1001.046934px;}
._12b_c00003{width:1006.061334px;}
._130_c00003{width:1011.654444px;}
._ed_c00003{width:1012.994956px;}
._137_c00003{width:1015.259701px;}
._216_c00003{width:1017.159138px;}
._1f5_c00003{width:1019.313138px;}
._1bc_c00003{width:1024.514370px;}
._1c6_c00003{width:1026.208755px;}
._219_c00003{width:1029.090240px;}
._ef_c00003{width:1034.584312px;}
._1bd_c00003{width:1042.748401px;}
._1c0_c00003{width:1047.376815px;}
._1c8_c00003{width:1048.508217px;}
._19c_c00003{width:1060.008003px;}
._232_c00003{width:1061.541487px;}
._ec_c00003{width:1065.197917px;}
._11d_c00003{width:1067.051539px;}
._e9_c00003{width:1068.217543px;}
._118_c00003{width:1071.744153px;}
._eb_c00003{width:1073.956257px;}
._1b4_c00003{width:1075.857552px;}
._114_c00003{width:1077.476984px;}
._19d_c00003{width:1080.746637px;}
._11c_c00003{width:1082.928206px;}
._f2_c00003{width:1086.743974px;}
._116_c00003{width:1088.305331px;}
._17a_c00003{width:1091.328826px;}
._1b5_c00003{width:1092.663178px;}
._1c5_c00003{width:1095.958612px;}
._1be_c00003{width:1097.311584px;}
._1b6_c00003{width:1098.981222px;}
._e4_c00003{width:1100.506776px;}
._e8_c00003{width:1103.220177px;}
._13b_c00003{width:1107.465576px;}
._1bb_c00003{width:1108.939311px;}
._1c4_c00003{width:1109.954125px;}
._19b_c00003{width:1112.143424px;}
._17c_c00003{width:1113.235804px;}
._19a_c00003{width:1114.712631px;}
._1a1_c00003{width:1115.778572px;}
._183_c00003{width:1118.797646px;}
._10b_c00003{width:1122.231867px;}
._182_c00003{width:1125.553488px;}
._143_c00003{width:1126.763593px;}
._1b2_c00003{width:1127.851145px;}
._199_c00003{width:1132.788684px;}
._1b3_c00003{width:1134.181324px;}
._213_c00003{width:1135.911120px;}
._181_c00003{width:1139.242148px;}
._178_c00003{width:1141.928786px;}
._10c_c00003{width:1144.211230px;}
._195_c00003{width:1146.513321px;}
._198_c00003{width:1147.787940px;}
._179_c00003{width:1149.101653px;}
._184_c00003{width:1151.136412px;}
._175_c00003{width:1152.388723px;}
._1b1_c00003{width:1160.520096px;}
._13f_c00003{width:1162.488704px;}
._17b_c00003{width:1163.519436px;}
._13e_c00003{width:1168.440060px;}
._1f8_c00003{width:1170.366480px;}
._1b0_c00003{width:1172.290673px;}
._140_c00003{width:1174.907585px;}
._109_c00003{width:1176.897875px;}
._21f_c00003{width:1179.855120px;}
._107_c00003{width:1184.586508px;}
._142_c00003{width:1189.027102px;}
._10e_c00003{width:1194.329757px;}
._105_c00003{width:1197.439486px;}
._cc_c00003{width:1208.179333px;}
._103_c00003{width:1211.257386px;}
._129_c00003{width:1212.959493px;}
._218_c00003{width:1214.238240px;}
._166_c00003{width:1223.464233px;}
._167_c00003{width:1240.916586px;}
._16b_c00003{width:1246.135971px;}
._21e_c00003{width:1251.183120px;}
._1fb_c00003{width:1253.337120px;}
._1e5_c00003{width:1258.202304px;}
._165_c00003{width:1273.175445px;}
._164_c00003{width:1274.488170px;}
._162_c00003{width:1280.067432px;}
._21a_c00003{width:1287.810480px;}
._161_c00003{width:1293.054700px;}
._169_c00003{width:1295.720292px;}
._e2_c00003{width:1301.884112px;}
._15c_c00003{width:1306.762935px;}
._1b9_c00003{width:1312.590623px;}
._1c3_c00003{width:1321.003905px;}
._1fc_c00003{width:1337.783040px;}
._222_c00003{width:1342.539072px;}
._19f_c00003{width:1352.493635px;}
._180_c00003{width:1354.261747px;}
._1ae_c00003{width:1362.895251px;}
._193_c00003{width:1369.287227px;}
._1fa_c00003{width:1371.111840px;}
._1a6_c00003{width:1390.921770px;}
._174_c00003{width:1400.273246px;}
._13d_c00003{width:1412.528221px;}
._1ca_c00003{width:1423.941408px;}
._100_c00003{width:1431.415699px;}
._ae_c00003{width:1458.686866px;}
._1dc_c00003{width:1479.238560px;}
._b5_c00003{width:1496.858866px;}
._159_c00003{width:1510.801138px;}
._be_c00003{width:1530.074003px;}
._93_c00003{width:1609.088866px;}
._72_c00003{width:1906.308137px;}
._16_c00003{width:2912.581152px;}
._64_c00003{width:3171.577821px;}
._71_c00003{width:3422.244137px;}
._1a2_c00003{width:3621.525336px;}
._19e_c00003{width:3636.665424px;}
._185_c00003{width:3650.572800px;}
._17d_c00003{width:3665.450880px;}
._bc_c00003{width:3669.667233px;}
._1a8_c00003{width:3690.955512px;}
._1c9_c00003{width:3692.678976px;}
._ab_c00003{width:3694.597272px;}
._10f_c00003{width:3707.041464px;}
._1b7_c00003{width:3710.144816px;}
._1c1_c00003{width:3713.212473px;}
._cd_c00003{width:3714.577123px;}
._f3_c00003{width:3718.522080px;}
._144_c00003{width:3725.514000px;}
._cb_c00003{width:3735.564993px;}
._11a_c00003{width:3738.051072px;}
._ce_c00003{width:3744.171606px;}
._c0_c00003{width:3761.395866px;}
._16c_c00003{width:3780.129392px;}
._13a_c00003{width:3792.562143px;}
._8c_c00003{width:3798.348984px;}
._1e0_c00003{width:3936.777428px;}
._9b_c00003{width:4106.949388px;}
.fce_c00003{color:rgb(156,87,0);}
.fcd_c00003{color:rgb(0,97,0);}
.fc0_c00003{color:rgb(0,0,0);}
.fc2_c00003{color:rgb(64,64,64);}
.fc4_c00003{color:rgb(89,89,89);}
.fc1_c00003{color:transparent;}
.fc8_c00003{color:rgb(59,124,35);}
.fc3_c00003{color:rgb(255,0,0);}
.fc5_c00003{color:rgb(255,255,255);}
.fc6_c00003{color:rgb(11,118,160);}
.fca_c00003{color:rgb(5,99,193);}
.fc7_c00003{color:rgb(192,79,21);}
.fc9_c00003{color:rgb(0,0,238);}
.fcb_c00003{color:rgb(85,26,139);}
.fcc_c00003{color:rgb(58,72,91);}
.fs41_c00003{font-size:25.920000px;}
.fs42_c00003{font-size:27.360000px;}
.fs2e_c00003{font-size:28.080000px;}
.fs43_c00003{font-size:28.800000px;}
.fs7_c00003{font-size:29.520000px;}
.fs18_c00003{font-size:30.240000px;}
.fs21_c00003{font-size:30.960000px;}
.fsb_c00003{font-size:32.346000px;}
.fs14_c00003{font-size:32.400000px;}
.fs19_c00003{font-size:33.120000px;}
.fs1c_c00003{font-size:33.840000px;}
.fs2a_c00003{font-size:34.560000px;}
.fs2d_c00003{font-size:36.720000px;}
.fs44_c00003{font-size:37.440000px;}
.fs3f_c00003{font-size:38.160000px;}
.fs39_c00003{font-size:38.880000px;}
.fs26_c00003{font-size:38.880060px;}
.fs24_c00003{font-size:39.600000px;}
.fs1a_c00003{font-size:40.320060px;}
.fs1d_c00003{font-size:41.040000px;}
.fs27_c00003{font-size:41.040060px;}
.fs22_c00003{font-size:41.760000px;}
.fs30_c00003{font-size:43.200060px;}
.fs5_c00003{font-size:43.920000px;}
.fs15_c00003{font-size:44.640000px;}
.fs17_c00003{font-size:45.360120px;}
.fs20_c00003{font-size:46.080060px;}
.fs3b_c00003{font-size:47.520120px;}
.fs2c_c00003{font-size:47.520300px;}
.fse_c00003{font-size:48.159660px;}
.fs23_c00003{font-size:48.240240px;}
.fs13_c00003{font-size:48.960120px;}
.fs16_c00003{font-size:49.680000px;}
.fs1e_c00003{font-size:49.680180px;}
.fs1b_c00003{font-size:50.400180px;}
.fs1f_c00003{font-size:51.120180px;}
.fs29_c00003{font-size:51.840480px;}
.fs10_c00003{font-size:53.191260px;}
.fs3e_c00003{font-size:53.280120px;}
.fsa_c00003{font-size:53.910060px;}
.fs35_c00003{font-size:54.000060px;}
.fs33_c00003{font-size:54.000180px;}
.fs34_c00003{font-size:54.000360px;}
.fs32_c00003{font-size:54.000420px;}
.fs36_c00003{font-size:54.144060px;}
.fs2b_c00003{font-size:56.160480px;}
.fs12_c00003{font-size:57.504060px;}
.fs2f_c00003{font-size:58.320480px;}
.fs9_c00003{font-size:59.760060px;}
.fs1_c00003{font-size:59.760180px;}
.fs31_c00003{font-size:59.760420px;}
.fs25_c00003{font-size:60.480000px;}
.fs28_c00003{font-size:62.640000px;}
.fs3d_c00003{font-size:64.800000px;}
.fs2_c00003{font-size:66.240000px;}
.fs37_c00003{font-size:66.384000px;}
.fsc_c00003{font-size:69.004800px;}
.fs3_c00003{font-size:72.000000px;}
.fs6_c00003{font-size:72.720000px;}
.fs40_c00003{font-size:76.320000px;}
.fs38_c00003{font-size:79.200000px;}
.fs3c_c00003{font-size:82.800000px;}
.fs3a_c00003{font-size:83.520000px;}
.fsf_c00003{font-size:84.099600px;}
.fs4_c00003{font-size:84.240000px;}
.fs8_c00003{font-size:95.760000px;}
.fsd_c00003{font-size:107.820000px;}
.fs0_c00003{font-size:108.000000px;}
.fs11_c00003{font-size:120.039600px;}
.y371_c00003{bottom:-1.797000px;}
.y380_c00003{bottom:-1.617000px;}
.y366_c00003{bottom:-1.615500px;}
.y3ab_c00003{bottom:-0.541500px;}
.y8d2_c00003{bottom:-0.001500px;}
.y0_c00003{bottom:0.000000px;}
.y9c3_c00003{bottom:0.537000px;}
.y386_c00003{bottom:0.538500px;}
.y543_c00003{bottom:0.898500px;}
.y8f3_c00003{bottom:1.077000px;}
.y6ba_c00003{bottom:1.078500px;}
.y36f_c00003{bottom:1.617000px;}
.y382_c00003{bottom:1.618500px;}
.y3e9_c00003{bottom:1.620000px;}
.y36a_c00003{bottom:1.621500px;}
.y373_c00003{bottom:1.797000px;}
.y375_c00003{bottom:1.798500px;}
.y3f1_c00003{bottom:1.800000px;}
.y131c_c00003{bottom:1.801500px;}
.y1377_c00003{bottom:1.803000px;}
.y13a0_c00003{bottom:1.981500px;}
.y864_c00003{bottom:2.157000px;}
.y8bb_c00003{bottom:2.157900px;}
.y71e_c00003{bottom:2.158500px;}
.y894_c00003{bottom:2.158650px;}
.y897_c00003{bottom:2.159100px;}
.y776_c00003{bottom:2.159400px;}
.y5fe_c00003{bottom:2.159700px;}
.y43b_c00003{bottom:2.160000px;}
.y57a_c00003{bottom:2.160300px;}
.y578_c00003{bottom:2.160450px;}
.y81f_c00003{bottom:2.337000px;}
.y542_c00003{bottom:2.338500px;}
.y5ae_c00003{bottom:2.340000px;}
.y714_c00003{bottom:2.517000px;}
.y3a9_c00003{bottom:2.518500px;}
.y3ec_c00003{bottom:2.520000px;}
.y7c8_c00003{bottom:2.520150px;}
.y13a4_c00003{bottom:2.521500px;}
.y34e_c00003{bottom:2.694000px;}
.y353_c00003{bottom:2.695500px;}
.y357_c00003{bottom:2.697000px;}
.y8ce_c00003{bottom:2.698500px;}
.y9e3_c00003{bottom:2.700000px;}
.y36c_c00003{bottom:2.874000px;}
.y38d_c00003{bottom:2.875500px;}
.y367_c00003{bottom:2.877000px;}
.y37d_c00003{bottom:2.878500px;}
.y128_c00003{bottom:2.880000px;}
.y17a_c00003{bottom:2.880450px;}
.y16b_c00003{bottom:2.881500px;}
.yf3_c00003{bottom:2.883000px;}
.yfa_c00003{bottom:2.884500px;}
.y122b_c00003{bottom:3.238500px;}
.y1241_c00003{bottom:3.240000px;}
.y1234_c00003{bottom:3.241500px;}
.yb43_c00003{bottom:3.418500px;}
.y50_c00003{bottom:3.420000px;}
.yb5b_c00003{bottom:3.420150px;}
.yd32_c00003{bottom:3.421500px;}
.y2f_c00003{bottom:3.423000px;}
.yd42_c00003{bottom:3.424500px;}
.yb3d_c00003{bottom:3.598500px;}
.yb4e_c00003{bottom:3.600000px;}
.yd35_c00003{bottom:3.601500px;}
.yd2a_c00003{bottom:3.603000px;}
.yb_c00003{bottom:4.500000px;}
.y5_c00003{bottom:4.501500px;}
.y8_c00003{bottom:4.503000px;}
.yef_c00003{bottom:4.504500px;}
.y123f_c00003{bottom:4.680000px;}
.ycae_c00003{bottom:5.038500px;}
.ycb2_c00003{bottom:5.040000px;}
.yd1c_c00003{bottom:5.041500px;}
.ycc4_c00003{bottom:5.043000px;}
.ycb0_c00003{bottom:5.218500px;}
.ycbf_c00003{bottom:5.220000px;}
.ycb8_c00003{bottom:5.221500px;}
.yd1a_c00003{bottom:5.223000px;}
.ycfc_c00003{bottom:5.581050px;}
.yc1_c00003{bottom:5.581500px;}
.ye3_c00003{bottom:5.583000px;}
.yd22_c00003{bottom:5.583300px;}
.yccf_c00003{bottom:5.761950px;}
.y123e_c00003{bottom:6.120000px;}
.ycf2_c00003{bottom:6.660000px;}
.ycc5_c00003{bottom:6.663000px;}
.y2_c00003{bottom:7.203000px;}
.y1229_c00003{bottom:10.980000px;}
.y1290_c00003{bottom:11.520000px;}
.y125a_c00003{bottom:11.878500px;}
.y1292_c00003{bottom:11.880000px;}
.ycdf_c00003{bottom:13.500000px;}
.y99e_c00003{bottom:15.539100px;}
.ycfd_c00003{bottom:15.661500px;}
.ycd0_c00003{bottom:15.663000px;}
.y94f_c00003{bottom:16.079250px;}
.y1281_c00003{bottom:16.378500px;}
.yf9c_c00003{bottom:17.130000px;}
.y11b4_c00003{bottom:17.175000px;}
.yfe6_c00003{bottom:17.205000px;}
.y104b_c00003{bottom:17.280000px;}
.yff6_c00003{bottom:17.310000px;}
.yf3e_c00003{bottom:17.640000px;}
.yf38_c00003{bottom:17.670000px;}
.y33a_c00003{bottom:19.054650px;}
.y1227_c00003{bottom:19.618500px;}
.y12b3_c00003{bottom:20.340000px;}
.y1257_c00003{bottom:20.520000px;}
.y90e_c00003{bottom:20.939100px;}
.ycdc_c00003{bottom:23.400000px;}
.yca7_c00003{bottom:23.578500px;}
.y127d_c00003{bottom:25.020000px;}
.ycfb_c00003{bottom:25.561500px;}
.ycce_c00003{bottom:25.743000px;}
.y1228_c00003{bottom:28.260000px;}
.y12b0_c00003{bottom:28.980000px;}
.y1259_c00003{bottom:29.158500px;}
.y1291_c00003{bottom:29.160000px;}
.y127f_c00003{bottom:29.520000px;}
.yd05_c00003{bottom:33.478500px;}
.ycde_c00003{bottom:33.480000px;}
.y1280_c00003{bottom:33.658500px;}
.ycac_c00003{bottom:33.660000px;}
.y1345_c00003{bottom:35.219550px;}
.y13a2_c00003{bottom:35.399400px;}
.y13cc_c00003{bottom:36.299400px;}
.y1378_c00003{bottom:36.659700px;}
.y131_c00003{bottom:37.019550px;}
.y12b2_c00003{bottom:37.620000px;}
.y1258_c00003{bottom:37.798500px;}
.y128f_c00003{bottom:37.800000px;}
.y9df_c00003{bottom:38.218950px;}
.y84a_c00003{bottom:38.399400px;}
.y3fe_c00003{bottom:38.580450px;}
.y725_c00003{bottom:38.759250px;}
.y781_c00003{bottom:38.760300px;}
.y2c_c00003{bottom:39.720750px;}
.y12d5_c00003{bottom:40.018950px;}
.ycdb_c00003{bottom:43.558500px;}
.yca6_c00003{bottom:43.560000px;}
.y12b4_c00003{bottom:46.260000px;}
.y127e_c00003{bottom:46.798500px;}
.yf3d_c00003{bottom:47.549850px;}
.yf70_c00003{bottom:47.550450px;}
.yf37_c00003{bottom:47.594250px;}
.yf69_c00003{bottom:47.594550px;}
.yf59_c00003{bottom:47.596290px;}
.yf8a_c00003{bottom:49.245000px;}
.y11ab_c00003{bottom:49.290000px;}
.yfd4_c00003{bottom:49.350000px;}
.y102f_c00003{bottom:49.395000px;}
.yff1_c00003{bottom:49.425000px;}
.y6f4_c00003{bottom:52.800600px;}
.ycd7_c00003{bottom:53.458500px;}
.yd04_c00003{bottom:53.638500px;}
.ycab_c00003{bottom:53.640000px;}
.y726_c00003{bottom:54.059250px;}
.y581_c00003{bottom:54.060300px;}
.y12b1_c00003{bottom:54.900000px;}
.yc9f_c00003{bottom:56.556450px;}
.yc0b_c00003{bottom:56.820750px;}
.y4e_c00003{bottom:59.160900px;}
.y35c_c00003{bottom:59.666055px;}
.ycda_c00003{bottom:63.538500px;}
.yca3_c00003{bottom:63.718500px;}
.yd02_c00003{bottom:63.720000px;}
.y12fe_c00003{bottom:64.020750px;}
.yf3a_c00003{bottom:65.085000px;}
.yf2c_c00003{bottom:65.160000px;}
.yb71_c00003{bottom:65.760300px;}
.yb37_c00003{bottom:66.480450px;}
.y385_c00003{bottom:67.034700px;}
.y35b_c00003{bottom:70.807650px;}
.ycaa_c00003{bottom:73.618500px;}
.yd03_c00003{bottom:73.620000px;}
.yf3f_c00003{bottom:75.674655px;}
.y1223_c00003{bottom:78.696750px;}
.y384_c00003{bottom:78.894750px;}
.ya8b_c00003{bottom:80.879250px;}
.y1003_c00003{bottom:81.285000px;}
.y102a_c00003{bottom:81.290100px;}
.y1030_c00003{bottom:82.049850px;}
.y10b5_c00003{bottom:82.152000px;}
.y109b_c00003{bottom:82.152450px;}
.y1081_c00003{bottom:82.153500px;}
.y106a_c00003{bottom:82.154550px;}
.y1050_c00003{bottom:82.155000px;}
.ya8a_c00003{bottom:82.498530px;}
.y10c5_c00003{bottom:82.905300px;}
.yca5_c00003{bottom:83.698500px;}
.ycd9_c00003{bottom:83.700000px;}
.y10fa_c00003{bottom:83.805900px;}
.y1156_c00003{bottom:84.570000px;}
.y1183_c00003{bottom:85.246200px;}
.yf40_c00003{bottom:86.220360px;}
.y94e_c00003{bottom:86.818950px;}
.yf5d_c00003{bottom:87.990450px;}
.y94d_c00003{bottom:88.438530px;}
.y12bc_c00003{bottom:88.776600px;}
.y35d_c00003{bottom:88.777755px;}
.y11a4_c00003{bottom:91.723200px;}
.y119f_c00003{bottom:91.723500px;}
.y1199_c00003{bottom:91.723800px;}
.y1193_c00003{bottom:91.724100px;}
.y118d_c00003{bottom:91.725000px;}
.y11ac_c00003{bottom:92.490000px;}
.y10e4_c00003{bottom:92.520000px;}
.yf2d_c00003{bottom:92.520300px;}
.y11bb_c00003{bottom:92.522250px;}
.yeea_c00003{bottom:92.820750px;}
.y1116_c00003{bottom:93.270000px;}
.y11cd_c00003{bottom:93.270150px;}
.y1122_c00003{bottom:93.271350px;}
.y112e_c00003{bottom:93.271650px;}
.y11d5_c00003{bottom:93.271950px;}
.y113a_c00003{bottom:93.272550px;}
.y11e1_c00003{bottom:93.273150px;}
.y1146_c00003{bottom:93.273450px;}
.ycdd_c00003{bottom:93.600000px;}
.yca9_c00003{bottom:93.778500px;}
.yb36_c00003{bottom:93.839100px;}
.y1179_c00003{bottom:93.959700px;}
.y1173_c00003{bottom:93.960000px;}
.y117c_c00003{bottom:93.960150px;}
.yb35_c00003{bottom:94.917810px;}
.yf41_c00003{bottom:96.765480px;}
.yf76_c00003{bottom:97.200000px;}
.yf80_c00003{bottom:97.200750px;}
.yf8b_c00003{bottom:97.948650px;}
.ya1e_c00003{bottom:98.159250px;}
.yfa5_c00003{bottom:98.969250px;}
.yfae_c00003{bottom:98.970300px;}
.yfb6_c00003{bottom:98.971350px;}
.yfc0_c00003{bottom:98.972400px;}
.yfca_c00003{bottom:98.973450px;}
.ya1d_c00003{bottom:99.238410px;}
.yfd5_c00003{bottom:99.720150px;}
.y10f9_c00003{bottom:102.780300px;}
.y1155_c00003{bottom:103.528650px;}
.ya50_c00003{bottom:103.559250px;}
.y898_c00003{bottom:103.560300px;}
.ycd8_c00003{bottom:103.680000px;}
.yca4_c00003{bottom:103.860000px;}
.y1182_c00003{bottom:104.220600px;}
.yc38_c00003{bottom:104.340750px;}
.ya4f_c00003{bottom:104.638755px;}
.ya89_c00003{bottom:105.718080px;}
.y95e_c00003{bottom:106.799400px;}
.y1004_c00003{bottom:107.279550px;}
.yf42_c00003{bottom:107.280135px;}
.y101d_c00003{bottom:107.282850px;}
.y95d_c00003{bottom:107.878740px;}
.y1031_c00003{bottom:108.028050px;}
.y10b6_c00003{bottom:110.187300px;}
.y109c_c00003{bottom:110.187750px;}
.y1082_c00003{bottom:110.188800px;}
.y1051_c00003{bottom:110.189700px;}
.y106b_c00003{bottom:110.189850px;}
.ye67_c00003{bottom:110.460900px;}
.y12ec_c00003{bottom:110.641500px;}
.yf6a_c00003{bottom:110.728950px;}
.y12bb_c00003{bottom:110.737050px;}
.yf5e_c00003{bottom:110.805750px;}
.y1252_c00003{bottom:110.917350px;}
.y10c6_c00003{bottom:110.954100px;}
.y11ee_c00003{bottom:111.240000px;}
.y11f5_c00003{bottom:111.240450px;}
.y1209_c00003{bottom:111.241500px;}
.y1210_c00003{bottom:111.243600px;}
.y1217_c00003{bottom:111.244650px;}
.y121e_c00003{bottom:111.245100px;}
.yc76_c00003{bottom:111.540750px;}
.y94c_c00003{bottom:111.658680px;}
.y11fc_c00003{bottom:111.988950px;}
.yfef_c00003{bottom:112.500000px;}
.y506_c00003{bottom:112.557300px;}
.y90d_c00003{bottom:112.739100px;}
.yff2_c00003{bottom:113.248800px;}
.y33c_c00003{bottom:113.755620px;}
.y90c_c00003{bottom:113.818290px;}
.yc0a_c00003{bottom:114.180450px;}
.yea6_c00003{bottom:114.240750px;}
.y496_c00003{bottom:114.357300px;}
.yb34_c00003{bottom:114.898260px;}
.yc89_c00003{bottom:116.940750px;}
.y3fa_c00003{bottom:117.420750px;}
.yf43_c00003{bottom:117.825840px;}
.yad7_c00003{bottom:118.139100px;}
.y896_c00003{bottom:118.140300px;}
.yad6_c00003{bottom:119.218110px;}
.ya1c_c00003{bottom:119.218260px;}
.yf2e_c00003{bottom:119.910000px;}
.y778_c00003{bottom:119.940300px;}
.y7c7_c00003{bottom:120.300600px;}
.yb5c_c00003{bottom:121.740750px;}
.yff8_c00003{bottom:122.730000px;}
.yee9_c00003{bottom:122.881050px;}
.yb05_c00003{bottom:122.999400px;}
.yffa_c00003{bottom:123.479700px;}
.ybb1_c00003{bottom:123.540750px;}
.yca8_c00003{bottom:123.840000px;}
.yb04_c00003{bottom:124.078695px;}
.y33b_c00003{bottom:124.897800px;}
.yc53_c00003{bottom:125.939250px;}
.ya4e_c00003{bottom:127.318605px;}
.ya88_c00003{bottom:127.858320px;}
.y9de_c00003{bottom:127.859250px;}
.yf44_c00003{bottom:128.340495px;}
.y505_c00003{bottom:128.397600px;}
.y671_c00003{bottom:128.580450px;}
.y9dd_c00003{bottom:128.938260px;}
.y11ae_c00003{bottom:130.065000px;}
.y495_c00003{bottom:130.197600px;}
.y579_c00003{bottom:130.380450px;}
.yc75_c00003{bottom:130.440750px;}
.y95c_c00003{bottom:130.558590px;}
.y3f9_c00003{bottom:131.460300px;}
.yc09_c00003{bottom:131.820750px;}
.y10fc_c00003{bottom:132.270600px;}
.y895_c00003{bottom:132.720750px;}
.yb33_c00003{bottom:133.258050px;}
.y90b_c00003{bottom:133.258590px;}
.y1005_c00003{bottom:133.305150px;}
.y101e_c00003{bottom:133.308450px;}
.yf5f_c00003{bottom:133.635000px;}
.y94b_c00003{bottom:133.798920px;}
.y1032_c00003{bottom:134.068800px;}
.y777_c00003{bottom:134.520750px;}
.y1158_c00003{bottom:134.819400px;}
.yc88_c00003{bottom:135.840750px;}
.y5fd_c00003{bottom:136.320750px;}
.y1185_c00003{bottom:136.620600px;}
.y179_c00003{bottom:137.099400px;}
.y1251_c00003{bottom:137.197200px;}
.ya1b_c00003{bottom:137.578650px;}
.yad5_c00003{bottom:138.118110px;}
.y12fd_c00003{bottom:138.181050px;}
.y10b7_c00003{bottom:138.237300px;}
.y109d_c00003{bottom:138.237750px;}
.y1083_c00003{bottom:138.238800px;}
.y106c_c00003{bottom:138.239850px;}
.y1052_c00003{bottom:138.240300px;}
.y11a0_c00003{bottom:138.807750px;}
.y11a5_c00003{bottom:138.807900px;}
.y119a_c00003{bottom:138.808050px;}
.y1194_c00003{bottom:138.808350px;}
.y118e_c00003{bottom:138.809250px;}
.yf45_c00003{bottom:138.886200px;}
.y10c7_c00003{bottom:138.989400px;}
.ye65_c00003{bottom:139.260450px;}
.yb5a_c00003{bottom:139.380450px;}
.y10e5_c00003{bottom:141.014550px;}
.y10f7_c00003{bottom:141.015150px;}
.y11b5_c00003{bottom:141.016050px;}
.yb6f_c00003{bottom:141.720750px;}
.yee8_c00003{bottom:141.781050px;}
.ya87_c00003{bottom:142.438200px;}
.yb03_c00003{bottom:142.978695px;}
.yea4_c00003{bottom:143.040450px;}
.y670_c00003{bottom:143.160300px;}
.y1117_c00003{bottom:143.534700px;}
.y11ce_c00003{bottom:143.534850px;}
.y1123_c00003{bottom:143.536050px;}
.y112f_c00003{bottom:143.536350px;}
.y11d6_c00003{bottom:143.536650px;}
.y113b_c00003{bottom:143.537250px;}
.y11e2_c00003{bottom:143.537850px;}
.y1147_c00003{bottom:143.538150px;}
.y11e3_c00003{bottom:143.538450px;}
.yc37_c00003{bottom:143.760900px;}
.y504_c00003{bottom:144.237900px;}
.y577_c00003{bottom:144.960300px;}
.y1174_c00003{bottom:145.364850px;}
.y117d_c00003{bottom:145.365000px;}
.y3f8_c00003{bottom:145.500600px;}
.y494_c00003{bottom:146.037900px;}
.yf8d_c00003{bottom:146.309550px;}
.y893_c00003{bottom:147.300600px;}
.yf2f_c00003{bottom:147.314850px;}
.y127b_c00003{bottom:147.636900px;}
.y9dc_c00003{bottom:147.838260px;}
.yb32_c00003{bottom:148.378200px;}
.y94a_c00003{bottom:148.378800px;}
.ya4d_c00003{bottom:148.918635px;}
.y11ad_c00003{bottom:149.040000px;}
.y775_c00003{bottom:149.100600px;}
.yf46_c00003{bottom:149.430150px;}
.y5fc_c00003{bottom:150.900000px;}
.y10fb_c00003{bottom:151.230300px;}
.y178_c00003{bottom:151.320000px;}
.y12eb_c00003{bottom:151.321350px;}
.yfd7_c00003{bottom:151.454850px;}
.y99d_c00003{bottom:151.618500px;}
.y90a_c00003{bottom:152.158620px;}
.yc08_c00003{bottom:152.520000px;}
.ya1a_c00003{bottom:152.698800px;}
.y99c_c00003{bottom:152.699085px;}
.y28b_c00003{bottom:152.940000px;}
.ybb0_c00003{bottom:153.240000px;}
.ybaf_c00003{bottom:153.420000px;}
.y1157_c00003{bottom:153.793800px;}
.y842_c00003{bottom:153.960000px;}
.yad4_c00003{bottom:154.858350px;}
.ybeb_c00003{bottom:155.220000px;}
.yf77_c00003{bottom:155.234700px;}
.yf81_c00003{bottom:155.235450px;}
.y1184_c00003{bottom:155.595600px;}
.y28c_c00003{bottom:155.640000px;}
.yf6b_c00003{bottom:156.389850px;}
.yf60_c00003{bottom:156.450300px;}
.y66f_c00003{bottom:157.740000px;}
.ye64_c00003{bottom:158.160450px;}
.y1006_c00003{bottom:159.299700px;}
.y101f_c00003{bottom:159.303000px;}
.y102b_c00003{bottom:159.304200px;}
.yb6e_c00003{bottom:159.360000px;}
.y3f7_c00003{bottom:159.540000px;}
.yb02_c00003{bottom:159.718350px;}
.yf47_c00003{bottom:159.945975px;}
.y1033_c00003{bottom:160.048050px;}
.y503_c00003{bottom:160.078200px;}
.yb59_c00003{bottom:160.080000px;}
.yfa6_c00003{bottom:160.378950px;}
.yfa1_c00003{bottom:160.380000px;}
.yfb7_c00003{bottom:160.381050px;}
.yfc1_c00003{bottom:160.382100px;}
.yfcb_c00003{bottom:160.383150px;}
.yc74_c00003{bottom:161.580000px;}
.y493_c00003{bottom:161.878200px;}
.ya86_c00003{bottom:161.878500px;}
.y892_c00003{bottom:161.880000px;}
.yea3_c00003{bottom:161.940450px;}
.y1250_c00003{bottom:163.470000px;}
.ya4c_c00003{bottom:163.499100px;}
.yc52_c00003{bottom:163.559400px;}
.y774_c00003{bottom:163.680000px;}
.y9db_c00003{bottom:164.578500px;}
.yf8c_c00003{bottom:165.209550px;}
.y5fb_c00003{bottom:165.480000px;}
.y177_c00003{bottom:165.540000px;}
.y10b8_c00003{bottom:166.287900px;}
.y109e_c00003{bottom:166.288350px;}
.y1084_c00003{bottom:166.289400px;}
.y106d_c00003{bottom:166.290450px;}
.y1053_c00003{bottom:166.290900px;}
.y909_c00003{bottom:166.738500px;}
.yb8c_c00003{bottom:166.740300px;}
.yc87_c00003{bottom:166.980000px;}
.y10c8_c00003{bottom:167.040000px;}
.y289_c00003{bottom:167.160000px;}
.ye61_c00003{bottom:167.700000px;}
.ye66_c00003{bottom:167.700150px;}
.y949_c00003{bottom:167.818500px;}
.y841_c00003{bottom:167.820000px;}
.y28a_c00003{bottom:169.860000px;}
.yad3_c00003{bottom:169.978500px;}
.yfd6_c00003{bottom:170.354850px;}
.yf48_c00003{bottom:170.489925px;}
.ybae_c00003{bottom:170.880000px;}
.ya19_c00003{bottom:171.058500px;}
.yea0_c00003{bottom:171.480000px;}
.yea5_c00003{bottom:171.480150px;}
.y66e_c00003{bottom:172.320000px;}
.ybea_c00003{bottom:172.860000px;}
.yee7_c00003{bottom:172.920000px;}
.ybc8_c00003{bottom:173.400000px;}
.y3f6_c00003{bottom:173.580000px;}
.y6ed_c00003{bottom:173.582160px;}
.y99b_c00003{bottom:173.758785px;}
.y576_c00003{bottom:174.120000px;}
.yf3b_c00003{bottom:174.674100px;}
.yf30_c00003{bottom:174.705600px;}
.yb01_c00003{bottom:174.838500px;}
.y502_c00003{bottom:175.918500px;}
.y891_c00003{bottom:176.460000px;}
.ye63_c00003{bottom:177.240300px;}
.y492_c00003{bottom:177.718500px;}
.y773_c00003{bottom:178.260000px;}
.y201_c00003{bottom:179.220000px;}
.yf61_c00003{bottom:179.280150px;}
.y9da_c00003{bottom:179.698650px;}
.y5fa_c00003{bottom:180.060000px;}
.yb6d_c00003{bottom:180.240000px;}
.yc73_c00003{bottom:180.480000px;}
.y1171_c00003{bottom:180.569400px;}
.y10fe_c00003{bottom:180.749850px;}
.ya85_c00003{bottom:180.778500px;}
.yea2_c00003{bottom:180.840450px;}
.yb58_c00003{bottom:180.960000px;}
.yf49_c00003{bottom:181.050270px;}
.y287_c00003{bottom:181.380000px;}
.y840_c00003{bottom:181.680000px;}
.ya4b_c00003{bottom:181.858800px;}
.y202_c00003{bottom:181.920000px;}
.y176_c00003{bottom:182.640000px;}
.y288_c00003{bottom:184.080000px;}
.y115a_c00003{bottom:185.070000px;}
.y908_c00003{bottom:185.098800px;}
.y1007_c00003{bottom:185.325300px;}
.y102c_c00003{bottom:185.329800px;}
.y124f_c00003{bottom:185.430000px;}
.y11aa_c00003{bottom:185.863200px;}
.y11a6_c00003{bottom:185.863350px;}
.y1195_c00003{bottom:185.863800px;}
.y119b_c00003{bottom:185.864100px;}
.y118f_c00003{bottom:185.864700px;}
.yc86_c00003{bottom:185.880000px;}
.y1034_c00003{bottom:186.088800px;}
.y11af_c00003{bottom:186.630300px;}
.yad2_c00003{bottom:186.718200px;}
.y948_c00003{bottom:186.718500px;}
.y66d_c00003{bottom:186.900000px;}
.y3f5_c00003{bottom:187.620000px;}
.y6ec_c00003{bottom:188.341920px;}
.y575_c00003{bottom:188.700000px;}
.ya18_c00003{bottom:189.418200px;}
.y10e6_c00003{bottom:189.465750px;}
.y10f0_c00003{bottom:189.467550px;}
.y11bc_c00003{bottom:189.468600px;}
.y129d_c00003{bottom:189.570000px;}
.y890_c00003{bottom:191.040000px;}
.yf4a_c00003{bottom:191.550270px;}
.yb00_c00003{bottom:191.578800px;}
.y501_c00003{bottom:191.758800px;}
.ybad_c00003{bottom:191.760000px;}
.yee6_c00003{bottom:191.820000px;}
.yff4_c00003{bottom:192.059700px;}
.y12ea_c00003{bottom:192.181050px;}
.y127a_c00003{bottom:192.270000px;}
.y772_c00003{bottom:192.840000px;}
.y99a_c00003{bottom:193.198950px;}
.yb8b_c00003{bottom:193.380000px;}
.y1ff_c00003{bottom:193.440000px;}
.y491_c00003{bottom:193.558800px;}
.ybe9_c00003{bottom:193.560000px;}
.y1118_c00003{bottom:193.785900px;}
.y11cf_c00003{bottom:193.786050px;}
.y1124_c00003{bottom:193.787250px;}
.y1130_c00003{bottom:193.787550px;}
.y11d7_c00003{bottom:193.787850px;}
.y113c_c00003{bottom:193.789050px;}
.y1148_c00003{bottom:193.789350px;}
.y1150_c00003{bottom:193.789650px;}
.yc36_c00003{bottom:193.980000px;}
.y10b9_c00003{bottom:194.323200px;}
.y109f_c00003{bottom:194.323650px;}
.y1085_c00003{bottom:194.324700px;}
.y1054_c00003{bottom:194.325600px;}
.y106e_c00003{bottom:194.325750px;}
.y5f9_c00003{bottom:194.640000px;}
.y10c9_c00003{bottom:195.090000px;}
.y83f_c00003{bottom:195.540000px;}
.y175_c00003{bottom:195.600000px;}
.y200_c00003{bottom:196.140000px;}
.ye62_c00003{bottom:196.140300px;}
.y9d9_c00003{bottom:196.439400px;}
.y1175_c00003{bottom:196.739850px;}
.y117e_c00003{bottom:196.740000px;}
.y117a_c00003{bottom:196.740150px;}
.y11ef_c00003{bottom:197.385150px;}
.y11fa_c00003{bottom:197.386050px;}
.y11f6_c00003{bottom:197.386200px;}
.y120a_c00003{bottom:197.388300px;}
.y1211_c00003{bottom:197.388750px;}
.y1218_c00003{bottom:197.389800px;}
.y121f_c00003{bottom:197.390850px;}
.y1186_c00003{bottom:197.490150px;}
.y11fd_c00003{bottom:198.149850px;}
.y286_c00003{bottom:198.300000px;}
.ya82_c00003{bottom:199.138200px;}
.ya84_c00003{bottom:199.678500px;}
.y10fd_c00003{bottom:199.725450px;}
.yea1_c00003{bottom:199.920300px;}
.ya4a_c00003{bottom:200.758800px;}
.yff0_c00003{bottom:200.805450px;}
.yb6c_c00003{bottom:200.940000px;}
.yc51_c00003{bottom:200.999700px;}
.y66c_c00003{bottom:201.480000px;}
.y10e0_c00003{bottom:201.570150px;}
.y3f4_c00003{bottom:201.660000px;}
.yf6c_c00003{bottom:202.034400px;}
.yf62_c00003{bottom:202.110600px;}
.yf31_c00003{bottom:202.111050px;}
.yf4b_c00003{bottom:202.111215px;}
.yb2f_c00003{bottom:202.917900px;}
.y6eb_c00003{bottom:203.101680px;}
.y574_c00003{bottom:203.280000px;}
.yb31_c00003{bottom:203.458500px;}
.yad1_c00003{bottom:203.998650px;}
.y907_c00003{bottom:203.998800px;}
.y1159_c00003{bottom:204.045000px;}
.ya83_c00003{bottom:204.538500px;}
.y945_c00003{bottom:205.078200px;}
.y947_c00003{bottom:205.618500px;}
.y88f_c00003{bottom:205.620000px;}
.y999_c00003{bottom:206.698950px;}
.ya15_c00003{bottom:207.238500px;}
.yc07_c00003{bottom:207.240000px;}
.y771_c00003{bottom:207.420000px;}
.y500_c00003{bottom:207.599100px;}
.y1fd_c00003{bottom:207.660000px;}
.ya17_c00003{bottom:207.778500px;}
.yb30_c00003{bottom:208.318500px;}
.yaff_c00003{bottom:208.858650px;}
.y1170_c00003{bottom:209.009100px;}
.y5f8_c00003{bottom:209.220000px;}
.y490_c00003{bottom:209.399100px;}
.y83e_c00003{bottom:209.400000px;}
.y174_c00003{bottom:209.640000px;}
.y284_c00003{bottom:209.820000px;}
.y1fe_c00003{bottom:210.360000px;}
.y946_c00003{bottom:210.478500px;}
.yb8a_c00003{bottom:211.020000px;}
.yff3_c00003{bottom:211.065150px;}
.y1008_c00003{bottom:211.321050px;}
.y102d_c00003{bottom:211.324350px;}
.yc72_c00003{bottom:211.620150px;}
.y129c_c00003{bottom:211.710000px;}
.ybc7_c00003{bottom:211.740000px;}
.y1035_c00003{bottom:212.068050px;}
.y12fc_c00003{bottom:212.343000px;}
.y349_c00003{bottom:212.410500px;}
.y285_c00003{bottom:212.520000px;}
.yf4c_c00003{bottom:212.611215px;}
.ya16_c00003{bottom:212.638500px;}
.ybac_c00003{bottom:212.640000px;}
.y131a_c00003{bottom:213.063750px;}
.yf78_c00003{bottom:213.300000px;}
.yf82_c00003{bottom:213.300750px;}
.y9d8_c00003{bottom:213.718050px;}
.yf8e_c00003{bottom:214.048650px;}
.ybe8_c00003{bottom:214.440000px;}
.yb57_c00003{bottom:214.800000px;}
.y124e_c00003{bottom:215.130000px;}
.y3f3_c00003{bottom:215.700000px;}
.y66b_c00003{bottom:216.060000px;}
.yc85_c00003{bottom:217.020150px;}
.y573_c00003{bottom:217.860000px;}
.y6ea_c00003{bottom:217.861440px;}
.ya80_c00003{bottom:218.037750px;}
.ya47_c00003{bottom:218.038200px;}
.ya81_c00003{bottom:218.578500px;}
.ya49_c00003{bottom:219.118500px;}
.y1279_c00003{bottom:219.270000px;}
.y88e_c00003{bottom:220.200000px;}
.yacf_c00003{bottom:220.738350px;}
.yb2d_c00003{bottom:221.277300px;}
.y904_c00003{bottom:221.278200px;}
.yad0_c00003{bottom:221.278500px;}
.yb2e_c00003{bottom:221.818500px;}
.yfa7_c00003{bottom:221.833200px;}
.yfa2_c00003{bottom:221.834250px;}
.yfb8_c00003{bottom:221.835300px;}
.yfc2_c00003{bottom:221.836950px;}
.yfcc_c00003{bottom:221.838000px;}
.y1fb_c00003{bottom:221.880000px;}
.y770_c00003{bottom:222.000000px;}
.y906_c00003{bottom:222.358500px;}
.y10a0_c00003{bottom:222.372450px;}
.y1086_c00003{bottom:222.373500px;}
.y106f_c00003{bottom:222.374550px;}
.y1055_c00003{bottom:222.375000px;}
.yfd8_c00003{bottom:222.585900px;}
.yee5_c00003{bottom:222.960150px;}
.yffc_c00003{bottom:223.124850px;}
.y10ca_c00003{bottom:223.125300px;}
.yf4d_c00003{bottom:223.172745px;}
.y83d_c00003{bottom:223.260000px;}
.ya48_c00003{bottom:223.438500px;}
.y4ff_c00003{bottom:223.439400px;}
.y5f7_c00003{bottom:223.800000px;}
.y173_c00003{bottom:223.860000px;}
.y942_c00003{bottom:223.978800px;}
.y282_c00003{bottom:224.040000px;}
.y944_c00003{bottom:224.518500px;}
.y1fc_c00003{bottom:224.580000px;}
.yc06_c00003{bottom:224.880000px;}
.yf63_c00003{bottom:224.925900px;}
.ye5f_c00003{bottom:224.940450px;}
.y48f_c00003{bottom:225.239400px;}
.yafe_c00003{bottom:225.598350px;}
.ya13_c00003{bottom:225.602550px;}
.ya14_c00003{bottom:226.138500px;}
.y905_c00003{bottom:226.678500px;}
.y283_c00003{bottom:226.740000px;}
.ye9f_c00003{bottom:228.540150px;}
.y12fb_c00003{bottom:228.543000px;}
.y1100_c00003{bottom:229.214400px;}
.y943_c00003{bottom:229.378500px;}
.yf32_c00003{bottom:229.500150px;}
.y3f2_c00003{bottom:229.740000px;}
.y346_c00003{bottom:230.383050px;}
.y9d5_c00003{bottom:230.458350px;}
.y130_c00003{bottom:230.520000px;}
.y66a_c00003{bottom:230.640000px;}
.yc71_c00003{bottom:230.700000px;}
.y9d7_c00003{bottom:230.998500px;}
.yff9_c00003{bottom:231.839700px;}
.yb89_c00003{bottom:231.900000px;}
.y572_c00003{bottom:232.440000px;}
.y10e2_c00003{bottom:232.588950px;}
.ybc6_c00003{bottom:232.620000px;}
.y6e9_c00003{bottom:232.621200px;}
.y11a7_c00003{bottom:232.917600px;}
.y11a1_c00003{bottom:232.918050px;}
.y119c_c00003{bottom:232.918350px;}
.y1196_c00003{bottom:232.918650px;}
.y1190_c00003{bottom:232.919550px;}
.y11b0_c00003{bottom:233.669400px;}
.yf4e_c00003{bottom:233.716695px;}
.y88d_c00003{bottom:234.780000px;}
.y115c_c00003{bottom:235.288950px;}
.y9d6_c00003{bottom:235.858500px;}
.y1f9_c00003{bottom:236.100000px;}
.yea_c00003{bottom:236.281500px;}
.ya44_c00003{bottom:236.401050px;}
.y76f_c00003{bottom:236.580000px;}
.y83c_c00003{bottom:237.120000px;}
.y1009_c00003{bottom:237.315600px;}
.y1020_c00003{bottom:237.318300px;}
.ya46_c00003{bottom:237.478500px;}
.y10e7_c00003{bottom:237.960300px;}
.y10f1_c00003{bottom:237.962100px;}
.y11bd_c00003{bottom:237.963150px;}
.yacd_c00003{bottom:238.018650px;}
.y1036_c00003{bottom:238.063800px;}
.y172_c00003{bottom:238.080000px;}
.y280_c00003{bottom:238.260000px;}
.y5f6_c00003{bottom:238.380000px;}
.yc50_c00003{bottom:238.440000px;}
.yace_c00003{bottom:238.558500px;}
.y1fa_c00003{bottom:238.800000px;}
.ycd4_c00003{bottom:239.070150px;}
.y4fe_c00003{bottom:239.279700px;}
.y95b_c00003{bottom:239.636550px;}
.y901_c00003{bottom:239.639550px;}
.y1311_c00003{bottom:239.883855px;}
.yb2c_c00003{bottom:240.177300px;}
.y903_c00003{bottom:240.718500px;}
.y281_c00003{bottom:240.960000px;}
.y48e_c00003{bottom:241.079700px;}
.y998_c00003{bottom:241.258650px;}
.ya45_c00003{bottom:241.798500px;}
.yee4_c00003{bottom:242.040000px;}
.yffb_c00003{bottom:242.099850px;}
.y124d_c00003{bottom:242.130000px;}
.yafd_c00003{bottom:242.879250px;}
.y941_c00003{bottom:243.418500px;}
.y3f0_c00003{bottom:243.780000px;}
.ye5e_c00003{bottom:243.840450px;}
.yc35_c00003{bottom:244.020000px;}
.y11c4_c00003{bottom:244.051050px;}
.y1119_c00003{bottom:244.051200px;}
.y11d0_c00003{bottom:244.051350px;}
.y1125_c00003{bottom:244.052550px;}
.y1131_c00003{bottom:244.052850px;}
.y11d8_c00003{bottom:244.053600px;}
.y113d_c00003{bottom:244.054350px;}
.y1149_c00003{bottom:244.054650px;}
.y1151_c00003{bottom:244.055400px;}
.yf4f_c00003{bottom:244.232520px;}
.ya12_c00003{bottom:244.502550px;}
.y12f_c00003{bottom:244.740000px;}
.y902_c00003{bottom:245.038500px;}
.y669_c00003{bottom:245.220000px;}
.yc04_c00003{bottom:245.760000px;}
.y1278_c00003{bottom:246.270000px;}
.ybab_c00003{bottom:246.480000px;}
.y571_c00003{bottom:247.020000px;}
.y6e8_c00003{bottom:247.380960px;}
.ye9d_c00003{bottom:247.620000px;}
.yf6d_c00003{bottom:247.710000px;}
.y9d2_c00003{bottom:247.739250px;}
.yf64_c00003{bottom:247.755150px;}
.y1176_c00003{bottom:248.114850px;}
.y117f_c00003{bottom:248.115000px;}
.y10ff_c00003{bottom:248.190600px;}
.y9d4_c00003{bottom:248.278500px;}
.ybe7_c00003{bottom:248.280000px;}
.y345_c00003{bottom:248.352000px;}
.y1187_c00003{bottom:248.866350px;}
.y1f7_c00003{bottom:250.320000px;}
.y10a1_c00003{bottom:250.407750px;}
.y1087_c00003{bottom:250.408800px;}
.y1056_c00003{bottom:250.409700px;}
.y1070_c00003{bottom:250.409850px;}
.y83b_c00003{bottom:250.980000px;}
.y76e_c00003{bottom:251.160000px;}
.y10cb_c00003{bottom:251.174100px;}
.y2b_c00003{bottom:251.581500px;}
.y171_c00003{bottom:252.300000px;}
.y27e_c00003{bottom:252.480000px;}
.yb6b_c00003{bottom:252.600000px;}
.y5f5_c00003{bottom:252.960000px;}
.y1f8_c00003{bottom:253.020000px;}
.y9d3_c00003{bottom:253.138500px;}
.yb54_c00003{bottom:253.320000px;}
.ye5b_c00003{bottom:253.380000px;}
.ye60_c00003{bottom:253.380150px;}
.y1310_c00003{bottom:253.923510px;}
.y115b_c00003{bottom:254.310300px;}
.yf50_c00003{bottom:254.776470px;}
.y4fd_c00003{bottom:255.120000px;}
.y27f_c00003{bottom:255.180000px;}
.yacc_c00003{bottom:255.838800px;}
.ya43_c00003{bottom:255.840750px;}
.ya7f_c00003{bottom:256.378500px;}
.yf33_c00003{bottom:256.860450px;}
.y48d_c00003{bottom:256.920000px;}
.y996_c00003{bottom:257.458200px;}
.ye9_c00003{bottom:258.061500px;}
.yb2b_c00003{bottom:258.537600px;}
.y997_c00003{bottom:258.538500px;}
.y12e_c00003{bottom:258.960000px;}
.y95a_c00003{bottom:259.077300px;}
.y900_c00003{bottom:259.080300px;}
.yc05_c00003{bottom:259.260000px;}
.yf0a_c00003{bottom:259.500000px;}
.y1001_c00003{bottom:259.769250px;}
.y668_c00003{bottom:259.800000px;}
.yafc_c00003{bottom:260.699400px;}
.y116f_c00003{bottom:261.029250px;}
.y118c_c00003{bottom:261.180000px;}
.y104e_c00003{bottom:261.208950px;}
.ybf_c00003{bottom:261.301500px;}
.y570_c00003{bottom:261.600000px;}
.yc70_c00003{bottom:261.840000px;}
.y6e7_c00003{bottom:262.140720px;}
.y940_c00003{bottom:262.318500px;}
.yf90_c00003{bottom:262.619400px;}
.ye5d_c00003{bottom:262.740450px;}
.ya11_c00003{bottom:262.861800px;}
.yb56_c00003{bottom:263.220000px;}
.y100a_c00003{bottom:263.341200px;}
.y1021_c00003{bottom:263.343300px;}
.y102e_c00003{bottom:263.345100px;}
.y1037_c00003{bottom:264.088200px;}
.ybaa_c00003{bottom:264.120000px;}
.y1f5_c00003{bottom:264.540000px;}
.y83a_c00003{bottom:264.840000px;}
.yf51_c00003{bottom:265.322175px;}
.y9d1_c00003{bottom:265.559400px;}
.yc03_c00003{bottom:265.740000px;}
.ybe6_c00003{bottom:265.920000px;}
.ybc5_c00003{bottom:266.460000px;}
.ye9e_c00003{bottom:266.520000px;}
.y27d_c00003{bottom:266.700000px;}
.yb55_c00003{bottom:266.820000px;}
.y1f6_c00003{bottom:267.240000px;}
.y5f4_c00003{bottom:267.540000px;}
.y130f_c00003{bottom:267.783855px;}
.y88c_c00003{bottom:267.898500px;}
.y8a0_c00003{bottom:268.438500px;}
.ycd3_c00003{bottom:268.770150px;}
.ycd5_c00003{bottom:268.950000px;}
.y124c_c00003{bottom:269.130000px;}
.y170_c00003{bottom:269.400000px;}
.yf65_c00003{bottom:270.569850px;}
.yf79_c00003{bottom:271.365300px;}
.yf83_c00003{bottom:271.365450px;}
.yacb_c00003{bottom:273.118650px;}
.yee3_c00003{bottom:273.180000px;}
.y1277_c00003{bottom:273.270000px;}
.yb53_c00003{bottom:273.300000px;}
.y2a_c00003{bottom:273.361500px;}
.y12e9_c00003{bottom:273.722400px;}
.y10e1_c00003{bottom:273.929850px;}
.yff5_c00003{bottom:273.930450px;}
.ya42_c00003{bottom:274.200450px;}
.yfda_c00003{bottom:274.500600px;}
.y993_c00003{bottom:274.739100px;}
.ya7e_c00003{bottom:275.278500px;}
.y995_c00003{bottom:275.818500px;}
.yf52_c00003{bottom:275.836830px;}
.y12d_c00003{bottom:276.060000px;}
.yb2a_c00003{bottom:276.897900px;}
.yb6a_c00003{bottom:276.900000px;}
.y6e6_c00003{bottom:276.900480px;}
.y959_c00003{bottom:277.437600px;}
.y8ff_c00003{bottom:277.440000px;}
.y1102_c00003{bottom:277.709550px;}
.yc4f_c00003{bottom:277.860000px;}
.yafb_c00003{bottom:277.979250px;}
.yf2a_c00003{bottom:278.128950px;}
.yf5c_c00003{bottom:278.130000px;}
.y10a2_c00003{bottom:278.457750px;}
.y1088_c00003{bottom:278.458800px;}
.y1071_c00003{bottom:278.459850px;}
.y1057_c00003{bottom:278.460300px;}
.y839_c00003{bottom:278.700000px;}
.y1f3_c00003{bottom:278.760000px;}
.y10cc_c00003{bottom:279.209400px;}
.y994_c00003{bottom:279.598500px;}
.ye8_c00003{bottom:279.841500px;}
.y11a2_c00003{bottom:280.003350px;}
.y11a8_c00003{bottom:280.003500px;}
.y119d_c00003{bottom:280.003650px;}
.y1197_c00003{bottom:280.003950px;}
.y1191_c00003{bottom:280.004850px;}
.yc6f_c00003{bottom:280.740000px;}
.y11b1_c00003{bottom:280.770600px;}
.y27b_c00003{bottom:280.920000px;}
.y93f_c00003{bottom:281.218500px;}
.ya10_c00003{bottom:281.221050px;}
.y1f4_c00003{bottom:281.460000px;}
.yf8f_c00003{bottom:281.593800px;}
.ye5c_c00003{bottom:281.820300px;}
.y130e_c00003{bottom:281.823510px;}
.y16f_c00003{bottom:282.360000px;}
.y9d0_c00003{bottom:282.839250px;}
.ybe_c00003{bottom:283.081500px;}
.yfa8_c00003{bottom:283.244100px;}
.yfaf_c00003{bottom:283.245150px;}
.yfb9_c00003{bottom:283.246800px;}
.yfc3_c00003{bottom:283.247850px;}
.yfcd_c00003{bottom:283.248900px;}
.y11f0_c00003{bottom:283.529700px;}
.y11f7_c00003{bottom:283.530150px;}
.y120b_c00003{bottom:283.532250px;}
.y1212_c00003{bottom:283.533300px;}
.y1219_c00003{bottom:283.534350px;}
.y27c_c00003{bottom:283.620000px;}
.ybc4_c00003{bottom:284.100000px;}
.yf3c_c00003{bottom:284.219850px;}
.yf34_c00003{bottom:284.250150px;}
.y8ba_c00003{bottom:284.278500px;}
.y76d_c00003{bottom:284.280000px;}
.y34b_c00003{bottom:284.290800px;}
.y11fe_c00003{bottom:284.293800px;}
.ye40_c00003{bottom:284.340000px;}
.y8c1_c00003{bottom:284.818500px;}
.y780_c00003{bottom:284.820000px;}
.yba7_c00003{bottom:285.000000px;}
.y115e_c00003{bottom:285.554850px;}
.yc84_c00003{bottom:286.140000px;}
.yf53_c00003{bottom:286.381950px;}
.y10e8_c00003{bottom:286.409700px;}
.y10f8_c00003{bottom:286.410300px;}
.y11b6_c00003{bottom:286.411200px;}
.y11be_c00003{bottom:286.413150px;}
.yb88_c00003{bottom:286.620000px;}
.ybe3_c00003{bottom:286.800000px;}
.y12c_c00003{bottom:289.020000px;}
.yd00_c00003{bottom:289.155000px;}
.y100b_c00003{bottom:289.335750px;}
.yf09_c00003{bottom:289.380345px;}
.y88b_c00003{bottom:289.500000px;}
.y88a_c00003{bottom:289.680000px;}
.y104d_c00003{bottom:289.694250px;}
.y1038_c00003{bottom:290.083950px;}
.yaca_c00003{bottom:290.398500px;}
.y3ef_c00003{bottom:291.660000px;}
.y6e5_c00003{bottom:291.660240px;}
.yee2_c00003{bottom:292.080000px;}
.y3fd_c00003{bottom:292.200000px;}
.yfed_c00003{bottom:292.394700px;}
.ya41_c00003{bottom:292.560150px;}
.y667_c00003{bottom:292.920000px;}
.y1f1_c00003{bottom:292.980000px;}
.y992_c00003{bottom:293.099400px;}
.yb69_c00003{bottom:293.280000px;}
.yf6e_c00003{bottom:293.370900px;}
.yf66_c00003{bottom:293.400300px;}
.y679_c00003{bottom:293.460000px;}
.yfd9_c00003{bottom:293.505450px;}
.y4fc_c00003{bottom:294.000000px;}
.yc34_c00003{bottom:294.060000px;}
.ya7d_c00003{bottom:294.178500px;}
.yb52_c00003{bottom:294.180000px;}
.y11c5_c00003{bottom:294.300450px;}
.y111a_c00003{bottom:294.300600px;}
.y11d1_c00003{bottom:294.300750px;}
.y1126_c00003{bottom:294.301950px;}
.y1132_c00003{bottom:294.302250px;}
.y11d9_c00003{bottom:294.303000px;}
.y11e4_c00003{bottom:294.303450px;}
.y113e_c00003{bottom:294.303750px;}
.y114a_c00003{bottom:294.304050px;}
.y1152_c00003{bottom:294.304800px;}
.y11ed_c00003{bottom:294.372900px;}
.y507_c00003{bottom:294.540000px;}
.y56f_c00003{bottom:294.720000px;}
.yba9_c00003{bottom:294.900000px;}
.y279_c00003{bottom:295.140000px;}
.y29_c00003{bottom:295.141500px;}
.yb29_c00003{bottom:295.258200px;}
.yafa_c00003{bottom:295.259100px;}
.y57b_c00003{bottom:295.260000px;}
.ye9b_c00003{bottom:295.320900px;}
.y1f2_c00003{bottom:295.680000px;}
.y958_c00003{bottom:295.797900px;}
.y8fe_c00003{bottom:295.799700px;}
.y124b_c00003{bottom:296.175000px;}
.y16e_c00003{bottom:296.400000px;}
.y1101_c00003{bottom:296.669250px;}
.ybe5_c00003{bottom:296.700000px;}
.yf54_c00003{bottom:296.896605px;}
.y27a_c00003{bottom:297.840000px;}
.yba8_c00003{bottom:298.500000px;}
.y48c_c00003{bottom:298.680000px;}
.ycd2_c00003{bottom:298.875000px;}
.yf08_c00003{bottom:298.920000px;}
.y498_c00003{bottom:299.219535px;}
.y117b_c00003{bottom:299.490150px;}
.y1177_c00003{bottom:299.490450px;}
.y1180_c00003{bottom:299.490600px;}
.ya0f_c00003{bottom:299.580300px;}
.y93e_c00003{bottom:300.118500px;}
.y9cf_c00003{bottom:300.119100px;}
.y1188_c00003{bottom:300.240750px;}
.ybe4_c00003{bottom:300.300000px;}
.y1276_c00003{bottom:300.315000px;}
.y7c6_c00003{bottom:300.480000px;}
.y71d_c00003{bottom:300.658500px;}
.y5f3_c00003{bottom:300.660000px;}
.y7cf_c00003{bottom:301.020000px;}
.y71f_c00003{bottom:301.198500px;}
.y606_c00003{bottom:301.200000px;}
.ye7_c00003{bottom:301.620000px;}
.y12fa_c00003{bottom:302.883000px;}
.y12b_c00003{bottom:303.060000px;}
.yb87_c00003{bottom:304.260000px;}
.y115d_c00003{bottom:304.560300px;}
.yba6_c00003{bottom:304.800000px;}
.ybd_c00003{bottom:304.861500px;}
.ybc2_c00003{bottom:304.980000px;}
.y76c_c00003{bottom:305.880000px;}
.ydd4_c00003{bottom:305.941950px;}
.y76b_c00003{bottom:306.060000px;}
.y6e4_c00003{bottom:306.420000px;}
.y10c2_c00003{bottom:306.507600px;}
.y10ba_c00003{bottom:306.507900px;}
.y10a3_c00003{bottom:306.508350px;}
.y1089_c00003{bottom:306.509400px;}
.y1072_c00003{bottom:306.510450px;}
.y1058_c00003{bottom:306.510900px;}
.yf29_c00003{bottom:306.613650px;}
.yf5b_c00003{bottom:306.614700px;}
.y12d2_c00003{bottom:306.778500px;}
.ybe2_c00003{bottom:306.780000px;}
.y1ef_c00003{bottom:307.200000px;}
.y10cd_c00003{bottom:307.260000px;}
.yf55_c00003{bottom:307.442310px;}
.yac9_c00003{bottom:307.678350px;}
.y4aa_c00003{bottom:309.120000px;}
.y277_c00003{bottom:309.360000px;}
.y838_c00003{bottom:309.838500px;}
.y1f0_c00003{bottom:309.900000px;}
.y12d3_c00003{bottom:310.018500px;}
.y12d1_c00003{bottom:310.019850px;}
.y849_c00003{bottom:310.378500px;}
.y991_c00003{bottom:310.379250px;}
.ye5a_c00003{bottom:310.440150px;}
.y16d_c00003{bottom:310.620000px;}
.ya40_c00003{bottom:310.919850px;}
.yc02_c00003{bottom:310.920000px;}
.yf35_c00003{bottom:311.655000px;}
.yc6e_c00003{bottom:311.880000px;}
.y43a_c00003{bottom:312.000000px;}
.y278_c00003{bottom:312.060000px;}
.y73c_c00003{bottom:312.180000px;}
.yaf9_c00003{bottom:312.538950px;}
.ya7c_c00003{bottom:313.078500px;}
.yb28_c00003{bottom:313.618500px;}
.y957_c00003{bottom:314.158200px;}
.y8fd_c00003{bottom:314.159400px;}
.yb68_c00003{bottom:314.160000px;}
.ye9a_c00003{bottom:314.220900px;}
.y666_c00003{bottom:314.520000px;}
.y665_c00003{bottom:314.700000px;}
.ybc3_c00003{bottom:314.880000px;}
.y1000_c00003{bottom:315.253500px;}
.y100c_c00003{bottom:315.361350px;}
.y1022_c00003{bottom:315.364050px;}
.yffd_c00003{bottom:315.388950px;}
.y34a_c00003{bottom:315.738000px;}
.y1039_c00003{bottom:316.107750px;}
.yf67_c00003{bottom:316.230750px;}
.y56e_c00003{bottom:316.320000px;}
.y56d_c00003{bottom:316.500000px;}
.ycd1_c00003{bottom:316.515000px;}
.y28_c00003{bottom:316.920000px;}
.y12a_c00003{bottom:317.280000px;}
.y9ce_c00003{bottom:317.398950px;}
.ya0e_c00003{bottom:317.939550px;}
.yf56_c00003{bottom:317.987430px;}
.yb50_c00003{bottom:318.480000px;}
.ycff_c00003{bottom:318.855000px;}
.y93d_c00003{bottom:319.018500px;}
.yf92_c00003{bottom:320.474250px;}
.y1ed_c00003{bottom:321.420000px;}
.y7c5_c00003{bottom:322.080000px;}
.y5f2_c00003{bottom:322.260000px;}
.y5f1_c00003{bottom:322.440000px;}
.ye3e_c00003{bottom:322.501650px;}
.yf24_c00003{bottom:322.861650px;}
.y124a_c00003{bottom:323.175000px;}
.yee1_c00003{bottom:323.221800px;}
.ye6_c00003{bottom:323.401500px;}
.y275_c00003{bottom:323.580000px;}
.ye97_c00003{bottom:323.760000px;}
.ye9c_c00003{bottom:323.761200px;}
.y1ee_c00003{bottom:324.120000px;}
.y335_c00003{bottom:324.300000px;}
.yb51_c00003{bottom:324.780000px;}
.y16c_c00003{bottom:324.840000px;}
.yac8_c00003{bottom:324.958200px;}
.y4ab_c00003{bottom:324.960000px;}
.y2bc_c00003{bottom:325.200000px;}
.yba5_c00003{bottom:325.860000px;}
.y43e_c00003{bottom:326.040000px;}
.y1104_c00003{bottom:326.160150px;}
.y276_c00003{bottom:326.280000px;}
.ybc_c00003{bottom:326.641500px;}
.y73e_c00003{bottom:326.760000px;}
.y336_c00003{bottom:327.000000px;}
.y11a9_c00003{bottom:327.057750px;}
.y11a3_c00003{bottom:327.058200px;}
.y119e_c00003{bottom:327.058500px;}
.y1198_c00003{bottom:327.058800px;}
.y1192_c00003{bottom:327.059100px;}
.yc01_c00003{bottom:327.300000px;}
.y1275_c00003{bottom:327.315000px;}
.y2bd_c00003{bottom:327.360000px;}
.y990_c00003{bottom:327.659100px;}
.ybe1_c00003{bottom:327.660000px;}
.y98_c00003{bottom:327.720000px;}
.y11b2_c00003{bottom:327.809700px;}
.y793_c00003{bottom:327.840000px;}
.yc4e_c00003{bottom:327.900000px;}
.y529_c00003{bottom:328.020000px;}
.y4fb_c00003{bottom:328.200000px;}
.y3ee_c00003{bottom:328.380000px;}
.yf57_c00003{bottom:328.502085px;}
.y3eb_c00003{bottom:328.560000px;}
.ya3f_c00003{bottom:329.279550px;}
.yf7a_c00003{bottom:329.400000px;}
.yf84_c00003{bottom:329.400150px;}
.ye58_c00003{bottom:329.520000px;}
.yaf8_c00003{bottom:329.818800px;}
.y837_c00003{bottom:330.360000px;}
.y1204_c00003{bottom:330.373050px;}
.y4fa_c00003{bottom:330.540000px;}
.y3ed_c00003{bottom:330.720000px;}
.yc6d_c00003{bottom:330.780000px;}
.y664_c00003{bottom:330.900000px;}
.y663_c00003{bottom:331.080000px;}
.y129_c00003{bottom:331.500000px;}
.y11ec_c00003{bottom:331.813200px;}
.ya7b_c00003{bottom:331.978500px;}
.yb27_c00003{bottom:331.978800px;}
.y956_c00003{bottom:332.518500px;}
.y8fc_c00003{bottom:332.519100px;}
.y56c_c00003{bottom:332.700000px;}
.y56b_c00003{bottom:332.880000px;}
.yecd_c00003{bottom:333.300000px;}
.ye99_c00003{bottom:333.300750px;}
.y12d0_c00003{bottom:334.498500px;}
.y10bb_c00003{bottom:334.542150px;}
.y10c3_c00003{bottom:334.542900px;}
.y10a4_c00003{bottom:334.543050px;}
.y108a_c00003{bottom:334.544100px;}
.y1059_c00003{bottom:334.545150px;}
.ydfc_c00003{bottom:334.560000px;}
.y9cd_c00003{bottom:334.678800px;}
.ydfa_c00003{bottom:334.740000px;}
.yb4f_c00003{bottom:334.860000px;}
.y10e9_c00003{bottom:334.906050px;}
.y11b7_c00003{bottom:334.907550px;}
.y11bf_c00003{bottom:334.908900px;}
.y48b_c00003{bottom:335.040000px;}
.y489_c00003{bottom:335.220000px;}
.y10ce_c00003{bottom:335.265450px;}
.y1eb_c00003{bottom:335.640000px;}
.yfdc_c00003{bottom:335.729850px;}
.y1160_c00003{bottom:335.806050px;}
.ydd3_c00003{bottom:335.823000px;}
.yc83_c00003{bottom:336.180000px;}
.ya0d_c00003{bottom:336.298800px;}
.ycfe_c00003{bottom:336.495000px;}
.y48a_c00003{bottom:337.380000px;}
.y6e3_c00003{bottom:337.560000px;}
.y273_c00003{bottom:337.800000px;}
.y93c_c00003{bottom:337.918500px;}
.y6f3_c00003{bottom:338.100000px;}
.y1ec_c00003{bottom:338.340000px;}
.y7c4_c00003{bottom:338.460000px;}
.y333_c00003{bottom:338.520000px;}
.y5f0_c00003{bottom:338.640000px;}
.y27_c00003{bottom:338.701500px;}
.y5ef_c00003{bottom:338.820000px;}
.yf6f_c00003{bottom:339.015450px;}
.yf36_c00003{bottom:339.045750px;}
.yf68_c00003{bottom:339.046050px;}
.yf58_c00003{bottom:339.047790px;}
.y16a_c00003{bottom:339.060000px;}
.yd24_c00003{bottom:339.198000px;}
.y2ba_c00003{bottom:339.240000px;}
.yf91_c00003{bottom:339.374250px;}
.yf07_c00003{bottom:339.421590px;}
.yccd_c00003{bottom:340.455000px;}
.y274_c00003{bottom:340.500000px;}
.y889_c00003{bottom:341.158500px;}
.y334_c00003{bottom:341.220000px;}
.y888_c00003{bottom:341.338500px;}
.y100d_c00003{bottom:341.355900px;}
.y1023_c00003{bottom:341.358600px;}
.y104c_c00003{bottom:341.533950px;}
.y2bb_c00003{bottom:341.941500px;}
.y103a_c00003{bottom:342.104100px;}
.y118a_c00003{bottom:342.106650px;}
.yee0_c00003{bottom:342.123000px;}
.yac7_c00003{bottom:342.238050px;}
.y795_c00003{bottom:342.420000px;}
.y104f_c00003{bottom:343.080000px;}
.y8a9_c00003{bottom:343.140000px;}
.yfff_c00003{bottom:343.694250px;}
.y52a_c00003{bottom:343.860300px;}
.y7fb_c00003{bottom:344.040000px;}
.y79f_c00003{bottom:344.220000px;}
.yc33_c00003{bottom:344.283000px;}
.y11c6_c00003{bottom:344.549850px;}
.y111b_c00003{bottom:344.550000px;}
.y11d2_c00003{bottom:344.550150px;}
.y1127_c00003{bottom:344.551350px;}
.y1133_c00003{bottom:344.551650px;}
.y11da_c00003{bottom:344.551800px;}
.y113f_c00003{bottom:344.553150px;}
.y114b_c00003{bottom:344.553450px;}
.y1153_c00003{bottom:344.554800px;}
.yfa9_c00003{bottom:344.669100px;}
.yfb0_c00003{bottom:344.670750px;}
.yfba_c00003{bottom:344.671800px;}
.yfc4_c00003{bottom:344.672850px;}
.yfce_c00003{bottom:344.673900px;}
.y98f_c00003{bottom:344.938950px;}
.y8c8_c00003{bottom:344.940000px;}
.y1103_c00003{bottom:345.134550px;}
.ye5_c00003{bottom:345.181500px;}
.y127_c00003{bottom:345.720000px;}
.y836_c00003{bottom:345.840000px;}
.y835_c00003{bottom:346.020000px;}
.y4f9_c00003{bottom:346.560000px;}
.y3ea_c00003{bottom:346.740000px;}
.y3e7_c00003{bottom:346.920000px;}
.yaf7_c00003{bottom:347.098650px;}
.y662_c00003{bottom:347.280000px;}
.y661_c00003{bottom:347.460000px;}
.ya3e_c00003{bottom:347.639250px;}
.yfec_c00003{bottom:347.834400px;}
.yc00_c00003{bottom:348.180000px;}
.ybb_c00003{bottom:348.420000px;}
.ye59_c00003{bottom:348.421800px;}
.yb67_c00003{bottom:348.540000px;}
.yf06_c00003{bottom:348.963000px;}
.y56a_c00003{bottom:349.080000px;}
.y569_c00003{bottom:349.260000px;}
.y97_c00003{bottom:349.501500px;}
.yb26_c00003{bottom:349.798500px;}
.y1e9_c00003{bottom:349.860000px;}
.yba2_c00003{bottom:350.160000px;}
.y1249_c00003{bottom:350.175000px;}
.yb24_c00003{bottom:350.337900px;}
.ya7a_c00003{bottom:350.338500px;}
.y1178_c00003{bottom:350.849700px;}
.y1181_c00003{bottom:350.850300px;}
.ya78_c00003{bottom:350.878500px;}
.y8fb_c00003{bottom:350.878800px;}
.ye3f_c00003{bottom:350.941950px;}
.ye3d_c00003{bottom:350.943000px;}
.ye25_c00003{bottom:351.121500px;}
.y4f8_c00003{bottom:351.240000px;}
.y3e8_c00003{bottom:351.420000px;}
.y9cc_c00003{bottom:351.958650px;}
.ybde_c00003{bottom:351.960000px;}
.y271_c00003{bottom:352.020000px;}
.ye98_c00003{bottom:352.200750px;}
.y1ea_c00003{bottom:352.560000px;}
.y331_c00003{bottom:352.740000px;}
.y488_c00003{bottom:353.400000px;}
.y2b9_c00003{bottom:353.460000px;}
.y486_c00003{bottom:353.580000px;}
.y12e8_c00003{bottom:354.002850px;}
.ya0b_c00003{bottom:354.118500px;}
.y1274_c00003{bottom:354.315000px;}
.yfdb_c00003{bottom:354.629850px;}
.ya0c_c00003{bottom:354.658500px;}
.ya09_c00003{bottom:354.661500px;}
.y272_c00003{bottom:354.721500px;}
.y115f_c00003{bottom:354.780450px;}
.y7c3_c00003{bottom:354.840000px;}
.y5ee_c00003{bottom:355.020000px;}
.yb25_c00003{bottom:355.198500px;}
.y5ed_c00003{bottom:355.200000px;}
.y332_c00003{bottom:355.441500px;}
.ya79_c00003{bottom:355.738500px;}
.yb4d_c00003{bottom:355.740000px;}
.y169_c00003{bottom:356.161500px;}
.y93b_c00003{bottom:356.278500px;}
.yba3_c00003{bottom:356.460000px;}
.y887_c00003{bottom:356.640000px;}
.yd23_c00003{bottom:356.655000px;}
.y939_c00003{bottom:356.818500px;}
.y886_c00003{bottom:356.820000px;}
.y5ad_c00003{bottom:357.000000px;}
.yd77_c00003{bottom:357.060000px;}
.y8b9_c00003{bottom:357.538500px;}
.y76a_c00003{bottom:357.540000px;}
.y8b8_c00003{bottom:357.718500px;}
.y768_c00003{bottom:357.720000px;}
.y487_c00003{bottom:358.080000px;}
.ybdf_c00003{bottom:358.440000px;}
.yf28_c00003{bottom:358.453950px;}
.yf5a_c00003{bottom:358.455000px;}
.y7fd_c00003{bottom:358.620000px;}
.y7a1_c00003{bottom:358.800000px;}
.yac6_c00003{bottom:358.978500px;}
.yf39_c00003{bottom:359.280000px;}
.ya0a_c00003{bottom:359.518500px;}
.y6e2_c00003{bottom:359.520000px;}
.y6e1_c00003{bottom:359.700000px;}
.yba4_c00003{bottom:360.060000px;}
.yf23_c00003{bottom:360.303000px;}
.y7e9_c00003{bottom:360.421500px;}
.y26_c00003{bottom:360.481500px;}
.y6a6_c00003{bottom:360.601500px;}
.ycfa_c00003{bottom:360.616500px;}
.y1189_c00003{bottom:361.081050px;}
.y625_c00003{bottom:361.321500px;}
.y4f7_c00003{bottom:361.501500px;}
.y93a_c00003{bottom:361.678500px;}
.y3e6_c00003{bottom:361.681500px;}
.y3e4_c00003{bottom:361.861500px;}
.yc6c_c00003{bottom:361.922550px;}
.yecb_c00003{bottom:361.923150px;}
.ybe0_c00003{bottom:362.040000px;}
.y98e_c00003{bottom:362.218800px;}
.y769_c00003{bottom:362.221500px;}
.y10bc_c00003{bottom:362.547000px;}
.y10a5_c00003{bottom:362.547900px;}
.y1073_c00003{bottom:362.548800px;}
.y108b_c00003{bottom:362.548950px;}
.y105a_c00003{bottom:362.550000px;}
.y126_c00003{bottom:362.821500px;}
.y10cf_c00003{bottom:363.314250px;}
.yaf6_c00003{bottom:363.838500px;}
.y4f6_c00003{bottom:363.840000px;}
.y3e5_c00003{bottom:364.020000px;}
.y1e7_c00003{bottom:364.078500px;}
.yac5_c00003{bottom:364.378500px;}
.yaf5_c00003{bottom:364.380300px;}
.ydf9_c00003{bottom:364.443000px;}
.ya3c_c00003{bottom:364.918500px;}
.yb86_c00003{bottom:365.821500px;}
.ydd2_c00003{bottom:365.883000px;}
.ya3d_c00003{bottom:365.998500px;}
.ya3a_c00003{bottom:365.999100px;}
.y660_c00003{bottom:366.180000px;}
.y26f_c00003{bottom:366.238500px;}
.y65e_c00003{bottom:366.360000px;}
.yba1_c00003{bottom:366.541500px;}
.ybc0_c00003{bottom:366.721500px;}
.y1e8_c00003{bottom:366.781500px;}
.y32f_c00003{bottom:366.958500px;}
.ye4_c00003{bottom:366.963000px;}
.yc82_c00003{bottom:367.322550px;}
.y100e_c00003{bottom:367.381500px;}
.y1024_c00003{bottom:367.383000px;}
.y863_c00003{bottom:367.621500px;}
.y2b7_c00003{bottom:367.678500px;}
.y73b_c00003{bottom:367.798500px;}
.y568_c00003{bottom:367.980000px;}
.y103b_c00003{bottom:368.098650px;}
.y8f9_c00003{bottom:368.158500px;}
.y566_c00003{bottom:368.160000px;}
.y73d_c00003{bottom:368.338500px;}
.y485_c00003{bottom:368.341500px;}
.y483_c00003{bottom:368.521500px;}
.yb23_c00003{bottom:368.698200px;}
.y9cb_c00003{bottom:368.698500px;}
.y270_c00003{bottom:368.941500px;}
.ybff_c00003{bottom:369.061500px;}
.y168_c00003{bottom:369.118500px;}
.y955_c00003{bottom:369.237900px;}
.y8fa_c00003{bottom:369.238500px;}
.y9ca_c00003{bottom:369.239100px;}
.y8f7_c00003{bottom:369.239700px;}
.y330_c00003{bottom:369.661500px;}
.y11f1_c00003{bottom:369.690600px;}
.y1205_c00003{bottom:369.691050px;}
.y120c_c00003{bottom:369.691950px;}
.y1213_c00003{bottom:369.694200px;}
.y121a_c00003{bottom:369.695250px;}
.ya77_c00003{bottom:369.778500px;}
.yba_c00003{bottom:370.203000px;}
.ya3b_c00003{bottom:370.318500px;}
.y2b8_c00003{bottom:370.381500px;}
.y11ff_c00003{bottom:370.439550px;}
.y484_c00003{bottom:370.680000px;}
.y65f_c00003{bottom:370.861500px;}
.y96_c00003{bottom:371.281500px;}
.y5af_c00003{bottom:371.581500px;}
.y567_c00003{bottom:372.661500px;}
.ya08_c00003{bottom:373.020750px;}
.y767_c00003{bottom:373.021500px;}
.y766_c00003{bottom:373.201500px;}
.yedf_c00003{bottom:373.264650px;}
.y8f8_c00003{bottom:373.558500px;}
.y7c2_c00003{bottom:373.740000px;}
.y71c_c00003{bottom:373.918500px;}
.y5ec_c00003{bottom:373.920000px;}
.y71b_c00003{bottom:374.098500px;}
.y5ea_c00003{bottom:374.100000px;}
.y1106_c00003{bottom:374.609550px;}
.y7eb_c00003{bottom:375.001500px;}
.y6a8_c00003{bottom:375.181500px;}
.y89c_c00003{bottom:375.538284px;}
.y89f_c00003{bottom:375.538650px;}
.y938_c00003{bottom:375.718500px;}
.y125_c00003{bottom:375.778500px;}
.y627_c00003{bottom:375.901500px;}
.y6e0_c00003{bottom:376.081500px;}
.yf9f_c00003{bottom:376.093950px;}
.y6df_c00003{bottom:376.261500px;}
.yfeb_c00003{bottom:376.274700px;}
.yda7_c00003{bottom:376.504200px;}
.yb4a_c00003{bottom:376.621500px;}
.yac4_c00003{bottom:376.798350px;}
.y12f9_c00003{bottom:377.043000px;}
.y1248_c00003{bottom:377.175000px;}
.ye56_c00003{bottom:377.223000px;}
.y4f5_c00003{bottom:377.341500px;}
.y3e3_c00003{bottom:377.521500px;}
.y3e1_c00003{bottom:377.701500px;}
.yd52_c00003{bottom:377.763300px;}
.yc4d_c00003{bottom:377.943000px;}
.y1e5_c00003{bottom:378.298500px;}
.yf94_c00003{bottom:378.539550px;}
.y5eb_c00003{bottom:378.601500px;}
.y834_c00003{bottom:379.138500px;}
.y833_c00003{bottom:379.318500px;}
.y4a9_c00003{bottom:379.320000px;}
.y98d_c00003{bottom:379.498650px;}
.y11b3_c00003{bottom:379.545600px;}
.y4f4_c00003{bottom:379.680000px;}
.y3e2_c00003{bottom:379.860000px;}
.ybc1_c00003{bottom:380.220000px;}
.y26d_c00003{bottom:380.458500px;}
.yd21_c00003{bottom:380.595000px;}
.y1e6_c00003{bottom:381.001500px;}
.ye95_c00003{bottom:381.001650px;}
.yc6b_c00003{bottom:381.003000px;}
.y32d_c00003{bottom:381.178500px;}
.y1273_c00003{bottom:381.316500px;}
.y866_c00003{bottom:381.481500px;}
.y89d_c00003{bottom:381.658500px;}
.yaf4_c00003{bottom:381.660150px;}
.y65d_c00003{bottom:381.661500px;}
.y76_c00003{bottom:381.736050px;}
.y65c_c00003{bottom:381.841500px;}
.y2b5_c00003{bottom:381.898500px;}
.y439_c00003{bottom:382.020000px;}
.ydf8_c00003{bottom:382.081500px;}
.y25_c00003{bottom:382.261500px;}
.y43d_c00003{bottom:382.560000px;}
.y167_c00003{bottom:383.158500px;}
.y26e_c00003{bottom:383.161500px;}
.y10ea_c00003{bottom:383.370750px;}
.y11b8_c00003{bottom:383.372250px;}
.y10f2_c00003{bottom:383.372400px;}
.y11c0_c00003{bottom:383.374200px;}
.y792_c00003{bottom:383.460000px;}
.y565_c00003{bottom:383.461500px;}
.ydd1_c00003{bottom:383.523000px;}
.y564_c00003{bottom:383.641500px;}
.y32e_c00003{bottom:383.881500px;}
.y794_c00003{bottom:384.000000px;}
.y8a7_c00003{bottom:384.178500px;}
.y482_c00003{bottom:384.181500px;}
.ya39_c00003{bottom:384.358800px;}
.y480_c00003{bottom:384.361500px;}
.y2b6_c00003{bottom:384.601500px;}
.y8a8_c00003{bottom:384.718500px;}
.ye24_c00003{bottom:384.783000px;}
.y129b_c00003{bottom:385.095000px;}
.yccc_c00003{bottom:385.635000px;}
.y1162_c00003{bottom:386.071200px;}
.yc81_c00003{bottom:386.403000px;}
.y9c9_c00003{bottom:386.518950px;}
.y481_c00003{bottom:386.520000px;}
.yb4c_c00003{bottom:386.521500px;}
.yb85_c00003{bottom:386.701500px;}
.yd76_c00003{bottom:386.763000px;}
.yb22_c00003{bottom:387.058500px;}
.y1114_c00003{bottom:387.252900px;}
.yba0_c00003{bottom:387.421500px;}
.yf7b_c00003{bottom:387.465750px;}
.yf85_c00003{bottom:387.465900px;}
.y954_c00003{bottom:387.598200px;}
.y8f6_c00003{bottom:387.599400px;}
.ya76_c00003{bottom:388.678500px;}
.ye1_c00003{bottom:388.743000px;}
.yc23_c00003{bottom:388.744800px;}
.ybfe_c00003{bottom:389.041500px;}
.y7c1_c00003{bottom:389.221500px;}
.ye3c_c00003{bottom:389.282835px;}
.y5e9_c00003{bottom:389.401500px;}
.y5e8_c00003{bottom:389.581500px;}
.y73a_c00003{bottom:389.761500px;}
.y124_c00003{bottom:389.818500px;}
.y739_c00003{bottom:389.941500px;}
.yb4b_c00003{bottom:390.120000px;}
.yecc_c00003{bottom:390.362850px;}
.yec8_c00003{bottom:390.364500px;}
.y10bd_c00003{bottom:390.597600px;}
.y10a6_c00003{bottom:390.598500px;}
.y108c_c00003{bottom:390.599550px;}
.y105b_c00003{bottom:390.600600px;}
.y10d0_c00003{bottom:391.348500px;}
.ya07_c00003{bottom:391.380000px;}
.yf22_c00003{bottom:391.444500px;}
.y8c0_c00003{bottom:391.918650px;}
.y8bd_c00003{bottom:391.918884px;}
.y77c_c00003{bottom:391.919799px;}
.y77f_c00003{bottom:391.920150px;}
.yb9_c00003{bottom:391.981500px;}
.y885_c00003{bottom:392.098650px;}
.yede_c00003{bottom:392.344500px;}
.y1e3_c00003{bottom:392.518500px;}
.y6de_c00003{bottom:392.641500px;}
.y6dd_c00003{bottom:392.821500px;}
.y95_c00003{bottom:393.061500px;}
.y89b_c00003{bottom:393.178500px;}
.y4f3_c00003{bottom:393.181500px;}
.y3e0_c00003{bottom:393.361500px;}
.y100f_c00003{bottom:393.376650px;}
.y1025_c00003{bottom:393.378150px;}
.y3de_c00003{bottom:393.541500px;}
.y1105_c00003{bottom:393.630300px;}
.y89e_c00003{bottom:393.718500px;}
.y832_c00003{bottom:393.901500px;}
.yac3_c00003{bottom:394.078200px;}
.y831_c00003{bottom:394.081500px;}
.y103c_c00003{bottom:394.124250px;}
.yc32_c00003{bottom:394.323000px;}
.y937_c00003{bottom:394.618500px;}
.y26b_c00003{bottom:394.678500px;}
.y11c7_c00003{bottom:394.815150px;}
.y111c_c00003{bottom:394.815300px;}
.y11d3_c00003{bottom:394.815450px;}
.y1128_c00003{bottom:394.816650px;}
.y1134_c00003{bottom:394.816950px;}
.y11db_c00003{bottom:394.817550px;}
.y11e5_c00003{bottom:394.818150px;}
.y1140_c00003{bottom:394.818450px;}
.y114c_c00003{bottom:394.818750px;}
.y1e4_c00003{bottom:395.221500px;}
.y32b_c00003{bottom:395.398500px;}
.y4f2_c00003{bottom:395.520000px;}
.yffe_c00003{bottom:395.533950px;}
.y98b_c00003{bottom:395.698500px;}
.y3df_c00003{bottom:395.700000px;}
.y1002_c00003{bottom:395.820000px;}
.y2b3_c00003{bottom:396.118500px;}
.ye54_c00003{bottom:396.123000px;}
.y528_c00003{bottom:396.600000px;}
.yb49_c00003{bottom:396.601500px;}
.y98c_c00003{bottom:396.778500px;}
.y98a_c00003{bottom:396.780300px;}
.y52c_c00003{bottom:397.140000px;}
.yfde_c00003{bottom:397.185900px;}
.y166_c00003{bottom:397.378500px;}
.y26c_c00003{bottom:397.381500px;}
.yf93_c00003{bottom:397.439550px;}
.y8be_c00003{bottom:398.038500px;}
.y77d_c00003{bottom:398.040000px;}
.y65b_c00003{bottom:398.041500px;}
.y32c_c00003{bottom:398.101500px;}
.y65a_c00003{bottom:398.221500px;}
.y2b4_c00003{bottom:398.821500px;}
.yaf3_c00003{bottom:398.940000px;}
.yf05_c00003{bottom:399.003000px;}
.y7fa_c00003{bottom:399.660000px;}
.y803_c00003{bottom:399.838500px;}
.y79e_c00003{bottom:399.840000px;}
.y563_c00003{bottom:399.841500px;}
.ye94_c00003{bottom:399.903450px;}
.yeca_c00003{bottom:399.904200px;}
.y12ce_c00003{bottom:400.018500px;}
.y47f_c00003{bottom:400.021500px;}
.y7fc_c00003{bottom:400.200000px;}
.y47d_c00003{bottom:400.201500px;}
.y75_c00003{bottom:400.275750px;}
.y804_c00003{bottom:400.378500px;}
.y7a0_c00003{bottom:400.380000px;}
.y8c7_c00003{bottom:400.558500px;}
.y678_c00003{bottom:400.560150px;}
.y675_c00003{bottom:400.560384px;}
.ye57_c00003{bottom:400.983300px;}
.y8c9_c00003{bottom:401.098500px;}
.ye23_c00003{bottom:402.243000px;}
.y47e_c00003{bottom:402.360000px;}
.y57e_c00003{bottom:402.360150px;}
.ya38_c00003{bottom:402.718500px;}
.ydf6_c00003{bottom:402.961500px;}
.y12cd_c00003{bottom:403.258050px;}
.y12cf_c00003{bottom:403.258500px;}
.ye3b_c00003{bottom:403.503000px;}
.y9c8_c00003{bottom:403.798800px;}
.y123_c00003{bottom:404.038500px;}
.y24_c00003{bottom:404.043000px;}
.y1247_c00003{bottom:404.175000px;}
.ydcf_c00003{bottom:404.403000px;}
.yf9e_c00003{bottom:404.533650px;}
.yd75_c00003{bottom:404.581500px;}
.y1161_c00003{bottom:405.029850px;}
.yb21_c00003{bottom:405.418800px;}
.y791_c00003{bottom:405.421500px;}
.y118b_c00003{bottom:405.511500px;}
.y70e_c00003{bottom:405.600000px;}
.y790_c00003{bottom:405.601500px;}
.ycf9_c00003{bottom:405.616500px;}
.y5e7_c00003{bottom:405.781500px;}
.y953_c00003{bottom:405.958500px;}
.y8f5_c00003{bottom:405.959100px;}
.y5e6_c00003{bottom:405.961500px;}
.yfaa_c00003{bottom:406.108800px;}
.yfa3_c00003{bottom:406.109250px;}
.yfb1_c00003{bottom:406.109850px;}
.yfbb_c00003{bottom:406.110900px;}
.yfc5_c00003{bottom:406.111950px;}
.yfcf_c00003{bottom:406.113000px;}
.y70f_c00003{bottom:406.140000px;}
.y738_c00003{bottom:406.141500px;}
.y737_c00003{bottom:406.321500px;}
.yda6_c00003{bottom:406.564500px;}
.y676_c00003{bottom:406.680000px;}
.yb84_c00003{bottom:406.681500px;}
.y1e1_c00003{bottom:406.738500px;}
.ya75_c00003{bottom:407.578500px;}
.ybbf_c00003{bottom:407.581500px;}
.yd51_c00003{bottom:407.823000px;}
.y7cc_c00003{bottom:408.119250px;}
.y7ce_c00003{bottom:408.119700px;}
.y721_c00003{bottom:408.298299px;}
.y724_c00003{bottom:408.298650px;}
.y605_c00003{bottom:408.300150px;}
.y602_c00003{bottom:408.300384px;}
.yb9d_c00003{bottom:408.301500px;}
.y1272_c00003{bottom:408.316500px;}
.y884_c00003{bottom:408.478500px;}
.y8b7_c00003{bottom:408.478650px;}
.y57f_c00003{bottom:408.480000px;}
.y765_c00003{bottom:408.480150px;}
.y269_c00003{bottom:408.898500px;}
.y830_c00003{bottom:409.381500px;}
.y1e2_c00003{bottom:409.441500px;}
.ye96_c00003{bottom:409.441950px;}
.ye91_c00003{bottom:409.443000px;}
.y8bc_c00003{bottom:409.558500px;}
.y77b_c00003{bottom:409.560000px;}
.y82f_c00003{bottom:409.561500px;}
.yccb_c00003{bottom:409.575000px;}
.y329_c00003{bottom:409.618500px;}
.ya06_c00003{bottom:409.739250px;}
.yf74_c00003{bottom:409.752900px;}
.ybfd_c00003{bottom:409.921500px;}
.y8bf_c00003{bottom:410.098500px;}
.y77e_c00003{bottom:410.100000px;}
.ybdb_c00003{bottom:410.101500px;}
.y2b1_c00003{bottom:410.338500px;}
.yf21_c00003{bottom:410.344500px;}
.ye0_c00003{bottom:410.523000px;}
.yac2_c00003{bottom:411.358050px;}
.y165_c00003{bottom:411.598500px;}
.y26a_c00003{bottom:411.601500px;}
.y848_c00003{bottom:411.718800px;}
.y845_c00003{bottom:411.718917px;}
.y4e8_c00003{bottom:411.719850px;}
.y4f1_c00003{bottom:411.720000px;}
.y6db_c00003{bottom:411.900000px;}
.y3d3_c00003{bottom:411.900300px;}
.y3dd_c00003{bottom:411.900450px;}
.y3db_c00003{bottom:411.903975px;}
.y129a_c00003{bottom:412.095000px;}
.yc6a_c00003{bottom:412.144500px;}
.y4e9_c00003{bottom:412.260015px;}
.y4eb_c00003{bottom:412.260465px;}
.y4ed_c00003{bottom:412.260915px;}
.y4ef_c00003{bottom:412.261365px;}
.y32a_c00003{bottom:412.321500px;}
.y5ac_c00003{bottom:412.620000px;}
.y2b2_c00003{bottom:413.041500px;}
.y5b4_c00003{bottom:413.160000px;}
.y3d4_c00003{bottom:413.160600px;}
.y3d6_c00003{bottom:413.161650px;}
.y3d8_c00003{bottom:413.162700px;}
.y3da_c00003{bottom:413.163750px;}
.y936_c00003{bottom:413.518500px;}
.yb8_c00003{bottom:413.761500px;}
.y989_c00003{bottom:414.060150px;}
.y722_c00003{bottom:414.418500px;}
.y603_c00003{bottom:414.420000px;}
.y94_c00003{bottom:414.843000px;}
.ye55_c00003{bottom:415.203450px;}
.y4a8_c00003{bottom:415.681500px;}
.y1113_c00003{bottom:415.693200px;}
.y4a6_c00003{bottom:415.861500px;}
.y7e8_c00003{bottom:416.040000px;}
.yfdd_c00003{bottom:416.085900px;}
.yaf2_c00003{bottom:416.219850px;}
.y6a5_c00003{bottom:416.220000px;}
.ydf7_c00003{bottom:416.463000px;}
.y7ea_c00003{bottom:416.580000px;}
.y6dc_c00003{bottom:416.581500px;}
.y6a7_c00003{bottom:416.760000px;}
.y624_c00003{bottom:416.940000px;}
.y659_c00003{bottom:417.119550px;}
.yc22_c00003{bottom:417.184500px;}
.y626_c00003{bottom:417.480000px;}
.yb48_c00003{bottom:417.481500px;}
.yc80_c00003{bottom:417.543000px;}
.y846_c00003{bottom:417.658500px;}
.ydd0_c00003{bottom:417.903000px;}
.y4a7_c00003{bottom:418.020000px;}
.y674_c00003{bottom:418.200000px;}
.yb9f_c00003{bottom:418.201500px;}
.y122_c00003{bottom:418.258500px;}
.y12ba_c00003{bottom:418.394550px;}
.y475_c00003{bottom:418.559850px;}
.y47c_c00003{bottom:418.560000px;}
.y10c4_c00003{bottom:418.647750px;}
.y10be_c00003{bottom:418.648200px;}
.y10a7_c00003{bottom:418.649100px;}
.y108d_c00003{bottom:418.650150px;}
.y105c_c00003{bottom:418.651200px;}
.y677_c00003{bottom:418.740000px;}
.ye93_c00003{bottom:418.803450px;}
.yec9_c00003{bottom:418.804200px;}
.y74_c00003{bottom:418.815450px;}
.y562_c00003{bottom:418.919550px;}
.y47a_c00003{bottom:419.098230px;}
.y478_c00003{bottom:419.098830px;}
.y476_c00003{bottom:419.099430px;}
.y1010_c00003{bottom:419.372400px;}
.y10d1_c00003{bottom:419.399700px;}
.y438_c00003{bottom:419.641500px;}
.y436_c00003{bottom:419.821500px;}
.y580_c00003{bottom:420.000000px;}
.ybdd_c00003{bottom:420.001500px;}
.y103d_c00003{bottom:420.118800px;}
.y862_c00003{bottom:420.358500px;}
.y57d_c00003{bottom:420.540000px;}
.y865_c00003{bottom:420.898500px;}
.y1df_c00003{bottom:420.958500px;}
.ya37_c00003{bottom:421.078200px;}
.y9c7_c00003{bottom:421.078650px;}
.y7f9_c00003{bottom:421.621500px;}
.yb9e_c00003{bottom:421.800000px;}
.y78f_c00003{bottom:421.801500px;}
.y437_c00003{bottom:421.980000px;}
.y78e_c00003{bottom:421.981500px;}
.y736_c00003{bottom:422.521500px;}
.y735_c00003{bottom:422.701500px;}
.y12ed_c00003{bottom:422.763000px;}
.ydf5_c00003{bottom:422.943000px;}
.y1108_c00003{bottom:423.105900px;}
.y267_c00003{bottom:423.118500px;}
.yb1f_c00003{bottom:423.238500px;}
.yedd_c00003{bottom:423.484500px;}
.ybdc_c00003{bottom:423.600000px;}
.y1e0_c00003{bottom:423.661500px;}
.yb20_c00003{bottom:423.778500px;}
.y883_c00003{bottom:423.781500px;}
.y327_c00003{bottom:423.838500px;}
.y882_c00003{bottom:423.961500px;}
.yda5_c00003{bottom:424.203000px;}
.y8f4_c00003{bottom:424.318800px;}
.y2af_c00003{bottom:424.558500px;}
.y7c0_c00003{bottom:424.681350px;}
.y71a_c00003{bottom:424.858050px;}
.y8b6_c00003{bottom:424.858500px;}
.y764_c00003{bottom:424.860000px;}
.y5e5_c00003{bottom:424.860150px;}
.yd73_c00003{bottom:425.281500px;}
.yd50_c00003{bottom:425.461500px;}
.y7cb_c00003{bottom:425.760000px;}
.yd20_c00003{bottom:425.775000px;}
.y164_c00003{bottom:425.818500px;}
.y268_c00003{bottom:425.821500px;}
.y23_c00003{bottom:425.823000px;}
.y720_c00003{bottom:425.938500px;}
.y601_c00003{bottom:425.940000px;}
.y12cc_c00003{bottom:426.298350px;}
.y723_c00003{bottom:426.478500px;}
.y604_c00003{bottom:426.480000px;}
.y328_c00003{bottom:426.541500px;}
.ye22_c00003{bottom:426.544500px;}
.y7cd_c00003{bottom:426.660000px;}
.y4f0_c00003{bottom:427.021500px;}
.y12e7_c00003{bottom:427.082700px;}
.y2b0_c00003{bottom:427.261500px;}
.y82e_c00003{bottom:427.378650px;}
.y6da_c00003{bottom:427.381500px;}
.y4e7_c00003{bottom:427.560150px;}
.y6d9_c00003{bottom:427.561500px;}
.y3d2_c00003{bottom:427.740000px;}
.y70d_c00003{bottom:427.741500px;}
.y70c_c00003{bottom:427.921500px;}
.ya05_c00003{bottom:428.098500px;}
.y4ea_c00003{bottom:428.100765px;}
.y4ec_c00003{bottom:428.101215px;}
.y4ee_c00003{bottom:428.101665px;}
.yc4c_c00003{bottom:428.163000px;}
.yb9c_c00003{bottom:428.281500px;}
.yfea_c00003{bottom:428.294850px;}
.y844_c00003{bottom:428.458500px;}
.yac1_c00003{bottom:428.638500px;}
.yd72_c00003{bottom:428.884500px;}
.y3d5_c00003{bottom:429.001350px;}
.y3d7_c00003{bottom:429.002400px;}
.y3d9_c00003{bottom:429.003450px;}
.y847_c00003{bottom:429.178500px;}
.yff7_c00003{bottom:429.660000px;}
.y3dc_c00003{bottom:429.720000px;}
.ycf8_c00003{bottom:429.735000px;}
.ybda_c00003{bottom:430.081500px;}
.ybfc_c00003{bottom:430.621500px;}
.yc69_c00003{bottom:431.044500px;}
.y1246_c00003{bottom:431.175000px;}
.ya74_c00003{bottom:431.338500px;}
.y988_c00003{bottom:431.340000px;}
.y527_c00003{bottom:431.341500px;}
.y4a5_c00003{bottom:431.521500px;}
.y4a3_c00003{bottom:431.701500px;}
.y10eb_c00003{bottom:431.850600px;}
.y10f3_c00003{bottom:431.851050px;}
.y11b9_c00003{bottom:431.851500px;}
.y11c1_c00003{bottom:431.853450px;}
.y933_c00003{bottom:431.878500px;}
.ybbd_c00003{bottom:431.880000px;}
.ydf_c00003{bottom:432.303000px;}
.y935_c00003{bottom:432.418500px;}
.y121_c00003{bottom:432.478500px;}
.y1319_c00003{bottom:432.843750px;}
.yaf1_c00003{bottom:432.958500px;}
.yac0_c00003{bottom:433.498500px;}
.y658_c00003{bottom:433.500000px;}
.ycca_c00003{bottom:433.516500px;}
.y526_c00003{bottom:433.680000px;}
.y4a4_c00003{bottom:433.860000px;}
.y47b_c00003{bottom:433.861500px;}
.y474_c00003{bottom:434.400150px;}
.y5ab_c00003{bottom:434.581500px;}
.y5aa_c00003{bottom:434.761500px;}
.y479_c00003{bottom:434.938530px;}
.y477_c00003{bottom:434.939130px;}
.y1dd_c00003{bottom:435.178500px;}
.yd78_c00003{bottom:435.181500px;}
.y561_c00003{bottom:435.300000px;}
.y1271_c00003{bottom:435.316500px;}
.y435_c00003{bottom:435.481500px;}
.yb7_c00003{bottom:435.543000px;}
.y433_c00003{bottom:435.661500px;}
.y1164_c00003{bottom:436.320600px;}
.yc7f_c00003{bottom:436.443000px;}
.yf96_c00003{bottom:436.574250px;}
.y93_c00003{bottom:436.623000px;}
.y934_c00003{bottom:437.278500px;}
.y265_c00003{bottom:437.338500px;}
.y73_c00003{bottom:437.355150px;}
.yb66_c00003{bottom:437.461500px;}
.y9c4_c00003{bottom:437.818500px;}
.y434_c00003{bottom:437.820000px;}
.yb1e_c00003{bottom:437.821500px;}
.y1de_c00003{bottom:437.881500px;}
.ye92_c00003{bottom:437.883300px;}
.y7e7_c00003{bottom:438.001500px;}
.y325_c00003{bottom:438.058500px;}
.y6a4_c00003{bottom:438.181500px;}
.yf73_c00003{bottom:438.193200px;}
.y9c6_c00003{bottom:438.358500px;}
.y6a3_c00003{bottom:438.361500px;}
.y2ad_c00003{bottom:438.778500px;}
.yd74_c00003{bottom:438.783000px;}
.y623_c00003{bottom:438.901500px;}
.y622_c00003{bottom:439.081500px;}
.y1299_c00003{bottom:439.095000px;}
.ya36_c00003{bottom:439.438500px;}
.y266_c00003{bottom:440.041500px;}
.y763_c00003{bottom:440.161500px;}
.y762_c00003{bottom:440.341500px;}
.y326_c00003{bottom:440.761500px;}
.y7bf_c00003{bottom:441.060000px;}
.y861_c00003{bottom:441.061500px;}
.y719_c00003{bottom:441.238500px;}
.y5e4_c00003{bottom:441.240000px;}
.y860_c00003{bottom:441.241500px;}
.y2ae_c00003{bottom:441.481500px;}
.yf20_c00003{bottom:441.484500px;}
.y951_c00003{bottom:441.598500px;}
.ybbe_c00003{bottom:441.780000px;}
.y1107_c00003{bottom:442.080900px;}
.ya04_c00003{bottom:442.141500px;}
.yedc_c00003{bottom:442.384500px;}
.y881_c00003{bottom:442.678500px;}
.y82d_c00003{bottom:442.858500px;}
.y163_c00003{bottom:442.921500px;}
.ye21_c00003{bottom:442.923000px;}
.y9c5_c00003{bottom:443.218500px;}
.ya35_c00003{bottom:443.758500px;}
.ye52_c00003{bottom:443.822550px;}
.ydf4_c00003{bottom:443.823000px;}
.y6d8_c00003{bottom:443.941500px;}
.y6d7_c00003{bottom:444.121500px;}
.y70b_c00003{bottom:444.301500px;}
.yc31_c00003{bottom:444.364500px;}
.y70a_c00003{bottom:444.481500px;}
.y4e6_c00003{bottom:444.840000px;}
.yda4_c00003{bottom:444.903000px;}
.y4e3_c00003{bottom:445.019550px;}
.y4e5_c00003{bottom:445.020000px;}
.y11c8_c00003{bottom:445.065750px;}
.y111d_c00003{bottom:445.066500px;}
.y1129_c00003{bottom:445.067850px;}
.y1135_c00003{bottom:445.068150px;}
.y11dc_c00003{bottom:445.068750px;}
.y11e6_c00003{bottom:445.069350px;}
.y1141_c00003{bottom:445.069650px;}
.y114d_c00003{bottom:445.069950px;}
.yd71_c00003{bottom:445.261500px;}
.y1011_c00003{bottom:445.396800px;}
.y1026_c00003{bottom:445.398300px;}
.yf7c_c00003{bottom:445.500000px;}
.yf86_c00003{bottom:445.500150px;}
.y355_c00003{bottom:446.022000px;}
.y344_c00003{bottom:446.023500px;}
.y103e_c00003{bottom:446.143800px;}
.yd4e_c00003{bottom:446.343000px;}
.yb1c_c00003{bottom:446.455350px;}
.y6f0_c00003{bottom:446.459850px;}
.y3d1_c00003{bottom:446.640000px;}
.y10bf_c00003{bottom:446.682900px;}
.y10a8_c00003{bottom:446.683800px;}
.y108e_c00003{bottom:446.684850px;}
.y1074_c00003{bottom:446.685450px;}
.y105d_c00003{bottom:446.685900px;}
.y3ce_c00003{bottom:446.819550px;}
.y3d0_c00003{bottom:446.820000px;}
.y952_c00003{bottom:446.998500px;}
.y931_c00003{bottom:447.001500px;}
.y525_c00003{bottom:447.181500px;}
.y4a2_c00003{bottom:447.361500px;}
.y10d2_c00003{bottom:447.449700px;}
.y12cb_c00003{bottom:447.538650px;}
.y4a0_c00003{bottom:447.541500px;}
.y22_c00003{bottom:447.603000px;}
.yec6_c00003{bottom:447.604350px;}
.ybbc_c00003{bottom:448.261500px;}
.y12b9_c00003{bottom:448.275000px;}
.yb82_c00003{bottom:448.441500px;}
.yda3_c00003{bottom:448.503000px;}
.y987_c00003{bottom:448.619850px;}
.y657_c00003{bottom:448.801500px;}
.y656_c00003{bottom:448.981500px;}
.yb9b_c00003{bottom:449.161500px;}
.yf04_c00003{bottom:449.224500px;}
.y1db_c00003{bottom:449.398500px;}
.y524_c00003{bottom:449.520000px;}
.y4e4_c00003{bottom:449.521500px;}
.y120_c00003{bottom:449.581500px;}
.ya70_c00003{bottom:449.698500px;}
.y4a1_c00003{bottom:449.700000px;}
.yd1f_c00003{bottom:449.716500px;}
.ya72_c00003{bottom:450.238500px;}
.yabd_c00003{bottom:450.239100px;}
.y560_c00003{bottom:450.601500px;}
.ya01_c00003{bottom:450.776550px;}
.yabe_c00003{bottom:450.778500px;}
.y55f_c00003{bottom:450.781500px;}
.y5a9_c00003{bottom:450.961500px;}
.y5a8_c00003{bottom:451.141500px;}
.ya02_c00003{bottom:451.318500px;}
.y3cf_c00003{bottom:451.321500px;}
.y431_c00003{bottom:451.501500px;}
.y263_c00003{bottom:451.558500px;}
.y473_c00003{bottom:451.680000px;}
.yb1d_c00003{bottom:451.858500px;}
.y472_c00003{bottom:451.860000px;}
.y470_c00003{bottom:451.860150px;}
.y9c2_c00003{bottom:451.861500px;}
.y1dc_c00003{bottom:452.101500px;}
.y323_c00003{bottom:452.278500px;}
.y6f1_c00003{bottom:452.760000px;}
.y1220_c00003{bottom:452.855850px;}
.y2ab_c00003{bottom:452.998500px;}
.ya34_c00003{bottom:453.481500px;}
.y432_c00003{bottom:453.660000px;}
.ycf7_c00003{bottom:453.675000px;}
.yde_c00003{bottom:454.081500px;}
.y264_c00003{bottom:454.261500px;}
.y7e6_c00003{bottom:454.381500px;}
.y6a2_c00003{bottom:454.561500px;}
.y6a1_c00003{bottom:454.741500px;}
.y324_c00003{bottom:454.981500px;}
.ya71_c00003{bottom:455.098500px;}
.yaef_c00003{bottom:455.099100px;}
.y621_c00003{bottom:455.281500px;}
.y1163_c00003{bottom:455.295000px;}
.y620_c00003{bottom:455.461500px;}
.yf95_c00003{bottom:455.474250px;}
.y92e_c00003{bottom:455.638500px;}
.yabf_c00003{bottom:455.641500px;}
.y2ac_c00003{bottom:455.701500px;}
.y11f2_c00003{bottom:455.834550px;}
.y11f8_c00003{bottom:455.835150px;}
.y1206_c00003{bottom:455.835600px;}
.y120d_c00003{bottom:455.836500px;}
.y1214_c00003{bottom:455.838150px;}
.y121b_c00003{bottom:455.839200px;}
.y162_c00003{bottom:455.878500px;}
.ye3a_c00003{bottom:455.882820px;}
.y72_c00003{bottom:455.894850px;}
.y930_c00003{bottom:456.178500px;}
.ya03_c00003{bottom:456.181500px;}
.y471_c00003{bottom:456.361500px;}
.yf9d_c00003{bottom:456.373950px;}
.y5e3_c00003{bottom:456.541500px;}
.y1200_c00003{bottom:456.585300px;}
.y5e2_c00003{bottom:456.721500px;}
.ya73_c00003{bottom:457.258500px;}
.yb6_c00003{bottom:457.323000px;}
.y82c_c00003{bottom:457.441500px;}
.y82b_c00003{bottom:457.621500px;}
.ycc9_c00003{bottom:457.635000px;}
.yfa0_c00003{bottom:457.740000px;}
.y880_c00003{bottom:458.161500px;}
.y1245_c00003{bottom:458.175000px;}
.y87f_c00003{bottom:458.341500px;}
.y92_c00003{bottom:458.403000px;}
.yfe0_c00003{bottom:458.610900px;}
.y8b5_c00003{bottom:459.058500px;}
.y761_c00003{bottom:459.060000px;}
.yb47_c00003{bottom:459.061500px;}
.y8b4_c00003{bottom:459.238500px;}
.y75f_c00003{bottom:459.240000px;}
.yd4f_c00003{bottom:459.844500px;}
.y9bf_c00003{bottom:459.959700px;}
.yf1f_c00003{bottom:460.384500px;}
.y9c0_c00003{bottom:460.498500px;}
.yaf0_c00003{bottom:460.501500px;}
.y709_c00003{bottom:460.861500px;}
.y92f_c00003{bottom:461.038500px;}
.y708_c00003{bottom:461.041500px;}
.yc21_c00003{bottom:461.463000px;}
.ya31_c00003{bottom:461.580450px;}
.yb83_c00003{bottom:461.940000px;}
.ya33_c00003{bottom:462.118500px;}
.yc68_c00003{bottom:462.183000px;}
.y4e2_c00003{bottom:462.300000px;}
.y1270_c00003{bottom:462.316500px;}
.y4e0_c00003{bottom:462.480000px;}
.y11f_c00003{bottom:462.538500px;}
.ye50_c00003{bottom:462.903000px;}
.y523_c00003{bottom:463.021500px;}
.y932_c00003{bottom:463.198500px;}
.y6d6_c00003{bottom:463.200750px;}
.y49f_c00003{bottom:463.201500px;}
.y49d_c00003{bottom:463.381500px;}
.y1d9_c00003{bottom:463.618500px;}
.y760_c00003{bottom:463.741500px;}
.ye20_c00003{bottom:463.803000px;}
.y3cd_c00003{bottom:464.100000px;}
.y3cb_c00003{bottom:464.280000px;}
.ydf3_c00003{bottom:464.703000px;}
.y984_c00003{bottom:464.818500px;}
.y8ef_c00003{bottom:464.820000px;}
.yda2_c00003{bottom:464.881500px;}
.y6f2_c00003{bottom:465.180000px;}
.y8f1_c00003{bottom:465.358500px;}
.y522_c00003{bottom:465.360000px;}
.y9c1_c00003{bottom:465.361500px;}
.y49e_c00003{bottom:465.540000px;}
.y261_c00003{bottom:465.778500px;}
.y986_c00003{bottom:465.898500px;}
.ydce_c00003{bottom:465.961500px;}
.y1298_c00003{bottom:466.095000px;}
.yd70_c00003{bottom:466.143000px;}
.y1da_c00003{bottom:466.321500px;}
.yd4d_c00003{bottom:466.323000px;}
.y321_c00003{bottom:466.498500px;}
.ye90_c00003{bottom:466.503150px;}
.yec5_c00003{bottom:466.504350px;}
.ya32_c00003{bottom:466.978500px;}
.y4e1_c00003{bottom:466.981500px;}
.y430_c00003{bottom:467.161500px;}
.y2a9_c00003{bottom:467.218500px;}
.y42e_c00003{bottom:467.341500px;}
.y5a7_c00003{bottom:467.521500px;}
.yfab_c00003{bottom:467.533800px;}
.y1112_c00003{bottom:467.533950px;}
.yfb2_c00003{bottom:467.534850px;}
.yfbc_c00003{bottom:467.535900px;}
.yfc6_c00003{bottom:467.536950px;}
.yfd0_c00003{bottom:467.538000px;}
.ye53_c00003{bottom:467.582850px;}
.yc7e_c00003{bottom:467.583000px;}
.y655_c00003{bottom:467.700000px;}
.y653_c00003{bottom:467.880000px;}
.yb81_c00003{bottom:468.241500px;}
.y262_c00003{bottom:468.481500px;}
.y3cc_c00003{bottom:468.781500px;}
.y1115_c00003{bottom:469.080000px;}
.y46f_c00003{bottom:469.140000px;}
.ybbb_c00003{bottom:469.141500px;}
.y322_c00003{bottom:469.201500px;}
.y46d_c00003{bottom:469.320000px;}
.y21_c00003{bottom:469.381500px;}
.y42f_c00003{bottom:469.500000px;}
.yb1b_c00003{bottom:469.676700px;}
.y985_c00003{bottom:469.678500px;}
.y55d_c00003{bottom:469.680000px;}
.yb9a_c00003{bottom:469.861500px;}
.y161_c00003{bottom:469.918500px;}
.y2aa_c00003{bottom:469.921500px;}
.ye39_c00003{bottom:470.103000px;}
.y8f0_c00003{bottom:470.218500px;}
.y8f2_c00003{bottom:470.221500px;}
.y7e5_c00003{bottom:470.761500px;}
.y6a0_c00003{bottom:470.941500px;}
.y69f_c00003{bottom:471.121500px;}
.y1012_c00003{bottom:471.392550px;}
.y1027_c00003{bottom:471.394050px;}
.y110a_c00003{bottom:471.570000px;}
.y61f_c00003{bottom:471.661500px;}
.y61e_c00003{bottom:471.841500px;}
.y85f_c00003{bottom:472.021500px;}
.y103f_c00003{bottom:472.138950px;}
.y85e_c00003{bottom:472.201500px;}
.yabc_c00003{bottom:472.378800px;}
.y654_c00003{bottom:472.381500px;}
.yedb_c00003{bottom:473.523000px;}
.yd1e_c00003{bottom:473.655000px;}
.y46e_c00003{bottom:473.821500px;}
.ya00_c00003{bottom:473.996700px;}
.ya6f_c00003{bottom:473.998500px;}
.y55e_c00003{bottom:474.181500px;}
.y71_c00003{bottom:474.434550px;}
.y75e_c00003{bottom:474.541500px;}
.y75d_c00003{bottom:474.721500px;}
.y10a9_c00003{bottom:474.732600px;}
.y108f_c00003{bottom:474.733650px;}
.y1075_c00003{bottom:474.734250px;}
.y105e_c00003{bottom:474.734700px;}
.y12b8_c00003{bottom:474.916500px;}
.y82a_c00003{bottom:475.258500px;}
.y7be_c00003{bottom:475.260000px;}
.y718_c00003{bottom:475.438500px;}
.y5e1_c00003{bottom:475.440000px;}
.y10d3_c00003{bottom:475.484400px;}
.y717_c00003{bottom:475.618500px;}
.y5df_c00003{bottom:475.620000px;}
.ydd_c00003{bottom:475.861500px;}
.yec2_c00003{bottom:476.044500px;}
.yec7_c00003{bottom:476.045100px;}
.y11e_c00003{bottom:476.578500px;}
.yaee_c00003{bottom:477.239400px;}
.y4df_c00003{bottom:477.241500px;}
.y4dd_c00003{bottom:477.421500px;}
.y347_c00003{bottom:477.469500px;}
.yfdf_c00003{bottom:477.510900px;}
.y707_c00003{bottom:477.601500px;}
.ycf6_c00003{bottom:477.616500px;}
.y1d7_c00003{bottom:477.838500px;}
.yc4b_c00003{bottom:478.204500px;}
.y521_c00003{bottom:478.861500px;}
.y3ca_c00003{bottom:479.041500px;}
.yb5_c00003{bottom:479.103000px;}
.y3c8_c00003{bottom:479.221500px;}
.y358_c00003{bottom:479.265000px;}
.y4de_c00003{bottom:479.580000px;}
.y6d5_c00003{bottom:479.760000px;}
.y829_c00003{bottom:479.761500px;}
.y92d_c00003{bottom:479.938500px;}
.yb46_c00003{bottom:479.941500px;}
.y25f_c00003{bottom:479.998500px;}
.y5e0_c00003{bottom:480.121500px;}
.y91_c00003{bottom:480.181500px;}
.y10ec_c00003{bottom:480.315900px;}
.y10f4_c00003{bottom:480.316350px;}
.y11ba_c00003{bottom:480.317250px;}
.y11c2_c00003{bottom:480.318750px;}
.y1d8_c00003{bottom:480.541500px;}
.y31f_c00003{bottom:480.718500px;}
.yc67_c00003{bottom:481.083000px;}
.y520_c00003{bottom:481.200000px;}
.y3c9_c00003{bottom:481.380000px;}
.y2a7_c00003{bottom:481.438500px;}
.ycc8_c00003{bottom:481.575000px;}
.ye51_c00003{bottom:481.803000px;}
.y9be_c00003{bottom:482.099400px;}
.y260_c00003{bottom:482.701500px;}
.y42d_c00003{bottom:483.001500px;}
.y42b_c00003{bottom:483.181500px;}
.y652_c00003{bottom:483.361500px;}
.y320_c00003{bottom:483.421500px;}
.y5a6_c00003{bottom:483.721500px;}
.y5a5_c00003{bottom:483.901500px;}
.y46c_c00003{bottom:484.081500px;}
.y160_c00003{bottom:484.138500px;}
.y2a8_c00003{bottom:484.141500px;}
.y46a_c00003{bottom:484.261500px;}
.ye1f_c00003{bottom:484.681500px;}
.y55c_c00003{bottom:484.981500px;}
.y55b_c00003{bottom:485.161500px;}
.y1244_c00003{bottom:485.175000px;}
.y42c_c00003{bottom:485.340000px;}
.ya30_c00003{bottom:485.340750px;}
.ydf2_c00003{bottom:485.403000px;}
.ye8e_c00003{bottom:485.583000px;}
.yec4_c00003{bottom:485.584200px;}
.yda1_c00003{bottom:485.761500px;}
.y980_c00003{bottom:486.419100px;}
.y46b_c00003{bottom:486.420000px;}
.yc7d_c00003{bottom:486.483000px;}
.y1166_c00003{bottom:486.570000px;}
.ydcd_c00003{bottom:486.843000px;}
.y982_c00003{bottom:486.958500px;}
.yd6f_c00003{bottom:487.023000px;}
.y7e4_c00003{bottom:487.141500px;}
.yd4c_c00003{bottom:487.203000px;}
.y69e_c00003{bottom:487.321500px;}
.y69d_c00003{bottom:487.501500px;}
.y85d_c00003{bottom:487.681500px;}
.yb1a_c00003{bottom:488.037000px;}
.y61d_c00003{bottom:488.041500px;}
.y61c_c00003{bottom:488.221500px;}
.y8ee_c00003{bottom:488.579700px;}
.yb80_c00003{bottom:489.121500px;}
.y126f_c00003{bottom:489.316500px;}
.yabb_c00003{bottom:489.658650px;}
.yf03_c00003{bottom:489.722550px;}
.y828_c00003{bottom:490.021500px;}
.yf72_c00003{bottom:490.033950px;}
.y827_c00003{bottom:490.201500px;}
.y10e3_c00003{bottom:490.320000px;}
.y1109_c00003{bottom:490.529700px;}
.y7bd_c00003{bottom:490.741500px;}
.y11d_c00003{bottom:490.798500px;}
.y5de_c00003{bottom:490.921500px;}
.y5dd_c00003{bottom:491.101500px;}
.y20_c00003{bottom:491.161500px;}
.y981_c00003{bottom:491.278500px;}
.y983_c00003{bottom:491.281500px;}
.y130d_c00003{bottom:491.343510px;}
.yf1e_c00003{bottom:491.523150px;}
.yf75_c00003{bottom:491.580000px;}
.y1d5_c00003{bottom:492.058500px;}
.y9ff_c00003{bottom:492.357000px;}
.yeda_c00003{bottom:492.423000px;}
.ybd9_c00003{bottom:492.541500px;}
.ya6e_c00003{bottom:492.898500px;}
.y1297_c00003{bottom:492.916500px;}
.y70_c00003{bottom:492.974250px;}
.y4dc_c00003{bottom:493.081500px;}
.y4da_c00003{bottom:493.261500px;}
.y706_c00003{bottom:493.981500px;}
.y705_c00003{bottom:494.161500px;}
.y25d_c00003{bottom:494.218500px;}
.yaed_c00003{bottom:494.519250px;}
.yc30_c00003{bottom:494.583000px;}
.y51f_c00003{bottom:494.701500px;}
.y1d6_c00003{bottom:494.761500px;}
.y3c7_c00003{bottom:494.881500px;}
.y31d_c00003{bottom:494.938500px;}
.y3c5_c00003{bottom:495.061500px;}
.y6d4_c00003{bottom:495.241500px;}
.y11c9_c00003{bottom:495.331050px;}
.y111e_c00003{bottom:495.331800px;}
.y112a_c00003{bottom:495.332550px;}
.y1136_c00003{bottom:495.332850px;}
.y11dd_c00003{bottom:495.334050px;}
.y1142_c00003{bottom:495.334350px;}
.y114e_c00003{bottom:495.334650px;}
.y4db_c00003{bottom:495.420000px;}
.y6d3_c00003{bottom:495.421500px;}
.y2a5_c00003{bottom:495.658500px;}
.y2be_c00003{bottom:495.838500px;}
.y11e8_c00003{bottom:496.080300px;}
.y25e_c00003{bottom:496.921500px;}
.y12e6_c00003{bottom:496.923000px;}
.y51e_c00003{bottom:497.040000px;}
.y3c6_c00003{bottom:497.220000px;}
.y1013_c00003{bottom:497.416950px;}
.y1028_c00003{bottom:497.418450px;}
.y31e_c00003{bottom:497.641500px;}
.ydc_c00003{bottom:497.643000px;}
.yd1d_c00003{bottom:497.775000px;}
.y2bf_c00003{bottom:498.001500px;}
.y1040_c00003{bottom:498.163950px;}
.y15f_c00003{bottom:498.358500px;}
.y2a6_c00003{bottom:498.361500px;}
.y92c_c00003{bottom:498.838500px;}
.y42a_c00003{bottom:498.841500px;}
.y428_c00003{bottom:499.021500px;}
.y9bd_c00003{bottom:499.379250px;}
.y651_c00003{bottom:499.561500px;}
.y650_c00003{bottom:499.741500px;}
.y469_c00003{bottom:499.921500px;}
.y467_c00003{bottom:500.101500px;}
.y5a4_c00003{bottom:500.281500px;}
.yb45_c00003{bottom:500.641500px;}
.yb4_c00003{bottom:500.881500px;}
.y429_c00003{bottom:501.180000px;}
.y55a_c00003{bottom:501.361500px;}
.y559_c00003{bottom:501.541500px;}
.ycf5_c00003{bottom:501.735000px;}
.y12b7_c00003{bottom:501.916500px;}
.y90_c00003{bottom:501.961500px;}
.y468_c00003{bottom:502.260000px;}
.y10c0_c00003{bottom:502.767600px;}
.y10aa_c00003{bottom:502.767900px;}
.y1090_c00003{bottom:502.768350px;}
.y1076_c00003{bottom:502.769550px;}
.y105f_c00003{bottom:502.770000px;}
.y85c_c00003{bottom:502.981500px;}
.y85b_c00003{bottom:503.161500px;}
.y7e3_c00003{bottom:503.521500px;}
.y10d4_c00003{bottom:503.533200px;}
.yf7d_c00003{bottom:503.565750px;}
.yf87_c00003{bottom:503.565900px;}
.ya2f_c00003{bottom:503.700450px;}
.y69c_c00003{bottom:503.701500px;}
.y69b_c00003{bottom:503.881500px;}
.yf97_c00003{bottom:504.330300px;}
.y61b_c00003{bottom:504.421500px;}
.ye8f_c00003{bottom:504.483000px;}
.yec3_c00003{bottom:504.484200px;}
.y61a_c00003{bottom:504.601500px;}
.y11c_c00003{bottom:505.018500px;}
.ye1e_c00003{bottom:505.381500px;}
.y130c_c00003{bottom:505.383750px;}
.y826_c00003{bottom:505.501500px;}
.ycc7_c00003{bottom:505.516500px;}
.y1165_c00003{bottom:505.546200px;}
.y825_c00003{bottom:505.681500px;}
.y1d3_c00003{bottom:506.278500px;}
.ydf1_c00003{bottom:506.281500px;}
.yb19_c00003{bottom:506.397300px;}
.yda0_c00003{bottom:506.643000px;}
.yaba_c00003{bottom:506.938500px;}
.y8ed_c00003{bottom:506.939400px;}
.y733_c00003{bottom:507.118500px;}
.y7bc_c00003{bottom:507.121500px;}
.y4d_c00003{bottom:507.175800px;}
.y5dc_c00003{bottom:507.301500px;}
.y5db_c00003{bottom:507.481500px;}
.ydcc_c00003{bottom:507.543000px;}
.yd6e_c00003{bottom:507.723000px;}
.yd4b_c00003{bottom:507.903000px;}
.y25b_c00003{bottom:508.438500px;}
.y97f_c00003{bottom:508.559400px;}
.yf02_c00003{bottom:508.803000px;}
.y4d9_c00003{bottom:508.921500px;}
.y1d4_c00003{bottom:508.981500px;}
.y4d7_c00003{bottom:509.101500px;}
.y31b_c00003{bottom:509.158500px;}
.y2a3_c00003{bottom:509.878500px;}
.yb7f_c00003{bottom:510.001500px;}
.y51d_c00003{bottom:510.541500px;}
.yf1d_c00003{bottom:510.603000px;}
.y9fe_c00003{bottom:510.717300px;}
.y3c4_c00003{bottom:510.721500px;}
.y3c2_c00003{bottom:510.901500px;}
.y25c_c00003{bottom:511.141500px;}
.y4d8_c00003{bottom:511.260000px;}
.yb99_c00003{bottom:511.441500px;}
.yc20_c00003{bottom:511.503000px;}
.y6f_c00003{bottom:511.513950px;}
.y734_c00003{bottom:511.621500px;}
.ya6d_c00003{bottom:511.798500px;}
.yaec_c00003{bottom:511.799100px;}
.y31c_c00003{bottom:511.861500px;}
.y1243_c00003{bottom:512.175000px;}
.yc66_c00003{bottom:512.223150px;}
.y15e_c00003{bottom:512.578500px;}
.y2a4_c00003{bottom:512.581500px;}
.y51c_c00003{bottom:512.880000px;}
.ye4f_c00003{bottom:512.942535px;}
.y1f_c00003{bottom:512.943000px;}
.y3c3_c00003{bottom:513.060000px;}
.y348_c00003{bottom:513.410250px;}
.ybd8_c00003{bottom:513.421500px;}
.ybfb_c00003{bottom:513.961500px;}
.y6d2_c00003{bottom:514.320000px;}
.y6d0_c00003{bottom:514.500000px;}
.y427_c00003{bottom:514.681500px;}
.y425_c00003{bottom:514.861500px;}
.y359_c00003{bottom:515.206500px;}
.y466_c00003{bottom:515.761500px;}
.y464_c00003{bottom:515.941500px;}
.y64f_c00003{bottom:516.121500px;}
.y126e_c00003{bottom:516.316500px;}
.y5a3_c00003{bottom:516.481500px;}
.y12f8_c00003{bottom:516.542550px;}
.y9bc_c00003{bottom:516.659100px;}
.y5a2_c00003{bottom:516.661500px;}
.y426_c00003{bottom:517.020000px;}
.y92b_c00003{bottom:517.738500px;}
.y558_c00003{bottom:517.741500px;}
.y557_c00003{bottom:517.921500px;}
.y465_c00003{bottom:518.100000px;}
.y85a_c00003{bottom:518.461500px;}
.y859_c00003{bottom:518.641500px;}
.y6d1_c00003{bottom:519.181500px;}
.y11b_c00003{bottom:519.238500px;}
.ydb_c00003{bottom:519.423000px;}
.y7e2_c00003{bottom:519.901500px;}
.y1296_c00003{bottom:519.916500px;}
.y110c_c00003{bottom:520.049250px;}
.y69a_c00003{bottom:520.081500px;}
.y699_c00003{bottom:520.261500px;}
.y1d1_c00003{bottom:520.498500px;}
.y619_c00003{bottom:520.801500px;}
.y618_c00003{bottom:520.981500px;}
.y824_c00003{bottom:521.161500px;}
.ye4e_c00003{bottom:521.223000px;}
.yb44_c00003{bottom:521.521500px;}
.yd1b_c00003{bottom:521.716500px;}
.ya2e_c00003{bottom:522.060150px;}
.y732_c00003{bottom:522.421500px;}
.ye38_c00003{bottom:522.482700px;}
.y731_c00003{bottom:522.601500px;}
.y259_c00003{bottom:522.658500px;}
.yb3_c00003{bottom:522.661500px;}
.y78d_c00003{bottom:522.780000px;}
.y1d2_c00003{bottom:523.201500px;}
.y319_c00003{bottom:523.378500px;}
.y1014_c00003{bottom:523.412700px;}
.y8a5_c00003{bottom:523.498500px;}
.y7bb_c00003{bottom:523.501500px;}
.yed9_c00003{bottom:523.563150px;}
.y5da_c00003{bottom:523.681500px;}
.y8f_c00003{bottom:523.743000px;}
.y5d9_c00003{bottom:523.861500px;}
.y2a1_c00003{bottom:524.098500px;}
.y1041_c00003{bottom:524.159100px;}
.yab9_c00003{bottom:524.218350px;}
.yb18_c00003{bottom:524.757600px;}
.y8ec_c00003{bottom:525.299100px;}
.y25a_c00003{bottom:525.361500px;}
.ycf4_c00003{bottom:525.675000px;}
.y4c_c00003{bottom:525.716100px;}
.y97e_c00003{bottom:525.839250px;}
.yc7b_c00003{bottom:525.903000px;}
.y31a_c00003{bottom:526.081500px;}
.y87e_c00003{bottom:526.198500px;}
.ye1d_c00003{bottom:526.261500px;}
.y87c_c00003{bottom:526.378500px;}
.y51b_c00003{bottom:526.381500px;}
.y519_c00003{bottom:526.561500px;}
.y2a2_c00003{bottom:526.801500px;}
.ydf0_c00003{bottom:526.981500px;}
.y704_c00003{bottom:527.101500px;}
.y4d6_c00003{bottom:527.280000px;}
.y703_c00003{bottom:527.281500px;}
.yd9f_c00003{bottom:527.343000px;}
.y4d4_c00003{bottom:527.460000px;}
.y8a6_c00003{bottom:528.001500px;}
.yc4a_c00003{bottom:528.243000px;}
.ydcb_c00003{bottom:528.423000px;}
.yd6d_c00003{bottom:528.603000px;}
.y51a_c00003{bottom:528.720000px;}
.y10ed_c00003{bottom:528.766500px;}
.y10f5_c00003{bottom:528.766950px;}
.y11c3_c00003{bottom:528.769350px;}
.yd4a_c00003{bottom:528.781500px;}
.y12b6_c00003{bottom:528.916500px;}
.yfb3_c00003{bottom:528.990900px;}
.yfbd_c00003{bottom:528.991950px;}
.yfc7_c00003{bottom:528.993000px;}
.yfd1_c00003{bottom:528.994050px;}
.y9fd_c00003{bottom:529.077600px;}
.yaeb_c00003{bottom:529.078950px;}
.y3c1_c00003{bottom:529.080000px;}
.y3bf_c00003{bottom:529.260000px;}
.ycc6_c00003{bottom:529.635000px;}
.y15d_c00003{bottom:529.681500px;}
.yfe1_c00003{bottom:529.740150px;}
.y6cf_c00003{bottom:529.981500px;}
.y6e_c00003{bottom:530.053650px;}
.y6ce_c00003{bottom:530.161500px;}
.ya6c_c00003{bottom:530.698500px;}
.y10ab_c00003{bottom:530.818500px;}
.y1091_c00003{bottom:530.818950px;}
.y1077_c00003{bottom:530.819550px;}
.y1060_c00003{bottom:530.820600px;}
.y87d_c00003{bottom:530.881500px;}
.yc65_c00003{bottom:531.303000px;}
.y10d5_c00003{bottom:531.568500px;}
.ybba_c00003{bottom:531.601500px;}
.y12e5_c00003{bottom:531.842700px;}
.y4d5_c00003{bottom:531.961500px;}
.y64e_c00003{bottom:532.321500px;}
.y64d_c00003{bottom:532.501500px;}
.y5a1_c00003{bottom:532.861500px;}
.y5a0_c00003{bottom:533.041500px;}
.y423_c00003{bottom:533.220000px;}
.ye8c_c00003{bottom:533.282850px;}
.yec1_c00003{bottom:533.283900px;}
.y3c0_c00003{bottom:533.761500px;}
.y9bb_c00003{bottom:533.938950px;}
.y858_c00003{bottom:533.941500px;}
.y463_c00003{bottom:534.120000px;}
.y556_c00003{bottom:534.121500px;}
.y461_c00003{bottom:534.300000px;}
.y555_c00003{bottom:534.301500px;}
.ybfa_c00003{bottom:534.661500px;}
.y1cf_c00003{bottom:534.718500px;}
.y1e_c00003{bottom:534.723000px;}
.y12c9_c00003{bottom:535.738500px;}
.y7e1_c00003{bottom:536.281500px;}
.y11a_c00003{bottom:536.341500px;}
.y12f7_c00003{bottom:536.342550px;}
.y698_c00003{bottom:536.461500px;}
.y92a_c00003{bottom:536.638500px;}
.y697_c00003{bottom:536.641500px;}
.y1168_c00003{bottom:536.835150px;}
.y257_c00003{bottom:536.878500px;}
.y617_c00003{bottom:537.181500px;}
.y616_c00003{bottom:537.361500px;}
.y1d0_c00003{bottom:537.421500px;}
.y317_c00003{bottom:537.598500px;}
.y424_c00003{bottom:537.721500px;}
.y78c_c00003{bottom:538.081500px;}
.y78b_c00003{bottom:538.261500px;}
.y29f_c00003{bottom:538.318500px;}
.y462_c00003{bottom:538.801500px;}
.y12ca_c00003{bottom:538.978500px;}
.y12c8_c00003{bottom:538.979100px;}
.y7f8_c00003{bottom:538.980000px;}
.y730_c00003{bottom:538.981500px;}
.y110b_c00003{bottom:539.024850px;}
.y802_c00003{bottom:539.158500px;}
.y79c_c00003{bottom:539.160000px;}
.y1242_c00003{bottom:539.175000px;}
.y258_c00003{bottom:539.581500px;}
.y8c5_c00003{bottom:539.878500px;}
.y7ba_c00003{bottom:539.881500px;}
.yf01_c00003{bottom:539.944500px;}
.y5d8_c00003{bottom:540.061500px;}
.yc7a_c00003{bottom:540.123000px;}
.y5d7_c00003{bottom:540.241500px;}
.y318_c00003{bottom:540.301500px;}
.ya2d_c00003{bottom:540.419850px;}
.yf1c_c00003{bottom:540.484500px;}
.y2a0_c00003{bottom:541.021500px;}
.yda_c00003{bottom:541.203000px;}
.yab8_c00003{bottom:541.498200px;}
.yb65_c00003{bottom:541.501500px;}
.y87b_c00003{bottom:541.681500px;}
.y87a_c00003{bottom:541.861500px;}
.y11fb_c00003{bottom:541.979700px;}
.y11f3_c00003{bottom:541.980300px;}
.y1207_c00003{bottom:541.980750px;}
.y120e_c00003{bottom:541.982250px;}
.y1215_c00003{bottom:541.983900px;}
.y121c_c00003{bottom:541.984950px;}
.y1221_c00003{bottom:541.985100px;}
.y4d3_c00003{bottom:542.221500px;}
.y4d1_c00003{bottom:542.401500px;}
.y8b3_c00003{bottom:542.578500px;}
.y75c_c00003{bottom:542.580000px;}
.y15c_c00003{bottom:542.638500px;}
.yed8_c00003{bottom:542.643000px;}
.y1201_c00003{bottom:542.729250px;}
.y8b2_c00003{bottom:542.758500px;}
.y75a_c00003{bottom:542.760000px;}
.yb17_c00003{bottom:543.117900px;}
.y97d_c00003{bottom:543.119100px;}
.y126d_c00003{bottom:543.316500px;}
.y8eb_c00003{bottom:543.658800px;}
.y79d_c00003{bottom:543.661500px;}
.y3be_c00003{bottom:544.021500px;}
.y3bc_c00003{bottom:544.201500px;}
.y4b_c00003{bottom:544.256400px;}
.y8c6_c00003{bottom:544.381500px;}
.yb2_c00003{bottom:544.443000px;}
.y4d2_c00003{bottom:544.560000px;}
.yc2f_c00003{bottom:544.623000px;}
.y343_c00003{bottom:544.857750px;}
.y517_c00003{bottom:544.920000px;}
.y8e_c00003{bottom:545.523000px;}
.y11ca_c00003{bottom:545.580450px;}
.y111f_c00003{bottom:545.581800px;}
.y112b_c00003{bottom:545.582550px;}
.y1137_c00003{bottom:545.582850px;}
.y11de_c00003{bottom:545.584050px;}
.y1143_c00003{bottom:545.584350px;}
.y114f_c00003{bottom:545.584650px;}
.y1154_c00003{bottom:545.584800px;}
.y11e7_c00003{bottom:545.585100px;}
.yd19_c00003{bottom:545.655000px;}
.y11e9_c00003{bottom:546.330300px;}
.yaea_c00003{bottom:546.358800px;}
.y3bd_c00003{bottom:546.360000px;}
.y6cd_c00003{bottom:546.541500px;}
.y352_c00003{bottom:546.652500px;}
.y6cc_c00003{bottom:546.721500px;}
.y1295_c00003{bottom:546.916500px;}
.ye1c_c00003{bottom:547.143000px;}
.y75b_c00003{bottom:547.261500px;}
.y9fc_c00003{bottom:547.437900px;}
.ydef_c00003{bottom:547.861500px;}
.y422_c00003{bottom:547.981500px;}
.y420_c00003{bottom:548.161500px;}
.yd9e_c00003{bottom:548.223000px;}
.y6d_c00003{bottom:548.593350px;}
.y1cd_c00003{bottom:548.938500px;}
.y460_c00003{bottom:549.061500px;}
.ydca_c00003{bottom:549.123000px;}
.y45e_c00003{bottom:549.241500px;}
.y119_c00003{bottom:549.298500px;}
.yd6c_c00003{bottom:549.303000px;}
.y1015_c00003{bottom:549.391950px;}
.y518_c00003{bottom:549.421500px;}
.ya6b_c00003{bottom:549.598500px;}
.ycf3_c00003{bottom:549.616500px;}
.yd49_c00003{bottom:549.661500px;}
.y1042_c00003{bottom:550.153650px;}
.y421_c00003{bottom:550.320000px;}
.ye37_c00003{bottom:550.923000px;}
.y702_c00003{bottom:551.041500px;}
.y255_c00003{bottom:551.098500px;}
.y9ba_c00003{bottom:551.218800px;}
.y64c_c00003{bottom:551.220000px;}
.y45f_c00003{bottom:551.400000px;}
.yb7e_c00003{bottom:551.581500px;}
.y1ce_c00003{bottom:551.641500px;}
.y315_c00003{bottom:551.818500px;}
.y856_c00003{bottom:551.938500px;}
.y59e_c00003{bottom:551.940000px;}
.ye8b_c00003{bottom:552.182850px;}
.yebf_c00003{bottom:552.184500px;}
.ybb9_c00003{bottom:552.301500px;}
.y29d_c00003{bottom:552.538500px;}
.y554_c00003{bottom:553.020000px;}
.y552_c00003{bottom:553.200000px;}
.yb98_c00003{bottom:553.201500px;}
.ycc3_c00003{bottom:553.575000px;}
.y256_c00003{bottom:553.801500px;}
.y823_c00003{bottom:554.278500px;}
.y7f7_c00003{bottom:554.281500px;}
.yc7c_c00003{bottom:554.344500px;}
.y821_c00003{bottom:554.458500px;}
.y78a_c00003{bottom:554.461500px;}
.y316_c00003{bottom:554.521500px;}
.y789_c00003{bottom:554.641500px;}
.ybd7_c00003{bottom:555.001500px;}
.y72f_c00003{bottom:555.181500px;}
.y29e_c00003{bottom:555.241500px;}
.y7e0_c00003{bottom:555.360000px;}
.y72e_c00003{bottom:555.361500px;}
.y929_c00003{bottom:555.538500px;}
.y696_c00003{bottom:555.540000px;}
.ybf9_c00003{bottom:555.541500px;}
.yc1f_c00003{bottom:555.602850px;}
.y1167_c00003{bottom:555.810750px;}
.y64b_c00003{bottom:555.901500px;}
.y614_c00003{bottom:556.260000px;}
.y857_c00003{bottom:556.261500px;}
.y12f6_c00003{bottom:556.323000px;}
.y59f_c00003{bottom:556.441500px;}
.y1d_c00003{bottom:556.503000px;}
.y15b_c00003{bottom:556.678500px;}
.y553_c00003{bottom:557.701500px;}
.y12b5_c00003{bottom:557.716500px;}
.y4d0_c00003{bottom:558.061500px;}
.y4ce_c00003{bottom:558.241500px;}
.yab7_c00003{bottom:558.778050px;}
.ya2c_c00003{bottom:558.779550px;}
.y7b9_c00003{bottom:558.780000px;}
.y822_c00003{bottom:558.781500px;}
.yf00_c00003{bottom:558.844500px;}
.y10ac_c00003{bottom:558.869100px;}
.y1092_c00003{bottom:558.869550px;}
.y1078_c00003{bottom:558.870150px;}
.y1061_c00003{bottom:558.871200px;}
.y716_c00003{bottom:558.958500px;}
.y5d6_c00003{bottom:558.960000px;}
.y715_c00003{bottom:559.138500px;}
.y5d4_c00003{bottom:559.140000px;}
.yf1b_c00003{bottom:559.384500px;}
.y10d6_c00003{bottom:559.618500px;}
.y516_c00003{bottom:559.681500px;}
.y3bb_c00003{bottom:559.861500px;}
.y3b9_c00003{bottom:560.041500px;}
.y97c_c00003{bottom:560.398950px;}
.y4cf_c00003{bottom:560.400000px;}
.y879_c00003{bottom:560.578500px;}
.ye4c_c00003{bottom:560.644500px;}
.y877_c00003{bottom:560.758350px;}
.y615_c00003{bottom:560.761500px;}
.yb16_c00003{bottom:561.478200px;}
.yf7e_c00003{bottom:561.629850px;}
.yf88_c00003{bottom:561.630000px;}
.ye8d_c00003{bottom:561.722550px;}
.ye88_c00003{bottom:561.723000px;}
.y701_c00003{bottom:561.841500px;}
.y8ea_c00003{bottom:562.018500px;}
.y12c7_c00003{bottom:562.018800px;}
.y515_c00003{bottom:562.020000px;}
.y700_c00003{bottom:562.021500px;}
.y3ba_c00003{bottom:562.200000px;}
.yb64_c00003{bottom:562.381500px;}
.yf98_c00003{bottom:562.395000px;}
.yc64_c00003{bottom:562.444500px;}
.y4a_c00003{bottom:562.796700px;}
.yd9_c00003{bottom:562.981500px;}
.y6cb_c00003{bottom:563.101500px;}
.y1cb_c00003{bottom:563.158500px;}
.y6ca_c00003{bottom:563.281500px;}
.y118_c00003{bottom:563.338500px;}
.yae9_c00003{bottom:563.638650px;}
.y5d5_c00003{bottom:563.641500px;}
.y41f_c00003{bottom:563.821500px;}
.y41d_c00003{bottom:564.001500px;}
.y45d_c00003{bottom:564.901500px;}
.y45b_c00003{bottom:565.081500px;}
.y878_c00003{bottom:565.261500px;}
.y253_c00003{bottom:565.318500px;}
.y9fb_c00003{bottom:565.798200px;}
.y1cc_c00003{bottom:565.861500px;}
.y313_c00003{bottom:566.038500px;}
.y41e_c00003{bottom:566.160000px;}
.y1240_c00003{bottom:566.205000px;}
.yb1_c00003{bottom:566.223000px;}
.y855_c00003{bottom:566.521500px;}
.y64a_c00003{bottom:566.701500px;}
.y29b_c00003{bottom:566.758500px;}
.y649_c00003{bottom:566.881500px;}
.y6c_c00003{bottom:567.133050px;}
.y45c_c00003{bottom:567.240000px;}
.y59d_c00003{bottom:567.241500px;}
.y8d_c00003{bottom:567.303000px;}
.y59c_c00003{bottom:567.421500px;}
.ye1b_c00003{bottom:567.843000px;}
.y254_c00003{bottom:568.021500px;}
.ya6a_c00003{bottom:568.498500px;}
.y9b9_c00003{bottom:568.498650px;}
.y551_c00003{bottom:568.501500px;}
.y110e_c00003{bottom:568.514400px;}
.ydee_c00003{bottom:568.561500px;}
.y550_c00003{bottom:568.681500px;}
.y314_c00003{bottom:568.741500px;}
.y820_c00003{bottom:569.041500px;}
.yd9d_c00003{bottom:569.103000px;}
.y81e_c00003{bottom:569.221500px;}
.y29c_c00003{bottom:569.461500px;}
.yd18_c00003{bottom:569.805000px;}
.ydc9_c00003{bottom:570.003000px;}
.yd6b_c00003{bottom:570.181500px;}
.y126c_c00003{bottom:570.345000px;}
.yd48_c00003{bottom:570.361500px;}
.y7df_c00003{bottom:570.661500px;}
.y695_c00003{bottom:570.841500px;}
.y15a_c00003{bottom:570.898500px;}
.y694_c00003{bottom:571.021500px;}
.ye8a_c00003{bottom:571.262700px;}
.yec0_c00003{bottom:571.264350px;}
.y613_c00003{bottom:571.561500px;}
.y612_c00003{bottom:571.741500px;}
.yb7d_c00003{bottom:572.461500px;}
.ybb8_c00003{bottom:573.181500px;}
.y381_c00003{bottom:573.249000px;}
.y36d_c00003{bottom:573.427500px;}
.ycf1_c00003{bottom:573.765000px;}
.yed7_c00003{bottom:573.784500px;}
.y4cd_c00003{bottom:573.901500px;}
.y1294_c00003{bottom:573.945000px;}
.y4cb_c00003{bottom:574.081500px;}
.y72c_c00003{bottom:574.258500px;}
.y7b8_c00003{bottom:574.261500px;}
.y928_c00003{bottom:574.438500px;}
.y5d3_c00003{bottom:574.441500px;}
.y5d2_c00003{bottom:574.621500px;}
.y1016_c00003{bottom:575.432700px;}
.y514_c00003{bottom:575.521500px;}
.y3b8_c00003{bottom:575.701500px;}
.y3b6_c00003{bottom:575.881500px;}
.yab6_c00003{bottom:576.058500px;}
.yab4_c00003{bottom:576.058650px;}
.y12f5_c00003{bottom:576.123000px;}
.y1043_c00003{bottom:576.179250px;}
.y4cc_c00003{bottom:576.240000px;}
.ybf8_c00003{bottom:576.241500px;}
.y342_c00003{bottom:576.305550px;}
.y8b1_c00003{bottom:576.958500px;}
.y759_c00003{bottom:576.960000px;}
.y8b0_c00003{bottom:577.138650px;}
.ya2b_c00003{bottom:577.139250px;}
.y757_c00003{bottom:577.139850px;}
.y10ee_c00003{bottom:577.261050px;}
.y1c9_c00003{bottom:577.378500px;}
.ycc2_c00003{bottom:577.545000px;}
.y117_c00003{bottom:577.558500px;}
.y97b_c00003{bottom:577.678800px;}
.y513_c00003{bottom:577.860000px;}
.y3b7_c00003{bottom:578.040000px;}
.y354_c00003{bottom:578.103000px;}
.y1c_c00003{bottom:578.281500px;}
.y6ff_c00003{bottom:578.401500px;}
.yc49_c00003{bottom:578.463000px;}
.y876_c00003{bottom:578.578500px;}
.y6fe_c00003{bottom:578.581500px;}
.y874_c00003{bottom:578.758500px;}
.y72d_c00003{bottom:578.761500px;}
.y251_c00003{bottom:579.538500px;}
.ye4a_c00003{bottom:579.544500px;}
.y41c_c00003{bottom:579.661500px;}
.yb13_c00003{bottom:579.838200px;}
.yb15_c00003{bottom:579.838500px;}
.ybf6_c00003{bottom:579.840000px;}
.y41a_c00003{bottom:579.841500px;}
.y1ca_c00003{bottom:580.081500px;}
.y311_c00003{bottom:580.258500px;}
.y8e9_c00003{bottom:580.378200px;}
.y45a_c00003{bottom:580.741500px;}
.yae8_c00003{bottom:580.918350px;}
.yab5_c00003{bottom:580.918500px;}
.y458_c00003{bottom:580.921500px;}
.y299_c00003{bottom:580.978500px;}
.y49_c00003{bottom:581.337000px;}
.yc63_c00003{bottom:581.344500px;}
.y758_c00003{bottom:581.641500px;}
.y41b_c00003{bottom:582.000000px;}
.y854_c00003{bottom:582.001500px;}
.y853_c00003{bottom:582.181500px;}
.y252_c00003{bottom:582.241500px;}
.y312_c00003{bottom:582.961500px;}
.y459_c00003{bottom:583.080000px;}
.yb63_c00003{bottom:583.081500px;}
.y12c6_c00003{bottom:583.260150px;}
.y875_c00003{bottom:583.261500px;}
.y59b_c00003{bottom:583.621500px;}
.y29a_c00003{bottom:583.681500px;}
.y59a_c00003{bottom:583.801500px;}
.y9f9_c00003{bottom:584.158500px;}
.yc1e_c00003{bottom:584.223000px;}
.ye4d_c00003{bottom:584.404200px;}
.yb14_c00003{bottom:584.698500px;}
.y12af_c00003{bottom:584.745000px;}
.yd8_c00003{bottom:584.761500px;}
.y159_c00003{bottom:585.118500px;}
.y648_c00003{bottom:585.600000px;}
.y6b_c00003{bottom:585.672750px;}
.y9b8_c00003{bottom:585.778500px;}
.y9b7_c00003{bottom:585.778650px;}
.y646_c00003{bottom:585.779850px;}
.y81d_c00003{bottom:586.860000px;}
.y10ad_c00003{bottom:586.903350px;}
.y1093_c00003{bottom:586.904250px;}
.y1079_c00003{bottom:586.904850px;}
.y1062_c00003{bottom:586.905900px;}
.y81c_c00003{bottom:587.039850px;}
.yb41_c00003{bottom:587.040000px;}
.y7de_c00003{bottom:587.041500px;}
.y11eb_c00003{bottom:587.085750px;}
.y693_c00003{bottom:587.221500px;}
.ya68_c00003{bottom:587.398500px;}
.y54f_c00003{bottom:587.400000px;}
.y692_c00003{bottom:587.401500px;}
.y110d_c00003{bottom:587.490000px;}
.y54d_c00003{bottom:587.579850px;}
.y10d7_c00003{bottom:587.669100px;}
.y611_c00003{bottom:587.941500px;}
.yb0_c00003{bottom:588.003000px;}
.y610_c00003{bottom:588.121500px;}
.ye1a_c00003{bottom:588.723000px;}
.y9fa_c00003{bottom:589.018500px;}
.y8c_c00003{bottom:589.081500px;}
.ye36_c00003{bottom:589.264800px;}
.yded_c00003{bottom:589.443000px;}
.y72b_c00003{bottom:589.561500px;}
.y72a_c00003{bottom:589.741500px;}
.yd9c_c00003{bottom:589.803000px;}
.y787_c00003{bottom:589.920000px;}
.ye89_c00003{bottom:590.162700px;}
.y647_c00003{bottom:590.281500px;}
.yfac_c00003{bottom:590.399100px;}
.yfa4_c00003{bottom:590.399250px;}
.yfb4_c00003{bottom:590.400150px;}
.yfbe_c00003{bottom:590.401200px;}
.yfc8_c00003{bottom:590.402250px;}
.yfd2_c00003{bottom:590.403750px;}
.yf1a_c00003{bottom:590.523150px;}
.y8a4_c00003{bottom:590.638500px;}
.ydc8_c00003{bottom:590.881500px;}
.yd6a_c00003{bottom:591.061500px;}
.yfe2_c00003{bottom:591.149850px;}
.yd47_c00003{bottom:591.243000px;}
.y512_c00003{bottom:591.361500px;}
.y510_c00003{bottom:591.541500px;}
.y1c7_c00003{bottom:591.598500px;}
.y116_c00003{bottom:591.778500px;}
.y54e_c00003{bottom:592.081500px;}
.ya69_c00003{bottom:592.258500px;}
.y4ca_c00003{bottom:592.260000px;}
.y4c8_c00003{bottom:592.440000px;}
.yed6_c00003{bottom:592.684500px;}
.y7b7_c00003{bottom:593.160000px;}
.yb7c_c00003{bottom:593.161500px;}
.y123d_c00003{bottom:593.205000px;}
.y927_c00003{bottom:593.338500px;}
.y925_c00003{bottom:593.338800px;}
.y7b6_c00003{bottom:593.339850px;}
.y5d1_c00003{bottom:593.340000px;}
.y713_c00003{bottom:593.518650px;}
.y5cf_c00003{bottom:593.519850px;}
.y511_c00003{bottom:593.700000px;}
.y374_c00003{bottom:593.733000px;}
.yd17_c00003{bottom:593.745000px;}
.y24f_c00003{bottom:593.758500px;}
.y36e_c00003{bottom:593.914500px;}
.y3b5_c00003{bottom:594.060000px;}
.y873_c00003{bottom:594.061500px;}
.y3b3_c00003{bottom:594.240000px;}
.y872_c00003{bottom:594.241500px;}
.y1c8_c00003{bottom:594.301500px;}
.y788_c00003{bottom:594.421500px;}
.y30f_c00003{bottom:594.478500px;}
.yc2e_c00003{bottom:594.663000px;}
.yb97_c00003{bottom:594.781500px;}
.y97a_c00003{bottom:594.958650px;}
.y756_c00003{bottom:594.960000px;}
.y6fd_c00003{bottom:594.961500px;}
.y8af_c00003{bottom:595.138500px;}
.y754_c00003{bottom:595.140000px;}
.y6fc_c00003{bottom:595.141500px;}
.y297_c00003{bottom:595.198500px;}
.ya2a_c00003{bottom:595.498500px;}
.ya28_c00003{bottom:595.499100px;}
.y11cb_c00003{bottom:595.830450px;}
.y1120_c00003{bottom:595.830600px;}
.y112c_c00003{bottom:595.831950px;}
.y1138_c00003{bottom:595.832250px;}
.y11df_c00003{bottom:595.833450px;}
.y1144_c00003{bottom:595.833750px;}
.ybf7_c00003{bottom:596.221500px;}
.y250_c00003{bottom:596.461500px;}
.ybd6_c00003{bottom:596.581500px;}
.y1169_c00003{bottom:596.594850px;}
.y4c9_c00003{bottom:596.941500px;}
.y310_c00003{bottom:597.181500px;}
.yb42_c00003{bottom:597.480000px;}
.y852_c00003{bottom:597.481500px;}
.y851_c00003{bottom:597.661500px;}
.ycf0_c00003{bottom:597.705000px;}
.y298_c00003{bottom:597.901500px;}
.y5d0_c00003{bottom:598.021500px;}
.yae7_c00003{bottom:598.198200px;}
.y926_c00003{bottom:598.198500px;}
.y418_c00003{bottom:598.200000px;}
.yefe_c00003{bottom:598.263000px;}
.ye4b_c00003{bottom:598.624350px;}
.y8e7_c00003{bottom:598.738500px;}
.y6c9_c00003{bottom:598.740000px;}
.y3b4_c00003{bottom:598.741500px;}
.y6c8_c00003{bottom:598.920000px;}
.y457_c00003{bottom:599.100000px;}
.y455_c00003{bottom:599.280000px;}
.y158_c00003{bottom:599.338500px;}
.y755_c00003{bottom:599.641500px;}
.ya29_c00003{bottom:599.818500px;}
.y48_c00003{bottom:599.877300px;}
.yebe_c00003{bottom:599.883150px;}
.y599_c00003{bottom:600.001500px;}
.y1b_c00003{bottom:600.061500px;}
.y598_c00003{bottom:600.181500px;}
.y126b_c00003{bottom:600.225000px;}
.y1293_c00003{bottom:600.945000px;}
.y1017_c00003{bottom:601.411950px;}
.y1029_c00003{bottom:601.413600px;}
.ycc1_c00003{bottom:601.665000px;}
.y12e4_c00003{bottom:601.682700px;}
.y1044_c00003{bottom:602.174400px;}
.y9f8_c00003{bottom:602.518800px;}
.y419_c00003{bottom:602.701500px;}
.y8e8_c00003{bottom:603.058500px;}
.y7dd_c00003{bottom:603.421500px;}
.y645_c00003{bottom:603.600000px;}
.y691_c00003{bottom:603.601500px;}
.y643_c00003{bottom:603.780000px;}
.y456_c00003{bottom:603.781500px;}
.y81b_c00003{bottom:603.960000px;}
.yb60_c00003{bottom:603.961500px;}
.y819_c00003{bottom:604.140000px;}
.y6a_c00003{bottom:604.212450px;}
.y60f_c00003{bottom:604.321500px;}
.y60e_c00003{bottom:604.501500px;}
.y786_c00003{bottom:605.221500px;}
.y54c_c00003{bottom:605.400000px;}
.y785_c00003{bottom:605.401500px;}
.y54a_c00003{bottom:605.580000px;}
.y13cb_c00003{bottom:605.639760px;}
.y1c5_c00003{bottom:605.818500px;}
.y12c5_c00003{bottom:605.940000px;}
.y729_c00003{bottom:605.941500px;}
.y115_c00003{bottom:605.998500px;}
.y11ea_c00003{bottom:606.060750px;}
.y7f6_c00003{bottom:606.120000px;}
.y728_c00003{bottom:606.121500px;}
.ya67_c00003{bottom:606.298500px;}
.y79a_c00003{bottom:606.300000px;}
.yd7_c00003{bottom:606.543000px;}
.y8c3_c00003{bottom:607.020000px;}
.y4c7_c00003{bottom:607.201500px;}
.y4c5_c00003{bottom:607.381500px;}
.y24d_c00003{bottom:607.978500px;}
.y644_c00003{bottom:608.281500px;}
.y81a_c00003{bottom:608.461500px;}
.y1c6_c00003{bottom:608.521500px;}
.y30d_c00003{bottom:608.698500px;}
.y3b2_c00003{bottom:609.001500px;}
.y3b0_c00003{bottom:609.181500px;}
.y295_c00003{bottom:609.418500px;}
.ye19_c00003{bottom:609.423000px;}
.y4c6_c00003{bottom:609.540000px;}
.yf19_c00003{bottom:609.603000px;}
.yaf_c00003{bottom:609.781500px;}
.y50e_c00003{bottom:609.900000px;}
.y54b_c00003{bottom:610.081500px;}
.ydec_c00003{bottom:610.323000px;}
.y753_c00003{bottom:610.441500px;}
.yab3_c00003{bottom:610.618350px;}
.y752_c00003{bottom:610.621500px;}
.yc79_c00003{bottom:610.679700px;}
.y24e_c00003{bottom:610.681500px;}
.yf9a_c00003{bottom:610.740150px;}
.y79b_c00003{bottom:610.801500px;}
.y8b_c00003{bottom:610.861500px;}
.y7b5_c00003{bottom:611.160000px;}
.y3b1_c00003{bottom:611.340000px;}
.y30e_c00003{bottom:611.401500px;}
.y5cd_c00003{bottom:611.520000px;}
.y8c4_c00003{bottom:611.521500px;}
.ydc7_c00003{bottom:611.581500px;}
.yd69_c00003{bottom:611.761500px;}
.yd46_c00003{bottom:611.943000px;}
.y296_c00003{bottom:612.121500px;}
.y979_c00003{bottom:612.238500px;}
.y977_c00003{bottom:612.238650px;}
.y924_c00003{bottom:612.238800px;}
.yc62_c00003{bottom:612.483000px;}
.y871_c00003{bottom:612.960000px;}
.y417_c00003{bottom:612.961500px;}
.y86f_c00003{bottom:613.140000px;}
.y415_c00003{bottom:613.141500px;}
.ya27_c00003{bottom:613.858800px;}
.y454_c00003{bottom:614.041500px;}
.y6fa_c00003{bottom:614.220000px;}
.y452_c00003{bottom:614.221500px;}
.y50f_c00003{bottom:614.401500px;}
.y6c7_c00003{bottom:614.581500px;}
.ybb7_c00003{bottom:614.761500px;}
.y10ae_c00003{bottom:614.952750px;}
.y1094_c00003{bottom:614.953650px;}
.y107a_c00003{bottom:614.954250px;}
.y1063_c00003{bottom:614.955300px;}
.y416_c00003{bottom:615.300000px;}
.yae6_c00003{bottom:615.478050px;}
.y84f_c00003{bottom:615.480000px;}
.yb96_c00003{bottom:615.481500px;}
.y10d8_c00003{bottom:615.704400px;}
.y978_c00003{bottom:616.018500px;}
.y5ce_c00003{bottom:616.021500px;}
.y453_c00003{bottom:616.380000px;}
.y157_c00003{bottom:616.441500px;}
.yb12_c00003{bottom:616.558800px;}
.y1110_c00003{bottom:617.010000px;}
.y8e6_c00003{bottom:617.098200px;}
.ybf1_c00003{bottom:617.101500px;}
.yb61_c00003{bottom:617.460000px;}
.ybd5_c00003{bottom:617.461500px;}
.y870_c00003{bottom:617.641500px;}
.yd16_c00003{bottom:617.683500px;}
.ye35_c00003{bottom:617.704500px;}
.y13e3_c00003{bottom:617.879760px;}
.y13ca_c00003{bottom:617.880000px;}
.y47_c00003{bottom:618.417600px;}
.yb93_c00003{bottom:618.720000px;}
.y818_c00003{bottom:618.721500px;}
.y6fb_c00003{bottom:618.901500px;}
.ye86_c00003{bottom:618.962850px;}
.yebc_c00003{bottom:618.963000px;}
.y596_c00003{bottom:619.080000px;}
.y642_c00003{bottom:619.081500px;}
.y641_c00003{bottom:619.261500px;}
.yf7f_c00003{bottom:619.665750px;}
.yf89_c00003{bottom:619.665900px;}
.y850_c00003{bottom:619.801500px;}
.y1c3_c00003{bottom:620.038500px;}
.y9b6_c00003{bottom:620.338350px;}
.ybd2_c00003{bottom:620.520000px;}
.ybf0_c00003{bottom:620.700000px;}
.y9f7_c00003{bottom:620.879100px;}
.y549_c00003{bottom:620.881500px;}
.y548_c00003{bottom:621.061500px;}
.y7f5_c00003{bottom:621.421500px;}
.y784_c00003{bottom:621.601500px;}
.ycef_c00003{bottom:621.645000px;}
.y783_c00003{bottom:621.781500px;}
.y1a_c00003{bottom:621.843000px;}
.y24b_c00003{bottom:622.198500px;}
.y8a3_c00003{bottom:622.321500px;}
.yc1d_c00003{bottom:622.382700px;}
.y7dc_c00003{bottom:622.500000px;}
.y8a2_c00003{bottom:622.501500px;}
.y68f_c00003{bottom:622.680000px;}
.y1c4_c00003{bottom:622.741500px;}
.y69_c00003{bottom:622.752150px;}
.y30b_c00003{bottom:622.918500px;}
.y123c_c00003{bottom:623.083500px;}
.y114_c00003{bottom:623.101500px;}
.y60c_c00003{bottom:623.400000px;}
.y597_c00003{bottom:623.581500px;}
.y293_c00003{bottom:623.638500px;}
.yb62_c00003{bottom:623.941500px;}
.y50d_c00003{bottom:624.661500px;}
.y49c_c00003{bottom:624.841500px;}
.y24c_c00003{bottom:624.901500px;}
.y49b_c00003{bottom:625.021500px;}
.ya66_c00003{bottom:625.198500px;}
.y4c4_c00003{bottom:625.560000px;}
.ycc0_c00003{bottom:625.605000px;}
.y30c_c00003{bottom:625.621500px;}
.y10ef_c00003{bottom:625.711050px;}
.y10f6_c00003{bottom:625.711500px;}
.y4c2_c00003{bottom:625.740000px;}
.y294_c00003{bottom:626.341500px;}
.y7b4_c00003{bottom:626.641500px;}
.yefc_c00003{bottom:626.704500px;}
.y5cc_c00003{bottom:626.821500px;}
.y50c_c00003{bottom:627.000000px;}
.y5cb_c00003{bottom:627.001500px;}
.y690_c00003{bottom:627.181500px;}
.y126a_c00003{bottom:627.225000px;}
.yab0_c00003{bottom:627.358650px;}
.y3af_c00003{bottom:627.360000px;}
.y1018_c00003{bottom:627.452700px;}
.y3ad_c00003{bottom:627.540000px;}
.yab2_c00003{bottom:627.900000px;}
.y60d_c00003{bottom:627.901500px;}
.y128e_c00003{bottom:627.945000px;}
.y86d_c00003{bottom:628.081500px;}
.y11f4_c00003{bottom:628.125450px;}
.y11f9_c00003{bottom:628.126050px;}
.y1208_c00003{bottom:628.126500px;}
.y120f_c00003{bottom:628.128600px;}
.y1216_c00003{bottom:628.129650px;}
.y121d_c00003{bottom:628.130100px;}
.y1222_c00003{bottom:628.130850px;}
.y1045_c00003{bottom:628.200000px;}
.yb40_c00003{bottom:628.260000px;}
.yd6_c00003{bottom:628.323000px;}
.yc48_c00003{bottom:628.503000px;}
.y414_c00003{bottom:628.801500px;}
.y1202_c00003{bottom:628.890150px;}
.yb94_c00003{bottom:628.980000px;}
.y413_c00003{bottom:628.981500px;}
.y751_c00003{bottom:629.340000px;}
.y156_c00003{bottom:629.398500px;}
.y976_c00003{bottom:629.518500px;}
.y74f_c00003{bottom:629.520000px;}
.yf99_c00003{bottom:629.640150px;}
.y6f9_c00003{bottom:629.701500px;}
.y6f8_c00003{bottom:629.881500px;}
.y84e_c00003{bottom:630.061500px;}
.y13e2_c00003{bottom:630.120000px;}
.y4c3_c00003{bottom:630.241500px;}
.ye18_c00003{bottom:630.303000px;}
.ybf5_c00003{bottom:630.780000px;}
.ybd3_c00003{bottom:630.960000px;}
.ydeb_c00003{bottom:631.023000px;}
.y923_c00003{bottom:631.138800px;}
.yd9b_c00003{bottom:631.381500px;}
.yc61_c00003{bottom:631.383000px;}
.yae_c00003{bottom:631.561500px;}
.y3ae_c00003{bottom:632.041500px;}
.yed3_c00003{bottom:632.103000px;}
.ya26_c00003{bottom:632.218500px;}
.yae5_c00003{bottom:632.218650px;}
.y451_c00003{bottom:632.400000px;}
.ydc6_c00003{bottom:632.461500px;}
.y44f_c00003{bottom:632.580000px;}
.y8a_c00003{bottom:632.643000px;}
.yab1_c00003{bottom:632.758500px;}
.yd45_c00003{bottom:632.823000px;}
.y6c6_c00003{bottom:633.480000px;}
.y6c4_c00003{bottom:633.660000px;}
.y750_c00003{bottom:634.021500px;}
.y1c1_c00003{bottom:634.258500px;}
.yb10_c00003{bottom:634.378800px;}
.y595_c00003{bottom:634.381500px;}
.y594_c00003{bottom:634.561500px;}
.yb7b_c00003{bottom:634.741500px;}
.yb11_c00003{bottom:634.918500px;}
.y8e5_c00003{bottom:635.459700px;}
.yb95_c00003{bottom:635.461500px;}
.ybb6_c00003{bottom:635.641500px;}
.y110f_c00003{bottom:635.969250px;}
.y113_c00003{bottom:636.058500px;}
.y86b_c00003{bottom:636.360000px;}
.y249_c00003{bottom:636.418500px;}
.y12e3_c00003{bottom:636.424005px;}
.y817_c00003{bottom:636.540000px;}
.y815_c00003{bottom:636.720000px;}
.ye48_c00003{bottom:636.783000px;}
.y46_c00003{bottom:636.957900px;}
.y1c2_c00003{bottom:636.961500px;}
.y9b3_c00003{bottom:637.079850px;}
.y450_c00003{bottom:637.081500px;}
.y309_c00003{bottom:637.138500px;}
.ybd4_c00003{bottom:637.261500px;}
.y116b_c00003{bottom:637.350900px;}
.y9b5_c00003{bottom:637.620000px;}
.y7db_c00003{bottom:637.801500px;}
.y291_c00003{bottom:637.858500px;}
.ye85_c00003{bottom:637.862850px;}
.yebd_c00003{bottom:637.863000px;}
.y640_c00003{bottom:637.980000px;}
.y68e_c00003{bottom:637.981500px;}
.y63e_c00003{bottom:638.160000px;}
.y68d_c00003{bottom:638.161500px;}
.y6c5_c00003{bottom:638.341500px;}
.y9f4_c00003{bottom:638.698200px;}
.ybb3_c00003{bottom:638.700000px;}
.y60b_c00003{bottom:638.701500px;}
.y60a_c00003{bottom:638.881500px;}
.yc78_c00003{bottom:639.120000px;}
.y24a_c00003{bottom:639.121500px;}
.y9f6_c00003{bottom:639.240000px;}
.y547_c00003{bottom:639.780000px;}
.y30a_c00003{bottom:639.841500px;}
.y545_c00003{bottom:639.960000px;}
.y50b_c00003{bottom:640.501500px;}
.y292_c00003{bottom:640.561500px;}
.ybef_c00003{bottom:640.680000px;}
.y50a_c00003{bottom:640.681500px;}
.yf18_c00003{bottom:640.743900px;}
.yeff_c00003{bottom:640.923000px;}
.y8a1_c00003{bottom:641.039700px;}
.y86e_c00003{bottom:641.040000px;}
.y816_c00003{bottom:641.041500px;}
.y68_c00003{bottom:641.291850px;}
.y86c_c00003{bottom:641.401500px;}
.y13c9_c00003{bottom:641.459280px;}
.yd15_c00003{bottom:641.805000px;}
.y3aa_c00003{bottom:642.121500px;}
.y9b4_c00003{bottom:642.480000px;}
.y63f_c00003{bottom:642.661500px;}
.y4c1_c00003{bottom:642.839520px;}
.yfe4_c00003{bottom:642.885150px;}
.y10af_c00003{bottom:642.987450px;}
.y1095_c00003{bottom:642.987900px;}
.y107b_c00003{bottom:642.988950px;}
.y1064_c00003{bottom:642.990000px;}
.y155_c00003{bottom:643.438500px;}
.ya64_c00003{bottom:643.558650px;}
.y19_c00003{bottom:643.623000px;}
.y10d9_c00003{bottom:643.709250px;}
.y9f5_c00003{bottom:644.098500px;}
.y546_c00003{bottom:644.461500px;}
.yaaf_c00003{bottom:644.640000px;}
.yb5e_c00003{bottom:644.821500px;}
.yc2d_c00003{bottom:644.883000px;}
.yaae_c00003{bottom:645.180000px;}
.y7b3_c00003{bottom:645.540000px;}
.y84d_c00003{bottom:645.541500px;}
.y1318_c00003{bottom:645.603750px;}
.y5ca_c00003{bottom:645.720000px;}
.y84c_c00003{bottom:645.721500px;}
.ycee_c00003{bottom:645.765000px;}
.y5c8_c00003{bottom:645.900000px;}
.y11cc_c00003{bottom:646.095150px;}
.y1121_c00003{bottom:646.096350px;}
.y112d_c00003{bottom:646.096650px;}
.y11d4_c00003{bottom:646.096950px;}
.y1139_c00003{bottom:646.097550px;}
.y11e0_c00003{bottom:646.098150px;}
.y1145_c00003{bottom:646.098450px;}
.y6f7_c00003{bottom:646.261500px;}
.yed5_c00003{bottom:646.323000px;}
.y6f6_c00003{bottom:646.441500px;}
.y975_c00003{bottom:646.800150px;}
.y44d_c00003{bottom:647.161500px;}
.ye82_c00003{bottom:647.403000px;}
.ye87_c00003{bottom:647.403150px;}
.yb3f_c00003{bottom:648.240000px;}
.y1bf_c00003{bottom:648.478500px;}
.y782_c00003{bottom:648.959850px;}
.ya65_c00003{bottom:648.960000px;}
.ybb4_c00003{bottom:649.140000px;}
.y727_c00003{bottom:649.319700px;}
.yae4_c00003{bottom:649.500000px;}
.y920_c00003{bottom:649.500300px;}
.ycbe_c00003{bottom:649.545000px;}
.y3a7_c00003{bottom:649.678350px;}
.y3ac_c00003{bottom:649.680000px;}
.y922_c00003{bottom:650.040000px;}
.y123b_c00003{bottom:650.083500px;}
.y112_c00003{bottom:650.098500px;}
.yd5_c00003{bottom:650.103000px;}
.y412_c00003{bottom:650.397000px;}
.y5c9_c00003{bottom:650.401500px;}
.ya25_c00003{bottom:650.580000px;}
.y4c0_c00003{bottom:650.759700px;}
.ybf4_c00003{bottom:650.760000px;}
.y593_c00003{bottom:650.761500px;}
.yc1c_c00003{bottom:650.823000px;}
.y592_c00003{bottom:650.941500px;}
.ye17_c00003{bottom:651.003000px;}
.y813_c00003{bottom:651.121500px;}
.y1c0_c00003{bottom:651.181500px;}
.y49a_c00003{bottom:651.298800px;}
.y307_c00003{bottom:651.358500px;}
.y6c3_c00003{bottom:651.660000px;}
.yfad_c00003{bottom:651.808800px;}
.yfb5_c00003{bottom:651.809850px;}
.yfbf_c00003{bottom:651.810900px;}
.yfc9_c00003{bottom:651.811950px;}
.yfd3_c00003{bottom:651.813000px;}
.y6c1_c00003{bottom:651.840000px;}
.ydea_c00003{bottom:651.903000px;}
.y28f_c00003{bottom:652.078500px;}
.yd9a_c00003{bottom:652.261500px;}
.y8e2_c00003{bottom:652.738650px;}
.y74c_c00003{bottom:652.740000px;}
.y63c_c00003{bottom:653.101500px;}
.ydc5_c00003{bottom:653.161500px;}
.yb0f_c00003{bottom:653.280000px;}
.yad_c00003{bottom:653.343000px;}
.y1019_c00003{bottom:653.431950px;}
.y248_c00003{bottom:653.521500px;}
.yd44_c00003{bottom:653.523000px;}
.y13e1_c00003{bottom:653.699280px;}
.y13c8_c00003{bottom:653.699520px;}
.y8e4_c00003{bottom:653.820000px;}
.y308_c00003{bottom:654.061500px;}
.y7da_c00003{bottom:654.181500px;}
.y1046_c00003{bottom:654.195150px;}
.y1269_c00003{bottom:654.225000px;}
.y9b2_c00003{bottom:654.360000px;}
.y68c_c00003{bottom:654.361500px;}
.y89_c00003{bottom:654.423000px;}
.y68b_c00003{bottom:654.541500px;}
.y44b_c00003{bottom:654.718950px;}
.y44e_c00003{bottom:654.720000px;}
.y290_c00003{bottom:654.781500px;}
.y921_c00003{bottom:654.900000px;}
.y3a8_c00003{bottom:654.901500px;}
.y609_c00003{bottom:655.081500px;}
.yefd_c00003{bottom:655.144500px;}
.y608_c00003{bottom:655.261500px;}
.ybb5_c00003{bottom:655.441500px;}
.y45_c00003{bottom:655.498200px;}
.yb7a_c00003{bottom:655.621500px;}
.ye34_c00003{bottom:655.862700px;}
.y116a_c00003{bottom:656.310150px;}
.y6c2_c00003{bottom:656.521500px;}
.ye84_c00003{bottom:656.762850px;}
.y9f3_c00003{bottom:657.060000px;}
.y86a_c00003{bottom:657.419550px;}
.y74e_c00003{bottom:657.420000px;}
.y8c2_c00003{bottom:657.420900px;}
.y9f1_c00003{bottom:657.600000px;}
.y154_c00003{bottom:657.658500px;}
.y74d_c00003{bottom:657.781500px;}
.y8e3_c00003{bottom:658.140000px;}
.yb3b_c00003{bottom:658.320000px;}
.ybd1_c00003{bottom:658.321500px;}
.y509_c00003{bottom:658.679700px;}
.yb78_c00003{bottom:658.680000px;}
.yaac_c00003{bottom:658.681500px;}
.y811_c00003{bottom:658.860000px;}
.ybcc_c00003{bottom:659.040000px;}
.yf17_c00003{bottom:659.644500px;}
.y9b1_c00003{bottom:659.760000px;}
.y67_c00003{bottom:659.831550px;}
.yb91_c00003{bottom:659.940000px;}
.y44c_c00003{bottom:659.941500px;}
.yed1_c00003{bottom:660.544500px;}
.ybec_c00003{bottom:660.840000px;}
.y5c6_c00003{bottom:660.841500px;}
.y63a_c00003{bottom:661.380000px;}
.yfe3_c00003{bottom:661.785150px;}
.y9f2_c00003{bottom:662.460000px;}
.yc60_c00003{bottom:662.523150px;}
.y1bd_c00003{bottom:662.698500px;}
.ya63_c00003{bottom:663.000000px;}
.y973_c00003{bottom:663.000750px;}
.y540_c00003{bottom:663.180000px;}
.y84b_c00003{bottom:663.181350px;}
.y814_c00003{bottom:663.360000px;}
.yae2_c00003{bottom:663.541500px;}
.y812_c00003{bottom:663.721500px;}
.y974_c00003{bottom:664.080000px;}
.y111_c00003{bottom:664.318500px;}
.y7f4_c00003{bottom:665.162250px;}
.ye47_c00003{bottom:665.223000px;}
.y801_c00003{bottom:665.339550px;}
.y799_c00003{bottom:665.340450px;}
.y1be_c00003{bottom:665.401500px;}
.y18_c00003{bottom:665.403000px;}
.y305_c00003{bottom:665.578500px;}
.yd14_c00003{bottom:665.745000px;}
.y13e0_c00003{bottom:665.939520px;}
.y13c7_c00003{bottom:665.939760px;}
.y63d_c00003{bottom:666.060000px;}
.y28d_c00003{bottom:666.298500px;}
.y63b_c00003{bottom:666.421500px;}
.y246_c00003{bottom:666.478500px;}
.yeba_c00003{bottom:666.483000px;}
.yaad_c00003{bottom:667.320000px;}
.y6c0_c00003{bottom:667.321500px;}
.y6bf_c00003{bottom:667.501500px;}
.y544_c00003{bottom:667.860000px;}
.y541_c00003{bottom:668.221500px;}
.y306_c00003{bottom:668.281500px;}
.y91f_c00003{bottom:668.400000px;}
.y9ae_c00003{bottom:668.401500px;}
.y247_c00003{bottom:668.641500px;}
.y91e_c00003{bottom:668.940000px;}
.y28e_c00003{bottom:669.001500px;}
.y5c4_c00003{bottom:669.120000px;}
.y591_c00003{bottom:669.483000px;}
.yced_c00003{bottom:669.705000px;}
.yb92_c00003{bottom:669.840000px;}
.y12f4_c00003{bottom:669.904050px;}
.y409_c00003{bottom:670.738050px;}
.ybf3_c00003{bottom:670.740000px;}
.y10b0_c00003{bottom:671.007600px;}
.y1096_c00003{bottom:671.008650px;}
.y107c_c00003{bottom:671.009100px;}
.y1065_c00003{bottom:671.010150px;}
.y8e1_c00003{bottom:671.100000px;}
.y869_c00003{bottom:671.281500px;}
.y12e2_c00003{bottom:671.344155px;}
.y12c3_c00003{bottom:671.460000px;}
.y39d_c00003{bottom:671.638950px;}
.y9ef_c00003{bottom:671.641500px;}
.y10da_c00003{bottom:671.759850px;}
.y153_c00003{bottom:671.878500px;}
.yd4_c00003{bottom:671.881500px;}
.y8df_c00003{bottom:672.180000px;}
.yde9_c00003{bottom:672.603000px;}
.yae3_c00003{bottom:672.720000px;}
.yaab_c00003{bottom:672.721500px;}
.yd99_c00003{bottom:672.961500px;}
.y68a_c00003{bottom:673.081800px;}
.ya24_c00003{bottom:673.260000px;}
.ycbd_c00003{bottom:673.665000px;}
.y5c7_c00003{bottom:673.800000px;}
.y749_c00003{bottom:673.800150px;}
.y607_c00003{bottom:673.800900px;}
.y7b2_c00003{bottom:673.980000px;}
.y44_c00003{bottom:674.038500px;}
.ydc4_c00003{bottom:674.043000px;}
.y5c5_c00003{bottom:674.161500px;}
.yd68_c00003{bottom:674.223000px;}
.y7b1_c00003{bottom:674.341500px;}
.yd43_c00003{bottom:674.403000px;}
.y12c4_c00003{bottom:674.700000px;}
.y12c2_c00003{bottom:674.701200px;}
.yed4_c00003{bottom:674.763000px;}
.yac_c00003{bottom:675.123000px;}
.y740_c00003{bottom:675.240000px;}
.y4b5_c00003{bottom:675.418650px;}
.y4bf_c00003{bottom:675.420000px;}
.yb79_c00003{bottom:675.601500px;}
.y445_c00003{bottom:675.778950px;}
.ye83_c00003{bottom:675.843300px;}
.y88_c00003{bottom:676.203000px;}
.y8e0_c00003{bottom:676.500000px;}
.ybb2_c00003{bottom:676.501500px;}
.y1bb_c00003{bottom:676.918500px;}
.y9b0_c00003{bottom:677.040000px;}
.y123a_c00003{bottom:677.083500px;}
.y9af_c00003{bottom:677.580000px;}
.ya60_c00003{bottom:677.581500px;}
.yf9b_c00003{bottom:677.670600px;}
.y13df_c00003{bottom:678.179760px;}
.y13c6_c00003{bottom:678.180000px;}
.yb3a_c00003{bottom:678.300000px;}
.y66_c00003{bottom:678.371250px;}
.y110_c00003{bottom:678.538500px;}
.yc47_c00003{bottom:678.544500px;}
.y80f_c00003{bottom:678.659700px;}
.y80c_c00003{bottom:678.660000px;}
.y1111_c00003{bottom:678.930150px;}
.y101a_c00003{bottom:679.427700px;}
.ye49_c00003{bottom:679.444500px;}
.y3a6_c00003{bottom:679.557600px;}
.y1bc_c00003{bottom:679.621500px;}
.y303_c00003{bottom:679.798500px;}
.yb90_c00003{bottom:679.920000px;}
.y1047_c00003{bottom:680.191500px;}
.y972_c00003{bottom:680.280000px;}
.y244_c00003{bottom:680.518500px;}
.ybee_c00003{bottom:680.820000px;}
.y1268_c00003{bottom:681.225000px;}
.y970_c00003{bottom:681.360000px;}
.y7d9_c00003{bottom:681.540600px;}
.yc5f_c00003{bottom:681.603000px;}
.ybd0_c00003{bottom:681.720000px;}
.y9f0_c00003{bottom:681.900000px;}
.yb0e_c00003{bottom:681.901500px;}
.y745_c00003{bottom:682.080000px;}
.y9ad_c00003{bottom:682.441500px;}
.y304_c00003{bottom:682.501500px;}
.y73f_c00003{bottom:682.620000px;}
.ya22_c00003{bottom:682.981500px;}
.y797_c00003{bottom:683.160000px;}
.y245_c00003{bottom:683.221500px;}
.y8ab_c00003{bottom:683.520000px;}
.y91b_c00003{bottom:683.521500px;}
.ye33_c00003{bottom:684.303000px;}
.y971_c00003{bottom:685.140000px;}
.y12ae_c00003{bottom:685.546650px;}
.yeb9_c00003{bottom:685.562850px;}
.y899_c00003{bottom:685.680000px;}
.y152_c00003{bottom:686.098500px;}
.y8dc_c00003{bottom:686.221500px;}
.y6be_c00003{bottom:686.400000px;}
.y62d_c00003{bottom:686.400450px;}
.y631_c00003{bottom:686.400600px;}
.y635_c00003{bottom:686.400750px;}
.y639_c00003{bottom:686.401350px;}
.y411_c00003{bottom:686.576850px;}
.y40d_c00003{bottom:686.577600px;}
.y408_c00003{bottom:686.578350px;}
.y403_c00003{bottom:686.579700px;}
.y6bc_c00003{bottom:686.580000px;}
.y17_c00003{bottom:687.181500px;}
.ya62_c00003{bottom:687.300000px;}
.y533_c00003{bottom:687.300450px;}
.y537_c00003{bottom:687.300600px;}
.y53f_c00003{bottom:687.301500px;}
.y53b_c00003{bottom:687.301950px;}
.y3a1_c00003{bottom:687.478350px;}
.y39c_c00003{bottom:687.479700px;}
.y397_c00003{bottom:687.480000px;}
.y8ad_c00003{bottom:687.661500px;}
.y588_c00003{bottom:688.021200px;}
.y58c_c00003{bottom:688.021350px;}
.y585_c00003{bottom:688.021650px;}
.y590_c00003{bottom:688.022700px;}
.ya61_c00003{bottom:688.380000px;}
.y4be_c00003{bottom:688.741500px;}
.yc1b_c00003{bottom:688.982700px;}
.yed2_c00003{bottom:688.983000px;}
.y741_c00003{bottom:689.100000px;}
.yaaa_c00003{bottom:689.460150px;}
.yd13_c00003{bottom:689.683500px;}
.y685_c00003{bottom:689.820150px;}
.y67d_c00003{bottom:689.820450px;}
.y681_c00003{bottom:689.820600px;}
.y689_c00003{bottom:689.821500px;}
.y7ae_c00003{bottom:690.000000px;}
.y7b0_c00003{bottom:690.000150px;}
.y7aa_c00003{bottom:690.001350px;}
.y6f5_c00003{bottom:690.001500px;}
.y7f3_c00003{bottom:690.002550px;}
.y5b8_c00003{bottom:690.179850px;}
.y5bb_c00003{bottom:690.180000px;}
.y5bf_c00003{bottom:690.181200px;}
.y5c3_c00003{bottom:690.181350px;}
.y796_c00003{bottom:690.360000px;}
.y13c5_c00003{bottom:690.420000px;}
.y8aa_c00003{bottom:690.720000px;}
.yf16_c00003{bottom:690.784500px;}
.ybf2_c00003{bottom:690.900000px;}
.y1b9_c00003{bottom:691.138500px;}
.y4b4_c00003{bottom:691.258950px;}
.y4af_c00003{bottom:691.259700px;}
.y4b9_c00003{bottom:691.260000px;}
.y6bd_c00003{bottom:691.261500px;}
.y44a_c00003{bottom:691.618950px;}
.y444_c00003{bottom:691.619250px;}
.y8ca_c00003{bottom:691.620000px;}
.ybce_c00003{bottom:691.800000px;}
.y80b_c00003{bottom:691.801500px;}
.y43_c00003{bottom:692.578800px;}
.ya23_c00003{bottom:692.700000px;}
.ya5f_c00003{bottom:692.701500px;}
.y10f_c00003{bottom:692.758500px;}
.ye16_c00003{bottom:692.761500px;}
.y91d_c00003{bottom:693.240000px;}
.yde8_c00003{bottom:693.481500px;}
.ycec_c00003{bottom:693.645000px;}
.yd3_c00003{bottom:693.661500px;}
.yc2b_c00003{bottom:693.663000px;}
.y779_c00003{bottom:693.780000px;}
.y1ba_c00003{bottom:693.841500px;}
.yd98_c00003{bottom:693.843000px;}
.y301_c00003{bottom:694.018500px;}
.y80e_c00003{bottom:694.139550px;}
.y91c_c00003{bottom:694.320000px;}
.yae0_c00003{bottom:694.321350px;}
.y96d_c00003{bottom:694.321500px;}
.yc77_c00003{bottom:694.560300px;}
.y242_c00003{bottom:694.738500px;}
.ydc3_c00003{bottom:694.743000px;}
.yae1_c00003{bottom:694.860000px;}
.yd67_c00003{bottom:694.923000px;}
.yeb6_c00003{bottom:695.103000px;}
.yebb_c00003{bottom:695.103150px;}
.yd41_c00003{bottom:695.281500px;}
.y3a5_c00003{bottom:695.398350px;}
.y867_c00003{bottom:695.580000px;}
.y8de_c00003{bottom:695.940000px;}
.y744_c00003{bottom:695.941500px;}
.y8dd_c00003{bottom:696.480000px;}
.yb77_c00003{bottom:696.481500px;}
.y302_c00003{bottom:696.721500px;}
.yab_c00003{bottom:696.903000px;}
.y65_c00003{bottom:696.910950px;}
.y798_c00003{bottom:697.020000px;}
.y8ac_c00003{bottom:697.380000px;}
.ybed_c00003{bottom:697.381500px;}
.y243_c00003{bottom:697.441500px;}
.y843_c00003{bottom:697.560000px;}
.ya21_c00003{bottom:697.561500px;}
.ycbc_c00003{bottom:697.605000px;}
.y5b2_c00003{bottom:697.740000px;}
.y12c1_c00003{bottom:697.740900px;}
.y87_c00003{bottom:697.981500px;}
.y672_c00003{bottom:698.100000px;}
.y7ef_c00003{bottom:698.282400px;}
.y800_c00003{bottom:698.459700px;}
.y7fe_c00003{bottom:698.460000px;}
.y7a2_c00003{bottom:698.640000px;}
.y91a_c00003{bottom:698.641500px;}
.y3fb_c00003{bottom:699.000000px;}
.y89a_c00003{bottom:699.000120px;}
.y10b1_c00003{bottom:699.042300px;}
.y1097_c00003{bottom:699.043350px;}
.y107d_c00003{bottom:699.043800px;}
.y1066_c00003{bottom:699.044850px;}
.y9ac_c00003{bottom:699.179850px;}
.y6aa_c00003{bottom:699.540000px;}
.y43c_c00003{bottom:699.720000px;}
.y10db_c00003{bottom:699.809850px;}
.y628_c00003{bottom:699.900000px;}
.y1203_c00003{bottom:700.170600px;}
.y116c_c00003{bottom:700.171050px;}
.yb0c_c00003{bottom:700.259850px;}
.yb0d_c00003{bottom:700.800000px;}
.y8db_c00003{bottom:700.801500px;}
.y6b9_c00003{bottom:701.701500px;}
.yf71_c00003{bottom:701.745000px;}
.y7c9_c00003{bottom:701.880000px;}
.y5ff_c00003{bottom:702.060000px;}
.y410_c00003{bottom:702.417150px;}
.y40c_c00003{bottom:702.418350px;}
.y407_c00003{bottom:702.418650px;}
.y402_c00003{bottom:702.420000px;}
.y13c4_c00003{bottom:702.660000px;}
.y62c_c00003{bottom:702.780300px;}
.y630_c00003{bottom:702.780450px;}
.y634_c00003{bottom:702.780600px;}
.y638_c00003{bottom:702.781800px;}
.y96f_c00003{bottom:702.960000px;}
.y499_c00003{bottom:703.139535px;}
.y151_c00003{bottom:703.201500px;}
.y3a0_c00003{bottom:703.318650px;}
.y39b_c00003{bottom:703.320000px;}
.y396_c00003{bottom:703.320300px;}
.y532_c00003{bottom:703.680300px;}
.y536_c00003{bottom:703.680450px;}
.y53a_c00003{bottom:703.680600px;}
.y53e_c00003{bottom:703.681950px;}
.y7ad_c00003{bottom:703.861500px;}
.y96e_c00003{bottom:704.040000px;}
.y748_c00003{bottom:704.041500px;}
.y1239_c00003{bottom:704.083500px;}
.y584_c00003{bottom:704.401500px;}
.y587_c00003{bottom:704.401650px;}
.y58b_c00003{bottom:704.401800px;}
.y58f_c00003{bottom:704.403150px;}
.yeb8_c00003{bottom:704.462850px;}
.ye7d_c00003{bottom:704.464050px;}
.y9ee_c00003{bottom:704.580300px;}
.y4b8_c00003{bottom:704.581500px;}
.y12f3_c00003{bottom:704.824200px;}
.y5b0_c00003{bottom:704.940000px;}
.y7a3_c00003{bottom:705.120000px;}
.y1b7_c00003{bottom:705.358500px;}
.y101b_c00003{bottom:705.452100px;}
.y7ff_c00003{bottom:705.480000px;}
.y67c_c00003{bottom:706.200300px;}
.y680_c00003{bottom:706.200450px;}
.y684_c00003{bottom:706.200600px;}
.y688_c00003{bottom:706.201950px;}
.y1048_c00003{bottom:706.214700px;}
.y7d3_c00003{bottom:706.379850px;}
.y7af_c00003{bottom:706.380000px;}
.y7a9_c00003{bottom:706.381200px;}
.y7d8_c00003{bottom:706.381350px;}
.ybca_c00003{bottom:706.381500px;}
.y7f2_c00003{bottom:706.382400px;}
.y5b7_c00003{bottom:706.559700px;}
.y5ba_c00003{bottom:706.559850px;}
.y5be_c00003{bottom:706.560450px;}
.y5c2_c00003{bottom:706.561200px;}
.y12ad_c00003{bottom:706.606350px;}
.y6a9_c00003{bottom:706.740000px;}
.y4b3_c00003{bottom:707.099250px;}
.y4ae_c00003{bottom:707.100000px;}
.y77a_c00003{bottom:707.100120px;}
.y4bd_c00003{bottom:707.100300px;}
.yadb_c00003{bottom:707.281500px;}
.y449_c00003{bottom:707.458650px;}
.y443_c00003{bottom:707.460000px;}
.y52b_c00003{bottom:707.640000px;}
.y96c_c00003{bottom:707.821500px;}
.yc2a_c00003{bottom:707.883000px;}
.y1b8_c00003{bottom:708.061500px;}
.y1267_c00003{bottom:708.225000px;}
.y2ff_c00003{bottom:708.238500px;}
.yb3e_c00003{bottom:708.360000px;}
.y868_c00003{bottom:708.900000px;}
.y240_c00003{bottom:708.958500px;}
.y16_c00003{bottom:708.961500px;}
.y80a_c00003{bottom:709.620000px;}
.yf15_c00003{bottom:709.684500px;}
.y10e_c00003{bottom:709.861500px;}
.yb8f_c00003{bottom:709.980000px;}
.y6b7_c00003{bottom:710.160000px;}
.y116e_c00003{bottom:710.565750px;}
.y300_c00003{bottom:710.941500px;}
.y42_c00003{bottom:711.119100px;}
.y3a4_c00003{bottom:711.238050px;}
.y673_c00003{bottom:711.420120px;}
.yefb_c00003{bottom:711.482700px;}
.yfe5_c00003{bottom:711.510150px;}
.y5b3_c00003{bottom:711.600000px;}
.y5b1_c00003{bottom:711.600345px;}
.y128d_c00003{bottom:711.645450px;}
.y241_c00003{bottom:711.661500px;}
.y3fc_c00003{bottom:711.779880px;}
.yaa2_c00003{bottom:712.138800px;}
.ya9d_c00003{bottom:712.140150px;}
.ya99_c00003{bottom:712.140300px;}
.y57c_c00003{bottom:712.320120px;}
.ye80_c00003{bottom:712.563000px;}
.ya5e_c00003{bottom:713.220150px;}
.y6ab_c00003{bottom:713.400000px;}
.ye15_c00003{bottom:713.461500px;}
.y629_c00003{bottom:713.760000px;}
.yb08_c00003{bottom:713.761500px;}
.yd12_c00003{bottom:713.805000px;}
.ye81_c00003{bottom:714.003000px;}
.ye7f_c00003{bottom:714.004200px;}
.yde7_c00003{bottom:714.181500px;}
.ye32_c00003{bottom:714.183150px;}
.y7ee_c00003{bottom:714.662250px;}
.yd97_c00003{bottom:714.723000px;}
.y130b_c00003{bottom:714.723750px;}
.y743_c00003{bottom:714.839550px;}
.y74b_c00003{bottom:714.839850px;}
.y6bb_c00003{bottom:714.840000px;}
.y13c3_c00003{bottom:714.900000px;}
.y7ca_c00003{bottom:715.200120px;}
.y6b8_c00003{bottom:715.201500px;}
.y600_c00003{bottom:715.380120px;}
.yd2_c00003{bottom:715.443000px;}
.y508_c00003{bottom:715.559700px;}
.ydc2_c00003{bottom:715.623000px;}
.yd66_c00003{bottom:715.803000px;}
.y497_c00003{bottom:715.920000px;}
.yd40_c00003{bottom:715.981500px;}
.y150_c00003{bottom:716.158500px;}
.y711_c00003{bottom:716.280000px;}
.yb8d_c00003{bottom:716.461500px;}
.yc1a_c00003{bottom:717.423000px;}
.ya20_c00003{bottom:717.540000px;}
.ya1f_c00003{bottom:717.540300px;}
.y918_c00003{bottom:717.540450px;}
.yceb_c00003{bottom:717.765000px;}
.y919_c00003{bottom:718.080000px;}
.y9e7_c00003{bottom:718.081500px;}
.y40f_c00003{bottom:718.257450px;}
.y40b_c00003{bottom:718.258050px;}
.y406_c00003{bottom:718.258350px;}
.y401_c00003{bottom:718.259700px;}
.ybcf_c00003{bottom:718.261500px;}
.yb5f_c00003{bottom:718.440000px;}
.yaa_c00003{bottom:718.681500px;}
.y39f_c00003{bottom:719.158950px;}
.y39a_c00003{bottom:719.159700px;}
.y395_c00003{bottom:719.160000px;}
.y62b_c00003{bottom:719.160150px;}
.y62f_c00003{bottom:719.160300px;}
.y633_c00003{bottom:719.160450px;}
.y637_c00003{bottom:719.161650px;}
.y1b5_c00003{bottom:719.578500px;}
.y86_c00003{bottom:719.761500px;}
.yb76_c00003{bottom:720.060000px;}
.y531_c00003{bottom:720.060150px;}
.y535_c00003{bottom:720.060300px;}
.y539_c00003{bottom:720.060450px;}
.y53d_c00003{bottom:720.061800px;}
.y7ac_c00003{bottom:720.241500px;}
.y12c0_c00003{bottom:720.421350px;}
.y583_c00003{bottom:720.781350px;}
.y442_c00003{bottom:720.781500px;}
.y58a_c00003{bottom:720.781650px;}
.y58e_c00003{bottom:720.782400px;}
.yc5d_c00003{bottom:721.024500px;}
.ycbb_c00003{bottom:721.545000px;}
.yada_c00003{bottom:721.859850px;}
.y7ec_c00003{bottom:721.860000px;}
.yc2c_c00003{bottom:722.103000px;}
.y1b6_c00003{bottom:722.281500px;}
.y2fd_c00003{bottom:722.458500px;}
.y67b_c00003{bottom:722.580150px;}
.y67f_c00003{bottom:722.580300px;}
.y683_c00003{bottom:722.580450px;}
.y687_c00003{bottom:722.581800px;}
.y7d2_c00003{bottom:722.759700px;}
.y7d7_c00003{bottom:722.760000px;}
.y7a8_c00003{bottom:722.761050px;}
.y809_c00003{bottom:722.761500px;}
.y7f1_c00003{bottom:722.762250px;}
.y10d_c00003{bottom:722.818500px;}
.y4b7_c00003{bottom:722.938050px;}
.y4b2_c00003{bottom:722.938950px;}
.y5b6_c00003{bottom:722.939550px;}
.y4ad_c00003{bottom:722.939700px;}
.y747_c00003{bottom:722.939850px;}
.y4bc_c00003{bottom:722.940000px;}
.y5bd_c00003{bottom:722.940300px;}
.y5c1_c00003{bottom:722.941050px;}
.y23e_c00003{bottom:723.178500px;}
.y448_c00003{bottom:723.298950px;}
.yeb7_c00003{bottom:723.543300px;}
.ye7b_c00003{bottom:723.544500px;}
.y710_c00003{bottom:723.660000px;}
.y96a_c00003{bottom:724.559550px;}
.yb3c_c00003{bottom:724.921500px;}
.y96b_c00003{bottom:725.100000px;}
.y2fe_c00003{bottom:725.161500px;}
.y9e4_c00003{bottom:725.641500px;}
.y23f_c00003{bottom:725.881500px;}
.ybc9_c00003{bottom:726.541500px;}
.y3a3_c00003{bottom:727.078350px;}
.y10b2_c00003{bottom:727.091700px;}
.y1098_c00003{bottom:727.092150px;}
.y107e_c00003{bottom:727.093200px;}
.y1067_c00003{bottom:727.094250px;}
.y13de_c00003{bottom:727.141500px;}
.ya98_c00003{bottom:727.259850px;}
.yaa1_c00003{bottom:727.260150px;}
.ya9c_c00003{bottom:727.260300px;}
.y12ac_c00003{bottom:727.485600px;}
.y10dc_c00003{bottom:727.845150px;}
.yc46_c00003{bottom:728.763000px;}
.ya54_c00003{bottom:728.881500px;}
.y41_c00003{bottom:729.659400px;}
.yb73_c00003{bottom:730.141500px;}
.y14f_c00003{bottom:730.198500px;}
.y712_c00003{bottom:730.320000px;}
.y37f_c00003{bottom:730.666500px;}
.y15_c00003{bottom:730.743000px;}
.y36b_c00003{bottom:730.846500px;}
.y7ed_c00003{bottom:731.042100px;}
.y1238_c00003{bottom:731.083500px;}
.y742_c00003{bottom:731.220000px;}
.y74a_c00003{bottom:731.220300px;}
.y6b2_c00003{bottom:731.400750px;}
.y6b6_c00003{bottom:731.401500px;}
.y101c_c00003{bottom:731.447850px;}
.yb07_c00003{bottom:731.580000px;}
.y913_c00003{bottom:731.581500px;}
.y1049_c00003{bottom:732.211650px;}
.y8d1_c00003{bottom:732.661500px;}
.y128c_c00003{bottom:732.705150px;}
.ye7e_c00003{bottom:732.904800px;}
.ye31_c00003{bottom:733.263000px;}
.yaa7_c00003{bottom:733.740150px;}
.y9e6_c00003{bottom:733.741500px;}
.y1b3_c00003{bottom:733.798500px;}
.yc94_c00003{bottom:733.983000px;}
.y64_c00003{bottom:733.990800px;}
.y40e_c00003{bottom:734.097750px;}
.y40a_c00003{bottom:734.098350px;}
.y405_c00003{bottom:734.098650px;}
.y400_c00003{bottom:734.100000px;}
.y339_c00003{bottom:734.145000px;}
.y12bd_c00003{bottom:734.146350px;}
.ye14_c00003{bottom:734.343000px;}
.yaa9_c00003{bottom:734.820450px;}
.y39e_c00003{bottom:734.999250px;}
.y399_c00003{bottom:735.000000px;}
.y394_c00003{bottom:735.000750px;}
.yde6_c00003{bottom:735.061500px;}
.y1266_c00003{bottom:735.225000px;}
.yc5c_c00003{bottom:735.244500px;}
.yaa4_c00003{bottom:735.359850px;}
.yd96_c00003{bottom:735.423000px;}
.y62a_c00003{bottom:735.540000px;}
.y62e_c00003{bottom:735.540150px;}
.y632_c00003{bottom:735.540300px;}
.y636_c00003{bottom:735.541500px;}
.yaa6_c00003{bottom:735.900000px;}
.y4bb_c00003{bottom:736.261500px;}
.y530_c00003{bottom:736.440000px;}
.y534_c00003{bottom:736.440150px;}
.y538_c00003{bottom:736.440300px;}
.ybcb_c00003{bottom:736.441500px;}
.y53c_c00003{bottom:736.441650px;}
.y1b4_c00003{bottom:736.501500px;}
.ydc1_c00003{bottom:736.503000px;}
.y7d5_c00003{bottom:736.621500px;}
.y2fb_c00003{bottom:736.678500px;}
.yd65_c00003{bottom:736.681500px;}
.y10c_c00003{bottom:736.858500px;}
.yd3f_c00003{bottom:736.861500px;}
.yad9_c00003{bottom:736.980000px;}
.y582_c00003{bottom:737.160000px;}
.y586_c00003{bottom:737.161350px;}
.y589_c00003{bottom:737.161500px;}
.y58d_c00003{bottom:737.161650px;}
.yd1_c00003{bottom:737.223000px;}
.y23c_c00003{bottom:737.398500px;}
.yadf_c00003{bottom:737.521350px;}
.y964_c00003{bottom:737.521500px;}
.yd11_c00003{bottom:737.745000px;}
.yadd_c00003{bottom:738.059850px;}
.ya8e_c00003{bottom:738.600000px;}
.y9a8_c00003{bottom:738.600150px;}
.ya94_c00003{bottom:738.601050px;}
.ya91_c00003{bottom:738.601200px;}
.y4b6_c00003{bottom:738.778350px;}
.y4b1_c00003{bottom:738.779700px;}
.y4ac_c00003{bottom:738.780000px;}
.y67a_c00003{bottom:738.960000px;}
.y67e_c00003{bottom:738.960150px;}
.y682_c00003{bottom:738.960300px;}
.y686_c00003{bottom:738.960450px;}
.y447_c00003{bottom:739.139250px;}
.y7d1_c00003{bottom:739.139550px;}
.y441_c00003{bottom:739.140300px;}
.y7ab_c00003{bottom:739.141050px;}
.y7a7_c00003{bottom:739.141500px;}
.y7f0_c00003{bottom:739.142100px;}
.y5b5_c00003{bottom:739.320000px;}
.y5b9_c00003{bottom:739.320150px;}
.y746_c00003{bottom:739.320300px;}
.y5bc_c00003{bottom:739.320750px;}
.y5c0_c00003{bottom:739.320900px;}
.y8ae_c00003{bottom:739.321500px;}
.y13c2_c00003{bottom:739.379760px;}
.y2fc_c00003{bottom:739.381500px;}
.y9ab_c00003{bottom:739.679850px;}
.yaa8_c00003{bottom:739.680000px;}
.y9a1_c00003{bottom:739.681110px;}
.y12f2_c00003{bottom:739.744350px;}
.yefa_c00003{bottom:739.923000px;}
.yb75_c00003{bottom:740.040000px;}
.y23d_c00003{bottom:740.101500px;}
.y9a4_c00003{bottom:740.221350px;}
.ya9_c00003{bottom:740.463000px;}
.y810_c00003{bottom:740.579850px;}
.y808_c00003{bottom:740.580000px;}
.y80d_c00003{bottom:740.581350px;}
.yb09_c00003{bottom:740.759850px;}
.y9a6_c00003{bottom:740.760000px;}
.yf14_c00003{bottom:740.823150px;}
.y12e1_c00003{bottom:741.183855px;}
.y9ec_c00003{bottom:741.299850px;}
.yb0b_c00003{bottom:741.300000px;}
.y85_c00003{bottom:741.543000px;}
.ycea_c00003{bottom:741.705000px;}
.y9ed_c00003{bottom:741.840600px;}
.ya9b_c00003{bottom:742.379850px;}
.ya95_c00003{bottom:742.380000px;}
.yaa0_c00003{bottom:742.380300px;}
.ye7c_c00003{bottom:742.444500px;}
.y3a2_c00003{bottom:742.918650px;}
.y9e8_c00003{bottom:742.920450px;}
.y12d7_c00003{bottom:743.146350px;}
.y6ee_c00003{bottom:743.280000px;}
.y9ea_c00003{bottom:743.460000px;}
.ya56_c00003{bottom:744.001500px;}
.y14e_c00003{bottom:744.418500px;}
.y9a9_c00003{bottom:744.540000px;}
.yad8_c00003{bottom:745.080000px;}
.yed0_c00003{bottom:745.320300px;}
.y99f_c00003{bottom:745.621500px;}
.ycba_c00003{bottom:745.665000px;}
.ya5a_c00003{bottom:746.159700px;}
.y950_c00003{bottom:746.161500px;}
.ya57_c00003{bottom:746.700000px;}
.ya53_c00003{bottom:746.701200px;}
.ya5d_c00003{bottom:747.240300px;}
.y9a0_c00003{bottom:747.241500px;}
.yc19_c00003{bottom:747.483000px;}
.yb06_c00003{bottom:747.780000px;}
.y917_c00003{bottom:747.781200px;}
.y6b1_c00003{bottom:747.960000px;}
.y6b5_c00003{bottom:747.961200px;}
.y1b1_c00003{bottom:748.018500px;}
.y40_c00003{bottom:748.199700px;}
.y912_c00003{bottom:748.320300px;}
.y8d7_c00003{bottom:748.321350px;}
.y12ab_c00003{bottom:748.545900px;}
.yaa5_c00003{bottom:748.859850px;}
.ya58_c00003{bottom:748.861035px;}
.y8d0_c00003{bottom:748.861200px;}
.y8da_c00003{bottom:749.400000px;}
.yc5e_c00003{bottom:749.463000px;}
.y404_c00003{bottom:749.939400px;}
.y915_c00003{bottom:749.939535px;}
.y9e0_c00003{bottom:749.940000px;}
.y963_c00003{bottom:749.941500px;}
.ye46_c00003{bottom:750.000000px;}
.yb8e_c00003{bottom:750.120000px;}
.y1317_c00003{bottom:750.363000px;}
.yaa3_c00003{bottom:750.480000px;}
.y8d3_c00003{bottom:750.480705px;}
.y1b2_c00003{bottom:750.721500px;}
.y398_c00003{bottom:750.839700px;}
.y2f9_c00003{bottom:750.898500px;}
.y8d5_c00003{bottom:751.020000px;}
.y968_c00003{bottom:751.020150px;}
.y10b_c00003{bottom:751.078500px;}
.y130a_c00003{bottom:751.083000px;}
.yade_c00003{bottom:751.559850px;}
.y23a_c00003{bottom:751.618500px;}
.y13c1_c00003{bottom:751.620000px;}
.y13dd_c00003{bottom:751.620345px;}
.y969_c00003{bottom:752.099850px;}
.yeb4_c00003{bottom:752.165850px;}
.ybcd_c00003{bottom:752.280000px;}
.y14_c00003{bottom:752.523000px;}
.y63_c00003{bottom:752.530500px;}
.ya5b_c00003{bottom:752.641500px;}
.yadc_c00003{bottom:753.180000px;}
.y7a6_c00003{bottom:753.361500px;}
.y52f_c00003{bottom:753.541500px;}
.y2fa_c00003{bottom:753.601500px;}
.y965_c00003{bottom:753.720000px;}
.y9a5_c00003{bottom:753.721350px;}
.y807_c00003{bottom:754.081500px;}
.y8d8_c00003{bottom:754.260000px;}
.y23b_c00003{bottom:754.321500px;}
.y4b0_c00003{bottom:754.620000px;}
.y4ba_c00003{bottom:754.620300px;}
.y9aa_c00003{bottom:754.800000px;}
.yb0a_c00003{bottom:754.800090px;}
.y9a2_c00003{bottom:754.801260px;}
.y446_c00003{bottom:754.978950px;}
.y440_c00003{bottom:754.980000px;}
.ye13_c00003{bottom:755.043000px;}
.y10b3_c00003{bottom:755.126400px;}
.y1099_c00003{bottom:755.126850px;}
.y107f_c00003{bottom:755.127900px;}
.y1068_c00003{bottom:755.128950px;}
.y12e0_c00003{bottom:755.224095px;}
.ya8d_c00003{bottom:755.339700px;}
.ya93_c00003{bottom:755.340750px;}
.ya90_c00003{bottom:755.340900px;}
.y9a3_c00003{bottom:755.341500px;}
.y7d0_c00003{bottom:755.520000px;}
.y7d4_c00003{bottom:755.520150px;}
.y7d6_c00003{bottom:755.520300px;}
.y9a7_c00003{bottom:755.880000px;}
.y10dd_c00003{bottom:755.893950px;}
.yde5_c00003{bottom:755.943000px;}
.yd95_c00003{bottom:756.303000px;}
.yb74_c00003{bottom:756.601500px;}
.y6ef_c00003{bottom:756.780000px;}
.y910_c00003{bottom:756.960000px;}
.y9e9_c00003{bottom:756.960105px;}
.y136f_c00003{bottom:757.021380px;}
.ydc0_c00003{bottom:757.203000px;}
.yd64_c00003{bottom:757.381500px;}
.ya9f_c00003{bottom:757.499850px;}
.y8cc_c00003{bottom:757.500000px;}
.ya97_c00003{bottom:757.500150px;}
.yd3e_c00003{bottom:757.563000px;}
.y9e2_c00003{bottom:758.040000px;}
.y1237_c00003{bottom:758.083500px;}
.yf27_c00003{bottom:758.625450px;}
.y14d_c00003{bottom:758.638500px;}
.yb39_c00003{bottom:758.940300px;}
.yb5d_c00003{bottom:758.941500px;}
.yd0_c00003{bottom:759.003000px;}
.y9eb_c00003{bottom:759.120000px;}
.y960_c00003{bottom:759.660000px;}
.yf13_c00003{bottom:759.903000px;}
.ya55_c00003{bottom:760.741500px;}
.yc9e_c00003{bottom:760.983000px;}
.yd10_c00003{bottom:761.683500px;}
.y1265_c00003{bottom:762.225000px;}
.y1af_c00003{bottom:762.238500px;}
.ya8_c00003{bottom:762.243000px;}
.ya59_c00003{bottom:762.361035px;}
.y116d_c00003{bottom:762.405450px;}
.y84_c00003{bottom:763.323000px;}
.ya52_c00003{bottom:763.441500px;}
.y1172_c00003{bottom:763.740000px;}
.y13c0_c00003{bottom:763.860000px;}
.y916_c00003{bottom:763.979775px;}
.ya5c_c00003{bottom:763.980000px;}
.y8d4_c00003{bottom:763.980705px;}
.y12d4_c00003{bottom:764.341500px;}
.y1316_c00003{bottom:764.403240px;}
.y914_c00003{bottom:764.520000px;}
.y6b0_c00003{bottom:764.520300px;}
.y6b4_c00003{bottom:764.520900px;}
.y1b0_c00003{bottom:764.941500px;}
.y8cf_c00003{bottom:765.060000px;}
.y2f7_c00003{bottom:765.118500px;}
.y10a_c00003{bottom:765.298500px;}
.y8d9_c00003{bottom:765.600000px;}
.yce9_c00003{bottom:765.645000px;}
.y238_c00003{bottom:765.838500px;}
.y136e_c00003{bottom:765.841500px;}
.y8d6_c00003{bottom:766.141500px;}
.yc18_c00003{bottom:766.383000px;}
.y966_c00003{bottom:766.679760px;}
.y3f_c00003{bottom:766.740000px;}
.y962_c00003{bottom:767.220000px;}
.y2f8_c00003{bottom:767.821500px;}
.y967_c00003{bottom:768.300000px;}
.y239_c00003{bottom:768.541500px;}
.y3ff_c00003{bottom:769.200000px;}
.y34c_c00003{bottom:769.480800px;}
.y393_c00003{bottom:769.560000px;}
.ycb9_c00003{bottom:769.605000px;}
.y12aa_c00003{bottom:769.605150px;}
.y341_c00003{bottom:770.740050px;}
.y37e_c00003{bottom:770.919000px;}
.y62_c00003{bottom:771.070200px;}
.y368_c00003{bottom:771.099000px;}
.y43f_c00003{bottom:771.180000px;}
.ye78_c00003{bottom:771.244500px;}
.yeb3_c00003{bottom:771.245700px;}
.y338_c00003{bottom:771.766500px;}
.ya8c_c00003{bottom:772.080000px;}
.ya92_c00003{bottom:772.081050px;}
.ya8f_c00003{bottom:772.081200px;}
.ya9e_c00003{bottom:772.620000px;}
.ya9a_c00003{bottom:772.620150px;}
.ya96_c00003{bottom:772.620300px;}
.ye30_c00003{bottom:772.682700px;}
.y14c_c00003{bottom:772.858500px;}
.y104a_c00003{bottom:773.430600px;}
.y390_c00003{bottom:773.746350px;}
.yecf_c00003{bottom:773.760600px;}
.y1309_c00003{bottom:773.943300px;}
.y9e1_c00003{bottom:774.240000px;}
.y13_c00003{bottom:774.303000px;}
.y12f1_c00003{bottom:774.664500px;}
.ye12_c00003{bottom:775.923000px;}
.y13bf_c00003{bottom:776.100000px;}
.y1ad_c00003{bottom:776.458500px;}
.yde4_c00003{bottom:776.643000px;}
.yd94_c00003{bottom:777.003000px;}
.ya51_c00003{bottom:777.481500px;}
.ydbf_c00003{bottom:778.081500px;}
.y13a1_c00003{bottom:778.260000px;}
.yd63_c00003{bottom:778.263000px;}
.ye45_c00003{bottom:778.440300px;}
.yd3d_c00003{bottom:778.443000px;}
.yc29_c00003{bottom:778.443450px;}
.y8cd_c00003{bottom:778.561500px;}
.yc45_c00003{bottom:778.803000px;}
.y911_c00003{bottom:779.101500px;}
.y1ae_c00003{bottom:779.161500px;}
.y2f5_c00003{bottom:779.338500px;}
.y109_c00003{bottom:779.518500px;}
.y9e5_c00003{bottom:779.641500px;}
.yb38_c00003{bottom:780.000000px;}
.y236_c00003{bottom:780.058500px;}
.y961_c00003{bottom:780.181500px;}
.y128b_c00003{bottom:780.585000px;}
.ye7a_c00003{bottom:780.604350px;}
.yeb0_c00003{bottom:780.606000px;}
.yeb5_c00003{bottom:780.606600px;}
.y12d6_c00003{bottom:780.766500px;}
.ycf_c00003{bottom:780.781500px;}
.y6af_c00003{bottom:781.080000px;}
.y6b3_c00003{bottom:781.080600px;}
.y2f6_c00003{bottom:782.041500px;}
.ye2e_c00003{bottom:782.223000px;}
.y136d_c00003{bottom:782.759640px;}
.y237_c00003{bottom:782.761500px;}
.y10b4_c00003{bottom:783.177000px;}
.y109a_c00003{bottom:783.177450px;}
.y10c1_c00003{bottom:783.177600px;}
.y1080_c00003{bottom:783.178500px;}
.y1069_c00003{bottom:783.179550px;}
.y10de_c00003{bottom:783.929250px;}
.ya7_c00003{bottom:784.023000px;}
.yc93_c00003{bottom:784.024500px;}
.y1236_c00003{bottom:785.083500px;}
.y83_c00003{bottom:785.103000px;}
.y3e_c00003{bottom:785.280300px;}
.y139f_c00003{bottom:785.638500px;}
.yd0f_c00003{bottom:785.805000px;}
.yf26_c00003{bottom:787.065750px;}
.y13be_c00003{bottom:788.340345px;}
.y13dc_c00003{bottom:788.341500px;}
.y1264_c00003{bottom:789.225000px;}
.y61_c00003{bottom:789.609900px;}
.yce8_c00003{bottom:789.765000px;}
.y14b_c00003{bottom:789.961500px;}
.y12df_c00003{bottom:790.144245px;}
.ye76_c00003{bottom:790.144500px;}
.yeb2_c00003{bottom:790.145700px;}
.yb72_c00003{bottom:790.620000px;}
.y1ab_c00003{bottom:790.678500px;}
.yf10_c00003{bottom:791.043000px;}
.y372_c00003{bottom:791.406000px;}
.y136c_c00003{bottom:791.579760px;}
.y369_c00003{bottom:791.581500px;}
.yc9d_c00003{bottom:792.125550px;}
.y1ac_c00003{bottom:793.381500px;}
.ycb7_c00003{bottom:793.545000px;}
.y2f3_c00003{bottom:793.558500px;}
.y234_c00003{bottom:794.278500px;}
.yef9_c00003{bottom:795.362700px;}
.y6ae_c00003{bottom:795.481500px;}
.y12_c00003{bottom:796.081500px;}
.y139e_c00003{bottom:796.260465px;}
.y2f4_c00003{bottom:796.261500px;}
.y108_c00003{bottom:796.621500px;}
.ye11_c00003{bottom:796.623000px;}
.y1308_c00003{bottom:796.803000px;}
.y235_c00003{bottom:796.981500px;}
.yde3_c00003{bottom:797.523000px;}
.yd93_c00003{bottom:797.881500px;}
.ydbe_c00003{bottom:798.781500px;}
.yd62_c00003{bottom:798.963000px;}
.yd3c_c00003{bottom:799.143000px;}
.ye79_c00003{bottom:799.684200px;}
.y136b_c00003{bottom:800.399880px;}
.y13db_c00003{bottom:800.579760px;}
.y13bd_c00003{bottom:800.580000px;}
.ye2f_c00003{bottom:801.123000px;}
.yc56_c00003{bottom:802.380300px;}
.yce_c00003{bottom:802.563000px;}
.y14a_c00003{bottom:802.918500px;}
.y3d_c00003{bottom:803.820600px;}
.yf11_c00003{bottom:803.823000px;}
.y12de_c00003{bottom:804.183900px;}
.y1a9_c00003{bottom:804.898500px;}
.yf12_c00003{bottom:805.263000px;}
.y139d_c00003{bottom:805.620810px;}
.ya6_c00003{bottom:805.803000px;}
.y82_c00003{bottom:806.881500px;}
.yc28_c00003{bottom:806.883750px;}
.yc17_c00003{bottom:807.064500px;}
.y128a_c00003{bottom:807.225000px;}
.y1aa_c00003{bottom:807.603000px;}
.y2f1_c00003{bottom:807.778500px;}
.y60_c00003{bottom:808.149600px;}
.y232_c00003{bottom:808.498500px;}
.y136a_c00003{bottom:809.220000px;}
.ye77_c00003{bottom:809.224350px;}
.yeb1_c00003{bottom:809.226150px;}
.y107_c00003{bottom:809.578500px;}
.yd0e_c00003{bottom:809.745000px;}
.yf0f_c00003{bottom:809.943000px;}
.y2f2_c00003{bottom:810.481500px;}
.y233_c00003{bottom:811.203000px;}
.yc9c_c00003{bottom:811.206000px;}
.y356_c00003{bottom:811.710000px;}
.y1235_c00003{bottom:812.083500px;}
.y13bc_c00003{bottom:812.820000px;}
.yce7_c00003{bottom:813.705000px;}
.y340_c00003{bottom:814.407000px;}
.yfe9_c00003{bottom:814.786350px;}
.y337_c00003{bottom:814.966500px;}
.y139c_c00003{bottom:814.981155px;}
.y1263_c00003{bottom:816.225000px;}
.y149_c00003{bottom:816.958500px;}
.y12a9_c00003{bottom:817.485000px;}
.ye10_c00003{bottom:817.503000px;}
.ycb6_c00003{bottom:817.665000px;}
.y11_c00003{bottom:817.863000px;}
.y1369_c00003{bottom:818.041500px;}
.yde2_c00003{bottom:818.223000px;}
.yd92_c00003{bottom:818.581500px;}
.y1a7_c00003{bottom:819.118500px;}
.ydbd_c00003{bottom:819.663000px;}
.y1307_c00003{bottom:819.663300px;}
.yd61_c00003{bottom:819.843000px;}
.yd3b_c00003{bottom:820.023000px;}
.y1a8_c00003{bottom:821.821500px;}
.y2ef_c00003{bottom:821.998500px;}
.y3c_c00003{bottom:822.360900px;}
.yb70_c00003{bottom:822.480000px;}
.y230_c00003{bottom:822.718500px;}
.y106_c00003{bottom:823.618500px;}
.y139b_c00003{bottom:824.341500px;}
.ycd_c00003{bottom:824.343000px;}
.y2f0_c00003{bottom:824.703000px;}
.y13da_c00003{bottom:825.060000px;}
.y231_c00003{bottom:825.421500px;}
.y10df_c00003{bottom:826.170000px;}
.y5f_c00003{bottom:826.689300px;}
.y1368_c00003{bottom:826.860000px;}
.ya5_c00003{bottom:827.581500px;}
.y81_c00003{bottom:828.663000px;}
.yc44_c00003{bottom:828.844500px;}
.yece_c00003{bottom:829.200900px;}
.y7a5_c00003{bottom:829.500150px;}
.y52e_c00003{bottom:829.680150px;}
.y392_c00003{bottom:830.579700px;}
.y6ad_c00003{bottom:830.759700px;}
.yc55_c00003{bottom:830.821050px;}
.y806_c00003{bottom:831.120150px;}
.y148_c00003{bottom:831.178500px;}
.yef8_c00003{bottom:832.803000px;}
.y1a5_c00003{bottom:833.338500px;}
.yd0d_c00003{bottom:833.683500px;}
.y139a_c00003{bottom:833.700000px;}
.ye44_c00003{bottom:833.880600px;}
.y1289_c00003{bottom:834.225000px;}
.yc92_c00003{bottom:834.244500px;}
.y1367_c00003{bottom:835.680000px;}
.y1a6_c00003{bottom:836.041500px;}
.y2ed_c00003{bottom:836.218500px;}
.y22e_c00003{bottom:836.938500px;}
.y13bb_c00003{bottom:837.300000px;}
.yce6_c00003{bottom:837.645000px;}
.y105_c00003{bottom:837.838500px;}
.yeaf_c00003{bottom:837.844500px;}
.ye74_c00003{bottom:837.844650px;}
.ye0f_c00003{bottom:838.381500px;}
.y34d_c00003{bottom:838.666500px;}
.yf25_c00003{bottom:838.905450px;}
.y2ee_c00003{bottom:838.921500px;}
.y1233_c00003{bottom:839.083500px;}
.yde1_c00003{bottom:839.103000px;}
.ye2c_c00003{bottom:839.284050px;}
.yd91_c00003{bottom:839.463000px;}
.y22f_c00003{bottom:839.641500px;}
.y10_c00003{bottom:839.643000px;}
.yf2b_c00003{bottom:839.700000px;}
.y12bf_c00003{bottom:840.300000px;}
.ydbc_c00003{bottom:840.363000px;}
.yd60_c00003{bottom:840.543000px;}
.y3b_c00003{bottom:840.901200px;}
.yd3a_c00003{bottom:840.903000px;}
.yf0e_c00003{bottom:841.083600px;}
.ycb5_c00003{bottom:841.605000px;}
.y1344_c00003{bottom:841.800000px;}
.yc9b_c00003{bottom:842.344500px;}
.y1306_c00003{bottom:842.522817px;}
.y1399_c00003{bottom:843.060000px;}
.y1262_c00003{bottom:843.225000px;}
.yfe8_c00003{bottom:843.226650px;}
.y90f_c00003{bottom:843.360000px;}
.y12be_c00003{bottom:843.541500px;}
.y33f_c00003{bottom:843.699150px;}
.y8cb_c00003{bottom:843.900000px;}
.y95f_c00003{bottom:844.441500px;}
.y5e_c00003{bottom:845.229000px;}
.y147_c00003{bottom:845.398500px;}
.y7a4_c00003{bottom:845.880000px;}
.y52d_c00003{bottom:846.060000px;}
.ycc_c00003{bottom:846.123000px;}
.y391_c00003{bottom:846.420000px;}
.y805_c00003{bottom:846.600000px;}
.y6ac_c00003{bottom:847.320000px;}
.y1a3_c00003{bottom:847.558500px;}
.y1343_c00003{bottom:848.458500px;}
.ya4_c00003{bottom:849.363000px;}
.y13ba_c00003{bottom:849.541500px;}
.y1a4_c00003{bottom:850.261500px;}
.y2eb_c00003{bottom:850.438500px;}
.y80_c00003{bottom:850.443000px;}
.y22c_c00003{bottom:851.158500px;}
.y104_c00003{bottom:852.058500px;}
.y1398_c00003{bottom:852.420000px;}
.y2ec_c00003{bottom:853.141500px;}
.y1366_c00003{bottom:853.320000px;}
.y22d_c00003{bottom:853.861500px;}
.yc16_c00003{bottom:855.844350px;}
.ye73_c00003{bottom:856.744050px;}
.yead_c00003{bottom:856.744500px;}
.yd0c_c00003{bottom:857.851500px;}
.y1342_c00003{bottom:858.000720px;}
.ye2b_c00003{bottom:858.364500px;}
.ye0e_c00003{bottom:859.081500px;}
.y3a_c00003{bottom:859.441500px;}
.y146_c00003{bottom:859.618500px;}
.yde0_c00003{bottom:859.803000px;}
.yf0d_c00003{bottom:859.983000px;}
.yd90_c00003{bottom:860.343000px;}
.ydbb_c00003{bottom:861.243000px;}
.yc9a_c00003{bottom:861.244500px;}
.y1288_c00003{bottom:861.271500px;}
.yf_c00003{bottom:861.423000px;}
.yd39_c00003{bottom:861.603000px;}
.y1a1_c00003{bottom:861.778500px;}
.y1397_c00003{bottom:861.780000px;}
.yce5_c00003{bottom:861.811500px;}
.y12a8_c00003{bottom:862.171500px;}
.yc27_c00003{bottom:862.325100px;}
.yef7_c00003{bottom:862.684050px;}
.ye6c_c00003{bottom:863.764500px;}
.y5d_c00003{bottom:863.768700px;}
.y1a2_c00003{bottom:864.481500px;}
.y2e9_c00003{bottom:864.658500px;}
.y22a_c00003{bottom:865.378500px;}
.ycb4_c00003{bottom:865.591500px;}
.y35a_c00003{bottom:865.620000px;}
.y1232_c00003{bottom:866.131500px;}
.y103_c00003{bottom:866.278500px;}
.ye70_c00003{bottom:866.283000px;}
.ye75_c00003{bottom:866.284950px;}
.y1341_c00003{bottom:866.460480px;}
.y2ea_c00003{bottom:867.361500px;}
.yef1_c00003{bottom:867.362700px;}
.ye2d_c00003{bottom:867.724350px;}
.ycb_c00003{bottom:867.903000px;}
.y22b_c00003{bottom:868.081500px;}
.yc13_c00003{bottom:870.064650px;}
.y1261_c00003{bottom:870.271500px;}
.y1365_c00003{bottom:870.960000px;}
.ya3_c00003{bottom:871.143000px;}
.y7f_c00003{bottom:872.223000px;}
.y13b9_c00003{bottom:874.020000px;}
.y12dd_c00003{bottom:874.024200px;}
.y1340_c00003{bottom:874.920240px;}
.ye72_c00003{bottom:875.823900px;}
.yeae_c00003{bottom:875.824950px;}
.y19f_c00003{bottom:875.998500px;}
.y145_c00003{bottom:876.721500px;}
.yef0_c00003{bottom:876.903000px;}
.y39_c00003{bottom:877.981800px;}
.y1a0_c00003{bottom:878.703000px;}
.y2e7_c00003{bottom:878.878500px;}
.yc43_c00003{bottom:879.064500px;}
.y228_c00003{bottom:879.598500px;}
.y1364_c00003{bottom:879.780000px;}
.ye0d_c00003{bottom:879.963000px;}
.y1396_c00003{bottom:880.500000px;}
.yddf_c00003{bottom:880.681500px;}
.yd8f_c00003{bottom:881.043000px;}
.y2e8_c00003{bottom:881.581500px;}
.yef6_c00003{bottom:881.764500px;}
.yd0b_c00003{bottom:881.791500px;}
.ydba_c00003{bottom:882.123000px;}
.y229_c00003{bottom:882.303000px;}
.y5c_c00003{bottom:882.308400px;}
.yd38_c00003{bottom:882.481500px;}
.ye6b_c00003{bottom:882.664500px;}
.ye_c00003{bottom:883.203000px;}
.y133f_c00003{bottom:883.380000px;}
.y102_c00003{bottom:883.381500px;}
.yc91_c00003{bottom:884.283000px;}
.yc15_c00003{bottom:884.284050px;}
.y1305_c00003{bottom:884.463117px;}
.yce4_c00003{bottom:885.751500px;}
.y13b8_c00003{bottom:886.261500px;}
.yc54_c00003{bottom:886.261800px;}
.y1287_c00003{bottom:888.271500px;}
.y1363_c00003{bottom:888.600000px;}
.yc12_c00003{bottom:889.144500px;}
.y12a7_c00003{bottom:889.171500px;}
.y144_c00003{bottom:889.678500px;}
.yca_c00003{bottom:889.681500px;}
.ycb3_c00003{bottom:889.711500px;}
.y1395_c00003{bottom:889.860000px;}
.y19d_c00003{bottom:890.218500px;}
.yf0c_c00003{bottom:891.126150px;}
.y133e_c00003{bottom:891.841500px;}
.yc3d_c00003{bottom:892.203150px;}
.yc99_c00003{bottom:892.383000px;}
.y19e_c00003{bottom:892.921500px;}
.ya2_c00003{bottom:892.923000px;}
.y2e5_c00003{bottom:893.098500px;}
.y1231_c00003{bottom:893.131500px;}
.y226_c00003{bottom:893.818500px;}
.y7e_c00003{bottom:894.003000px;}
.ye71_c00003{bottom:894.723300px;}
.yfe7_c00003{bottom:895.111950px;}
.yfee_c00003{bottom:895.320000px;}
.y2e6_c00003{bottom:895.803000px;}
.y101_c00003{bottom:896.338500px;}
.y38_c00003{bottom:896.522100px;}
.y227_c00003{bottom:896.523000px;}
.y1260_c00003{bottom:897.271500px;}
.y13d9_c00003{bottom:898.500000px;}
.y13b7_c00003{bottom:898.501260px;}
.y1394_c00003{bottom:899.220000px;}
.y133d_c00003{bottom:900.300000px;}
.ye0c_c00003{bottom:900.663000px;}
.y5b_c00003{bottom:900.848100px;}
.ydde_c00003{bottom:901.563000px;}
.yd8e_c00003{bottom:901.923000px;}
.ydb9_c00003{bottom:902.823000px;}
.yd5f_c00003{bottom:903.003000px;}
.yd37_c00003{bottom:903.181500px;}
.y143_c00003{bottom:903.718500px;}
.y19b_c00003{bottom:904.438500px;}
.yeab_c00003{bottom:904.445100px;}
.yd_c00003{bottom:904.981500px;}
.yd0a_c00003{bottom:905.731500px;}
.ye2a_c00003{bottom:906.065550px;}
.y1362_c00003{bottom:906.241500px;}
.y19c_c00003{bottom:907.141500px;}
.y2e3_c00003{bottom:907.318500px;}
.y224_c00003{bottom:908.038500px;}
.y133c_c00003{bottom:908.761500px;}
.yce3_c00003{bottom:909.691500px;}
.y2e4_c00003{bottom:910.023000px;}
.yf0b_c00003{bottom:910.206000px;}
.y100_c00003{bottom:910.378500px;}
.y13d8_c00003{bottom:910.740345px;}
.y225_c00003{bottom:910.741500px;}
.yc3c_c00003{bottom:911.283000px;}
.yc9_c00003{bottom:911.463000px;}
.yef5_c00003{bottom:912.723150px;}
.yc14_c00003{bottom:912.724350px;}
.ycb1_c00003{bottom:913.651500px;}
.ya1_c00003{bottom:914.703000px;}
.y37_c00003{bottom:915.062400px;}
.y1286_c00003{bottom:915.271500px;}
.ye28_c00003{bottom:915.426000px;}
.y7d_c00003{bottom:915.781500px;}
.y1376_c00003{bottom:916.138500px;}
.y12a6_c00003{bottom:916.171500px;}
.y133b_c00003{bottom:917.220000px;}
.y142_c00003{bottom:917.938500px;}
.y1393_c00003{bottom:917.941500px;}
.y199_c00003{bottom:918.658500px;}
.y5a_c00003{bottom:919.387800px;}
.y1230_c00003{bottom:920.131500px;}
.y19a_c00003{bottom:921.361500px;}
.y2e1_c00003{bottom:921.538500px;}
.ye0b_c00003{bottom:921.543000px;}
.y222_c00003{bottom:922.258500px;}
.yddd_c00003{bottom:922.263000px;}
.yd8d_c00003{bottom:922.623000px;}
.y13b6_c00003{bottom:922.980000px;}
.ye6a_c00003{bottom:923.344500px;}
.yeaa_c00003{bottom:923.524950px;}
.ye6f_c00003{bottom:923.526000px;}
.ydb8_c00003{bottom:923.703000px;}
.y1361_c00003{bottom:923.880000px;}
.yd5e_c00003{bottom:923.881500px;}
.yd36_c00003{bottom:924.063000px;}
.y2e2_c00003{bottom:924.241500px;}
.y125f_c00003{bottom:924.271500px;}
.yff_c00003{bottom:924.598500px;}
.y223_c00003{bottom:924.961500px;}
.yc90_c00003{bottom:924.964500px;}
.y133a_c00003{bottom:925.680000px;}
.yc5b_c00003{bottom:925.683000px;}
.yc_c00003{bottom:926.763000px;}
.y1392_c00003{bottom:927.300000px;}
.y37c_c00003{bottom:928.335000px;}
.y365_c00003{bottom:928.516500px;}
.yc42_c00003{bottom:929.106000px;}
.yd09_c00003{bottom:929.851500px;}
.y1304_c00003{bottom:930.182667px;}
.yef4_c00003{bottom:931.803000px;}
.y141_c00003{bottom:932.158500px;}
.yeee_c00003{bottom:932.526000px;}
.y1360_c00003{bottom:932.700000px;}
.y197_c00003{bottom:932.878500px;}
.yea7_c00003{bottom:933.064500px;}
.yeac_c00003{bottom:933.065250px;}
.yc8_c00003{bottom:933.243000px;}
.y36_c00003{bottom:933.602700px;}
.yce2_c00003{bottom:933.811500px;}
.yeed_c00003{bottom:933.963300px;}
.yeef_c00003{bottom:933.964500px;}
.y1339_c00003{bottom:934.141500px;}
.ye29_c00003{bottom:934.505850px;}
.y13d7_c00003{bottom:935.220000px;}
.y13b5_c00003{bottom:935.221260px;}
.y198_c00003{bottom:935.581500px;}
.y2df_c00003{bottom:935.758500px;}
.y220_c00003{bottom:936.478500px;}
.ya0_c00003{bottom:936.481500px;}
.y1391_c00003{bottom:936.661500px;}
.y38f_c00003{bottom:937.500000px;}
.y7c_c00003{bottom:937.563000px;}
.ycaf_c00003{bottom:937.591500px;}
.y59_c00003{bottom:937.927500px;}
.y2e0_c00003{bottom:938.461500px;}
.yfe_c00003{bottom:938.818500px;}
.y221_c00003{bottom:939.181500px;}
.yc98_c00003{bottom:941.346000px;}
.y135f_c00003{bottom:941.520000px;}
.ye0a_c00003{bottom:942.243000px;}
.y1285_c00003{bottom:942.271500px;}
.yea9_c00003{bottom:942.424950px;}
.ye6d_c00003{bottom:942.426000px;}
.y1338_c00003{bottom:942.600000px;}
.yddc_c00003{bottom:943.143000px;}
.y12a5_c00003{bottom:943.171500px;}
.yd8c_c00003{bottom:943.503000px;}
.y12dc_c00003{bottom:943.683900px;}
.yc8f_c00003{bottom:943.864500px;}
.ydb7_c00003{bottom:944.403000px;}
.yd5d_c00003{bottom:944.581500px;}
.yd34_c00003{bottom:944.763000px;}
.y1390_c00003{bottom:946.020000px;}
.y140_c00003{bottom:946.378500px;}
.y195_c00003{bottom:947.098500px;}
.y122f_c00003{bottom:947.131500px;}
.y13d6_c00003{bottom:947.460345px;}
.y13b4_c00003{bottom:947.461500px;}
.y196_c00003{bottom:949.803000px;}
.y2dd_c00003{bottom:949.978500px;}
.y135e_c00003{bottom:950.341500px;}
.y21e_c00003{bottom:950.698500px;}
.y1337_c00003{bottom:951.060000px;}
.y125e_c00003{bottom:951.271500px;}
.yc3b_c00003{bottom:951.783000px;}
.y35_c00003{bottom:952.143000px;}
.yc11_c00003{bottom:952.144500px;}
.y2de_c00003{bottom:952.681500px;}
.yfd_c00003{bottom:953.038500px;}
.y21f_c00003{bottom:953.403000px;}
.yd08_c00003{bottom:953.791500px;}
.yc7_c00003{bottom:955.023000px;}
.y138f_c00003{bottom:955.380000px;}
.y58_c00003{bottom:956.467200px;}
.yce1_c00003{bottom:957.751500px;}
.y9f_c00003{bottom:958.263000px;}
.y135d_c00003{bottom:959.161500px;}
.y1336_c00003{bottom:959.520000px;}
.y13b3_c00003{bottom:959.700000px;}
.yc97_c00003{bottom:960.246000px;}
.y193_c00003{bottom:961.318500px;}
.yea8_c00003{bottom:961.504800px;}
.ye6e_c00003{bottom:961.505850px;}
.ycad_c00003{bottom:961.711500px;}
.yeec_c00003{bottom:962.582850px;}
.ye09_c00003{bottom:963.123000px;}
.y13f_c00003{bottom:963.481500px;}
.y194_c00003{bottom:964.023000px;}
.y2db_c00003{bottom:964.198500px;}
.yd8b_c00003{bottom:964.203000px;}
.y138e_c00003{bottom:964.741500px;}
.y21c_c00003{bottom:964.918500px;}
.y351_c00003{bottom:964.994700px;}
.yd5c_c00003{bottom:965.463000px;}
.yd33_c00003{bottom:965.643000px;}
.y2dc_c00003{bottom:966.903000px;}
.ydd9_c00003{bottom:967.444500px;}
.y21d_c00003{bottom:967.623000px;}
.y135c_c00003{bottom:967.979880px;}
.y1335_c00003{bottom:967.980000px;}
.y1284_c00003{bottom:969.271500px;}
.yfc_c00003{bottom:970.141500px;}
.y12a4_c00003{bottom:970.171500px;}
.ya_c00003{bottom:970.323000px;}
.y34_c00003{bottom:970.683300px;}
.yef2_c00003{bottom:971.223000px;}
.y13b2_c00003{bottom:971.941500px;}
.ye68_c00003{bottom:972.303000px;}
.ye26_c00003{bottom:972.664500px;}
.y1315_c00003{bottom:973.743240px;}
.y138d_c00003{bottom:974.101155px;}
.y122e_c00003{bottom:974.131500px;}
.yc8e_c00003{bottom:975.003000px;}
.y57_c00003{bottom:975.006900px;}
.y191_c00003{bottom:975.538500px;}
.yc5a_c00003{bottom:975.903000px;}
.y13e_c00003{bottom:976.438500px;}
.y1334_c00003{bottom:976.441500px;}
.y135b_c00003{bottom:976.800000px;}
.yc6_c00003{bottom:976.803000px;}
.yd07_c00003{bottom:977.731500px;}
.ydb0_c00003{bottom:978.064500px;}
.y192_c00003{bottom:978.241500px;}
.y125d_c00003{bottom:978.271500px;}
.y2d9_c00003{bottom:978.418500px;}
.y38e_c00003{bottom:979.012500px;}
.y21a_c00003{bottom:979.138500px;}
.yc41_c00003{bottom:979.144500px;}
.y9e_c00003{bottom:980.043000px;}
.y2da_c00003{bottom:981.123000px;}
.yce0_c00003{bottom:981.691500px;}
.y21b_c00003{bottom:981.841500px;}
.y37b_c00003{bottom:982.786500px;}
.y364_c00003{bottom:982.966500px;}
.yfb_c00003{bottom:983.098500px;}
.y138c_c00003{bottom:983.461500px;}
.yddb_c00003{bottom:983.823000px;}
.ye04_c00003{bottom:984.003000px;}
.y13b1_c00003{bottom:984.180000px;}
.ydb6_c00003{bottom:984.543000px;}
.y1333_c00003{bottom:984.900000px;}
.yd8a_c00003{bottom:985.081500px;}
.yef3_c00003{bottom:985.444500px;}
.y135a_c00003{bottom:985.620000px;}
.yca2_c00003{bottom:985.651500px;}
.y350_c00003{bottom:986.378550px;}
.yd31_c00003{bottom:986.523000px;}
.ye69_c00003{bottom:986.526000px;}
.ye27_c00003{bottom:986.884500px;}
.ydd8_c00003{bottom:987.426000px;}
.ydb5_c00003{bottom:988.144500px;}
.y33_c00003{bottom:989.223000px;}
.y18f_c00003{bottom:989.758500px;}
.y13d_c00003{bottom:990.478500px;}
.y9_c00003{bottom:992.103000px;}
.y190_c00003{bottom:992.461500px;}
.y2d7_c00003{bottom:992.638500px;}
.y138b_c00003{bottom:992.820000px;}
.y218_c00003{bottom:993.358500px;}
.y1332_c00003{bottom:993.361500px;}
.y56_c00003{bottom:993.546600px;}
.yc8d_c00003{bottom:993.903000px;}
.y1359_c00003{bottom:994.441380px;}
.y2d8_c00003{bottom:995.341500px;}
.y219_c00003{bottom:996.061500px;}
.y1283_c00003{bottom:996.271500px;}
.y13d5_c00003{bottom:996.420000px;}
.yf9_c00003{bottom:997.138500px;}
.ye08_c00003{bottom:997.503000px;}
.ydaf_c00003{bottom:998.223000px;}
.yc5_c00003{bottom:998.581500px;}
.yc96_c00003{bottom:999.664500px;}
.yc3a_c00003{bottom:1000.746000px;}
.yc0f_c00003{bottom:1001.106000px;}
.y122d_c00003{bottom:1001.131500px;}
.y38c_c00003{bottom:1001.473500px;}
.y1331_c00003{bottom:1001.820000px;}
.y9d_c00003{bottom:1001.823000px;}
.yd06_c00003{bottom:1001.851500px;}
.y138a_c00003{bottom:1002.181155px;}
.y38b_c00003{bottom:1002.553500px;}
.y1358_c00003{bottom:1003.261500px;}
.ydfb_c00003{bottom:1003.803000px;}
.y18d_c00003{bottom:1003.978500px;}
.y13c_c00003{bottom:1004.698500px;}
.y125c_c00003{bottom:1005.271500px;}
.yd5b_c00003{bottom:1005.603000px;}
.ycd6_c00003{bottom:1005.811500px;}
.yd82_c00003{bottom:1005.963000px;}
.y18e_c00003{bottom:1006.681500px;}
.y2d5_c00003{bottom:1006.858500px;}
.y7b_c00003{bottom:1007.403000px;}
.y216_c00003{bottom:1007.578500px;}
.y34f_c00003{bottom:1007.583000px;}
.y32_c00003{bottom:1007.763300px;}
.ydb4_c00003{bottom:1008.123000px;}
.y13b0_c00003{bottom:1008.661500px;}
.y12da_c00003{bottom:1008.664350px;}
.yd59_c00003{bottom:1009.206000px;}
.y2d6_c00003{bottom:1009.561500px;}
.y1375_c00003{bottom:1010.280000px;}
.y217_c00003{bottom:1010.281500px;}
.yf8_c00003{bottom:1011.358500px;}
.y1389_c00003{bottom:1011.541500px;}
.y55_c00003{bottom:1012.086300px;}
.y7_c00003{bottom:1013.881500px;}
.yc95_c00003{bottom:1013.884500px;}
.yc39_c00003{bottom:1014.964500px;}
.yc0e_c00003{bottom:1015.323000px;}
.ydd5_c00003{bottom:1017.484500px;}
.y33d_c00003{bottom:1017.828000px;}
.y18b_c00003{bottom:1018.198500px;}
.ydab_c00003{bottom:1018.206000px;}
.y379_c00003{bottom:1018.725000px;}
.y1330_c00003{bottom:1018.741500px;}
.y362_c00003{bottom:1018.905000px;}
.y13b_c00003{bottom:1018.918500px;}
.y1303_c00003{bottom:1019.282700px;}
.yd87_c00003{bottom:1019.464500px;}
.ydfe_c00003{bottom:1020.003000px;}
.yc4_c00003{bottom:1020.363000px;}
.y1357_c00003{bottom:1020.900000px;}
.y18c_c00003{bottom:1020.903000px;}
.y2d3_c00003{bottom:1021.078500px;}
.y214_c00003{bottom:1021.798500px;}
.y1282_c00003{bottom:1023.271500px;}
.y9c_c00003{bottom:1023.603000px;}
.y2d4_c00003{bottom:1023.781500px;}
.ydda_c00003{bottom:1023.963000px;}
.y215_c00003{bottom:1024.503000px;}
.ydb3_c00003{bottom:1024.681500px;}
.yc58_c00003{bottom:1024.684500px;}
.yf7_c00003{bottom:1025.578500px;}
.yd58_c00003{bottom:1025.581500px;}
.yd89_c00003{bottom:1025.763000px;}
.yd01_c00003{bottom:1025.791500px;}
.y31_c00003{bottom:1026.303000px;}
.yd30_c00003{bottom:1026.481500px;}
.y1374_c00003{bottom:1027.200000px;}
.y132f_c00003{bottom:1027.201155px;}
.ydd7_c00003{bottom:1027.564500px;}
.yc3f_c00003{bottom:1028.103000px;}
.y122c_c00003{bottom:1028.131500px;}
.ydb2_c00003{bottom:1028.283000px;}
.y7a_c00003{bottom:1029.184500px;}
.yd81_c00003{bottom:1029.364500px;}
.yc10_c00003{bottom:1029.544500px;}
.y1356_c00003{bottom:1029.720000px;}
.yd2d_c00003{bottom:1030.084500px;}
.y1388_c00003{bottom:1030.261500px;}
.y54_c00003{bottom:1030.626000px;}
.y12d9_c00003{bottom:1030.984500px;}
.y125b_c00003{bottom:1032.271500px;}
.y13a_c00003{bottom:1033.138500px;}
.y13af_c00003{bottom:1033.141500px;}
.yc8b_c00003{bottom:1033.323000px;}
.ye07_c00003{bottom:1034.043000px;}
.ydae_c00003{bottom:1034.581500px;}
.y2d1_c00003{bottom:1035.298500px;}
.y132e_c00003{bottom:1035.661500px;}
.y6_c00003{bottom:1035.663000px;}
.y212_c00003{bottom:1036.018500px;}
.y187_c00003{bottom:1036.202970px;}
.y18a_c00003{bottom:1036.203000px;}
.y189_c00003{bottom:1037.281500px;}
.ye06_c00003{bottom:1037.644500px;}
.y2d2_c00003{bottom:1038.003000px;}
.ydad_c00003{bottom:1038.184500px;}
.y1355_c00003{bottom:1038.541500px;}
.y213_c00003{bottom:1038.723000px;}
.yc57_c00003{bottom:1038.903000px;}
.yd55_c00003{bottom:1039.264500px;}
.yd86_c00003{bottom:1039.444500px;}
.y1387_c00003{bottom:1039.620000px;}
.yf6_c00003{bottom:1039.798500px;}
.yd7a_c00003{bottom:1040.164500px;}
.y378_c00003{bottom:1041.187500px;}
.y361_c00003{bottom:1041.367500px;}
.y30_c00003{bottom:1041.423000px;}
.yc3_c00003{bottom:1042.143000px;}
.yc3e_c00003{bottom:1042.323000px;}
.y188_c00003{bottom:1042.681500px;}
.yeeb_c00003{bottom:1043.403000px;}
.y38a_c00003{bottom:1044.064500px;}
.y132d_c00003{bottom:1044.120000px;}
.y13ae_c00003{bottom:1045.380000px;}
.yd5a_c00003{bottom:1045.563000px;}
.yc8a_c00003{bottom:1047.544500px;}
.ydb1_c00003{bottom:1048.264500px;}
.y1386_c00003{bottom:1048.980000px;}
.yd57_c00003{bottom:1049.164500px;}
.y53_c00003{bottom:1049.165700px;}
.y2cf_c00003{bottom:1049.518500px;}
.yd80_c00003{bottom:1049.526000px;}
.y210_c00003{bottom:1050.238500px;}
.y139_c00003{bottom:1050.241500px;}
.yd2c_c00003{bottom:1050.246000px;}
.y127c_c00003{bottom:1050.271500px;}
.y2d0_c00003{bottom:1052.223000px;}
.y132c_c00003{bottom:1052.580000px;}
.y211_c00003{bottom:1052.941500px;}
.yc59_c00003{bottom:1053.123000px;}
.y12d8_c00003{bottom:1053.484500px;}
.y12a3_c00003{bottom:1053.872400px;}
.y1302_c00003{bottom:1054.203000px;}
.ydac_c00003{bottom:1054.743000px;}
.y122a_c00003{bottom:1055.131500px;}
.ye01_c00003{bottom:1055.823000px;}
.y1354_c00003{bottom:1056.180000px;}
.yd7b_c00003{bottom:1056.543000px;}
.yc40_c00003{bottom:1056.544500px;}
.yf5_c00003{bottom:1056.903000px;}
.y4_c00003{bottom:1057.443000px;}
.y13ad_c00003{bottom:1057.620000px;}
.ye05_c00003{bottom:1057.623000px;}
.y1385_c00003{bottom:1058.341500px;}
.ye00_c00003{bottom:1058.346000px;}
.y1256_c00003{bottom:1059.271500px;}
.yd7c_c00003{bottom:1059.426000px;}
.yd28_c00003{bottom:1060.144500px;}
.y132b_c00003{bottom:1061.041500px;}
.yc8c_c00003{bottom:1061.764500px;}
.y138_c00003{bottom:1063.198500px;}
.y377_c00003{bottom:1063.653000px;}
.y2cd_c00003{bottom:1063.738500px;}
.y360_c00003{bottom:1063.830000px;}
.ydd6_c00003{bottom:1064.103000px;}
.y20e_c00003{bottom:1064.458500px;}
.y1353_c00003{bottom:1065.000000px;}
.yd56_c00003{bottom:1065.723000px;}
.yd88_c00003{bottom:1065.903000px;}
.y17c_c00003{bottom:1066.081500px;}
.y2ce_c00003{bottom:1066.441500px;}
.yd2f_c00003{bottom:1066.623000px;}
.y20f_c00003{bottom:1067.161500px;}
.y184_c00003{bottom:1067.162640px;}
.y9b_c00003{bottom:1067.163000px;}
.y1384_c00003{bottom:1067.700000px;}
.y52_c00003{bottom:1067.706000px;}
.y79_c00003{bottom:1069.323000px;}
.y132a_c00003{bottom:1069.500000px;}
.yd7f_c00003{bottom:1069.503000px;}
.yf4_c00003{bottom:1069.858500px;}
.y13ac_c00003{bottom:1069.861500px;}
.yd2b_c00003{bottom:1070.223000px;}
.y12f0_c00003{bottom:1071.484500px;}
.y1352_c00003{bottom:1073.820000px;}
.y12a2_c00003{bottom:1074.932100px;}
.yd85_c00003{bottom:1075.981500px;}
.y1383_c00003{bottom:1077.061500px;}
.y137_c00003{bottom:1077.238500px;}
.y2cb_c00003{bottom:1077.958500px;}
.y1329_c00003{bottom:1077.961500px;}
.y1314_c00003{bottom:1078.502940px;}
.y2e_c00003{bottom:1078.503000px;}
.y20c_c00003{bottom:1078.678500px;}
.yd84_c00003{bottom:1079.584500px;}
.yd79_c00003{bottom:1080.303000px;}
.y2cc_c00003{bottom:1080.661500px;}
.y20d_c00003{bottom:1081.381500px;}
.y183_c00003{bottom:1081.382760px;}
.y13ab_c00003{bottom:1082.100000px;}
.y1226_c00003{bottom:1082.131500px;}
.y1351_c00003{bottom:1082.641500px;}
.y51_c00003{bottom:1082.823000px;}
.yf2_c00003{bottom:1083.898500px;}
.ye43_c00003{bottom:1084.266600px;}
.yc26_c00003{bottom:1084.268100px;}
.yc0d_c00003{bottom:1085.700600px;}
.y389_c00003{bottom:1085.754000px;}
.ye03_c00003{bottom:1086.063000px;}
.y376_c00003{bottom:1086.112500px;}
.y35f_c00003{bottom:1086.294000px;}
.y1328_c00003{bottom:1086.420000px;}
.yd29_c00003{bottom:1086.603000px;}
.y1301_c00003{bottom:1089.123117px;}
.yd7e_c00003{bottom:1089.664500px;}
.yd2e_c00003{bottom:1090.206000px;}
.y12db_c00003{bottom:1090.564350px;}
.y136_c00003{bottom:1091.458500px;}
.y1350_c00003{bottom:1091.461500px;}
.y2c9_c00003{bottom:1092.178500px;}
.y20a_c00003{bottom:1092.898500px;}
.y17f_c00003{bottom:1094.161410px;}
.y13aa_c00003{bottom:1094.341260px;}
.y13d4_c00003{bottom:1094.341500px;}
.y1327_c00003{bottom:1094.880000px;}
.y2ca_c00003{bottom:1094.881500px;}
.y182_c00003{bottom:1095.602880px;}
.y20b_c00003{bottom:1095.603000px;}
.y1382_c00003{bottom:1095.781500px;}
.y12a1_c00003{bottom:1095.812550px;}
.yd83_c00003{bottom:1095.963000px;}
.ydfd_c00003{bottom:1096.681500px;}
.yf1_c00003{bottom:1097.938500px;}
.yda9_c00003{bottom:1098.120900px;}
.ydaa_c00003{bottom:1098.123000px;}
.ye02_c00003{bottom:1099.564500px;}
.y134f_c00003{bottom:1100.281500px;}
.ydff_c00003{bottom:1100.284500px;}
.yf0_c00003{bottom:1102.441500px;}
.y1326_c00003{bottom:1103.341500px;}
.y1381_c00003{bottom:1105.141500px;}
.y3_c00003{bottom:1105.503000px;}
.y135_c00003{bottom:1105.678500px;}
.yd7d_c00003{bottom:1106.043000px;}
.y2c7_c00003{bottom:1106.398500px;}
.y13d3_c00003{bottom:1106.580360px;}
.y13a6_c00003{bottom:1106.581500px;}
.y209_c00003{bottom:1107.118500px;}
.yc2_c00003{bottom:1107.481500px;}
.y388_c00003{bottom:1108.216500px;}
.y17e_c00003{bottom:1108.381530px;}
.y186_c00003{bottom:1108.382820px;}
.y37a_c00003{bottom:1108.395000px;}
.y363_c00003{bottom:1108.575000px;}
.y134e_c00003{bottom:1109.100000px;}
.y2c8_c00003{bottom:1109.103000px;}
.y387_c00003{bottom:1109.293500px;}
.y181_c00003{bottom:1109.823000px;}
.y33e_c00003{bottom:1110.910650px;}
.y1325_c00003{bottom:1111.800000px;}
.y12ef_c00003{bottom:1112.344500px;}
.ye42_c00003{bottom:1112.706900px;}
.yc25_c00003{bottom:1112.707800px;}
.y78_c00003{bottom:1112.881500px;}
.yc0c_c00003{bottom:1114.320750px;}
.y1380_c00003{bottom:1114.500990px;}
.y9a_c00003{bottom:1116.304500px;}
.y12a0_c00003{bottom:1116.872250px;}
.y134d_c00003{bottom:1117.920120px;}
.y13cd_c00003{bottom:1118.820000px;}
.y13d2_c00003{bottom:1118.820015px;}
.y13a7_c00003{bottom:1118.821155px;}
.yd53_c00003{bottom:1119.000750px;}
.yd54_c00003{bottom:1119.003000px;}
.yda8_c00003{bottom:1119.181200px;}
.yee_c00003{bottom:1119.898500px;}
.y4f_c00003{bottom:1119.903000px;}
.y2d_c00003{bottom:1120.084500px;}
.y1324_c00003{bottom:1120.261500px;}
.y2c5_c00003{bottom:1120.618500px;}
.y180_c00003{bottom:1121.158500px;}
.y207_c00003{bottom:1121.338500px;}
.y17d_c00003{bottom:1122.601650px;}
.y185_c00003{bottom:1122.602940px;}
.y2c6_c00003{bottom:1123.323000px;}
.y137f_c00003{bottom:1123.861335px;}
.y137a_c00003{bottom:1123.861350px;}
.y208_c00003{bottom:1124.043000px;}
.y1300_c00003{bottom:1124.043300px;}
.yed_c00003{bottom:1124.403000px;}
.y134c_c00003{bottom:1126.740240px;}
.y1347_c00003{bottom:1126.740300px;}
.y1373_c00003{bottom:1128.720000px;}
.y1323_c00003{bottom:1128.721140px;}
.ye2_c00003{bottom:1129.443000px;}
.y13ce_c00003{bottom:1131.060240px;}
.y13d1_c00003{bottom:1131.060255px;}
.y13a9_c00003{bottom:1131.061395px;}
.y137e_c00003{bottom:1133.221095px;}
.y137b_c00003{bottom:1133.221110px;}
.y77_c00003{bottom:1134.661500px;}
.y2c3_c00003{bottom:1134.838500px;}
.y205_c00003{bottom:1135.558500px;}
.y134b_c00003{bottom:1135.560360px;}
.y1348_c00003{bottom:1135.560420px;}
.y134_c00003{bottom:1137.003000px;}
.y1322_c00003{bottom:1137.180900px;}
.y131d_c00003{bottom:1137.181500px;}
.y2c4_c00003{bottom:1137.543000px;}
.y129f_c00003{bottom:1137.961950px;}
.y206_c00003{bottom:1138.261500px;}
.yca1_c00003{bottom:1139.943750px;}
.yd26_c00003{bottom:1140.061050px;}
.yd27_c00003{bottom:1140.066000px;}
.ye41_c00003{bottom:1141.328250px;}
.yc24_c00003{bottom:1141.329750px;}
.yec_c00003{bottom:1141.858500px;}
.y137d_c00003{bottom:1142.580855px;}
.y1255_c00003{bottom:1143.000600px;}
.y13d0_c00003{bottom:1143.299910px;}
.y13a8_c00003{bottom:1143.301050px;}
.y134a_c00003{bottom:1144.380480px;}
.y1_c00003{bottom:1144.381500px;}
.y1321_c00003{bottom:1145.641245px;}
.y131e_c00003{bottom:1145.641260px;}
.y1372_c00003{bottom:1145.641500px;}
.y2c1_c00003{bottom:1149.058500px;}
.y17b_c00003{bottom:1149.778500px;}
.y133_c00003{bottom:1149.958500px;}
.yc0_c00003{bottom:1151.223000px;}
.y2c2_c00003{bottom:1151.761500px;}
.y137c_c00003{bottom:1151.941200px;}
.y204_c00003{bottom:1152.481500px;}
.y1349_c00003{bottom:1153.200600px;}
.y1320_c00003{bottom:1154.101005px;}
.y1371_c00003{bottom:1154.101155px;}
.y13cf_c00003{bottom:1155.540150px;}
.y13a5_c00003{bottom:1156.981500px;}
.y12ff_c00003{bottom:1158.603000px;}
.y99_c00003{bottom:1159.864500px;}
.yca0_c00003{bottom:1161.003450px;}
.yd25_c00003{bottom:1161.120750px;}
.y1379_c00003{bottom:1162.381500px;}
.y131f_c00003{bottom:1162.561350px;}
.y1370_c00003{bottom:1162.561500px;}
.y1346_c00003{bottom:1163.100000px;}
.y1225_c00003{bottom:1163.881050px;}
.y132_c00003{bottom:1163.998500px;}
.y1254_c00003{bottom:1164.060900px;}
.y2c0_c00003{bottom:1166.161500px;}
.y13a3_c00003{bottom:1166.698500px;}
.y203_c00003{bottom:1166.703000px;}
.y131b_c00003{bottom:1170.298500px;}
.y370_c00003{bottom:1182.790500px;}
.y35e_c00003{bottom:1182.970500px;}
.y1313_c00003{bottom:1183.263240px;}
.y383_c00003{bottom:1183.872150px;}
.y1224_c00003{bottom:1184.940750px;}
.y129e_c00003{bottom:1185.300000px;}
.y12ee_c00003{bottom:1193.884500px;}
.y1312_c00003{bottom:1197.123000px;}
.y1253_c00003{bottom:1211.940750px;}
.yeb_c00003{bottom:1219.261500px;}
.h156_c00003{height:7.199415px;}
.h151_c00003{height:7.200000px;}
.h40_c00003{height:7.727340px;}
.h158_c00003{height:8.099415px;}
.h4d_c00003{height:8.998245px;}
.h52_c00003{height:8.998830px;}
.h59_c00003{height:9.000000px;}
.h7c_c00003{height:9.357420px;}
.h71_c00003{height:9.358590px;}
.hb2_c00003{height:9.360345px;}
.h159_c00003{height:10.620120px;}
.hde_c00003{height:11.338470px;}
.hcf_c00003{height:11.339070px;}
.hca_c00003{height:11.339655px;}
.hc8_c00003{height:11.340240px;}
.ha6_c00003{height:11.518365px;}
.h4a_c00003{height:11.698245px;}
.h5f_c00003{height:11.698830px;}
.h49_c00003{height:11.878125px;}
.hce_c00003{height:11.878710px;}
.h1c_c00003{height:11.879880px;}
.h98_c00003{height:12.058590px;}
.h6f_c00003{height:12.237300px;}
.h6e_c00003{height:12.238470px;}
.h7b_c00003{height:12.239070px;}
.h84_c00003{height:12.418365px;}
.hb6_c00003{height:12.418950px;}
.h5d_c00003{height:12.420120px;}
.h38_c00003{height:12.578325px;}
.h3f_c00003{height:12.578910px;}
.h36_c00003{height:12.580665px;}
.h3b_c00003{height:12.758790px;}
.h3e_c00003{height:12.759375px;}
.had_c00003{height:12.779880px;}
.hae_c00003{height:12.780465px;}
.hd8_c00003{height:12.957420px;}
.h1a_c00003{height:12.958590px;}
.h1b_c00003{height:12.959760px;}
.h18_c00003{height:12.960345px;}
.h9c_c00003{height:13.138470px;}
.h17_c00003{height:13.139655px;}
.h19_c00003{height:13.140240px;}
.hba_c00003{height:13.498245px;}
.h79_c00003{height:13.498830px;}
.h78_c00003{height:13.500000px;}
.h9d_c00003{height:13.678710px;}
.ha0_c00003{height:13.679880px;}
.ha8_c00003{height:14.037300px;}
.h69_c00003{height:14.038470px;}
.h62_c00003{height:14.039070px;}
.hab_c00003{height:14.039655px;}
.ha3_c00003{height:14.040240px;}
.ha9_c00003{height:14.218365px;}
.haa_c00003{height:14.218950px;}
.hac_c00003{height:14.220120px;}
.h51_c00003{height:14.398245px;}
.h4f_c00003{height:14.398830px;}
.h5a_c00003{height:14.400000px;}
.h53_c00003{height:14.578125px;}
.h50_c00003{height:14.578710px;}
.h5b_c00003{height:14.579880px;}
.h64_c00003{height:14.580465px;}
.h7d_c00003{height:14.757420px;}
.h5e_c00003{height:14.758590px;}
.h6b_c00003{height:14.759760px;}
.h75_c00003{height:14.760345px;}
.h7f_c00003{height:14.937300px;}
.h73_c00003{height:14.938470px;}
.h74_c00003{height:14.939070px;}
.h77_c00003{height:14.939655px;}
.h76_c00003{height:14.940240px;}
.h87_c00003{height:15.117150px;}
.h86_c00003{height:15.118350px;}
.h88_c00003{height:15.118950px;}
.h89_c00003{height:15.119550px;}
.h9a_c00003{height:15.120150px;}
.h95_c00003{height:15.298200px;}
.h96_c00003{height:15.298800px;}
.h3a_c00003{height:15.632850px;}
.h3d_c00003{height:15.633450px;}
.hdc_c00003{height:15.659250px;}
.hd4_c00003{height:15.659700px;}
.h34_c00003{height:15.813300px;}
.h43_c00003{height:15.814500px;}
.ha_c00003{height:16.920150px;}
.h152_c00003{height:17.959219px;}
.h2a_c00003{height:18.148800px;}
.h2c_c00003{height:18.149400px;}
.h2d_c00003{height:18.150000px;}
.h2b_c00003{height:18.150600px;}
.h153_c00003{height:18.956953px;}
.h154_c00003{height:18.957433px;}
.h155_c00003{height:18.958393px;}
.h157_c00003{height:19.954688px;}
.he4_c00003{height:19.978200px;}
.he5_c00003{height:19.978650px;}
.he8_c00003{height:19.979850px;}
.heb_c00003{height:19.980450px;}
.h39_c00003{height:20.125800px;}
.h3c_c00003{height:20.126400px;}
.he2_c00003{height:20.158650px;}
.h7_c00003{height:20.159250px;}
.h5_c00003{height:20.159700px;}
.h8_c00003{height:20.160300px;}
.h32_c00003{height:20.306250px;}
.he3_c00003{height:20.338500px;}
.hed_c00003{height:20.339100px;}
.he9_c00003{height:20.339700px;}
.he7_c00003{height:20.340300px;}
.h15_c00003{height:21.059250px;}
.h16_c00003{height:21.059700px;}
.h12_c00003{height:21.060300px;}
.hcd_c00003{height:21.471328px;}
.h1e_c00003{height:21.750820px;}
.hbd_c00003{height:23.122969px;}
.h107_c00003{height:23.219550px;}
.h104_c00003{height:23.220150px;}
.h106_c00003{height:23.255250px;}
.h109_c00003{height:23.256450px;}
.h105_c00003{height:23.399400px;}
.h108_c00003{height:23.400000px;}
.h26_c00003{height:23.968386px;}
.hb9_c00003{height:24.774609px;}
.hc_c00003{height:25.379850px;}
.h15a_c00003{height:25.941094px;}
.h15b_c00003{height:25.942054px;}
.h15d_c00003{height:25.943974px;}
.h15c_c00003{height:25.945714px;}
.h136_c00003{height:26.100000px;}
.h138_c00003{height:26.136300px;}
.h129_c00003{height:26.279850px;}
.h12d_c00003{height:26.280450px;}
.h132_c00003{height:26.315100px;}
.h12c_c00003{height:26.315700px;}
.h134_c00003{height:26.316150px;}
.h12f_c00003{height:26.316750px;}
.hc2_c00003{height:26.426250px;}
.ha7_c00003{height:26.983125px;}
.h70_c00003{height:27.641250px;}
.h14a_c00003{height:27.818789px;}
.h139_c00003{height:27.900000px;}
.hcc_c00003{height:27.914455px;}
.hcb_c00003{height:28.077891px;}
.h99_c00003{height:28.299375px;}
.h130_c00003{height:28.324688px;}
.h133_c00003{height:29.159700px;}
.h12e_c00003{height:29.160300px;}
.hd9_c00003{height:29.383635px;}
.h4e_c00003{height:29.615625px;}
.hb8_c00003{height:29.729577px;}
.h13d_c00003{height:29.752734px;}
.h72_c00003{height:30.273750px;}
.h113_c00003{height:30.422813px;}
.hbb_c00003{height:30.852855px;}
.h85_c00003{height:30.931875px;}
.hbc_c00003{height:31.381218px;}
.h11_c00003{height:31.524609px;}
.h2_c00003{height:32.220150px;}
.h1f_c00003{height:32.244141px;}
.h14_c00003{height:32.360977px;}
.h140_c00003{height:32.499141px;}
.h13f_c00003{height:32.520938px;}
.hd7_c00003{height:33.032858px;}
.h42_c00003{height:33.133846px;}
.h41_c00003{height:33.438983px;}
.h37_c00003{height:34.473663px;}
.hb7_c00003{height:34.684545px;}
.h2e_c00003{height:35.061549px;}
.h29_c00003{height:35.686308px;}
.h143_c00003{height:36.104154px;}
.hc9_c00003{height:36.104290px;}
.hb1_c00003{height:36.196875px;}
.hc7_c00003{height:36.336323px;}
.h1d_c00003{height:36.680509px;}
.h7a_c00003{height:36.855055px;}
.ha4_c00003{height:36.886824px;}
.h30_c00003{height:37.090121px;}
.h119_c00003{height:37.415081px;}
.h48_c00003{height:37.437279px;}
.h8c_c00003{height:37.513125px;}
.h11a_c00003{height:37.514854px;}
.hc5_c00003{height:37.745293px;}
.h6c_c00003{height:37.987734px;}
.h8e_c00003{height:37.987872px;}
.h9f_c00003{height:38.171250px;}
.hd2_c00003{height:38.198998px;}
.hd1_c00003{height:38.265226px;}
.h83_c00003{height:38.538419px;}
.h31_c00003{height:38.724692px;}
.h94_c00003{height:39.088966px;}
.h14d_c00003{height:39.116828px;}
.h14e_c00003{height:39.121892px;}
.hd3_c00003{height:39.386615px;}
.hc1_c00003{height:39.639742px;}
.hdb_c00003{height:39.668178px;}
.h25_c00003{height:39.947354px;}
.h149_c00003{height:40.012121px;}
.ha5_c00003{height:40.145625px;}
.h5c_c00003{height:40.803750px;}
.hbf_c00003{height:41.137031px;}
.hea_c00003{height:41.291337px;}
.h6d_c00003{height:41.461985px;}
.h97_c00003{height:42.120055px;}
.hc4_c00003{height:42.606211px;}
.h35_c00003{height:42.610508px;}
.hc6_c00003{height:42.943023px;}
.h145_c00003{height:43.436360px;}
.h146_c00003{height:43.437560px;}
.h128_c00003{height:43.506958px;}
.h4_c00003{height:43.507045px;}
.h12a_c00003{height:43.536137px;}
.ha2_c00003{height:44.094594px;}
.h44_c00003{height:44.149219px;}
.h10d_c00003{height:44.279850px;}
.h14b_c00003{height:44.360156px;}
.h10a_c00003{height:44.460300px;}
.hd5_c00003{height:44.594664px;}
.h47_c00003{height:44.752610px;}
.hb_c00003{height:45.022500px;}
.h10_c00003{height:45.054844px;}
.h6a_c00003{height:45.410625px;}
.h8d_c00003{height:45.410790px;}
.he0_c00003{height:45.695712px;}
.h82_c00003{height:46.068915px;}
.hb5_c00003{height:46.245938px;}
.h12b_c00003{height:46.324688px;}
.h93_c00003{height:46.727040px;}
.h54_c00003{height:46.911206px;}
.h4c_c00003{height:46.913546px;}
.h67_c00003{height:46.915892px;}
.haf_c00003{height:46.975062px;}
.h148_c00003{height:47.176172px;}
.h147_c00003{height:47.239453px;}
.h6_c00003{height:47.545313px;}
.h91_c00003{height:47.569221px;}
.h8f_c00003{height:47.569386px;}
.h7e_c00003{height:47.571561px;}
.hb3_c00003{height:47.571726px;}
.h13e_c00003{height:47.610000px;}
.hc0_c00003{height:47.897578px;}
.hf_c00003{height:48.095156px;}
.h22_c00003{height:48.224531px;}
.hef_c00003{height:48.256875px;}
.h11c_c00003{height:48.361781px;}
.h14c_c00003{height:48.701360px;}
.h10b_c00003{height:49.359540px;}
.h110_c00003{height:49.359704px;}
.h8a_c00003{height:49.668915px;}
.h4b_c00003{height:49.775625px;}
.h9b_c00003{height:50.327040px;}
.he1_c00003{height:50.650313px;}
.h27_c00003{height:51.132557px;}
.h9_c00003{height:52.417969px;}
.h13_c00003{height:53.581289px;}
.h57_c00003{height:54.079725px;}
.h58_c00003{height:54.093825px;}
.h63_c00003{height:54.095625px;}
.h13a_c00003{height:54.186113px;}
.h117_c00003{height:56.957344px;}
.hd_c00003{height:57.256875px;}
.h11d_c00003{height:57.698438px;}
.h127_c00003{height:58.895550px;}
.hd0_c00003{height:59.459358px;}
.h141_c00003{height:60.030000px;}
.h101_c00003{height:60.547500px;}
.h131_c00003{height:60.839700px;}
.he_c00003{height:61.164492px;}
.h2f_c00003{height:61.226808px;}
.hdd_c00003{height:62.762685px;}
.hbe_c00003{height:62.765025px;}
.h144_c00003{height:62.908594px;}
.hda_c00003{height:63.271898px;}
.hdf_c00003{height:63.274238px;}
.hc3_c00003{height:64.923585px;}
.hd6_c00003{height:66.575363px;}
.hf2_c00003{height:66.976395px;}
.hf6_c00003{height:66.978735px;}
.hf1_c00003{height:67.695915px;}
.hf5_c00003{height:67.698255px;}
.h13b_c00003{height:68.827500px;}
.h21_c00003{height:69.715898px;}
.h14f_c00003{height:69.761250px;}
.h150_c00003{height:69.761982px;}
.h135_c00003{height:69.839700px;}
.hb0_c00003{height:70.014114px;}
.h90_c00003{height:71.330310px;}
.h92_c00003{height:71.332485px;}
.ha1_c00003{height:71.332650px;}
.h3_c00003{height:71.982422px;}
.h80_c00003{height:72.049665px;}
.hb4_c00003{height:72.049830px;}
.h81_c00003{height:72.052005px;}
.h8b_c00003{height:72.710295px;}
.h9e_c00003{height:74.807520px;}
.h61_c00003{height:76.430750px;}
.h65_c00003{height:76.433090px;}
.h10f_c00003{height:77.000625px;}
.h137_c00003{height:77.939700px;}
.h28_c00003{height:78.495908px;}
.h116_c00003{height:81.376395px;}
.hff_c00003{height:81.378735px;}
.h100_c00003{height:81.381075px;}
.h66_c00003{height:82.177545px;}
.hfb_c00003{height:85.695915px;}
.hfd_c00003{height:85.698255px;}
.hfa_c00003{height:86.415495px;}
.hfc_c00003{height:86.417835px;}
.h114_c00003{height:86.422515px;}
.h33_c00003{height:87.392111px;}
.he6_c00003{height:90.250312px;}
.h111_c00003{height:90.735015px;}
.hec_c00003{height:90.969833px;}
.hee_c00003{height:90.972173px;}
.h102_c00003{height:98.718750px;}
.h112_c00003{height:100.098255px;}
.h10e_c00003{height:100.259700px;}
.hf7_c00003{height:105.098531px;}
.hf4_c00003{height:105.104531px;}
.hf0_c00003{height:105.110531px;}
.hfe_c00003{height:105.134955px;}
.hf9_c00003{height:105.135015px;}
.hf8_c00003{height:105.137295px;}
.hf3_c00003{height:105.137355px;}
.h115_c00003{height:105.139695px;}
.h60_c00003{height:110.272130px;}
.h68_c00003{height:110.274470px;}
.h56_c00003{height:110.991710px;}
.h55_c00003{height:113.152610px;}
.h10c_c00003{height:120.240300px;}
.h103_c00003{height:140.400000px;}
.h11f_c00003{height:303.660000px;}
.h120_c00003{height:345.240000px;}
.h118_c00003{height:359.280000px;}
.h126_c00003{height:409.500000px;}
.h125_c00003{height:435.240000px;}
.h11b_c00003{height:707.400000px;}
.h123_c00003{height:708.660000px;}
.h124_c00003{height:729.900000px;}
.h11e_c00003{height:741.240000px;}
.h121_c00003{height:803.160000px;}
.h122_c00003{height:855.900000px;}
.h45_c00003{height:892.499700px;}
.h13c_c00003{height:892.499850px;}
.h46_c00003{height:892.500000px;}
.h23_c00003{height:1261.499850px;}
.h24_c00003{height:1261.500000px;}
.h20_c00003{height:1262.879850px;}
.h0_c00003{height:1262.999700px;}
.h142_c00003{height:1262.999850px;}
.h1_c00003{height:1263.000000px;}
.w264_c00003{width:0.179883px;}
.w24d_c00003{width:0.360351px;}
.w255_c00003{width:0.540234px;}
.w249_c00003{width:0.900000px;}
.w273_c00003{width:1.620120px;}
.w243_c00003{width:1.800000px;}
.w240_c00003{width:1.979880px;}
.w259_c00003{width:2.160345px;}
.w201_c00003{width:2.339655px;}
.w22a_c00003{width:2.340240px;}
.w221_c00003{width:2.519535px;}
.w1de_c00003{width:2.520120px;}
.w276_c00003{width:3.420120px;}
.w278_c00003{width:3.600000px;}
.w25c_c00003{width:3.779880px;}
.w26b_c00003{width:3.780465px;}
.w25d_c00003{width:3.959760px;}
.w1ee_c00003{width:4.319535px;}
.w1ef_c00003{width:4.320120px;}
.w229_c00003{width:4.679880px;}
.w20c_c00003{width:4.680465px;}
.w274_c00003{width:4.859760px;}
.w1ea_c00003{width:5.220120px;}
.w166_c00003{width:5.400000px;}
.w42_c00003{width:5.579880px;}
.wc0_c00003{width:5.580465px;}
.wfd_c00003{width:5.759760px;}
.wfe_c00003{width:5.760345px;}
.w22b_c00003{width:5.939655px;}
.w21f_c00003{width:6.120120px;}
.w20b_c00003{width:6.479880px;}
.w20a_c00003{width:6.659760px;}
.w266_c00003{width:6.840240px;}
.w228_c00003{width:7.200000px;}
.w1c3_c00003{width:7.379880px;}
.w1ff_c00003{width:7.380465px;}
.w214_c00003{width:7.559760px;}
.w1d9_c00003{width:7.560345px;}
.w89_c00003{width:7.739655px;}
.w91_c00003{width:7.740240px;}
.wc1_c00003{width:7.919535px;}
.wcf_c00003{width:7.920120px;}
.w10b_c00003{width:8.099415px;}
.wff_c00003{width:8.100000px;}
.w30_c00003{width:8.459760px;}
.w1e_c00003{width:8.460345px;}
.w29_c00003{width:8.639655px;}
.w88_c00003{width:8.819535px;}
.w34_c00003{width:8.820120px;}
.wbc_c00003{width:8.999415px;}
.w33_c00003{width:9.000000px;}
.wf7_c00003{width:9.179880px;}
.wf8_c00003{width:9.180465px;}
.w217_c00003{width:9.359760px;}
.w204_c00003{width:9.360345px;}
.w1c4_c00003{width:9.539655px;}
.w1f8_c00003{width:9.540240px;}
.w45_c00003{width:9.900000px;}
.w1f9_c00003{width:10.079880px;}
.w7e_c00003{width:10.431450px;}
.w1c2_c00003{width:10.439655px;}
.w1c7_c00003{width:10.440240px;}
.w1df_c00003{width:10.619535px;}
.w6f_c00003{width:10.620120px;}
.w23f_c00003{width:10.800000px;}
.w6d_c00003{width:10.979880px;}
.w25e_c00003{width:10.980465px;}
.w44_c00003{width:11.159760px;}
.w43_c00003{width:11.160345px;}
.w6a_c00003{width:11.339655px;}
.w224_c00003{width:11.340240px;}
.w68_c00003{width:11.519535px;}
.w1ec_c00003{width:11.520120px;}
.w1f2_c00003{width:11.699415px;}
.w1e2_c00003{width:11.700000px;}
.w58_c00003{width:11.880465px;}
.w1eb_c00003{width:12.239655px;}
.w6c_c00003{width:12.240240px;}
.w71_c00003{width:12.420120px;}
.w6b_c00003{width:12.599415px;}
.w55_c00003{width:12.600000px;}
.w47_c00003{width:12.958590px;}
.w2a5_c00003{width:13.319535px;}
.w1d5_c00003{width:13.500000px;}
.w59_c00003{width:13.859760px;}
.w66_c00003{width:15.120150px;}
.w53_c00003{width:15.479850px;}
.w8a_c00003{width:15.480450px;}
.wc2_c00003{width:15.839700px;}
.wc5_c00003{width:15.840300px;}
.w13a_c00003{width:16.199400px;}
.w70_c00003{width:16.200000px;}
.w6e_c00003{width:16.559700px;}
.w4d_c00003{width:16.739700px;}
.w4c_c00003{width:16.740300px;}
.w4b_c00003{width:16.740750px;}
.w1f_c00003{width:16.919550px;}
.w9_c00003{width:16.920150px;}
.w69_c00003{width:17.100000px;}
.w5a_c00003{width:17.279850px;}
.w67_c00003{width:17.460300px;}
.w185_c00003{width:17.639700px;}
.w184_c00003{width:17.640300px;}
.w51_c00003{width:17.820150px;}
.w72_c00003{width:18.000000px;}
.w11d_c00003{width:18.359700px;}
.w11e_c00003{width:18.360300px;}
.w13f_c00003{width:18.540300px;}
.w1b_c00003{width:18.720150px;}
.w4f_c00003{width:19.439700px;}
.w50_c00003{width:19.440300px;}
.w73_c00003{width:19.440750px;}
.w41_c00003{width:19.800000px;}
.w90_c00003{width:19.979850px;}
.wce_c00003{width:20.339700px;}
.wc9_c00003{width:20.340300px;}
.w107_c00003{width:20.700000px;}
.w138_c00003{width:20.879850px;}
.w13e_c00003{width:20.880450px;}
.w267_c00003{width:21.059250px;}
.w193_c00003{width:21.059700px;}
.w38_c00003{width:21.060300px;}
.w8_c00003{width:21.779850px;}
.w167_c00003{width:21.960300px;}
.w76_c00003{width:22.140300px;}
.w49_c00003{width:22.319550px;}
.w48_c00003{width:22.320150px;}
.w52_c00003{width:22.320750px;}
.w1ae_c00003{width:22.678650px;}
.wc3_c00003{width:22.679850px;}
.w4a_c00003{width:22.859700px;}
.w61_c00003{width:22.860300px;}
.w100_c00003{width:23.039700px;}
.w8b_c00003{width:23.219550px;}
.w40_c00003{width:23.220150px;}
.wec_c00003{width:23.759250px;}
.w37_c00003{width:23.759700px;}
.wc6_c00003{width:23.760300px;}
.w183_c00003{width:23.939700px;}
.w1ca_c00003{width:23.940300px;}
.w261_c00003{width:23.940750px;}
.w26c_c00003{width:24.120150px;}
.w103_c00003{width:24.299400px;}
.w102_c00003{width:24.300000px;}
.w97_c00003{width:24.479850px;}
.w96_c00003{width:24.480450px;}
.w129_c00003{width:24.659250px;}
.wd6_c00003{width:24.659700px;}
.wd7_c00003{width:24.660300px;}
.w113_c00003{width:24.839700px;}
.w112_c00003{width:24.840300px;}
.w46_c00003{width:25.019550px;}
.w62_c00003{width:25.020150px;}
.w11c_c00003{width:25.200000px;}
.w141_c00003{width:25.379850px;}
.w142_c00003{width:25.380450px;}
.wae_c00003{width:25.559700px;}
.w128_c00003{width:25.919550px;}
.wd3_c00003{width:25.920150px;}
.w16e_c00003{width:26.280450px;}
.w110_c00003{width:26.459700px;}
.w10f_c00003{width:26.460300px;}
.w140_c00003{width:26.639700px;}
.w92_c00003{width:26.640300px;}
.w212_c00003{width:26.999400px;}
.w1e5_c00003{width:27.000000px;}
.w5c_c00003{width:27.178650px;}
.wd0_c00003{width:27.179850px;}
.w10c_c00003{width:27.359700px;}
.wb6_c00003{width:27.539700px;}
.wb5_c00003{width:27.540300px;}
.w99_c00003{width:27.719550px;}
.w9a_c00003{width:27.720150px;}
.w63_c00003{width:27.900000px;}
.w194_c00003{width:28.079850px;}
.w126_c00003{width:28.259250px;}
.wc7_c00003{width:28.259700px;}
.wc8_c00003{width:28.260300px;}
.w65_c00003{width:28.439700px;}
.w180_c00003{width:28.619550px;}
.wa9_c00003{width:28.799400px;}
.w54_c00003{width:28.800000px;}
.w137_c00003{width:28.979850px;}
.w139_c00003{width:28.980450px;}
.w1a5_c00003{width:29.159700px;}
.w1a6_c00003{width:29.160300px;}
.w122_c00003{width:29.339700px;}
.we8_c00003{width:29.340300px;}
.w31_c00003{width:29.519550px;}
.wb_c00003{width:29.520150px;}
.w189_c00003{width:29.699400px;}
.w168_c00003{width:29.700000px;}
.w152_c00003{width:30.059700px;}
.w95_c00003{width:30.060300px;}
.w1c9_c00003{width:30.240300px;}
.wc4_c00003{width:30.419550px;}
.w3a_c00003{width:30.420150px;}
.w5b_c00003{width:30.599400px;}
.w74_c00003{width:30.600000px;}
.w1ab_c00003{width:30.779850px;}
.w220_c00003{width:30.780450px;}
.w101_c00003{width:30.959700px;}
.wac_c00003{width:30.960300px;}
.w2b_c00003{width:31.139700px;}
.w2a_c00003{width:31.140300px;}
.w159_c00003{width:31.319550px;}
.w135_c00003{width:31.320150px;}
.w1fa_c00003{width:31.499400px;}
.w171_c00003{width:31.500000px;}
.wed_c00003{width:31.679850px;}
.w12a_c00003{width:31.680450px;}
.w56_c00003{width:31.859700px;}
.w199_c00003{width:31.860300px;}
.w6_c00003{width:32.220150px;}
.w154_c00003{width:32.399400px;}
.w11a_c00003{width:32.400000px;}
.wd8_c00003{width:32.579850px;}
.w277_c00003{width:32.759250px;}
.w36_c00003{width:32.759700px;}
.w35_c00003{width:32.760300px;}
.w114_c00003{width:32.939700px;}
.w1a0_c00003{width:32.940300px;}
.w265_c00003{width:32.940750px;}
.w4_c00003{width:33.120150px;}
.w1c1_c00003{width:33.479850px;}
.w39_c00003{width:33.659700px;}
.w17_c00003{width:34.019550px;}
.w2c_c00003{width:34.020150px;}
.w26a_c00003{width:34.200000px;}
.w1d_c00003{width:34.379850px;}
.w75_c00003{width:34.559250px;}
.w247_c00003{width:34.559700px;}
.w248_c00003{width:34.560300px;}
.w275_c00003{width:34.920150px;}
.w16f_c00003{width:35.279850px;}
.w182_c00003{width:35.280450px;}
.w93_c00003{width:35.460300px;}
.w1a7_c00003{width:35.639700px;}
.w1a9_c00003{width:35.640300px;}
.we_c00003{width:35.819550px;}
.w13_c00003{width:35.820150px;}
.w2d_c00003{width:36.000000px;}
.wd1_c00003{width:36.179850px;}
.w16b_c00003{width:36.180450px;}
.w98_c00003{width:36.360300px;}
.w8d_c00003{width:36.540300px;}
.w24b_c00003{width:36.720150px;}
.w10d_c00003{width:36.899400px;}
.wd9_c00003{width:36.900000px;}
.wd5_c00003{width:37.079850px;}
.w165_c00003{width:37.439700px;}
.w11_c00003{width:37.440300px;}
.w106_c00003{width:37.619550px;}
.w1ed_c00003{width:37.799400px;}
.w9c_c00003{width:37.800000px;}
.w20_c00003{width:37.979850px;}
.w7_c00003{width:37.980450px;}
.w13b_c00003{width:38.159700px;}
.w5f_c00003{width:38.339700px;}
.wbf_c00003{width:38.340300px;}
.web_c00003{width:38.520150px;}
.w162_c00003{width:38.700000px;}
.w195_c00003{width:38.879850px;}
.wfc_c00003{width:39.059700px;}
.wfb_c00003{width:39.060300px;}
.w134_c00003{width:39.419550px;}
.w133_c00003{width:39.420150px;}
.w4e_c00003{width:39.600000px;}
.w28_c00003{width:39.779850px;}
.w1b1_c00003{width:39.959700px;}
.w16a_c00003{width:40.140300px;}
.w80_c00003{width:40.286100px;}
.w130_c00003{width:40.320150px;}
.w205_c00003{width:40.499400px;}
.w1bb_c00003{width:40.500000px;}
.w32_c00003{width:40.679850px;}
.waa_c00003{width:41.039700px;}
.wca_c00003{width:41.220150px;}
.wad_c00003{width:41.579850px;}
.w206_c00003{width:41.580450px;}
.w123_c00003{width:41.759700px;}
.we9_c00003{width:41.760300px;}
.w105_c00003{width:42.119550px;}
.w87_c00003{width:42.300000px;}
.wee_c00003{width:42.479850px;}
.w118_c00003{width:42.659700px;}
.w161_c00003{width:42.839700px;}
.w153_c00003{width:42.840300px;}
.w11b_c00003{width:43.019550px;}
.w2a7_c00003{width:43.020150px;}
.w24f_c00003{width:43.200000px;}
.w2a6_c00003{width:43.380450px;}
.w1da_c00003{width:43.559700px;}
.w215_c00003{width:43.560300px;}
.w155_c00003{width:43.739700px;}
.w3f_c00003{width:43.740300px;}
.w22_c00003{width:44.459250px;}
.wf6_c00003{width:44.459700px;}
.wbb_c00003{width:44.460300px;}
.w25f_c00003{width:44.999400px;}
.w24_c00003{width:45.000000px;}
.w16d_c00003{width:45.179850px;}
.w1f1_c00003{width:45.180450px;}
.w12f_c00003{width:45.359700px;}
.w8f_c00003{width:45.539700px;}
.w24a_c00003{width:45.900000px;}
.w127_c00003{width:46.259250px;}
.wcc_c00003{width:46.259700px;}
.wcd_c00003{width:46.260300px;}
.w1c_c00003{width:46.439700px;}
.w1a_c00003{width:46.800000px;}
.w109_c00003{width:47.159700px;}
.w10a_c00003{width:47.160300px;}
.w151_c00003{width:47.519550px;}
.w13d_c00003{width:47.520150px;}
.w1cb_c00003{width:47.879850px;}
.w86_c00003{width:48.059700px;}
.w23_c00003{width:48.060300px;}
.w1b8_c00003{width:48.600000px;}
.w251_c00003{width:49.320150px;}
.w1be_c00003{width:49.679850px;}
.w1bf_c00003{width:49.680450px;}
.w2e_c00003{width:50.039700px;}
.w2f_c00003{width:50.040300px;}
.w2a2_c00003{width:50.400000px;}
.w222_c00003{width:50.579850px;}
.w2a4_c00003{width:50.580450px;}
.w1c8_c00003{width:50.939700px;}
.w17f_c00003{width:50.940300px;}
.w262_c00003{width:50.940750px;}
.w5e_c00003{width:51.479850px;}
.wa8_c00003{width:51.840300px;}
.we7_c00003{width:52.379850px;}
.w245_c00003{width:52.740300px;}
.w60_c00003{width:52.919550px;}
.w1ba_c00003{width:52.920150px;}
.w117_c00003{width:53.639700px;}
.w1f7_c00003{width:53.640300px;}
.w150_c00003{width:53.819550px;}
.w1c6_c00003{width:53.820150px;}
.w3e_c00003{width:54.000000px;}
.w250_c00003{width:54.720150px;}
.w1dc_c00003{width:54.900000px;}
.w1cd_c00003{width:55.079850px;}
.w1fb_c00003{width:55.080450px;}
.w21c_c00003{width:56.159700px;}
.w21d_c00003{width:56.160300px;}
.wa_c00003{width:56.339700px;}
.w24e_c00003{width:56.340300px;}
.w5d_c00003{width:56.878650px;}
.w187_c00003{width:57.420150px;}
.w18f_c00003{width:57.778650px;}
.w18d_c00003{width:57.779850px;}
.waf_c00003{width:58.140300px;}
.wf0_c00003{width:59.220150px;}
.w164_c00003{width:59.400000px;}
.wf_c00003{width:59.759250px;}
.w14_c00003{width:59.759700px;}
.w120_c00003{width:60.119550px;}
.w2a3_c00003{width:60.300000px;}
.w157_c00003{width:61.019550px;}
.wbe_c00003{width:61.020150px;}
.w1cf_c00003{width:61.379850px;}
.w1d0_c00003{width:61.380450px;}
.w19d_c00003{width:61.559700px;}
.w19e_c00003{width:61.560300px;}
.w21b_c00003{width:61.739700px;}
.w21a_c00003{width:61.740300px;}
.wfa_c00003{width:62.100000px;}
.w1a2_c00003{width:62.640300px;}
.w132_c00003{width:62.820150px;}
.w22d_c00003{width:63.000000px;}
.w190_c00003{width:63.179850px;}
.w19a_c00003{width:63.180450px;}
.w1f5_c00003{width:63.899400px;}
.w10_c00003{width:63.900000px;}
.w18c_c00003{width:64.259700px;}
.w18e_c00003{width:64.260300px;}
.w252_c00003{width:64.980450px;}
.w196_c00003{width:65.340300px;}
.w1c5_c00003{width:66.240300px;}
.w19f_c00003{width:66.419550px;}
.w1a1_c00003{width:66.420150px;}
.w64_c00003{width:67.139700px;}
.w225_c00003{width:67.319550px;}
.w21e_c00003{width:67.320150px;}
.w3_c00003{width:67.500000px;}
.w209_c00003{width:68.039700px;}
.w208_c00003{width:68.040300px;}
.w241_c00003{width:69.300000px;}
.w1f6_c00003{width:69.479850px;}
.w16c_c00003{width:70.560300px;}
.w19c_c00003{width:70.739700px;}
.w19b_c00003{width:70.740300px;}
.w8e_c00003{width:71.279850px;}
.w244_c00003{width:71.460300px;}
.w7a_c00003{width:71.760900px;}
.wcb_c00003{width:72.540300px;}
.w186_c00003{width:72.900000px;}
.w253_c00003{width:73.260300px;}
.w108_c00003{width:73.439700px;}
.w25_c00003{width:73.979850px;}
.w13c_c00003{width:74.339700px;}
.w1a8_c00003{width:74.520150px;}
.wef_c00003{width:75.600000px;}
.w11f_c00003{width:76.139700px;}
.w1c0_c00003{width:77.039700px;}
.w156_c00003{width:77.219550px;}
.w1e8_c00003{width:77.220150px;}
.w1bc_c00003{width:77.759700px;}
.w1bd_c00003{width:77.760300px;}
.w1e1_c00003{width:77.940300px;}
.w1e4_c00003{width:78.119550px;}
.w1cc_c00003{width:78.840300px;}
.w246_c00003{width:79.200000px;}
.w263_c00003{width:79.919550px;}
.w202_c00003{width:79.920150px;}
.wb7_c00003{width:80.279850px;}
.w1aa_c00003{width:80.459700px;}
.w1a3_c00003{width:80.460300px;}
.w25b_c00003{width:80.640300px;}
.w25a_c00003{width:80.640750px;}
.w169_c00003{width:80.820150px;}
.w296_c00003{width:80.856450px;}
.w260_c00003{width:81.179850px;}
.w23d_c00003{width:81.359700px;}
.w23e_c00003{width:81.540300px;}
.w23c_c00003{width:81.540750px;}
.w8c_c00003{width:81.900000px;}
.w1af_c00003{width:82.079850px;}
.w258_c00003{width:82.259250px;}
.w257_c00003{width:82.259700px;}
.w57_c00003{width:82.979850px;}
.w15f_c00003{width:83.340300px;}
.w191_c00003{width:83.700000px;}
.w1f0_c00003{width:84.059700px;}
.w1f3_c00003{width:84.060300px;}
.w104_c00003{width:84.419550px;}
.w12_c00003{width:84.600000px;}
.w15e_c00003{width:84.960300px;}
.w20e_c00003{width:85.140300px;}
.w203_c00003{width:85.499400px;}
.w136_c00003{width:85.500000px;}
.w197_c00003{width:85.859700px;}
.w7b_c00003{width:85.968150px;}
.w160_c00003{width:86.219550px;}
.w19_c00003{width:86.220150px;}
.w18_c00003{width:86.400000px;}
.w1b9_c00003{width:87.479850px;}
.wd2_c00003{width:88.379850px;}
.w1e7_c00003{width:88.919550px;}
.w1e0_c00003{width:88.920150px;}
.w15_c00003{width:89.100000px;}
.w256_c00003{width:89.280450px;}
.w170_c00003{width:89.460300px;}
.w1b2_c00003{width:89.640300px;}
.w10e_c00003{width:90.539700px;}
.w1b3_c00003{width:90.720150px;}
.w9b_c00003{width:91.079850px;}
.w1dd_c00003{width:91.439700px;}
.w200_c00003{width:91.440300px;}
.wd4_c00003{width:91.979850px;}
.w254_c00003{width:92.520150px;}
.w181_c00003{width:93.060300px;}
.w5_c00003{width:93.240750px;}
.w111_c00003{width:93.600000px;}
.w29c_c00003{width:93.816150px;}
.w1ac_c00003{width:93.960300px;}
.w26_c00003{width:94.320150px;}
.wab_c00003{width:94.679850px;}
.w207_c00003{width:94.859700px;}
.w17d_c00003{width:94.860300px;}
.w20d_c00003{width:95.220150px;}
.w242_c00003{width:95.580450px;}
.wea_c00003{width:95.940300px;}
.w1ce_c00003{width:96.479850px;}
.w1fc_c00003{width:96.480450px;}
.w237_c00003{width:96.840300px;}
.w24c_c00003{width:97.020150px;}
.we5_c00003{width:97.379850px;}
.w20f_c00003{width:97.380450px;}
.w119_c00003{width:97.739700px;}
.w115_c00003{width:98.639700px;}
.w1b7_c00003{width:99.359700px;}
.w1b6_c00003{width:99.360300px;}
.w188_c00003{width:100.080450px;}
.w14e_c00003{width:100.259700px;}
.w1b0_c00003{width:100.440300px;}
.w298_c00003{width:101.160300px;}
.w299_c00003{width:101.194950px;}
.w29a_c00003{width:101.339700px;}
.wb0_c00003{width:101.520150px;}
.w163_c00003{width:101.700000px;}
.w234_c00003{width:101.736900px;}
.wf1_c00003{width:102.779850px;}
.w94_c00003{width:103.140300px;}
.w235_c00003{width:103.177200px;}
.wbd_c00003{width:104.579850px;}
.w121_c00003{width:104.759700px;}
.wb4_c00003{width:104.940300px;}
.w12d_c00003{width:105.300000px;}
.w125_c00003{width:105.479850px;}
.w230_c00003{width:105.480450px;}
.w22e_c00003{width:105.516750px;}
.w124_c00003{width:105.660300px;}
.w22f_c00003{width:105.696750px;}
.w158_c00003{width:106.019550px;}
.wf9_c00003{width:106.379850px;}
.wb8_c00003{width:106.559700px;}
.w131_c00003{width:107.819550px;}
.w12e_c00003{width:108.000000px;}
.wc_c00003{width:108.180450px;}
.wb3_c00003{width:108.540300px;}
.w272_c00003{width:109.079850px;}
.w271_c00003{width:109.080450px;}
.w269_c00003{width:109.440300px;}
.w1a4_c00003{width:110.700000px;}
.w26e_c00003{width:111.059700px;}
.w26d_c00003{width:111.060300px;}
.w219_c00003{width:111.600000px;}
.w270_c00003{width:111.959700px;}
.w26f_c00003{width:111.960300px;}
.w233_c00003{width:112.140300px;}
.w211_c00003{width:112.319550px;}
.w210_c00003{width:112.320150px;}
.w226_c00003{width:112.499400px;}
.w223_c00003{width:112.500000px;}
.w232_c00003{width:113.077200px;}
.w1b4_c00003{width:115.020150px;}
.w1ad_c00003{width:115.559700px;}
.w192_c00003{width:115.560300px;}
.w216_c00003{width:115.739700px;}
.w218_c00003{width:115.740300px;}
.w22c_c00003{width:115.777200px;}
.w1e9_c00003{width:116.459700px;}
.w1b5_c00003{width:116.640300px;}
.w238_c00003{width:116.676600px;}
.w16_c00003{width:118.079850px;}
.w281_c00003{width:118.656450px;}
.w198_c00003{width:118.800000px;}
.w1e3_c00003{width:118.979850px;}
.w15c_c00003{width:120.060300px;}
.w279_c00003{width:120.420150px;}
.w29e_c00003{width:122.400000px;}
.w29f_c00003{width:122.435100px;}
.w1d1_c00003{width:122.579850px;}
.w1fd_c00003{width:122.580450px;}
.wb9_c00003{width:123.120150px;}
.w227_c00003{width:123.480450px;}
.w1e6_c00003{width:124.379850px;}
.w1fe_c00003{width:124.380450px;}
.w21_c00003{width:124.559700px;}
.w236_c00003{width:124.776600px;}
.wf4_c00003{width:125.100000px;}
.w239_c00003{width:126.575400px;}
.w12b_c00003{width:126.719550px;}
.w23a_c00003{width:126.896550px;}
.w1d8_c00003{width:129.959700px;}
.w213_c00003{width:129.960300px;}
.w2_c00003{width:132.300000px;}
.w295_c00003{width:133.920150px;}
.w280_c00003{width:135.900000px;}
.w1d6_c00003{width:136.440300px;}
.w23b_c00003{width:137.376600px;}
.w231_c00003{width:137.555250px;}
.w289_c00003{width:145.979850px;}
.w268_c00003{width:147.600000px;}
.w1db_c00003{width:149.040300px;}
.w290_c00003{width:150.300000px;}
.w1d4_c00003{width:150.660000px;}
.w286_c00003{width:152.280000px;}
.w284_c00003{width:152.820000px;}
.w285_c00003{width:152.850000px;}
.w29b_c00003{width:155.520000px;}
.w297_c00003{width:156.270000px;}
.w288_c00003{width:167.431500px;}
.w28f_c00003{width:172.470000px;}
.w7c_c00003{width:180.570000px;}
.w29d_c00003{width:181.471500px;}
.w82_c00003{width:182.368500px;}
.w1d2_c00003{width:183.060000px;}
.w3d_c00003{width:183.600000px;}
.w1f4_c00003{width:185.040000px;}
.w28c_c00003{width:187.950000px;}
.w294_c00003{width:193.320000px;}
.w293_c00003{width:193.530000px;}
.w1d3_c00003{width:194.940000px;}
.w283_c00003{width:203.791500px;}
.w28d_c00003{width:208.980000px;}
.w27f_c00003{width:220.170000px;}
.w1d7_c00003{width:224.100000px;}
.w27_c00003{width:230.580000px;}
.w28b_c00003{width:250.920000px;}
.w282_c00003{width:255.240000px;}
.w292_c00003{width:257.760000px;}
.w178_c00003{width:270.000000px;}
.w287_c00003{width:271.110000px;}
.wa3_c00003{width:273.960000px;}
.w28e_c00003{width:279.030000px;}
.we0_c00003{width:279.180000px;}
.w81_c00003{width:279.307500px;}
.w149_c00003{width:283.680000px;}
.w7f_c00003{width:287.220000px;}
.w173_c00003{width:294.480000px;}
.w9e_c00003{width:299.520000px;}
.wdb_c00003{width:303.660000px;}
.wd_c00003{width:307.620000px;}
.w144_c00003{width:309.960000px;}
.w18a_c00003{width:313.740000px;}
.w28a_c00003{width:313.950000px;}
.w17b_c00003{width:314.280000px;}
.w18b_c00003{width:317.340000px;}
.wb1_c00003{width:317.700000px;}
.wa6_c00003{width:318.960000px;}
.wb2_c00003{width:321.300000px;}
.w291_c00003{width:322.951500px;}
.wf2_c00003{width:323.280000px;}
.we3_c00003{width:324.540000px;}
.wf3_c00003{width:327.060000px;}
.w15a_c00003{width:329.040000px;}
.w14c_c00003{width:330.120000px;}
.w15b_c00003{width:332.820000px;}
.w7d_c00003{width:347.830500px;}
.w17e_c00003{width:376.020000px;}
.we6_c00003{width:385.740000px;}
.w116_c00003{width:392.400000px;}
.w15d_c00003{width:393.660000px;}
.w14f_c00003{width:397.800000px;}
.wba_c00003{width:403.200000px;}
.wf5_c00003{width:410.400000px;}
.w12c_c00003{width:415.800000px;}
.w177_c00003{width:416.160000px;}
.wa2_c00003{width:421.740000px;}
.wdf_c00003{width:430.380000px;}
.w148_c00003{width:436.680000px;}
.w17c_c00003{width:535.500000px;}
.wa7_c00003{width:544.140000px;}
.we4_c00003{width:553.500000px;}
.w14d_c00003{width:562.320000px;}
.w27a_c00003{width:616.140000px;}
.w17a_c00003{width:631.620000px;}
.wa5_c00003{width:640.440000px;}
.we2_c00003{width:652.860000px;}
.w14b_c00003{width:664.380000px;}
.w27b_c00003{width:676.080000px;}
.w27c_c00003{width:722.160000px;}
.w175_c00003{width:810.720000px;}
.w174_c00003{width:813.780000px;}
.w176_c00003{width:821.700000px;}
.wa0_c00003{width:824.760000px;}
.w9f_c00003{width:827.640000px;}
.wa1_c00003{width:835.920000px;}
.wdd_c00003{width:838.080000px;}
.wdc_c00003{width:841.140000px;}
.w172_c00003{width:846.900000px;}
.wde_c00003{width:849.420000px;}
.w146_c00003{width:852.840000px;}
.w179_c00003{width:854.640000px;}
.w145_c00003{width:856.080000px;}
.w9d_c00003{width:859.500000px;}
.w147_c00003{width:864.360000px;}
.wa4_c00003{width:868.680000px;}
.wda_c00003{width:875.160000px;}
.we1_c00003{width:884.880000px;}
.w143_c00003{width:890.100000px;}
.w0_c00003{width:892.499700px;}
.w79_c00003{width:892.499850px;}
.w1_c00003{width:892.500000px;}
.w83_c00003{width:892.979700px;}
.w77_c00003{width:892.979850px;}
.w78_c00003{width:893.250000px;}
.w14a_c00003{width:898.740000px;}
.w84_c00003{width:1262.999700px;}
.w2a0_c00003{width:1262.999850px;}
.w85_c00003{width:1263.000000px;}
.w27e_c00003{width:1785.750000px;}
.w27d_c00003{width:1785.779850px;}
.w3b_c00003{width:1786.499700px;}
.w2a1_c00003{width:1786.499850px;}
.w3c_c00003{width:1786.500000px;}
.x63_c00003{left:-19.439550px;}
.x0_c00003{left:0.000000px;}
.x2e7_c00003{left:1.260000px;}
.x2de_c00003{left:3.243000px;}
.x2e0_c00003{left:5.941500px;}
.x2d1_c00003{left:7.426500px;}
.x2ca_c00003{left:9.216900px;}
.x30b_c00003{left:10.694550px;}
.x2df_c00003{left:11.703000px;}
.x2cc_c00003{left:12.780000px;}
.x2cd_c00003{left:13.860000px;}
.x2d3_c00003{left:14.940000px;}
.x2ea_c00003{left:16.378500px;}
.x2d0_c00003{left:17.506500px;}
.x2e8_c00003{left:18.903000px;}
.x2e6_c00003{left:20.190000px;}
.x2cf_c00003{left:22.321500px;}
.x2e9_c00003{left:23.940000px;}
.x2e5_c00003{left:25.410000px;}
.x197_c00003{left:26.985900px;}
.x2e3_c00003{left:28.290000px;}
.x169_c00003{left:30.226200px;}
.x320_c00003{left:31.493400px;}
.x2d7_c00003{left:32.625000px;}
.x2e4_c00003{left:34.410000px;}
.x2d8_c00003{left:35.505000px;}
.x2d9_c00003{left:37.125000px;}
.x2cb_c00003{left:38.925000px;}
.x2d6_c00003{left:40.905000px;}
.x2d5_c00003{left:42.330000px;}
.x2e2_c00003{left:44.103000px;}
.x2e1_c00003{left:45.570000px;}
.x2d4_c00003{left:47.565000px;}
.x2db_c00003{left:50.086500px;}
.x2eb_c00003{left:51.300000px;}
.x191_c00003{left:53.626200px;}
.x2da_c00003{left:55.306500px;}
.x316_c00003{left:56.370150px;}
.xa3_c00003{left:57.372000px;}
.x318_c00003{left:58.681500px;}
.x307_c00003{left:60.227074px;}
.xa0_c00003{left:61.867350px;}
.x9e_c00003{left:62.950200px;}
.x311_c00003{left:63.973935px;}
.x9f_c00003{left:65.287503px;}
.x315_c00003{left:66.420000px;}
.x308_c00003{left:67.427074px;}
.xa4_c00003{left:69.782250px;}
.x31f_c00003{left:71.280000px;}
.xa1_c00003{left:72.299400px;}
.x317_c00003{left:73.981500px;}
.x36_c00003{left:76.452000px;}
.xfb_c00003{left:77.565750px;}
.x2_c00003{left:79.200000px;}
.x1_c00003{left:80.459700px;}
.x9b_c00003{left:82.011326px;}
.x1b_c00003{left:84.420150px;}
.x99_c00003{left:85.608450px;}
.xa5_c00003{left:87.406650px;}
.xd_c00003{left:88.920150px;}
.x28c_c00003{left:90.345750px;}
.x3_c00003{left:91.440300px;}
.x31c_c00003{left:92.518500px;}
.x60_c00003{left:93.731850px;}
.x2f4_c00003{left:95.399481px;}
.xa_c00003{left:97.020150px;}
.x1a_c00003{left:99.000000px;}
.x241_c00003{left:100.067550px;}
.x62_c00003{left:101.831850px;}
.x2c9_c00003{left:103.679850px;}
.x2b_c00003{left:105.300000px;}
.x2f_c00003{left:107.279850px;}
.x6_c00003{left:109.259700px;}
.x29_c00003{left:110.520150px;}
.x279_c00003{left:111.585900px;}
.x34_c00003{left:113.400000px;}
.x8_c00003{left:114.479850px;}
.xf_c00003{left:115.740300px;}
.x9_c00003{left:116.820150px;}
.x31b_c00003{left:117.900000px;}
.x305_c00003{left:119.916750px;}
.x32_c00003{left:121.140300px;}
.x244_c00003{left:123.287700px;}
.x2f8_c00003{left:124.379850px;}
.x14_c00003{left:125.460120px;}
.x1c_c00003{left:126.540300px;}
.x22a_c00003{left:127.607250px;}
.x13_c00003{left:129.599767px;}
.x30f_c00003{left:130.890150px;}
.x29a_c00003{left:131.926200px;}
.x2ec_c00003{left:133.020150px;}
.x1f_c00003{left:134.100000px;}
.x2ee_c00003{left:135.540300px;}
.x28e_c00003{left:137.506050px;}
.x243_c00003{left:138.947400px;}
.x293_c00003{left:140.026200px;}
.x256_c00003{left:142.187700px;}
.x287_c00003{left:143.985900px;}
.x229_c00003{left:145.967550px;}
.x285_c00003{left:147.406050px;}
.x306_c00003{left:148.896750px;}
.x2f2_c00003{left:150.840000px;}
.x289_c00003{left:153.166500px;}
.x16a_c00003{left:155.326500px;}
.x177_c00003{left:156.586500px;}
.xa7_c00003{left:158.790000px;}
.x3d_c00003{left:161.952000px;}
.x8b_c00003{left:163.212000px;}
.x8c_c00003{left:164.292000px;}
.x6f_c00003{left:165.552000px;}
.x27e_c00003{left:166.666500px;}
.x292_c00003{left:169.186500px;}
.x217_c00003{left:174.406500px;}
.x5_c00003{left:175.860000px;}
.x27b_c00003{left:177.826500px;}
.x242_c00003{left:178.908000px;}
.x200_c00003{left:179.986500px;}
.x2ed_c00003{left:181.440000px;}
.x2f3_c00003{left:182.700000px;}
.x252_c00003{left:183.768000px;}
.x2c8_c00003{left:185.400000px;}
.x294_c00003{left:186.826500px;}
.x321_c00003{left:188.085883px;}
.x226_c00003{left:190.248000px;}
.x26_c00003{left:191.520000px;}
.xbe_c00003{left:194.389500px;}
.x30_c00003{left:196.920000px;}
.x10_c00003{left:198.540000px;}
.x20a_c00003{left:199.606500px;}
.x2d2_c00003{left:201.990000px;}
.x2a_c00003{left:203.400000px;}
.x33_c00003{left:205.560000px;}
.x12_c00003{left:206.640000px;}
.x3a_c00003{left:208.392000px;}
.x109_c00003{left:210.229500px;}
.x10a_c00003{left:212.206500px;}
.x7_c00003{left:214.560000px;}
.x4_c00003{left:216.900000px;}
.xb_c00003{left:218.700000px;}
.x2ab_c00003{left:220.306500px;}
.x322_c00003{left:221.790000px;}
.x2fb_c00003{left:223.200000px;}
.x5e_c00003{left:224.412000px;}
.x27_c00003{left:225.540000px;}
.x4f_c00003{left:227.112000px;}
.x28_c00003{left:228.960000px;}
.x8f_c00003{left:229.992000px;}
.x271_c00003{left:231.288000px;}
.x3e_c00003{left:232.692000px;}
.x26a_c00003{left:234.528000px;}
.x16c_c00003{left:235.608511px;}
.x272_c00003{left:236.688000px;}
.x96_c00003{left:238.350000px;}
.x250_c00003{left:239.389500px;}
.x16_c00003{left:241.200000px;}
.x20_c00003{left:242.280000px;}
.x26b_c00003{left:243.708000px;}
.x2fa_c00003{left:244.800000px;}
.x277_c00003{left:245.910000px;}
.x187_c00003{left:248.206500px;}
.x23_c00003{left:249.840000px;}
.x16b_c00003{left:251.088347px;}
.x178_c00003{left:252.345000px;}
.x22_c00003{left:254.160000px;}
.x2fc_c00003{left:255.420000px;}
.x17_c00003{left:256.500000px;}
.x18a_c00003{left:258.645000px;}
.x19a_c00003{left:259.726500px;}
.x10e_c00003{left:261.886500px;}
.x2dc_c00003{left:263.550000px;}
.x19_c00003{left:264.600000px;}
.x2c5_c00003{left:266.569500px;}
.xac_c00003{left:267.826050px;}
.x2f1_c00003{left:268.920000px;}
.x117_c00003{left:269.985798px;}
.x2ac_c00003{left:271.426500px;}
.xab_c00003{left:272.505880px;}
.x21c_c00003{left:274.306500px;}
.x1b4_c00003{left:275.389500px;}
.x21b_c00003{left:276.466800px;}
.xe_c00003{left:277.920000px;}
.x19d_c00003{left:279.347791px;}
.x64_c00003{left:280.392000px;}
.x1e6_c00003{left:282.408463px;}
.x19e_c00003{left:283.667912px;}
.x11d_c00003{left:285.649500px;}
.x20b_c00003{left:286.729500px;}
.x70_c00003{left:288.132000px;}
.x208_c00003{left:289.607998px;}
.x11_c00003{left:291.060000px;}
.xcd_c00003{left:292.126500px;}
.x31_c00003{left:293.580000px;}
.x9a_c00003{left:294.594659px;}
.xf6_c00003{left:296.086500px;}
.x15c_c00003{left:297.885881px;}
.x2e_c00003{left:299.700000px;}
.xe5_c00003{left:301.667302px;}
.x2d_c00003{left:302.940000px;}
.xfd_c00003{left:304.906500px;}
.x58_c00003{left:306.492000px;}
.x35_c00003{left:308.160000px;}
.x1be_c00003{left:309.945000px;}
.xc7_c00003{left:311.026500px;}
.x50_c00003{left:312.072000px;}
.x207_c00003{left:313.186500px;}
.x2c_c00003{left:314.280000px;}
.x1c3_c00003{left:316.066500px;}
.x3f_c00003{left:317.652000px;}
.x1ea_c00003{left:319.309500px;}
.x1de_c00003{left:320.926500px;}
.x1fb_c00003{left:322.545000px;}
.x22b_c00003{left:323.628239px;}
.x1e3_c00003{left:325.966500px;}
.x205_c00003{left:327.766500px;}
.x16f_c00003{left:328.848266px;}
.x1d_c00003{left:330.120000px;}
.x22f_c00003{left:331.728000px;}
.x269_c00003{left:332.809500px;}
.x16d_c00003{left:334.068354px;}
.x26d_c00003{left:335.506500px;}
.x304_c00003{left:337.500000px;}
.x24b_c00003{left:338.748920px;}
.x22e_c00003{left:339.828000px;}
.x188_c00003{left:341.445000px;}
.x2f6_c00003{left:342.900000px;}
.x16e_c00003{left:344.328702px;}
.x179_c00003{left:345.406500px;}
.x24f_c00003{left:346.848000px;}
.x18_c00003{left:349.020000px;}
.x184_c00003{left:350.626500px;}
.x59_c00003{left:351.852000px;}
.x2fe_c00003{left:352.980000px;}
.x24_c00003{left:354.240000px;}
.x19b_c00003{left:355.845000px;}
.x40_c00003{left:357.432000px;}
.x20c_c00003{left:359.447680px;}
.x23a_c00003{left:361.428000px;}
.x220_c00003{left:362.508000px;}
.x23b_c00003{left:363.585000px;}
.x19f_c00003{left:365.209289px;}
.x9c_c00003{left:366.535229px;}
.x9d_c00003{left:368.509500px;}
.x2dd_c00003{left:369.975000px;}
.x165_c00003{left:371.511538px;}
.x2ce_c00003{left:372.675000px;}
.x232_c00003{left:373.845000px;}
.x110_c00003{left:374.925000px;}
.xaf_c00003{left:376.366203px;}
.x302_c00003{left:378.000000px;}
.xb0_c00003{left:379.425958px;}
.x211_c00003{left:381.045000px;}
.x111_c00003{left:383.028153px;}
.x142_c00003{left:384.105000px;}
.xa8_c00003{left:385.996500px;}
.x301_c00003{left:387.000000px;}
.x12e_c00003{left:388.066500px;}
.x29e_c00003{left:389.145000px;}
.x219_c00003{left:390.945000px;}
.x11e_c00003{left:392.031093px;}
.x13f_c00003{left:393.105000px;}
.x14c_c00003{left:394.185000px;}
.x15e_c00003{left:395.266500px;}
.xad_c00003{left:396.705897px;}
.xb1_c00003{left:398.686305px;}
.x22c_c00003{left:399.768000px;}
.x10f_c00003{left:401.031022px;}
.x1e7_c00003{left:402.105000px;}
.x155_c00003{left:403.725000px;}
.x25_c00003{left:405.360000px;}
.x29b_c00003{left:406.425000px;}
.x2f5_c00003{left:407.880000px;}
.xf7_c00003{left:409.125000px;}
.x1b5_c00003{left:410.747883px;}
.xd7_c00003{left:412.905000px;}
.xe6_c00003{left:414.707494px;}
.xec_c00003{left:415.785000px;}
.xfe_c00003{left:417.945000px;}
.xbf_c00003{left:419.025000px;}
.x10b_c00003{left:420.285000px;}
.x1c6_c00003{left:421.366500px;}
.x98_c00003{left:423.007500px;}
.xae_c00003{left:424.607640px;}
.x270_c00003{left:425.688000px;}
.xa6_c00003{left:426.964500px;}
.x310_c00003{left:427.966065px;}
.x95_c00003{left:429.195000px;}
.xa2_c00003{left:430.381500px;}
.x198_c00003{left:431.445000px;}
.x1ee_c00003{left:432.885000px;}
.x5a_c00003{left:433.933500px;}
.x1e4_c00003{left:435.945000px;}
.x206_c00003{left:438.105000px;}
.x51_c00003{left:439.513500px;}
.x18e_c00003{left:440.625000px;}
.x193_c00003{left:442.790188px;}
.x221_c00003{left:444.045000px;}
.x41_c00003{left:445.093500px;}
.x97_c00003{left:446.475000px;}
.x24c_c00003{left:447.828864px;}
.x20f_c00003{left:448.905000px;}
.x18c_c00003{left:450.885000px;}
.x17a_c00003{left:452.145000px;}
.x2ef_c00003{left:453.420000px;}
.x20e_c00003{left:454.669500px;}
.x233_c00003{left:455.925000px;}
.x21e_c00003{left:457.366500px;}
.x309_c00003{left:458.385030px;}
.x21d_c00003{left:459.526749px;}
.x1b2_c00003{left:460.608000px;}
.x2a6_c00003{left:462.045000px;}
.x166_c00003{left:463.130376px;}
.x1e_c00003{left:464.580000px;}
.x20d_c00003{left:466.186731px;}
.x275_c00003{left:467.266500px;}
.x11f_c00003{left:468.711576px;}
.x21_c00003{left:470.700000px;}
.x281_c00003{left:472.669500px;}
.x213_c00003{left:474.285000px;}
.x143_c00003{left:475.545000px;}
.x215_c00003{left:477.345000px;}
.x120_c00003{left:478.431698px;}
.x12f_c00003{left:479.505000px;}
.x218_c00003{left:481.485000px;}
.x121_c00003{left:483.471344px;}
.x140_c00003{left:484.545000px;}
.x14d_c00003{left:485.805000px;}
.x15f_c00003{left:486.885000px;}
.x113_c00003{left:488.505000px;}
.x162_c00003{left:489.766500px;}
.x118_c00003{left:490.849500px;}
.xb4_c00003{left:492.467353px;}
.x30a_c00003{left:493.560450px;}
.x114_c00003{left:494.628153px;}
.x209_c00003{left:496.067713px;}
.x5b_c00003{left:497.653500px;}
.x24d_c00003{left:499.128826px;}
.x283_c00003{left:500.745000px;}
.x231_c00003{left:501.829500px;}
.x52_c00003{left:503.233500px;}
.x19c_c00003{left:504.528000px;}
.x173_c00003{left:505.969500px;}
.x27f_c00003{left:507.766500px;}
.x42_c00003{left:508.813500px;}
.x23c_c00003{left:510.466500px;}
.x2ff_c00003{left:511.560000px;}
.x112_c00003{left:512.628096px;}
.x1e9_c00003{left:513.705000px;}
.x199_c00003{left:515.685000px;}
.xce_c00003{left:516.766500px;}
.x170_c00003{left:518.566500px;}
.xb2_c00003{left:519.647226px;}
.x1e8_c00003{left:521.267952px;}
.x2f9_c00003{left:522.540000px;}
.x43_c00003{left:523.753500px;}
.x18f_c00003{left:524.866500px;}
.xe7_c00003{left:526.308004px;}
.x103_c00003{left:527.925000px;}
.xff_c00003{left:529.545000px;}
.xc0_c00003{left:530.625000px;}
.x116_c00003{left:531.705000px;}
.x1b9_c00003{left:533.505000px;}
.x18d_c00003{left:535.125000px;}
.xb3_c00003{left:536.207549px;}
.x1db_c00003{left:538.005000px;}
.x1cf_c00003{left:539.625000px;}
.x1df_c00003{left:540.885000px;}
.x2a2_c00003{left:541.966500px;}
.x1b3_c00003{left:543.048000px;}
.x1a2_c00003{left:544.489500px;}
.x2a0_c00003{left:545.745000px;}
.x71_c00003{left:547.153500px;}
.x1f4_c00003{left:548.625000px;}
.x1f3_c00003{left:549.885000px;}
.x1fc_c00003{left:550.966500px;}
.x30e_c00003{left:552.314700px;}
.x2fd_c00003{left:553.320000px;}
.x167_c00003{left:554.569496px;}
.x1a0_c00003{left:556.366500px;}
.x30c_c00003{left:557.669835px;}
.x21a_c00003{left:558.705000px;}
.x122_c00003{left:560.331029px;}
.x124_c00003{left:561.951157px;}
.x174_c00003{left:563.385000px;}
.x1ac_c00003{left:565.185000px;}
.x144_c00003{left:567.166500px;}
.x168_c00003{left:568.969500px;}
.x123_c00003{left:570.051152px;}
.x130_c00003{left:571.125000px;}
.x192_c00003{left:572.926055px;}
.x2b0_c00003{left:574.005000px;}
.x125_c00003{left:575.090798px;}
.x14a_c00003{left:576.166500px;}
.x14e_c00003{left:577.245000px;}
.x160_c00003{left:578.325000px;}
.x11c_c00003{left:580.309500px;}
.xa9_c00003{left:581.388000px;}
.xaa_c00003{left:583.548349px;}
.x21f_c00003{left:585.528114px;}
.x246_c00003{left:586.608000px;}
.x29c_c00003{left:587.866500px;}
.x28d_c00003{left:588.945000px;}
.x175_c00003{left:590.208000px;}
.x2b7_c00003{left:591.285000px;}
.x23d_c00003{left:592.548120px;}
.x247_c00003{left:593.628000px;}
.x2a3_c00003{left:594.885000px;}
.x119_c00003{left:596.866500px;}
.x280_c00003{left:597.945000px;}
.x274_c00003{left:599.028000px;}
.x11a_c00003{left:600.829500px;}
.xb8_c00003{left:602.807521px;}
.x115_c00003{left:604.428145px;}
.x2a8_c00003{left:606.045000px;}
.xb5_c00003{left:607.127618px;}
.x90_c00003{left:608.173500px;}
.x72_c00003{left:609.253500px;}
.x8a_c00003{left:610.873500px;}
.x171_c00003{left:612.888000px;}
.x2f0_c00003{left:614.340000px;}
.x185_c00003{left:615.405000px;}
.x1d0_c00003{left:617.025000px;}
.x2a9_c00003{left:618.105000px;}
.xb9_c00003{left:620.087459px;}
.x2b6_c00003{left:621.166500px;}
.x44_c00003{left:622.393500px;}
.xfc_c00003{left:624.407707px;}
.x300_c00003{left:625.680000px;}
.xcf_c00003{left:626.745000px;}
.x53_c00003{left:627.973500px;}
.xb6_c00003{left:629.447119px;}
.xf8_c00003{left:630.525000px;}
.x11b_c00003{left:631.785000px;}
.x282_c00003{left:633.045000px;}
.xd8_c00003{left:634.485000px;}
.xe8_c00003{left:636.287838px;}
.x104_c00003{left:637.905000px;}
.x100_c00003{left:639.525000px;}
.xca_c00003{left:640.605000px;}
.xd4_c00003{left:641.685000px;}
.x164_c00003{left:643.848000px;}
.x23e_c00003{left:644.927948px;}
.xb7_c00003{left:646.007442px;}
.x176_c00003{left:647.625000px;}
.x1a1_c00003{left:648.888000px;}
.x216_c00003{left:650.145000px;}
.x1aa_c00003{left:651.585000px;}
.x1f7_c00003{left:652.845000px;}
.x15d_c00003{left:654.645000px;}
.x1a5_c00003{left:656.625000px;}
.x295_c00003{left:657.885000px;}
.x1ff_c00003{left:659.145000px;}
.x1ef_c00003{left:660.405000px;}
.x163_c00003{left:662.566500px;}
.x151_c00003{left:663.645000px;}
.x2a1_c00003{left:664.905000px;}
.x73_c00003{left:666.313500px;}
.x145_c00003{left:667.605000px;}
.x2c2_c00003{left:668.866500px;}
.x139_c00003{left:669.945000px;}
.x94_c00003{left:671.893500px;}
.x14f_c00003{left:673.905000px;}
.x131_c00003{left:674.985000px;}
.x210_c00003{left:676.966500px;}
.x30d_c00003{left:678.134685px;}
.x25e_c00003{left:679.489500px;}
.x249_c00003{left:681.649500px;}
.x1a3_c00003{left:683.085000px;}
.x194_c00003{left:684.712006px;}
.x45_c00003{left:686.113500px;}
.x1eb_c00003{left:687.585000px;}
.x1d4_c00003{left:688.669500px;}
.x1b6_c00003{left:690.108000px;}
.x54_c00003{left:691.693500px;}
.x257_c00003{left:693.527952px;}
.x181_c00003{left:695.505000px;}
.x18b_c00003{left:697.305000px;}
.x28a_c00003{left:698.385000px;}
.x186_c00003{left:699.645000px;}
.x128_c00003{left:701.445000px;}
.x189_c00003{left:703.605000px;}
.x17b_c00003{left:704.866500px;}
.x262_c00003{left:705.948000px;}
.x1d3_c00003{left:707.385000px;}
.x17e_c00003{left:709.366500px;}
.x1c4_c00003{left:710.805000px;}
.x1c1_c00003{left:712.425000px;}
.x180_c00003{left:713.505000px;}
.x65_c00003{left:714.911413px;}
.x172_c00003{left:716.569500px;}
.x101_c00003{left:718.545000px;}
.x195_c00003{left:720.528000px;}
.x1dc_c00003{left:721.966500px;}
.x276_c00003{left:723.228000px;}
.x1d9_c00003{left:724.305000px;}
.x10c_c00003{left:726.285000px;}
.xef_c00003{left:727.366500px;}
.x2b3_c00003{left:728.625000px;}
.x105_c00003{left:729.705000px;}
.xd0_c00003{left:731.325000px;}
.x15_c00003{left:732.945000px;}
.x1ab_c00003{left:734.025000px;}
.x1f9_c00003{left:735.285000px;}
.x303_c00003{left:736.380000px;}
.xed_c00003{left:737.445000px;}
.xd9_c00003{left:738.525000px;}
.xc_c00003{left:740.340000px;}
.x2ae_c00003{left:741.766500px;}
.x1a7_c00003{left:743.566500px;}
.x1f0_c00003{left:744.645000px;}
.x91_c00003{left:745.873500px;}
.x7c_c00003{left:746.953500px;}
.x74_c00003{left:748.753500px;}
.x146_c00003{left:750.045000px;}
.x2a4_c00003{left:751.305000px;}
.x13a_c00003{left:752.385000px;}
.x1ae_c00003{left:754.369500px;}
.x150_c00003{left:756.345000px;}
.x132_c00003{left:757.425000px;}
.x29f_c00003{left:759.405000px;}
.x26c_c00003{left:760.489500px;}
.x2c6_c00003{left:762.105000px;}
.x222_c00003{left:763.188000px;}
.xde_c00003{left:764.625000px;}
.x196_c00003{left:766.787997px;}
.x258_c00003{left:769.128000px;}
.x2c0_c00003{left:771.105000px;}
.x1b7_c00003{left:772.549500px;}
.x22d_c00003{left:774.529726px;}
.x46_c00003{left:776.113500px;}
.x182_c00003{left:779.745000px;}
.x55_c00003{left:781.693500px;}
.xdf_c00003{left:782.808000px;}
.x129_c00003{left:783.885000px;}
.x223_c00003{left:785.867929px;}
.x17c_c00003{left:787.845000px;}
.x1d1_c00003{left:789.285000px;}
.x1c8_c00003{left:790.905000px;}
.xba_c00003{left:792.525000px;}
.x17f_c00003{left:793.605000px;}
.x1c7_c00003{left:794.866500px;}
.x259_c00003{left:796.128000px;}
.x1c0_c00003{left:797.205000px;}
.x1e5_c00003{left:798.825000px;}
.x10d_c00003{left:799.905000px;}
.xf0_c00003{left:800.985000px;}
.x1ba_c00003{left:802.245000px;}
.xd5_c00003{left:803.325000px;}
.x66_c00003{left:804.913500px;}
.xc1_c00003{left:807.105000px;}
.x2f7_c00003{left:808.380000px;}
.x1ad_c00003{left:809.805000px;}
.xee_c00003{left:811.066500px;}
.xda_c00003{left:812.145000px;}
.x1a4_c00003{left:814.128000px;}
.x2aa_c00003{left:815.385000px;}
.x1a9_c00003{left:816.469500px;}
.x24a_c00003{left:817.731000px;}
.x2b8_c00003{left:818.805000px;}
.x1a6_c00003{left:820.425000px;}
.x2b4_c00003{left:821.505000px;}
.x214_c00003{left:822.585000px;}
.x1f5_c00003{left:823.666500px;}
.x23f_c00003{left:824.748000px;}
.x1a8_c00003{left:826.005000px;}
.x7d_c00003{left:827.053500px;}
.x75_c00003{left:828.853500px;}
.x13b_c00003{left:830.866500px;}
.x126_c00003{left:832.128000px;}
.x141_c00003{left:834.825000px;}
.x2c3_c00003{left:836.985000px;}
.xe0_c00003{left:838.245000px;}
.x133_c00003{left:839.866500px;}
.x224_c00003{left:841.489497px;}
.x230_c00003{left:842.566500px;}
.xfa_c00003{left:843.649087px;}
.x234_c00003{left:845.269500px;}
.x47_c00003{left:846.313500px;}
.x69_c00003{left:848.652000px;}
.x2a5_c00003{left:850.305000px;}
.x56_c00003{left:851.893500px;}
.x227_c00003{left:853.366500px;}
.x1b8_c00003{left:854.989500px;}
.xe1_c00003{left:856.428000px;}
.x273_c00003{left:857.685000px;}
.x225_c00003{left:858.769500px;}
.x237_c00003{left:859.848000px;}
.x240_c00003{left:860.928000px;}
.x248_c00003{left:862.009500px;}
.x25a_c00003{left:863.628000px;}
.x1cb_c00003{left:865.071877px;}
.x12a_c00003{left:866.325000px;}
.x255_c00003{left:867.408000px;}
.x253_c00003{left:869.025000px;}
.x25b_c00003{left:870.649500px;}
.x1d2_c00003{left:871.725000px;}
.x106_c00003{left:872.985000px;}
.xf1_c00003{left:874.605000px;}
.x1af_c00003{left:876.049262px;}
.xbb_c00003{left:877.128000px;}
.x265_c00003{left:878.208000px;}
.x6a_c00003{left:879.432000px;}
.xc8_c00003{left:880.725000px;}
.x1ec_c00003{left:882.528000px;}
.x1c2_c00003{left:883.605000px;}
.xd1_c00003{left:884.685000px;}
.xdb_c00003{left:885.766500px;}
.x67_c00003{left:887.711955px;}
.x68_c00003{left:888.972307px;}
.x25f_c00003{left:890.089500px;}
.x212_c00003{left:891.525000px;}
.x12b_c00003{left:892.608000px;}
.x1d5_c00003{left:894.225000px;}
.x183_c00003{left:895.666500px;}
.x190_c00003{left:896.925000px;}
.x1b0_c00003{left:898.551000px;}
.x17d_c00003{left:899.625000px;}
.x235_c00003{left:900.889500px;}
.x157_c00003{left:902.696806px;}
.x92_c00003{left:904.453500px;}
.x1fd_c00003{left:905.566500px;}
.x85_c00003{left:906.613500px;}
.x1f6_c00003{left:907.905000px;}
.x161_c00003{left:909.345000px;}
.x6b_c00003{left:910.752000px;}
.x7e_c00003{left:912.193500px;}
.x13c_c00003{left:913.305000px;}
.x152_c00003{left:914.566500px;}
.x76_c00003{left:915.613500px;}
.x6c_c00003{left:916.872000px;}
.x29d_c00003{left:918.345000px;}
.x147_c00003{left:921.225000px;}
.x134_c00003{left:922.305000px;}
.x1f8_c00003{left:924.105000px;}
.x6d_c00003{left:925.332000px;}
.x136_c00003{left:926.805000px;}
.x201_c00003{left:928.789500px;}
.xe2_c00003{left:930.051000px;}
.x2a7_c00003{left:931.128000px;}
.x149_c00003{left:932.925000px;}
.x127_c00003{left:934.009500px;}
.x251_c00003{left:935.989500px;}
.x158_c00003{left:937.609500px;}
.x6e_c00003{left:938.832000px;}
.xe9_c00003{left:940.129222px;}
.x102_c00003{left:941.566500px;}
.x1cc_c00003{left:945.349262px;}
.x107_c00003{left:946.605000px;}
.x12c_c00003{left:948.766500px;}
.xc2_c00003{left:950.566500px;}
.xf2_c00003{left:951.645000px;}
.x260_c00003{left:953.269402px;}
.xc9_c00003{left:954.345000px;}
.x1c9_c00003{left:955.425000px;}
.x263_c00003{left:957.045000px;}
.xd2_c00003{left:958.305000px;}
.xdc_c00003{left:959.385000px;}
.x1bd_c00003{left:962.089500px;}
.xc5_c00003{left:963.705000px;}
.x1e0_c00003{left:964.966500px;}
.x1bb_c00003{left:966.045000px;}
.xbc_c00003{left:967.666500px;}
.xcb_c00003{left:969.825000px;}
.x108_c00003{left:971.445000px;}
.x228_c00003{left:972.708000px;}
.x239_c00003{left:973.789500px;}
.x1d6_c00003{left:975.585000px;}
.x25c_c00003{left:977.025000px;}
.x290_c00003{left:978.466500px;}
.x245_c00003{left:979.727807px;}
.x1d8_c00003{left:981.166500px;}
.x159_c00003{left:982.968347px;}
.xe3_c00003{left:985.485000px;}
.x2bb_c00003{left:986.745000px;}
.x1f2_c00003{left:988.005000px;}
.x1ed_c00003{left:989.809500px;}
.x2c7_c00003{left:991.785000px;}
.x153_c00003{left:993.045000px;}
.x1e2_c00003{left:994.128000px;}
.x13d_c00003{left:995.745000px;}
.x12d_c00003{left:997.371000px;}
.x278_c00003{left:998.448000px;}
.x138_c00003{left:999.708000px;}
.x1f1_c00003{left:1001.866500px;}
.x3b_c00003{left:1003.453500px;}
.x266_c00003{left:1005.649140px;}
.x2bc_c00003{left:1006.725000px;}
.x137_c00003{left:1009.245000px;}
.xea_c00003{left:1010.329274px;}
.x261_c00003{left:1012.669442px;}
.x1fe_c00003{left:1013.925000px;}
.x202_c00003{left:1015.371000px;}
.x264_c00003{left:1016.445000px;}
.x2ad_c00003{left:1017.705000px;}
.xf3_c00003{left:1020.225000px;}
.x1cd_c00003{left:1021.668347px;}
.xc3_c00003{left:1022.925000px;}
.xcc_c00003{left:1024.551000px;}
.xbd_c00003{left:1026.889500px;}
.x2b1_c00003{left:1028.325000px;}
.xc6_c00003{left:1030.669500px;}
.x238_c00003{left:1032.645000px;}
.x1c5_c00003{left:1034.266500px;}
.xe4_c00003{left:1036.245000px;}
.x24e_c00003{left:1038.589466px;}
.x1bf_c00003{left:1040.566500px;}
.x1ca_c00003{left:1041.825000px;}
.x57_c00003{left:1043.053500px;}
.x1bc_c00003{left:1044.525000px;}
.x28b_c00003{left:1045.785000px;}
.xf5_c00003{left:1047.766500px;}
.x1da_c00003{left:1050.105000px;}
.x1e1_c00003{left:1051.366500px;}
.x203_c00003{left:1052.808920px;}
.x1d7_c00003{left:1054.066500px;}
.x2af_c00003{left:1055.145000px;}
.x298_c00003{left:1056.585000px;}
.x1dd_c00003{left:1058.025000px;}
.x15a_c00003{left:1059.288347px;}
.x296_c00003{left:1060.545000px;}
.x288_c00003{left:1062.705000px;}
.x1fa_c00003{left:1065.945000px;}
.x267_c00003{left:1069.369223px;}
.x14b_c00003{left:1071.885000px;}
.x1ce_c00003{left:1073.331000px;}
.x2b9_c00003{left:1074.405000px;}
.xeb_c00003{left:1075.488346px;}
.x13e_c00003{left:1078.185000px;}
.x154_c00003{left:1079.445000px;}
.x135_c00003{left:1082.145000px;}
.x236_c00003{left:1083.409130px;}
.x2b2_c00003{left:1084.485000px;}
.x148_c00003{left:1086.105000px;}
.xd6_c00003{left:1088.085000px;}
.x28f_c00003{left:1090.066500px;}
.x25d_c00003{left:1092.585000px;}
.xc4_c00003{left:1094.205000px;}
.xf4_c00003{left:1095.466500px;}
.xdd_c00003{left:1098.166500px;}
.x297_c00003{left:1100.685000px;}
.xd3_c00003{left:1101.945000px;}
.x254_c00003{left:1103.385000px;}
.x204_c00003{left:1105.909500px;}
.x27a_c00003{left:1108.069500px;}
.x2b5_c00003{left:1109.145000px;}
.x15b_c00003{left:1110.948000px;}
.x2be_c00003{left:1113.105000px;}
.x284_c00003{left:1116.345000px;}
.x2bd_c00003{left:1118.325000px;}
.x7f_c00003{left:1119.913500px;}
.x1b1_c00003{left:1121.570994px;}
.x2c4_c00003{left:1124.266500px;}
.x286_c00003{left:1126.966500px;}
.x291_c00003{left:1129.845000px;}
.x268_c00003{left:1133.089307px;}
.x26f_c00003{left:1134.166500px;}
.x299_c00003{left:1135.245000px;}
.x27c_c00003{left:1137.405000px;}
.x26e_c00003{left:1139.569500px;}
.x2c1_c00003{left:1142.805000px;}
.x2ba_c00003{left:1143.885000px;}
.x27d_c00003{left:1145.505000px;}
.x156_c00003{left:1147.670081px;}
.xf9_c00003{left:1150.009500px;}
.x2bf_c00003{left:1152.885000px;}
.x37_c00003{left:1158.793500px;}
.x33a_c00003{left:1162.395559px;}
.x343_c00003{left:1165.093452px;}
.x32e_c00003{left:1168.873500px;}
.x8d_c00003{left:1174.993500px;}
.x77_c00003{left:1177.873500px;}
.x80_c00003{left:1179.853500px;}
.x5c_c00003{left:1182.553500px;}
.x5f_c00003{left:1183.813500px;}
.x48_c00003{left:1185.073500px;}
.x32f_c00003{left:1216.573500px;}
.x78_c00003{left:1230.073500px;}
.x38_c00003{left:1239.613500px;}
.x312_c00003{left:1240.845000px;}
.x8e_c00003{left:1242.493500px;}
.x49_c00003{left:1247.353500px;}
.x89_c00003{left:1252.933500px;}
.x3c_c00003{left:1255.633500px;}
.x330_c00003{left:1281.913500px;}
.x79_c00003{left:1296.493500px;}
.x319_c00003{left:1302.583500px;}
.x81_c00003{left:1309.633500px;}
.x4a_c00003{left:1311.073500px;}
.x88_c00003{left:1312.513500px;}
.x93_c00003{left:1315.213500px;}
.x33b_c00003{left:1322.596119px;}
.x344_c00003{left:1325.293412px;}
.x31d_c00003{left:1335.883500px;}
.x33c_c00003{left:1337.715133px;}
.x345_c00003{left:1340.413476px;}
.x7a_c00003{left:1366.693500px;}
.x4b_c00003{left:1374.793500px;}
.x86_c00003{left:1377.313500px;}
.x87_c00003{left:1378.393500px;}
.x82_c00003{left:1379.653500px;}
.x313_c00003{left:1394.431500px;}
.x331_c00003{left:1411.873500px;}
.x7b_c00003{left:1423.213500px;}
.x83_c00003{left:1435.633500px;}
.x4c_c00003{left:1438.513500px;}
.x84_c00003{left:1489.813500px;}
.x31a_c00003{left:1491.271500px;}
.x4d_c00003{left:1511.955000px;}
.x5d_c00003{left:1513.575000px;}
.x33d_c00003{left:1527.255319px;}
.x31e_c00003{left:1530.150000px;}
.x33f_c00003{left:1532.835207px;}
.x346_c00003{left:1535.535049px;}
.x334_c00003{left:1540.576888px;}
.x33e_c00003{left:1542.194968px;}
.x336_c00003{left:1544.897597px;}
.x314_c00003{left:1547.970000px;}
.x335_c00003{left:1552.277476px;}
.x323_c00003{left:1557.306074px;}
.x325_c00003{left:1561.267591px;}
.x332_c00003{left:1564.155000px;}
.x324_c00003{left:1567.746300px;}
.x329_c00003{left:1571.535945px;}
.x32b_c00003{left:1575.854295px;}
.x32a_c00003{left:1582.694533px;}
.x337_c00003{left:1593.858558px;}
.x341_c00003{left:1596.196664px;}
.x347_c00003{left:1598.895337px;}
.x340_c00003{left:1602.135148px;}
.x338_c00003{left:1603.938444px;}
.x326_c00003{left:1606.266457px;}
.x327_c00003{left:1625.886536px;}
.x32c_c00003{left:1635.614095px;}
.x39_c00003{left:1638.855000px;}
.x4e_c00003{left:1649.295000px;}
.x333_c00003{left:1654.875000px;}
.x61_c00003{left:1660.095000px;}
.x342_c00003{left:1666.395000px;}
.x339_c00003{left:1676.475000px;}
.x32d_c00003{left:1677.915000px;}
.x328_c00003{left:1679.895000px;}
@media print{
.vb_c00003{vertical-align:-47.360427pt;}
.v9_c00003{vertical-align:-45.441653pt;}
.v16_c00003{vertical-align:-16.000000pt;}
.v17_c00003{vertical-align:-5.120832pt;}
.v2_c00003{vertical-align:-3.839584pt;}
.vd_c00003{vertical-align:-1.918752pt;}
.v0_c00003{vertical-align:0.000000pt;}
.v4_c00003{vertical-align:1.920832pt;}
.v1_c00003{vertical-align:3.839584pt;}
.v15_c00003{vertical-align:16.000000pt;}
.v11_c00003{vertical-align:17.279147pt;}
.v3_c00003{vertical-align:21.759584pt;}
.vc_c00003{vertical-align:23.679147pt;}
.va_c00003{vertical-align:24.960427pt;}
.ve_c00003{vertical-align:26.879147pt;}
.v6_c00003{vertical-align:28.160427pt;}
.v8_c00003{vertical-align:30.079147pt;}
.v5_c00003{vertical-align:32.639573pt;}
.v12_c00003{vertical-align:33.918773pt;}
.vf_c00003{vertical-align:35.200000pt;}
.v13_c00003{vertical-align:37.758347pt;}
.v14_c00003{vertical-align:46.081227pt;}
.v10_c00003{vertical-align:50.565333pt;}
.v7_c00003{vertical-align:58.879200pt;}
.ls0_c00003{letter-spacing:0.000000pt;}
.ls1e_c00003{letter-spacing:0.014453pt;}
.ls14_c00003{letter-spacing:0.070289pt;}
.ls1_c00003{letter-spacing:0.319787pt;}
.ls1d_c00003{letter-spacing:0.482133pt;}
.ls1b_c00003{letter-spacing:15.902293pt;}
.ls1c_c00003{letter-spacing:16.541867pt;}
.ls5_c00003{letter-spacing:172.525481pt;}
.ls3_c00003{letter-spacing:185.054774pt;}
.ls8_c00003{letter-spacing:186.703363pt;}
.ls6_c00003{letter-spacing:186.830467pt;}
.ls7_c00003{letter-spacing:187.073540pt;}
.ls4_c00003{letter-spacing:201.262248pt;}
.lsf_c00003{letter-spacing:250.711573pt;}
.lsc_c00003{letter-spacing:263.519040pt;}
.ls12_c00003{letter-spacing:271.844907pt;}
.ls18_c00003{letter-spacing:318.593707pt;}
.lsa_c00003{letter-spacing:357.333299pt;}
.lse_c00003{letter-spacing:465.885973pt;}
.ls1a_c00003{letter-spacing:510.667627pt;}
.ls17_c00003{letter-spacing:560.020907pt;}
.ls10_c00003{letter-spacing:615.732907pt;}
.ls11_c00003{letter-spacing:659.914240pt;}
.lsd_c00003{letter-spacing:711.786240pt;}
.ls9_c00003{letter-spacing:751.204693pt;}
.ls2_c00003{letter-spacing:751.738027pt;}
.ls13_c00003{letter-spacing:751.898027pt;}
.ls15_c00003{letter-spacing:752.090027pt;}
.lsb_c00003{letter-spacing:754.255896pt;}
.ls19_c00003{letter-spacing:764.303573pt;}
.ls16_c00003{letter-spacing:816.175573pt;}
.wsf1_c00003{word-spacing:-215.454925pt;}
.ws13a_c00003{word-spacing:-200.590359pt;}
.ws129_c00003{word-spacing:-200.347286pt;}
.ws15b_c00003{word-spacing:-200.220182pt;}
.wse2_c00003{word-spacing:-199.247452pt;}
.ws10f_c00003{word-spacing:-185.366460pt;}
.ws14_c00003{word-spacing:-26.643520pt;}
.ws1a4_c00003{word-spacing:-23.879680pt;}
.ws17f_c00003{word-spacing:-23.663360pt;}
.ws179_c00003{word-spacing:-20.796049pt;}
.ws16_c00003{word-spacing:-20.781946pt;}
.ws177_c00003{word-spacing:-20.725760pt;}
.ws176_c00003{word-spacing:-20.136960pt;}
.ws13_c00003{word-spacing:-17.051853pt;}
.ws181_c00003{word-spacing:-16.404224pt;}
.ws178_c00003{word-spacing:-16.368640pt;}
.wsef_c00003{word-spacing:-16.220310pt;}
.ws1a1_c00003{word-spacing:-16.012800pt;}
.wsa9_c00003{word-spacing:-15.994936pt;}
.ws6f_c00003{word-spacing:-15.769656pt;}
.ws87_c00003{word-spacing:-15.544376pt;}
.ws50_c00003{word-spacing:-15.544320pt;}
.ws1f_c00003{word-spacing:-15.319078pt;}
.wsca_c00003{word-spacing:-15.093835pt;}
.ws10d_c00003{word-spacing:-14.868574pt;}
.ws1a0_c00003{word-spacing:-14.868518pt;}
.ws196_c00003{word-spacing:-14.767375pt;}
.ws19f_c00003{word-spacing:-14.446116pt;}
.ws9f_c00003{word-spacing:-14.417939pt;}
.ws46_c00003{word-spacing:-14.192678pt;}
.wsc0_c00003{word-spacing:-13.742080pt;}
.ws135_c00003{word-spacing:-13.516819pt;}
.ws180_c00003{word-spacing:-13.344015pt;}
.ws0_c00003{word-spacing:-13.306880pt;}
.ws1a2_c00003{word-spacing:-12.976669pt;}
.ws119_c00003{word-spacing:-12.840979pt;}
.wsdf_c00003{word-spacing:-12.165139pt;}
.ws15_c00003{word-spacing:-11.900787pt;}
.ws10b_c00003{word-spacing:-11.489280pt;}
.ws198_c00003{word-spacing:-11.031040pt;}
.ws17e_c00003{word-spacing:-10.876940pt;}
.ws17b_c00003{word-spacing:-10.848012pt;}
.ws1c_c00003{word-spacing:-10.702147pt;}
.ws17a_c00003{word-spacing:-10.319360pt;}
.ws195_c00003{word-spacing:-9.607680pt;}
.wsb_c00003{word-spacing:-8.823040pt;}
.ws12_c00003{word-spacing:-7.993056pt;}
.ws191_c00003{word-spacing:-7.644155pt;}
.ws1f9_c00003{word-spacing:-7.521280pt;}
.ws1f1_c00003{word-spacing:-5.785600pt;}
.ws1c3_c00003{word-spacing:-5.496320pt;}
.ws1a5_c00003{word-spacing:-5.207040pt;}
.ws1a3_c00003{word-spacing:-0.057600pt;}
.ws18_c00003{word-spacing:-0.042809pt;}
.ws1_c00003{word-spacing:0.000000pt;}
.ws188_c00003{word-spacing:9.323146pt;}
.ws18a_c00003{word-spacing:18.487084pt;}
.ws193_c00003{word-spacing:23.551647pt;}
.ws1de_c00003{word-spacing:35.878810pt;}
.ws1cb_c00003{word-spacing:35.892634pt;}
.ws1ca_c00003{word-spacing:42.869506pt;}
.ws1e1_c00003{word-spacing:42.929050pt;}
.ws1cc_c00003{word-spacing:42.929280pt;}
.ws1e2_c00003{word-spacing:44.189043pt;}
.wse9_c00003{word-spacing:46.316916pt;}
.ws126_c00003{word-spacing:47.647677pt;}
.ws1d4_c00003{word-spacing:49.286651pt;}
.ws1d6_c00003{word-spacing:49.326336pt;}
.ws1cf_c00003{word-spacing:51.225947pt;}
.ws18d_c00003{word-spacing:51.230899pt;}
.ws1c9_c00003{word-spacing:51.232666pt;}
.ws1c8_c00003{word-spacing:51.235163pt;}
.ws1e0_c00003{word-spacing:51.246259pt;}
.ws1d1_c00003{word-spacing:51.281243pt;}
.ws1fe_c00003{word-spacing:52.027622pt;}
.ws1ff_c00003{word-spacing:52.083866pt;}
.ws163_c00003{word-spacing:54.574156pt;}
.ws131_c00003{word-spacing:54.700876pt;}
.ws141_c00003{word-spacing:54.944332pt;}
.ws186_c00003{word-spacing:56.865126pt;}
.ws1fd_c00003{word-spacing:62.247878pt;}
.ws200_c00003{word-spacing:62.271872pt;}
.wsf9_c00003{word-spacing:62.524389pt;}
.ws201_c00003{word-spacing:63.511981pt;}
.ws203_c00003{word-spacing:63.597178pt;}
.ws1e3_c00003{word-spacing:67.205962pt;}
.ws1d0_c00003{word-spacing:67.219299pt;}
.ws18b_c00003{word-spacing:67.447629pt;}
.ws1ce_c00003{word-spacing:71.057610pt;}
.ws206_c00003{word-spacing:71.135813pt;}
.ws20c_c00003{word-spacing:71.236173pt;}
.ws209_c00003{word-spacing:71.237187pt;}
.ws18e_c00003{word-spacing:71.551565pt;}
.ws187_c00003{word-spacing:72.831027pt;}
.ws184_c00003{word-spacing:73.323341pt;}
.ws192_c00003{word-spacing:73.472230pt;}
.ws207_c00003{word-spacing:73.745860pt;}
.ws1fb_c00003{word-spacing:73.777143pt;}
.ws1fc_c00003{word-spacing:73.797734pt;}
.ws1cd_c00003{word-spacing:74.256202pt;}
.ws1d5_c00003{word-spacing:75.556454pt;}
.ws185_c00003{word-spacing:77.205811pt;}
.ws1f8_c00003{word-spacing:78.384717pt;}
.ws189_c00003{word-spacing:80.021088pt;}
.ws183_c00003{word-spacing:80.109052pt;}
.wsed_c00003{word-spacing:80.171446pt;}
.ws182_c00003{word-spacing:80.566093pt;}
.ws216_c00003{word-spacing:80.840115pt;}
.ws190_c00003{word-spacing:81.312102pt;}
.ws217_c00003{word-spacing:82.867866pt;}
.ws7_c00003{word-spacing:83.585421pt;}
.wsa_c00003{word-spacing:83.585811pt;}
.ws1d8_c00003{word-spacing:87.070003pt;}
.wsec_c00003{word-spacing:88.435300pt;}
.ws1b7_c00003{word-spacing:90.056230pt;}
.wsd_c00003{word-spacing:90.101429pt;}
.ws1e5_c00003{word-spacing:91.555328pt;}
.ws1d7_c00003{word-spacing:92.168321pt;}
.wsf_c00003{word-spacing:93.181453pt;}
.ws18c_c00003{word-spacing:93.741082pt;}
.ws1e4_c00003{word-spacing:95.353578pt;}
.ws1d2_c00003{word-spacing:95.387443pt;}
.ws208_c00003{word-spacing:97.452289pt;}
.ws202_c00003{word-spacing:97.513137pt;}
.ws118_c00003{word-spacing:101.788834pt;}
.ws205_c00003{word-spacing:102.574553pt;}
.ws20e_c00003{word-spacing:104.530150pt;}
.wsc3_c00003{word-spacing:105.436173pt;}
.ws11b_c00003{word-spacing:106.092343pt;}
.ws212_c00003{word-spacing:107.026233pt;}
.ws213_c00003{word-spacing:107.091379pt;}
.wse1_c00003{word-spacing:107.634525pt;}
.wseb_c00003{word-spacing:108.103044pt;}
.ws18f_c00003{word-spacing:109.576858pt;}
.ws20a_c00003{word-spacing:109.653274pt;}
.ws43_c00003{word-spacing:110.838561pt;}
.ws167_c00003{word-spacing:111.258328pt;}
.ws61_c00003{word-spacing:111.372815pt;}
.wsdd_c00003{word-spacing:111.403292pt;}
.ws80_c00003{word-spacing:112.752101pt;}
.ws165_c00003{word-spacing:112.846621pt;}
.ws133_c00003{word-spacing:112.966429pt;}
.ws143_c00003{word-spacing:113.196061pt;}
.ws112_c00003{word-spacing:113.302303pt;}
.ws49_c00003{word-spacing:113.429376pt;}
.ws42_c00003{word-spacing:114.133656pt;}
.ws175_c00003{word-spacing:117.604689pt;}
.ws11c_c00003{word-spacing:118.497971pt;}
.ws211_c00003{word-spacing:119.221911pt;}
.ws103_c00003{word-spacing:119.238614pt;}
.wse5_c00003{word-spacing:119.593872pt;}
.ws215_c00003{word-spacing:121.142760pt;}
.ws114_c00003{word-spacing:121.818207pt;}
.ws33_c00003{word-spacing:122.798509pt;}
.ws11a_c00003{word-spacing:123.219041pt;}
.ws1dc_c00003{word-spacing:123.489263pt;}
.ws1dd_c00003{word-spacing:123.535181pt;}
.wsfb_c00003{word-spacing:124.265359pt;}
.ws15e_c00003{word-spacing:124.360493pt;}
.ws12c_c00003{word-spacing:124.487213pt;}
.ws13d_c00003{word-spacing:124.730669pt;}
.ws1db_c00003{word-spacing:124.788635pt;}
.ws16f_c00003{word-spacing:124.905736pt;}
.ws5b_c00003{word-spacing:125.409954pt;}
.ws1f3_c00003{word-spacing:126.128896pt;}
.ws1ec_c00003{word-spacing:126.257187pt;}
.ws20f_c00003{word-spacing:126.265025pt;}
.ws1e9_c00003{word-spacing:126.283008pt;}
.ws1ee_c00003{word-spacing:126.317603pt;}
.wsff_c00003{word-spacing:126.742223pt;}
.ws15f_c00003{word-spacing:127.897906pt;}
.ws63_c00003{word-spacing:129.599413pt;}
.wse8_c00003{word-spacing:130.560941pt;}
.ws44_c00003{word-spacing:131.532608pt;}
.ws15a_c00003{word-spacing:131.585079pt;}
.ws1d3_c00003{word-spacing:133.110307pt;}
.ws194_c00003{word-spacing:133.272525pt;}
.ws1bb_c00003{word-spacing:133.275789pt;}
.ws20d_c00003{word-spacing:133.308138pt;}
.ws1ed_c00003{word-spacing:133.794032pt;}
.ws1ea_c00003{word-spacing:133.814528pt;}
.ws1e8_c00003{word-spacing:133.896210pt;}
.ws1f4_c00003{word-spacing:133.897159pt;}
.ws1f0_c00003{word-spacing:133.917786pt;}
.ws1f7_c00003{word-spacing:133.923123pt;}
.ws1f2_c00003{word-spacing:133.926757pt;}
.ws1f5_c00003{word-spacing:133.937877pt;}
.ws1ef_c00003{word-spacing:133.943213pt;}
.ws1f6_c00003{word-spacing:133.948550pt;}
.ws1e7_c00003{word-spacing:133.952357pt;}
.ws1eb_c00003{word-spacing:133.968640pt;}
.ws125_c00003{word-spacing:134.036902pt;}
.ws1b4_c00003{word-spacing:134.330947pt;}
.ws1b3_c00003{word-spacing:134.370145pt;}
.ws161_c00003{word-spacing:134.805307pt;}
.ws12f_c00003{word-spacing:134.932027pt;}
.ws166_c00003{word-spacing:135.162812pt;}
.ws140_c00003{word-spacing:135.175484pt;}
.ws16e_c00003{word-spacing:135.337916pt;}
.ws68_c00003{word-spacing:135.451684pt;}
.ws174_c00003{word-spacing:135.674300pt;}
.wsf4_c00003{word-spacing:135.800942pt;}
.wse0_c00003{word-spacing:136.218658pt;}
.ws1df_c00003{word-spacing:136.308899pt;}
.ws111_c00003{word-spacing:136.492308pt;}
.ws204_c00003{word-spacing:137.825792pt;}
.wse_c00003{word-spacing:138.808672pt;}
.ws20_c00003{word-spacing:139.554538pt;}
.wsd6_c00003{word-spacing:140.575490pt;}
.ws1ba_c00003{word-spacing:140.892747pt;}
.ws1c2_c00003{word-spacing:140.908423pt;}
.ws1c4_c00003{word-spacing:140.916922pt;}
.ws1bf_c00003{word-spacing:140.931514pt;}
.ws1c6_c00003{word-spacing:140.931557pt;}
.ws1be_c00003{word-spacing:140.932842pt;}
.ws1c5_c00003{word-spacing:140.938177pt;}
.ws1b9_c00003{word-spacing:140.943674pt;}
.ws1c0_c00003{word-spacing:140.957261pt;}
.ws1bd_c00003{word-spacing:140.957504pt;}
.ws1c1_c00003{word-spacing:140.991828pt;}
.ws1bc_c00003{word-spacing:141.192922pt;}
.ws1b1_c00003{word-spacing:141.402205pt;}
.ws1ab_c00003{word-spacing:141.407049pt;}
.ws1b0_c00003{word-spacing:141.407980pt;}
.ws1b2_c00003{word-spacing:141.413311pt;}
.ws1b5_c00003{word-spacing:141.421317pt;}
.ws1a9_c00003{word-spacing:141.426647pt;}
.ws1ae_c00003{word-spacing:141.432422pt;}
.ws1a7_c00003{word-spacing:141.435095pt;}
.ws1af_c00003{word-spacing:141.446016pt;}
.ws1aa_c00003{word-spacing:141.446246pt;}
.ws92_c00003{word-spacing:141.822562pt;}
.ws5f_c00003{word-spacing:141.823373pt;}
.ws104_c00003{word-spacing:142.111038pt;}
.ws109_c00003{word-spacing:142.501337pt;}
.ws2c_c00003{word-spacing:142.816659pt;}
.ws20b_c00003{word-spacing:142.912383pt;}
.ws210_c00003{word-spacing:142.917718pt;}
.ws214_c00003{word-spacing:142.946918pt;}
.wsb5_c00003{word-spacing:143.310085pt;}
.ws9c_c00003{word-spacing:143.436053pt;}
.ws108_c00003{word-spacing:143.979472pt;}
.ws110_c00003{word-spacing:145.011130pt;}
.wse4_c00003{word-spacing:145.228992pt;}
.ws10e_c00003{word-spacing:145.489019pt;}
.wsa2_c00003{word-spacing:145.968824pt;}
.wsf7_c00003{word-spacing:146.768011pt;}
.ws3d_c00003{word-spacing:146.911830pt;}
.ws162_c00003{word-spacing:147.089868pt;}
.ws7b_c00003{word-spacing:147.499151pt;}
.ws10_c00003{word-spacing:148.417978pt;}
.ws15d_c00003{word-spacing:148.774863pt;}
.ws12b_c00003{word-spacing:148.901199pt;}
.ws124_c00003{word-spacing:149.033194pt;}
.ws13c_c00003{word-spacing:149.142735pt;}
.ws3c_c00003{word-spacing:151.804057pt;}
.wsfe_c00003{word-spacing:152.375328pt;}
.ws11d_c00003{word-spacing:153.555901pt;}
.ws2b_c00003{word-spacing:156.279257pt;}
.ws8_c00003{word-spacing:158.595706pt;}
.ws148_c00003{word-spacing:158.718890pt;}
.ws113_c00003{word-spacing:159.684502pt;}
.ws106_c00003{word-spacing:159.738586pt;}
.ws16a_c00003{word-spacing:159.749982pt;}
.ws171_c00003{word-spacing:160.085982pt;}
.ws11f_c00003{word-spacing:160.325647pt;}
.ws1d9_c00003{word-spacing:161.257922pt;}
.wsf3_c00003{word-spacing:161.434046pt;}
.wsf5_c00003{word-spacing:161.829587pt;}
.ws3_c00003{word-spacing:162.259778pt;}
.ws30_c00003{word-spacing:162.868777pt;}
.ws121_c00003{word-spacing:163.753259pt;}
.ws10c_c00003{word-spacing:165.048894pt;}
.ws41_c00003{word-spacing:166.603672pt;}
.ws147_c00003{word-spacing:167.008704pt;}
.ws23_c00003{word-spacing:168.187804pt;}
.ws2_c00003{word-spacing:168.604450pt;}
.wse6_c00003{word-spacing:169.614593pt;}
.ws107_c00003{word-spacing:170.050453pt;}
.wse7_c00003{word-spacing:170.862097pt;}
.ws25_c00003{word-spacing:172.602202pt;}
.ws3b_c00003{word-spacing:172.707052pt;}
.ws28_c00003{word-spacing:172.719238pt;}
.ws160_c00003{word-spacing:173.186545pt;}
.ws12e_c00003{word-spacing:173.313649pt;}
.ws150_c00003{word-spacing:173.544109pt;}
.ws13f_c00003{word-spacing:173.556721pt;}
.wsd8_c00003{word-spacing:173.604629pt;}
.wsea_c00003{word-spacing:173.651442pt;}
.wsfd_c00003{word-spacing:174.525582pt;}
.ws12d_c00003{word-spacing:175.101361pt;}
.ws13e_c00003{word-spacing:175.375441pt;}
.wsc1_c00003{word-spacing:176.505280pt;}
.ws4_c00003{word-spacing:176.987874pt;}
.wsf0_c00003{word-spacing:177.634665pt;}
.ws11_c00003{word-spacing:178.384691pt;}
.wsd4_c00003{word-spacing:178.885968pt;}
.wsf8_c00003{word-spacing:179.122020pt;}
.ws139_c00003{word-spacing:180.033274pt;}
.ws7e_c00003{word-spacing:180.260138pt;}
.ws47_c00003{word-spacing:180.261738pt;}
.ws159_c00003{word-spacing:180.666875pt;}
.ws102_c00003{word-spacing:180.748137pt;}
.ws169_c00003{word-spacing:180.841979pt;}
.ws170_c00003{word-spacing:181.177980pt;}
.ws115_c00003{word-spacing:181.470025pt;}
.ws123_c00003{word-spacing:182.029557pt;}
.wsd2_c00003{word-spacing:182.732314pt;}
.wsbf_c00003{word-spacing:183.362547pt;}
.wsa0_c00003{word-spacing:184.539936pt;}
.ws24_c00003{word-spacing:184.943346pt;}
.ws8e_c00003{word-spacing:185.343724pt;}
.ws173_c00003{word-spacing:185.619714pt;}
.wsf6_c00003{word-spacing:187.069570pt;}
.ws66_c00003{word-spacing:187.121471pt;}
.wsdc_c00003{word-spacing:187.263366pt;}
.ws55_c00003{word-spacing:187.264013pt;}
.ws29_c00003{word-spacing:188.118707pt;}
.ws117_c00003{word-spacing:188.134566pt;}
.wse3_c00003{word-spacing:188.767853pt;}
.wsd1_c00003{word-spacing:188.835455pt;}
.ws6_c00003{word-spacing:189.147079pt;}
.ws1da_c00003{word-spacing:189.410868pt;}
.ws22_c00003{word-spacing:190.539296pt;}
.ws77_c00003{word-spacing:190.935146pt;}
.ws5_c00003{word-spacing:191.717563pt;}
.ws45_c00003{word-spacing:191.785372pt;}
.ws100_c00003{word-spacing:192.676484pt;}
.wsd7_c00003{word-spacing:192.858476pt;}
.ws7d_c00003{word-spacing:192.976226pt;}
.wsd5_c00003{word-spacing:193.020105pt;}
.ws8c_c00003{word-spacing:193.185244pt;}
.ws5e_c00003{word-spacing:193.185427pt;}
.ws14b_c00003{word-spacing:195.096496pt;}
.ws26_c00003{word-spacing:196.490670pt;}
.ws14a_c00003{word-spacing:196.574632pt;}
.wsb0_c00003{word-spacing:196.610939pt;}
.ws93_c00003{word-spacing:196.690677pt;}
.ws60_c00003{word-spacing:196.691290pt;}
.ws11e_c00003{word-spacing:196.816553pt;}
.ws116_c00003{word-spacing:198.053128pt;}
.ws16b_c00003{word-spacing:198.131219pt;}
.ws1d_c00003{word-spacing:198.342496pt;}
.ws172_c00003{word-spacing:198.467220pt;}
.ws164_c00003{word-spacing:198.551700pt;}
.ws76_c00003{word-spacing:198.639877pt;}
.wsfc_c00003{word-spacing:199.637347pt;}
.ws105_c00003{word-spacing:200.039742pt;}
.ws54_c00003{word-spacing:200.530560pt;}
.ws14e_c00003{word-spacing:200.703814pt;}
.wsb6_c00003{word-spacing:200.860502pt;}
.ws122_c00003{word-spacing:201.089897pt;}
.ws1e_c00003{word-spacing:201.108154pt;}
.ws65_c00003{word-spacing:201.179579pt;}
.ws7c_c00003{word-spacing:202.558099pt;}
.wsc7_c00003{word-spacing:202.674186pt;}
.ws36_c00003{word-spacing:206.037521pt;}
.ws27_c00003{word-spacing:206.572839pt;}
.ws4d_c00003{word-spacing:207.189446pt;}
.ws84_c00003{word-spacing:207.189755pt;}
.ws120_c00003{word-spacing:207.662661pt;}
.wsc8_c00003{word-spacing:209.045946pt;}
.ws62_c00003{word-spacing:209.742778pt;}
.ws151_c00003{word-spacing:209.887887pt;}
.wsa6_c00003{word-spacing:210.793721pt;}
.ws101_c00003{word-spacing:211.006811pt;}
.ws144_c00003{word-spacing:211.794342pt;}
.wscc_c00003{word-spacing:212.326522pt;}
.ws4e_c00003{word-spacing:212.383147pt;}
.ws85_c00003{word-spacing:212.386593pt;}
.ws145_c00003{word-spacing:213.715302pt;}
.ws16c_c00003{word-spacing:215.589803pt;}
.ws89_c00003{word-spacing:215.826158pt;}
.ws14f_c00003{word-spacing:215.912155pt;}
.wsa7_c00003{word-spacing:215.934966pt;}
.wsda_c00003{word-spacing:217.746242pt;}
.ws52_c00003{word-spacing:217.746336pt;}
.ws2e_c00003{word-spacing:218.203722pt;}
.ws149_c00003{word-spacing:219.618783pt;}
.wsce_c00003{word-spacing:219.885017pt;}
.ws6d_c00003{word-spacing:220.089846pt;}
.wsfa_c00003{word-spacing:220.344769pt;}
.ws90_c00003{word-spacing:221.260507pt;}
.ws57_c00003{word-spacing:221.262797pt;}
.wsc4_c00003{word-spacing:222.231422pt;}
.ws71_c00003{word-spacing:222.492827pt;}
.ws8b_c00003{word-spacing:222.917396pt;}
.ws9b_c00003{word-spacing:223.727264pt;}
.ws64_c00003{word-spacing:224.218867pt;}
.ws2f_c00003{word-spacing:225.161766pt;}
.wsb3_c00003{word-spacing:225.502701pt;}
.ws79_c00003{word-spacing:227.124715pt;}
.ws81_c00003{word-spacing:227.583801pt;}
.ws4a_c00003{word-spacing:227.584301pt;}
.wsc9_c00003{word-spacing:229.296795pt;}
.ws73_c00003{word-spacing:229.389811pt;}
.ws16d_c00003{word-spacing:229.557055pt;}
.ws9e_c00003{word-spacing:229.950614pt;}
.wscb_c00003{word-spacing:230.357412pt;}
.ws153_c00003{word-spacing:230.401589pt;}
.ws15c_c00003{word-spacing:230.763585pt;}
.ws12a_c00003{word-spacing:230.925249pt;}
.ws13b_c00003{word-spacing:231.234369pt;}
.wsa3_c00003{word-spacing:231.352213pt;}
.ws142_c00003{word-spacing:233.684293pt;}
.ws157_c00003{word-spacing:233.952169pt;}
.ws9_c00003{word-spacing:234.189638pt;}
.ws51_c00003{word-spacing:234.330667pt;}
.ws88_c00003{word-spacing:234.334193pt;}
.ws86_c00003{word-spacing:235.265019pt;}
.ws4f_c00003{word-spacing:235.265050pt;}
.ws1fa_c00003{word-spacing:235.509337pt;}
.ws218_c00003{word-spacing:235.509813pt;}
.wsb7_c00003{word-spacing:236.289976pt;}
.ws95_c00003{word-spacing:236.290445pt;}
.wsaa_c00003{word-spacing:238.518726pt;}
.wsa8_c00003{word-spacing:240.318465pt;}
.ws70_c00003{word-spacing:242.355526pt;}
.wsdb_c00003{word-spacing:247.884226pt;}
.ws154_c00003{word-spacing:248.536624pt;}
.ws38_c00003{word-spacing:248.544930pt;}
.wsf2_c00003{word-spacing:248.600069pt;}
.wsbd_c00003{word-spacing:249.948714pt;}
.ws9a_c00003{word-spacing:249.949133pt;}
.ws155_c00003{word-spacing:250.495505pt;}
.ws31_c00003{word-spacing:251.224469pt;}
.ws146_c00003{word-spacing:253.055441pt;}
.ws152_c00003{word-spacing:253.585650pt;}
.wsb1_c00003{word-spacing:254.787067pt;}
.ws156_c00003{word-spacing:257.489834pt;}
.ws94_c00003{word-spacing:261.979893pt;}
.wsd3_c00003{word-spacing:262.174531pt;}
.ws1ac_c00003{word-spacing:263.908608pt;}
.ws34_c00003{word-spacing:264.331118pt;}
.ws1a8_c00003{word-spacing:267.088128pt;}
.ws56_c00003{word-spacing:267.097387pt;}
.ws8f_c00003{word-spacing:267.101031pt;}
.ws1e6_c00003{word-spacing:268.136931pt;}
.ws21_c00003{word-spacing:268.240831pt;}
.wsb2_c00003{word-spacing:272.235325pt;}
.ws128_c00003{word-spacing:273.826172pt;}
.wscd_c00003{word-spacing:274.352511pt;}
.ws78_c00003{word-spacing:275.597245pt;}
.ws138_c00003{word-spacing:277.307905pt;}
.ws3e_c00003{word-spacing:278.449476pt;}
.ws53_c00003{word-spacing:279.638827pt;}
.ws8a_c00003{word-spacing:279.642517pt;}
.wsb9_c00003{word-spacing:280.428939pt;}
.ws97_c00003{word-spacing:280.429690pt;}
.ws19_c00003{word-spacing:280.815193pt;}
.ws1b8_c00003{word-spacing:282.022022pt;}
.ws1a6_c00003{word-spacing:282.284878pt;}
.ws1ad_c00003{word-spacing:282.409728pt;}
.wsac_c00003{word-spacing:285.140330pt;}
.wsab_c00003{word-spacing:286.151228pt;}
.ws1b6_c00003{word-spacing:286.166933pt;}
.wsba_c00003{word-spacing:287.543141pt;}
.ws72_c00003{word-spacing:288.320490pt;}
.ws130_c00003{word-spacing:289.367826pt;}
.wsc6_c00003{word-spacing:291.118675pt;}
.ws32_c00003{word-spacing:291.267453pt;}
.ws98_c00003{word-spacing:292.100736pt;}
.ws10a_c00003{word-spacing:292.432323pt;}
.ws35_c00003{word-spacing:295.063159pt;}
.ws17c_c00003{word-spacing:295.728329pt;}
.ws83_c00003{word-spacing:296.902739pt;}
.ws96_c00003{word-spacing:296.903253pt;}
.wsb8_c00003{word-spacing:296.904873pt;}
.ws58_c00003{word-spacing:296.905387pt;}
.wsd9_c00003{word-spacing:296.907006pt;}
.ws4c_c00003{word-spacing:296.907520pt;}
.ws91_c00003{word-spacing:296.909139pt;}
.ws17d_c00003{word-spacing:299.839053pt;}
.ws2d_c00003{word-spacing:301.185551pt;}
.wsb4_c00003{word-spacing:302.907433pt;}
.wsa5_c00003{word-spacing:302.909566pt;}
.ws134_c00003{word-spacing:305.548456pt;}
.ws7a_c00003{word-spacing:305.837353pt;}
.ws6b_c00003{word-spacing:305.839486pt;}
.ws2a_c00003{word-spacing:307.702245pt;}
.wsbe_c00003{word-spacing:311.208571pt;}
.ws9d_c00003{word-spacing:311.209210pt;}
.ws14d_c00003{word-spacing:314.110565pt;}
.wsad_c00003{word-spacing:317.823020pt;}
.wsc5_c00003{word-spacing:323.578996pt;}
.wsc2_c00003{word-spacing:323.707637pt;}
.wsde_c00003{word-spacing:324.919859pt;}
.ws6c_c00003{word-spacing:325.152393pt;}
.ws137_c00003{word-spacing:326.954759pt;}
.ws132_c00003{word-spacing:327.396551pt;}
.ws4b_c00003{word-spacing:330.334507pt;}
.ws82_c00003{word-spacing:330.338380pt;}
.ws48_c00003{word-spacing:330.466987pt;}
.ws7f_c00003{word-spacing:330.470861pt;}
.ws37_c00003{word-spacing:331.463231pt;}
.ws14c_c00003{word-spacing:331.810867pt;}
.wsa4_c00003{word-spacing:337.305634pt;}
.wsa1_c00003{word-spacing:337.441954pt;}
.ws158_c00003{word-spacing:338.581081pt;}
.ws168_c00003{word-spacing:338.997148pt;}
.ws6a_c00003{word-spacing:339.751074pt;}
.ws67_c00003{word-spacing:339.885474pt;}
.ws69_c00003{word-spacing:346.017620pt;}
.ws6e_c00003{word-spacing:353.630511pt;}
.wsee_c00003{word-spacing:358.729210pt;}
.ws40_c00003{word-spacing:365.286015pt;}
.wsd0_c00003{word-spacing:442.180760pt;}
.ws136_c00003{word-spacing:443.691761pt;}
.wsbc_c00003{word-spacing:453.189226pt;}
.ws5d_c00003{word-spacing:453.192000pt;}
.wsaf_c00003{word-spacing:462.421788pt;}
.ws5a_c00003{word-spacing:471.739200pt;}
.ws127_c00003{word-spacing:499.626934pt;}
.ws1c7_c00003{word-spacing:523.467577pt;}
.ws19b_c00003{word-spacing:566.059366pt;}
.ws197_c00003{word-spacing:572.456090pt;}
.ws3f_c00003{word-spacing:576.017528pt;}
.ws1a_c00003{word-spacing:624.317349pt;}
.ws17_c00003{word-spacing:624.318266pt;}
.wscf_c00003{word-spacing:642.869403pt;}
.wsc_c00003{word-spacing:657.860907pt;}
.wsbb_c00003{word-spacing:658.504052pt;}
.ws99_c00003{word-spacing:658.504320pt;}
.ws8d_c00003{word-spacing:658.520052pt;}
.ws5c_c00003{word-spacing:658.520320pt;}
.ws1b_c00003{word-spacing:664.177002pt;}
.wsae_c00003{word-spacing:672.159946pt;}
.ws74_c00003{word-spacing:674.691999pt;}
.ws19c_c00003{word-spacing:709.008215pt;}
.ws199_c00003{word-spacing:721.802882pt;}
.ws19d_c00003{word-spacing:742.282882pt;}
.ws19a_c00003{word-spacing:755.066882pt;}
.ws19e_c00003{word-spacing:792.165548pt;}
.ws39_c00003{word-spacing:898.981787pt;}
.ws75_c00003{word-spacing:910.478132pt;}
.ws59_c00003{word-spacing:2619.786005pt;}
.ws3a_c00003{word-spacing:2767.290370pt;}
._c3_c00003{margin-left:-3406.223571pt;}
._a1_c00003{margin-left:-2888.740905pt;}
._68_c00003{margin-left:-602.853574pt;}
._91_c00003{margin-left:-532.114752pt;}
._67_c00003{margin-left:-507.435740pt;}
._8b_c00003{margin-left:-377.175418pt;}
._1d3_c00003{margin-left:-357.975091pt;}
._8a_c00003{margin-left:-351.278669pt;}
._89_c00003{margin-left:-328.574688pt;}
._63_c00003{margin-left:-310.367993pt;}
._62_c00003{margin-left:-278.289757pt;}
._f7_c00003{margin-left:-201.262248pt;}
._14c_c00003{margin-left:-186.830467pt;}
._d3_c00003{margin-left:-185.054774pt;}
._120_c00003{margin-left:-172.525481pt;}
._1e1_c00003{margin-left:-19.604145pt;}
._208_c00003{margin-left:-18.448895pt;}
._206_c00003{margin-left:-15.787219pt;}
._1f9_c00003{margin-left:-14.436532pt;}
._1df_c00003{margin-left:-11.495194pt;}
._22b_c00003{margin-left:-8.033628pt;}
._36_c00003{margin-left:-6.806879pt;}
._200_c00003{margin-left:-4.872526pt;}
._35_c00003{margin-left:-3.017811pt;}
._31_c00003{margin-left:-1.414843pt;}
._33_c00003{width:1.192828pt;}
._34_c00003{width:2.088764pt;}
._1f0_c00003{width:3.241195pt;}
._44_c00003{width:4.261983pt;}
._1ff_c00003{width:5.650957pt;}
._229_c00003{width:6.650930pt;}
._203_c00003{width:7.725069pt;}
._226_c00003{width:9.087197pt;}
._1eb_c00003{width:10.244097pt;}
._1fe_c00003{width:11.947663pt;}
._29_c00003{width:13.755744pt;}
._22a_c00003{width:14.842710pt;}
._202_c00003{width:16.442299pt;}
._225_c00003{width:17.456307pt;}
._207_c00003{width:19.235908pt;}
._22f_c00003{width:20.728995pt;}
._22c_c00003{width:24.175491pt;}
._22d_c00003{width:25.946765pt;}
._22e_c00003{width:27.689979pt;}
._230_c00003{width:28.783411pt;}
._1dd_c00003{width:30.977954pt;}
._223_c00003{width:31.940964pt;}
._1d1_c00003{width:33.072690pt;}
._1f7_c00003{width:34.459111pt;}
._224_c00003{width:35.653583pt;}
._24f_c00003{width:37.164390pt;}
._204_c00003{width:38.265383pt;}
._1d0_c00003{width:39.201124pt;}
._1e6_c00003{width:41.053636pt;}
._1e7_c00003{width:42.156387pt;}
._1ea_c00003{width:43.593532pt;}
._24e_c00003{width:45.178425pt;}
._24c_c00003{width:46.134750pt;}
._e3_c00003{width:47.102352pt;}
._12a_c00003{width:48.011746pt;}
._227_c00003{width:51.028908pt;}
._238_c00003{width:52.255627pt;}
._201_c00003{width:54.473025pt;}
._23e_c00003{width:55.716730pt;}
._15a_c00003{width:56.696911pt;}
._5b_c00003{width:58.169276pt;}
._1f_c00003{width:60.000576pt;}
._112_c00003{width:61.140426pt;}
._235_c00003{width:62.067456pt;}
._101_c00003{width:63.257409pt;}
._237_c00003{width:64.601252pt;}
._239_c00003{width:65.950690pt;}
._11f_c00003{width:67.222428pt;}
._1ba_c00003{width:68.217695pt;}
._252_c00003{width:69.162022pt;}
._234_c00003{width:70.423847pt;}
._23a_c00003{width:72.001354pt;}
._86_c00003{width:73.499947pt;}
._134_c00003{width:75.241569pt;}
._d0_c00003{width:76.382062pt;}
._16f_c00003{width:77.885274pt;}
._9a_c00003{width:79.193343pt;}
._243_c00003{width:80.383591pt;}
._147_c00003{width:82.235210pt;}
._148_c00003{width:83.293412pt;}
._1c7_c00003{width:84.299258pt;}
._221_c00003{width:85.471812pt;}
._f5_c00003{width:86.739491pt;}
._233_c00003{width:87.945189pt;}
._236_c00003{width:88.967571pt;}
._246_c00003{width:90.326874pt;}
._15_c00003{width:91.826765pt;}
._141_c00003{width:93.019907pt;}
._11e_c00003{width:94.064993pt;}
._251_c00003{width:95.579836pt;}
._23_c00003{width:97.022208pt;}
._228_c00003{width:98.430309pt;}
._e0_c00003{width:99.518984pt;}
._da_c00003{width:100.599370pt;}
._f_c00003{width:101.928755pt;}
._1d9_c00003{width:102.951009pt;}
._1c_c00003{width:103.999046pt;}
._cf_c00003{width:105.386896pt;}
._16e_c00003{width:106.609328pt;}
._1e_c00003{width:107.680518pt;}
._ea_c00003{width:109.074356pt;}
._1a9_c00003{width:110.716860pt;}
._138_c00003{width:111.607636pt;}
._1d5_c00003{width:112.972526pt;}
._c8_c00003{width:113.907104pt;}
._83_c00003{width:115.521537pt;}
._f4_c00003{width:116.812293pt;}
._250_c00003{width:117.774586pt;}
._111_c00003{width:118.672647pt;}
._f1_c00003{width:120.246153pt;}
._df_c00003{width:121.608137pt;}
._119_c00003{width:122.804333pt;}
._1bf_c00003{width:123.783689pt;}
._dc_c00003{width:125.031124pt;}
._106_c00003{width:125.940728pt;}
._c6_c00003{width:126.970884pt;}
._d2_c00003{width:128.261082pt;}
._7b_c00003{width:129.594888pt;}
._c7_c00003{width:131.163817pt;}
._17e_c00003{width:132.214493pt;}
._7e_c00003{width:133.431950pt;}
._1b_c00003{width:134.718061pt;}
._87_c00003{width:135.949547pt;}
._12d_c00003{width:137.350678pt;}
._8_c00003{width:138.508692pt;}
._1d4_c00003{width:139.571165pt;}
._19_c00003{width:140.620518pt;}
._25_c00003{width:141.807725pt;}
._1af_c00003{width:143.050057pt;}
._108_c00003{width:144.062532pt;}
._7a_c00003{width:145.175087pt;}
._d5_c00003{width:146.342296pt;}
._17_c00003{width:147.631712pt;}
._a8_c00003{width:149.423169pt;}
._136_c00003{width:150.375971pt;}
._d_c00003{width:151.346758pt;}
._123_c00003{width:152.265723pt;}
._b_c00003{width:153.265473pt;}
._113_c00003{width:155.705917pt;}
._2a_c00003{width:157.241018pt;}
._a5_c00003{width:158.975356pt;}
._11b_c00003{width:160.043008pt;}
._13_c00003{width:160.977926pt;}
._110_c00003{width:161.985770pt;}
._a4_c00003{width:162.875328pt;}
._1d_c00003{width:164.063648pt;}
._1b8_c00003{width:164.972080pt;}
._21_c00003{width:165.886993pt;}
._11_c00003{width:167.418746pt;}
._1a_c00003{width:169.018214pt;}
._5c_c00003{width:170.454836pt;}
._24_c00003{width:171.696358pt;}
._1aa_c00003{width:172.734576pt;}
._a9_c00003{width:173.727950pt;}
._d9_c00003{width:175.159210pt;}
._10a_c00003{width:176.079432pt;}
._3_c00003{width:177.027183pt;}
._26_c00003{width:178.321837pt;}
._41_c00003{width:179.377538pt;}
._1_c00003{width:180.722221pt;}
._18_c00003{width:182.225837pt;}
._20_c00003{width:183.487321pt;}
._2e_c00003{width:184.728301pt;}
._24d_c00003{width:185.885184pt;}
._2d_c00003{width:187.207731pt;}
._b9_c00003{width:188.554050pt;}
._55_c00003{width:190.027499pt;}
._2_c00003{width:191.755278pt;}
._bb_c00003{width:192.908474pt;}
._ca_c00003{width:194.369502pt;}
._e7_c00003{width:195.317552pt;}
._117_c00003{width:196.298649pt;}
._12_c00003{width:197.381555pt;}
._8f_c00003{width:198.891154pt;}
._48_c00003{width:199.828169pt;}
._170_c00003{width:201.507351pt;}
._bd_c00003{width:202.494792pt;}
._27_c00003{width:204.018746pt;}
._3a_c00003{width:205.564327pt;}
._6_c00003{width:206.464251pt;}
._79_c00003{width:207.484680pt;}
._c5_c00003{width:208.750394pt;}
._5a_c00003{width:210.530266pt;}
._51_c00003{width:211.738375pt;}
._22_c00003{width:212.923915pt;}
._5_c00003{width:214.362687pt;}
._2f_c00003{width:215.975526pt;}
._e_c00003{width:216.946061pt;}
._9e_c00003{width:218.463510pt;}
._84_c00003{width:219.541553pt;}
._85_c00003{width:220.620115pt;}
._28_c00003{width:221.957235pt;}
._50_c00003{width:223.172413pt;}
._ee_c00003{width:224.117200pt;}
._7f_c00003{width:225.287098pt;}
._126_c00003{width:226.259148pt;}
._115_c00003{width:227.180817pt;}
._dd_c00003{width:228.132861pt;}
._4_c00003{width:229.174181pt;}
._191_c00003{width:230.083925pt;}
._96_c00003{width:231.012303pt;}
._99_c00003{width:231.908675pt;}
._8e_c00003{width:233.045376pt;}
._a0_c00003{width:234.435763pt;}
._54_c00003{width:236.226269pt;}
._82_c00003{width:237.387965pt;}
._80_c00003{width:238.721011pt;}
._30_c00003{width:239.679834pt;}
._7d_c00003{width:241.068671pt;}
._95_c00003{width:241.971872pt;}
._14_c00003{width:243.012678pt;}
._8d_c00003{width:244.045243pt;}
._e6_c00003{width:245.187865pt;}
._81_c00003{width:246.967891pt;}
._94_c00003{width:247.882747pt;}
._66_c00003{width:249.422871pt;}
._97_c00003{width:250.813596pt;}
._10_c00003{width:252.550150pt;}
._88_c00003{width:253.718877pt;}
._9c_c00003{width:254.680016pt;}
._4f_c00003{width:255.742860pt;}
._b7_c00003{width:256.730997pt;}
._c9_c00003{width:257.863048pt;}
._b8_c00003{width:258.784716pt;}
._18a_c00003{width:259.762413pt;}
._4e_c00003{width:260.850380pt;}
._7_c00003{width:262.491146pt;}
._2b_c00003{width:263.417715pt;}
._7c_c00003{width:264.877510pt;}
._4d_c00003{width:265.791773pt;}
._1ac_c00003{width:266.901735pt;}
._171_c00003{width:267.895073pt;}
._5f_c00003{width:268.959917pt;}
._92_c00003{width:270.270100pt;}
._98_c00003{width:271.372489pt;}
._2c_c00003{width:272.486707pt;}
._b6_c00003{width:273.585771pt;}
._a6_c00003{width:274.527515pt;}
._fe_c00003{width:275.904037pt;}
._9d_c00003{width:277.294371pt;}
._47_c00003{width:279.650196pt;}
._a2_c00003{width:281.053350pt;}
._b1_c00003{width:282.321062pt;}
._4c_c00003{width:283.977400pt;}
._46_c00003{width:285.397896pt;}
._c1_c00003{width:286.711418pt;}
._a7_c00003{width:287.884846pt;}
._53_c00003{width:289.159339pt;}
._45_c00003{width:290.505416pt;}
._6e_c00003{width:291.565242pt;}
._52_c00003{width:293.524568pt;}
._5d_c00003{width:294.510571pt;}
._65_c00003{width:295.793720pt;}
._90_c00003{width:296.703733pt;}
._56_c00003{width:297.743245pt;}
._76_c00003{width:298.885213pt;}
._aa_c00003{width:300.207979pt;}
._6d_c00003{width:301.143471pt;}
._5e_c00003{width:302.882970pt;}
._75_c00003{width:304.096486pt;}
._af_c00003{width:305.717903pt;}
._6c_c00003{width:307.039140pt;}
._70_c00003{width:308.559297pt;}
._1d7_c00003{width:309.687092pt;}
._61_c00003{width:311.209672pt;}
._74_c00003{width:313.124556pt;}
._6f_c00003{width:314.306998pt;}
._60_c00003{width:316.368545pt;}
._ac_c00003{width:318.411024pt;}
._ba_c00003{width:319.411153pt;}
._bf_c00003{width:320.949273pt;}
._1cf_c00003{width:323.083520pt;}
._ad_c00003{width:324.054185pt;}
._173_c00003{width:325.572548pt;}
._59_c00003{width:326.906504pt;}
._fa_c00003{width:328.631045pt;}
._b2_c00003{width:330.593143pt;}
._b3_c00003{width:331.585196pt;}
._58_c00003{width:332.654639pt;}
._186_c00003{width:334.070228pt;}
._194_c00003{width:335.315242pt;}
._176_c00003{width:336.268899pt;}
._57_c00003{width:337.485024pt;}
._1d6_c00003{width:338.606921pt;}
._18d_c00003{width:339.607459pt;}
._b4_c00003{width:340.674970pt;}
._c2_c00003{width:341.965958pt;}
._b0_c00003{width:342.941702pt;}
._78_c00003{width:344.786304pt;}
._43_c00003{width:346.442850pt;}
._6b_c00003{width:348.906788pt;}
._77_c00003{width:350.389251pt;}
._73_c00003{width:351.389118pt;}
._1a5_c00003{width:353.244858pt;}
._6a_c00003{width:354.224075pt;}
._69_c00003{width:355.367001pt;}
._1a4_c00003{width:356.782413pt;}
._177_c00003{width:357.781643pt;}
._1a3_c00003{width:358.739433pt;}
._c4_c00003{width:360.188812pt;}
._205_c00003{width:361.490461pt;}
._4b_c00003{width:362.524665pt;}
._db_c00003{width:363.797033pt;}
._146_c00003{width:364.925913pt;}
._18c_c00003{width:367.043205pt;}
._4a_c00003{width:368.272365pt;}
._16d_c00003{width:369.862537pt;}
._1a0_c00003{width:371.487171pt;}
._190_c00003{width:372.434674pt;}
._49_c00003{width:373.382061pt;}
._1ef_c00003{width:375.362676pt;}
._124_c00003{width:377.670696pt;}
._153_c00003{width:378.705919pt;}
._135_c00003{width:380.286316pt;}
._242_c00003{width:382.915584pt;}
._f9_c00003{width:384.347788pt;}
._0_c00003{width:385.979582pt;}
._15f_c00003{width:387.024434pt;}
._1a7_c00003{width:388.043719pt;}
._125_c00003{width:389.249465pt;}
._12c_c00003{width:391.741053pt;}
._14b_c00003{width:392.845609pt;}
._121_c00003{width:394.557313pt;}
._1e3_c00003{width:395.891643pt;}
._156_c00003{width:397.868224pt;}
._1ed_c00003{width:399.252130pt;}
._188_c00003{width:401.412587pt;}
._d7_c00003{width:402.322492pt;}
._f0_c00003{width:405.221104pt;}
._1e4_c00003{width:406.126309pt;}
._187_c00003{width:407.185543pt;}
._102_c00003{width:409.188603pt;}
._151_c00003{width:410.108730pt;}
._197_c00003{width:411.718246pt;}
._168_c00003{width:412.869693pt;}
._d8_c00003{width:415.123722pt;}
._247_c00003{width:416.240640pt;}
._e5_c00003{width:417.877585pt;}
._127_c00003{width:419.206885pt;}
._d4_c00003{width:420.990298pt;}
._152_c00003{width:422.300747pt;}
._1d8_c00003{width:423.411643pt;}
._15d_c00003{width:424.927310pt;}
._1ec_c00003{width:426.896179pt;}
._14e_c00003{width:427.887954pt;}
._122_c00003{width:432.120824pt;}
._c_c00003{width:433.369139pt;}
._18e_c00003{width:438.368264pt;}
._1ee_c00003{width:439.258166pt;}
._196_c00003{width:441.126159pt;}
._fb_c00003{width:442.876052pt;}
._16a_c00003{width:443.783653pt;}
._10d_c00003{width:445.775067pt;}
._1db_c00003{width:446.830379pt;}
._de_c00003{width:448.234594pt;}
._23f_c00003{width:449.316864pt;}
._1ce_c00003{width:451.360538pt;}
._154_c00003{width:453.834870pt;}
._fc_c00003{width:455.673653pt;}
._240_c00003{width:456.952320pt;}
._104_c00003{width:458.431549pt;}
._f8_c00003{width:461.540229pt;}
._d6_c00003{width:462.511944pt;}
._248_c00003{width:464.606208pt;}
._1ab_c00003{width:467.105929pt;}
._38_c00003{width:468.022872pt;}
._249_c00003{width:470.181888pt;}
._18f_c00003{width:471.483167pt;}
._245_c00003{width:473.545728pt;}
._39_c00003{width:477.603603pt;}
._40_c00003{width:481.304817pt;}
._20c_c00003{width:483.906891pt;}
._18b_c00003{width:485.760517pt;}
._241_c00003{width:486.687744pt;}
._fd_c00003{width:488.792589pt;}
._14d_c00003{width:491.753786pt;}
._244_c00003{width:492.864768pt;}
._a_c00003{width:495.824105pt;}
._d1_c00003{width:497.533988pt;}
._24a_c00003{width:499.832064pt;}
._1d2_c00003{width:502.241725pt;}
._3f_c00003{width:503.671852pt;}
._149_c00003{width:505.018301pt;}
._23c_c00003{width:506.449152pt;}
._14a_c00003{width:507.414465pt;}
._20e_c00003{width:511.105629pt;}
._1e9_c00003{width:512.207589pt;}
._24b_c00003{width:513.485568pt;}
._37_c00003{width:516.682785pt;}
._189_c00003{width:519.040733pt;}
._210_c00003{width:520.826240pt;}
._9_c00003{width:522.079806pt;}
._150_c00003{width:523.801674pt;}
._23d_c00003{width:525.818880pt;}
._23b_c00003{width:528.966144pt;}
._155_c00003{width:530.431261pt;}
._20a_c00003{width:534.382080pt;}
._14f_c00003{width:535.723661pt;}
._15b_c00003{width:538.190245pt;}
._f6_c00003{width:545.958436pt;}
._158_c00003{width:547.895801pt;}
._15e_c00003{width:550.886970pt;}
._163_c00003{width:555.721010pt;}
._21b_c00003{width:558.034133pt;}
._1de_c00003{width:568.845243pt;}
._145_c00003{width:570.374545pt;}
._1e8_c00003{width:582.098363pt;}
._160_c00003{width:586.162298pt;}
._20b_c00003{width:589.538603pt;}
._20d_c00003{width:590.529223pt;}
._217_c00003{width:595.637973pt;}
._209_c00003{width:613.784747pt;}
._128_c00003{width:618.822089pt;}
._1cc_c00003{width:623.526942pt;}
._1f6_c00003{width:624.668603pt;}
._212_c00003{width:627.186133pt;}
._1fd_c00003{width:631.546880pt;}
._3e_c00003{width:635.460631pt;}
._231_c00003{width:638.008619pt;}
._e1_c00003{width:639.493020pt;}
._42_c00003{width:651.998303pt;}
._3d_c00003{width:659.262205pt;}
._1ad_c00003{width:668.452768pt;}
._1c2_c00003{width:669.904290pt;}
._3c_c00003{width:676.916288pt;}
._17f_c00003{width:698.856313pt;}
._172_c00003{width:717.965797pt;}
._13c_c00003{width:723.411258pt;}
._ff_c00003{width:742.639917pt;}
._21c_c00003{width:744.181973pt;}
._32_c00003{width:751.738624pt;}
._192_c00003{width:754.175499pt;}
._1f2_c00003{width:760.294203pt;}
._1cb_c00003{width:775.121864pt;}
._a3_c00003{width:779.148611pt;}
._214_c00003{width:785.184640pt;}
._9f_c00003{width:799.495702pt;}
._157_c00003{width:811.051366pt;}
._1e2_c00003{width:814.015248pt;}
._3b_c00003{width:817.837426pt;}
._215_c00003{width:822.955307pt;}
._1cd_c00003{width:831.927438pt;}
._20f_c00003{width:836.914789pt;}
._1f1_c00003{width:838.840123pt;}
._132_c00003{width:840.695945pt;}
._1da_c00003{width:847.936768pt;}
._1f3_c00003{width:850.496640pt;}
._133_c00003{width:858.546091pt;}
._139_c00003{width:859.503227pt;}
._211_c00003{width:864.688869pt;}
._220_c00003{width:877.983232pt;}
._131_c00003{width:883.047075pt;}
._12f_c00003{width:885.212254pt;}
._21d_c00003{width:886.357973pt;}
._1f4_c00003{width:888.272640pt;}
._12e_c00003{width:889.819497pt;}
._12b_c00003{width:894.276742pt;}
._130_c00003{width:899.248394pt;}
._ed_c00003{width:900.439961pt;}
._137_c00003{width:902.453068pt;}
._216_c00003{width:904.141456pt;}
._1f5_c00003{width:906.056123pt;}
._1bc_c00003{width:910.679440pt;}
._1c6_c00003{width:912.185560pt;}
._219_c00003{width:914.746880pt;}
._ef_c00003{width:919.630500pt;}
._1bd_c00003{width:926.887468pt;}
._1c0_c00003{width:931.001613pt;}
._1c8_c00003{width:932.007304pt;}
._19c_c00003{width:942.229336pt;}
._232_c00003{width:943.592433pt;}
._ec_c00003{width:946.842593pt;}
._11d_c00003{width:948.490257pt;}
._e9_c00003{width:949.526705pt;}
._118_c00003{width:952.661470pt;}
._eb_c00003{width:954.627784pt;}
._1b4_c00003{width:956.317824pt;}
._114_c00003{width:957.757319pt;}
._19d_c00003{width:960.663678pt;}
._11c_c00003{width:962.602850pt;}
._f2_c00003{width:965.994644pt;}
._116_c00003{width:967.382517pt;}
._17a_c00003{width:970.070067pt;}
._1b5_c00003{width:971.256158pt;}
._1c5_c00003{width:974.185433pt;}
._1be_c00003{width:975.388075pt;}
._1b6_c00003{width:976.872198pt;}
._e4_c00003{width:978.228245pt;}
._e8_c00003{width:980.640157pt;}
._13b_c00003{width:984.413846pt;}
._1bb_c00003{width:985.723832pt;}
._1c4_c00003{width:986.625889pt;}
._19b_c00003{width:988.571933pt;}
._17c_c00003{width:989.542937pt;}
._19a_c00003{width:990.855672pt;}
._1a1_c00003{width:991.803175pt;}
._183_c00003{width:994.486797pt;}
._10b_c00003{width:997.539437pt;}
._182_c00003{width:1000.491989pt;}
._143_c00003{width:1001.567639pt;}
._1b2_c00003{width:1002.534352pt;}
._199_c00003{width:1006.923275pt;}
._1b3_c00003{width:1008.161177pt;}
._213_c00003{width:1009.698773pt;}
._181_c00003{width:1012.659687pt;}
._178_c00003{width:1015.047810pt;}
._10c_c00003{width:1017.076649pt;}
._195_c00003{width:1019.122952pt;}
._198_c00003{width:1020.255947pt;}
._179_c00003{width:1021.423691pt;}
._184_c00003{width:1023.232366pt;}
._175_c00003{width:1024.345531pt;}
._1b1_c00003{width:1031.573419pt;}
._13f_c00003{width:1033.323293pt;}
._17b_c00003{width:1034.239499pt;}
._13e_c00003{width:1038.613387pt;}
._1f8_c00003{width:1040.325760pt;}
._1b0_c00003{width:1042.036154pt;}
._140_c00003{width:1044.362298pt;}
._109_c00003{width:1046.131445pt;}
._21f_c00003{width:1048.760107pt;}
._107_c00003{width:1052.965785pt;}
._142_c00003{width:1056.912980pt;}
._10e_c00003{width:1061.626450pt;}
._105_c00003{width:1064.390654pt;}
._cc_c00003{width:1073.937185pt;}
._103_c00003{width:1076.673232pt;}
._129_c00003{width:1078.186216pt;}
._218_c00003{width:1079.322880pt;}
._166_c00003{width:1087.523762pt;}
._167_c00003{width:1103.036966pt;}
._16b_c00003{width:1107.676418pt;}
._21e_c00003{width:1112.162773pt;}
._1fb_c00003{width:1114.077440pt;}
._1e5_c00003{width:1118.402048pt;}
._165_c00003{width:1131.711506pt;}
._164_c00003{width:1132.878373pt;}
._162_c00003{width:1137.837717pt;}
._21a_c00003{width:1144.720427pt;}
._161_c00003{width:1149.381956pt;}
._169_c00003{width:1151.751371pt;}
._e2_c00003{width:1157.230321pt;}
._15c_c00003{width:1161.567053pt;}
._1b9_c00003{width:1166.747220pt;}
._1c3_c00003{width:1174.225693pt;}
._1fc_c00003{width:1189.140480pt;}
._222_c00003{width:1193.368064pt;}
._19f_c00003{width:1202.216565pt;}
._180_c00003{width:1203.788220pt;}
._1ae_c00003{width:1211.462445pt;}
._193_c00003{width:1217.144202pt;}
._1fa_c00003{width:1218.766080pt;}
._1a6_c00003{width:1236.374906pt;}
._174_c00003{width:1244.687330pt;}
._13d_c00003{width:1255.580641pt;}
._1ca_c00003{width:1265.725696pt;}
._100_c00003{width:1272.369510pt;}
._ae_c00003{width:1296.610547pt;}
._1dc_c00003{width:1314.878720pt;}
._b5_c00003{width:1330.541214pt;}
._159_c00003{width:1342.934345pt;}
._be_c00003{width:1360.065781pt;}
._93_c00003{width:1430.301214pt;}
._72_c00003{width:1694.496122pt;}
._16_c00003{width:2588.961024pt;}
._64_c00003{width:2819.180286pt;}
._71_c00003{width:3041.994788pt;}
._1a2_c00003{width:3219.133632pt;}
._19e_c00003{width:3232.591488pt;}
._185_c00003{width:3244.953600pt;}
._17d_c00003{width:3258.178560pt;}
._bc_c00003{width:3261.926430pt;}
._1a8_c00003{width:3280.849344pt;}
._1c9_c00003{width:3282.381312pt;}
._ab_c00003{width:3284.086464pt;}
._10f_c00003{width:3295.147968pt;}
._1b7_c00003{width:3297.906503pt;}
._1c1_c00003{width:3300.633309pt;}
._cd_c00003{width:3301.846331pt;}
._f3_c00003{width:3305.352960pt;}
._144_c00003{width:3311.568000pt;}
._cb_c00003{width:3320.502216pt;}
._11a_c00003{width:3322.712064pt;}
._ce_c00003{width:3328.152538pt;}
._c0_c00003{width:3343.462992pt;}
._16c_c00003{width:3360.115015pt;}
._13a_c00003{width:3371.166349pt;}
._8c_c00003{width:3376.310208pt;}
._1e0_c00003{width:3499.357714pt;}
._9b_c00003{width:3650.621678pt;}
.fs41_c00003{font-size:23.040000pt;}
.fs42_c00003{font-size:24.320000pt;}
.fs2e_c00003{font-size:24.960000pt;}
.fs43_c00003{font-size:25.600000pt;}
.fs7_c00003{font-size:26.240000pt;}
.fs18_c00003{font-size:26.880000pt;}
.fs21_c00003{font-size:27.520000pt;}
.fsb_c00003{font-size:28.752000pt;}
.fs14_c00003{font-size:28.800000pt;}
.fs19_c00003{font-size:29.440000pt;}
.fs1c_c00003{font-size:30.080000pt;}
.fs2a_c00003{font-size:30.720000pt;}
.fs2d_c00003{font-size:32.640000pt;}
.fs44_c00003{font-size:33.280000pt;}
.fs3f_c00003{font-size:33.920000pt;}
.fs39_c00003{font-size:34.560000pt;}
.fs26_c00003{font-size:34.560053pt;}
.fs24_c00003{font-size:35.200000pt;}
.fs1a_c00003{font-size:35.840053pt;}
.fs1d_c00003{font-size:36.480000pt;}
.fs27_c00003{font-size:36.480053pt;}
.fs22_c00003{font-size:37.120000pt;}
.fs30_c00003{font-size:38.400053pt;}
.fs5_c00003{font-size:39.040000pt;}
.fs15_c00003{font-size:39.680000pt;}
.fs17_c00003{font-size:40.320107pt;}
.fs20_c00003{font-size:40.960053pt;}
.fs3b_c00003{font-size:42.240107pt;}
.fs2c_c00003{font-size:42.240267pt;}
.fse_c00003{font-size:42.808587pt;}
.fs23_c00003{font-size:42.880213pt;}
.fs13_c00003{font-size:43.520107pt;}
.fs16_c00003{font-size:44.160000pt;}
.fs1e_c00003{font-size:44.160160pt;}
.fs1b_c00003{font-size:44.800160pt;}
.fs1f_c00003{font-size:45.440160pt;}
.fs29_c00003{font-size:46.080427pt;}
.fs10_c00003{font-size:47.281120pt;}
.fs3e_c00003{font-size:47.360107pt;}
.fsa_c00003{font-size:47.920053pt;}
.fs35_c00003{font-size:48.000053pt;}
.fs33_c00003{font-size:48.000160pt;}
.fs34_c00003{font-size:48.000320pt;}
.fs32_c00003{font-size:48.000373pt;}
.fs36_c00003{font-size:48.128053pt;}
.fs2b_c00003{font-size:49.920427pt;}
.fs12_c00003{font-size:51.114720pt;}
.fs2f_c00003{font-size:51.840427pt;}
.fs9_c00003{font-size:53.120053pt;}
.fs1_c00003{font-size:53.120160pt;}
.fs31_c00003{font-size:53.120373pt;}
.fs25_c00003{font-size:53.760000pt;}
.fs28_c00003{font-size:55.680000pt;}
.fs3d_c00003{font-size:57.600000pt;}
.fs2_c00003{font-size:58.880000pt;}
.fs37_c00003{font-size:59.008000pt;}
.fsc_c00003{font-size:61.337600pt;}
.fs3_c00003{font-size:64.000000pt;}
.fs6_c00003{font-size:64.640000pt;}
.fs40_c00003{font-size:67.840000pt;}
.fs38_c00003{font-size:70.400000pt;}
.fs3c_c00003{font-size:73.600000pt;}
.fs3a_c00003{font-size:74.240000pt;}
.fsf_c00003{font-size:74.755200pt;}
.fs4_c00003{font-size:74.880000pt;}
.fs8_c00003{font-size:85.120000pt;}
.fsd_c00003{font-size:95.840000pt;}
.fs0_c00003{font-size:96.000000pt;}
.fs11_c00003{font-size:106.701867pt;}
.y371_c00003{bottom:-1.597333pt;}
.y380_c00003{bottom:-1.437333pt;}
.y366_c00003{bottom:-1.436000pt;}
.y3ab_c00003{bottom:-0.481333pt;}
.y8d2_c00003{bottom:-0.001333pt;}
.y0_c00003{bottom:0.000000pt;}
.y9c3_c00003{bottom:0.477333pt;}
.y386_c00003{bottom:0.478667pt;}
.y543_c00003{bottom:0.798667pt;}
.y8f3_c00003{bottom:0.957333pt;}
.y6ba_c00003{bottom:0.958667pt;}
.y36f_c00003{bottom:1.437333pt;}
.y382_c00003{bottom:1.438667pt;}
.y3e9_c00003{bottom:1.440000pt;}
.y36a_c00003{bottom:1.441333pt;}
.y373_c00003{bottom:1.597333pt;}
.y375_c00003{bottom:1.598667pt;}
.y3f1_c00003{bottom:1.600000pt;}
.y131c_c00003{bottom:1.601333pt;}
.y1377_c00003{bottom:1.602667pt;}
.y13a0_c00003{bottom:1.761333pt;}
.y864_c00003{bottom:1.917333pt;}
.y8bb_c00003{bottom:1.918133pt;}
.y71e_c00003{bottom:1.918667pt;}
.y894_c00003{bottom:1.918800pt;}
.y897_c00003{bottom:1.919200pt;}
.y776_c00003{bottom:1.919467pt;}
.y5fe_c00003{bottom:1.919733pt;}
.y43b_c00003{bottom:1.920000pt;}
.y57a_c00003{bottom:1.920267pt;}
.y578_c00003{bottom:1.920400pt;}
.y81f_c00003{bottom:2.077333pt;}
.y542_c00003{bottom:2.078667pt;}
.y5ae_c00003{bottom:2.080000pt;}
.y714_c00003{bottom:2.237333pt;}
.y3a9_c00003{bottom:2.238667pt;}
.y3ec_c00003{bottom:2.240000pt;}
.y7c8_c00003{bottom:2.240133pt;}
.y13a4_c00003{bottom:2.241333pt;}
.y34e_c00003{bottom:2.394667pt;}
.y353_c00003{bottom:2.396000pt;}
.y357_c00003{bottom:2.397333pt;}
.y8ce_c00003{bottom:2.398667pt;}
.y9e3_c00003{bottom:2.400000pt;}
.y36c_c00003{bottom:2.554667pt;}
.y38d_c00003{bottom:2.556000pt;}
.y367_c00003{bottom:2.557333pt;}
.y37d_c00003{bottom:2.558667pt;}
.y128_c00003{bottom:2.560000pt;}
.y17a_c00003{bottom:2.560400pt;}
.y16b_c00003{bottom:2.561333pt;}
.yf3_c00003{bottom:2.562667pt;}
.yfa_c00003{bottom:2.564000pt;}
.y122b_c00003{bottom:2.878667pt;}
.y1241_c00003{bottom:2.880000pt;}
.y1234_c00003{bottom:2.881333pt;}
.yb43_c00003{bottom:3.038667pt;}
.y50_c00003{bottom:3.040000pt;}
.yb5b_c00003{bottom:3.040133pt;}
.yd32_c00003{bottom:3.041333pt;}
.y2f_c00003{bottom:3.042667pt;}
.yd42_c00003{bottom:3.044000pt;}
.yb3d_c00003{bottom:3.198667pt;}
.yb4e_c00003{bottom:3.200000pt;}
.yd35_c00003{bottom:3.201333pt;}
.yd2a_c00003{bottom:3.202667pt;}
.yb_c00003{bottom:4.000000pt;}
.y5_c00003{bottom:4.001333pt;}
.y8_c00003{bottom:4.002667pt;}
.yef_c00003{bottom:4.004000pt;}
.y123f_c00003{bottom:4.160000pt;}
.ycae_c00003{bottom:4.478667pt;}
.ycb2_c00003{bottom:4.480000pt;}
.yd1c_c00003{bottom:4.481333pt;}
.ycc4_c00003{bottom:4.482667pt;}
.ycb0_c00003{bottom:4.638667pt;}
.ycbf_c00003{bottom:4.640000pt;}
.ycb8_c00003{bottom:4.641333pt;}
.yd1a_c00003{bottom:4.642667pt;}
.ycfc_c00003{bottom:4.960933pt;}
.yc1_c00003{bottom:4.961333pt;}
.ye3_c00003{bottom:4.962667pt;}
.yd22_c00003{bottom:4.962933pt;}
.yccf_c00003{bottom:5.121733pt;}
.y123e_c00003{bottom:5.440000pt;}
.ycf2_c00003{bottom:5.920000pt;}
.ycc5_c00003{bottom:5.922667pt;}
.y2_c00003{bottom:6.402667pt;}
.y1229_c00003{bottom:9.760000pt;}
.y1290_c00003{bottom:10.240000pt;}
.y125a_c00003{bottom:10.558667pt;}
.y1292_c00003{bottom:10.560000pt;}
.ycdf_c00003{bottom:12.000000pt;}
.y99e_c00003{bottom:13.812533pt;}
.ycfd_c00003{bottom:13.921333pt;}
.ycd0_c00003{bottom:13.922667pt;}
.y94f_c00003{bottom:14.292667pt;}
.y1281_c00003{bottom:14.558667pt;}
.yf9c_c00003{bottom:15.226667pt;}
.y11b4_c00003{bottom:15.266667pt;}
.yfe6_c00003{bottom:15.293333pt;}
.y104b_c00003{bottom:15.360000pt;}
.yff6_c00003{bottom:15.386667pt;}
.yf3e_c00003{bottom:15.680000pt;}
.yf38_c00003{bottom:15.706667pt;}
.y33a_c00003{bottom:16.937467pt;}
.y1227_c00003{bottom:17.438667pt;}
.y12b3_c00003{bottom:18.080000pt;}
.y1257_c00003{bottom:18.240000pt;}
.y90e_c00003{bottom:18.612533pt;}
.ycdc_c00003{bottom:20.800000pt;}
.yca7_c00003{bottom:20.958667pt;}
.y127d_c00003{bottom:22.240000pt;}
.ycfb_c00003{bottom:22.721333pt;}
.ycce_c00003{bottom:22.882667pt;}
.y1228_c00003{bottom:25.120000pt;}
.y12b0_c00003{bottom:25.760000pt;}
.y1259_c00003{bottom:25.918667pt;}
.y1291_c00003{bottom:25.920000pt;}
.y127f_c00003{bottom:26.240000pt;}
.yd05_c00003{bottom:29.758667pt;}
.ycde_c00003{bottom:29.760000pt;}
.y1280_c00003{bottom:29.918667pt;}
.ycac_c00003{bottom:29.920000pt;}
.y1345_c00003{bottom:31.306267pt;}
.y13a2_c00003{bottom:31.466133pt;}
.y13cc_c00003{bottom:32.266133pt;}
.y1378_c00003{bottom:32.586400pt;}
.y131_c00003{bottom:32.906267pt;}
.y12b2_c00003{bottom:33.440000pt;}
.y1258_c00003{bottom:33.598667pt;}
.y128f_c00003{bottom:33.600000pt;}
.y9df_c00003{bottom:33.972400pt;}
.y84a_c00003{bottom:34.132800pt;}
.y3fe_c00003{bottom:34.293733pt;}
.y725_c00003{bottom:34.452667pt;}
.y781_c00003{bottom:34.453600pt;}
.y2c_c00003{bottom:35.307333pt;}
.y12d5_c00003{bottom:35.572400pt;}
.ycdb_c00003{bottom:38.718667pt;}
.yca6_c00003{bottom:38.720000pt;}
.y12b4_c00003{bottom:41.120000pt;}
.y127e_c00003{bottom:41.598667pt;}
.yf3d_c00003{bottom:42.266533pt;}
.yf70_c00003{bottom:42.267067pt;}
.yf37_c00003{bottom:42.306000pt;}
.yf69_c00003{bottom:42.306267pt;}
.yf59_c00003{bottom:42.307813pt;}
.yf8a_c00003{bottom:43.773333pt;}
.y11ab_c00003{bottom:43.813333pt;}
.yfd4_c00003{bottom:43.866667pt;}
.y102f_c00003{bottom:43.906667pt;}
.yff1_c00003{bottom:43.933333pt;}
.y6f4_c00003{bottom:46.933867pt;}
.ycd7_c00003{bottom:47.518667pt;}
.yd04_c00003{bottom:47.678667pt;}
.ycab_c00003{bottom:47.680000pt;}
.y726_c00003{bottom:48.052667pt;}
.y581_c00003{bottom:48.053600pt;}
.y12b1_c00003{bottom:48.800000pt;}
.yc9f_c00003{bottom:50.272400pt;}
.yc0b_c00003{bottom:50.507333pt;}
.y4e_c00003{bottom:52.587467pt;}
.y35c_c00003{bottom:53.036493pt;}
.ycda_c00003{bottom:56.478667pt;}
.yca3_c00003{bottom:56.638667pt;}
.yd02_c00003{bottom:56.640000pt;}
.y12fe_c00003{bottom:56.907333pt;}
.yf3a_c00003{bottom:57.853333pt;}
.yf2c_c00003{bottom:57.920000pt;}
.yb71_c00003{bottom:58.453600pt;}
.yb37_c00003{bottom:59.093733pt;}
.y385_c00003{bottom:59.586400pt;}
.y35b_c00003{bottom:62.940133pt;}
.ycaa_c00003{bottom:65.438667pt;}
.yd03_c00003{bottom:65.440000pt;}
.yf3f_c00003{bottom:67.266360pt;}
.y1223_c00003{bottom:69.952667pt;}
.y384_c00003{bottom:70.128667pt;}
.ya8b_c00003{bottom:71.892667pt;}
.y1003_c00003{bottom:72.253333pt;}
.y102a_c00003{bottom:72.257867pt;}
.y1030_c00003{bottom:72.933200pt;}
.y10b5_c00003{bottom:73.024000pt;}
.y109b_c00003{bottom:73.024400pt;}
.y1081_c00003{bottom:73.025333pt;}
.y106a_c00003{bottom:73.026267pt;}
.y1050_c00003{bottom:73.026667pt;}
.ya8a_c00003{bottom:73.332027pt;}
.y10c5_c00003{bottom:73.693600pt;}
.yca5_c00003{bottom:74.398667pt;}
.ycd9_c00003{bottom:74.400000pt;}
.y10fa_c00003{bottom:74.494133pt;}
.y1156_c00003{bottom:75.173333pt;}
.y1183_c00003{bottom:75.774400pt;}
.yf40_c00003{bottom:76.640320pt;}
.y94e_c00003{bottom:77.172400pt;}
.yf5d_c00003{bottom:78.213733pt;}
.y94d_c00003{bottom:78.612027pt;}
.y12bc_c00003{bottom:78.912533pt;}
.y35d_c00003{bottom:78.913560pt;}
.y11a4_c00003{bottom:81.531733pt;}
.y119f_c00003{bottom:81.532000pt;}
.y1199_c00003{bottom:81.532267pt;}
.y1193_c00003{bottom:81.532533pt;}
.y118d_c00003{bottom:81.533333pt;}
.y11ac_c00003{bottom:82.213333pt;}
.y10e4_c00003{bottom:82.240000pt;}
.yf2d_c00003{bottom:82.240267pt;}
.y11bb_c00003{bottom:82.242000pt;}
.yeea_c00003{bottom:82.507333pt;}
.y1116_c00003{bottom:82.906667pt;}
.y11cd_c00003{bottom:82.906800pt;}
.y1122_c00003{bottom:82.907867pt;}
.y112e_c00003{bottom:82.908133pt;}
.y11d5_c00003{bottom:82.908400pt;}
.y113a_c00003{bottom:82.908933pt;}
.y11e1_c00003{bottom:82.909467pt;}
.y1146_c00003{bottom:82.909733pt;}
.ycdd_c00003{bottom:83.200000pt;}
.yca9_c00003{bottom:83.358667pt;}
.yb36_c00003{bottom:83.412533pt;}
.y1179_c00003{bottom:83.519733pt;}
.y1173_c00003{bottom:83.520000pt;}
.y117c_c00003{bottom:83.520133pt;}
.yb35_c00003{bottom:84.371387pt;}
.yf41_c00003{bottom:86.013760pt;}
.yf76_c00003{bottom:86.400000pt;}
.yf80_c00003{bottom:86.400667pt;}
.yf8b_c00003{bottom:87.065467pt;}
.ya1e_c00003{bottom:87.252667pt;}
.yfa5_c00003{bottom:87.972667pt;}
.yfae_c00003{bottom:87.973600pt;}
.yfb6_c00003{bottom:87.974533pt;}
.yfc0_c00003{bottom:87.975467pt;}
.yfca_c00003{bottom:87.976400pt;}
.ya1d_c00003{bottom:88.211920pt;}
.yfd5_c00003{bottom:88.640133pt;}
.y10f9_c00003{bottom:91.360267pt;}
.y1155_c00003{bottom:92.025467pt;}
.ya50_c00003{bottom:92.052667pt;}
.y898_c00003{bottom:92.053600pt;}
.ycd8_c00003{bottom:92.160000pt;}
.yca4_c00003{bottom:92.320000pt;}
.y1182_c00003{bottom:92.640533pt;}
.yc38_c00003{bottom:92.747333pt;}
.ya4f_c00003{bottom:93.012227pt;}
.ya89_c00003{bottom:93.971627pt;}
.y95e_c00003{bottom:94.932800pt;}
.y1004_c00003{bottom:95.359600pt;}
.yf42_c00003{bottom:95.360120pt;}
.y101d_c00003{bottom:95.362533pt;}
.y95d_c00003{bottom:95.892213pt;}
.y1031_c00003{bottom:96.024933pt;}
.y10b6_c00003{bottom:97.944267pt;}
.y109c_c00003{bottom:97.944667pt;}
.y1082_c00003{bottom:97.945600pt;}
.y1051_c00003{bottom:97.946400pt;}
.y106b_c00003{bottom:97.946533pt;}
.ye67_c00003{bottom:98.187467pt;}
.y12ec_c00003{bottom:98.348000pt;}
.yf6a_c00003{bottom:98.425733pt;}
.y12bb_c00003{bottom:98.432933pt;}
.yf5e_c00003{bottom:98.494000pt;}
.y1252_c00003{bottom:98.593200pt;}
.y10c6_c00003{bottom:98.625867pt;}
.y11ee_c00003{bottom:98.880000pt;}
.y11f5_c00003{bottom:98.880400pt;}
.y1209_c00003{bottom:98.881333pt;}
.y1210_c00003{bottom:98.883200pt;}
.y1217_c00003{bottom:98.884133pt;}
.y121e_c00003{bottom:98.884533pt;}
.yc76_c00003{bottom:99.147333pt;}
.y94c_c00003{bottom:99.252160pt;}
.y11fc_c00003{bottom:99.545733pt;}
.yfef_c00003{bottom:100.000000pt;}
.y506_c00003{bottom:100.050933pt;}
.y90d_c00003{bottom:100.212533pt;}
.yff2_c00003{bottom:100.665600pt;}
.y33c_c00003{bottom:101.116107pt;}
.y90c_c00003{bottom:101.171813pt;}
.yc0a_c00003{bottom:101.493733pt;}
.yea6_c00003{bottom:101.547333pt;}
.y496_c00003{bottom:101.650933pt;}
.yb34_c00003{bottom:102.131787pt;}
.yc89_c00003{bottom:103.947333pt;}
.y3fa_c00003{bottom:104.374000pt;}
.yf43_c00003{bottom:104.734080pt;}
.yad7_c00003{bottom:105.012533pt;}
.y896_c00003{bottom:105.013600pt;}
.yad6_c00003{bottom:105.971653pt;}
.ya1c_c00003{bottom:105.971787pt;}
.yf2e_c00003{bottom:106.586667pt;}
.y778_c00003{bottom:106.613600pt;}
.y7c7_c00003{bottom:106.933867pt;}
.yb5c_c00003{bottom:108.214000pt;}
.yff8_c00003{bottom:109.093333pt;}
.yee9_c00003{bottom:109.227600pt;}
.yb05_c00003{bottom:109.332800pt;}
.yffa_c00003{bottom:109.759733pt;}
.ybb1_c00003{bottom:109.814000pt;}
.yca8_c00003{bottom:110.080000pt;}
.yb04_c00003{bottom:110.292173pt;}
.y33b_c00003{bottom:111.020267pt;}
.yc53_c00003{bottom:111.946000pt;}
.ya4e_c00003{bottom:113.172093pt;}
.ya88_c00003{bottom:113.651840pt;}
.y9de_c00003{bottom:113.652667pt;}
.yf44_c00003{bottom:114.080440pt;}
.y505_c00003{bottom:114.131200pt;}
.y671_c00003{bottom:114.293733pt;}
.y9dd_c00003{bottom:114.611787pt;}
.y11ae_c00003{bottom:115.613333pt;}
.y495_c00003{bottom:115.731200pt;}
.y579_c00003{bottom:115.893733pt;}
.yc75_c00003{bottom:115.947333pt;}
.y95c_c00003{bottom:116.052080pt;}
.y3f9_c00003{bottom:116.853600pt;}
.yc09_c00003{bottom:117.174000pt;}
.y10fc_c00003{bottom:117.573867pt;}
.y895_c00003{bottom:117.974000pt;}
.yb33_c00003{bottom:118.451600pt;}
.y90b_c00003{bottom:118.452080pt;}
.y1005_c00003{bottom:118.493467pt;}
.y101e_c00003{bottom:118.496400pt;}
.yf5f_c00003{bottom:118.786667pt;}
.y94b_c00003{bottom:118.932373pt;}
.y1032_c00003{bottom:119.172267pt;}
.y777_c00003{bottom:119.574000pt;}
.y1158_c00003{bottom:119.839467pt;}
.yc88_c00003{bottom:120.747333pt;}
.y5fd_c00003{bottom:121.174000pt;}
.y1185_c00003{bottom:121.440533pt;}
.y179_c00003{bottom:121.866133pt;}
.y1251_c00003{bottom:121.953067pt;}
.ya1b_c00003{bottom:122.292133pt;}
.yad5_c00003{bottom:122.771653pt;}
.y12fd_c00003{bottom:122.827600pt;}
.y10b7_c00003{bottom:122.877600pt;}
.y109d_c00003{bottom:122.878000pt;}
.y1083_c00003{bottom:122.878933pt;}
.y106c_c00003{bottom:122.879867pt;}
.y1052_c00003{bottom:122.880267pt;}
.y11a0_c00003{bottom:123.384667pt;}
.y11a5_c00003{bottom:123.384800pt;}
.y119a_c00003{bottom:123.384933pt;}
.y1194_c00003{bottom:123.385200pt;}
.y118e_c00003{bottom:123.386000pt;}
.yf45_c00003{bottom:123.454400pt;}
.y10c7_c00003{bottom:123.546133pt;}
.ye65_c00003{bottom:123.787067pt;}
.yb5a_c00003{bottom:123.893733pt;}
.y10e5_c00003{bottom:125.346267pt;}
.y10f7_c00003{bottom:125.346800pt;}
.y11b5_c00003{bottom:125.347600pt;}
.yb6f_c00003{bottom:125.974000pt;}
.yee8_c00003{bottom:126.027600pt;}
.ya87_c00003{bottom:126.611733pt;}
.yb03_c00003{bottom:127.092173pt;}
.yea4_c00003{bottom:127.147067pt;}
.y670_c00003{bottom:127.253600pt;}
.y1117_c00003{bottom:127.586400pt;}
.y11ce_c00003{bottom:127.586533pt;}
.y1123_c00003{bottom:127.587600pt;}
.y112f_c00003{bottom:127.587867pt;}
.y11d6_c00003{bottom:127.588133pt;}
.y113b_c00003{bottom:127.588667pt;}
.y11e2_c00003{bottom:127.589200pt;}
.y1147_c00003{bottom:127.589467pt;}
.y11e3_c00003{bottom:127.589733pt;}
.yc37_c00003{bottom:127.787467pt;}
.y504_c00003{bottom:128.211467pt;}
.y577_c00003{bottom:128.853600pt;}
.y1174_c00003{bottom:129.213200pt;}
.y117d_c00003{bottom:129.213333pt;}
.y3f8_c00003{bottom:129.333867pt;}
.y494_c00003{bottom:129.811467pt;}
.yf8d_c00003{bottom:130.052933pt;}
.y893_c00003{bottom:130.933867pt;}
.yf2f_c00003{bottom:130.946533pt;}
.y127b_c00003{bottom:131.232800pt;}
.y9dc_c00003{bottom:131.411787pt;}
.yb32_c00003{bottom:131.891733pt;}
.y94a_c00003{bottom:131.892267pt;}
.ya4d_c00003{bottom:132.372120pt;}
.y11ad_c00003{bottom:132.480000pt;}
.y775_c00003{bottom:132.533867pt;}
.yf46_c00003{bottom:132.826800pt;}
.y5fc_c00003{bottom:134.133333pt;}
.y10fb_c00003{bottom:134.426933pt;}
.y178_c00003{bottom:134.506667pt;}
.y12eb_c00003{bottom:134.507867pt;}
.yfd7_c00003{bottom:134.626533pt;}
.y99d_c00003{bottom:134.772000pt;}
.y90a_c00003{bottom:135.252107pt;}
.yc08_c00003{bottom:135.573333pt;}
.ya1a_c00003{bottom:135.732267pt;}
.y99c_c00003{bottom:135.732520pt;}
.y28b_c00003{bottom:135.946667pt;}
.ybb0_c00003{bottom:136.213333pt;}
.ybaf_c00003{bottom:136.373333pt;}
.y1157_c00003{bottom:136.705600pt;}
.y842_c00003{bottom:136.853333pt;}
.yad4_c00003{bottom:137.651867pt;}
.ybeb_c00003{bottom:137.973333pt;}
.yf77_c00003{bottom:137.986400pt;}
.yf81_c00003{bottom:137.987067pt;}
.y1184_c00003{bottom:138.307200pt;}
.y28c_c00003{bottom:138.346667pt;}
.yf6b_c00003{bottom:139.013200pt;}
.yf60_c00003{bottom:139.066933pt;}
.y66f_c00003{bottom:140.213333pt;}
.ye64_c00003{bottom:140.587067pt;}
.y1006_c00003{bottom:141.599733pt;}
.y101f_c00003{bottom:141.602667pt;}
.y102b_c00003{bottom:141.603733pt;}
.yb6e_c00003{bottom:141.653333pt;}
.y3f7_c00003{bottom:141.813333pt;}
.yb02_c00003{bottom:141.971867pt;}
.yf47_c00003{bottom:142.174200pt;}
.y1033_c00003{bottom:142.264933pt;}
.y503_c00003{bottom:142.291733pt;}
.yb59_c00003{bottom:142.293333pt;}
.yfa6_c00003{bottom:142.559067pt;}
.yfa1_c00003{bottom:142.560000pt;}
.yfb7_c00003{bottom:142.560933pt;}
.yfc1_c00003{bottom:142.561867pt;}
.yfcb_c00003{bottom:142.562800pt;}
.yc74_c00003{bottom:143.626667pt;}
.y493_c00003{bottom:143.891733pt;}
.ya86_c00003{bottom:143.892000pt;}
.y892_c00003{bottom:143.893333pt;}
.yea3_c00003{bottom:143.947067pt;}
.y1250_c00003{bottom:145.306667pt;}
.ya4c_c00003{bottom:145.332533pt;}
.yc52_c00003{bottom:145.386133pt;}
.y774_c00003{bottom:145.493333pt;}
.y9db_c00003{bottom:146.292000pt;}
.yf8c_c00003{bottom:146.852933pt;}
.y5fb_c00003{bottom:147.093333pt;}
.y177_c00003{bottom:147.146667pt;}
.y10b8_c00003{bottom:147.811467pt;}
.y109e_c00003{bottom:147.811867pt;}
.y1084_c00003{bottom:147.812800pt;}
.y106d_c00003{bottom:147.813733pt;}
.y1053_c00003{bottom:147.814133pt;}
.y909_c00003{bottom:148.212000pt;}
.yb8c_c00003{bottom:148.213600pt;}
.yc87_c00003{bottom:148.426667pt;}
.y10c8_c00003{bottom:148.480000pt;}
.y289_c00003{bottom:148.586667pt;}
.ye61_c00003{bottom:149.066667pt;}
.ye66_c00003{bottom:149.066800pt;}
.y949_c00003{bottom:149.172000pt;}
.y841_c00003{bottom:149.173333pt;}
.y28a_c00003{bottom:150.986667pt;}
.yad3_c00003{bottom:151.092000pt;}
.yfd6_c00003{bottom:151.426533pt;}
.yf48_c00003{bottom:151.546600pt;}
.ybae_c00003{bottom:151.893333pt;}
.ya19_c00003{bottom:152.052000pt;}
.yea0_c00003{bottom:152.426667pt;}
.yea5_c00003{bottom:152.426800pt;}
.y66e_c00003{bottom:153.173333pt;}
.ybea_c00003{bottom:153.653333pt;}
.yee7_c00003{bottom:153.706667pt;}
.ybc8_c00003{bottom:154.133333pt;}
.y3f6_c00003{bottom:154.293333pt;}
.y6ed_c00003{bottom:154.295253pt;}
.y99b_c00003{bottom:154.452253pt;}
.y576_c00003{bottom:154.773333pt;}
.yf3b_c00003{bottom:155.265867pt;}
.yf30_c00003{bottom:155.293867pt;}
.yb01_c00003{bottom:155.412000pt;}
.y502_c00003{bottom:156.372000pt;}
.y891_c00003{bottom:156.853333pt;}
.ye63_c00003{bottom:157.546933pt;}
.y492_c00003{bottom:157.972000pt;}
.y773_c00003{bottom:158.453333pt;}
.y201_c00003{bottom:159.306667pt;}
.yf61_c00003{bottom:159.360133pt;}
.y9da_c00003{bottom:159.732133pt;}
.y5fa_c00003{bottom:160.053333pt;}
.yb6d_c00003{bottom:160.213333pt;}
.yc73_c00003{bottom:160.426667pt;}
.y1171_c00003{bottom:160.506133pt;}
.y10fe_c00003{bottom:160.666533pt;}
.ya85_c00003{bottom:160.692000pt;}
.yea2_c00003{bottom:160.747067pt;}
.yb58_c00003{bottom:160.853333pt;}
.yf49_c00003{bottom:160.933573pt;}
.y287_c00003{bottom:161.226667pt;}
.y840_c00003{bottom:161.493333pt;}
.ya4b_c00003{bottom:161.652267pt;}
.y202_c00003{bottom:161.706667pt;}
.y176_c00003{bottom:162.346667pt;}
.y288_c00003{bottom:163.626667pt;}
.y115a_c00003{bottom:164.506667pt;}
.y908_c00003{bottom:164.532267pt;}
.y1007_c00003{bottom:164.733600pt;}
.y102c_c00003{bottom:164.737600pt;}
.y124f_c00003{bottom:164.826667pt;}
.y11aa_c00003{bottom:165.211733pt;}
.y11a6_c00003{bottom:165.211867pt;}
.y1195_c00003{bottom:165.212267pt;}
.y119b_c00003{bottom:165.212533pt;}
.y118f_c00003{bottom:165.213067pt;}
.yc86_c00003{bottom:165.226667pt;}
.y1034_c00003{bottom:165.412267pt;}
.y11af_c00003{bottom:165.893600pt;}
.yad2_c00003{bottom:165.971733pt;}
.y948_c00003{bottom:165.972000pt;}
.y66d_c00003{bottom:166.133333pt;}
.y3f5_c00003{bottom:166.773333pt;}
.y6ec_c00003{bottom:167.415040pt;}
.y575_c00003{bottom:167.733333pt;}
.ya18_c00003{bottom:168.371733pt;}
.y10e6_c00003{bottom:168.414000pt;}
.y10f0_c00003{bottom:168.415600pt;}
.y11bc_c00003{bottom:168.416533pt;}
.y129d_c00003{bottom:168.506667pt;}
.y890_c00003{bottom:169.813333pt;}
.yf4a_c00003{bottom:170.266907pt;}
.yb00_c00003{bottom:170.292267pt;}
.y501_c00003{bottom:170.452267pt;}
.ybad_c00003{bottom:170.453333pt;}
.yee6_c00003{bottom:170.506667pt;}
.yff4_c00003{bottom:170.719733pt;}
.y12ea_c00003{bottom:170.827600pt;}
.y127a_c00003{bottom:170.906667pt;}
.y772_c00003{bottom:171.413333pt;}
.y99a_c00003{bottom:171.732400pt;}
.yb8b_c00003{bottom:171.893333pt;}
.y1ff_c00003{bottom:171.946667pt;}
.y491_c00003{bottom:172.052267pt;}
.ybe9_c00003{bottom:172.053333pt;}
.y1118_c00003{bottom:172.254133pt;}
.y11cf_c00003{bottom:172.254267pt;}
.y1124_c00003{bottom:172.255333pt;}
.y1130_c00003{bottom:172.255600pt;}
.y11d7_c00003{bottom:172.255867pt;}
.y113c_c00003{bottom:172.256933pt;}
.y1148_c00003{bottom:172.257200pt;}
.y1150_c00003{bottom:172.257467pt;}
.yc36_c00003{bottom:172.426667pt;}
.y10b9_c00003{bottom:172.731733pt;}
.y109f_c00003{bottom:172.732133pt;}
.y1085_c00003{bottom:172.733067pt;}
.y1054_c00003{bottom:172.733867pt;}
.y106e_c00003{bottom:172.734000pt;}
.y5f9_c00003{bottom:173.013333pt;}
.y10c9_c00003{bottom:173.413333pt;}
.y83f_c00003{bottom:173.813333pt;}
.y175_c00003{bottom:173.866667pt;}
.y200_c00003{bottom:174.346667pt;}
.ye62_c00003{bottom:174.346933pt;}
.y9d9_c00003{bottom:174.612800pt;}
.y1175_c00003{bottom:174.879867pt;}
.y117e_c00003{bottom:174.880000pt;}
.y117a_c00003{bottom:174.880133pt;}
.y11ef_c00003{bottom:175.453467pt;}
.y11fa_c00003{bottom:175.454267pt;}
.y11f6_c00003{bottom:175.454400pt;}
.y120a_c00003{bottom:175.456267pt;}
.y1211_c00003{bottom:175.456667pt;}
.y1218_c00003{bottom:175.457600pt;}
.y121f_c00003{bottom:175.458533pt;}
.y1186_c00003{bottom:175.546800pt;}
.y11fd_c00003{bottom:176.133200pt;}
.y286_c00003{bottom:176.266667pt;}
.ya82_c00003{bottom:177.011733pt;}
.ya84_c00003{bottom:177.492000pt;}
.y10fd_c00003{bottom:177.533733pt;}
.yea1_c00003{bottom:177.706933pt;}
.ya4a_c00003{bottom:178.452267pt;}
.yff0_c00003{bottom:178.493733pt;}
.yb6c_c00003{bottom:178.613333pt;}
.yc51_c00003{bottom:178.666400pt;}
.y66c_c00003{bottom:179.093333pt;}
.y10e0_c00003{bottom:179.173467pt;}
.y3f4_c00003{bottom:179.253333pt;}
.yf6c_c00003{bottom:179.586133pt;}
.yf62_c00003{bottom:179.653867pt;}
.yf31_c00003{bottom:179.654267pt;}
.yf4b_c00003{bottom:179.654413pt;}
.yb2f_c00003{bottom:180.371467pt;}
.y6eb_c00003{bottom:180.534827pt;}
.y574_c00003{bottom:180.693333pt;}
.yb31_c00003{bottom:180.852000pt;}
.yad1_c00003{bottom:181.332133pt;}
.y907_c00003{bottom:181.332267pt;}
.y1159_c00003{bottom:181.373333pt;}
.ya83_c00003{bottom:181.812000pt;}
.y945_c00003{bottom:182.291733pt;}
.y947_c00003{bottom:182.772000pt;}
.y88f_c00003{bottom:182.773333pt;}
.y999_c00003{bottom:183.732400pt;}
.ya15_c00003{bottom:184.212000pt;}
.yc07_c00003{bottom:184.213333pt;}
.y771_c00003{bottom:184.373333pt;}
.y500_c00003{bottom:184.532533pt;}
.y1fd_c00003{bottom:184.586667pt;}
.ya17_c00003{bottom:184.692000pt;}
.yb30_c00003{bottom:185.172000pt;}
.yaff_c00003{bottom:185.652133pt;}
.y1170_c00003{bottom:185.785867pt;}
.y5f8_c00003{bottom:185.973333pt;}
.y490_c00003{bottom:186.132533pt;}
.y83e_c00003{bottom:186.133333pt;}
.y174_c00003{bottom:186.346667pt;}
.y284_c00003{bottom:186.506667pt;}
.y1fe_c00003{bottom:186.986667pt;}
.y946_c00003{bottom:187.092000pt;}
.yb8a_c00003{bottom:187.573333pt;}
.yff3_c00003{bottom:187.613467pt;}
.y1008_c00003{bottom:187.840933pt;}
.y102d_c00003{bottom:187.843867pt;}
.yc72_c00003{bottom:188.106800pt;}
.y129c_c00003{bottom:188.186667pt;}
.ybc7_c00003{bottom:188.213333pt;}
.y1035_c00003{bottom:188.504933pt;}
.y12fc_c00003{bottom:188.749333pt;}
.y349_c00003{bottom:188.809333pt;}
.y285_c00003{bottom:188.906667pt;}
.yf4c_c00003{bottom:188.987747pt;}
.ya16_c00003{bottom:189.012000pt;}
.ybac_c00003{bottom:189.013333pt;}
.y131a_c00003{bottom:189.390000pt;}
.yf78_c00003{bottom:189.600000pt;}
.yf82_c00003{bottom:189.600667pt;}
.y9d8_c00003{bottom:189.971600pt;}
.yf8e_c00003{bottom:190.265467pt;}
.ybe8_c00003{bottom:190.613333pt;}
.yb57_c00003{bottom:190.933333pt;}
.y124e_c00003{bottom:191.226667pt;}
.y3f3_c00003{bottom:191.733333pt;}
.y66b_c00003{bottom:192.053333pt;}
.yc85_c00003{bottom:192.906800pt;}
.y573_c00003{bottom:193.653333pt;}
.y6ea_c00003{bottom:193.654613pt;}
.ya80_c00003{bottom:193.811333pt;}
.ya47_c00003{bottom:193.811733pt;}
.ya81_c00003{bottom:194.292000pt;}
.ya49_c00003{bottom:194.772000pt;}
.y1279_c00003{bottom:194.906667pt;}
.y88e_c00003{bottom:195.733333pt;}
.yacf_c00003{bottom:196.211867pt;}
.yb2d_c00003{bottom:196.690933pt;}
.y904_c00003{bottom:196.691733pt;}
.yad0_c00003{bottom:196.692000pt;}
.yb2e_c00003{bottom:197.172000pt;}
.yfa7_c00003{bottom:197.185067pt;}
.yfa2_c00003{bottom:197.186000pt;}
.yfb8_c00003{bottom:197.186933pt;}
.yfc2_c00003{bottom:197.188400pt;}
.yfcc_c00003{bottom:197.189333pt;}
.y1fb_c00003{bottom:197.226667pt;}
.y770_c00003{bottom:197.333333pt;}
.y906_c00003{bottom:197.652000pt;}
.y10a0_c00003{bottom:197.664400pt;}
.y1086_c00003{bottom:197.665333pt;}
.y106f_c00003{bottom:197.666267pt;}
.y1055_c00003{bottom:197.666667pt;}
.yfd8_c00003{bottom:197.854133pt;}
.yee5_c00003{bottom:198.186800pt;}
.yffc_c00003{bottom:198.333200pt;}
.y10ca_c00003{bottom:198.333600pt;}
.yf4d_c00003{bottom:198.375773pt;}
.y83d_c00003{bottom:198.453333pt;}
.ya48_c00003{bottom:198.612000pt;}
.y4ff_c00003{bottom:198.612800pt;}
.y5f7_c00003{bottom:198.933333pt;}
.y173_c00003{bottom:198.986667pt;}
.y942_c00003{bottom:199.092267pt;}
.y282_c00003{bottom:199.146667pt;}
.y944_c00003{bottom:199.572000pt;}
.y1fc_c00003{bottom:199.626667pt;}
.yc06_c00003{bottom:199.893333pt;}
.yf63_c00003{bottom:199.934133pt;}
.ye5f_c00003{bottom:199.947067pt;}
.y48f_c00003{bottom:200.212800pt;}
.yafe_c00003{bottom:200.531867pt;}
.ya13_c00003{bottom:200.535600pt;}
.ya14_c00003{bottom:201.012000pt;}
.y905_c00003{bottom:201.492000pt;}
.y283_c00003{bottom:201.546667pt;}
.ye9f_c00003{bottom:203.146800pt;}
.y12fb_c00003{bottom:203.149333pt;}
.y1100_c00003{bottom:203.746133pt;}
.y943_c00003{bottom:203.892000pt;}
.yf32_c00003{bottom:204.000133pt;}
.y3f2_c00003{bottom:204.213333pt;}
.y346_c00003{bottom:204.784933pt;}
.y9d5_c00003{bottom:204.851867pt;}
.y130_c00003{bottom:204.906667pt;}
.y66a_c00003{bottom:205.013333pt;}
.yc71_c00003{bottom:205.066667pt;}
.y9d7_c00003{bottom:205.332000pt;}
.yff9_c00003{bottom:206.079733pt;}
.yb89_c00003{bottom:206.133333pt;}
.y572_c00003{bottom:206.613333pt;}
.y10e2_c00003{bottom:206.745733pt;}
.ybc6_c00003{bottom:206.773333pt;}
.y6e9_c00003{bottom:206.774400pt;}
.y11a7_c00003{bottom:207.037867pt;}
.y11a1_c00003{bottom:207.038267pt;}
.y119c_c00003{bottom:207.038533pt;}
.y1196_c00003{bottom:207.038800pt;}
.y1190_c00003{bottom:207.039600pt;}
.y11b0_c00003{bottom:207.706133pt;}
.yf4e_c00003{bottom:207.748173pt;}
.y88d_c00003{bottom:208.693333pt;}
.y115c_c00003{bottom:209.145733pt;}
.y9d6_c00003{bottom:209.652000pt;}
.y1f9_c00003{bottom:209.866667pt;}
.yea_c00003{bottom:210.028000pt;}
.ya44_c00003{bottom:210.134267pt;}
.y76f_c00003{bottom:210.293333pt;}
.y83c_c00003{bottom:210.773333pt;}
.y1009_c00003{bottom:210.947200pt;}
.y1020_c00003{bottom:210.949600pt;}
.ya46_c00003{bottom:211.092000pt;}
.y10e7_c00003{bottom:211.520267pt;}
.y10f1_c00003{bottom:211.521867pt;}
.y11bd_c00003{bottom:211.522800pt;}
.yacd_c00003{bottom:211.572133pt;}
.y1036_c00003{bottom:211.612267pt;}
.y172_c00003{bottom:211.626667pt;}
.y280_c00003{bottom:211.786667pt;}
.y5f6_c00003{bottom:211.893333pt;}
.yc50_c00003{bottom:211.946667pt;}
.yace_c00003{bottom:212.052000pt;}
.y1fa_c00003{bottom:212.266667pt;}
.ycd4_c00003{bottom:212.506800pt;}
.y4fe_c00003{bottom:212.693067pt;}
.y95b_c00003{bottom:213.010267pt;}
.y901_c00003{bottom:213.012933pt;}
.y1311_c00003{bottom:213.230093pt;}
.yb2c_c00003{bottom:213.490933pt;}
.y903_c00003{bottom:213.972000pt;}
.y281_c00003{bottom:214.186667pt;}
.y48e_c00003{bottom:214.293067pt;}
.y998_c00003{bottom:214.452133pt;}
.ya45_c00003{bottom:214.932000pt;}
.yee4_c00003{bottom:215.146667pt;}
.yffb_c00003{bottom:215.199867pt;}
.y124d_c00003{bottom:215.226667pt;}
.yafd_c00003{bottom:215.892667pt;}
.y941_c00003{bottom:216.372000pt;}
.y3f0_c00003{bottom:216.693333pt;}
.ye5e_c00003{bottom:216.747067pt;}
.yc35_c00003{bottom:216.906667pt;}
.y11c4_c00003{bottom:216.934267pt;}
.y1119_c00003{bottom:216.934400pt;}
.y11d0_c00003{bottom:216.934533pt;}
.y1125_c00003{bottom:216.935600pt;}
.y1131_c00003{bottom:216.935867pt;}
.y11d8_c00003{bottom:216.936533pt;}
.y113d_c00003{bottom:216.937200pt;}
.y1149_c00003{bottom:216.937467pt;}
.y1151_c00003{bottom:216.938133pt;}
.yf4f_c00003{bottom:217.095573pt;}
.ya12_c00003{bottom:217.335600pt;}
.y12f_c00003{bottom:217.546667pt;}
.y902_c00003{bottom:217.812000pt;}
.y669_c00003{bottom:217.973333pt;}
.yc04_c00003{bottom:218.453333pt;}
.y1278_c00003{bottom:218.906667pt;}
.ybab_c00003{bottom:219.093333pt;}
.y571_c00003{bottom:219.573333pt;}
.y6e8_c00003{bottom:219.894187pt;}
.ye9d_c00003{bottom:220.106667pt;}
.yf6d_c00003{bottom:220.186667pt;}
.y9d2_c00003{bottom:220.212667pt;}
.yf64_c00003{bottom:220.226800pt;}
.y1176_c00003{bottom:220.546533pt;}
.y117f_c00003{bottom:220.546667pt;}
.y10ff_c00003{bottom:220.613867pt;}
.y9d4_c00003{bottom:220.692000pt;}
.ybe7_c00003{bottom:220.693333pt;}
.y345_c00003{bottom:220.757333pt;}
.y1187_c00003{bottom:221.214533pt;}
.y1f7_c00003{bottom:222.506667pt;}
.y10a1_c00003{bottom:222.584667pt;}
.y1087_c00003{bottom:222.585600pt;}
.y1056_c00003{bottom:222.586400pt;}
.y1070_c00003{bottom:222.586533pt;}
.y83b_c00003{bottom:223.093333pt;}
.y76e_c00003{bottom:223.253333pt;}
.y10cb_c00003{bottom:223.265867pt;}
.y2b_c00003{bottom:223.628000pt;}
.y171_c00003{bottom:224.266667pt;}
.y27e_c00003{bottom:224.426667pt;}
.yb6b_c00003{bottom:224.533333pt;}
.y5f5_c00003{bottom:224.853333pt;}
.y1f8_c00003{bottom:224.906667pt;}
.y9d3_c00003{bottom:225.012000pt;}
.yb54_c00003{bottom:225.173333pt;}
.ye5b_c00003{bottom:225.226667pt;}
.ye60_c00003{bottom:225.226800pt;}
.y1310_c00003{bottom:225.709787pt;}
.y115b_c00003{bottom:226.053600pt;}
.yf50_c00003{bottom:226.467973pt;}
.y4fd_c00003{bottom:226.773333pt;}
.y27f_c00003{bottom:226.826667pt;}
.yacc_c00003{bottom:227.412267pt;}
.ya43_c00003{bottom:227.414000pt;}
.ya7f_c00003{bottom:227.892000pt;}
.yf33_c00003{bottom:228.320400pt;}
.y48d_c00003{bottom:228.373333pt;}
.y996_c00003{bottom:228.851733pt;}
.ye9_c00003{bottom:229.388000pt;}
.yb2b_c00003{bottom:229.811200pt;}
.y997_c00003{bottom:229.812000pt;}
.y12e_c00003{bottom:230.186667pt;}
.y95a_c00003{bottom:230.290933pt;}
.y900_c00003{bottom:230.293600pt;}
.yc05_c00003{bottom:230.453333pt;}
.yf0a_c00003{bottom:230.666667pt;}
.y1001_c00003{bottom:230.906000pt;}
.y668_c00003{bottom:230.933333pt;}
.yafc_c00003{bottom:231.732800pt;}
.y116f_c00003{bottom:232.026000pt;}
.y118c_c00003{bottom:232.160000pt;}
.y104e_c00003{bottom:232.185733pt;}
.ybf_c00003{bottom:232.268000pt;}
.y570_c00003{bottom:232.533333pt;}
.yc70_c00003{bottom:232.746667pt;}
.y6e7_c00003{bottom:233.013973pt;}
.y940_c00003{bottom:233.172000pt;}
.yf90_c00003{bottom:233.439467pt;}
.ye5d_c00003{bottom:233.547067pt;}
.ya11_c00003{bottom:233.654933pt;}
.yb56_c00003{bottom:233.973333pt;}
.y100a_c00003{bottom:234.081067pt;}
.y1021_c00003{bottom:234.082933pt;}
.y102e_c00003{bottom:234.084533pt;}
.y1037_c00003{bottom:234.745067pt;}
.ybaa_c00003{bottom:234.773333pt;}
.y1f5_c00003{bottom:235.146667pt;}
.y83a_c00003{bottom:235.413333pt;}
.yf51_c00003{bottom:235.841933pt;}
.y9d1_c00003{bottom:236.052800pt;}
.yc03_c00003{bottom:236.213333pt;}
.ybe6_c00003{bottom:236.373333pt;}
.ybc5_c00003{bottom:236.853333pt;}
.ye9e_c00003{bottom:236.906667pt;}
.y27d_c00003{bottom:237.066667pt;}
.yb55_c00003{bottom:237.173333pt;}
.y1f6_c00003{bottom:237.546667pt;}
.y5f4_c00003{bottom:237.813333pt;}
.y130f_c00003{bottom:238.030093pt;}
.y88c_c00003{bottom:238.132000pt;}
.y8a0_c00003{bottom:238.612000pt;}
.ycd3_c00003{bottom:238.906800pt;}
.ycd5_c00003{bottom:239.066667pt;}
.y124c_c00003{bottom:239.226667pt;}
.y170_c00003{bottom:239.466667pt;}
.yf65_c00003{bottom:240.506533pt;}
.yf79_c00003{bottom:241.213600pt;}
.yf83_c00003{bottom:241.213733pt;}
.yacb_c00003{bottom:242.772133pt;}
.yee3_c00003{bottom:242.826667pt;}
.y1277_c00003{bottom:242.906667pt;}
.yb53_c00003{bottom:242.933333pt;}
.y2a_c00003{bottom:242.988000pt;}
.y12e9_c00003{bottom:243.308800pt;}
.y10e1_c00003{bottom:243.493200pt;}
.yff5_c00003{bottom:243.493733pt;}
.ya42_c00003{bottom:243.733733pt;}
.yfda_c00003{bottom:244.000533pt;}
.y993_c00003{bottom:244.212533pt;}
.ya7e_c00003{bottom:244.692000pt;}
.y995_c00003{bottom:245.172000pt;}
.yf52_c00003{bottom:245.188293pt;}
.y12d_c00003{bottom:245.386667pt;}
.yb2a_c00003{bottom:246.131467pt;}
.yb6a_c00003{bottom:246.133333pt;}
.y6e6_c00003{bottom:246.133760pt;}
.y959_c00003{bottom:246.611200pt;}
.y8ff_c00003{bottom:246.613333pt;}
.y1102_c00003{bottom:246.852933pt;}
.yc4f_c00003{bottom:246.986667pt;}
.yafb_c00003{bottom:247.092667pt;}
.yf2a_c00003{bottom:247.225733pt;}
.yf5c_c00003{bottom:247.226667pt;}
.y10a2_c00003{bottom:247.518000pt;}
.y1088_c00003{bottom:247.518933pt;}
.y1071_c00003{bottom:247.519867pt;}
.y1057_c00003{bottom:247.520267pt;}
.y839_c00003{bottom:247.733333pt;}
.y1f3_c00003{bottom:247.786667pt;}
.y10cc_c00003{bottom:248.186133pt;}
.y994_c00003{bottom:248.532000pt;}
.ye8_c00003{bottom:248.748000pt;}
.y11a2_c00003{bottom:248.891867pt;}
.y11a8_c00003{bottom:248.892000pt;}
.y119d_c00003{bottom:248.892133pt;}
.y1197_c00003{bottom:248.892400pt;}
.y1191_c00003{bottom:248.893200pt;}
.yc6f_c00003{bottom:249.546667pt;}
.y11b1_c00003{bottom:249.573867pt;}
.y27b_c00003{bottom:249.706667pt;}
.y93f_c00003{bottom:249.972000pt;}
.ya10_c00003{bottom:249.974267pt;}
.y1f4_c00003{bottom:250.186667pt;}
.yf8f_c00003{bottom:250.305600pt;}
.ye5c_c00003{bottom:250.506933pt;}
.y130e_c00003{bottom:250.509787pt;}
.y16f_c00003{bottom:250.986667pt;}
.y9d0_c00003{bottom:251.412667pt;}
.ybe_c00003{bottom:251.628000pt;}
.yfa8_c00003{bottom:251.772533pt;}
.yfaf_c00003{bottom:251.773467pt;}
.yfb9_c00003{bottom:251.774933pt;}
.yfc3_c00003{bottom:251.775867pt;}
.yfcd_c00003{bottom:251.776800pt;}
.y11f0_c00003{bottom:252.026400pt;}
.y11f7_c00003{bottom:252.026800pt;}
.y120b_c00003{bottom:252.028667pt;}
.y1212_c00003{bottom:252.029600pt;}
.y1219_c00003{bottom:252.030533pt;}
.y27c_c00003{bottom:252.106667pt;}
.ybc4_c00003{bottom:252.533333pt;}
.yf3c_c00003{bottom:252.639867pt;}
.yf34_c00003{bottom:252.666800pt;}
.y8ba_c00003{bottom:252.692000pt;}
.y76d_c00003{bottom:252.693333pt;}
.y34b_c00003{bottom:252.702933pt;}
.y11fe_c00003{bottom:252.705600pt;}
.ye40_c00003{bottom:252.746667pt;}
.y8c1_c00003{bottom:253.172000pt;}
.y780_c00003{bottom:253.173333pt;}
.yba7_c00003{bottom:253.333333pt;}
.y115e_c00003{bottom:253.826533pt;}
.yc84_c00003{bottom:254.346667pt;}
.yf53_c00003{bottom:254.561733pt;}
.y10e8_c00003{bottom:254.586400pt;}
.y10f8_c00003{bottom:254.586933pt;}
.y11b6_c00003{bottom:254.587733pt;}
.y11be_c00003{bottom:254.589467pt;}
.yb88_c00003{bottom:254.773333pt;}
.ybe3_c00003{bottom:254.933333pt;}
.y12c_c00003{bottom:256.906667pt;}
.yd00_c00003{bottom:257.026667pt;}
.y100b_c00003{bottom:257.187333pt;}
.yf09_c00003{bottom:257.226973pt;}
.y88b_c00003{bottom:257.333333pt;}
.y88a_c00003{bottom:257.493333pt;}
.y104d_c00003{bottom:257.506000pt;}
.y1038_c00003{bottom:257.852400pt;}
.yaca_c00003{bottom:258.132000pt;}
.y3ef_c00003{bottom:259.253333pt;}
.y6e5_c00003{bottom:259.253547pt;}
.yee2_c00003{bottom:259.626667pt;}
.y3fd_c00003{bottom:259.733333pt;}
.yfed_c00003{bottom:259.906400pt;}
.ya41_c00003{bottom:260.053467pt;}
.y667_c00003{bottom:260.373333pt;}
.y1f1_c00003{bottom:260.426667pt;}
.y992_c00003{bottom:260.532800pt;}
.yb69_c00003{bottom:260.693333pt;}
.yf6e_c00003{bottom:260.774133pt;}
.yf66_c00003{bottom:260.800267pt;}
.y679_c00003{bottom:260.853333pt;}
.yfd9_c00003{bottom:260.893733pt;}
.y4fc_c00003{bottom:261.333333pt;}
.yc34_c00003{bottom:261.386667pt;}
.ya7d_c00003{bottom:261.492000pt;}
.yb52_c00003{bottom:261.493333pt;}
.y11c5_c00003{bottom:261.600400pt;}
.y111a_c00003{bottom:261.600533pt;}
.y11d1_c00003{bottom:261.600667pt;}
.y1126_c00003{bottom:261.601733pt;}
.y1132_c00003{bottom:261.602000pt;}
.y11d9_c00003{bottom:261.602667pt;}
.y11e4_c00003{bottom:261.603067pt;}
.y113e_c00003{bottom:261.603333pt;}
.y114a_c00003{bottom:261.603600pt;}
.y1152_c00003{bottom:261.604267pt;}
.y11ed_c00003{bottom:261.664800pt;}
.y507_c00003{bottom:261.813333pt;}
.y56f_c00003{bottom:261.973333pt;}
.yba9_c00003{bottom:262.133333pt;}
.y279_c00003{bottom:262.346667pt;}
.y29_c00003{bottom:262.348000pt;}
.yb29_c00003{bottom:262.451733pt;}
.yafa_c00003{bottom:262.452533pt;}
.y57b_c00003{bottom:262.453333pt;}
.ye9b_c00003{bottom:262.507467pt;}
.y1f2_c00003{bottom:262.826667pt;}
.y958_c00003{bottom:262.931467pt;}
.y8fe_c00003{bottom:262.933067pt;}
.y124b_c00003{bottom:263.266667pt;}
.y16e_c00003{bottom:263.466667pt;}
.y1101_c00003{bottom:263.706000pt;}
.ybe5_c00003{bottom:263.733333pt;}
.yf54_c00003{bottom:263.908093pt;}
.y27a_c00003{bottom:264.746667pt;}
.yba8_c00003{bottom:265.333333pt;}
.y48c_c00003{bottom:265.493333pt;}
.ycd2_c00003{bottom:265.666667pt;}
.yf08_c00003{bottom:265.706667pt;}
.y498_c00003{bottom:265.972920pt;}
.y117b_c00003{bottom:266.213467pt;}
.y1177_c00003{bottom:266.213733pt;}
.y1180_c00003{bottom:266.213867pt;}
.ya0f_c00003{bottom:266.293600pt;}
.y93e_c00003{bottom:266.772000pt;}
.y9cf_c00003{bottom:266.772533pt;}
.y1188_c00003{bottom:266.880667pt;}
.ybe4_c00003{bottom:266.933333pt;}
.y1276_c00003{bottom:266.946667pt;}
.y7c6_c00003{bottom:267.093333pt;}
.y71d_c00003{bottom:267.252000pt;}
.y5f3_c00003{bottom:267.253333pt;}
.y7cf_c00003{bottom:267.573333pt;}
.y71f_c00003{bottom:267.732000pt;}
.y606_c00003{bottom:267.733333pt;}
.ye7_c00003{bottom:268.106667pt;}
.y12fa_c00003{bottom:269.229333pt;}
.y12b_c00003{bottom:269.386667pt;}
.yb87_c00003{bottom:270.453333pt;}
.y115d_c00003{bottom:270.720267pt;}
.yba6_c00003{bottom:270.933333pt;}
.ybd_c00003{bottom:270.988000pt;}
.ybc2_c00003{bottom:271.093333pt;}
.y76c_c00003{bottom:271.893333pt;}
.ydd4_c00003{bottom:271.948400pt;}
.y76b_c00003{bottom:272.053333pt;}
.y6e4_c00003{bottom:272.373333pt;}
.y10c2_c00003{bottom:272.451200pt;}
.y10ba_c00003{bottom:272.451467pt;}
.y10a3_c00003{bottom:272.451867pt;}
.y1089_c00003{bottom:272.452800pt;}
.y1072_c00003{bottom:272.453733pt;}
.y1058_c00003{bottom:272.454133pt;}
.yf29_c00003{bottom:272.545467pt;}
.yf5b_c00003{bottom:272.546400pt;}
.y12d2_c00003{bottom:272.692000pt;}
.ybe2_c00003{bottom:272.693333pt;}
.y1ef_c00003{bottom:273.066667pt;}
.y10cd_c00003{bottom:273.120000pt;}
.yf55_c00003{bottom:273.282053pt;}
.yac9_c00003{bottom:273.491867pt;}
.y4aa_c00003{bottom:274.773333pt;}
.y277_c00003{bottom:274.986667pt;}
.y838_c00003{bottom:275.412000pt;}
.y1f0_c00003{bottom:275.466667pt;}
.y12d3_c00003{bottom:275.572000pt;}
.y12d1_c00003{bottom:275.573200pt;}
.y849_c00003{bottom:275.892000pt;}
.y991_c00003{bottom:275.892667pt;}
.ye5a_c00003{bottom:275.946800pt;}
.y16d_c00003{bottom:276.106667pt;}
.ya40_c00003{bottom:276.373200pt;}
.yc02_c00003{bottom:276.373333pt;}
.yf35_c00003{bottom:277.026667pt;}
.yc6e_c00003{bottom:277.226667pt;}
.y43a_c00003{bottom:277.333333pt;}
.y278_c00003{bottom:277.386667pt;}
.y73c_c00003{bottom:277.493333pt;}
.yaf9_c00003{bottom:277.812400pt;}
.ya7c_c00003{bottom:278.292000pt;}
.yb28_c00003{bottom:278.772000pt;}
.y957_c00003{bottom:279.251733pt;}
.y8fd_c00003{bottom:279.252800pt;}
.yb68_c00003{bottom:279.253333pt;}
.ye9a_c00003{bottom:279.307467pt;}
.y666_c00003{bottom:279.573333pt;}
.y665_c00003{bottom:279.733333pt;}
.ybc3_c00003{bottom:279.893333pt;}
.y1000_c00003{bottom:280.225333pt;}
.y100c_c00003{bottom:280.321200pt;}
.y1022_c00003{bottom:280.323600pt;}
.yffd_c00003{bottom:280.345733pt;}
.y34a_c00003{bottom:280.656000pt;}
.y1039_c00003{bottom:280.984667pt;}
.yf67_c00003{bottom:281.094000pt;}
.y56e_c00003{bottom:281.173333pt;}
.y56d_c00003{bottom:281.333333pt;}
.ycd1_c00003{bottom:281.346667pt;}
.y28_c00003{bottom:281.706667pt;}
.y12a_c00003{bottom:282.026667pt;}
.y9ce_c00003{bottom:282.132400pt;}
.ya0e_c00003{bottom:282.612933pt;}
.yf56_c00003{bottom:282.655493pt;}
.yb50_c00003{bottom:283.093333pt;}
.ycff_c00003{bottom:283.426667pt;}
.y93d_c00003{bottom:283.572000pt;}
.yf92_c00003{bottom:284.866000pt;}
.y1ed_c00003{bottom:285.706667pt;}
.y7c5_c00003{bottom:286.293333pt;}
.y5f2_c00003{bottom:286.453333pt;}
.y5f1_c00003{bottom:286.613333pt;}
.ye3e_c00003{bottom:286.668133pt;}
.yf24_c00003{bottom:286.988133pt;}
.y124a_c00003{bottom:287.266667pt;}
.yee1_c00003{bottom:287.308267pt;}
.ye6_c00003{bottom:287.468000pt;}
.y275_c00003{bottom:287.626667pt;}
.ye97_c00003{bottom:287.786667pt;}
.ye9c_c00003{bottom:287.787733pt;}
.y1ee_c00003{bottom:288.106667pt;}
.y335_c00003{bottom:288.266667pt;}
.yb51_c00003{bottom:288.693333pt;}
.y16c_c00003{bottom:288.746667pt;}
.yac8_c00003{bottom:288.851733pt;}
.y4ab_c00003{bottom:288.853333pt;}
.y2bc_c00003{bottom:289.066667pt;}
.yba5_c00003{bottom:289.653333pt;}
.y43e_c00003{bottom:289.813333pt;}
.y1104_c00003{bottom:289.920133pt;}
.y276_c00003{bottom:290.026667pt;}
.ybc_c00003{bottom:290.348000pt;}
.y73e_c00003{bottom:290.453333pt;}
.y336_c00003{bottom:290.666667pt;}
.y11a9_c00003{bottom:290.718000pt;}
.y11a3_c00003{bottom:290.718400pt;}
.y119e_c00003{bottom:290.718667pt;}
.y1198_c00003{bottom:290.718933pt;}
.y1192_c00003{bottom:290.719200pt;}
.yc01_c00003{bottom:290.933333pt;}
.y1275_c00003{bottom:290.946667pt;}
.y2bd_c00003{bottom:290.986667pt;}
.y990_c00003{bottom:291.252533pt;}
.ybe1_c00003{bottom:291.253333pt;}
.y98_c00003{bottom:291.306667pt;}
.y11b2_c00003{bottom:291.386400pt;}
.y793_c00003{bottom:291.413333pt;}
.yc4e_c00003{bottom:291.466667pt;}
.y529_c00003{bottom:291.573333pt;}
.y4fb_c00003{bottom:291.733333pt;}
.y3ee_c00003{bottom:291.893333pt;}
.yf57_c00003{bottom:292.001853pt;}
.y3eb_c00003{bottom:292.053333pt;}
.ya3f_c00003{bottom:292.692933pt;}
.yf7a_c00003{bottom:292.800000pt;}
.yf84_c00003{bottom:292.800133pt;}
.ye58_c00003{bottom:292.906667pt;}
.yaf8_c00003{bottom:293.172267pt;}
.y837_c00003{bottom:293.653333pt;}
.y1204_c00003{bottom:293.664933pt;}
.y4fa_c00003{bottom:293.813333pt;}
.y3ed_c00003{bottom:293.973333pt;}
.yc6d_c00003{bottom:294.026667pt;}
.y664_c00003{bottom:294.133333pt;}
.y663_c00003{bottom:294.293333pt;}
.y129_c00003{bottom:294.666667pt;}
.y11ec_c00003{bottom:294.945067pt;}
.ya7b_c00003{bottom:295.092000pt;}
.yb27_c00003{bottom:295.092267pt;}
.y956_c00003{bottom:295.572000pt;}
.y8fc_c00003{bottom:295.572533pt;}
.y56c_c00003{bottom:295.733333pt;}
.y56b_c00003{bottom:295.893333pt;}
.yecd_c00003{bottom:296.266667pt;}
.ye99_c00003{bottom:296.267333pt;}
.y12d0_c00003{bottom:297.332000pt;}
.y10bb_c00003{bottom:297.370800pt;}
.y10c3_c00003{bottom:297.371467pt;}
.y10a4_c00003{bottom:297.371600pt;}
.y108a_c00003{bottom:297.372533pt;}
.y1059_c00003{bottom:297.373467pt;}
.ydfc_c00003{bottom:297.386667pt;}
.y9cd_c00003{bottom:297.492267pt;}
.ydfa_c00003{bottom:297.546667pt;}
.yb4f_c00003{bottom:297.653333pt;}
.y10e9_c00003{bottom:297.694267pt;}
.y11b7_c00003{bottom:297.695600pt;}
.y11bf_c00003{bottom:297.696800pt;}
.y48b_c00003{bottom:297.813333pt;}
.y489_c00003{bottom:297.973333pt;}
.y10ce_c00003{bottom:298.013733pt;}
.y1eb_c00003{bottom:298.346667pt;}
.yfdc_c00003{bottom:298.426533pt;}
.y1160_c00003{bottom:298.494267pt;}
.ydd3_c00003{bottom:298.509333pt;}
.yc83_c00003{bottom:298.826667pt;}
.ya0d_c00003{bottom:298.932267pt;}
.ycfe_c00003{bottom:299.106667pt;}
.y48a_c00003{bottom:299.893333pt;}
.y6e3_c00003{bottom:300.053333pt;}
.y273_c00003{bottom:300.266667pt;}
.y93c_c00003{bottom:300.372000pt;}
.y6f3_c00003{bottom:300.533333pt;}
.y1ec_c00003{bottom:300.746667pt;}
.y7c4_c00003{bottom:300.853333pt;}
.y333_c00003{bottom:300.906667pt;}
.y5f0_c00003{bottom:301.013333pt;}
.y27_c00003{bottom:301.068000pt;}
.y5ef_c00003{bottom:301.173333pt;}
.yf6f_c00003{bottom:301.347067pt;}
.yf36_c00003{bottom:301.374000pt;}
.yf68_c00003{bottom:301.374267pt;}
.yf58_c00003{bottom:301.375813pt;}
.y16a_c00003{bottom:301.386667pt;}
.yd24_c00003{bottom:301.509333pt;}
.y2ba_c00003{bottom:301.546667pt;}
.yf91_c00003{bottom:301.666000pt;}
.yf07_c00003{bottom:301.708080pt;}
.yccd_c00003{bottom:302.626667pt;}
.y274_c00003{bottom:302.666667pt;}
.y889_c00003{bottom:303.252000pt;}
.y334_c00003{bottom:303.306667pt;}
.y888_c00003{bottom:303.412000pt;}
.y100d_c00003{bottom:303.427467pt;}
.y1023_c00003{bottom:303.429867pt;}
.y104c_c00003{bottom:303.585733pt;}
.y2bb_c00003{bottom:303.948000pt;}
.y103a_c00003{bottom:304.092533pt;}
.y118a_c00003{bottom:304.094800pt;}
.yee0_c00003{bottom:304.109333pt;}
.yac7_c00003{bottom:304.211600pt;}
.y795_c00003{bottom:304.373333pt;}
.y104f_c00003{bottom:304.960000pt;}
.y8a9_c00003{bottom:305.013333pt;}
.yfff_c00003{bottom:305.506000pt;}
.y52a_c00003{bottom:305.653600pt;}
.y7fb_c00003{bottom:305.813333pt;}
.y79f_c00003{bottom:305.973333pt;}
.yc33_c00003{bottom:306.029333pt;}
.y11c6_c00003{bottom:306.266533pt;}
.y111b_c00003{bottom:306.266667pt;}
.y11d2_c00003{bottom:306.266800pt;}
.y1127_c00003{bottom:306.267867pt;}
.y1133_c00003{bottom:306.268133pt;}
.y11da_c00003{bottom:306.268267pt;}
.y113f_c00003{bottom:306.269467pt;}
.y114b_c00003{bottom:306.269733pt;}
.y1153_c00003{bottom:306.270933pt;}
.yfa9_c00003{bottom:306.372533pt;}
.yfb0_c00003{bottom:306.374000pt;}
.yfba_c00003{bottom:306.374933pt;}
.yfc4_c00003{bottom:306.375867pt;}
.yfce_c00003{bottom:306.376800pt;}
.y98f_c00003{bottom:306.612400pt;}
.y8c8_c00003{bottom:306.613333pt;}
.y1103_c00003{bottom:306.786267pt;}
.ye5_c00003{bottom:306.828000pt;}
.y127_c00003{bottom:307.306667pt;}
.y836_c00003{bottom:307.413333pt;}
.y835_c00003{bottom:307.573333pt;}
.y4f9_c00003{bottom:308.053333pt;}
.y3ea_c00003{bottom:308.213333pt;}
.y3e7_c00003{bottom:308.373333pt;}
.yaf7_c00003{bottom:308.532133pt;}
.y662_c00003{bottom:308.693333pt;}
.y661_c00003{bottom:308.853333pt;}
.ya3e_c00003{bottom:309.012667pt;}
.yfec_c00003{bottom:309.186133pt;}
.yc00_c00003{bottom:309.493333pt;}
.ybb_c00003{bottom:309.706667pt;}
.ye59_c00003{bottom:309.708267pt;}
.yb67_c00003{bottom:309.813333pt;}
.yf06_c00003{bottom:310.189333pt;}
.y56a_c00003{bottom:310.293333pt;}
.y569_c00003{bottom:310.453333pt;}
.y97_c00003{bottom:310.668000pt;}
.yb26_c00003{bottom:310.932000pt;}
.y1e9_c00003{bottom:310.986667pt;}
.yba2_c00003{bottom:311.253333pt;}
.y1249_c00003{bottom:311.266667pt;}
.yb24_c00003{bottom:311.411467pt;}
.ya7a_c00003{bottom:311.412000pt;}
.y1178_c00003{bottom:311.866400pt;}
.y1181_c00003{bottom:311.866933pt;}
.ya78_c00003{bottom:311.892000pt;}
.y8fb_c00003{bottom:311.892267pt;}
.ye3f_c00003{bottom:311.948400pt;}
.ye3d_c00003{bottom:311.949333pt;}
.ye25_c00003{bottom:312.108000pt;}
.y4f8_c00003{bottom:312.213333pt;}
.y3e8_c00003{bottom:312.373333pt;}
.y9cc_c00003{bottom:312.852133pt;}
.ybde_c00003{bottom:312.853333pt;}
.y271_c00003{bottom:312.906667pt;}
.ye98_c00003{bottom:313.067333pt;}
.y1ea_c00003{bottom:313.386667pt;}
.y331_c00003{bottom:313.546667pt;}
.y488_c00003{bottom:314.133333pt;}
.y2b9_c00003{bottom:314.186667pt;}
.y486_c00003{bottom:314.293333pt;}
.y12e8_c00003{bottom:314.669200pt;}
.ya0b_c00003{bottom:314.772000pt;}
.y1274_c00003{bottom:314.946667pt;}
.yfdb_c00003{bottom:315.226533pt;}
.ya0c_c00003{bottom:315.252000pt;}
.ya09_c00003{bottom:315.254667pt;}
.y272_c00003{bottom:315.308000pt;}
.y115f_c00003{bottom:315.360400pt;}
.y7c3_c00003{bottom:315.413333pt;}
.y5ee_c00003{bottom:315.573333pt;}
.yb25_c00003{bottom:315.732000pt;}
.y5ed_c00003{bottom:315.733333pt;}
.y332_c00003{bottom:315.948000pt;}
.ya79_c00003{bottom:316.212000pt;}
.yb4d_c00003{bottom:316.213333pt;}
.y169_c00003{bottom:316.588000pt;}
.y93b_c00003{bottom:316.692000pt;}
.yba3_c00003{bottom:316.853333pt;}
.y887_c00003{bottom:317.013333pt;}
.yd23_c00003{bottom:317.026667pt;}
.y939_c00003{bottom:317.172000pt;}
.y886_c00003{bottom:317.173333pt;}
.y5ad_c00003{bottom:317.333333pt;}
.yd77_c00003{bottom:317.386667pt;}
.y8b9_c00003{bottom:317.812000pt;}
.y76a_c00003{bottom:317.813333pt;}
.y8b8_c00003{bottom:317.972000pt;}
.y768_c00003{bottom:317.973333pt;}
.y487_c00003{bottom:318.293333pt;}
.ybdf_c00003{bottom:318.613333pt;}
.yf28_c00003{bottom:318.625733pt;}
.yf5a_c00003{bottom:318.626667pt;}
.y7fd_c00003{bottom:318.773333pt;}
.y7a1_c00003{bottom:318.933333pt;}
.yac6_c00003{bottom:319.092000pt;}
.yf39_c00003{bottom:319.360000pt;}
.ya0a_c00003{bottom:319.572000pt;}
.y6e2_c00003{bottom:319.573333pt;}
.y6e1_c00003{bottom:319.733333pt;}
.yba4_c00003{bottom:320.053333pt;}
.yf23_c00003{bottom:320.269333pt;}
.y7e9_c00003{bottom:320.374667pt;}
.y26_c00003{bottom:320.428000pt;}
.y6a6_c00003{bottom:320.534667pt;}
.ycfa_c00003{bottom:320.548000pt;}
.y1189_c00003{bottom:320.960933pt;}
.y625_c00003{bottom:321.174667pt;}
.y4f7_c00003{bottom:321.334667pt;}
.y93a_c00003{bottom:321.492000pt;}
.y3e6_c00003{bottom:321.494667pt;}
.y3e4_c00003{bottom:321.654667pt;}
.yc6c_c00003{bottom:321.708933pt;}
.yecb_c00003{bottom:321.709467pt;}
.ybe0_c00003{bottom:321.813333pt;}
.y98e_c00003{bottom:321.972267pt;}
.y769_c00003{bottom:321.974667pt;}
.y10bc_c00003{bottom:322.264000pt;}
.y10a5_c00003{bottom:322.264800pt;}
.y1073_c00003{bottom:322.265600pt;}
.y108b_c00003{bottom:322.265733pt;}
.y105a_c00003{bottom:322.266667pt;}
.y126_c00003{bottom:322.508000pt;}
.y10cf_c00003{bottom:322.946000pt;}
.yaf6_c00003{bottom:323.412000pt;}
.y4f6_c00003{bottom:323.413333pt;}
.y3e5_c00003{bottom:323.573333pt;}
.y1e7_c00003{bottom:323.625333pt;}
.yac5_c00003{bottom:323.892000pt;}
.yaf5_c00003{bottom:323.893600pt;}
.ydf9_c00003{bottom:323.949333pt;}
.ya3c_c00003{bottom:324.372000pt;}
.yb86_c00003{bottom:325.174667pt;}
.ydd2_c00003{bottom:325.229333pt;}
.ya3d_c00003{bottom:325.332000pt;}
.ya3a_c00003{bottom:325.332533pt;}
.y660_c00003{bottom:325.493333pt;}
.y26f_c00003{bottom:325.545333pt;}
.y65e_c00003{bottom:325.653333pt;}
.yba1_c00003{bottom:325.814667pt;}
.ybc0_c00003{bottom:325.974667pt;}
.y1e8_c00003{bottom:326.028000pt;}
.y32f_c00003{bottom:326.185333pt;}
.ye4_c00003{bottom:326.189333pt;}
.yc82_c00003{bottom:326.508933pt;}
.y100e_c00003{bottom:326.561333pt;}
.y1024_c00003{bottom:326.562667pt;}
.y863_c00003{bottom:326.774667pt;}
.y2b7_c00003{bottom:326.825333pt;}
.y73b_c00003{bottom:326.932000pt;}
.y568_c00003{bottom:327.093333pt;}
.y103b_c00003{bottom:327.198800pt;}
.y8f9_c00003{bottom:327.252000pt;}
.y566_c00003{bottom:327.253333pt;}
.y73d_c00003{bottom:327.412000pt;}
.y485_c00003{bottom:327.414667pt;}
.y483_c00003{bottom:327.574667pt;}
.yb23_c00003{bottom:327.731733pt;}
.y9cb_c00003{bottom:327.732000pt;}
.y270_c00003{bottom:327.948000pt;}
.ybff_c00003{bottom:328.054667pt;}
.y168_c00003{bottom:328.105333pt;}
.y955_c00003{bottom:328.211467pt;}
.y8fa_c00003{bottom:328.212000pt;}
.y9ca_c00003{bottom:328.212533pt;}
.y8f7_c00003{bottom:328.213067pt;}
.y330_c00003{bottom:328.588000pt;}
.y11f1_c00003{bottom:328.613867pt;}
.y1205_c00003{bottom:328.614267pt;}
.y120c_c00003{bottom:328.615067pt;}
.y1213_c00003{bottom:328.617067pt;}
.y121a_c00003{bottom:328.618000pt;}
.ya77_c00003{bottom:328.692000pt;}
.yba_c00003{bottom:329.069333pt;}
.ya3b_c00003{bottom:329.172000pt;}
.y2b8_c00003{bottom:329.228000pt;}
.y11ff_c00003{bottom:329.279600pt;}
.y484_c00003{bottom:329.493333pt;}
.y65f_c00003{bottom:329.654667pt;}
.y96_c00003{bottom:330.028000pt;}
.y5af_c00003{bottom:330.294667pt;}
.y567_c00003{bottom:331.254667pt;}
.ya08_c00003{bottom:331.574000pt;}
.y767_c00003{bottom:331.574667pt;}
.y766_c00003{bottom:331.734667pt;}
.yedf_c00003{bottom:331.790800pt;}
.y8f8_c00003{bottom:332.052000pt;}
.y7c2_c00003{bottom:332.213333pt;}
.y71c_c00003{bottom:332.372000pt;}
.y5ec_c00003{bottom:332.373333pt;}
.y71b_c00003{bottom:332.532000pt;}
.y5ea_c00003{bottom:332.533333pt;}
.y1106_c00003{bottom:332.986267pt;}
.y7eb_c00003{bottom:333.334667pt;}
.y6a8_c00003{bottom:333.494667pt;}
.y89c_c00003{bottom:333.811808pt;}
.y89f_c00003{bottom:333.812133pt;}
.y938_c00003{bottom:333.972000pt;}
.y125_c00003{bottom:334.025333pt;}
.y627_c00003{bottom:334.134667pt;}
.y6e0_c00003{bottom:334.294667pt;}
.yf9f_c00003{bottom:334.305733pt;}
.y6df_c00003{bottom:334.454667pt;}
.yfeb_c00003{bottom:334.466400pt;}
.yda7_c00003{bottom:334.670400pt;}
.yb4a_c00003{bottom:334.774667pt;}
.yac4_c00003{bottom:334.931867pt;}
.y12f9_c00003{bottom:335.149333pt;}
.y1248_c00003{bottom:335.266667pt;}
.ye56_c00003{bottom:335.309333pt;}
.y4f5_c00003{bottom:335.414667pt;}
.y3e3_c00003{bottom:335.574667pt;}
.y3e1_c00003{bottom:335.734667pt;}
.yd52_c00003{bottom:335.789600pt;}
.yc4d_c00003{bottom:335.949333pt;}
.y1e5_c00003{bottom:336.265333pt;}
.yf94_c00003{bottom:336.479600pt;}
.y5eb_c00003{bottom:336.534667pt;}
.y834_c00003{bottom:337.012000pt;}
.y833_c00003{bottom:337.172000pt;}
.y4a9_c00003{bottom:337.173333pt;}
.y98d_c00003{bottom:337.332133pt;}
.y11b3_c00003{bottom:337.373867pt;}
.y4f4_c00003{bottom:337.493333pt;}
.y3e2_c00003{bottom:337.653333pt;}
.ybc1_c00003{bottom:337.973333pt;}
.y26d_c00003{bottom:338.185333pt;}
.yd21_c00003{bottom:338.306667pt;}
.y1e6_c00003{bottom:338.668000pt;}
.ye95_c00003{bottom:338.668133pt;}
.yc6b_c00003{bottom:338.669333pt;}
.y32d_c00003{bottom:338.825333pt;}
.y1273_c00003{bottom:338.948000pt;}
.y866_c00003{bottom:339.094667pt;}
.y89d_c00003{bottom:339.252000pt;}
.yaf4_c00003{bottom:339.253467pt;}
.y65d_c00003{bottom:339.254667pt;}
.y76_c00003{bottom:339.320933pt;}
.y65c_c00003{bottom:339.414667pt;}
.y2b5_c00003{bottom:339.465333pt;}
.y439_c00003{bottom:339.573333pt;}
.ydf8_c00003{bottom:339.628000pt;}
.y25_c00003{bottom:339.788000pt;}
.y43d_c00003{bottom:340.053333pt;}
.y167_c00003{bottom:340.585333pt;}
.y26e_c00003{bottom:340.588000pt;}
.y10ea_c00003{bottom:340.774000pt;}
.y11b8_c00003{bottom:340.775333pt;}
.y10f2_c00003{bottom:340.775467pt;}
.y11c0_c00003{bottom:340.777067pt;}
.y792_c00003{bottom:340.853333pt;}
.y565_c00003{bottom:340.854667pt;}
.ydd1_c00003{bottom:340.909333pt;}
.y564_c00003{bottom:341.014667pt;}
.y32e_c00003{bottom:341.228000pt;}
.y794_c00003{bottom:341.333333pt;}
.y8a7_c00003{bottom:341.492000pt;}
.y482_c00003{bottom:341.494667pt;}
.ya39_c00003{bottom:341.652267pt;}
.y480_c00003{bottom:341.654667pt;}
.y2b6_c00003{bottom:341.868000pt;}
.y8a8_c00003{bottom:341.972000pt;}
.ye24_c00003{bottom:342.029333pt;}
.y129b_c00003{bottom:342.306667pt;}
.yccc_c00003{bottom:342.786667pt;}
.y1162_c00003{bottom:343.174400pt;}
.yc81_c00003{bottom:343.469333pt;}
.y9c9_c00003{bottom:343.572400pt;}
.y481_c00003{bottom:343.573333pt;}
.yb4c_c00003{bottom:343.574667pt;}
.yb85_c00003{bottom:343.734667pt;}
.yd76_c00003{bottom:343.789333pt;}
.yb22_c00003{bottom:344.052000pt;}
.y1114_c00003{bottom:344.224800pt;}
.yba0_c00003{bottom:344.374667pt;}
.yf7b_c00003{bottom:344.414000pt;}
.yf85_c00003{bottom:344.414133pt;}
.y954_c00003{bottom:344.531733pt;}
.y8f6_c00003{bottom:344.532800pt;}
.ya76_c00003{bottom:345.492000pt;}
.ye1_c00003{bottom:345.549333pt;}
.yc23_c00003{bottom:345.550933pt;}
.ybfe_c00003{bottom:345.814667pt;}
.y7c1_c00003{bottom:345.974667pt;}
.ye3c_c00003{bottom:346.029187pt;}
.y5e9_c00003{bottom:346.134667pt;}
.y5e8_c00003{bottom:346.294667pt;}
.y73a_c00003{bottom:346.454667pt;}
.y124_c00003{bottom:346.505333pt;}
.y739_c00003{bottom:346.614667pt;}
.yb4b_c00003{bottom:346.773333pt;}
.yecc_c00003{bottom:346.989200pt;}
.yec8_c00003{bottom:346.990667pt;}
.y10bd_c00003{bottom:347.197867pt;}
.y10a6_c00003{bottom:347.198667pt;}
.y108c_c00003{bottom:347.199600pt;}
.y105b_c00003{bottom:347.200533pt;}
.y10d0_c00003{bottom:347.865333pt;}
.ya07_c00003{bottom:347.893333pt;}
.yf22_c00003{bottom:347.950667pt;}
.y8c0_c00003{bottom:348.372133pt;}
.y8bd_c00003{bottom:348.372341pt;}
.y77c_c00003{bottom:348.373155pt;}
.y77f_c00003{bottom:348.373467pt;}
.yb9_c00003{bottom:348.428000pt;}
.y885_c00003{bottom:348.532133pt;}
.yede_c00003{bottom:348.750667pt;}
.y1e3_c00003{bottom:348.905333pt;}
.y6de_c00003{bottom:349.014667pt;}
.y6dd_c00003{bottom:349.174667pt;}
.y95_c00003{bottom:349.388000pt;}
.y89b_c00003{bottom:349.492000pt;}
.y4f3_c00003{bottom:349.494667pt;}
.y3e0_c00003{bottom:349.654667pt;}
.y100f_c00003{bottom:349.668133pt;}
.y1025_c00003{bottom:349.669467pt;}
.y3de_c00003{bottom:349.814667pt;}
.y1105_c00003{bottom:349.893600pt;}
.y89e_c00003{bottom:349.972000pt;}
.y832_c00003{bottom:350.134667pt;}
.yac3_c00003{bottom:350.291733pt;}
.y831_c00003{bottom:350.294667pt;}
.y103c_c00003{bottom:350.332667pt;}
.yc32_c00003{bottom:350.509333pt;}
.y937_c00003{bottom:350.772000pt;}
.y26b_c00003{bottom:350.825333pt;}
.y11c7_c00003{bottom:350.946800pt;}
.y111c_c00003{bottom:350.946933pt;}
.y11d3_c00003{bottom:350.947067pt;}
.y1128_c00003{bottom:350.948133pt;}
.y1134_c00003{bottom:350.948400pt;}
.y11db_c00003{bottom:350.948933pt;}
.y11e5_c00003{bottom:350.949467pt;}
.y1140_c00003{bottom:350.949733pt;}
.y114c_c00003{bottom:350.950000pt;}
.y1e4_c00003{bottom:351.308000pt;}
.y32b_c00003{bottom:351.465333pt;}
.y4f2_c00003{bottom:351.573333pt;}
.yffe_c00003{bottom:351.585733pt;}
.y98b_c00003{bottom:351.732000pt;}
.y3df_c00003{bottom:351.733333pt;}
.y1002_c00003{bottom:351.840000pt;}
.y2b3_c00003{bottom:352.105333pt;}
.ye54_c00003{bottom:352.109333pt;}
.y528_c00003{bottom:352.533333pt;}
.yb49_c00003{bottom:352.534667pt;}
.y98c_c00003{bottom:352.692000pt;}
.y98a_c00003{bottom:352.693600pt;}
.y52c_c00003{bottom:353.013333pt;}
.yfde_c00003{bottom:353.054133pt;}
.y166_c00003{bottom:353.225333pt;}
.y26c_c00003{bottom:353.228000pt;}
.yf93_c00003{bottom:353.279600pt;}
.y8be_c00003{bottom:353.812000pt;}
.y77d_c00003{bottom:353.813333pt;}
.y65b_c00003{bottom:353.814667pt;}
.y32c_c00003{bottom:353.868000pt;}
.y65a_c00003{bottom:353.974667pt;}
.y2b4_c00003{bottom:354.508000pt;}
.yaf3_c00003{bottom:354.613333pt;}
.yf05_c00003{bottom:354.669333pt;}
.y7fa_c00003{bottom:355.253333pt;}
.y803_c00003{bottom:355.412000pt;}
.y79e_c00003{bottom:355.413333pt;}
.y563_c00003{bottom:355.414667pt;}
.ye94_c00003{bottom:355.469733pt;}
.yeca_c00003{bottom:355.470400pt;}
.y12ce_c00003{bottom:355.572000pt;}
.y47f_c00003{bottom:355.574667pt;}
.y7fc_c00003{bottom:355.733333pt;}
.y47d_c00003{bottom:355.734667pt;}
.y75_c00003{bottom:355.800667pt;}
.y804_c00003{bottom:355.892000pt;}
.y7a0_c00003{bottom:355.893333pt;}
.y8c7_c00003{bottom:356.052000pt;}
.y678_c00003{bottom:356.053467pt;}
.y675_c00003{bottom:356.053675pt;}
.ye57_c00003{bottom:356.429600pt;}
.y8c9_c00003{bottom:356.532000pt;}
.ye23_c00003{bottom:357.549333pt;}
.y47e_c00003{bottom:357.653333pt;}
.y57e_c00003{bottom:357.653467pt;}
.ya38_c00003{bottom:357.972000pt;}
.ydf6_c00003{bottom:358.188000pt;}
.y12cd_c00003{bottom:358.451600pt;}
.y12cf_c00003{bottom:358.452000pt;}
.ye3b_c00003{bottom:358.669333pt;}
.y9c8_c00003{bottom:358.932267pt;}
.y123_c00003{bottom:359.145333pt;}
.y24_c00003{bottom:359.149333pt;}
.y1247_c00003{bottom:359.266667pt;}
.ydcf_c00003{bottom:359.469333pt;}
.yf9e_c00003{bottom:359.585467pt;}
.yd75_c00003{bottom:359.628000pt;}
.y1161_c00003{bottom:360.026533pt;}
.yb21_c00003{bottom:360.372267pt;}
.y791_c00003{bottom:360.374667pt;}
.y118b_c00003{bottom:360.454667pt;}
.y70e_c00003{bottom:360.533333pt;}
.y790_c00003{bottom:360.534667pt;}
.ycf9_c00003{bottom:360.548000pt;}
.y5e7_c00003{bottom:360.694667pt;}
.y953_c00003{bottom:360.852000pt;}
.y8f5_c00003{bottom:360.852533pt;}
.y5e6_c00003{bottom:360.854667pt;}
.yfaa_c00003{bottom:360.985600pt;}
.yfa3_c00003{bottom:360.986000pt;}
.yfb1_c00003{bottom:360.986533pt;}
.yfbb_c00003{bottom:360.987467pt;}
.yfc5_c00003{bottom:360.988400pt;}
.yfcf_c00003{bottom:360.989333pt;}
.y70f_c00003{bottom:361.013333pt;}
.y738_c00003{bottom:361.014667pt;}
.y737_c00003{bottom:361.174667pt;}
.yda6_c00003{bottom:361.390667pt;}
.y676_c00003{bottom:361.493333pt;}
.yb84_c00003{bottom:361.494667pt;}
.y1e1_c00003{bottom:361.545333pt;}
.ya75_c00003{bottom:362.292000pt;}
.ybbf_c00003{bottom:362.294667pt;}
.yd51_c00003{bottom:362.509333pt;}
.y7cc_c00003{bottom:362.772667pt;}
.y7ce_c00003{bottom:362.773067pt;}
.y721_c00003{bottom:362.931821pt;}
.y724_c00003{bottom:362.932133pt;}
.y605_c00003{bottom:362.933467pt;}
.y602_c00003{bottom:362.933675pt;}
.yb9d_c00003{bottom:362.934667pt;}
.y1272_c00003{bottom:362.948000pt;}
.y884_c00003{bottom:363.092000pt;}
.y8b7_c00003{bottom:363.092133pt;}
.y57f_c00003{bottom:363.093333pt;}
.y765_c00003{bottom:363.093467pt;}
.y269_c00003{bottom:363.465333pt;}
.y830_c00003{bottom:363.894667pt;}
.y1e2_c00003{bottom:363.948000pt;}
.ye96_c00003{bottom:363.948400pt;}
.ye91_c00003{bottom:363.949333pt;}
.y8bc_c00003{bottom:364.052000pt;}
.y77b_c00003{bottom:364.053333pt;}
.y82f_c00003{bottom:364.054667pt;}
.yccb_c00003{bottom:364.066667pt;}
.y329_c00003{bottom:364.105333pt;}
.ya06_c00003{bottom:364.212667pt;}
.yf74_c00003{bottom:364.224800pt;}
.ybfd_c00003{bottom:364.374667pt;}
.y8bf_c00003{bottom:364.532000pt;}
.y77e_c00003{bottom:364.533333pt;}
.ybdb_c00003{bottom:364.534667pt;}
.y2b1_c00003{bottom:364.745333pt;}
.yf21_c00003{bottom:364.750667pt;}
.ye0_c00003{bottom:364.909333pt;}
.yac2_c00003{bottom:365.651600pt;}
.y165_c00003{bottom:365.865333pt;}
.y26a_c00003{bottom:365.868000pt;}
.y848_c00003{bottom:365.972267pt;}
.y845_c00003{bottom:365.972371pt;}
.y4e8_c00003{bottom:365.973200pt;}
.y4f1_c00003{bottom:365.973333pt;}
.y6db_c00003{bottom:366.133333pt;}
.y3d3_c00003{bottom:366.133600pt;}
.y3dd_c00003{bottom:366.133733pt;}
.y3db_c00003{bottom:366.136867pt;}
.y129a_c00003{bottom:366.306667pt;}
.yc6a_c00003{bottom:366.350667pt;}
.y4e9_c00003{bottom:366.453347pt;}
.y4eb_c00003{bottom:366.453747pt;}
.y4ed_c00003{bottom:366.454147pt;}
.y4ef_c00003{bottom:366.454547pt;}
.y32a_c00003{bottom:366.508000pt;}
.y5ac_c00003{bottom:366.773333pt;}
.y2b2_c00003{bottom:367.148000pt;}
.y5b4_c00003{bottom:367.253333pt;}
.y3d4_c00003{bottom:367.253867pt;}
.y3d6_c00003{bottom:367.254800pt;}
.y3d8_c00003{bottom:367.255733pt;}
.y3da_c00003{bottom:367.256667pt;}
.y936_c00003{bottom:367.572000pt;}
.yb8_c00003{bottom:367.788000pt;}
.y989_c00003{bottom:368.053467pt;}
.y722_c00003{bottom:368.372000pt;}
.y603_c00003{bottom:368.373333pt;}
.y94_c00003{bottom:368.749333pt;}
.ye55_c00003{bottom:369.069733pt;}
.y4a8_c00003{bottom:369.494667pt;}
.y1113_c00003{bottom:369.505067pt;}
.y4a6_c00003{bottom:369.654667pt;}
.y7e8_c00003{bottom:369.813333pt;}
.yfdd_c00003{bottom:369.854133pt;}
.yaf2_c00003{bottom:369.973200pt;}
.y6a5_c00003{bottom:369.973333pt;}
.ydf7_c00003{bottom:370.189333pt;}
.y7ea_c00003{bottom:370.293333pt;}
.y6dc_c00003{bottom:370.294667pt;}
.y6a7_c00003{bottom:370.453333pt;}
.y624_c00003{bottom:370.613333pt;}
.y659_c00003{bottom:370.772933pt;}
.yc22_c00003{bottom:370.830667pt;}
.y626_c00003{bottom:371.093333pt;}
.yb48_c00003{bottom:371.094667pt;}
.yc80_c00003{bottom:371.149333pt;}
.y846_c00003{bottom:371.252000pt;}
.ydd0_c00003{bottom:371.469333pt;}
.y4a7_c00003{bottom:371.573333pt;}
.y674_c00003{bottom:371.733333pt;}
.yb9f_c00003{bottom:371.734667pt;}
.y122_c00003{bottom:371.785333pt;}
.y12ba_c00003{bottom:371.906267pt;}
.y475_c00003{bottom:372.053200pt;}
.y47c_c00003{bottom:372.053333pt;}
.y10c4_c00003{bottom:372.131333pt;}
.y10be_c00003{bottom:372.131733pt;}
.y10a7_c00003{bottom:372.132533pt;}
.y108d_c00003{bottom:372.133467pt;}
.y105c_c00003{bottom:372.134400pt;}
.y677_c00003{bottom:372.213333pt;}
.ye93_c00003{bottom:372.269733pt;}
.yec9_c00003{bottom:372.270400pt;}
.y74_c00003{bottom:372.280400pt;}
.y562_c00003{bottom:372.372933pt;}
.y47a_c00003{bottom:372.531760pt;}
.y478_c00003{bottom:372.532293pt;}
.y476_c00003{bottom:372.532827pt;}
.y1010_c00003{bottom:372.775467pt;}
.y10d1_c00003{bottom:372.799733pt;}
.y438_c00003{bottom:373.014667pt;}
.y436_c00003{bottom:373.174667pt;}
.y580_c00003{bottom:373.333333pt;}
.ybdd_c00003{bottom:373.334667pt;}
.y103d_c00003{bottom:373.438933pt;}
.y862_c00003{bottom:373.652000pt;}
.y57d_c00003{bottom:373.813333pt;}
.y865_c00003{bottom:374.132000pt;}
.y1df_c00003{bottom:374.185333pt;}
.ya37_c00003{bottom:374.291733pt;}
.y9c7_c00003{bottom:374.292133pt;}
.y7f9_c00003{bottom:374.774667pt;}
.yb9e_c00003{bottom:374.933333pt;}
.y78f_c00003{bottom:374.934667pt;}
.y437_c00003{bottom:375.093333pt;}
.y78e_c00003{bottom:375.094667pt;}
.y736_c00003{bottom:375.574667pt;}
.y735_c00003{bottom:375.734667pt;}
.y12ed_c00003{bottom:375.789333pt;}
.ydf5_c00003{bottom:375.949333pt;}
.y1108_c00003{bottom:376.094133pt;}
.y267_c00003{bottom:376.105333pt;}
.yb1f_c00003{bottom:376.212000pt;}
.yedd_c00003{bottom:376.430667pt;}
.ybdc_c00003{bottom:376.533333pt;}
.y1e0_c00003{bottom:376.588000pt;}
.yb20_c00003{bottom:376.692000pt;}
.y883_c00003{bottom:376.694667pt;}
.y327_c00003{bottom:376.745333pt;}
.y882_c00003{bottom:376.854667pt;}
.yda5_c00003{bottom:377.069333pt;}
.y8f4_c00003{bottom:377.172267pt;}
.y2af_c00003{bottom:377.385333pt;}
.y7c0_c00003{bottom:377.494533pt;}
.y71a_c00003{bottom:377.651600pt;}
.y8b6_c00003{bottom:377.652000pt;}
.y764_c00003{bottom:377.653333pt;}
.y5e5_c00003{bottom:377.653467pt;}
.yd73_c00003{bottom:378.028000pt;}
.yd50_c00003{bottom:378.188000pt;}
.y7cb_c00003{bottom:378.453333pt;}
.yd20_c00003{bottom:378.466667pt;}
.y164_c00003{bottom:378.505333pt;}
.y268_c00003{bottom:378.508000pt;}
.y23_c00003{bottom:378.509333pt;}
.y720_c00003{bottom:378.612000pt;}
.y601_c00003{bottom:378.613333pt;}
.y12cc_c00003{bottom:378.931867pt;}
.y723_c00003{bottom:379.092000pt;}
.y604_c00003{bottom:379.093333pt;}
.y328_c00003{bottom:379.148000pt;}
.ye22_c00003{bottom:379.150667pt;}
.y7cd_c00003{bottom:379.253333pt;}
.y4f0_c00003{bottom:379.574667pt;}
.y12e7_c00003{bottom:379.629067pt;}
.y2b0_c00003{bottom:379.788000pt;}
.y82e_c00003{bottom:379.892133pt;}
.y6da_c00003{bottom:379.894667pt;}
.y4e7_c00003{bottom:380.053467pt;}
.y6d9_c00003{bottom:380.054667pt;}
.y3d2_c00003{bottom:380.213333pt;}
.y70d_c00003{bottom:380.214667pt;}
.y70c_c00003{bottom:380.374667pt;}
.ya05_c00003{bottom:380.532000pt;}
.y4ea_c00003{bottom:380.534013pt;}
.y4ec_c00003{bottom:380.534413pt;}
.y4ee_c00003{bottom:380.534813pt;}
.yc4c_c00003{bottom:380.589333pt;}
.yb9c_c00003{bottom:380.694667pt;}
.yfea_c00003{bottom:380.706533pt;}
.y844_c00003{bottom:380.852000pt;}
.yac1_c00003{bottom:381.012000pt;}
.yd72_c00003{bottom:381.230667pt;}
.y3d5_c00003{bottom:381.334533pt;}
.y3d7_c00003{bottom:381.335467pt;}
.y3d9_c00003{bottom:381.336400pt;}
.y847_c00003{bottom:381.492000pt;}
.yff7_c00003{bottom:381.920000pt;}
.y3dc_c00003{bottom:381.973333pt;}
.ycf8_c00003{bottom:381.986667pt;}
.ybda_c00003{bottom:382.294667pt;}
.ybfc_c00003{bottom:382.774667pt;}
.yc69_c00003{bottom:383.150667pt;}
.y1246_c00003{bottom:383.266667pt;}
.ya74_c00003{bottom:383.412000pt;}
.y988_c00003{bottom:383.413333pt;}
.y527_c00003{bottom:383.414667pt;}
.y4a5_c00003{bottom:383.574667pt;}
.y4a3_c00003{bottom:383.734667pt;}
.y10eb_c00003{bottom:383.867200pt;}
.y10f3_c00003{bottom:383.867600pt;}
.y11b9_c00003{bottom:383.868000pt;}
.y11c1_c00003{bottom:383.869733pt;}
.y933_c00003{bottom:383.892000pt;}
.ybbd_c00003{bottom:383.893333pt;}
.ydf_c00003{bottom:384.269333pt;}
.y935_c00003{bottom:384.372000pt;}
.y121_c00003{bottom:384.425333pt;}
.y1319_c00003{bottom:384.750000pt;}
.yaf1_c00003{bottom:384.852000pt;}
.yac0_c00003{bottom:385.332000pt;}
.y658_c00003{bottom:385.333333pt;}
.ycca_c00003{bottom:385.348000pt;}
.y526_c00003{bottom:385.493333pt;}
.y4a4_c00003{bottom:385.653333pt;}
.y47b_c00003{bottom:385.654667pt;}
.y474_c00003{bottom:386.133467pt;}
.y5ab_c00003{bottom:386.294667pt;}
.y5aa_c00003{bottom:386.454667pt;}
.y479_c00003{bottom:386.612027pt;}
.y477_c00003{bottom:386.612560pt;}
.y1dd_c00003{bottom:386.825333pt;}
.yd78_c00003{bottom:386.828000pt;}
.y561_c00003{bottom:386.933333pt;}
.y1271_c00003{bottom:386.948000pt;}
.y435_c00003{bottom:387.094667pt;}
.yb7_c00003{bottom:387.149333pt;}
.y433_c00003{bottom:387.254667pt;}
.y1164_c00003{bottom:387.840533pt;}
.yc7f_c00003{bottom:387.949333pt;}
.yf96_c00003{bottom:388.066000pt;}
.y93_c00003{bottom:388.109333pt;}
.y934_c00003{bottom:388.692000pt;}
.y265_c00003{bottom:388.745333pt;}
.y73_c00003{bottom:388.760133pt;}
.yb66_c00003{bottom:388.854667pt;}
.y9c4_c00003{bottom:389.172000pt;}
.y434_c00003{bottom:389.173333pt;}
.yb1e_c00003{bottom:389.174667pt;}
.y1de_c00003{bottom:389.228000pt;}
.ye92_c00003{bottom:389.229600pt;}
.y7e7_c00003{bottom:389.334667pt;}
.y325_c00003{bottom:389.385333pt;}
.y6a4_c00003{bottom:389.494667pt;}
.yf73_c00003{bottom:389.505067pt;}
.y9c6_c00003{bottom:389.652000pt;}
.y6a3_c00003{bottom:389.654667pt;}
.y2ad_c00003{bottom:390.025333pt;}
.yd74_c00003{bottom:390.029333pt;}
.y623_c00003{bottom:390.134667pt;}
.y622_c00003{bottom:390.294667pt;}
.y1299_c00003{bottom:390.306667pt;}
.ya36_c00003{bottom:390.612000pt;}
.y266_c00003{bottom:391.148000pt;}
.y763_c00003{bottom:391.254667pt;}
.y762_c00003{bottom:391.414667pt;}
.y326_c00003{bottom:391.788000pt;}
.y7bf_c00003{bottom:392.053333pt;}
.y861_c00003{bottom:392.054667pt;}
.y719_c00003{bottom:392.212000pt;}
.y5e4_c00003{bottom:392.213333pt;}
.y860_c00003{bottom:392.214667pt;}
.y2ae_c00003{bottom:392.428000pt;}
.yf20_c00003{bottom:392.430667pt;}
.y951_c00003{bottom:392.532000pt;}
.ybbe_c00003{bottom:392.693333pt;}
.y1107_c00003{bottom:392.960800pt;}
.ya04_c00003{bottom:393.014667pt;}
.yedc_c00003{bottom:393.230667pt;}
.y881_c00003{bottom:393.492000pt;}
.y82d_c00003{bottom:393.652000pt;}
.y163_c00003{bottom:393.708000pt;}
.ye21_c00003{bottom:393.709333pt;}
.y9c5_c00003{bottom:393.972000pt;}
.ya35_c00003{bottom:394.452000pt;}
.ye52_c00003{bottom:394.508933pt;}
.ydf4_c00003{bottom:394.509333pt;}
.y6d8_c00003{bottom:394.614667pt;}
.y6d7_c00003{bottom:394.774667pt;}
.y70b_c00003{bottom:394.934667pt;}
.yc31_c00003{bottom:394.990667pt;}
.y70a_c00003{bottom:395.094667pt;}
.y4e6_c00003{bottom:395.413333pt;}
.yda4_c00003{bottom:395.469333pt;}
.y4e3_c00003{bottom:395.572933pt;}
.y4e5_c00003{bottom:395.573333pt;}
.y11c8_c00003{bottom:395.614000pt;}
.y111d_c00003{bottom:395.614667pt;}
.y1129_c00003{bottom:395.615867pt;}
.y1135_c00003{bottom:395.616133pt;}
.y11dc_c00003{bottom:395.616667pt;}
.y11e6_c00003{bottom:395.617200pt;}
.y1141_c00003{bottom:395.617467pt;}
.y114d_c00003{bottom:395.617733pt;}
.yd71_c00003{bottom:395.788000pt;}
.y1011_c00003{bottom:395.908267pt;}
.y1026_c00003{bottom:395.909600pt;}
.yf7c_c00003{bottom:396.000000pt;}
.yf86_c00003{bottom:396.000133pt;}
.y355_c00003{bottom:396.464000pt;}
.y344_c00003{bottom:396.465333pt;}
.y103e_c00003{bottom:396.572267pt;}
.yd4e_c00003{bottom:396.749333pt;}
.yb1c_c00003{bottom:396.849200pt;}
.y6f0_c00003{bottom:396.853200pt;}
.y3d1_c00003{bottom:397.013333pt;}
.y10bf_c00003{bottom:397.051467pt;}
.y10a8_c00003{bottom:397.052267pt;}
.y108e_c00003{bottom:397.053200pt;}
.y1074_c00003{bottom:397.053733pt;}
.y105d_c00003{bottom:397.054133pt;}
.y3ce_c00003{bottom:397.172933pt;}
.y3d0_c00003{bottom:397.173333pt;}
.y952_c00003{bottom:397.332000pt;}
.y931_c00003{bottom:397.334667pt;}
.y525_c00003{bottom:397.494667pt;}
.y4a2_c00003{bottom:397.654667pt;}
.y10d2_c00003{bottom:397.733067pt;}
.y12cb_c00003{bottom:397.812133pt;}
.y4a0_c00003{bottom:397.814667pt;}
.y22_c00003{bottom:397.869333pt;}
.yec6_c00003{bottom:397.870533pt;}
.ybbc_c00003{bottom:398.454667pt;}
.y12b9_c00003{bottom:398.466667pt;}
.yb82_c00003{bottom:398.614667pt;}
.yda3_c00003{bottom:398.669333pt;}
.y987_c00003{bottom:398.773200pt;}
.y657_c00003{bottom:398.934667pt;}
.y656_c00003{bottom:399.094667pt;}
.yb9b_c00003{bottom:399.254667pt;}
.yf04_c00003{bottom:399.310667pt;}
.y1db_c00003{bottom:399.465333pt;}
.y524_c00003{bottom:399.573333pt;}
.y4e4_c00003{bottom:399.574667pt;}
.y120_c00003{bottom:399.628000pt;}
.ya70_c00003{bottom:399.732000pt;}
.y4a1_c00003{bottom:399.733333pt;}
.yd1f_c00003{bottom:399.748000pt;}
.ya72_c00003{bottom:400.212000pt;}
.yabd_c00003{bottom:400.212533pt;}
.y560_c00003{bottom:400.534667pt;}
.ya01_c00003{bottom:400.690267pt;}
.yabe_c00003{bottom:400.692000pt;}
.y55f_c00003{bottom:400.694667pt;}
.y5a9_c00003{bottom:400.854667pt;}
.y5a8_c00003{bottom:401.014667pt;}
.ya02_c00003{bottom:401.172000pt;}
.y3cf_c00003{bottom:401.174667pt;}
.y431_c00003{bottom:401.334667pt;}
.y263_c00003{bottom:401.385333pt;}
.y473_c00003{bottom:401.493333pt;}
.yb1d_c00003{bottom:401.652000pt;}
.y472_c00003{bottom:401.653333pt;}
.y470_c00003{bottom:401.653467pt;}
.y9c2_c00003{bottom:401.654667pt;}
.y1dc_c00003{bottom:401.868000pt;}
.y323_c00003{bottom:402.025333pt;}
.y6f1_c00003{bottom:402.453333pt;}
.y1220_c00003{bottom:402.538533pt;}
.y2ab_c00003{bottom:402.665333pt;}
.ya34_c00003{bottom:403.094667pt;}
.y432_c00003{bottom:403.253333pt;}
.ycf7_c00003{bottom:403.266667pt;}
.yde_c00003{bottom:403.628000pt;}
.y264_c00003{bottom:403.788000pt;}
.y7e6_c00003{bottom:403.894667pt;}
.y6a2_c00003{bottom:404.054667pt;}
.y6a1_c00003{bottom:404.214667pt;}
.y324_c00003{bottom:404.428000pt;}
.ya71_c00003{bottom:404.532000pt;}
.yaef_c00003{bottom:404.532533pt;}
.y621_c00003{bottom:404.694667pt;}
.y1163_c00003{bottom:404.706667pt;}
.y620_c00003{bottom:404.854667pt;}
.yf95_c00003{bottom:404.866000pt;}
.y92e_c00003{bottom:405.012000pt;}
.yabf_c00003{bottom:405.014667pt;}
.y2ac_c00003{bottom:405.068000pt;}
.y11f2_c00003{bottom:405.186267pt;}
.y11f8_c00003{bottom:405.186800pt;}
.y1206_c00003{bottom:405.187200pt;}
.y120d_c00003{bottom:405.188000pt;}
.y1214_c00003{bottom:405.189467pt;}
.y121b_c00003{bottom:405.190400pt;}
.y162_c00003{bottom:405.225333pt;}
.ye3a_c00003{bottom:405.229173pt;}
.y72_c00003{bottom:405.239867pt;}
.y930_c00003{bottom:405.492000pt;}
.ya03_c00003{bottom:405.494667pt;}
.y471_c00003{bottom:405.654667pt;}
.yf9d_c00003{bottom:405.665733pt;}
.y5e3_c00003{bottom:405.814667pt;}
.y1200_c00003{bottom:405.853600pt;}
.y5e2_c00003{bottom:405.974667pt;}
.ya73_c00003{bottom:406.452000pt;}
.yb6_c00003{bottom:406.509333pt;}
.y82c_c00003{bottom:406.614667pt;}
.y82b_c00003{bottom:406.774667pt;}
.ycc9_c00003{bottom:406.786667pt;}
.yfa0_c00003{bottom:406.880000pt;}
.y880_c00003{bottom:407.254667pt;}
.y1245_c00003{bottom:407.266667pt;}
.y87f_c00003{bottom:407.414667pt;}
.y92_c00003{bottom:407.469333pt;}
.yfe0_c00003{bottom:407.654133pt;}
.y8b5_c00003{bottom:408.052000pt;}
.y761_c00003{bottom:408.053333pt;}
.yb47_c00003{bottom:408.054667pt;}
.y8b4_c00003{bottom:408.212000pt;}
.y75f_c00003{bottom:408.213333pt;}
.yd4f_c00003{bottom:408.750667pt;}
.y9bf_c00003{bottom:408.853067pt;}
.yf1f_c00003{bottom:409.230667pt;}
.y9c0_c00003{bottom:409.332000pt;}
.yaf0_c00003{bottom:409.334667pt;}
.y709_c00003{bottom:409.654667pt;}
.y92f_c00003{bottom:409.812000pt;}
.y708_c00003{bottom:409.814667pt;}
.yc21_c00003{bottom:410.189333pt;}
.ya31_c00003{bottom:410.293733pt;}
.yb83_c00003{bottom:410.613333pt;}
.ya33_c00003{bottom:410.772000pt;}
.yc68_c00003{bottom:410.829333pt;}
.y4e2_c00003{bottom:410.933333pt;}
.y1270_c00003{bottom:410.948000pt;}
.y4e0_c00003{bottom:411.093333pt;}
.y11f_c00003{bottom:411.145333pt;}
.ye50_c00003{bottom:411.469333pt;}
.y523_c00003{bottom:411.574667pt;}
.y932_c00003{bottom:411.732000pt;}
.y6d6_c00003{bottom:411.734000pt;}
.y49f_c00003{bottom:411.734667pt;}
.y49d_c00003{bottom:411.894667pt;}
.y1d9_c00003{bottom:412.105333pt;}
.y760_c00003{bottom:412.214667pt;}
.ye20_c00003{bottom:412.269333pt;}
.y3cd_c00003{bottom:412.533333pt;}
.y3cb_c00003{bottom:412.693333pt;}
.ydf3_c00003{bottom:413.069333pt;}
.y984_c00003{bottom:413.172000pt;}
.y8ef_c00003{bottom:413.173333pt;}
.yda2_c00003{bottom:413.228000pt;}
.y6f2_c00003{bottom:413.493333pt;}
.y8f1_c00003{bottom:413.652000pt;}
.y522_c00003{bottom:413.653333pt;}
.y9c1_c00003{bottom:413.654667pt;}
.y49e_c00003{bottom:413.813333pt;}
.y261_c00003{bottom:414.025333pt;}
.y986_c00003{bottom:414.132000pt;}
.ydce_c00003{bottom:414.188000pt;}
.y1298_c00003{bottom:414.306667pt;}
.yd70_c00003{bottom:414.349333pt;}
.y1da_c00003{bottom:414.508000pt;}
.yd4d_c00003{bottom:414.509333pt;}
.y321_c00003{bottom:414.665333pt;}
.ye90_c00003{bottom:414.669467pt;}
.yec5_c00003{bottom:414.670533pt;}
.ya32_c00003{bottom:415.092000pt;}
.y4e1_c00003{bottom:415.094667pt;}
.y430_c00003{bottom:415.254667pt;}
.y2a9_c00003{bottom:415.305333pt;}
.y42e_c00003{bottom:415.414667pt;}
.y5a7_c00003{bottom:415.574667pt;}
.yfab_c00003{bottom:415.585600pt;}
.y1112_c00003{bottom:415.585733pt;}
.yfb2_c00003{bottom:415.586533pt;}
.yfbc_c00003{bottom:415.587467pt;}
.yfc6_c00003{bottom:415.588400pt;}
.yfd0_c00003{bottom:415.589333pt;}
.ye53_c00003{bottom:415.629200pt;}
.yc7e_c00003{bottom:415.629333pt;}
.y655_c00003{bottom:415.733333pt;}
.y653_c00003{bottom:415.893333pt;}
.yb81_c00003{bottom:416.214667pt;}
.y262_c00003{bottom:416.428000pt;}
.y3cc_c00003{bottom:416.694667pt;}
.y1115_c00003{bottom:416.960000pt;}
.y46f_c00003{bottom:417.013333pt;}
.ybbb_c00003{bottom:417.014667pt;}
.y322_c00003{bottom:417.068000pt;}
.y46d_c00003{bottom:417.173333pt;}
.y21_c00003{bottom:417.228000pt;}
.y42f_c00003{bottom:417.333333pt;}
.yb1b_c00003{bottom:417.490400pt;}
.y985_c00003{bottom:417.492000pt;}
.y55d_c00003{bottom:417.493333pt;}
.yb9a_c00003{bottom:417.654667pt;}
.y161_c00003{bottom:417.705333pt;}
.y2aa_c00003{bottom:417.708000pt;}
.ye39_c00003{bottom:417.869333pt;}
.y8f0_c00003{bottom:417.972000pt;}
.y8f2_c00003{bottom:417.974667pt;}
.y7e5_c00003{bottom:418.454667pt;}
.y6a0_c00003{bottom:418.614667pt;}
.y69f_c00003{bottom:418.774667pt;}
.y1012_c00003{bottom:419.015600pt;}
.y1027_c00003{bottom:419.016933pt;}
.y110a_c00003{bottom:419.173333pt;}
.y61f_c00003{bottom:419.254667pt;}
.y61e_c00003{bottom:419.414667pt;}
.y85f_c00003{bottom:419.574667pt;}
.y103f_c00003{bottom:419.679067pt;}
.y85e_c00003{bottom:419.734667pt;}
.yabc_c00003{bottom:419.892267pt;}
.y654_c00003{bottom:419.894667pt;}
.yedb_c00003{bottom:420.909333pt;}
.yd1e_c00003{bottom:421.026667pt;}
.y46e_c00003{bottom:421.174667pt;}
.ya00_c00003{bottom:421.330400pt;}
.ya6f_c00003{bottom:421.332000pt;}
.y55e_c00003{bottom:421.494667pt;}
.y71_c00003{bottom:421.719600pt;}
.y75e_c00003{bottom:421.814667pt;}
.y75d_c00003{bottom:421.974667pt;}
.y10a9_c00003{bottom:421.984533pt;}
.y108f_c00003{bottom:421.985467pt;}
.y1075_c00003{bottom:421.986000pt;}
.y105e_c00003{bottom:421.986400pt;}
.y12b8_c00003{bottom:422.148000pt;}
.y82a_c00003{bottom:422.452000pt;}
.y7be_c00003{bottom:422.453333pt;}
.y718_c00003{bottom:422.612000pt;}
.y5e1_c00003{bottom:422.613333pt;}
.y10d3_c00003{bottom:422.652800pt;}
.y717_c00003{bottom:422.772000pt;}
.y5df_c00003{bottom:422.773333pt;}
.ydd_c00003{bottom:422.988000pt;}
.yec2_c00003{bottom:423.150667pt;}
.yec7_c00003{bottom:423.151200pt;}
.y11e_c00003{bottom:423.625333pt;}
.yaee_c00003{bottom:424.212800pt;}
.y4df_c00003{bottom:424.214667pt;}
.y4dd_c00003{bottom:424.374667pt;}
.y347_c00003{bottom:424.417333pt;}
.yfdf_c00003{bottom:424.454133pt;}
.y707_c00003{bottom:424.534667pt;}
.ycf6_c00003{bottom:424.548000pt;}
.y1d7_c00003{bottom:424.745333pt;}
.yc4b_c00003{bottom:425.070667pt;}
.y521_c00003{bottom:425.654667pt;}
.y3ca_c00003{bottom:425.814667pt;}
.yb5_c00003{bottom:425.869333pt;}
.y3c8_c00003{bottom:425.974667pt;}
.y358_c00003{bottom:426.013333pt;}
.y4de_c00003{bottom:426.293333pt;}
.y6d5_c00003{bottom:426.453333pt;}
.y829_c00003{bottom:426.454667pt;}
.y92d_c00003{bottom:426.612000pt;}
.yb46_c00003{bottom:426.614667pt;}
.y25f_c00003{bottom:426.665333pt;}
.y5e0_c00003{bottom:426.774667pt;}
.y91_c00003{bottom:426.828000pt;}
.y10ec_c00003{bottom:426.947467pt;}
.y10f4_c00003{bottom:426.947867pt;}
.y11ba_c00003{bottom:426.948667pt;}
.y11c2_c00003{bottom:426.950000pt;}
.y1d8_c00003{bottom:427.148000pt;}
.y31f_c00003{bottom:427.305333pt;}
.yc67_c00003{bottom:427.629333pt;}
.y520_c00003{bottom:427.733333pt;}
.y3c9_c00003{bottom:427.893333pt;}
.y2a7_c00003{bottom:427.945333pt;}
.ycc8_c00003{bottom:428.066667pt;}
.ye51_c00003{bottom:428.269333pt;}
.y9be_c00003{bottom:428.532800pt;}
.y260_c00003{bottom:429.068000pt;}
.y42d_c00003{bottom:429.334667pt;}
.y42b_c00003{bottom:429.494667pt;}
.y652_c00003{bottom:429.654667pt;}
.y320_c00003{bottom:429.708000pt;}
.y5a6_c00003{bottom:429.974667pt;}
.y5a5_c00003{bottom:430.134667pt;}
.y46c_c00003{bottom:430.294667pt;}
.y160_c00003{bottom:430.345333pt;}
.y2a8_c00003{bottom:430.348000pt;}
.y46a_c00003{bottom:430.454667pt;}
.ye1f_c00003{bottom:430.828000pt;}
.y55c_c00003{bottom:431.094667pt;}
.y55b_c00003{bottom:431.254667pt;}
.y1244_c00003{bottom:431.266667pt;}
.y42c_c00003{bottom:431.413333pt;}
.ya30_c00003{bottom:431.414000pt;}
.ydf2_c00003{bottom:431.469333pt;}
.ye8e_c00003{bottom:431.629333pt;}
.yec4_c00003{bottom:431.630400pt;}
.yda1_c00003{bottom:431.788000pt;}
.y980_c00003{bottom:432.372533pt;}
.y46b_c00003{bottom:432.373333pt;}
.yc7d_c00003{bottom:432.429333pt;}
.y1166_c00003{bottom:432.506667pt;}
.ydcd_c00003{bottom:432.749333pt;}
.y982_c00003{bottom:432.852000pt;}
.yd6f_c00003{bottom:432.909333pt;}
.y7e4_c00003{bottom:433.014667pt;}
.yd4c_c00003{bottom:433.069333pt;}
.y69e_c00003{bottom:433.174667pt;}
.y69d_c00003{bottom:433.334667pt;}
.y85d_c00003{bottom:433.494667pt;}
.yb1a_c00003{bottom:433.810667pt;}
.y61d_c00003{bottom:433.814667pt;}
.y61c_c00003{bottom:433.974667pt;}
.y8ee_c00003{bottom:434.293067pt;}
.yb80_c00003{bottom:434.774667pt;}
.y126f_c00003{bottom:434.948000pt;}
.yabb_c00003{bottom:435.252133pt;}
.yf03_c00003{bottom:435.308933pt;}
.y828_c00003{bottom:435.574667pt;}
.yf72_c00003{bottom:435.585733pt;}
.y827_c00003{bottom:435.734667pt;}
.y10e3_c00003{bottom:435.840000pt;}
.y1109_c00003{bottom:436.026400pt;}
.y7bd_c00003{bottom:436.214667pt;}
.y11d_c00003{bottom:436.265333pt;}
.y5de_c00003{bottom:436.374667pt;}
.y5dd_c00003{bottom:436.534667pt;}
.y20_c00003{bottom:436.588000pt;}
.y981_c00003{bottom:436.692000pt;}
.y983_c00003{bottom:436.694667pt;}
.y130d_c00003{bottom:436.749787pt;}
.yf1e_c00003{bottom:436.909467pt;}
.yf75_c00003{bottom:436.960000pt;}
.y1d5_c00003{bottom:437.385333pt;}
.y9ff_c00003{bottom:437.650667pt;}
.yeda_c00003{bottom:437.709333pt;}
.ybd9_c00003{bottom:437.814667pt;}
.ya6e_c00003{bottom:438.132000pt;}
.y1297_c00003{bottom:438.148000pt;}
.y70_c00003{bottom:438.199333pt;}
.y4dc_c00003{bottom:438.294667pt;}
.y4da_c00003{bottom:438.454667pt;}
.y706_c00003{bottom:439.094667pt;}
.y705_c00003{bottom:439.254667pt;}
.y25d_c00003{bottom:439.305333pt;}
.yaed_c00003{bottom:439.572667pt;}
.yc30_c00003{bottom:439.629333pt;}
.y51f_c00003{bottom:439.734667pt;}
.y1d6_c00003{bottom:439.788000pt;}
.y3c7_c00003{bottom:439.894667pt;}
.y31d_c00003{bottom:439.945333pt;}
.y3c5_c00003{bottom:440.054667pt;}
.y6d4_c00003{bottom:440.214667pt;}
.y11c9_c00003{bottom:440.294267pt;}
.y111e_c00003{bottom:440.294933pt;}
.y112a_c00003{bottom:440.295600pt;}
.y1136_c00003{bottom:440.295867pt;}
.y11dd_c00003{bottom:440.296933pt;}
.y1142_c00003{bottom:440.297200pt;}
.y114e_c00003{bottom:440.297467pt;}
.y4db_c00003{bottom:440.373333pt;}
.y6d3_c00003{bottom:440.374667pt;}
.y2a5_c00003{bottom:440.585333pt;}
.y2be_c00003{bottom:440.745333pt;}
.y11e8_c00003{bottom:440.960267pt;}
.y25e_c00003{bottom:441.708000pt;}
.y12e6_c00003{bottom:441.709333pt;}
.y51e_c00003{bottom:441.813333pt;}
.y3c6_c00003{bottom:441.973333pt;}
.y1013_c00003{bottom:442.148400pt;}
.y1028_c00003{bottom:442.149733pt;}
.y31e_c00003{bottom:442.348000pt;}
.ydc_c00003{bottom:442.349333pt;}
.yd1d_c00003{bottom:442.466667pt;}
.y2bf_c00003{bottom:442.668000pt;}
.y1040_c00003{bottom:442.812400pt;}
.y15f_c00003{bottom:442.985333pt;}
.y2a6_c00003{bottom:442.988000pt;}
.y92c_c00003{bottom:443.412000pt;}
.y42a_c00003{bottom:443.414667pt;}
.y428_c00003{bottom:443.574667pt;}
.y9bd_c00003{bottom:443.892667pt;}
.y651_c00003{bottom:444.054667pt;}
.y650_c00003{bottom:444.214667pt;}
.y469_c00003{bottom:444.374667pt;}
.y467_c00003{bottom:444.534667pt;}
.y5a4_c00003{bottom:444.694667pt;}
.yb45_c00003{bottom:445.014667pt;}
.yb4_c00003{bottom:445.228000pt;}
.y429_c00003{bottom:445.493333pt;}
.y55a_c00003{bottom:445.654667pt;}
.y559_c00003{bottom:445.814667pt;}
.ycf5_c00003{bottom:445.986667pt;}
.y12b7_c00003{bottom:446.148000pt;}
.y90_c00003{bottom:446.188000pt;}
.y468_c00003{bottom:446.453333pt;}
.y10c0_c00003{bottom:446.904533pt;}
.y10aa_c00003{bottom:446.904800pt;}
.y1090_c00003{bottom:446.905200pt;}
.y1076_c00003{bottom:446.906267pt;}
.y105f_c00003{bottom:446.906667pt;}
.y85c_c00003{bottom:447.094667pt;}
.y85b_c00003{bottom:447.254667pt;}
.y7e3_c00003{bottom:447.574667pt;}
.y10d4_c00003{bottom:447.585067pt;}
.yf7d_c00003{bottom:447.614000pt;}
.yf87_c00003{bottom:447.614133pt;}
.ya2f_c00003{bottom:447.733733pt;}
.y69c_c00003{bottom:447.734667pt;}
.y69b_c00003{bottom:447.894667pt;}
.yf97_c00003{bottom:448.293600pt;}
.y61b_c00003{bottom:448.374667pt;}
.ye8f_c00003{bottom:448.429333pt;}
.yec3_c00003{bottom:448.430400pt;}
.y61a_c00003{bottom:448.534667pt;}
.y11c_c00003{bottom:448.905333pt;}
.ye1e_c00003{bottom:449.228000pt;}
.y130c_c00003{bottom:449.230000pt;}
.y826_c00003{bottom:449.334667pt;}
.ycc7_c00003{bottom:449.348000pt;}
.y1165_c00003{bottom:449.374400pt;}
.y825_c00003{bottom:449.494667pt;}
.y1d3_c00003{bottom:450.025333pt;}
.ydf1_c00003{bottom:450.028000pt;}
.yb19_c00003{bottom:450.130933pt;}
.yda0_c00003{bottom:450.349333pt;}
.yaba_c00003{bottom:450.612000pt;}
.y8ed_c00003{bottom:450.612800pt;}
.y733_c00003{bottom:450.772000pt;}
.y7bc_c00003{bottom:450.774667pt;}
.y4d_c00003{bottom:450.822933pt;}
.y5dc_c00003{bottom:450.934667pt;}
.y5db_c00003{bottom:451.094667pt;}
.ydcc_c00003{bottom:451.149333pt;}
.yd6e_c00003{bottom:451.309333pt;}
.yd4b_c00003{bottom:451.469333pt;}
.y25b_c00003{bottom:451.945333pt;}
.y97f_c00003{bottom:452.052800pt;}
.yf02_c00003{bottom:452.269333pt;}
.y4d9_c00003{bottom:452.374667pt;}
.y1d4_c00003{bottom:452.428000pt;}
.y4d7_c00003{bottom:452.534667pt;}
.y31b_c00003{bottom:452.585333pt;}
.y2a3_c00003{bottom:453.225333pt;}
.yb7f_c00003{bottom:453.334667pt;}
.y51d_c00003{bottom:453.814667pt;}
.yf1d_c00003{bottom:453.869333pt;}
.y9fe_c00003{bottom:453.970933pt;}
.y3c4_c00003{bottom:453.974667pt;}
.y3c2_c00003{bottom:454.134667pt;}
.y25c_c00003{bottom:454.348000pt;}
.y4d8_c00003{bottom:454.453333pt;}
.yb99_c00003{bottom:454.614667pt;}
.yc20_c00003{bottom:454.669333pt;}
.y6f_c00003{bottom:454.679067pt;}
.y734_c00003{bottom:454.774667pt;}
.ya6d_c00003{bottom:454.932000pt;}
.yaec_c00003{bottom:454.932533pt;}
.y31c_c00003{bottom:454.988000pt;}
.y1243_c00003{bottom:455.266667pt;}
.yc66_c00003{bottom:455.309467pt;}
.y15e_c00003{bottom:455.625333pt;}
.y2a4_c00003{bottom:455.628000pt;}
.y51c_c00003{bottom:455.893333pt;}
.ye4f_c00003{bottom:455.948920pt;}
.y1f_c00003{bottom:455.949333pt;}
.y3c3_c00003{bottom:456.053333pt;}
.y348_c00003{bottom:456.364667pt;}
.ybd8_c00003{bottom:456.374667pt;}
.ybfb_c00003{bottom:456.854667pt;}
.y6d2_c00003{bottom:457.173333pt;}
.y6d0_c00003{bottom:457.333333pt;}
.y427_c00003{bottom:457.494667pt;}
.y425_c00003{bottom:457.654667pt;}
.y359_c00003{bottom:457.961333pt;}
.y466_c00003{bottom:458.454667pt;}
.y464_c00003{bottom:458.614667pt;}
.y64f_c00003{bottom:458.774667pt;}
.y126e_c00003{bottom:458.948000pt;}
.y5a3_c00003{bottom:459.094667pt;}
.y12f8_c00003{bottom:459.148933pt;}
.y9bc_c00003{bottom:459.252533pt;}
.y5a2_c00003{bottom:459.254667pt;}
.y426_c00003{bottom:459.573333pt;}
.y92b_c00003{bottom:460.212000pt;}
.y558_c00003{bottom:460.214667pt;}
.y557_c00003{bottom:460.374667pt;}
.y465_c00003{bottom:460.533333pt;}
.y85a_c00003{bottom:460.854667pt;}
.y859_c00003{bottom:461.014667pt;}
.y6d1_c00003{bottom:461.494667pt;}
.y11b_c00003{bottom:461.545333pt;}
.ydb_c00003{bottom:461.709333pt;}
.y7e2_c00003{bottom:462.134667pt;}
.y1296_c00003{bottom:462.148000pt;}
.y110c_c00003{bottom:462.266000pt;}
.y69a_c00003{bottom:462.294667pt;}
.y699_c00003{bottom:462.454667pt;}
.y1d1_c00003{bottom:462.665333pt;}
.y619_c00003{bottom:462.934667pt;}
.y618_c00003{bottom:463.094667pt;}
.y824_c00003{bottom:463.254667pt;}
.ye4e_c00003{bottom:463.309333pt;}
.yb44_c00003{bottom:463.574667pt;}
.yd1b_c00003{bottom:463.748000pt;}
.ya2e_c00003{bottom:464.053467pt;}
.y732_c00003{bottom:464.374667pt;}
.ye38_c00003{bottom:464.429067pt;}
.y731_c00003{bottom:464.534667pt;}
.y259_c00003{bottom:464.585333pt;}
.yb3_c00003{bottom:464.588000pt;}
.y78d_c00003{bottom:464.693333pt;}
.y1d2_c00003{bottom:465.068000pt;}
.y319_c00003{bottom:465.225333pt;}
.y1014_c00003{bottom:465.255733pt;}
.y8a5_c00003{bottom:465.332000pt;}
.y7bb_c00003{bottom:465.334667pt;}
.yed9_c00003{bottom:465.389467pt;}
.y5da_c00003{bottom:465.494667pt;}
.y8f_c00003{bottom:465.549333pt;}
.y5d9_c00003{bottom:465.654667pt;}
.y2a1_c00003{bottom:465.865333pt;}
.y1041_c00003{bottom:465.919200pt;}
.yab9_c00003{bottom:465.971867pt;}
.yb18_c00003{bottom:466.451200pt;}
.y8ec_c00003{bottom:466.932533pt;}
.y25a_c00003{bottom:466.988000pt;}
.ycf4_c00003{bottom:467.266667pt;}
.y4c_c00003{bottom:467.303200pt;}
.y97e_c00003{bottom:467.412667pt;}
.yc7b_c00003{bottom:467.469333pt;}
.y31a_c00003{bottom:467.628000pt;}
.y87e_c00003{bottom:467.732000pt;}
.ye1d_c00003{bottom:467.788000pt;}
.y87c_c00003{bottom:467.892000pt;}
.y51b_c00003{bottom:467.894667pt;}
.y519_c00003{bottom:468.054667pt;}
.y2a2_c00003{bottom:468.268000pt;}
.ydf0_c00003{bottom:468.428000pt;}
.y704_c00003{bottom:468.534667pt;}
.y4d6_c00003{bottom:468.693333pt;}
.y703_c00003{bottom:468.694667pt;}
.yd9f_c00003{bottom:468.749333pt;}
.y4d4_c00003{bottom:468.853333pt;}
.y8a6_c00003{bottom:469.334667pt;}
.yc4a_c00003{bottom:469.549333pt;}
.ydcb_c00003{bottom:469.709333pt;}
.yd6d_c00003{bottom:469.869333pt;}
.y51a_c00003{bottom:469.973333pt;}
.y10ed_c00003{bottom:470.014667pt;}
.y10f5_c00003{bottom:470.015067pt;}
.y11c3_c00003{bottom:470.017200pt;}
.yd4a_c00003{bottom:470.028000pt;}
.y12b6_c00003{bottom:470.148000pt;}
.yfb3_c00003{bottom:470.214133pt;}
.yfbd_c00003{bottom:470.215067pt;}
.yfc7_c00003{bottom:470.216000pt;}
.yfd1_c00003{bottom:470.216933pt;}
.y9fd_c00003{bottom:470.291200pt;}
.yaeb_c00003{bottom:470.292400pt;}
.y3c1_c00003{bottom:470.293333pt;}
.y3bf_c00003{bottom:470.453333pt;}
.ycc6_c00003{bottom:470.786667pt;}
.y15d_c00003{bottom:470.828000pt;}
.yfe1_c00003{bottom:470.880133pt;}
.y6cf_c00003{bottom:471.094667pt;}
.y6e_c00003{bottom:471.158800pt;}
.y6ce_c00003{bottom:471.254667pt;}
.ya6c_c00003{bottom:471.732000pt;}
.y10ab_c00003{bottom:471.838667pt;}
.y1091_c00003{bottom:471.839067pt;}
.y1077_c00003{bottom:471.839600pt;}
.y1060_c00003{bottom:471.840533pt;}
.y87d_c00003{bottom:471.894667pt;}
.yc65_c00003{bottom:472.269333pt;}
.y10d5_c00003{bottom:472.505333pt;}
.ybba_c00003{bottom:472.534667pt;}
.y12e5_c00003{bottom:472.749067pt;}
.y4d5_c00003{bottom:472.854667pt;}
.y64e_c00003{bottom:473.174667pt;}
.y64d_c00003{bottom:473.334667pt;}
.y5a1_c00003{bottom:473.654667pt;}
.y5a0_c00003{bottom:473.814667pt;}
.y423_c00003{bottom:473.973333pt;}
.ye8c_c00003{bottom:474.029200pt;}
.yec1_c00003{bottom:474.030133pt;}
.y3c0_c00003{bottom:474.454667pt;}
.y9bb_c00003{bottom:474.612400pt;}
.y858_c00003{bottom:474.614667pt;}
.y463_c00003{bottom:474.773333pt;}
.y556_c00003{bottom:474.774667pt;}
.y461_c00003{bottom:474.933333pt;}
.y555_c00003{bottom:474.934667pt;}
.ybfa_c00003{bottom:475.254667pt;}
.y1cf_c00003{bottom:475.305333pt;}
.y1e_c00003{bottom:475.309333pt;}
.y12c9_c00003{bottom:476.212000pt;}
.y7e1_c00003{bottom:476.694667pt;}
.y11a_c00003{bottom:476.748000pt;}
.y12f7_c00003{bottom:476.748933pt;}
.y698_c00003{bottom:476.854667pt;}
.y92a_c00003{bottom:477.012000pt;}
.y697_c00003{bottom:477.014667pt;}
.y1168_c00003{bottom:477.186800pt;}
.y257_c00003{bottom:477.225333pt;}
.y617_c00003{bottom:477.494667pt;}
.y616_c00003{bottom:477.654667pt;}
.y1d0_c00003{bottom:477.708000pt;}
.y317_c00003{bottom:477.865333pt;}
.y424_c00003{bottom:477.974667pt;}
.y78c_c00003{bottom:478.294667pt;}
.y78b_c00003{bottom:478.454667pt;}
.y29f_c00003{bottom:478.505333pt;}
.y462_c00003{bottom:478.934667pt;}
.y12ca_c00003{bottom:479.092000pt;}
.y12c8_c00003{bottom:479.092533pt;}
.y7f8_c00003{bottom:479.093333pt;}
.y730_c00003{bottom:479.094667pt;}
.y110b_c00003{bottom:479.133200pt;}
.y802_c00003{bottom:479.252000pt;}
.y79c_c00003{bottom:479.253333pt;}
.y1242_c00003{bottom:479.266667pt;}
.y258_c00003{bottom:479.628000pt;}
.y8c5_c00003{bottom:479.892000pt;}
.y7ba_c00003{bottom:479.894667pt;}
.yf01_c00003{bottom:479.950667pt;}
.y5d8_c00003{bottom:480.054667pt;}
.yc7a_c00003{bottom:480.109333pt;}
.y5d7_c00003{bottom:480.214667pt;}
.y318_c00003{bottom:480.268000pt;}
.ya2d_c00003{bottom:480.373200pt;}
.yf1c_c00003{bottom:480.430667pt;}
.y2a0_c00003{bottom:480.908000pt;}
.yda_c00003{bottom:481.069333pt;}
.yab8_c00003{bottom:481.331733pt;}
.yb65_c00003{bottom:481.334667pt;}
.y87b_c00003{bottom:481.494667pt;}
.y87a_c00003{bottom:481.654667pt;}
.y11fb_c00003{bottom:481.759733pt;}
.y11f3_c00003{bottom:481.760267pt;}
.y1207_c00003{bottom:481.760667pt;}
.y120e_c00003{bottom:481.762000pt;}
.y1215_c00003{bottom:481.763467pt;}
.y121c_c00003{bottom:481.764400pt;}
.y1221_c00003{bottom:481.764533pt;}
.y4d3_c00003{bottom:481.974667pt;}
.y4d1_c00003{bottom:482.134667pt;}
.y8b3_c00003{bottom:482.292000pt;}
.y75c_c00003{bottom:482.293333pt;}
.y15c_c00003{bottom:482.345333pt;}
.yed8_c00003{bottom:482.349333pt;}
.y1201_c00003{bottom:482.426000pt;}
.y8b2_c00003{bottom:482.452000pt;}
.y75a_c00003{bottom:482.453333pt;}
.yb17_c00003{bottom:482.771467pt;}
.y97d_c00003{bottom:482.772533pt;}
.y126d_c00003{bottom:482.948000pt;}
.y8eb_c00003{bottom:483.252267pt;}
.y79d_c00003{bottom:483.254667pt;}
.y3be_c00003{bottom:483.574667pt;}
.y3bc_c00003{bottom:483.734667pt;}
.y4b_c00003{bottom:483.783467pt;}
.y8c6_c00003{bottom:483.894667pt;}
.yb2_c00003{bottom:483.949333pt;}
.y4d2_c00003{bottom:484.053333pt;}
.yc2f_c00003{bottom:484.109333pt;}
.y343_c00003{bottom:484.318000pt;}
.y517_c00003{bottom:484.373333pt;}
.y8e_c00003{bottom:484.909333pt;}
.y11ca_c00003{bottom:484.960400pt;}
.y111f_c00003{bottom:484.961600pt;}
.y112b_c00003{bottom:484.962267pt;}
.y1137_c00003{bottom:484.962533pt;}
.y11de_c00003{bottom:484.963600pt;}
.y1143_c00003{bottom:484.963867pt;}
.y114f_c00003{bottom:484.964133pt;}
.y1154_c00003{bottom:484.964267pt;}
.y11e7_c00003{bottom:484.964533pt;}
.yd19_c00003{bottom:485.026667pt;}
.y11e9_c00003{bottom:485.626933pt;}
.yaea_c00003{bottom:485.652267pt;}
.y3bd_c00003{bottom:485.653333pt;}
.y6cd_c00003{bottom:485.814667pt;}
.y352_c00003{bottom:485.913333pt;}
.y6cc_c00003{bottom:485.974667pt;}
.y1295_c00003{bottom:486.148000pt;}
.ye1c_c00003{bottom:486.349333pt;}
.y75b_c00003{bottom:486.454667pt;}
.y9fc_c00003{bottom:486.611467pt;}
.ydef_c00003{bottom:486.988000pt;}
.y422_c00003{bottom:487.094667pt;}
.y420_c00003{bottom:487.254667pt;}
.yd9e_c00003{bottom:487.309333pt;}
.y6d_c00003{bottom:487.638533pt;}
.y1cd_c00003{bottom:487.945333pt;}
.y460_c00003{bottom:488.054667pt;}
.ydca_c00003{bottom:488.109333pt;}
.y45e_c00003{bottom:488.214667pt;}
.y119_c00003{bottom:488.265333pt;}
.yd6c_c00003{bottom:488.269333pt;}
.y1015_c00003{bottom:488.348400pt;}
.y518_c00003{bottom:488.374667pt;}
.ya6b_c00003{bottom:488.532000pt;}
.ycf3_c00003{bottom:488.548000pt;}
.yd49_c00003{bottom:488.588000pt;}
.y1042_c00003{bottom:489.025467pt;}
.y421_c00003{bottom:489.173333pt;}
.ye37_c00003{bottom:489.709333pt;}
.y702_c00003{bottom:489.814667pt;}
.y255_c00003{bottom:489.865333pt;}
.y9ba_c00003{bottom:489.972267pt;}
.y64c_c00003{bottom:489.973333pt;}
.y45f_c00003{bottom:490.133333pt;}
.yb7e_c00003{bottom:490.294667pt;}
.y1ce_c00003{bottom:490.348000pt;}
.y315_c00003{bottom:490.505333pt;}
.y856_c00003{bottom:490.612000pt;}
.y59e_c00003{bottom:490.613333pt;}
.ye8b_c00003{bottom:490.829200pt;}
.yebf_c00003{bottom:490.830667pt;}
.ybb9_c00003{bottom:490.934667pt;}
.y29d_c00003{bottom:491.145333pt;}
.y554_c00003{bottom:491.573333pt;}
.y552_c00003{bottom:491.733333pt;}
.yb98_c00003{bottom:491.734667pt;}
.ycc3_c00003{bottom:492.066667pt;}
.y256_c00003{bottom:492.268000pt;}
.y823_c00003{bottom:492.692000pt;}
.y7f7_c00003{bottom:492.694667pt;}
.yc7c_c00003{bottom:492.750667pt;}
.y821_c00003{bottom:492.852000pt;}
.y78a_c00003{bottom:492.854667pt;}
.y316_c00003{bottom:492.908000pt;}
.y789_c00003{bottom:493.014667pt;}
.ybd7_c00003{bottom:493.334667pt;}
.y72f_c00003{bottom:493.494667pt;}
.y29e_c00003{bottom:493.548000pt;}
.y7e0_c00003{bottom:493.653333pt;}
.y72e_c00003{bottom:493.654667pt;}
.y929_c00003{bottom:493.812000pt;}
.y696_c00003{bottom:493.813333pt;}
.ybf9_c00003{bottom:493.814667pt;}
.yc1f_c00003{bottom:493.869200pt;}
.y1167_c00003{bottom:494.054000pt;}
.y64b_c00003{bottom:494.134667pt;}
.y614_c00003{bottom:494.453333pt;}
.y857_c00003{bottom:494.454667pt;}
.y12f6_c00003{bottom:494.509333pt;}
.y59f_c00003{bottom:494.614667pt;}
.y1d_c00003{bottom:494.669333pt;}
.y15b_c00003{bottom:494.825333pt;}
.y553_c00003{bottom:495.734667pt;}
.y12b5_c00003{bottom:495.748000pt;}
.y4d0_c00003{bottom:496.054667pt;}
.y4ce_c00003{bottom:496.214667pt;}
.yab7_c00003{bottom:496.691600pt;}
.ya2c_c00003{bottom:496.692933pt;}
.y7b9_c00003{bottom:496.693333pt;}
.y822_c00003{bottom:496.694667pt;}
.yf00_c00003{bottom:496.750667pt;}
.y10ac_c00003{bottom:496.772533pt;}
.y1092_c00003{bottom:496.772933pt;}
.y1078_c00003{bottom:496.773467pt;}
.y1061_c00003{bottom:496.774400pt;}
.y716_c00003{bottom:496.852000pt;}
.y5d6_c00003{bottom:496.853333pt;}
.y715_c00003{bottom:497.012000pt;}
.y5d4_c00003{bottom:497.013333pt;}
.yf1b_c00003{bottom:497.230667pt;}
.y10d6_c00003{bottom:497.438667pt;}
.y516_c00003{bottom:497.494667pt;}
.y3bb_c00003{bottom:497.654667pt;}
.y3b9_c00003{bottom:497.814667pt;}
.y97c_c00003{bottom:498.132400pt;}
.y4cf_c00003{bottom:498.133333pt;}
.y879_c00003{bottom:498.292000pt;}
.ye4c_c00003{bottom:498.350667pt;}
.y877_c00003{bottom:498.451867pt;}
.y615_c00003{bottom:498.454667pt;}
.yb16_c00003{bottom:499.091733pt;}
.yf7e_c00003{bottom:499.226533pt;}
.yf88_c00003{bottom:499.226667pt;}
.ye8d_c00003{bottom:499.308933pt;}
.ye88_c00003{bottom:499.309333pt;}
.y701_c00003{bottom:499.414667pt;}
.y8ea_c00003{bottom:499.572000pt;}
.y12c7_c00003{bottom:499.572267pt;}
.y515_c00003{bottom:499.573333pt;}
.y700_c00003{bottom:499.574667pt;}
.y3ba_c00003{bottom:499.733333pt;}
.yb64_c00003{bottom:499.894667pt;}
.yf98_c00003{bottom:499.906667pt;}
.yc64_c00003{bottom:499.950667pt;}
.y4a_c00003{bottom:500.263733pt;}
.yd9_c00003{bottom:500.428000pt;}
.y6cb_c00003{bottom:500.534667pt;}
.y1cb_c00003{bottom:500.585333pt;}
.y6ca_c00003{bottom:500.694667pt;}
.y118_c00003{bottom:500.745333pt;}
.yae9_c00003{bottom:501.012133pt;}
.y5d5_c00003{bottom:501.014667pt;}
.y41f_c00003{bottom:501.174667pt;}
.y41d_c00003{bottom:501.334667pt;}
.y45d_c00003{bottom:502.134667pt;}
.y45b_c00003{bottom:502.294667pt;}
.y878_c00003{bottom:502.454667pt;}
.y253_c00003{bottom:502.505333pt;}
.y9fb_c00003{bottom:502.931733pt;}
.y1cc_c00003{bottom:502.988000pt;}
.y313_c00003{bottom:503.145333pt;}
.y41e_c00003{bottom:503.253333pt;}
.y1240_c00003{bottom:503.293333pt;}
.yb1_c00003{bottom:503.309333pt;}
.y855_c00003{bottom:503.574667pt;}
.y64a_c00003{bottom:503.734667pt;}
.y29b_c00003{bottom:503.785333pt;}
.y649_c00003{bottom:503.894667pt;}
.y6c_c00003{bottom:504.118267pt;}
.y45c_c00003{bottom:504.213333pt;}
.y59d_c00003{bottom:504.214667pt;}
.y8d_c00003{bottom:504.269333pt;}
.y59c_c00003{bottom:504.374667pt;}
.ye1b_c00003{bottom:504.749333pt;}
.y254_c00003{bottom:504.908000pt;}
.ya6a_c00003{bottom:505.332000pt;}
.y9b9_c00003{bottom:505.332133pt;}
.y551_c00003{bottom:505.334667pt;}
.y110e_c00003{bottom:505.346133pt;}
.ydee_c00003{bottom:505.388000pt;}
.y550_c00003{bottom:505.494667pt;}
.y314_c00003{bottom:505.548000pt;}
.y820_c00003{bottom:505.814667pt;}
.yd9d_c00003{bottom:505.869333pt;}
.y81e_c00003{bottom:505.974667pt;}
.y29c_c00003{bottom:506.188000pt;}
.yd18_c00003{bottom:506.493333pt;}
.ydc9_c00003{bottom:506.669333pt;}
.yd6b_c00003{bottom:506.828000pt;}
.y126c_c00003{bottom:506.973333pt;}
.yd48_c00003{bottom:506.988000pt;}
.y7df_c00003{bottom:507.254667pt;}
.y695_c00003{bottom:507.414667pt;}
.y15a_c00003{bottom:507.465333pt;}
.y694_c00003{bottom:507.574667pt;}
.ye8a_c00003{bottom:507.789067pt;}
.yec0_c00003{bottom:507.790533pt;}
.y613_c00003{bottom:508.054667pt;}
.y612_c00003{bottom:508.214667pt;}
.yb7d_c00003{bottom:508.854667pt;}
.ybb8_c00003{bottom:509.494667pt;}
.y381_c00003{bottom:509.554667pt;}
.y36d_c00003{bottom:509.713333pt;}
.ycf1_c00003{bottom:510.013333pt;}
.yed7_c00003{bottom:510.030667pt;}
.y4cd_c00003{bottom:510.134667pt;}
.y1294_c00003{bottom:510.173333pt;}
.y4cb_c00003{bottom:510.294667pt;}
.y72c_c00003{bottom:510.452000pt;}
.y7b8_c00003{bottom:510.454667pt;}
.y928_c00003{bottom:510.612000pt;}
.y5d3_c00003{bottom:510.614667pt;}
.y5d2_c00003{bottom:510.774667pt;}
.y1016_c00003{bottom:511.495733pt;}
.y514_c00003{bottom:511.574667pt;}
.y3b8_c00003{bottom:511.734667pt;}
.y3b6_c00003{bottom:511.894667pt;}
.yab6_c00003{bottom:512.052000pt;}
.yab4_c00003{bottom:512.052133pt;}
.y12f5_c00003{bottom:512.109333pt;}
.y1043_c00003{bottom:512.159333pt;}
.y4cc_c00003{bottom:512.213333pt;}
.ybf8_c00003{bottom:512.214667pt;}
.y342_c00003{bottom:512.271600pt;}
.y8b1_c00003{bottom:512.852000pt;}
.y759_c00003{bottom:512.853333pt;}
.y8b0_c00003{bottom:513.012133pt;}
.ya2b_c00003{bottom:513.012667pt;}
.y757_c00003{bottom:513.013200pt;}
.y10ee_c00003{bottom:513.120933pt;}
.y1c9_c00003{bottom:513.225333pt;}
.ycc2_c00003{bottom:513.373333pt;}
.y117_c00003{bottom:513.385333pt;}
.y97b_c00003{bottom:513.492267pt;}
.y513_c00003{bottom:513.653333pt;}
.y3b7_c00003{bottom:513.813333pt;}
.y354_c00003{bottom:513.869333pt;}
.y1c_c00003{bottom:514.028000pt;}
.y6ff_c00003{bottom:514.134667pt;}
.yc49_c00003{bottom:514.189333pt;}
.y876_c00003{bottom:514.292000pt;}
.y6fe_c00003{bottom:514.294667pt;}
.y874_c00003{bottom:514.452000pt;}
.y72d_c00003{bottom:514.454667pt;}
.y251_c00003{bottom:515.145333pt;}
.ye4a_c00003{bottom:515.150667pt;}
.y41c_c00003{bottom:515.254667pt;}
.yb13_c00003{bottom:515.411733pt;}
.yb15_c00003{bottom:515.412000pt;}
.ybf6_c00003{bottom:515.413333pt;}
.y41a_c00003{bottom:515.414667pt;}
.y1ca_c00003{bottom:515.628000pt;}
.y311_c00003{bottom:515.785333pt;}
.y8e9_c00003{bottom:515.891733pt;}
.y45a_c00003{bottom:516.214667pt;}
.yae8_c00003{bottom:516.371867pt;}
.yab5_c00003{bottom:516.372000pt;}
.y458_c00003{bottom:516.374667pt;}
.y299_c00003{bottom:516.425333pt;}
.y49_c00003{bottom:516.744000pt;}
.yc63_c00003{bottom:516.750667pt;}
.y758_c00003{bottom:517.014667pt;}
.y41b_c00003{bottom:517.333333pt;}
.y854_c00003{bottom:517.334667pt;}
.y853_c00003{bottom:517.494667pt;}
.y252_c00003{bottom:517.548000pt;}
.y312_c00003{bottom:518.188000pt;}
.y459_c00003{bottom:518.293333pt;}
.yb63_c00003{bottom:518.294667pt;}
.y12c6_c00003{bottom:518.453467pt;}
.y875_c00003{bottom:518.454667pt;}
.y59b_c00003{bottom:518.774667pt;}
.y29a_c00003{bottom:518.828000pt;}
.y59a_c00003{bottom:518.934667pt;}
.y9f9_c00003{bottom:519.252000pt;}
.yc1e_c00003{bottom:519.309333pt;}
.ye4d_c00003{bottom:519.470400pt;}
.yb14_c00003{bottom:519.732000pt;}
.y12af_c00003{bottom:519.773333pt;}
.yd8_c00003{bottom:519.788000pt;}
.y159_c00003{bottom:520.105333pt;}
.y648_c00003{bottom:520.533333pt;}
.y6b_c00003{bottom:520.598000pt;}
.y9b8_c00003{bottom:520.692000pt;}
.y9b7_c00003{bottom:520.692133pt;}
.y646_c00003{bottom:520.693200pt;}
.y81d_c00003{bottom:521.653333pt;}
.y10ad_c00003{bottom:521.691867pt;}
.y1093_c00003{bottom:521.692667pt;}
.y1079_c00003{bottom:521.693200pt;}
.y1062_c00003{bottom:521.694133pt;}
.y81c_c00003{bottom:521.813200pt;}
.yb41_c00003{bottom:521.813333pt;}
.y7de_c00003{bottom:521.814667pt;}
.y11eb_c00003{bottom:521.854000pt;}
.y693_c00003{bottom:521.974667pt;}
.ya68_c00003{bottom:522.132000pt;}
.y54f_c00003{bottom:522.133333pt;}
.y692_c00003{bottom:522.134667pt;}
.y110d_c00003{bottom:522.213333pt;}
.y54d_c00003{bottom:522.293200pt;}
.y10d7_c00003{bottom:522.372533pt;}
.y611_c00003{bottom:522.614667pt;}
.yb0_c00003{bottom:522.669333pt;}
.y610_c00003{bottom:522.774667pt;}
.ye1a_c00003{bottom:523.309333pt;}
.y9fa_c00003{bottom:523.572000pt;}
.y8c_c00003{bottom:523.628000pt;}
.ye36_c00003{bottom:523.790933pt;}
.yded_c00003{bottom:523.949333pt;}
.y72b_c00003{bottom:524.054667pt;}
.y72a_c00003{bottom:524.214667pt;}
.yd9c_c00003{bottom:524.269333pt;}
.y787_c00003{bottom:524.373333pt;}
.ye89_c00003{bottom:524.589067pt;}
.y647_c00003{bottom:524.694667pt;}
.yfac_c00003{bottom:524.799200pt;}
.yfa4_c00003{bottom:524.799333pt;}
.yfb4_c00003{bottom:524.800133pt;}
.yfbe_c00003{bottom:524.801067pt;}
.yfc8_c00003{bottom:524.802000pt;}
.yfd2_c00003{bottom:524.803333pt;}
.yf1a_c00003{bottom:524.909467pt;}
.y8a4_c00003{bottom:525.012000pt;}
.ydc8_c00003{bottom:525.228000pt;}
.yd6a_c00003{bottom:525.388000pt;}
.yfe2_c00003{bottom:525.466533pt;}
.yd47_c00003{bottom:525.549333pt;}
.y512_c00003{bottom:525.654667pt;}
.y510_c00003{bottom:525.814667pt;}
.y1c7_c00003{bottom:525.865333pt;}
.y116_c00003{bottom:526.025333pt;}
.y54e_c00003{bottom:526.294667pt;}
.ya69_c00003{bottom:526.452000pt;}
.y4ca_c00003{bottom:526.453333pt;}
.y4c8_c00003{bottom:526.613333pt;}
.yed6_c00003{bottom:526.830667pt;}
.y7b7_c00003{bottom:527.253333pt;}
.yb7c_c00003{bottom:527.254667pt;}
.y123d_c00003{bottom:527.293333pt;}
.y927_c00003{bottom:527.412000pt;}
.y925_c00003{bottom:527.412267pt;}
.y7b6_c00003{bottom:527.413200pt;}
.y5d1_c00003{bottom:527.413333pt;}
.y713_c00003{bottom:527.572133pt;}
.y5cf_c00003{bottom:527.573200pt;}
.y511_c00003{bottom:527.733333pt;}
.y374_c00003{bottom:527.762667pt;}
.yd17_c00003{bottom:527.773333pt;}
.y24f_c00003{bottom:527.785333pt;}
.y36e_c00003{bottom:527.924000pt;}
.y3b5_c00003{bottom:528.053333pt;}
.y873_c00003{bottom:528.054667pt;}
.y3b3_c00003{bottom:528.213333pt;}
.y872_c00003{bottom:528.214667pt;}
.y1c8_c00003{bottom:528.268000pt;}
.y788_c00003{bottom:528.374667pt;}
.y30f_c00003{bottom:528.425333pt;}
.yc2e_c00003{bottom:528.589333pt;}
.yb97_c00003{bottom:528.694667pt;}
.y97a_c00003{bottom:528.852133pt;}
.y756_c00003{bottom:528.853333pt;}
.y6fd_c00003{bottom:528.854667pt;}
.y8af_c00003{bottom:529.012000pt;}
.y754_c00003{bottom:529.013333pt;}
.y6fc_c00003{bottom:529.014667pt;}
.y297_c00003{bottom:529.065333pt;}
.ya2a_c00003{bottom:529.332000pt;}
.ya28_c00003{bottom:529.332533pt;}
.y11cb_c00003{bottom:529.627067pt;}
.y1120_c00003{bottom:529.627200pt;}
.y112c_c00003{bottom:529.628400pt;}
.y1138_c00003{bottom:529.628667pt;}
.y11df_c00003{bottom:529.629733pt;}
.y1144_c00003{bottom:529.630000pt;}
.ybf7_c00003{bottom:529.974667pt;}
.y250_c00003{bottom:530.188000pt;}
.ybd6_c00003{bottom:530.294667pt;}
.y1169_c00003{bottom:530.306533pt;}
.y4c9_c00003{bottom:530.614667pt;}
.y310_c00003{bottom:530.828000pt;}
.yb42_c00003{bottom:531.093333pt;}
.y852_c00003{bottom:531.094667pt;}
.y851_c00003{bottom:531.254667pt;}
.ycf0_c00003{bottom:531.293333pt;}
.y298_c00003{bottom:531.468000pt;}
.y5d0_c00003{bottom:531.574667pt;}
.yae7_c00003{bottom:531.731733pt;}
.y926_c00003{bottom:531.732000pt;}
.y418_c00003{bottom:531.733333pt;}
.yefe_c00003{bottom:531.789333pt;}
.ye4b_c00003{bottom:532.110533pt;}
.y8e7_c00003{bottom:532.212000pt;}
.y6c9_c00003{bottom:532.213333pt;}
.y3b4_c00003{bottom:532.214667pt;}
.y6c8_c00003{bottom:532.373333pt;}
.y457_c00003{bottom:532.533333pt;}
.y455_c00003{bottom:532.693333pt;}
.y158_c00003{bottom:532.745333pt;}
.y755_c00003{bottom:533.014667pt;}
.ya29_c00003{bottom:533.172000pt;}
.y48_c00003{bottom:533.224267pt;}
.yebe_c00003{bottom:533.229467pt;}
.y599_c00003{bottom:533.334667pt;}
.y1b_c00003{bottom:533.388000pt;}
.y598_c00003{bottom:533.494667pt;}
.y126b_c00003{bottom:533.533333pt;}
.y1293_c00003{bottom:534.173333pt;}
.y1017_c00003{bottom:534.588400pt;}
.y1029_c00003{bottom:534.589867pt;}
.ycc1_c00003{bottom:534.813333pt;}
.y12e4_c00003{bottom:534.829067pt;}
.y1044_c00003{bottom:535.266133pt;}
.y9f8_c00003{bottom:535.572267pt;}
.y419_c00003{bottom:535.734667pt;}
.y8e8_c00003{bottom:536.052000pt;}
.y7dd_c00003{bottom:536.374667pt;}
.y645_c00003{bottom:536.533333pt;}
.y691_c00003{bottom:536.534667pt;}
.y643_c00003{bottom:536.693333pt;}
.y456_c00003{bottom:536.694667pt;}
.y81b_c00003{bottom:536.853333pt;}
.yb60_c00003{bottom:536.854667pt;}
.y819_c00003{bottom:537.013333pt;}
.y6a_c00003{bottom:537.077733pt;}
.y60f_c00003{bottom:537.174667pt;}
.y60e_c00003{bottom:537.334667pt;}
.y786_c00003{bottom:537.974667pt;}
.y54c_c00003{bottom:538.133333pt;}
.y785_c00003{bottom:538.134667pt;}
.y54a_c00003{bottom:538.293333pt;}
.y13cb_c00003{bottom:538.346453pt;}
.y1c5_c00003{bottom:538.505333pt;}
.y12c5_c00003{bottom:538.613333pt;}
.y729_c00003{bottom:538.614667pt;}
.y115_c00003{bottom:538.665333pt;}
.y11ea_c00003{bottom:538.720667pt;}
.y7f6_c00003{bottom:538.773333pt;}
.y728_c00003{bottom:538.774667pt;}
.ya67_c00003{bottom:538.932000pt;}
.y79a_c00003{bottom:538.933333pt;}
.yd7_c00003{bottom:539.149333pt;}
.y8c3_c00003{bottom:539.573333pt;}
.y4c7_c00003{bottom:539.734667pt;}
.y4c5_c00003{bottom:539.894667pt;}
.y24d_c00003{bottom:540.425333pt;}
.y644_c00003{bottom:540.694667pt;}
.y81a_c00003{bottom:540.854667pt;}
.y1c6_c00003{bottom:540.908000pt;}
.y30d_c00003{bottom:541.065333pt;}
.y3b2_c00003{bottom:541.334667pt;}
.y3b0_c00003{bottom:541.494667pt;}
.y295_c00003{bottom:541.705333pt;}
.ye19_c00003{bottom:541.709333pt;}
.y4c6_c00003{bottom:541.813333pt;}
.yf19_c00003{bottom:541.869333pt;}
.yaf_c00003{bottom:542.028000pt;}
.y50e_c00003{bottom:542.133333pt;}
.y54b_c00003{bottom:542.294667pt;}
.ydec_c00003{bottom:542.509333pt;}
.y753_c00003{bottom:542.614667pt;}
.yab3_c00003{bottom:542.771867pt;}
.y752_c00003{bottom:542.774667pt;}
.yc79_c00003{bottom:542.826400pt;}
.y24e_c00003{bottom:542.828000pt;}
.yf9a_c00003{bottom:542.880133pt;}
.y79b_c00003{bottom:542.934667pt;}
.y8b_c00003{bottom:542.988000pt;}
.y7b5_c00003{bottom:543.253333pt;}
.y3b1_c00003{bottom:543.413333pt;}
.y30e_c00003{bottom:543.468000pt;}
.y5cd_c00003{bottom:543.573333pt;}
.y8c4_c00003{bottom:543.574667pt;}
.ydc7_c00003{bottom:543.628000pt;}
.yd69_c00003{bottom:543.788000pt;}
.yd46_c00003{bottom:543.949333pt;}
.y296_c00003{bottom:544.108000pt;}
.y979_c00003{bottom:544.212000pt;}
.y977_c00003{bottom:544.212133pt;}
.y924_c00003{bottom:544.212267pt;}
.yc62_c00003{bottom:544.429333pt;}
.y871_c00003{bottom:544.853333pt;}
.y417_c00003{bottom:544.854667pt;}
.y86f_c00003{bottom:545.013333pt;}
.y415_c00003{bottom:545.014667pt;}
.ya27_c00003{bottom:545.652267pt;}
.y454_c00003{bottom:545.814667pt;}
.y6fa_c00003{bottom:545.973333pt;}
.y452_c00003{bottom:545.974667pt;}
.y50f_c00003{bottom:546.134667pt;}
.y6c7_c00003{bottom:546.294667pt;}
.ybb7_c00003{bottom:546.454667pt;}
.y10ae_c00003{bottom:546.624667pt;}
.y1094_c00003{bottom:546.625467pt;}
.y107a_c00003{bottom:546.626000pt;}
.y1063_c00003{bottom:546.626933pt;}
.y416_c00003{bottom:546.933333pt;}
.yae6_c00003{bottom:547.091600pt;}
.y84f_c00003{bottom:547.093333pt;}
.yb96_c00003{bottom:547.094667pt;}
.y10d8_c00003{bottom:547.292800pt;}
.y978_c00003{bottom:547.572000pt;}
.y5ce_c00003{bottom:547.574667pt;}
.y453_c00003{bottom:547.893333pt;}
.y157_c00003{bottom:547.948000pt;}
.yb12_c00003{bottom:548.052267pt;}
.y1110_c00003{bottom:548.453333pt;}
.y8e6_c00003{bottom:548.531733pt;}
.ybf1_c00003{bottom:548.534667pt;}
.yb61_c00003{bottom:548.853333pt;}
.ybd5_c00003{bottom:548.854667pt;}
.y870_c00003{bottom:549.014667pt;}
.yd16_c00003{bottom:549.052000pt;}
.ye35_c00003{bottom:549.070667pt;}
.y13e3_c00003{bottom:549.226453pt;}
.y13ca_c00003{bottom:549.226667pt;}
.y47_c00003{bottom:549.704533pt;}
.yb93_c00003{bottom:549.973333pt;}
.y818_c00003{bottom:549.974667pt;}
.y6fb_c00003{bottom:550.134667pt;}
.ye86_c00003{bottom:550.189200pt;}
.yebc_c00003{bottom:550.189333pt;}
.y596_c00003{bottom:550.293333pt;}
.y642_c00003{bottom:550.294667pt;}
.y641_c00003{bottom:550.454667pt;}
.yf7f_c00003{bottom:550.814000pt;}
.yf89_c00003{bottom:550.814133pt;}
.y850_c00003{bottom:550.934667pt;}
.y1c3_c00003{bottom:551.145333pt;}
.y9b6_c00003{bottom:551.411867pt;}
.ybd2_c00003{bottom:551.573333pt;}
.ybf0_c00003{bottom:551.733333pt;}
.y9f7_c00003{bottom:551.892533pt;}
.y549_c00003{bottom:551.894667pt;}
.y548_c00003{bottom:552.054667pt;}
.y7f5_c00003{bottom:552.374667pt;}
.y784_c00003{bottom:552.534667pt;}
.ycef_c00003{bottom:552.573333pt;}
.y783_c00003{bottom:552.694667pt;}
.y1a_c00003{bottom:552.749333pt;}
.y24b_c00003{bottom:553.065333pt;}
.y8a3_c00003{bottom:553.174667pt;}
.yc1d_c00003{bottom:553.229067pt;}
.y7dc_c00003{bottom:553.333333pt;}
.y8a2_c00003{bottom:553.334667pt;}
.y68f_c00003{bottom:553.493333pt;}
.y1c4_c00003{bottom:553.548000pt;}
.y69_c00003{bottom:553.557467pt;}
.y30b_c00003{bottom:553.705333pt;}
.y123c_c00003{bottom:553.852000pt;}
.y114_c00003{bottom:553.868000pt;}
.y60c_c00003{bottom:554.133333pt;}
.y597_c00003{bottom:554.294667pt;}
.y293_c00003{bottom:554.345333pt;}
.yb62_c00003{bottom:554.614667pt;}
.y50d_c00003{bottom:555.254667pt;}
.y49c_c00003{bottom:555.414667pt;}
.y24c_c00003{bottom:555.468000pt;}
.y49b_c00003{bottom:555.574667pt;}
.ya66_c00003{bottom:555.732000pt;}
.y4c4_c00003{bottom:556.053333pt;}
.ycc0_c00003{bottom:556.093333pt;}
.y30c_c00003{bottom:556.108000pt;}
.y10ef_c00003{bottom:556.187600pt;}
.y10f6_c00003{bottom:556.188000pt;}
.y4c2_c00003{bottom:556.213333pt;}
.y294_c00003{bottom:556.748000pt;}
.y7b4_c00003{bottom:557.014667pt;}
.yefc_c00003{bottom:557.070667pt;}
.y5cc_c00003{bottom:557.174667pt;}
.y50c_c00003{bottom:557.333333pt;}
.y5cb_c00003{bottom:557.334667pt;}
.y690_c00003{bottom:557.494667pt;}
.y126a_c00003{bottom:557.533333pt;}
.yab0_c00003{bottom:557.652133pt;}
.y3af_c00003{bottom:557.653333pt;}
.y1018_c00003{bottom:557.735733pt;}
.y3ad_c00003{bottom:557.813333pt;}
.yab2_c00003{bottom:558.133333pt;}
.y60d_c00003{bottom:558.134667pt;}
.y128e_c00003{bottom:558.173333pt;}
.y86d_c00003{bottom:558.294667pt;}
.y11f4_c00003{bottom:558.333733pt;}
.y11f9_c00003{bottom:558.334267pt;}
.y1208_c00003{bottom:558.334667pt;}
.y120f_c00003{bottom:558.336533pt;}
.y1216_c00003{bottom:558.337467pt;}
.y121d_c00003{bottom:558.337867pt;}
.y1222_c00003{bottom:558.338533pt;}
.y1045_c00003{bottom:558.400000pt;}
.yb40_c00003{bottom:558.453333pt;}
.yd6_c00003{bottom:558.509333pt;}
.yc48_c00003{bottom:558.669333pt;}
.y414_c00003{bottom:558.934667pt;}
.y1202_c00003{bottom:559.013467pt;}
.yb94_c00003{bottom:559.093333pt;}
.y413_c00003{bottom:559.094667pt;}
.y751_c00003{bottom:559.413333pt;}
.y156_c00003{bottom:559.465333pt;}
.y976_c00003{bottom:559.572000pt;}
.y74f_c00003{bottom:559.573333pt;}
.yf99_c00003{bottom:559.680133pt;}
.y6f9_c00003{bottom:559.734667pt;}
.y6f8_c00003{bottom:559.894667pt;}
.y84e_c00003{bottom:560.054667pt;}
.y13e2_c00003{bottom:560.106667pt;}
.y4c3_c00003{bottom:560.214667pt;}
.ye18_c00003{bottom:560.269333pt;}
.ybf5_c00003{bottom:560.693333pt;}
.ybd3_c00003{bottom:560.853333pt;}
.ydeb_c00003{bottom:560.909333pt;}
.y923_c00003{bottom:561.012267pt;}
.yd9b_c00003{bottom:561.228000pt;}
.yc61_c00003{bottom:561.229333pt;}
.yae_c00003{bottom:561.388000pt;}
.y3ae_c00003{bottom:561.814667pt;}
.yed3_c00003{bottom:561.869333pt;}
.ya26_c00003{bottom:561.972000pt;}
.yae5_c00003{bottom:561.972133pt;}
.y451_c00003{bottom:562.133333pt;}
.ydc6_c00003{bottom:562.188000pt;}
.y44f_c00003{bottom:562.293333pt;}
.y8a_c00003{bottom:562.349333pt;}
.yab1_c00003{bottom:562.452000pt;}
.yd45_c00003{bottom:562.509333pt;}
.y6c6_c00003{bottom:563.093333pt;}
.y6c4_c00003{bottom:563.253333pt;}
.y750_c00003{bottom:563.574667pt;}
.y1c1_c00003{bottom:563.785333pt;}
.yb10_c00003{bottom:563.892267pt;}
.y595_c00003{bottom:563.894667pt;}
.y594_c00003{bottom:564.054667pt;}
.yb7b_c00003{bottom:564.214667pt;}
.yb11_c00003{bottom:564.372000pt;}
.y8e5_c00003{bottom:564.853067pt;}
.yb95_c00003{bottom:564.854667pt;}
.ybb6_c00003{bottom:565.014667pt;}
.y110f_c00003{bottom:565.306000pt;}
.y113_c00003{bottom:565.385333pt;}
.y86b_c00003{bottom:565.653333pt;}
.y249_c00003{bottom:565.705333pt;}
.y12e3_c00003{bottom:565.710227pt;}
.y817_c00003{bottom:565.813333pt;}
.y815_c00003{bottom:565.973333pt;}
.ye48_c00003{bottom:566.029333pt;}
.y46_c00003{bottom:566.184800pt;}
.y1c2_c00003{bottom:566.188000pt;}
.y9b3_c00003{bottom:566.293200pt;}
.y450_c00003{bottom:566.294667pt;}
.y309_c00003{bottom:566.345333pt;}
.ybd4_c00003{bottom:566.454667pt;}
.y116b_c00003{bottom:566.534133pt;}
.y9b5_c00003{bottom:566.773333pt;}
.y7db_c00003{bottom:566.934667pt;}
.y291_c00003{bottom:566.985333pt;}
.ye85_c00003{bottom:566.989200pt;}
.yebd_c00003{bottom:566.989333pt;}
.y640_c00003{bottom:567.093333pt;}
.y68e_c00003{bottom:567.094667pt;}
.y63e_c00003{bottom:567.253333pt;}
.y68d_c00003{bottom:567.254667pt;}
.y6c5_c00003{bottom:567.414667pt;}
.y9f4_c00003{bottom:567.731733pt;}
.ybb3_c00003{bottom:567.733333pt;}
.y60b_c00003{bottom:567.734667pt;}
.y60a_c00003{bottom:567.894667pt;}
.yc78_c00003{bottom:568.106667pt;}
.y24a_c00003{bottom:568.108000pt;}
.y9f6_c00003{bottom:568.213333pt;}
.y547_c00003{bottom:568.693333pt;}
.y30a_c00003{bottom:568.748000pt;}
.y545_c00003{bottom:568.853333pt;}
.y50b_c00003{bottom:569.334667pt;}
.y292_c00003{bottom:569.388000pt;}
.ybef_c00003{bottom:569.493333pt;}
.y50a_c00003{bottom:569.494667pt;}
.yf18_c00003{bottom:569.550133pt;}
.yeff_c00003{bottom:569.709333pt;}
.y8a1_c00003{bottom:569.813067pt;}
.y86e_c00003{bottom:569.813333pt;}
.y816_c00003{bottom:569.814667pt;}
.y68_c00003{bottom:570.037200pt;}
.y86c_c00003{bottom:570.134667pt;}
.y13c9_c00003{bottom:570.186027pt;}
.yd15_c00003{bottom:570.493333pt;}
.y3aa_c00003{bottom:570.774667pt;}
.y9b4_c00003{bottom:571.093333pt;}
.y63f_c00003{bottom:571.254667pt;}
.y4c1_c00003{bottom:571.412907pt;}
.yfe4_c00003{bottom:571.453467pt;}
.y10af_c00003{bottom:571.544400pt;}
.y1095_c00003{bottom:571.544800pt;}
.y107b_c00003{bottom:571.545733pt;}
.y1064_c00003{bottom:571.546667pt;}
.y155_c00003{bottom:571.945333pt;}
.ya64_c00003{bottom:572.052133pt;}
.y19_c00003{bottom:572.109333pt;}
.y10d9_c00003{bottom:572.186000pt;}
.y9f5_c00003{bottom:572.532000pt;}
.y546_c00003{bottom:572.854667pt;}
.yaaf_c00003{bottom:573.013333pt;}
.yb5e_c00003{bottom:573.174667pt;}
.yc2d_c00003{bottom:573.229333pt;}
.yaae_c00003{bottom:573.493333pt;}
.y7b3_c00003{bottom:573.813333pt;}
.y84d_c00003{bottom:573.814667pt;}
.y1318_c00003{bottom:573.870000pt;}
.y5ca_c00003{bottom:573.973333pt;}
.y84c_c00003{bottom:573.974667pt;}
.ycee_c00003{bottom:574.013333pt;}
.y5c8_c00003{bottom:574.133333pt;}
.y11cc_c00003{bottom:574.306800pt;}
.y1121_c00003{bottom:574.307867pt;}
.y112d_c00003{bottom:574.308133pt;}
.y11d4_c00003{bottom:574.308400pt;}
.y1139_c00003{bottom:574.308933pt;}
.y11e0_c00003{bottom:574.309467pt;}
.y1145_c00003{bottom:574.309733pt;}
.y6f7_c00003{bottom:574.454667pt;}
.yed5_c00003{bottom:574.509333pt;}
.y6f6_c00003{bottom:574.614667pt;}
.y975_c00003{bottom:574.933467pt;}
.y44d_c00003{bottom:575.254667pt;}
.ye82_c00003{bottom:575.469333pt;}
.ye87_c00003{bottom:575.469467pt;}
.yb3f_c00003{bottom:576.213333pt;}
.y1bf_c00003{bottom:576.425333pt;}
.y782_c00003{bottom:576.853200pt;}
.ya65_c00003{bottom:576.853333pt;}
.ybb4_c00003{bottom:577.013333pt;}
.y727_c00003{bottom:577.173067pt;}
.yae4_c00003{bottom:577.333333pt;}
.y920_c00003{bottom:577.333600pt;}
.ycbe_c00003{bottom:577.373333pt;}
.y3a7_c00003{bottom:577.491867pt;}
.y3ac_c00003{bottom:577.493333pt;}
.y922_c00003{bottom:577.813333pt;}
.y123b_c00003{bottom:577.852000pt;}
.y112_c00003{bottom:577.865333pt;}
.yd5_c00003{bottom:577.869333pt;}
.y412_c00003{bottom:578.130667pt;}
.y5c9_c00003{bottom:578.134667pt;}
.ya25_c00003{bottom:578.293333pt;}
.y4c0_c00003{bottom:578.453067pt;}
.ybf4_c00003{bottom:578.453333pt;}
.y593_c00003{bottom:578.454667pt;}
.yc1c_c00003{bottom:578.509333pt;}
.y592_c00003{bottom:578.614667pt;}
.ye17_c00003{bottom:578.669333pt;}
.y813_c00003{bottom:578.774667pt;}
.y1c0_c00003{bottom:578.828000pt;}
.y49a_c00003{bottom:578.932267pt;}
.y307_c00003{bottom:578.985333pt;}
.y6c3_c00003{bottom:579.253333pt;}
.yfad_c00003{bottom:579.385600pt;}
.yfb5_c00003{bottom:579.386533pt;}
.yfbf_c00003{bottom:579.387467pt;}
.yfc9_c00003{bottom:579.388400pt;}
.yfd3_c00003{bottom:579.389333pt;}
.y6c1_c00003{bottom:579.413333pt;}
.ydea_c00003{bottom:579.469333pt;}
.y28f_c00003{bottom:579.625333pt;}
.yd9a_c00003{bottom:579.788000pt;}
.y8e2_c00003{bottom:580.212133pt;}
.y74c_c00003{bottom:580.213333pt;}
.y63c_c00003{bottom:580.534667pt;}
.ydc5_c00003{bottom:580.588000pt;}
.yb0f_c00003{bottom:580.693333pt;}
.yad_c00003{bottom:580.749333pt;}
.y1019_c00003{bottom:580.828400pt;}
.y248_c00003{bottom:580.908000pt;}
.yd44_c00003{bottom:580.909333pt;}
.y13e1_c00003{bottom:581.066027pt;}
.y13c8_c00003{bottom:581.066240pt;}
.y8e4_c00003{bottom:581.173333pt;}
.y308_c00003{bottom:581.388000pt;}
.y7da_c00003{bottom:581.494667pt;}
.y1046_c00003{bottom:581.506800pt;}
.y1269_c00003{bottom:581.533333pt;}
.y9b2_c00003{bottom:581.653333pt;}
.y68c_c00003{bottom:581.654667pt;}
.y89_c00003{bottom:581.709333pt;}
.y68b_c00003{bottom:581.814667pt;}
.y44b_c00003{bottom:581.972400pt;}
.y44e_c00003{bottom:581.973333pt;}
.y290_c00003{bottom:582.028000pt;}
.y921_c00003{bottom:582.133333pt;}
.y3a8_c00003{bottom:582.134667pt;}
.y609_c00003{bottom:582.294667pt;}
.yefd_c00003{bottom:582.350667pt;}
.y608_c00003{bottom:582.454667pt;}
.ybb5_c00003{bottom:582.614667pt;}
.y45_c00003{bottom:582.665067pt;}
.yb7a_c00003{bottom:582.774667pt;}
.ye34_c00003{bottom:582.989067pt;}
.y116a_c00003{bottom:583.386800pt;}
.y6c2_c00003{bottom:583.574667pt;}
.ye84_c00003{bottom:583.789200pt;}
.y9f3_c00003{bottom:584.053333pt;}
.y86a_c00003{bottom:584.372933pt;}
.y74e_c00003{bottom:584.373333pt;}
.y8c2_c00003{bottom:584.374133pt;}
.y9f1_c00003{bottom:584.533333pt;}
.y154_c00003{bottom:584.585333pt;}
.y74d_c00003{bottom:584.694667pt;}
.y8e3_c00003{bottom:585.013333pt;}
.yb3b_c00003{bottom:585.173333pt;}
.ybd1_c00003{bottom:585.174667pt;}
.y509_c00003{bottom:585.493067pt;}
.yb78_c00003{bottom:585.493333pt;}
.yaac_c00003{bottom:585.494667pt;}
.y811_c00003{bottom:585.653333pt;}
.ybcc_c00003{bottom:585.813333pt;}
.yf17_c00003{bottom:586.350667pt;}
.y9b1_c00003{bottom:586.453333pt;}
.y67_c00003{bottom:586.516933pt;}
.yb91_c00003{bottom:586.613333pt;}
.y44c_c00003{bottom:586.614667pt;}
.yed1_c00003{bottom:587.150667pt;}
.ybec_c00003{bottom:587.413333pt;}
.y5c6_c00003{bottom:587.414667pt;}
.y63a_c00003{bottom:587.893333pt;}
.yfe3_c00003{bottom:588.253467pt;}
.y9f2_c00003{bottom:588.853333pt;}
.yc60_c00003{bottom:588.909467pt;}
.y1bd_c00003{bottom:589.065333pt;}
.ya63_c00003{bottom:589.333333pt;}
.y973_c00003{bottom:589.334000pt;}
.y540_c00003{bottom:589.493333pt;}
.y84b_c00003{bottom:589.494533pt;}
.y814_c00003{bottom:589.653333pt;}
.yae2_c00003{bottom:589.814667pt;}
.y812_c00003{bottom:589.974667pt;}
.y974_c00003{bottom:590.293333pt;}
.y111_c00003{bottom:590.505333pt;}
.y7f4_c00003{bottom:591.255333pt;}
.ye47_c00003{bottom:591.309333pt;}
.y801_c00003{bottom:591.412933pt;}
.y799_c00003{bottom:591.413733pt;}
.y1be_c00003{bottom:591.468000pt;}
.y18_c00003{bottom:591.469333pt;}
.y305_c00003{bottom:591.625333pt;}
.yd14_c00003{bottom:591.773333pt;}
.y13e0_c00003{bottom:591.946240pt;}
.y13c7_c00003{bottom:591.946453pt;}
.y63d_c00003{bottom:592.053333pt;}
.y28d_c00003{bottom:592.265333pt;}
.y63b_c00003{bottom:592.374667pt;}
.y246_c00003{bottom:592.425333pt;}
.yeba_c00003{bottom:592.429333pt;}
.yaad_c00003{bottom:593.173333pt;}
.y6c0_c00003{bottom:593.174667pt;}
.y6bf_c00003{bottom:593.334667pt;}
.y544_c00003{bottom:593.653333pt;}
.y541_c00003{bottom:593.974667pt;}
.y306_c00003{bottom:594.028000pt;}
.y91f_c00003{bottom:594.133333pt;}
.y9ae_c00003{bottom:594.134667pt;}
.y247_c00003{bottom:594.348000pt;}
.y91e_c00003{bottom:594.613333pt;}
.y28e_c00003{bottom:594.668000pt;}
.y5c4_c00003{bottom:594.773333pt;}
.y591_c00003{bottom:595.096000pt;}
.yced_c00003{bottom:595.293333pt;}
.yb92_c00003{bottom:595.413333pt;}
.y12f4_c00003{bottom:595.470267pt;}
.y409_c00003{bottom:596.211600pt;}
.ybf3_c00003{bottom:596.213333pt;}
.y10b0_c00003{bottom:596.451200pt;}
.y1096_c00003{bottom:596.452133pt;}
.y107c_c00003{bottom:596.452533pt;}
.y1065_c00003{bottom:596.453467pt;}
.y8e1_c00003{bottom:596.533333pt;}
.y869_c00003{bottom:596.694667pt;}
.y12e2_c00003{bottom:596.750360pt;}
.y12c3_c00003{bottom:596.853333pt;}
.y39d_c00003{bottom:597.012400pt;}
.y9ef_c00003{bottom:597.014667pt;}
.y10da_c00003{bottom:597.119867pt;}
.y153_c00003{bottom:597.225333pt;}
.yd4_c00003{bottom:597.228000pt;}
.y8df_c00003{bottom:597.493333pt;}
.yde9_c00003{bottom:597.869333pt;}
.yae3_c00003{bottom:597.973333pt;}
.yaab_c00003{bottom:597.974667pt;}
.yd99_c00003{bottom:598.188000pt;}
.y68a_c00003{bottom:598.294933pt;}
.ya24_c00003{bottom:598.453333pt;}
.ycbd_c00003{bottom:598.813333pt;}
.y5c7_c00003{bottom:598.933333pt;}
.y749_c00003{bottom:598.933467pt;}
.y607_c00003{bottom:598.934133pt;}
.y7b2_c00003{bottom:599.093333pt;}
.y44_c00003{bottom:599.145333pt;}
.ydc4_c00003{bottom:599.149333pt;}
.y5c5_c00003{bottom:599.254667pt;}
.yd68_c00003{bottom:599.309333pt;}
.y7b1_c00003{bottom:599.414667pt;}
.yd43_c00003{bottom:599.469333pt;}
.y12c4_c00003{bottom:599.733333pt;}
.y12c2_c00003{bottom:599.734400pt;}
.yed4_c00003{bottom:599.789333pt;}
.yac_c00003{bottom:600.109333pt;}
.y740_c00003{bottom:600.213333pt;}
.y4b5_c00003{bottom:600.372133pt;}
.y4bf_c00003{bottom:600.373333pt;}
.yb79_c00003{bottom:600.534667pt;}
.y445_c00003{bottom:600.692400pt;}
.ye83_c00003{bottom:600.749600pt;}
.y88_c00003{bottom:601.069333pt;}
.y8e0_c00003{bottom:601.333333pt;}
.ybb2_c00003{bottom:601.334667pt;}
.y1bb_c00003{bottom:601.705333pt;}
.y9b0_c00003{bottom:601.813333pt;}
.y123a_c00003{bottom:601.852000pt;}
.y9af_c00003{bottom:602.293333pt;}
.ya60_c00003{bottom:602.294667pt;}
.yf9b_c00003{bottom:602.373867pt;}
.y13df_c00003{bottom:602.826453pt;}
.y13c6_c00003{bottom:602.826667pt;}
.yb3a_c00003{bottom:602.933333pt;}
.y66_c00003{bottom:602.996667pt;}
.y110_c00003{bottom:603.145333pt;}
.yc47_c00003{bottom:603.150667pt;}
.y80f_c00003{bottom:603.253067pt;}
.y80c_c00003{bottom:603.253333pt;}
.y1111_c00003{bottom:603.493467pt;}
.y101a_c00003{bottom:603.935733pt;}
.ye49_c00003{bottom:603.950667pt;}
.y3a6_c00003{bottom:604.051200pt;}
.y1bc_c00003{bottom:604.108000pt;}
.y303_c00003{bottom:604.265333pt;}
.yb90_c00003{bottom:604.373333pt;}
.y1047_c00003{bottom:604.614667pt;}
.y972_c00003{bottom:604.693333pt;}
.y244_c00003{bottom:604.905333pt;}
.ybee_c00003{bottom:605.173333pt;}
.y1268_c00003{bottom:605.533333pt;}
.y970_c00003{bottom:605.653333pt;}
.y7d9_c00003{bottom:605.813867pt;}
.yc5f_c00003{bottom:605.869333pt;}
.ybd0_c00003{bottom:605.973333pt;}
.y9f0_c00003{bottom:606.133333pt;}
.yb0e_c00003{bottom:606.134667pt;}
.y745_c00003{bottom:606.293333pt;}
.y9ad_c00003{bottom:606.614667pt;}
.y304_c00003{bottom:606.668000pt;}
.y73f_c00003{bottom:606.773333pt;}
.ya22_c00003{bottom:607.094667pt;}
.y797_c00003{bottom:607.253333pt;}
.y245_c00003{bottom:607.308000pt;}
.y8ab_c00003{bottom:607.573333pt;}
.y91b_c00003{bottom:607.574667pt;}
.ye33_c00003{bottom:608.269333pt;}
.y971_c00003{bottom:609.013333pt;}
.y12ae_c00003{bottom:609.374800pt;}
.yeb9_c00003{bottom:609.389200pt;}
.y899_c00003{bottom:609.493333pt;}
.y152_c00003{bottom:609.865333pt;}
.y8dc_c00003{bottom:609.974667pt;}
.y6be_c00003{bottom:610.133333pt;}
.y62d_c00003{bottom:610.133733pt;}
.y631_c00003{bottom:610.133867pt;}
.y635_c00003{bottom:610.134000pt;}
.y639_c00003{bottom:610.134533pt;}
.y411_c00003{bottom:610.290533pt;}
.y40d_c00003{bottom:610.291200pt;}
.y408_c00003{bottom:610.291867pt;}
.y403_c00003{bottom:610.293067pt;}
.y6bc_c00003{bottom:610.293333pt;}
.y17_c00003{bottom:610.828000pt;}
.ya62_c00003{bottom:610.933333pt;}
.y533_c00003{bottom:610.933733pt;}
.y537_c00003{bottom:610.933867pt;}
.y53f_c00003{bottom:610.934667pt;}
.y53b_c00003{bottom:610.935067pt;}
.y3a1_c00003{bottom:611.091867pt;}
.y39c_c00003{bottom:611.093067pt;}
.y397_c00003{bottom:611.093333pt;}
.y8ad_c00003{bottom:611.254667pt;}
.y588_c00003{bottom:611.574400pt;}
.y58c_c00003{bottom:611.574533pt;}
.y585_c00003{bottom:611.574800pt;}
.y590_c00003{bottom:611.575733pt;}
.ya61_c00003{bottom:611.893333pt;}
.y4be_c00003{bottom:612.214667pt;}
.yc1b_c00003{bottom:612.429067pt;}
.yed2_c00003{bottom:612.429333pt;}
.y741_c00003{bottom:612.533333pt;}
.yaaa_c00003{bottom:612.853467pt;}
.yd13_c00003{bottom:613.052000pt;}
.y685_c00003{bottom:613.173467pt;}
.y67d_c00003{bottom:613.173733pt;}
.y681_c00003{bottom:613.173867pt;}
.y689_c00003{bottom:613.174667pt;}
.y7ae_c00003{bottom:613.333333pt;}
.y7b0_c00003{bottom:613.333467pt;}
.y7aa_c00003{bottom:613.334533pt;}
.y6f5_c00003{bottom:613.334667pt;}
.y7f3_c00003{bottom:613.335600pt;}
.y5b8_c00003{bottom:613.493200pt;}
.y5bb_c00003{bottom:613.493333pt;}
.y5bf_c00003{bottom:613.494400pt;}
.y5c3_c00003{bottom:613.494533pt;}
.y796_c00003{bottom:613.653333pt;}
.y13c5_c00003{bottom:613.706667pt;}
.y8aa_c00003{bottom:613.973333pt;}
.yf16_c00003{bottom:614.030667pt;}
.ybf2_c00003{bottom:614.133333pt;}
.y1b9_c00003{bottom:614.345333pt;}
.y4b4_c00003{bottom:614.452400pt;}
.y4af_c00003{bottom:614.453067pt;}
.y4b9_c00003{bottom:614.453333pt;}
.y6bd_c00003{bottom:614.454667pt;}
.y44a_c00003{bottom:614.772400pt;}
.y444_c00003{bottom:614.772667pt;}
.y8ca_c00003{bottom:614.773333pt;}
.ybce_c00003{bottom:614.933333pt;}
.y80b_c00003{bottom:614.934667pt;}
.y43_c00003{bottom:615.625600pt;}
.ya23_c00003{bottom:615.733333pt;}
.ya5f_c00003{bottom:615.734667pt;}
.y10f_c00003{bottom:615.785333pt;}
.ye16_c00003{bottom:615.788000pt;}
.y91d_c00003{bottom:616.213333pt;}
.yde8_c00003{bottom:616.428000pt;}
.ycec_c00003{bottom:616.573333pt;}
.yd3_c00003{bottom:616.588000pt;}
.yc2b_c00003{bottom:616.589333pt;}
.y779_c00003{bottom:616.693333pt;}
.y1ba_c00003{bottom:616.748000pt;}
.yd98_c00003{bottom:616.749333pt;}
.y301_c00003{bottom:616.905333pt;}
.y80e_c00003{bottom:617.012933pt;}
.y91c_c00003{bottom:617.173333pt;}
.yae0_c00003{bottom:617.174533pt;}
.y96d_c00003{bottom:617.174667pt;}
.yc77_c00003{bottom:617.386933pt;}
.y242_c00003{bottom:617.545333pt;}
.ydc3_c00003{bottom:617.549333pt;}
.yae1_c00003{bottom:617.653333pt;}
.yd67_c00003{bottom:617.709333pt;}
.yeb6_c00003{bottom:617.869333pt;}
.yebb_c00003{bottom:617.869467pt;}
.yd41_c00003{bottom:618.028000pt;}
.y3a5_c00003{bottom:618.131867pt;}
.y867_c00003{bottom:618.293333pt;}
.y8de_c00003{bottom:618.613333pt;}
.y744_c00003{bottom:618.614667pt;}
.y8dd_c00003{bottom:619.093333pt;}
.yb77_c00003{bottom:619.094667pt;}
.y302_c00003{bottom:619.308000pt;}
.yab_c00003{bottom:619.469333pt;}
.y65_c00003{bottom:619.476400pt;}
.y798_c00003{bottom:619.573333pt;}
.y8ac_c00003{bottom:619.893333pt;}
.ybed_c00003{bottom:619.894667pt;}
.y243_c00003{bottom:619.948000pt;}
.y843_c00003{bottom:620.053333pt;}
.ya21_c00003{bottom:620.054667pt;}
.ycbc_c00003{bottom:620.093333pt;}
.y5b2_c00003{bottom:620.213333pt;}
.y12c1_c00003{bottom:620.214133pt;}
.y87_c00003{bottom:620.428000pt;}
.y672_c00003{bottom:620.533333pt;}
.y7ef_c00003{bottom:620.695467pt;}
.y800_c00003{bottom:620.853067pt;}
.y7fe_c00003{bottom:620.853333pt;}
.y7a2_c00003{bottom:621.013333pt;}
.y91a_c00003{bottom:621.014667pt;}
.y3fb_c00003{bottom:621.333333pt;}
.y89a_c00003{bottom:621.333440pt;}
.y10b1_c00003{bottom:621.370933pt;}
.y1097_c00003{bottom:621.371867pt;}
.y107d_c00003{bottom:621.372267pt;}
.y1066_c00003{bottom:621.373200pt;}
.y9ac_c00003{bottom:621.493200pt;}
.y6aa_c00003{bottom:621.813333pt;}
.y43c_c00003{bottom:621.973333pt;}
.y10db_c00003{bottom:622.053200pt;}
.y628_c00003{bottom:622.133333pt;}
.y1203_c00003{bottom:622.373867pt;}
.y116c_c00003{bottom:622.374267pt;}
.yb0c_c00003{bottom:622.453200pt;}
.yb0d_c00003{bottom:622.933333pt;}
.y8db_c00003{bottom:622.934667pt;}
.y6b9_c00003{bottom:623.734667pt;}
.yf71_c00003{bottom:623.773333pt;}
.y7c9_c00003{bottom:623.893333pt;}
.y5ff_c00003{bottom:624.053333pt;}
.y410_c00003{bottom:624.370800pt;}
.y40c_c00003{bottom:624.371867pt;}
.y407_c00003{bottom:624.372133pt;}
.y402_c00003{bottom:624.373333pt;}
.y13c4_c00003{bottom:624.586667pt;}
.y62c_c00003{bottom:624.693600pt;}
.y630_c00003{bottom:624.693733pt;}
.y634_c00003{bottom:624.693867pt;}
.y638_c00003{bottom:624.694933pt;}
.y96f_c00003{bottom:624.853333pt;}
.y499_c00003{bottom:625.012920pt;}
.y151_c00003{bottom:625.068000pt;}
.y3a0_c00003{bottom:625.172133pt;}
.y39b_c00003{bottom:625.173333pt;}
.y396_c00003{bottom:625.173600pt;}
.y532_c00003{bottom:625.493600pt;}
.y536_c00003{bottom:625.493733pt;}
.y53a_c00003{bottom:625.493867pt;}
.y53e_c00003{bottom:625.495067pt;}
.y7ad_c00003{bottom:625.654667pt;}
.y96e_c00003{bottom:625.813333pt;}
.y748_c00003{bottom:625.814667pt;}
.y1239_c00003{bottom:625.852000pt;}
.y584_c00003{bottom:626.134667pt;}
.y587_c00003{bottom:626.134800pt;}
.y58b_c00003{bottom:626.134933pt;}
.y58f_c00003{bottom:626.136133pt;}
.yeb8_c00003{bottom:626.189200pt;}
.ye7d_c00003{bottom:626.190267pt;}
.y9ee_c00003{bottom:626.293600pt;}
.y4b8_c00003{bottom:626.294667pt;}
.y12f3_c00003{bottom:626.510400pt;}
.y5b0_c00003{bottom:626.613333pt;}
.y7a3_c00003{bottom:626.773333pt;}
.y1b7_c00003{bottom:626.985333pt;}
.y101b_c00003{bottom:627.068533pt;}
.y7ff_c00003{bottom:627.093333pt;}
.y67c_c00003{bottom:627.733600pt;}
.y680_c00003{bottom:627.733733pt;}
.y684_c00003{bottom:627.733867pt;}
.y688_c00003{bottom:627.735067pt;}
.y1048_c00003{bottom:627.746400pt;}
.y7d3_c00003{bottom:627.893200pt;}
.y7af_c00003{bottom:627.893333pt;}
.y7a9_c00003{bottom:627.894400pt;}
.y7d8_c00003{bottom:627.894533pt;}
.ybca_c00003{bottom:627.894667pt;}
.y7f2_c00003{bottom:627.895467pt;}
.y5b7_c00003{bottom:628.053067pt;}
.y5ba_c00003{bottom:628.053200pt;}
.y5be_c00003{bottom:628.053733pt;}
.y5c2_c00003{bottom:628.054400pt;}
.y12ad_c00003{bottom:628.094533pt;}
.y6a9_c00003{bottom:628.213333pt;}
.y4b3_c00003{bottom:628.532667pt;}
.y4ae_c00003{bottom:628.533333pt;}
.y77a_c00003{bottom:628.533440pt;}
.y4bd_c00003{bottom:628.533600pt;}
.yadb_c00003{bottom:628.694667pt;}
.y449_c00003{bottom:628.852133pt;}
.y443_c00003{bottom:628.853333pt;}
.y52b_c00003{bottom:629.013333pt;}
.y96c_c00003{bottom:629.174667pt;}
.yc2a_c00003{bottom:629.229333pt;}
.y1b8_c00003{bottom:629.388000pt;}
.y1267_c00003{bottom:629.533333pt;}
.y2ff_c00003{bottom:629.545333pt;}
.yb3e_c00003{bottom:629.653333pt;}
.y868_c00003{bottom:630.133333pt;}
.y240_c00003{bottom:630.185333pt;}
.y16_c00003{bottom:630.188000pt;}
.y80a_c00003{bottom:630.773333pt;}
.yf15_c00003{bottom:630.830667pt;}
.y10e_c00003{bottom:630.988000pt;}
.yb8f_c00003{bottom:631.093333pt;}
.y6b7_c00003{bottom:631.253333pt;}
.y116e_c00003{bottom:631.614000pt;}
.y300_c00003{bottom:631.948000pt;}
.y42_c00003{bottom:632.105867pt;}
.y3a4_c00003{bottom:632.211600pt;}
.y673_c00003{bottom:632.373440pt;}
.yefb_c00003{bottom:632.429067pt;}
.yfe5_c00003{bottom:632.453467pt;}
.y5b3_c00003{bottom:632.533333pt;}
.y5b1_c00003{bottom:632.533640pt;}
.y128d_c00003{bottom:632.573733pt;}
.y241_c00003{bottom:632.588000pt;}
.y3fc_c00003{bottom:632.693227pt;}
.yaa2_c00003{bottom:633.012267pt;}
.ya9d_c00003{bottom:633.013467pt;}
.ya99_c00003{bottom:633.013600pt;}
.y57c_c00003{bottom:633.173440pt;}
.ye80_c00003{bottom:633.389333pt;}
.ya5e_c00003{bottom:633.973467pt;}
.y6ab_c00003{bottom:634.133333pt;}
.ye15_c00003{bottom:634.188000pt;}
.y629_c00003{bottom:634.453333pt;}
.yb08_c00003{bottom:634.454667pt;}
.yd12_c00003{bottom:634.493333pt;}
.ye81_c00003{bottom:634.669333pt;}
.ye7f_c00003{bottom:634.670400pt;}
.yde7_c00003{bottom:634.828000pt;}
.ye32_c00003{bottom:634.829467pt;}
.y7ee_c00003{bottom:635.255333pt;}
.yd97_c00003{bottom:635.309333pt;}
.y130b_c00003{bottom:635.310000pt;}
.y743_c00003{bottom:635.412933pt;}
.y74b_c00003{bottom:635.413200pt;}
.y6bb_c00003{bottom:635.413333pt;}
.y13c3_c00003{bottom:635.466667pt;}
.y7ca_c00003{bottom:635.733440pt;}
.y6b8_c00003{bottom:635.734667pt;}
.y600_c00003{bottom:635.893440pt;}
.yd2_c00003{bottom:635.949333pt;}
.y508_c00003{bottom:636.053067pt;}
.ydc2_c00003{bottom:636.109333pt;}
.yd66_c00003{bottom:636.269333pt;}
.y497_c00003{bottom:636.373333pt;}
.yd40_c00003{bottom:636.428000pt;}
.y150_c00003{bottom:636.585333pt;}
.y711_c00003{bottom:636.693333pt;}
.yb8d_c00003{bottom:636.854667pt;}
.yc1a_c00003{bottom:637.709333pt;}
.ya20_c00003{bottom:637.813333pt;}
.ya1f_c00003{bottom:637.813600pt;}
.y918_c00003{bottom:637.813733pt;}
.yceb_c00003{bottom:638.013333pt;}
.y919_c00003{bottom:638.293333pt;}
.y9e7_c00003{bottom:638.294667pt;}
.y40f_c00003{bottom:638.451067pt;}
.y40b_c00003{bottom:638.451600pt;}
.y406_c00003{bottom:638.451867pt;}
.y401_c00003{bottom:638.453067pt;}
.ybcf_c00003{bottom:638.454667pt;}
.yb5f_c00003{bottom:638.613333pt;}
.yaa_c00003{bottom:638.828000pt;}
.y39f_c00003{bottom:639.252400pt;}
.y39a_c00003{bottom:639.253067pt;}
.y395_c00003{bottom:639.253333pt;}
.y62b_c00003{bottom:639.253467pt;}
.y62f_c00003{bottom:639.253600pt;}
.y633_c00003{bottom:639.253733pt;}
.y637_c00003{bottom:639.254800pt;}
.y1b5_c00003{bottom:639.625333pt;}
.y86_c00003{bottom:639.788000pt;}
.yb76_c00003{bottom:640.053333pt;}
.y531_c00003{bottom:640.053467pt;}
.y535_c00003{bottom:640.053600pt;}
.y539_c00003{bottom:640.053733pt;}
.y53d_c00003{bottom:640.054933pt;}
.y7ac_c00003{bottom:640.214667pt;}
.y12c0_c00003{bottom:640.374533pt;}
.y583_c00003{bottom:640.694533pt;}
.y442_c00003{bottom:640.694667pt;}
.y58a_c00003{bottom:640.694800pt;}
.y58e_c00003{bottom:640.695467pt;}
.yc5d_c00003{bottom:640.910667pt;}
.ycbb_c00003{bottom:641.373333pt;}
.yada_c00003{bottom:641.653200pt;}
.y7ec_c00003{bottom:641.653333pt;}
.yc2c_c00003{bottom:641.869333pt;}
.y1b6_c00003{bottom:642.028000pt;}
.y2fd_c00003{bottom:642.185333pt;}
.y67b_c00003{bottom:642.293467pt;}
.y67f_c00003{bottom:642.293600pt;}
.y683_c00003{bottom:642.293733pt;}
.y687_c00003{bottom:642.294933pt;}
.y7d2_c00003{bottom:642.453067pt;}
.y7d7_c00003{bottom:642.453333pt;}
.y7a8_c00003{bottom:642.454267pt;}
.y809_c00003{bottom:642.454667pt;}
.y7f1_c00003{bottom:642.455333pt;}
.y10d_c00003{bottom:642.505333pt;}
.y4b7_c00003{bottom:642.611600pt;}
.y4b2_c00003{bottom:642.612400pt;}
.y5b6_c00003{bottom:642.612933pt;}
.y4ad_c00003{bottom:642.613067pt;}
.y747_c00003{bottom:642.613200pt;}
.y4bc_c00003{bottom:642.613333pt;}
.y5bd_c00003{bottom:642.613600pt;}
.y5c1_c00003{bottom:642.614267pt;}
.y23e_c00003{bottom:642.825333pt;}
.y448_c00003{bottom:642.932400pt;}
.yeb7_c00003{bottom:643.149600pt;}
.ye7b_c00003{bottom:643.150667pt;}
.y710_c00003{bottom:643.253333pt;}
.y96a_c00003{bottom:644.052933pt;}
.yb3c_c00003{bottom:644.374667pt;}
.y96b_c00003{bottom:644.533333pt;}
.y2fe_c00003{bottom:644.588000pt;}
.y9e4_c00003{bottom:645.014667pt;}
.y23f_c00003{bottom:645.228000pt;}
.ybc9_c00003{bottom:645.814667pt;}
.y3a3_c00003{bottom:646.291867pt;}
.y10b2_c00003{bottom:646.303733pt;}
.y1098_c00003{bottom:646.304133pt;}
.y107e_c00003{bottom:646.305067pt;}
.y1067_c00003{bottom:646.306000pt;}
.y13de_c00003{bottom:646.348000pt;}
.ya98_c00003{bottom:646.453200pt;}
.yaa1_c00003{bottom:646.453467pt;}
.ya9c_c00003{bottom:646.453600pt;}
.y12ac_c00003{bottom:646.653867pt;}
.y10dc_c00003{bottom:646.973467pt;}
.yc46_c00003{bottom:647.789333pt;}
.ya54_c00003{bottom:647.894667pt;}
.y41_c00003{bottom:648.586133pt;}
.yb73_c00003{bottom:649.014667pt;}
.y14f_c00003{bottom:649.065333pt;}
.y712_c00003{bottom:649.173333pt;}
.y37f_c00003{bottom:649.481333pt;}
.y15_c00003{bottom:649.549333pt;}
.y36b_c00003{bottom:649.641333pt;}
.y7ed_c00003{bottom:649.815200pt;}
.y1238_c00003{bottom:649.852000pt;}
.y742_c00003{bottom:649.973333pt;}
.y74a_c00003{bottom:649.973600pt;}
.y6b2_c00003{bottom:650.134000pt;}
.y6b6_c00003{bottom:650.134667pt;}
.y101c_c00003{bottom:650.175867pt;}
.yb07_c00003{bottom:650.293333pt;}
.y913_c00003{bottom:650.294667pt;}
.y1049_c00003{bottom:650.854800pt;}
.y8d1_c00003{bottom:651.254667pt;}
.y128c_c00003{bottom:651.293467pt;}
.ye7e_c00003{bottom:651.470933pt;}
.ye31_c00003{bottom:651.789333pt;}
.yaa7_c00003{bottom:652.213467pt;}
.y9e6_c00003{bottom:652.214667pt;}
.y1b3_c00003{bottom:652.265333pt;}
.yc94_c00003{bottom:652.429333pt;}
.y64_c00003{bottom:652.436267pt;}
.y40e_c00003{bottom:652.531333pt;}
.y40a_c00003{bottom:652.531867pt;}
.y405_c00003{bottom:652.532133pt;}
.y400_c00003{bottom:652.533333pt;}
.y339_c00003{bottom:652.573333pt;}
.y12bd_c00003{bottom:652.574533pt;}
.ye14_c00003{bottom:652.749333pt;}
.yaa9_c00003{bottom:653.173733pt;}
.y39e_c00003{bottom:653.332667pt;}
.y399_c00003{bottom:653.333333pt;}
.y394_c00003{bottom:653.334000pt;}
.yde6_c00003{bottom:653.388000pt;}
.y1266_c00003{bottom:653.533333pt;}
.yc5c_c00003{bottom:653.550667pt;}
.yaa4_c00003{bottom:653.653200pt;}
.yd96_c00003{bottom:653.709333pt;}
.y62a_c00003{bottom:653.813333pt;}
.y62e_c00003{bottom:653.813467pt;}
.y632_c00003{bottom:653.813600pt;}
.y636_c00003{bottom:653.814667pt;}
.yaa6_c00003{bottom:654.133333pt;}
.y4bb_c00003{bottom:654.454667pt;}
.y530_c00003{bottom:654.613333pt;}
.y534_c00003{bottom:654.613467pt;}
.y538_c00003{bottom:654.613600pt;}
.ybcb_c00003{bottom:654.614667pt;}
.y53c_c00003{bottom:654.614800pt;}
.y1b4_c00003{bottom:654.668000pt;}
.ydc1_c00003{bottom:654.669333pt;}
.y7d5_c00003{bottom:654.774667pt;}
.y2fb_c00003{bottom:654.825333pt;}
.yd65_c00003{bottom:654.828000pt;}
.y10c_c00003{bottom:654.985333pt;}
.yd3f_c00003{bottom:654.988000pt;}
.yad9_c00003{bottom:655.093333pt;}
.y582_c00003{bottom:655.253333pt;}
.y586_c00003{bottom:655.254533pt;}
.y589_c00003{bottom:655.254667pt;}
.y58d_c00003{bottom:655.254800pt;}
.yd1_c00003{bottom:655.309333pt;}
.y23c_c00003{bottom:655.465333pt;}
.yadf_c00003{bottom:655.574533pt;}
.y964_c00003{bottom:655.574667pt;}
.yd11_c00003{bottom:655.773333pt;}
.yadd_c00003{bottom:656.053200pt;}
.ya8e_c00003{bottom:656.533333pt;}
.y9a8_c00003{bottom:656.533467pt;}
.ya94_c00003{bottom:656.534267pt;}
.ya91_c00003{bottom:656.534400pt;}
.y4b6_c00003{bottom:656.691867pt;}
.y4b1_c00003{bottom:656.693067pt;}
.y4ac_c00003{bottom:656.693333pt;}
.y67a_c00003{bottom:656.853333pt;}
.y67e_c00003{bottom:656.853467pt;}
.y682_c00003{bottom:656.853600pt;}
.y686_c00003{bottom:656.853733pt;}
.y447_c00003{bottom:657.012667pt;}
.y7d1_c00003{bottom:657.012933pt;}
.y441_c00003{bottom:657.013600pt;}
.y7ab_c00003{bottom:657.014267pt;}
.y7a7_c00003{bottom:657.014667pt;}
.y7f0_c00003{bottom:657.015200pt;}
.y5b5_c00003{bottom:657.173333pt;}
.y5b9_c00003{bottom:657.173467pt;}
.y746_c00003{bottom:657.173600pt;}
.y5bc_c00003{bottom:657.174000pt;}
.y5c0_c00003{bottom:657.174133pt;}
.y8ae_c00003{bottom:657.174667pt;}
.y13c2_c00003{bottom:657.226453pt;}
.y2fc_c00003{bottom:657.228000pt;}
.y9ab_c00003{bottom:657.493200pt;}
.yaa8_c00003{bottom:657.493333pt;}
.y9a1_c00003{bottom:657.494320pt;}
.y12f2_c00003{bottom:657.550533pt;}
.yefa_c00003{bottom:657.709333pt;}
.yb75_c00003{bottom:657.813333pt;}
.y23d_c00003{bottom:657.868000pt;}
.y9a4_c00003{bottom:657.974533pt;}
.ya9_c00003{bottom:658.189333pt;}
.y810_c00003{bottom:658.293200pt;}
.y808_c00003{bottom:658.293333pt;}
.y80d_c00003{bottom:658.294533pt;}
.yb09_c00003{bottom:658.453200pt;}
.y9a6_c00003{bottom:658.453333pt;}
.yf14_c00003{bottom:658.509467pt;}
.y12e1_c00003{bottom:658.830093pt;}
.y9ec_c00003{bottom:658.933200pt;}
.yb0b_c00003{bottom:658.933333pt;}
.y85_c00003{bottom:659.149333pt;}
.ycea_c00003{bottom:659.293333pt;}
.y9ed_c00003{bottom:659.413867pt;}
.ya9b_c00003{bottom:659.893200pt;}
.ya95_c00003{bottom:659.893333pt;}
.yaa0_c00003{bottom:659.893600pt;}
.ye7c_c00003{bottom:659.950667pt;}
.y3a2_c00003{bottom:660.372133pt;}
.y9e8_c00003{bottom:660.373733pt;}
.y12d7_c00003{bottom:660.574533pt;}
.y6ee_c00003{bottom:660.693333pt;}
.y9ea_c00003{bottom:660.853333pt;}
.ya56_c00003{bottom:661.334667pt;}
.y14e_c00003{bottom:661.705333pt;}
.y9a9_c00003{bottom:661.813333pt;}
.yad8_c00003{bottom:662.293333pt;}
.yed0_c00003{bottom:662.506933pt;}
.y99f_c00003{bottom:662.774667pt;}
.ycba_c00003{bottom:662.813333pt;}
.ya5a_c00003{bottom:663.253067pt;}
.y950_c00003{bottom:663.254667pt;}
.ya57_c00003{bottom:663.733333pt;}
.ya53_c00003{bottom:663.734400pt;}
.ya5d_c00003{bottom:664.213600pt;}
.y9a0_c00003{bottom:664.214667pt;}
.yc19_c00003{bottom:664.429333pt;}
.yb06_c00003{bottom:664.693333pt;}
.y917_c00003{bottom:664.694400pt;}
.y6b1_c00003{bottom:664.853333pt;}
.y6b5_c00003{bottom:664.854400pt;}
.y1b1_c00003{bottom:664.905333pt;}
.y40_c00003{bottom:665.066400pt;}
.y912_c00003{bottom:665.173600pt;}
.y8d7_c00003{bottom:665.174533pt;}
.y12ab_c00003{bottom:665.374133pt;}
.yaa5_c00003{bottom:665.653200pt;}
.ya58_c00003{bottom:665.654253pt;}
.y8d0_c00003{bottom:665.654400pt;}
.y8da_c00003{bottom:666.133333pt;}
.yc5e_c00003{bottom:666.189333pt;}
.y404_c00003{bottom:666.612800pt;}
.y915_c00003{bottom:666.612920pt;}
.y9e0_c00003{bottom:666.613333pt;}
.y963_c00003{bottom:666.614667pt;}
.ye46_c00003{bottom:666.666667pt;}
.yb8e_c00003{bottom:666.773333pt;}
.y1317_c00003{bottom:666.989333pt;}
.yaa3_c00003{bottom:667.093333pt;}
.y8d3_c00003{bottom:667.093960pt;}
.y1b2_c00003{bottom:667.308000pt;}
.y398_c00003{bottom:667.413067pt;}
.y2f9_c00003{bottom:667.465333pt;}
.y8d5_c00003{bottom:667.573333pt;}
.y968_c00003{bottom:667.573467pt;}
.y10b_c00003{bottom:667.625333pt;}
.y130a_c00003{bottom:667.629333pt;}
.yade_c00003{bottom:668.053200pt;}
.y23a_c00003{bottom:668.105333pt;}
.y13c1_c00003{bottom:668.106667pt;}
.y13dd_c00003{bottom:668.106973pt;}
.y969_c00003{bottom:668.533200pt;}
.yeb4_c00003{bottom:668.591867pt;}
.ybcd_c00003{bottom:668.693333pt;}
.y14_c00003{bottom:668.909333pt;}
.y63_c00003{bottom:668.916000pt;}
.ya5b_c00003{bottom:669.014667pt;}
.yadc_c00003{bottom:669.493333pt;}
.y7a6_c00003{bottom:669.654667pt;}
.y52f_c00003{bottom:669.814667pt;}
.y2fa_c00003{bottom:669.868000pt;}
.y965_c00003{bottom:669.973333pt;}
.y9a5_c00003{bottom:669.974533pt;}
.y807_c00003{bottom:670.294667pt;}
.y8d8_c00003{bottom:670.453333pt;}
.y23b_c00003{bottom:670.508000pt;}
.y4b0_c00003{bottom:670.773333pt;}
.y4ba_c00003{bottom:670.773600pt;}
.y9aa_c00003{bottom:670.933333pt;}
.yb0a_c00003{bottom:670.933413pt;}
.y9a2_c00003{bottom:670.934453pt;}
.y446_c00003{bottom:671.092400pt;}
.y440_c00003{bottom:671.093333pt;}
.ye13_c00003{bottom:671.149333pt;}
.y10b3_c00003{bottom:671.223467pt;}
.y1099_c00003{bottom:671.223867pt;}
.y107f_c00003{bottom:671.224800pt;}
.y1068_c00003{bottom:671.225733pt;}
.y12e0_c00003{bottom:671.310307pt;}
.ya8d_c00003{bottom:671.413067pt;}
.ya93_c00003{bottom:671.414000pt;}
.ya90_c00003{bottom:671.414133pt;}
.y9a3_c00003{bottom:671.414667pt;}
.y7d0_c00003{bottom:671.573333pt;}
.y7d4_c00003{bottom:671.573467pt;}
.y7d6_c00003{bottom:671.573600pt;}
.y9a7_c00003{bottom:671.893333pt;}
.y10dd_c00003{bottom:671.905733pt;}
.yde5_c00003{bottom:671.949333pt;}
.yd95_c00003{bottom:672.269333pt;}
.yb74_c00003{bottom:672.534667pt;}
.y6ef_c00003{bottom:672.693333pt;}
.y910_c00003{bottom:672.853333pt;}
.y9e9_c00003{bottom:672.853427pt;}
.y136f_c00003{bottom:672.907893pt;}
.ydc0_c00003{bottom:673.069333pt;}
.yd64_c00003{bottom:673.228000pt;}
.ya9f_c00003{bottom:673.333200pt;}
.y8cc_c00003{bottom:673.333333pt;}
.ya97_c00003{bottom:673.333467pt;}
.yd3e_c00003{bottom:673.389333pt;}
.y9e2_c00003{bottom:673.813333pt;}
.y1237_c00003{bottom:673.852000pt;}
.yf27_c00003{bottom:674.333733pt;}
.y14d_c00003{bottom:674.345333pt;}
.yb39_c00003{bottom:674.613600pt;}
.yb5d_c00003{bottom:674.614667pt;}
.yd0_c00003{bottom:674.669333pt;}
.y9eb_c00003{bottom:674.773333pt;}
.y960_c00003{bottom:675.253333pt;}
.yf13_c00003{bottom:675.469333pt;}
.ya55_c00003{bottom:676.214667pt;}
.yc9e_c00003{bottom:676.429333pt;}
.yd10_c00003{bottom:677.052000pt;}
.y1265_c00003{bottom:677.533333pt;}
.y1af_c00003{bottom:677.545333pt;}
.ya8_c00003{bottom:677.549333pt;}
.ya59_c00003{bottom:677.654253pt;}
.y116d_c00003{bottom:677.693733pt;}
.y84_c00003{bottom:678.509333pt;}
.ya52_c00003{bottom:678.614667pt;}
.y1172_c00003{bottom:678.880000pt;}
.y13c0_c00003{bottom:678.986667pt;}
.y916_c00003{bottom:679.093133pt;}
.ya5c_c00003{bottom:679.093333pt;}
.y8d4_c00003{bottom:679.093960pt;}
.y12d4_c00003{bottom:679.414667pt;}
.y1316_c00003{bottom:679.469547pt;}
.y914_c00003{bottom:679.573333pt;}
.y6b0_c00003{bottom:679.573600pt;}
.y6b4_c00003{bottom:679.574133pt;}
.y1b0_c00003{bottom:679.948000pt;}
.y8cf_c00003{bottom:680.053333pt;}
.y2f7_c00003{bottom:680.105333pt;}
.y10a_c00003{bottom:680.265333pt;}
.y8d9_c00003{bottom:680.533333pt;}
.yce9_c00003{bottom:680.573333pt;}
.y238_c00003{bottom:680.745333pt;}
.y136e_c00003{bottom:680.748000pt;}
.y8d6_c00003{bottom:681.014667pt;}
.yc18_c00003{bottom:681.229333pt;}
.y966_c00003{bottom:681.493120pt;}
.y3f_c00003{bottom:681.546667pt;}
.y962_c00003{bottom:681.973333pt;}
.y2f8_c00003{bottom:682.508000pt;}
.y967_c00003{bottom:682.933333pt;}
.y239_c00003{bottom:683.148000pt;}
.y3ff_c00003{bottom:683.733333pt;}
.y34c_c00003{bottom:683.982933pt;}
.y393_c00003{bottom:684.053333pt;}
.ycb9_c00003{bottom:684.093333pt;}
.y12aa_c00003{bottom:684.093467pt;}
.y341_c00003{bottom:685.102267pt;}
.y37e_c00003{bottom:685.261333pt;}
.y62_c00003{bottom:685.395733pt;}
.y368_c00003{bottom:685.421333pt;}
.y43f_c00003{bottom:685.493333pt;}
.ye78_c00003{bottom:685.550667pt;}
.yeb3_c00003{bottom:685.551733pt;}
.y338_c00003{bottom:686.014667pt;}
.ya8c_c00003{bottom:686.293333pt;}
.ya92_c00003{bottom:686.294267pt;}
.ya8f_c00003{bottom:686.294400pt;}
.ya9e_c00003{bottom:686.773333pt;}
.ya9a_c00003{bottom:686.773467pt;}
.ya96_c00003{bottom:686.773600pt;}
.ye30_c00003{bottom:686.829067pt;}
.y14c_c00003{bottom:686.985333pt;}
.y104a_c00003{bottom:687.493867pt;}
.y390_c00003{bottom:687.774533pt;}
.yecf_c00003{bottom:687.787200pt;}
.y1309_c00003{bottom:687.949600pt;}
.y9e1_c00003{bottom:688.213333pt;}
.y13_c00003{bottom:688.269333pt;}
.y12f1_c00003{bottom:688.590667pt;}
.ye12_c00003{bottom:689.709333pt;}
.y13bf_c00003{bottom:689.866667pt;}
.y1ad_c00003{bottom:690.185333pt;}
.yde4_c00003{bottom:690.349333pt;}
.yd94_c00003{bottom:690.669333pt;}
.ya51_c00003{bottom:691.094667pt;}
.ydbf_c00003{bottom:691.628000pt;}
.y13a1_c00003{bottom:691.786667pt;}
.yd63_c00003{bottom:691.789333pt;}
.ye45_c00003{bottom:691.946933pt;}
.yd3d_c00003{bottom:691.949333pt;}
.yc29_c00003{bottom:691.949733pt;}
.y8cd_c00003{bottom:692.054667pt;}
.yc45_c00003{bottom:692.269333pt;}
.y911_c00003{bottom:692.534667pt;}
.y1ae_c00003{bottom:692.588000pt;}
.y2f5_c00003{bottom:692.745333pt;}
.y109_c00003{bottom:692.905333pt;}
.y9e5_c00003{bottom:693.014667pt;}
.yb38_c00003{bottom:693.333333pt;}
.y236_c00003{bottom:693.385333pt;}
.y961_c00003{bottom:693.494667pt;}
.y128b_c00003{bottom:693.853333pt;}
.ye7a_c00003{bottom:693.870533pt;}
.yeb0_c00003{bottom:693.872000pt;}
.yeb5_c00003{bottom:693.872533pt;}
.y12d6_c00003{bottom:694.014667pt;}
.ycf_c00003{bottom:694.028000pt;}
.y6af_c00003{bottom:694.293333pt;}
.y6b3_c00003{bottom:694.293867pt;}
.y2f6_c00003{bottom:695.148000pt;}
.ye2e_c00003{bottom:695.309333pt;}
.y136d_c00003{bottom:695.786347pt;}
.y237_c00003{bottom:695.788000pt;}
.y10b4_c00003{bottom:696.157333pt;}
.y109a_c00003{bottom:696.157733pt;}
.y10c1_c00003{bottom:696.157867pt;}
.y1080_c00003{bottom:696.158667pt;}
.y1069_c00003{bottom:696.159600pt;}
.y10de_c00003{bottom:696.826000pt;}
.ya7_c00003{bottom:696.909333pt;}
.yc93_c00003{bottom:696.910667pt;}
.y1236_c00003{bottom:697.852000pt;}
.y83_c00003{bottom:697.869333pt;}
.y3e_c00003{bottom:698.026933pt;}
.y139f_c00003{bottom:698.345333pt;}
.yd0f_c00003{bottom:698.493333pt;}
.yf26_c00003{bottom:699.614000pt;}
.y13be_c00003{bottom:700.746973pt;}
.y13dc_c00003{bottom:700.748000pt;}
.y1264_c00003{bottom:701.533333pt;}
.y61_c00003{bottom:701.875467pt;}
.yce8_c00003{bottom:702.013333pt;}
.y14b_c00003{bottom:702.188000pt;}
.y12df_c00003{bottom:702.350440pt;}
.ye76_c00003{bottom:702.350667pt;}
.yeb2_c00003{bottom:702.351733pt;}
.yb72_c00003{bottom:702.773333pt;}
.y1ab_c00003{bottom:702.825333pt;}
.yf10_c00003{bottom:703.149333pt;}
.y372_c00003{bottom:703.472000pt;}
.y136c_c00003{bottom:703.626453pt;}
.y369_c00003{bottom:703.628000pt;}
.yc9d_c00003{bottom:704.111600pt;}
.y1ac_c00003{bottom:705.228000pt;}
.ycb7_c00003{bottom:705.373333pt;}
.y2f3_c00003{bottom:705.385333pt;}
.y234_c00003{bottom:706.025333pt;}
.yef9_c00003{bottom:706.989067pt;}
.y6ae_c00003{bottom:707.094667pt;}
.y12_c00003{bottom:707.628000pt;}
.y139e_c00003{bottom:707.787080pt;}
.y2f4_c00003{bottom:707.788000pt;}
.y108_c00003{bottom:708.108000pt;}
.ye11_c00003{bottom:708.109333pt;}
.y1308_c00003{bottom:708.269333pt;}
.y235_c00003{bottom:708.428000pt;}
.yde3_c00003{bottom:708.909333pt;}
.yd93_c00003{bottom:709.228000pt;}
.ydbe_c00003{bottom:710.028000pt;}
.yd62_c00003{bottom:710.189333pt;}
.yd3c_c00003{bottom:710.349333pt;}
.ye79_c00003{bottom:710.830400pt;}
.y136b_c00003{bottom:711.466560pt;}
.y13db_c00003{bottom:711.626453pt;}
.y13bd_c00003{bottom:711.626667pt;}
.ye2f_c00003{bottom:712.109333pt;}
.yc56_c00003{bottom:713.226933pt;}
.yce_c00003{bottom:713.389333pt;}
.y14a_c00003{bottom:713.705333pt;}
.y3d_c00003{bottom:714.507200pt;}
.yf11_c00003{bottom:714.509333pt;}
.y12de_c00003{bottom:714.830133pt;}
.y1a9_c00003{bottom:715.465333pt;}
.yf12_c00003{bottom:715.789333pt;}
.y139d_c00003{bottom:716.107387pt;}
.ya6_c00003{bottom:716.269333pt;}
.y82_c00003{bottom:717.228000pt;}
.yc28_c00003{bottom:717.230000pt;}
.yc17_c00003{bottom:717.390667pt;}
.y128a_c00003{bottom:717.533333pt;}
.y1aa_c00003{bottom:717.869333pt;}
.y2f1_c00003{bottom:718.025333pt;}
.y60_c00003{bottom:718.355200pt;}
.y232_c00003{bottom:718.665333pt;}
.y136a_c00003{bottom:719.306667pt;}
.ye77_c00003{bottom:719.310533pt;}
.yeb1_c00003{bottom:719.312133pt;}
.y107_c00003{bottom:719.625333pt;}
.yd0e_c00003{bottom:719.773333pt;}
.yf0f_c00003{bottom:719.949333pt;}
.y2f2_c00003{bottom:720.428000pt;}
.y233_c00003{bottom:721.069333pt;}
.yc9c_c00003{bottom:721.072000pt;}
.y356_c00003{bottom:721.520000pt;}
.y1235_c00003{bottom:721.852000pt;}
.y13bc_c00003{bottom:722.506667pt;}
.yce7_c00003{bottom:723.293333pt;}
.y340_c00003{bottom:723.917333pt;}
.yfe9_c00003{bottom:724.254533pt;}
.y337_c00003{bottom:724.414667pt;}
.y139c_c00003{bottom:724.427693pt;}
.y1263_c00003{bottom:725.533333pt;}
.y149_c00003{bottom:726.185333pt;}
.y12a9_c00003{bottom:726.653333pt;}
.ye10_c00003{bottom:726.669333pt;}
.ycb6_c00003{bottom:726.813333pt;}
.y11_c00003{bottom:726.989333pt;}
.y1369_c00003{bottom:727.148000pt;}
.yde2_c00003{bottom:727.309333pt;}
.yd92_c00003{bottom:727.628000pt;}
.y1a7_c00003{bottom:728.105333pt;}
.ydbd_c00003{bottom:728.589333pt;}
.y1307_c00003{bottom:728.589600pt;}
.yd61_c00003{bottom:728.749333pt;}
.yd3b_c00003{bottom:728.909333pt;}
.y1a8_c00003{bottom:730.508000pt;}
.y2ef_c00003{bottom:730.665333pt;}
.y3c_c00003{bottom:730.987467pt;}
.yb70_c00003{bottom:731.093333pt;}
.y230_c00003{bottom:731.305333pt;}
.y106_c00003{bottom:732.105333pt;}
.y139b_c00003{bottom:732.748000pt;}
.ycd_c00003{bottom:732.749333pt;}
.y2f0_c00003{bottom:733.069333pt;}
.y13da_c00003{bottom:733.386667pt;}
.y231_c00003{bottom:733.708000pt;}
.y10df_c00003{bottom:734.373333pt;}
.y5f_c00003{bottom:734.834933pt;}
.y1368_c00003{bottom:734.986667pt;}
.ya5_c00003{bottom:735.628000pt;}
.y81_c00003{bottom:736.589333pt;}
.yc44_c00003{bottom:736.750667pt;}
.yece_c00003{bottom:737.067467pt;}
.y7a5_c00003{bottom:737.333467pt;}
.y52e_c00003{bottom:737.493467pt;}
.y392_c00003{bottom:738.293067pt;}
.y6ad_c00003{bottom:738.453067pt;}
.yc55_c00003{bottom:738.507600pt;}
.y806_c00003{bottom:738.773467pt;}
.y148_c00003{bottom:738.825333pt;}
.yef8_c00003{bottom:740.269333pt;}
.y1a5_c00003{bottom:740.745333pt;}
.yd0d_c00003{bottom:741.052000pt;}
.y139a_c00003{bottom:741.066667pt;}
.ye44_c00003{bottom:741.227200pt;}
.y1289_c00003{bottom:741.533333pt;}
.yc92_c00003{bottom:741.550667pt;}
.y1367_c00003{bottom:742.826667pt;}
.y1a6_c00003{bottom:743.148000pt;}
.y2ed_c00003{bottom:743.305333pt;}
.y22e_c00003{bottom:743.945333pt;}
.y13bb_c00003{bottom:744.266667pt;}
.yce6_c00003{bottom:744.573333pt;}
.y105_c00003{bottom:744.745333pt;}
.yeaf_c00003{bottom:744.750667pt;}
.ye74_c00003{bottom:744.750800pt;}
.ye0f_c00003{bottom:745.228000pt;}
.y34d_c00003{bottom:745.481333pt;}
.yf25_c00003{bottom:745.693733pt;}
.y2ee_c00003{bottom:745.708000pt;}
.y1233_c00003{bottom:745.852000pt;}
.yde1_c00003{bottom:745.869333pt;}
.ye2c_c00003{bottom:746.030267pt;}
.yd91_c00003{bottom:746.189333pt;}
.y22f_c00003{bottom:746.348000pt;}
.y10_c00003{bottom:746.349333pt;}
.yf2b_c00003{bottom:746.400000pt;}
.y12bf_c00003{bottom:746.933333pt;}
.ydbc_c00003{bottom:746.989333pt;}
.yd60_c00003{bottom:747.149333pt;}
.y3b_c00003{bottom:747.467733pt;}
.yd3a_c00003{bottom:747.469333pt;}
.yf0e_c00003{bottom:747.629867pt;}
.ycb5_c00003{bottom:748.093333pt;}
.y1344_c00003{bottom:748.266667pt;}
.yc9b_c00003{bottom:748.750667pt;}
.y1306_c00003{bottom:748.909171pt;}
.y1399_c00003{bottom:749.386667pt;}
.y1262_c00003{bottom:749.533333pt;}
.yfe8_c00003{bottom:749.534800pt;}
.y90f_c00003{bottom:749.653333pt;}
.y12be_c00003{bottom:749.814667pt;}
.y33f_c00003{bottom:749.954800pt;}
.y8cb_c00003{bottom:750.133333pt;}
.y95f_c00003{bottom:750.614667pt;}
.y5e_c00003{bottom:751.314667pt;}
.y147_c00003{bottom:751.465333pt;}
.y7a4_c00003{bottom:751.893333pt;}
.y52d_c00003{bottom:752.053333pt;}
.ycc_c00003{bottom:752.109333pt;}
.y391_c00003{bottom:752.373333pt;}
.y805_c00003{bottom:752.533333pt;}
.y6ac_c00003{bottom:753.173333pt;}
.y1a3_c00003{bottom:753.385333pt;}
.y1343_c00003{bottom:754.185333pt;}
.ya4_c00003{bottom:754.989333pt;}
.y13ba_c00003{bottom:755.148000pt;}
.y1a4_c00003{bottom:755.788000pt;}
.y2eb_c00003{bottom:755.945333pt;}
.y80_c00003{bottom:755.949333pt;}
.y22c_c00003{bottom:756.585333pt;}
.y104_c00003{bottom:757.385333pt;}
.y1398_c00003{bottom:757.706667pt;}
.y2ec_c00003{bottom:758.348000pt;}
.y1366_c00003{bottom:758.506667pt;}
.y22d_c00003{bottom:758.988000pt;}
.yc16_c00003{bottom:760.750533pt;}
.ye73_c00003{bottom:761.550267pt;}
.yead_c00003{bottom:761.550667pt;}
.yd0c_c00003{bottom:762.534667pt;}
.y1342_c00003{bottom:762.667307pt;}
.ye2b_c00003{bottom:762.990667pt;}
.ye0e_c00003{bottom:763.628000pt;}
.y3a_c00003{bottom:763.948000pt;}
.y146_c00003{bottom:764.105333pt;}
.yde0_c00003{bottom:764.269333pt;}
.yf0d_c00003{bottom:764.429333pt;}
.yd90_c00003{bottom:764.749333pt;}
.ydbb_c00003{bottom:765.549333pt;}
.yc9a_c00003{bottom:765.550667pt;}
.y1288_c00003{bottom:765.574667pt;}
.yf_c00003{bottom:765.709333pt;}
.yd39_c00003{bottom:765.869333pt;}
.y1a1_c00003{bottom:766.025333pt;}
.y1397_c00003{bottom:766.026667pt;}
.yce5_c00003{bottom:766.054667pt;}
.y12a8_c00003{bottom:766.374667pt;}
.yc27_c00003{bottom:766.511200pt;}
.yef7_c00003{bottom:766.830267pt;}
.ye6c_c00003{bottom:767.790667pt;}
.y5d_c00003{bottom:767.794400pt;}
.y1a2_c00003{bottom:768.428000pt;}
.y2e9_c00003{bottom:768.585333pt;}
.y22a_c00003{bottom:769.225333pt;}
.ycb4_c00003{bottom:769.414667pt;}
.y35a_c00003{bottom:769.440000pt;}
.y1232_c00003{bottom:769.894667pt;}
.y103_c00003{bottom:770.025333pt;}
.ye70_c00003{bottom:770.029333pt;}
.ye75_c00003{bottom:770.031067pt;}
.y1341_c00003{bottom:770.187093pt;}
.y2ea_c00003{bottom:770.988000pt;}
.yef1_c00003{bottom:770.989067pt;}
.ye2d_c00003{bottom:771.310533pt;}
.ycb_c00003{bottom:771.469333pt;}
.y22b_c00003{bottom:771.628000pt;}
.yc13_c00003{bottom:773.390800pt;}
.y1261_c00003{bottom:773.574667pt;}
.y1365_c00003{bottom:774.186667pt;}
.ya3_c00003{bottom:774.349333pt;}
.y7f_c00003{bottom:775.309333pt;}
.y13b9_c00003{bottom:776.906667pt;}
.y12dd_c00003{bottom:776.910400pt;}
.y1340_c00003{bottom:777.706880pt;}
.ye72_c00003{bottom:778.510133pt;}
.yeae_c00003{bottom:778.511067pt;}
.y19f_c00003{bottom:778.665333pt;}
.y145_c00003{bottom:779.308000pt;}
.yef0_c00003{bottom:779.469333pt;}
.y39_c00003{bottom:780.428267pt;}
.y1a0_c00003{bottom:781.069333pt;}
.y2e7_c00003{bottom:781.225333pt;}
.yc43_c00003{bottom:781.390667pt;}
.y228_c00003{bottom:781.865333pt;}
.y1364_c00003{bottom:782.026667pt;}
.ye0d_c00003{bottom:782.189333pt;}
.y1396_c00003{bottom:782.666667pt;}
.yddf_c00003{bottom:782.828000pt;}
.yd8f_c00003{bottom:783.149333pt;}
.y2e8_c00003{bottom:783.628000pt;}
.yef6_c00003{bottom:783.790667pt;}
.yd0b_c00003{bottom:783.814667pt;}
.ydba_c00003{bottom:784.109333pt;}
.y229_c00003{bottom:784.269333pt;}
.y5c_c00003{bottom:784.274133pt;}
.yd38_c00003{bottom:784.428000pt;}
.ye6b_c00003{bottom:784.590667pt;}
.ye_c00003{bottom:785.069333pt;}
.y133f_c00003{bottom:785.226667pt;}
.y102_c00003{bottom:785.228000pt;}
.yc91_c00003{bottom:786.029333pt;}
.yc15_c00003{bottom:786.030267pt;}
.y1305_c00003{bottom:786.189437pt;}
.yce4_c00003{bottom:787.334667pt;}
.y13b8_c00003{bottom:787.788000pt;}
.yc54_c00003{bottom:787.788267pt;}
.y1287_c00003{bottom:789.574667pt;}
.y1363_c00003{bottom:789.866667pt;}
.yc12_c00003{bottom:790.350667pt;}
.y12a7_c00003{bottom:790.374667pt;}
.y144_c00003{bottom:790.825333pt;}
.yca_c00003{bottom:790.828000pt;}
.ycb3_c00003{bottom:790.854667pt;}
.y1395_c00003{bottom:790.986667pt;}
.y19d_c00003{bottom:791.305333pt;}
.yf0c_c00003{bottom:792.112133pt;}
.y133e_c00003{bottom:792.748000pt;}
.yc3d_c00003{bottom:793.069467pt;}
.yc99_c00003{bottom:793.229333pt;}
.y19e_c00003{bottom:793.708000pt;}
.ya2_c00003{bottom:793.709333pt;}
.y2e5_c00003{bottom:793.865333pt;}
.y1231_c00003{bottom:793.894667pt;}
.y226_c00003{bottom:794.505333pt;}
.y7e_c00003{bottom:794.669333pt;}
.ye71_c00003{bottom:795.309600pt;}
.yfe7_c00003{bottom:795.655067pt;}
.yfee_c00003{bottom:795.840000pt;}
.y2e6_c00003{bottom:796.269333pt;}
.y101_c00003{bottom:796.745333pt;}
.y38_c00003{bottom:796.908533pt;}
.y227_c00003{bottom:796.909333pt;}
.y1260_c00003{bottom:797.574667pt;}
.y13d9_c00003{bottom:798.666667pt;}
.y13b7_c00003{bottom:798.667787pt;}
.y1394_c00003{bottom:799.306667pt;}
.y133d_c00003{bottom:800.266667pt;}
.ye0c_c00003{bottom:800.589333pt;}
.y5b_c00003{bottom:800.753867pt;}
.ydde_c00003{bottom:801.389333pt;}
.yd8e_c00003{bottom:801.709333pt;}
.ydb9_c00003{bottom:802.509333pt;}
.yd5f_c00003{bottom:802.669333pt;}
.yd37_c00003{bottom:802.828000pt;}
.y143_c00003{bottom:803.305333pt;}
.y19b_c00003{bottom:803.945333pt;}
.yeab_c00003{bottom:803.951200pt;}
.yd_c00003{bottom:804.428000pt;}
.yd0a_c00003{bottom:805.094667pt;}
.ye2a_c00003{bottom:805.391600pt;}
.y1362_c00003{bottom:805.548000pt;}
.y19c_c00003{bottom:806.348000pt;}
.y2e3_c00003{bottom:806.505333pt;}
.y224_c00003{bottom:807.145333pt;}
.y133c_c00003{bottom:807.788000pt;}
.yce3_c00003{bottom:808.614667pt;}
.y2e4_c00003{bottom:808.909333pt;}
.yf0b_c00003{bottom:809.072000pt;}
.y100_c00003{bottom:809.225333pt;}
.y13d8_c00003{bottom:809.546973pt;}
.y225_c00003{bottom:809.548000pt;}
.yc3c_c00003{bottom:810.029333pt;}
.yc9_c00003{bottom:810.189333pt;}
.yef5_c00003{bottom:811.309467pt;}
.yc14_c00003{bottom:811.310533pt;}
.ycb1_c00003{bottom:812.134667pt;}
.ya1_c00003{bottom:813.069333pt;}
.y37_c00003{bottom:813.388800pt;}
.y1286_c00003{bottom:813.574667pt;}
.ye28_c00003{bottom:813.712000pt;}
.y7d_c00003{bottom:814.028000pt;}
.y1376_c00003{bottom:814.345333pt;}
.y12a6_c00003{bottom:814.374667pt;}
.y133b_c00003{bottom:815.306667pt;}
.y142_c00003{bottom:815.945333pt;}
.y1393_c00003{bottom:815.948000pt;}
.y199_c00003{bottom:816.585333pt;}
.y5a_c00003{bottom:817.233600pt;}
.y1230_c00003{bottom:817.894667pt;}
.y19a_c00003{bottom:818.988000pt;}
.y2e1_c00003{bottom:819.145333pt;}
.ye0b_c00003{bottom:819.149333pt;}
.y222_c00003{bottom:819.785333pt;}
.yddd_c00003{bottom:819.789333pt;}
.yd8d_c00003{bottom:820.109333pt;}
.y13b6_c00003{bottom:820.426667pt;}
.ye6a_c00003{bottom:820.750667pt;}
.yeaa_c00003{bottom:820.911067pt;}
.ye6f_c00003{bottom:820.912000pt;}
.ydb8_c00003{bottom:821.069333pt;}
.y1361_c00003{bottom:821.226667pt;}
.yd5e_c00003{bottom:821.228000pt;}
.yd36_c00003{bottom:821.389333pt;}
.y2e2_c00003{bottom:821.548000pt;}
.y125f_c00003{bottom:821.574667pt;}
.yff_c00003{bottom:821.865333pt;}
.y223_c00003{bottom:822.188000pt;}
.yc90_c00003{bottom:822.190667pt;}
.y133a_c00003{bottom:822.826667pt;}
.yc5b_c00003{bottom:822.829333pt;}
.yc_c00003{bottom:823.789333pt;}
.y1392_c00003{bottom:824.266667pt;}
.y37c_c00003{bottom:825.186667pt;}
.y365_c00003{bottom:825.348000pt;}
.yc42_c00003{bottom:825.872000pt;}
.yd09_c00003{bottom:826.534667pt;}
.y1304_c00003{bottom:826.829037pt;}
.yef4_c00003{bottom:828.269333pt;}
.y141_c00003{bottom:828.585333pt;}
.yeee_c00003{bottom:828.912000pt;}
.y1360_c00003{bottom:829.066667pt;}
.y197_c00003{bottom:829.225333pt;}
.yea7_c00003{bottom:829.390667pt;}
.yeac_c00003{bottom:829.391333pt;}
.yc8_c00003{bottom:829.549333pt;}
.y36_c00003{bottom:829.869067pt;}
.yce2_c00003{bottom:830.054667pt;}
.yeed_c00003{bottom:830.189600pt;}
.yeef_c00003{bottom:830.190667pt;}
.y1339_c00003{bottom:830.348000pt;}
.ye29_c00003{bottom:830.671867pt;}
.y13d7_c00003{bottom:831.306667pt;}
.y13b5_c00003{bottom:831.307787pt;}
.y198_c00003{bottom:831.628000pt;}
.y2df_c00003{bottom:831.785333pt;}
.y220_c00003{bottom:832.425333pt;}
.ya0_c00003{bottom:832.428000pt;}
.y1391_c00003{bottom:832.588000pt;}
.y38f_c00003{bottom:833.333333pt;}
.y7c_c00003{bottom:833.389333pt;}
.ycaf_c00003{bottom:833.414667pt;}
.y59_c00003{bottom:833.713333pt;}
.y2e0_c00003{bottom:834.188000pt;}
.yfe_c00003{bottom:834.505333pt;}
.y221_c00003{bottom:834.828000pt;}
.yc98_c00003{bottom:836.752000pt;}
.y135f_c00003{bottom:836.906667pt;}
.ye0a_c00003{bottom:837.549333pt;}
.y1285_c00003{bottom:837.574667pt;}
.yea9_c00003{bottom:837.711067pt;}
.ye6d_c00003{bottom:837.712000pt;}
.y1338_c00003{bottom:837.866667pt;}
.yddc_c00003{bottom:838.349333pt;}
.y12a5_c00003{bottom:838.374667pt;}
.yd8c_c00003{bottom:838.669333pt;}
.y12dc_c00003{bottom:838.830133pt;}
.yc8f_c00003{bottom:838.990667pt;}
.ydb7_c00003{bottom:839.469333pt;}
.yd5d_c00003{bottom:839.628000pt;}
.yd34_c00003{bottom:839.789333pt;}
.y1390_c00003{bottom:840.906667pt;}
.y140_c00003{bottom:841.225333pt;}
.y195_c00003{bottom:841.865333pt;}
.y122f_c00003{bottom:841.894667pt;}
.y13d6_c00003{bottom:842.186973pt;}
.y13b4_c00003{bottom:842.188000pt;}
.y196_c00003{bottom:844.269333pt;}
.y2dd_c00003{bottom:844.425333pt;}
.y135e_c00003{bottom:844.748000pt;}
.y21e_c00003{bottom:845.065333pt;}
.y1337_c00003{bottom:845.386667pt;}
.y125e_c00003{bottom:845.574667pt;}
.yc3b_c00003{bottom:846.029333pt;}
.y35_c00003{bottom:846.349333pt;}
.yc11_c00003{bottom:846.350667pt;}
.y2de_c00003{bottom:846.828000pt;}
.yfd_c00003{bottom:847.145333pt;}
.y21f_c00003{bottom:847.469333pt;}
.yd08_c00003{bottom:847.814667pt;}
.yc7_c00003{bottom:848.909333pt;}
.y138f_c00003{bottom:849.226667pt;}
.y58_c00003{bottom:850.193067pt;}
.yce1_c00003{bottom:851.334667pt;}
.y9f_c00003{bottom:851.789333pt;}
.y135d_c00003{bottom:852.588000pt;}
.y1336_c00003{bottom:852.906667pt;}
.y13b3_c00003{bottom:853.066667pt;}
.yc97_c00003{bottom:853.552000pt;}
.y193_c00003{bottom:854.505333pt;}
.yea8_c00003{bottom:854.670933pt;}
.ye6e_c00003{bottom:854.671867pt;}
.ycad_c00003{bottom:854.854667pt;}
.yeec_c00003{bottom:855.629200pt;}
.ye09_c00003{bottom:856.109333pt;}
.y13f_c00003{bottom:856.428000pt;}
.y194_c00003{bottom:856.909333pt;}
.y2db_c00003{bottom:857.065333pt;}
.yd8b_c00003{bottom:857.069333pt;}
.y138e_c00003{bottom:857.548000pt;}
.y21c_c00003{bottom:857.705333pt;}
.y351_c00003{bottom:857.773067pt;}
.yd5c_c00003{bottom:858.189333pt;}
.yd33_c00003{bottom:858.349333pt;}
.y2dc_c00003{bottom:859.469333pt;}
.ydd9_c00003{bottom:859.950667pt;}
.y21d_c00003{bottom:860.109333pt;}
.y135c_c00003{bottom:860.426560pt;}
.y1335_c00003{bottom:860.426667pt;}
.y1284_c00003{bottom:861.574667pt;}
.yfc_c00003{bottom:862.348000pt;}
.y12a4_c00003{bottom:862.374667pt;}
.ya_c00003{bottom:862.509333pt;}
.y34_c00003{bottom:862.829600pt;}
.yef2_c00003{bottom:863.309333pt;}
.y13b2_c00003{bottom:863.948000pt;}
.ye68_c00003{bottom:864.269333pt;}
.ye26_c00003{bottom:864.590667pt;}
.y1315_c00003{bottom:865.549547pt;}
.y138d_c00003{bottom:865.867693pt;}
.y122e_c00003{bottom:865.894667pt;}
.yc8e_c00003{bottom:866.669333pt;}
.y57_c00003{bottom:866.672800pt;}
.y191_c00003{bottom:867.145333pt;}
.yc5a_c00003{bottom:867.469333pt;}
.y13e_c00003{bottom:867.945333pt;}
.y1334_c00003{bottom:867.948000pt;}
.y135b_c00003{bottom:868.266667pt;}
.yc6_c00003{bottom:868.269333pt;}
.yd07_c00003{bottom:869.094667pt;}
.ydb0_c00003{bottom:869.390667pt;}
.y192_c00003{bottom:869.548000pt;}
.y125d_c00003{bottom:869.574667pt;}
.y2d9_c00003{bottom:869.705333pt;}
.y38e_c00003{bottom:870.233333pt;}
.y21a_c00003{bottom:870.345333pt;}
.yc41_c00003{bottom:870.350667pt;}
.y9e_c00003{bottom:871.149333pt;}
.y2da_c00003{bottom:872.109333pt;}
.yce0_c00003{bottom:872.614667pt;}
.y21b_c00003{bottom:872.748000pt;}
.y37b_c00003{bottom:873.588000pt;}
.y364_c00003{bottom:873.748000pt;}
.yfb_c00003{bottom:873.865333pt;}
.y138c_c00003{bottom:874.188000pt;}
.yddb_c00003{bottom:874.509333pt;}
.ye04_c00003{bottom:874.669333pt;}
.y13b1_c00003{bottom:874.826667pt;}
.ydb6_c00003{bottom:875.149333pt;}
.y1333_c00003{bottom:875.466667pt;}
.yd8a_c00003{bottom:875.628000pt;}
.yef3_c00003{bottom:875.950667pt;}
.y135a_c00003{bottom:876.106667pt;}
.yca2_c00003{bottom:876.134667pt;}
.y350_c00003{bottom:876.780933pt;}
.yd31_c00003{bottom:876.909333pt;}
.ye69_c00003{bottom:876.912000pt;}
.ye27_c00003{bottom:877.230667pt;}
.ydd8_c00003{bottom:877.712000pt;}
.ydb5_c00003{bottom:878.350667pt;}
.y33_c00003{bottom:879.309333pt;}
.y18f_c00003{bottom:879.785333pt;}
.y13d_c00003{bottom:880.425333pt;}
.y9_c00003{bottom:881.869333pt;}
.y190_c00003{bottom:882.188000pt;}
.y2d7_c00003{bottom:882.345333pt;}
.y138b_c00003{bottom:882.506667pt;}
.y218_c00003{bottom:882.985333pt;}
.y1332_c00003{bottom:882.988000pt;}
.y56_c00003{bottom:883.152533pt;}
.yc8d_c00003{bottom:883.469333pt;}
.y1359_c00003{bottom:883.947893pt;}
.y2d8_c00003{bottom:884.748000pt;}
.y219_c00003{bottom:885.388000pt;}
.y1283_c00003{bottom:885.574667pt;}
.y13d5_c00003{bottom:885.706667pt;}
.yf9_c00003{bottom:886.345333pt;}
.ye08_c00003{bottom:886.669333pt;}
.ydaf_c00003{bottom:887.309333pt;}
.yc5_c00003{bottom:887.628000pt;}
.yc96_c00003{bottom:888.590667pt;}
.yc3a_c00003{bottom:889.552000pt;}
.yc0f_c00003{bottom:889.872000pt;}
.y122d_c00003{bottom:889.894667pt;}
.y38c_c00003{bottom:890.198667pt;}
.y1331_c00003{bottom:890.506667pt;}
.y9d_c00003{bottom:890.509333pt;}
.yd06_c00003{bottom:890.534667pt;}
.y138a_c00003{bottom:890.827693pt;}
.y38b_c00003{bottom:891.158667pt;}
.y1358_c00003{bottom:891.788000pt;}
.ydfb_c00003{bottom:892.269333pt;}
.y18d_c00003{bottom:892.425333pt;}
.y13c_c00003{bottom:893.065333pt;}
.y125c_c00003{bottom:893.574667pt;}
.yd5b_c00003{bottom:893.869333pt;}
.ycd6_c00003{bottom:894.054667pt;}
.yd82_c00003{bottom:894.189333pt;}
.y18e_c00003{bottom:894.828000pt;}
.y2d5_c00003{bottom:894.985333pt;}
.y7b_c00003{bottom:895.469333pt;}
.y216_c00003{bottom:895.625333pt;}
.y34f_c00003{bottom:895.629333pt;}
.y32_c00003{bottom:895.789600pt;}
.ydb4_c00003{bottom:896.109333pt;}
.y13b0_c00003{bottom:896.588000pt;}
.y12da_c00003{bottom:896.590533pt;}
.yd59_c00003{bottom:897.072000pt;}
.y2d6_c00003{bottom:897.388000pt;}
.y1375_c00003{bottom:898.026667pt;}
.y217_c00003{bottom:898.028000pt;}
.yf8_c00003{bottom:898.985333pt;}
.y1389_c00003{bottom:899.148000pt;}
.y55_c00003{bottom:899.632267pt;}
.y7_c00003{bottom:901.228000pt;}
.yc95_c00003{bottom:901.230667pt;}
.yc39_c00003{bottom:902.190667pt;}
.yc0e_c00003{bottom:902.509333pt;}
.ydd5_c00003{bottom:904.430667pt;}
.y33d_c00003{bottom:904.736000pt;}
.y18b_c00003{bottom:905.065333pt;}
.ydab_c00003{bottom:905.072000pt;}
.y379_c00003{bottom:905.533333pt;}
.y1330_c00003{bottom:905.548000pt;}
.y362_c00003{bottom:905.693333pt;}
.y13b_c00003{bottom:905.705333pt;}
.y1303_c00003{bottom:906.029067pt;}
.yd87_c00003{bottom:906.190667pt;}
.ydfe_c00003{bottom:906.669333pt;}
.yc4_c00003{bottom:906.989333pt;}
.y1357_c00003{bottom:907.466667pt;}
.y18c_c00003{bottom:907.469333pt;}
.y2d3_c00003{bottom:907.625333pt;}
.y214_c00003{bottom:908.265333pt;}
.y1282_c00003{bottom:909.574667pt;}
.y9c_c00003{bottom:909.869333pt;}
.y2d4_c00003{bottom:910.028000pt;}
.ydda_c00003{bottom:910.189333pt;}
.y215_c00003{bottom:910.669333pt;}
.ydb3_c00003{bottom:910.828000pt;}
.yc58_c00003{bottom:910.830667pt;}
.yf7_c00003{bottom:911.625333pt;}
.yd58_c00003{bottom:911.628000pt;}
.yd89_c00003{bottom:911.789333pt;}
.yd01_c00003{bottom:911.814667pt;}
.y31_c00003{bottom:912.269333pt;}
.yd30_c00003{bottom:912.428000pt;}
.y1374_c00003{bottom:913.066667pt;}
.y132f_c00003{bottom:913.067693pt;}
.ydd7_c00003{bottom:913.390667pt;}
.yc3f_c00003{bottom:913.869333pt;}
.y122c_c00003{bottom:913.894667pt;}
.ydb2_c00003{bottom:914.029333pt;}
.y7a_c00003{bottom:914.830667pt;}
.yd81_c00003{bottom:914.990667pt;}
.yc10_c00003{bottom:915.150667pt;}
.y1356_c00003{bottom:915.306667pt;}
.yd2d_c00003{bottom:915.630667pt;}
.y1388_c00003{bottom:915.788000pt;}
.y54_c00003{bottom:916.112000pt;}
.y12d9_c00003{bottom:916.430667pt;}
.y125b_c00003{bottom:917.574667pt;}
.y13a_c00003{bottom:918.345333pt;}
.y13af_c00003{bottom:918.348000pt;}
.yc8b_c00003{bottom:918.509333pt;}
.ye07_c00003{bottom:919.149333pt;}
.ydae_c00003{bottom:919.628000pt;}
.y2d1_c00003{bottom:920.265333pt;}
.y132e_c00003{bottom:920.588000pt;}
.y6_c00003{bottom:920.589333pt;}
.y212_c00003{bottom:920.905333pt;}
.y187_c00003{bottom:921.069307pt;}
.y18a_c00003{bottom:921.069333pt;}
.y189_c00003{bottom:922.028000pt;}
.ye06_c00003{bottom:922.350667pt;}
.y2d2_c00003{bottom:922.669333pt;}
.ydad_c00003{bottom:922.830667pt;}
.y1355_c00003{bottom:923.148000pt;}
.y213_c00003{bottom:923.309333pt;}
.yc57_c00003{bottom:923.469333pt;}
.yd55_c00003{bottom:923.790667pt;}
.yd86_c00003{bottom:923.950667pt;}
.y1387_c00003{bottom:924.106667pt;}
.yf6_c00003{bottom:924.265333pt;}
.yd7a_c00003{bottom:924.590667pt;}
.y378_c00003{bottom:925.500000pt;}
.y361_c00003{bottom:925.660000pt;}
.y30_c00003{bottom:925.709333pt;}
.yc3_c00003{bottom:926.349333pt;}
.yc3e_c00003{bottom:926.509333pt;}
.y188_c00003{bottom:926.828000pt;}
.yeeb_c00003{bottom:927.469333pt;}
.y38a_c00003{bottom:928.057333pt;}
.y132d_c00003{bottom:928.106667pt;}
.y13ae_c00003{bottom:929.226667pt;}
.yd5a_c00003{bottom:929.389333pt;}
.yc8a_c00003{bottom:931.150667pt;}
.ydb1_c00003{bottom:931.790667pt;}
.y1386_c00003{bottom:932.426667pt;}
.yd57_c00003{bottom:932.590667pt;}
.y53_c00003{bottom:932.591733pt;}
.y2cf_c00003{bottom:932.905333pt;}
.yd80_c00003{bottom:932.912000pt;}
.y210_c00003{bottom:933.545333pt;}
.y139_c00003{bottom:933.548000pt;}
.yd2c_c00003{bottom:933.552000pt;}
.y127c_c00003{bottom:933.574667pt;}
.y2d0_c00003{bottom:935.309333pt;}
.y132c_c00003{bottom:935.626667pt;}
.y211_c00003{bottom:935.948000pt;}
.yc59_c00003{bottom:936.109333pt;}
.y12d8_c00003{bottom:936.430667pt;}
.y12a3_c00003{bottom:936.775467pt;}
.y1302_c00003{bottom:937.069333pt;}
.ydac_c00003{bottom:937.549333pt;}
.y122a_c00003{bottom:937.894667pt;}
.ye01_c00003{bottom:938.509333pt;}
.y1354_c00003{bottom:938.826667pt;}
.yd7b_c00003{bottom:939.149333pt;}
.yc40_c00003{bottom:939.150667pt;}
.yf5_c00003{bottom:939.469333pt;}
.y4_c00003{bottom:939.949333pt;}
.y13ad_c00003{bottom:940.106667pt;}
.ye05_c00003{bottom:940.109333pt;}
.y1385_c00003{bottom:940.748000pt;}
.ye00_c00003{bottom:940.752000pt;}
.y1256_c00003{bottom:941.574667pt;}
.yd7c_c00003{bottom:941.712000pt;}
.yd28_c00003{bottom:942.350667pt;}
.y132b_c00003{bottom:943.148000pt;}
.yc8c_c00003{bottom:943.790667pt;}
.y138_c00003{bottom:945.065333pt;}
.y377_c00003{bottom:945.469333pt;}
.y2cd_c00003{bottom:945.545333pt;}
.y360_c00003{bottom:945.626667pt;}
.ydd6_c00003{bottom:945.869333pt;}
.y20e_c00003{bottom:946.185333pt;}
.y1353_c00003{bottom:946.666667pt;}
.yd56_c00003{bottom:947.309333pt;}
.yd88_c00003{bottom:947.469333pt;}
.y17c_c00003{bottom:947.628000pt;}
.y2ce_c00003{bottom:947.948000pt;}
.yd2f_c00003{bottom:948.109333pt;}
.y20f_c00003{bottom:948.588000pt;}
.y184_c00003{bottom:948.589013pt;}
.y9b_c00003{bottom:948.589333pt;}
.y1384_c00003{bottom:949.066667pt;}
.y52_c00003{bottom:949.072000pt;}
.y79_c00003{bottom:950.509333pt;}
.y132a_c00003{bottom:950.666667pt;}
.yd7f_c00003{bottom:950.669333pt;}
.yf4_c00003{bottom:950.985333pt;}
.y13ac_c00003{bottom:950.988000pt;}
.yd2b_c00003{bottom:951.309333pt;}
.y12f0_c00003{bottom:952.430667pt;}
.y1352_c00003{bottom:954.506667pt;}
.y12a2_c00003{bottom:955.495200pt;}
.yd85_c00003{bottom:956.428000pt;}
.y1383_c00003{bottom:957.388000pt;}
.y137_c00003{bottom:957.545333pt;}
.y2cb_c00003{bottom:958.185333pt;}
.y1329_c00003{bottom:958.188000pt;}
.y1314_c00003{bottom:958.669280pt;}
.y2e_c00003{bottom:958.669333pt;}
.y20c_c00003{bottom:958.825333pt;}
.yd84_c00003{bottom:959.630667pt;}
.yd79_c00003{bottom:960.269333pt;}
.y2cc_c00003{bottom:960.588000pt;}
.y20d_c00003{bottom:961.228000pt;}
.y183_c00003{bottom:961.229120pt;}
.y13ab_c00003{bottom:961.866667pt;}
.y1226_c00003{bottom:961.894667pt;}
.y1351_c00003{bottom:962.348000pt;}
.y51_c00003{bottom:962.509333pt;}
.yf2_c00003{bottom:963.465333pt;}
.ye43_c00003{bottom:963.792533pt;}
.yc26_c00003{bottom:963.793867pt;}
.yc0d_c00003{bottom:965.067200pt;}
.y389_c00003{bottom:965.114667pt;}
.ye03_c00003{bottom:965.389333pt;}
.y376_c00003{bottom:965.433333pt;}
.y35f_c00003{bottom:965.594667pt;}
.y1328_c00003{bottom:965.706667pt;}
.yd29_c00003{bottom:965.869333pt;}
.y1301_c00003{bottom:968.109437pt;}
.yd7e_c00003{bottom:968.590667pt;}
.yd2e_c00003{bottom:969.072000pt;}
.y12db_c00003{bottom:969.390533pt;}
.y136_c00003{bottom:970.185333pt;}
.y1350_c00003{bottom:970.188000pt;}
.y2c9_c00003{bottom:970.825333pt;}
.y20a_c00003{bottom:971.465333pt;}
.y17f_c00003{bottom:972.587920pt;}
.y13aa_c00003{bottom:972.747787pt;}
.y13d4_c00003{bottom:972.748000pt;}
.y1327_c00003{bottom:973.226667pt;}
.y2ca_c00003{bottom:973.228000pt;}
.y182_c00003{bottom:973.869227pt;}
.y20b_c00003{bottom:973.869333pt;}
.y1382_c00003{bottom:974.028000pt;}
.y12a1_c00003{bottom:974.055600pt;}
.yd83_c00003{bottom:974.189333pt;}
.ydfd_c00003{bottom:974.828000pt;}
.yf1_c00003{bottom:975.945333pt;}
.yda9_c00003{bottom:976.107467pt;}
.ydaa_c00003{bottom:976.109333pt;}
.ye02_c00003{bottom:977.390667pt;}
.y134f_c00003{bottom:978.028000pt;}
.ydff_c00003{bottom:978.030667pt;}
.yf0_c00003{bottom:979.948000pt;}
.y1326_c00003{bottom:980.748000pt;}
.y1381_c00003{bottom:982.348000pt;}
.y3_c00003{bottom:982.669333pt;}
.y135_c00003{bottom:982.825333pt;}
.yd7d_c00003{bottom:983.149333pt;}
.y2c7_c00003{bottom:983.465333pt;}
.y13d3_c00003{bottom:983.626987pt;}
.y13a6_c00003{bottom:983.628000pt;}
.y209_c00003{bottom:984.105333pt;}
.yc2_c00003{bottom:984.428000pt;}
.y388_c00003{bottom:985.081333pt;}
.y17e_c00003{bottom:985.228027pt;}
.y186_c00003{bottom:985.229173pt;}
.y37a_c00003{bottom:985.240000pt;}
.y363_c00003{bottom:985.400000pt;}
.y134e_c00003{bottom:985.866667pt;}
.y2c8_c00003{bottom:985.869333pt;}
.y387_c00003{bottom:986.038667pt;}
.y181_c00003{bottom:986.509333pt;}
.y33e_c00003{bottom:987.476133pt;}
.y1325_c00003{bottom:988.266667pt;}
.y12ef_c00003{bottom:988.750667pt;}
.ye42_c00003{bottom:989.072800pt;}
.yc25_c00003{bottom:989.073600pt;}
.y78_c00003{bottom:989.228000pt;}
.yc0c_c00003{bottom:990.507333pt;}
.y1380_c00003{bottom:990.667547pt;}
.y9a_c00003{bottom:992.270667pt;}
.y12a0_c00003{bottom:992.775333pt;}
.y134d_c00003{bottom:993.706773pt;}
.y13cd_c00003{bottom:994.506667pt;}
.y13d2_c00003{bottom:994.506680pt;}
.y13a7_c00003{bottom:994.507693pt;}
.yd53_c00003{bottom:994.667333pt;}
.yd54_c00003{bottom:994.669333pt;}
.yda8_c00003{bottom:994.827733pt;}
.yee_c00003{bottom:995.465333pt;}
.y4f_c00003{bottom:995.469333pt;}
.y2d_c00003{bottom:995.630667pt;}
.y1324_c00003{bottom:995.788000pt;}
.y2c5_c00003{bottom:996.105333pt;}
.y180_c00003{bottom:996.585333pt;}
.y207_c00003{bottom:996.745333pt;}
.y17d_c00003{bottom:997.868133pt;}
.y185_c00003{bottom:997.869280pt;}
.y2c6_c00003{bottom:998.509333pt;}
.y137f_c00003{bottom:998.987853pt;}
.y137a_c00003{bottom:998.987867pt;}
.y208_c00003{bottom:999.149333pt;}
.y1300_c00003{bottom:999.149600pt;}
.yed_c00003{bottom:999.469333pt;}
.y134c_c00003{bottom:1001.546880pt;}
.y1347_c00003{bottom:1001.546933pt;}
.y1373_c00003{bottom:1003.306667pt;}
.y1323_c00003{bottom:1003.307680pt;}
.ye2_c00003{bottom:1003.949333pt;}
.y13ce_c00003{bottom:1005.386880pt;}
.y13d1_c00003{bottom:1005.386893pt;}
.y13a9_c00003{bottom:1005.387907pt;}
.y137e_c00003{bottom:1007.307640pt;}
.y137b_c00003{bottom:1007.307653pt;}
.y77_c00003{bottom:1008.588000pt;}
.y2c3_c00003{bottom:1008.745333pt;}
.y205_c00003{bottom:1009.385333pt;}
.y134b_c00003{bottom:1009.386987pt;}
.y1348_c00003{bottom:1009.387040pt;}
.y134_c00003{bottom:1010.669333pt;}
.y1322_c00003{bottom:1010.827467pt;}
.y131d_c00003{bottom:1010.828000pt;}
.y2c4_c00003{bottom:1011.149333pt;}
.y129f_c00003{bottom:1011.521733pt;}
.y206_c00003{bottom:1011.788000pt;}
.yca1_c00003{bottom:1013.283333pt;}
.yd26_c00003{bottom:1013.387600pt;}
.yd27_c00003{bottom:1013.392000pt;}
.ye41_c00003{bottom:1014.514000pt;}
.yc24_c00003{bottom:1014.515333pt;}
.yec_c00003{bottom:1014.985333pt;}
.y137d_c00003{bottom:1015.627427pt;}
.y1255_c00003{bottom:1016.000533pt;}
.y13d0_c00003{bottom:1016.266587pt;}
.y13a8_c00003{bottom:1016.267600pt;}
.y134a_c00003{bottom:1017.227093pt;}
.y1_c00003{bottom:1017.228000pt;}
.y1321_c00003{bottom:1018.347773pt;}
.y131e_c00003{bottom:1018.347787pt;}
.y1372_c00003{bottom:1018.348000pt;}
.y2c1_c00003{bottom:1021.385333pt;}
.y17b_c00003{bottom:1022.025333pt;}
.y133_c00003{bottom:1022.185333pt;}
.yc0_c00003{bottom:1023.309333pt;}
.y2c2_c00003{bottom:1023.788000pt;}
.y137c_c00003{bottom:1023.947733pt;}
.y204_c00003{bottom:1024.428000pt;}
.y1349_c00003{bottom:1025.067200pt;}
.y1320_c00003{bottom:1025.867560pt;}
.y1371_c00003{bottom:1025.867693pt;}
.y13cf_c00003{bottom:1027.146800pt;}
.y13a5_c00003{bottom:1028.428000pt;}
.y12ff_c00003{bottom:1029.869333pt;}
.y99_c00003{bottom:1030.990667pt;}
.yca0_c00003{bottom:1032.003067pt;}
.yd25_c00003{bottom:1032.107333pt;}
.y1379_c00003{bottom:1033.228000pt;}
.y131f_c00003{bottom:1033.387867pt;}
.y1370_c00003{bottom:1033.388000pt;}
.y1346_c00003{bottom:1033.866667pt;}
.y1225_c00003{bottom:1034.560933pt;}
.y132_c00003{bottom:1034.665333pt;}
.y1254_c00003{bottom:1034.720800pt;}
.y2c0_c00003{bottom:1036.588000pt;}
.y13a3_c00003{bottom:1037.065333pt;}
.y203_c00003{bottom:1037.069333pt;}
.y131b_c00003{bottom:1040.265333pt;}
.y370_c00003{bottom:1051.369333pt;}
.y35e_c00003{bottom:1051.529333pt;}
.y1313_c00003{bottom:1051.789547pt;}
.y383_c00003{bottom:1052.330800pt;}
.y1224_c00003{bottom:1053.280667pt;}
.y129e_c00003{bottom:1053.600000pt;}
.y12ee_c00003{bottom:1061.230667pt;}
.y1312_c00003{bottom:1064.109333pt;}
.y1253_c00003{bottom:1077.280667pt;}
.yeb_c00003{bottom:1083.788000pt;}
.h156_c00003{height:6.399480pt;}
.h151_c00003{height:6.400000pt;}
.h40_c00003{height:6.868747pt;}
.h158_c00003{height:7.199480pt;}
.h4d_c00003{height:7.998440pt;}
.h52_c00003{height:7.998960pt;}
.h59_c00003{height:8.000000pt;}
.h7c_c00003{height:8.317707pt;}
.h71_c00003{height:8.318747pt;}
.hb2_c00003{height:8.320307pt;}
.h159_c00003{height:9.440107pt;}
.hde_c00003{height:10.078640pt;}
.hcf_c00003{height:10.079173pt;}
.hca_c00003{height:10.079693pt;}
.hc8_c00003{height:10.080213pt;}
.ha6_c00003{height:10.238547pt;}
.h4a_c00003{height:10.398440pt;}
.h5f_c00003{height:10.398960pt;}
.h49_c00003{height:10.558333pt;}
.hce_c00003{height:10.558853pt;}
.h1c_c00003{height:10.559893pt;}
.h98_c00003{height:10.718747pt;}
.h6f_c00003{height:10.877600pt;}
.h6e_c00003{height:10.878640pt;}
.h7b_c00003{height:10.879173pt;}
.h84_c00003{height:11.038547pt;}
.hb6_c00003{height:11.039067pt;}
.h5d_c00003{height:11.040107pt;}
.h38_c00003{height:11.180733pt;}
.h3f_c00003{height:11.181253pt;}
.h36_c00003{height:11.182813pt;}
.h3b_c00003{height:11.341147pt;}
.h3e_c00003{height:11.341667pt;}
.had_c00003{height:11.359893pt;}
.hae_c00003{height:11.360413pt;}
.hd8_c00003{height:11.517707pt;}
.h1a_c00003{height:11.518747pt;}
.h1b_c00003{height:11.519787pt;}
.h18_c00003{height:11.520307pt;}
.h9c_c00003{height:11.678640pt;}
.h17_c00003{height:11.679693pt;}
.h19_c00003{height:11.680213pt;}
.hba_c00003{height:11.998440pt;}
.h79_c00003{height:11.998960pt;}
.h78_c00003{height:12.000000pt;}
.h9d_c00003{height:12.158853pt;}
.ha0_c00003{height:12.159893pt;}
.ha8_c00003{height:12.477600pt;}
.h69_c00003{height:12.478640pt;}
.h62_c00003{height:12.479173pt;}
.hab_c00003{height:12.479693pt;}
.ha3_c00003{height:12.480213pt;}
.ha9_c00003{height:12.638547pt;}
.haa_c00003{height:12.639067pt;}
.hac_c00003{height:12.640107pt;}
.h51_c00003{height:12.798440pt;}
.h4f_c00003{height:12.798960pt;}
.h5a_c00003{height:12.800000pt;}
.h53_c00003{height:12.958333pt;}
.h50_c00003{height:12.958853pt;}
.h5b_c00003{height:12.959893pt;}
.h64_c00003{height:12.960413pt;}
.h7d_c00003{height:13.117707pt;}
.h5e_c00003{height:13.118747pt;}
.h6b_c00003{height:13.119787pt;}
.h75_c00003{height:13.120307pt;}
.h7f_c00003{height:13.277600pt;}
.h73_c00003{height:13.278640pt;}
.h74_c00003{height:13.279173pt;}
.h77_c00003{height:13.279693pt;}
.h76_c00003{height:13.280213pt;}
.h87_c00003{height:13.437467pt;}
.h86_c00003{height:13.438533pt;}
.h88_c00003{height:13.439067pt;}
.h89_c00003{height:13.439600pt;}
.h9a_c00003{height:13.440133pt;}
.h95_c00003{height:13.598400pt;}
.h96_c00003{height:13.598933pt;}
.h3a_c00003{height:13.895867pt;}
.h3d_c00003{height:13.896400pt;}
.hdc_c00003{height:13.919333pt;}
.hd4_c00003{height:13.919733pt;}
.h34_c00003{height:14.056267pt;}
.h43_c00003{height:14.057333pt;}
.ha_c00003{height:15.040133pt;}
.h152_c00003{height:15.963750pt;}
.h2a_c00003{height:16.132267pt;}
.h2c_c00003{height:16.132800pt;}
.h2d_c00003{height:16.133333pt;}
.h2b_c00003{height:16.133867pt;}
.h153_c00003{height:16.850625pt;}
.h154_c00003{height:16.851052pt;}
.h155_c00003{height:16.851905pt;}
.h157_c00003{height:17.737500pt;}
.he4_c00003{height:17.758400pt;}
.he5_c00003{height:17.758800pt;}
.he8_c00003{height:17.759867pt;}
.heb_c00003{height:17.760400pt;}
.h39_c00003{height:17.889600pt;}
.h3c_c00003{height:17.890133pt;}
.he2_c00003{height:17.918800pt;}
.h7_c00003{height:17.919333pt;}
.h5_c00003{height:17.919733pt;}
.h8_c00003{height:17.920267pt;}
.h32_c00003{height:18.050000pt;}
.he3_c00003{height:18.078667pt;}
.hed_c00003{height:18.079200pt;}
.he9_c00003{height:18.079733pt;}
.he7_c00003{height:18.080267pt;}
.h15_c00003{height:18.719333pt;}
.h16_c00003{height:18.719733pt;}
.h12_c00003{height:18.720267pt;}
.hcd_c00003{height:19.085625pt;}
.h1e_c00003{height:19.334063pt;}
.hbd_c00003{height:20.553750pt;}
.h107_c00003{height:20.639600pt;}
.h104_c00003{height:20.640133pt;}
.h106_c00003{height:20.671333pt;}
.h109_c00003{height:20.672400pt;}
.h105_c00003{height:20.799467pt;}
.h108_c00003{height:20.800000pt;}
.h26_c00003{height:21.305232pt;}
.hb9_c00003{height:22.021875pt;}
.hc_c00003{height:22.559867pt;}
.h15a_c00003{height:23.058750pt;}
.h15b_c00003{height:23.059603pt;}
.h15d_c00003{height:23.061310pt;}
.h15c_c00003{height:23.062857pt;}
.h136_c00003{height:23.200000pt;}
.h138_c00003{height:23.232267pt;}
.h129_c00003{height:23.359867pt;}
.h12d_c00003{height:23.360400pt;}
.h132_c00003{height:23.391200pt;}
.h12c_c00003{height:23.391733pt;}
.h134_c00003{height:23.392133pt;}
.h12f_c00003{height:23.392667pt;}
.hc2_c00003{height:23.490000pt;}
.ha7_c00003{height:23.985000pt;}
.h70_c00003{height:24.570000pt;}
.h14a_c00003{height:24.727813pt;}
.h139_c00003{height:24.800000pt;}
.hcc_c00003{height:24.812849pt;}
.hcb_c00003{height:24.958125pt;}
.h99_c00003{height:25.155000pt;}
.h130_c00003{height:25.177500pt;}
.h133_c00003{height:25.919733pt;}
.h12e_c00003{height:25.920267pt;}
.hd9_c00003{height:26.118786pt;}
.h4e_c00003{height:26.325000pt;}
.hb8_c00003{height:26.426291pt;}
.h13d_c00003{height:26.446875pt;}
.h72_c00003{height:26.910000pt;}
.h113_c00003{height:27.042500pt;}
.hbb_c00003{height:27.424760pt;}
.h85_c00003{height:27.495000pt;}
.hbc_c00003{height:27.894416pt;}
.h11_c00003{height:28.021875pt;}
.h2_c00003{height:28.640133pt;}
.h1f_c00003{height:28.661459pt;}
.h14_c00003{height:28.765312pt;}
.h140_c00003{height:28.888125pt;}
.h13f_c00003{height:28.907500pt;}
.hd7_c00003{height:29.362541pt;}
.h42_c00003{height:29.452308pt;}
.h41_c00003{height:29.723540pt;}
.h37_c00003{height:30.643256pt;}
.hb7_c00003{height:30.830707pt;}
.h2e_c00003{height:31.165822pt;}
.h29_c00003{height:31.721163pt;}
.h143_c00003{height:32.092581pt;}
.hc9_c00003{height:32.092703pt;}
.hb1_c00003{height:32.175000pt;}
.hc7_c00003{height:32.298954pt;}
.h1d_c00003{height:32.604897pt;}
.h7a_c00003{height:32.760049pt;}
.ha4_c00003{height:32.788288pt;}
.h30_c00003{height:32.968997pt;}
.h119_c00003{height:33.257849pt;}
.h48_c00003{height:33.277582pt;}
.h8c_c00003{height:33.345000pt;}
.h11a_c00003{height:33.346537pt;}
.hc5_c00003{height:33.551372pt;}
.h6c_c00003{height:33.766875pt;}
.h8e_c00003{height:33.766997pt;}
.h9f_c00003{height:33.930000pt;}
.hd2_c00003{height:33.954665pt;}
.hd1_c00003{height:34.013535pt;}
.h83_c00003{height:34.256372pt;}
.h31_c00003{height:34.421948pt;}
.h94_c00003{height:34.745747pt;}
.h14d_c00003{height:34.770514pt;}
.h14e_c00003{height:34.775015pt;}
.hd3_c00003{height:35.010324pt;}
.hc1_c00003{height:35.235326pt;}
.hdb_c00003{height:35.260603pt;}
.h25_c00003{height:35.508760pt;}
.h149_c00003{height:35.566330pt;}
.ha5_c00003{height:35.685000pt;}
.h5c_c00003{height:36.270000pt;}
.hbf_c00003{height:36.566250pt;}
.hea_c00003{height:36.703410pt;}
.h6d_c00003{height:36.855097pt;}
.h97_c00003{height:37.440049pt;}
.hc4_c00003{height:37.872188pt;}
.h35_c00003{height:37.876008pt;}
.hc6_c00003{height:38.171576pt;}
.h145_c00003{height:38.610098pt;}
.h146_c00003{height:38.611164pt;}
.h128_c00003{height:38.672851pt;}
.h4_c00003{height:38.672929pt;}
.h12a_c00003{height:38.698789pt;}
.ha2_c00003{height:39.195195pt;}
.h44_c00003{height:39.243750pt;}
.h10d_c00003{height:39.359867pt;}
.h14b_c00003{height:39.431250pt;}
.h10a_c00003{height:39.520267pt;}
.hd5_c00003{height:39.639701pt;}
.h47_c00003{height:39.780098pt;}
.hb_c00003{height:40.020000pt;}
.h10_c00003{height:40.048750pt;}
.h6a_c00003{height:40.365000pt;}
.h8d_c00003{height:40.365146pt;}
.he0_c00003{height:40.618410pt;}
.h82_c00003{height:40.950146pt;}
.hb5_c00003{height:41.107500pt;}
.h12b_c00003{height:41.177500pt;}
.h93_c00003{height:41.535146pt;}
.h54_c00003{height:41.698849pt;}
.h4c_c00003{height:41.700930pt;}
.h67_c00003{height:41.703015pt;}
.haf_c00003{height:41.755611pt;}
.h148_c00003{height:41.934375pt;}
.h147_c00003{height:41.990625pt;}
.h6_c00003{height:42.262500pt;}
.h91_c00003{height:42.283752pt;}
.h8f_c00003{height:42.283898pt;}
.h7e_c00003{height:42.285832pt;}
.hb3_c00003{height:42.285978pt;}
.h13e_c00003{height:42.320000pt;}
.hc0_c00003{height:42.575625pt;}
.hf_c00003{height:42.751250pt;}
.h22_c00003{height:42.866250pt;}
.hef_c00003{height:42.895000pt;}
.h11c_c00003{height:42.988250pt;}
.h14c_c00003{height:43.290098pt;}
.h10b_c00003{height:43.875146pt;}
.h110_c00003{height:43.875293pt;}
.h8a_c00003{height:44.150146pt;}
.h4b_c00003{height:44.245000pt;}
.h9b_c00003{height:44.735146pt;}
.he1_c00003{height:45.022500pt;}
.h27_c00003{height:45.451162pt;}
.h9_c00003{height:46.593750pt;}
.h13_c00003{height:47.627813pt;}
.h57_c00003{height:48.070867pt;}
.h58_c00003{height:48.083400pt;}
.h63_c00003{height:48.085000pt;}
.h13a_c00003{height:48.165433pt;}
.h117_c00003{height:50.628750pt;}
.hd_c00003{height:50.895000pt;}
.h11d_c00003{height:51.287500pt;}
.h127_c00003{height:52.351600pt;}
.hd0_c00003{height:52.852762pt;}
.h141_c00003{height:53.360000pt;}
.h101_c00003{height:53.820000pt;}
.h131_c00003{height:54.079733pt;}
.he_c00003{height:54.368438pt;}
.h2f_c00003{height:54.423830pt;}
.hdd_c00003{height:55.789053pt;}
.hbe_c00003{height:55.791133pt;}
.h144_c00003{height:55.918750pt;}
.hda_c00003{height:56.241687pt;}
.hdf_c00003{height:56.243767pt;}
.hc3_c00003{height:57.709853pt;}
.hd6_c00003{height:59.178101pt;}
.hf2_c00003{height:59.534573pt;}
.hf6_c00003{height:59.536653pt;}
.hf1_c00003{height:60.174147pt;}
.hf5_c00003{height:60.176227pt;}
.h13b_c00003{height:61.180000pt;}
.h21_c00003{height:61.969688pt;}
.h14f_c00003{height:62.010000pt;}
.h150_c00003{height:62.010651pt;}
.h135_c00003{height:62.079733pt;}
.hb0_c00003{height:62.234768pt;}
.h90_c00003{height:63.404720pt;}
.h92_c00003{height:63.406653pt;}
.ha1_c00003{height:63.406800pt;}
.h3_c00003{height:63.984375pt;}
.h80_c00003{height:64.044147pt;}
.hb4_c00003{height:64.044293pt;}
.h81_c00003{height:64.046227pt;}
.h8b_c00003{height:64.631373pt;}
.h9e_c00003{height:66.495573pt;}
.h61_c00003{height:67.938444pt;}
.h65_c00003{height:67.940524pt;}
.h10f_c00003{height:68.445000pt;}
.h137_c00003{height:69.279733pt;}
.h28_c00003{height:69.774141pt;}
.h116_c00003{height:72.334573pt;}
.hff_c00003{height:72.336653pt;}
.h100_c00003{height:72.338733pt;}
.h66_c00003{height:73.046707pt;}
.hfb_c00003{height:76.174147pt;}
.hfd_c00003{height:76.176227pt;}
.hfa_c00003{height:76.813773pt;}
.hfc_c00003{height:76.815853pt;}
.h114_c00003{height:76.820013pt;}
.h33_c00003{height:77.681877pt;}
.he6_c00003{height:80.222500pt;}
.h111_c00003{height:80.653347pt;}
.hec_c00003{height:80.862073pt;}
.hee_c00003{height:80.864153pt;}
.h102_c00003{height:87.750000pt;}
.h112_c00003{height:88.976227pt;}
.h10e_c00003{height:89.119733pt;}
.hf7_c00003{height:93.420917pt;}
.hf4_c00003{height:93.426250pt;}
.hf0_c00003{height:93.431583pt;}
.hfe_c00003{height:93.453293pt;}
.hf9_c00003{height:93.453347pt;}
.hf8_c00003{height:93.455373pt;}
.hf3_c00003{height:93.455427pt;}
.h115_c00003{height:93.457507pt;}
.h60_c00003{height:98.019671pt;}
.h68_c00003{height:98.021751pt;}
.h56_c00003{height:98.659298pt;}
.h55_c00003{height:100.580098pt;}
.h10c_c00003{height:106.880267pt;}
.h103_c00003{height:124.800000pt;}
.h11f_c00003{height:269.920000pt;}
.h120_c00003{height:306.880000pt;}
.h118_c00003{height:319.360000pt;}
.h126_c00003{height:364.000000pt;}
.h125_c00003{height:386.880000pt;}
.h11b_c00003{height:628.800000pt;}
.h123_c00003{height:629.920000pt;}
.h124_c00003{height:648.800000pt;}
.h11e_c00003{height:658.880000pt;}
.h121_c00003{height:713.920000pt;}
.h122_c00003{height:760.800000pt;}
.h45_c00003{height:793.333067pt;}
.h13c_c00003{height:793.333200pt;}
.h46_c00003{height:793.333333pt;}
.h23_c00003{height:1121.333200pt;}
.h24_c00003{height:1121.333333pt;}
.h20_c00003{height:1122.559867pt;}
.h0_c00003{height:1122.666400pt;}
.h142_c00003{height:1122.666533pt;}
.h1_c00003{height:1122.666667pt;}
.w264_c00003{width:0.159896pt;}
.w24d_c00003{width:0.320312pt;}
.w255_c00003{width:0.480208pt;}
.w249_c00003{width:0.800000pt;}
.w273_c00003{width:1.440107pt;}
.w243_c00003{width:1.600000pt;}
.w240_c00003{width:1.759893pt;}
.w259_c00003{width:1.920307pt;}
.w201_c00003{width:2.079693pt;}
.w22a_c00003{width:2.080213pt;}
.w221_c00003{width:2.239587pt;}
.w1de_c00003{width:2.240107pt;}
.w276_c00003{width:3.040107pt;}
.w278_c00003{width:3.200000pt;}
.w25c_c00003{width:3.359893pt;}
.w26b_c00003{width:3.360413pt;}
.w25d_c00003{width:3.519787pt;}
.w1ee_c00003{width:3.839587pt;}
.w1ef_c00003{width:3.840107pt;}
.w229_c00003{width:4.159893pt;}
.w20c_c00003{width:4.160413pt;}
.w274_c00003{width:4.319787pt;}
.w1ea_c00003{width:4.640107pt;}
.w166_c00003{width:4.800000pt;}
.w42_c00003{width:4.959893pt;}
.wc0_c00003{width:4.960413pt;}
.wfd_c00003{width:5.119787pt;}
.wfe_c00003{width:5.120307pt;}
.w22b_c00003{width:5.279693pt;}
.w21f_c00003{width:5.440107pt;}
.w20b_c00003{width:5.759893pt;}
.w20a_c00003{width:5.919787pt;}
.w266_c00003{width:6.080213pt;}
.w228_c00003{width:6.400000pt;}
.w1c3_c00003{width:6.559893pt;}
.w1ff_c00003{width:6.560413pt;}
.w214_c00003{width:6.719787pt;}
.w1d9_c00003{width:6.720307pt;}
.w89_c00003{width:6.879693pt;}
.w91_c00003{width:6.880213pt;}
.wc1_c00003{width:7.039587pt;}
.wcf_c00003{width:7.040107pt;}
.w10b_c00003{width:7.199480pt;}
.wff_c00003{width:7.200000pt;}
.w30_c00003{width:7.519787pt;}
.w1e_c00003{width:7.520307pt;}
.w29_c00003{width:7.679693pt;}
.w88_c00003{width:7.839587pt;}
.w34_c00003{width:7.840107pt;}
.wbc_c00003{width:7.999480pt;}
.w33_c00003{width:8.000000pt;}
.wf7_c00003{width:8.159893pt;}
.wf8_c00003{width:8.160413pt;}
.w217_c00003{width:8.319787pt;}
.w204_c00003{width:8.320307pt;}
.w1c4_c00003{width:8.479693pt;}
.w1f8_c00003{width:8.480213pt;}
.w45_c00003{width:8.800000pt;}
.w1f9_c00003{width:8.959893pt;}
.w7e_c00003{width:9.272400pt;}
.w1c2_c00003{width:9.279693pt;}
.w1c7_c00003{width:9.280213pt;}
.w1df_c00003{width:9.439587pt;}
.w6f_c00003{width:9.440107pt;}
.w23f_c00003{width:9.600000pt;}
.w6d_c00003{width:9.759893pt;}
.w25e_c00003{width:9.760413pt;}
.w44_c00003{width:9.919787pt;}
.w43_c00003{width:9.920307pt;}
.w6a_c00003{width:10.079693pt;}
.w224_c00003{width:10.080213pt;}
.w68_c00003{width:10.239587pt;}
.w1ec_c00003{width:10.240107pt;}
.w1f2_c00003{width:10.399480pt;}
.w1e2_c00003{width:10.400000pt;}
.w58_c00003{width:10.560413pt;}
.w1eb_c00003{width:10.879693pt;}
.w6c_c00003{width:10.880213pt;}
.w71_c00003{width:11.040107pt;}
.w6b_c00003{width:11.199480pt;}
.w55_c00003{width:11.200000pt;}
.w47_c00003{width:11.518747pt;}
.w2a5_c00003{width:11.839587pt;}
.w1d5_c00003{width:12.000000pt;}
.w59_c00003{width:12.319787pt;}
.w66_c00003{width:13.440133pt;}
.w53_c00003{width:13.759867pt;}
.w8a_c00003{width:13.760400pt;}
.wc2_c00003{width:14.079733pt;}
.wc5_c00003{width:14.080267pt;}
.w13a_c00003{width:14.399467pt;}
.w70_c00003{width:14.400000pt;}
.w6e_c00003{width:14.719733pt;}
.w4d_c00003{width:14.879733pt;}
.w4c_c00003{width:14.880267pt;}
.w4b_c00003{width:14.880667pt;}
.w1f_c00003{width:15.039600pt;}
.w9_c00003{width:15.040133pt;}
.w69_c00003{width:15.200000pt;}
.w5a_c00003{width:15.359867pt;}
.w67_c00003{width:15.520267pt;}
.w185_c00003{width:15.679733pt;}
.w184_c00003{width:15.680267pt;}
.w51_c00003{width:15.840133pt;}
.w72_c00003{width:16.000000pt;}
.w11d_c00003{width:16.319733pt;}
.w11e_c00003{width:16.320267pt;}
.w13f_c00003{width:16.480267pt;}
.w1b_c00003{width:16.640133pt;}
.w4f_c00003{width:17.279733pt;}
.w50_c00003{width:17.280267pt;}
.w73_c00003{width:17.280667pt;}
.w41_c00003{width:17.600000pt;}
.w90_c00003{width:17.759867pt;}
.wce_c00003{width:18.079733pt;}
.wc9_c00003{width:18.080267pt;}
.w107_c00003{width:18.400000pt;}
.w138_c00003{width:18.559867pt;}
.w13e_c00003{width:18.560400pt;}
.w267_c00003{width:18.719333pt;}
.w193_c00003{width:18.719733pt;}
.w38_c00003{width:18.720267pt;}
.w8_c00003{width:19.359867pt;}
.w167_c00003{width:19.520267pt;}
.w76_c00003{width:19.680267pt;}
.w49_c00003{width:19.839600pt;}
.w48_c00003{width:19.840133pt;}
.w52_c00003{width:19.840667pt;}
.w1ae_c00003{width:20.158800pt;}
.wc3_c00003{width:20.159867pt;}
.w4a_c00003{width:20.319733pt;}
.w61_c00003{width:20.320267pt;}
.w100_c00003{width:20.479733pt;}
.w8b_c00003{width:20.639600pt;}
.w40_c00003{width:20.640133pt;}
.wec_c00003{width:21.119333pt;}
.w37_c00003{width:21.119733pt;}
.wc6_c00003{width:21.120267pt;}
.w183_c00003{width:21.279733pt;}
.w1ca_c00003{width:21.280267pt;}
.w261_c00003{width:21.280667pt;}
.w26c_c00003{width:21.440133pt;}
.w103_c00003{width:21.599467pt;}
.w102_c00003{width:21.600000pt;}
.w97_c00003{width:21.759867pt;}
.w96_c00003{width:21.760400pt;}
.w129_c00003{width:21.919333pt;}
.wd6_c00003{width:21.919733pt;}
.wd7_c00003{width:21.920267pt;}
.w113_c00003{width:22.079733pt;}
.w112_c00003{width:22.080267pt;}
.w46_c00003{width:22.239600pt;}
.w62_c00003{width:22.240133pt;}
.w11c_c00003{width:22.400000pt;}
.w141_c00003{width:22.559867pt;}
.w142_c00003{width:22.560400pt;}
.wae_c00003{width:22.719733pt;}
.w128_c00003{width:23.039600pt;}
.wd3_c00003{width:23.040133pt;}
.w16e_c00003{width:23.360400pt;}
.w110_c00003{width:23.519733pt;}
.w10f_c00003{width:23.520267pt;}
.w140_c00003{width:23.679733pt;}
.w92_c00003{width:23.680267pt;}
.w212_c00003{width:23.999467pt;}
.w1e5_c00003{width:24.000000pt;}
.w5c_c00003{width:24.158800pt;}
.wd0_c00003{width:24.159867pt;}
.w10c_c00003{width:24.319733pt;}
.wb6_c00003{width:24.479733pt;}
.wb5_c00003{width:24.480267pt;}
.w99_c00003{width:24.639600pt;}
.w9a_c00003{width:24.640133pt;}
.w63_c00003{width:24.800000pt;}
.w194_c00003{width:24.959867pt;}
.w126_c00003{width:25.119333pt;}
.wc7_c00003{width:25.119733pt;}
.wc8_c00003{width:25.120267pt;}
.w65_c00003{width:25.279733pt;}
.w180_c00003{width:25.439600pt;}
.wa9_c00003{width:25.599467pt;}
.w54_c00003{width:25.600000pt;}
.w137_c00003{width:25.759867pt;}
.w139_c00003{width:25.760400pt;}
.w1a5_c00003{width:25.919733pt;}
.w1a6_c00003{width:25.920267pt;}
.w122_c00003{width:26.079733pt;}
.we8_c00003{width:26.080267pt;}
.w31_c00003{width:26.239600pt;}
.wb_c00003{width:26.240133pt;}
.w189_c00003{width:26.399467pt;}
.w168_c00003{width:26.400000pt;}
.w152_c00003{width:26.719733pt;}
.w95_c00003{width:26.720267pt;}
.w1c9_c00003{width:26.880267pt;}
.wc4_c00003{width:27.039600pt;}
.w3a_c00003{width:27.040133pt;}
.w5b_c00003{width:27.199467pt;}
.w74_c00003{width:27.200000pt;}
.w1ab_c00003{width:27.359867pt;}
.w220_c00003{width:27.360400pt;}
.w101_c00003{width:27.519733pt;}
.wac_c00003{width:27.520267pt;}
.w2b_c00003{width:27.679733pt;}
.w2a_c00003{width:27.680267pt;}
.w159_c00003{width:27.839600pt;}
.w135_c00003{width:27.840133pt;}
.w1fa_c00003{width:27.999467pt;}
.w171_c00003{width:28.000000pt;}
.wed_c00003{width:28.159867pt;}
.w12a_c00003{width:28.160400pt;}
.w56_c00003{width:28.319733pt;}
.w199_c00003{width:28.320267pt;}
.w6_c00003{width:28.640133pt;}
.w154_c00003{width:28.799467pt;}
.w11a_c00003{width:28.800000pt;}
.wd8_c00003{width:28.959867pt;}
.w277_c00003{width:29.119333pt;}
.w36_c00003{width:29.119733pt;}
.w35_c00003{width:29.120267pt;}
.w114_c00003{width:29.279733pt;}
.w1a0_c00003{width:29.280267pt;}
.w265_c00003{width:29.280667pt;}
.w4_c00003{width:29.440133pt;}
.w1c1_c00003{width:29.759867pt;}
.w39_c00003{width:29.919733pt;}
.w17_c00003{width:30.239600pt;}
.w2c_c00003{width:30.240133pt;}
.w26a_c00003{width:30.400000pt;}
.w1d_c00003{width:30.559867pt;}
.w75_c00003{width:30.719333pt;}
.w247_c00003{width:30.719733pt;}
.w248_c00003{width:30.720267pt;}
.w275_c00003{width:31.040133pt;}
.w16f_c00003{width:31.359867pt;}
.w182_c00003{width:31.360400pt;}
.w93_c00003{width:31.520267pt;}
.w1a7_c00003{width:31.679733pt;}
.w1a9_c00003{width:31.680267pt;}
.we_c00003{width:31.839600pt;}
.w13_c00003{width:31.840133pt;}
.w2d_c00003{width:32.000000pt;}
.wd1_c00003{width:32.159867pt;}
.w16b_c00003{width:32.160400pt;}
.w98_c00003{width:32.320267pt;}
.w8d_c00003{width:32.480267pt;}
.w24b_c00003{width:32.640133pt;}
.w10d_c00003{width:32.799467pt;}
.wd9_c00003{width:32.800000pt;}
.wd5_c00003{width:32.959867pt;}
.w165_c00003{width:33.279733pt;}
.w11_c00003{width:33.280267pt;}
.w106_c00003{width:33.439600pt;}
.w1ed_c00003{width:33.599467pt;}
.w9c_c00003{width:33.600000pt;}
.w20_c00003{width:33.759867pt;}
.w7_c00003{width:33.760400pt;}
.w13b_c00003{width:33.919733pt;}
.w5f_c00003{width:34.079733pt;}
.wbf_c00003{width:34.080267pt;}
.web_c00003{width:34.240133pt;}
.w162_c00003{width:34.400000pt;}
.w195_c00003{width:34.559867pt;}
.wfc_c00003{width:34.719733pt;}
.wfb_c00003{width:34.720267pt;}
.w134_c00003{width:35.039600pt;}
.w133_c00003{width:35.040133pt;}
.w4e_c00003{width:35.200000pt;}
.w28_c00003{width:35.359867pt;}
.w1b1_c00003{width:35.519733pt;}
.w16a_c00003{width:35.680267pt;}
.w80_c00003{width:35.809867pt;}
.w130_c00003{width:35.840133pt;}
.w205_c00003{width:35.999467pt;}
.w1bb_c00003{width:36.000000pt;}
.w32_c00003{width:36.159867pt;}
.waa_c00003{width:36.479733pt;}
.wca_c00003{width:36.640133pt;}
.wad_c00003{width:36.959867pt;}
.w206_c00003{width:36.960400pt;}
.w123_c00003{width:37.119733pt;}
.we9_c00003{width:37.120267pt;}
.w105_c00003{width:37.439600pt;}
.w87_c00003{width:37.600000pt;}
.wee_c00003{width:37.759867pt;}
.w118_c00003{width:37.919733pt;}
.w161_c00003{width:38.079733pt;}
.w153_c00003{width:38.080267pt;}
.w11b_c00003{width:38.239600pt;}
.w2a7_c00003{width:38.240133pt;}
.w24f_c00003{width:38.400000pt;}
.w2a6_c00003{width:38.560400pt;}
.w1da_c00003{width:38.719733pt;}
.w215_c00003{width:38.720267pt;}
.w155_c00003{width:38.879733pt;}
.w3f_c00003{width:38.880267pt;}
.w22_c00003{width:39.519333pt;}
.wf6_c00003{width:39.519733pt;}
.wbb_c00003{width:39.520267pt;}
.w25f_c00003{width:39.999467pt;}
.w24_c00003{width:40.000000pt;}
.w16d_c00003{width:40.159867pt;}
.w1f1_c00003{width:40.160400pt;}
.w12f_c00003{width:40.319733pt;}
.w8f_c00003{width:40.479733pt;}
.w24a_c00003{width:40.800000pt;}
.w127_c00003{width:41.119333pt;}
.wcc_c00003{width:41.119733pt;}
.wcd_c00003{width:41.120267pt;}
.w1c_c00003{width:41.279733pt;}
.w1a_c00003{width:41.600000pt;}
.w109_c00003{width:41.919733pt;}
.w10a_c00003{width:41.920267pt;}
.w151_c00003{width:42.239600pt;}
.w13d_c00003{width:42.240133pt;}
.w1cb_c00003{width:42.559867pt;}
.w86_c00003{width:42.719733pt;}
.w23_c00003{width:42.720267pt;}
.w1b8_c00003{width:43.200000pt;}
.w251_c00003{width:43.840133pt;}
.w1be_c00003{width:44.159867pt;}
.w1bf_c00003{width:44.160400pt;}
.w2e_c00003{width:44.479733pt;}
.w2f_c00003{width:44.480267pt;}
.w2a2_c00003{width:44.800000pt;}
.w222_c00003{width:44.959867pt;}
.w2a4_c00003{width:44.960400pt;}
.w1c8_c00003{width:45.279733pt;}
.w17f_c00003{width:45.280267pt;}
.w262_c00003{width:45.280667pt;}
.w5e_c00003{width:45.759867pt;}
.wa8_c00003{width:46.080267pt;}
.we7_c00003{width:46.559867pt;}
.w245_c00003{width:46.880267pt;}
.w60_c00003{width:47.039600pt;}
.w1ba_c00003{width:47.040133pt;}
.w117_c00003{width:47.679733pt;}
.w1f7_c00003{width:47.680267pt;}
.w150_c00003{width:47.839600pt;}
.w1c6_c00003{width:47.840133pt;}
.w3e_c00003{width:48.000000pt;}
.w250_c00003{width:48.640133pt;}
.w1dc_c00003{width:48.800000pt;}
.w1cd_c00003{width:48.959867pt;}
.w1fb_c00003{width:48.960400pt;}
.w21c_c00003{width:49.919733pt;}
.w21d_c00003{width:49.920267pt;}
.wa_c00003{width:50.079733pt;}
.w24e_c00003{width:50.080267pt;}
.w5d_c00003{width:50.558800pt;}
.w187_c00003{width:51.040133pt;}
.w18f_c00003{width:51.358800pt;}
.w18d_c00003{width:51.359867pt;}
.waf_c00003{width:51.680267pt;}
.wf0_c00003{width:52.640133pt;}
.w164_c00003{width:52.800000pt;}
.wf_c00003{width:53.119333pt;}
.w14_c00003{width:53.119733pt;}
.w120_c00003{width:53.439600pt;}
.w2a3_c00003{width:53.600000pt;}
.w157_c00003{width:54.239600pt;}
.wbe_c00003{width:54.240133pt;}
.w1cf_c00003{width:54.559867pt;}
.w1d0_c00003{width:54.560400pt;}
.w19d_c00003{width:54.719733pt;}
.w19e_c00003{width:54.720267pt;}
.w21b_c00003{width:54.879733pt;}
.w21a_c00003{width:54.880267pt;}
.wfa_c00003{width:55.200000pt;}
.w1a2_c00003{width:55.680267pt;}
.w132_c00003{width:55.840133pt;}
.w22d_c00003{width:56.000000pt;}
.w190_c00003{width:56.159867pt;}
.w19a_c00003{width:56.160400pt;}
.w1f5_c00003{width:56.799467pt;}
.w10_c00003{width:56.800000pt;}
.w18c_c00003{width:57.119733pt;}
.w18e_c00003{width:57.120267pt;}
.w252_c00003{width:57.760400pt;}
.w196_c00003{width:58.080267pt;}
.w1c5_c00003{width:58.880267pt;}
.w19f_c00003{width:59.039600pt;}
.w1a1_c00003{width:59.040133pt;}
.w64_c00003{width:59.679733pt;}
.w225_c00003{width:59.839600pt;}
.w21e_c00003{width:59.840133pt;}
.w3_c00003{width:60.000000pt;}
.w209_c00003{width:60.479733pt;}
.w208_c00003{width:60.480267pt;}
.w241_c00003{width:61.600000pt;}
.w1f6_c00003{width:61.759867pt;}
.w16c_c00003{width:62.720267pt;}
.w19c_c00003{width:62.879733pt;}
.w19b_c00003{width:62.880267pt;}
.w8e_c00003{width:63.359867pt;}
.w244_c00003{width:63.520267pt;}
.w7a_c00003{width:63.787467pt;}
.wcb_c00003{width:64.480267pt;}
.w186_c00003{width:64.800000pt;}
.w253_c00003{width:65.120267pt;}
.w108_c00003{width:65.279733pt;}
.w25_c00003{width:65.759867pt;}
.w13c_c00003{width:66.079733pt;}
.w1a8_c00003{width:66.240133pt;}
.wef_c00003{width:67.200000pt;}
.w11f_c00003{width:67.679733pt;}
.w1c0_c00003{width:68.479733pt;}
.w156_c00003{width:68.639600pt;}
.w1e8_c00003{width:68.640133pt;}
.w1bc_c00003{width:69.119733pt;}
.w1bd_c00003{width:69.120267pt;}
.w1e1_c00003{width:69.280267pt;}
.w1e4_c00003{width:69.439600pt;}
.w1cc_c00003{width:70.080267pt;}
.w246_c00003{width:70.400000pt;}
.w263_c00003{width:71.039600pt;}
.w202_c00003{width:71.040133pt;}
.wb7_c00003{width:71.359867pt;}
.w1aa_c00003{width:71.519733pt;}
.w1a3_c00003{width:71.520267pt;}
.w25b_c00003{width:71.680267pt;}
.w25a_c00003{width:71.680667pt;}
.w169_c00003{width:71.840133pt;}
.w296_c00003{width:71.872400pt;}
.w260_c00003{width:72.159867pt;}
.w23d_c00003{width:72.319733pt;}
.w23e_c00003{width:72.480267pt;}
.w23c_c00003{width:72.480667pt;}
.w8c_c00003{width:72.800000pt;}
.w1af_c00003{width:72.959867pt;}
.w258_c00003{width:73.119333pt;}
.w257_c00003{width:73.119733pt;}
.w57_c00003{width:73.759867pt;}
.w15f_c00003{width:74.080267pt;}
.w191_c00003{width:74.400000pt;}
.w1f0_c00003{width:74.719733pt;}
.w1f3_c00003{width:74.720267pt;}
.w104_c00003{width:75.039600pt;}
.w12_c00003{width:75.200000pt;}
.w15e_c00003{width:75.520267pt;}
.w20e_c00003{width:75.680267pt;}
.w203_c00003{width:75.999467pt;}
.w136_c00003{width:76.000000pt;}
.w197_c00003{width:76.319733pt;}
.w7b_c00003{width:76.416133pt;}
.w160_c00003{width:76.639600pt;}
.w19_c00003{width:76.640133pt;}
.w18_c00003{width:76.800000pt;}
.w1b9_c00003{width:77.759867pt;}
.wd2_c00003{width:78.559867pt;}
.w1e7_c00003{width:79.039600pt;}
.w1e0_c00003{width:79.040133pt;}
.w15_c00003{width:79.200000pt;}
.w256_c00003{width:79.360400pt;}
.w170_c00003{width:79.520267pt;}
.w1b2_c00003{width:79.680267pt;}
.w10e_c00003{width:80.479733pt;}
.w1b3_c00003{width:80.640133pt;}
.w9b_c00003{width:80.959867pt;}
.w1dd_c00003{width:81.279733pt;}
.w200_c00003{width:81.280267pt;}
.wd4_c00003{width:81.759867pt;}
.w254_c00003{width:82.240133pt;}
.w181_c00003{width:82.720267pt;}
.w5_c00003{width:82.880667pt;}
.w111_c00003{width:83.200000pt;}
.w29c_c00003{width:83.392133pt;}
.w1ac_c00003{width:83.520267pt;}
.w26_c00003{width:83.840133pt;}
.wab_c00003{width:84.159867pt;}
.w207_c00003{width:84.319733pt;}
.w17d_c00003{width:84.320267pt;}
.w20d_c00003{width:84.640133pt;}
.w242_c00003{width:84.960400pt;}
.wea_c00003{width:85.280267pt;}
.w1ce_c00003{width:85.759867pt;}
.w1fc_c00003{width:85.760400pt;}
.w237_c00003{width:86.080267pt;}
.w24c_c00003{width:86.240133pt;}
.we5_c00003{width:86.559867pt;}
.w20f_c00003{width:86.560400pt;}
.w119_c00003{width:86.879733pt;}
.w115_c00003{width:87.679733pt;}
.w1b7_c00003{width:88.319733pt;}
.w1b6_c00003{width:88.320267pt;}
.w188_c00003{width:88.960400pt;}
.w14e_c00003{width:89.119733pt;}
.w1b0_c00003{width:89.280267pt;}
.w298_c00003{width:89.920267pt;}
.w299_c00003{width:89.951067pt;}
.w29a_c00003{width:90.079733pt;}
.wb0_c00003{width:90.240133pt;}
.w163_c00003{width:90.400000pt;}
.w234_c00003{width:90.432800pt;}
.wf1_c00003{width:91.359867pt;}
.w94_c00003{width:91.680267pt;}
.w235_c00003{width:91.713067pt;}
.wbd_c00003{width:92.959867pt;}
.w121_c00003{width:93.119733pt;}
.wb4_c00003{width:93.280267pt;}
.w12d_c00003{width:93.600000pt;}
.w125_c00003{width:93.759867pt;}
.w230_c00003{width:93.760400pt;}
.w22e_c00003{width:93.792667pt;}
.w124_c00003{width:93.920267pt;}
.w22f_c00003{width:93.952667pt;}
.w158_c00003{width:94.239600pt;}
.wf9_c00003{width:94.559867pt;}
.wb8_c00003{width:94.719733pt;}
.w131_c00003{width:95.839600pt;}
.w12e_c00003{width:96.000000pt;}
.wc_c00003{width:96.160400pt;}
.wb3_c00003{width:96.480267pt;}
.w272_c00003{width:96.959867pt;}
.w271_c00003{width:96.960400pt;}
.w269_c00003{width:97.280267pt;}
.w1a4_c00003{width:98.400000pt;}
.w26e_c00003{width:98.719733pt;}
.w26d_c00003{width:98.720267pt;}
.w219_c00003{width:99.200000pt;}
.w270_c00003{width:99.519733pt;}
.w26f_c00003{width:99.520267pt;}
.w233_c00003{width:99.680267pt;}
.w211_c00003{width:99.839600pt;}
.w210_c00003{width:99.840133pt;}
.w226_c00003{width:99.999467pt;}
.w223_c00003{width:100.000000pt;}
.w232_c00003{width:100.513067pt;}
.w1b4_c00003{width:102.240133pt;}
.w1ad_c00003{width:102.719733pt;}
.w192_c00003{width:102.720267pt;}
.w216_c00003{width:102.879733pt;}
.w218_c00003{width:102.880267pt;}
.w22c_c00003{width:102.913067pt;}
.w1e9_c00003{width:103.519733pt;}
.w1b5_c00003{width:103.680267pt;}
.w238_c00003{width:103.712533pt;}
.w16_c00003{width:104.959867pt;}
.w281_c00003{width:105.472400pt;}
.w198_c00003{width:105.600000pt;}
.w1e3_c00003{width:105.759867pt;}
.w15c_c00003{width:106.720267pt;}
.w279_c00003{width:107.040133pt;}
.w29e_c00003{width:108.800000pt;}
.w29f_c00003{width:108.831200pt;}
.w1d1_c00003{width:108.959867pt;}
.w1fd_c00003{width:108.960400pt;}
.wb9_c00003{width:109.440133pt;}
.w227_c00003{width:109.760400pt;}
.w1e6_c00003{width:110.559867pt;}
.w1fe_c00003{width:110.560400pt;}
.w21_c00003{width:110.719733pt;}
.w236_c00003{width:110.912533pt;}
.wf4_c00003{width:111.200000pt;}
.w239_c00003{width:112.511467pt;}
.w12b_c00003{width:112.639600pt;}
.w23a_c00003{width:112.796933pt;}
.w1d8_c00003{width:115.519733pt;}
.w213_c00003{width:115.520267pt;}
.w2_c00003{width:117.600000pt;}
.w295_c00003{width:119.040133pt;}
.w280_c00003{width:120.800000pt;}
.w1d6_c00003{width:121.280267pt;}
.w23b_c00003{width:122.112533pt;}
.w231_c00003{width:122.271333pt;}
.w289_c00003{width:129.759867pt;}
.w268_c00003{width:131.200000pt;}
.w1db_c00003{width:132.480267pt;}
.w290_c00003{width:133.600000pt;}
.w1d4_c00003{width:133.920000pt;}
.w286_c00003{width:135.360000pt;}
.w284_c00003{width:135.840000pt;}
.w285_c00003{width:135.866667pt;}
.w29b_c00003{width:138.240000pt;}
.w297_c00003{width:138.906667pt;}
.w288_c00003{width:148.828000pt;}
.w28f_c00003{width:153.306667pt;}
.w7c_c00003{width:160.506667pt;}
.w29d_c00003{width:161.308000pt;}
.w82_c00003{width:162.105333pt;}
.w1d2_c00003{width:162.720000pt;}
.w3d_c00003{width:163.200000pt;}
.w1f4_c00003{width:164.480000pt;}
.w28c_c00003{width:167.066667pt;}
.w294_c00003{width:171.840000pt;}
.w293_c00003{width:172.026667pt;}
.w1d3_c00003{width:173.280000pt;}
.w283_c00003{width:181.148000pt;}
.w28d_c00003{width:185.760000pt;}
.w27f_c00003{width:195.706667pt;}
.w1d7_c00003{width:199.200000pt;}
.w27_c00003{width:204.960000pt;}
.w28b_c00003{width:223.040000pt;}
.w282_c00003{width:226.880000pt;}
.w292_c00003{width:229.120000pt;}
.w178_c00003{width:240.000000pt;}
.w287_c00003{width:240.986667pt;}
.wa3_c00003{width:243.520000pt;}
.w28e_c00003{width:248.026667pt;}
.we0_c00003{width:248.160000pt;}
.w81_c00003{width:248.273333pt;}
.w149_c00003{width:252.160000pt;}
.w7f_c00003{width:255.306667pt;}
.w173_c00003{width:261.760000pt;}
.w9e_c00003{width:266.240000pt;}
.wdb_c00003{width:269.920000pt;}
.wd_c00003{width:273.440000pt;}
.w144_c00003{width:275.520000pt;}
.w18a_c00003{width:278.880000pt;}
.w28a_c00003{width:279.066667pt;}
.w17b_c00003{width:279.360000pt;}
.w18b_c00003{width:282.080000pt;}
.wb1_c00003{width:282.400000pt;}
.wa6_c00003{width:283.520000pt;}
.wb2_c00003{width:285.600000pt;}
.w291_c00003{width:287.068000pt;}
.wf2_c00003{width:287.360000pt;}
.we3_c00003{width:288.480000pt;}
.wf3_c00003{width:290.720000pt;}
.w15a_c00003{width:292.480000pt;}
.w14c_c00003{width:293.440000pt;}
.w15b_c00003{width:295.840000pt;}
.w7d_c00003{width:309.182667pt;}
.w17e_c00003{width:334.240000pt;}
.we6_c00003{width:342.880000pt;}
.w116_c00003{width:348.800000pt;}
.w15d_c00003{width:349.920000pt;}
.w14f_c00003{width:353.600000pt;}
.wba_c00003{width:358.400000pt;}
.wf5_c00003{width:364.800000pt;}
.w12c_c00003{width:369.600000pt;}
.w177_c00003{width:369.920000pt;}
.wa2_c00003{width:374.880000pt;}
.wdf_c00003{width:382.560000pt;}
.w148_c00003{width:388.160000pt;}
.w17c_c00003{width:476.000000pt;}
.wa7_c00003{width:483.680000pt;}
.we4_c00003{width:492.000000pt;}
.w14d_c00003{width:499.840000pt;}
.w27a_c00003{width:547.680000pt;}
.w17a_c00003{width:561.440000pt;}
.wa5_c00003{width:569.280000pt;}
.we2_c00003{width:580.320000pt;}
.w14b_c00003{width:590.560000pt;}
.w27b_c00003{width:600.960000pt;}
.w27c_c00003{width:641.920000pt;}
.w175_c00003{width:720.640000pt;}
.w174_c00003{width:723.360000pt;}
.w176_c00003{width:730.400000pt;}
.wa0_c00003{width:733.120000pt;}
.w9f_c00003{width:735.680000pt;}
.wa1_c00003{width:743.040000pt;}
.wdd_c00003{width:744.960000pt;}
.wdc_c00003{width:747.680000pt;}
.w172_c00003{width:752.800000pt;}
.wde_c00003{width:755.040000pt;}
.w146_c00003{width:758.080000pt;}
.w179_c00003{width:759.680000pt;}
.w145_c00003{width:760.960000pt;}
.w9d_c00003{width:764.000000pt;}
.w147_c00003{width:768.320000pt;}
.wa4_c00003{width:772.160000pt;}
.wda_c00003{width:777.920000pt;}
.we1_c00003{width:786.560000pt;}
.w143_c00003{width:791.200000pt;}
.w0_c00003{width:793.333067pt;}
.w79_c00003{width:793.333200pt;}
.w1_c00003{width:793.333333pt;}
.w83_c00003{width:793.759733pt;}
.w77_c00003{width:793.759867pt;}
.w78_c00003{width:794.000000pt;}
.w14a_c00003{width:798.880000pt;}
.w84_c00003{width:1122.666400pt;}
.w2a0_c00003{width:1122.666533pt;}
.w85_c00003{width:1122.666667pt;}
.w27e_c00003{width:1587.333333pt;}
.w27d_c00003{width:1587.359867pt;}
.w3b_c00003{width:1587.999733pt;}
.w2a1_c00003{width:1587.999867pt;}
.w3c_c00003{width:1588.000000pt;}
.x63_c00003{left:-17.279600pt;}
.x0_c00003{left:0.000000pt;}
.x2e7_c00003{left:1.120000pt;}
.x2de_c00003{left:2.882667pt;}
.x2e0_c00003{left:5.281333pt;}
.x2d1_c00003{left:6.601333pt;}
.x2ca_c00003{left:8.192800pt;}
.x30b_c00003{left:9.506267pt;}
.x2df_c00003{left:10.402667pt;}
.x2cc_c00003{left:11.360000pt;}
.x2cd_c00003{left:12.320000pt;}
.x2d3_c00003{left:13.280000pt;}
.x2ea_c00003{left:14.558667pt;}
.x2d0_c00003{left:15.561333pt;}
.x2e8_c00003{left:16.802667pt;}
.x2e6_c00003{left:17.946667pt;}
.x2cf_c00003{left:19.841333pt;}
.x2e9_c00003{left:21.280000pt;}
.x2e5_c00003{left:22.586667pt;}
.x197_c00003{left:23.987467pt;}
.x2e3_c00003{left:25.146667pt;}
.x169_c00003{left:26.867733pt;}
.x320_c00003{left:27.994133pt;}
.x2d7_c00003{left:29.000000pt;}
.x2e4_c00003{left:30.586667pt;}
.x2d8_c00003{left:31.560000pt;}
.x2d9_c00003{left:33.000000pt;}
.x2cb_c00003{left:34.600000pt;}
.x2d6_c00003{left:36.360000pt;}
.x2d5_c00003{left:37.626667pt;}
.x2e2_c00003{left:39.202667pt;}
.x2e1_c00003{left:40.506667pt;}
.x2d4_c00003{left:42.280000pt;}
.x2db_c00003{left:44.521333pt;}
.x2eb_c00003{left:45.600000pt;}
.x191_c00003{left:47.667733pt;}
.x2da_c00003{left:49.161333pt;}
.x316_c00003{left:50.106800pt;}
.xa3_c00003{left:50.997333pt;}
.x318_c00003{left:52.161333pt;}
.x307_c00003{left:53.535177pt;}
.xa0_c00003{left:54.993200pt;}
.x9e_c00003{left:55.955733pt;}
.x311_c00003{left:56.865720pt;}
.x9f_c00003{left:58.033336pt;}
.x315_c00003{left:59.040000pt;}
.x308_c00003{left:59.935177pt;}
.xa4_c00003{left:62.028667pt;}
.x31f_c00003{left:63.360000pt;}
.xa1_c00003{left:64.266133pt;}
.x317_c00003{left:65.761333pt;}
.x36_c00003{left:67.957333pt;}
.xfb_c00003{left:68.947333pt;}
.x2_c00003{left:70.400000pt;}
.x1_c00003{left:71.519733pt;}
.x9b_c00003{left:72.898956pt;}
.x1b_c00003{left:75.040133pt;}
.x99_c00003{left:76.096400pt;}
.xa5_c00003{left:77.694800pt;}
.xd_c00003{left:79.040133pt;}
.x28c_c00003{left:80.307333pt;}
.x3_c00003{left:81.280267pt;}
.x31c_c00003{left:82.238667pt;}
.x60_c00003{left:83.317200pt;}
.x2f4_c00003{left:84.799539pt;}
.xa_c00003{left:86.240133pt;}
.x1a_c00003{left:88.000000pt;}
.x241_c00003{left:88.948933pt;}
.x62_c00003{left:90.517200pt;}
.x2c9_c00003{left:92.159867pt;}
.x2b_c00003{left:93.600000pt;}
.x2f_c00003{left:95.359867pt;}
.x6_c00003{left:97.119733pt;}
.x29_c00003{left:98.240133pt;}
.x279_c00003{left:99.187467pt;}
.x34_c00003{left:100.800000pt;}
.x8_c00003{left:101.759867pt;}
.xf_c00003{left:102.880267pt;}
.x9_c00003{left:103.840133pt;}
.x31b_c00003{left:104.800000pt;}
.x305_c00003{left:106.592667pt;}
.x32_c00003{left:107.680267pt;}
.x244_c00003{left:109.589067pt;}
.x2f8_c00003{left:110.559867pt;}
.x14_c00003{left:111.520107pt;}
.x1c_c00003{left:112.480267pt;}
.x22a_c00003{left:113.428667pt;}
.x13_c00003{left:115.199793pt;}
.x30f_c00003{left:116.346800pt;}
.x29a_c00003{left:117.267733pt;}
.x2ec_c00003{left:118.240133pt;}
.x1f_c00003{left:119.200000pt;}
.x2ee_c00003{left:120.480267pt;}
.x28e_c00003{left:122.227600pt;}
.x243_c00003{left:123.508800pt;}
.x293_c00003{left:124.467733pt;}
.x256_c00003{left:126.389067pt;}
.x287_c00003{left:127.987467pt;}
.x229_c00003{left:129.748933pt;}
.x285_c00003{left:131.027600pt;}
.x306_c00003{left:132.352667pt;}
.x2f2_c00003{left:134.080000pt;}
.x289_c00003{left:136.148000pt;}
.x16a_c00003{left:138.068000pt;}
.x177_c00003{left:139.188000pt;}
.xa7_c00003{left:141.146667pt;}
.x3d_c00003{left:143.957333pt;}
.x8b_c00003{left:145.077333pt;}
.x8c_c00003{left:146.037333pt;}
.x6f_c00003{left:147.157333pt;}
.x27e_c00003{left:148.148000pt;}
.x292_c00003{left:150.388000pt;}
.x217_c00003{left:155.028000pt;}
.x5_c00003{left:156.320000pt;}
.x27b_c00003{left:158.068000pt;}
.x242_c00003{left:159.029333pt;}
.x200_c00003{left:159.988000pt;}
.x2ed_c00003{left:161.280000pt;}
.x2f3_c00003{left:162.400000pt;}
.x252_c00003{left:163.349333pt;}
.x2c8_c00003{left:164.800000pt;}
.x294_c00003{left:166.068000pt;}
.x321_c00003{left:167.187451pt;}
.x226_c00003{left:169.109333pt;}
.x26_c00003{left:170.240000pt;}
.xbe_c00003{left:172.790667pt;}
.x30_c00003{left:175.040000pt;}
.x10_c00003{left:176.480000pt;}
.x20a_c00003{left:177.428000pt;}
.x2d2_c00003{left:179.546667pt;}
.x2a_c00003{left:180.800000pt;}
.x33_c00003{left:182.720000pt;}
.x12_c00003{left:183.680000pt;}
.x3a_c00003{left:185.237333pt;}
.x109_c00003{left:186.870667pt;}
.x10a_c00003{left:188.628000pt;}
.x7_c00003{left:190.720000pt;}
.x4_c00003{left:192.800000pt;}
.xb_c00003{left:194.400000pt;}
.x2ab_c00003{left:195.828000pt;}
.x322_c00003{left:197.146667pt;}
.x2fb_c00003{left:198.400000pt;}
.x5e_c00003{left:199.477333pt;}
.x27_c00003{left:200.480000pt;}
.x4f_c00003{left:201.877333pt;}
.x28_c00003{left:203.520000pt;}
.x8f_c00003{left:204.437333pt;}
.x271_c00003{left:205.589333pt;}
.x3e_c00003{left:206.837333pt;}
.x26a_c00003{left:208.469333pt;}
.x16c_c00003{left:209.429788pt;}
.x272_c00003{left:210.389333pt;}
.x96_c00003{left:211.866667pt;}
.x250_c00003{left:212.790667pt;}
.x16_c00003{left:214.400000pt;}
.x20_c00003{left:215.360000pt;}
.x26b_c00003{left:216.629333pt;}
.x2fa_c00003{left:217.600000pt;}
.x277_c00003{left:218.586667pt;}
.x187_c00003{left:220.628000pt;}
.x23_c00003{left:222.080000pt;}
.x16b_c00003{left:223.189642pt;}
.x178_c00003{left:224.306667pt;}
.x22_c00003{left:225.920000pt;}
.x2fc_c00003{left:227.040000pt;}
.x17_c00003{left:228.000000pt;}
.x18a_c00003{left:229.906667pt;}
.x19a_c00003{left:230.868000pt;}
.x10e_c00003{left:232.788000pt;}
.x2dc_c00003{left:234.266667pt;}
.x19_c00003{left:235.200000pt;}
.x2c5_c00003{left:236.950667pt;}
.xac_c00003{left:238.067600pt;}
.x2f1_c00003{left:239.040000pt;}
.x117_c00003{left:239.987376pt;}
.x2ac_c00003{left:241.268000pt;}
.xab_c00003{left:242.227449pt;}
.x21c_c00003{left:243.828000pt;}
.x1b4_c00003{left:244.790667pt;}
.x21b_c00003{left:245.748266pt;}
.xe_c00003{left:247.040000pt;}
.x19d_c00003{left:248.309147pt;}
.x64_c00003{left:249.237333pt;}
.x1e6_c00003{left:251.029745pt;}
.x19e_c00003{left:252.149255pt;}
.x11d_c00003{left:253.910667pt;}
.x20b_c00003{left:254.870667pt;}
.x70_c00003{left:256.117333pt;}
.x208_c00003{left:257.429332pt;}
.x11_c00003{left:258.720000pt;}
.xcd_c00003{left:259.668000pt;}
.x31_c00003{left:260.960000pt;}
.x9a_c00003{left:261.861919pt;}
.xf6_c00003{left:263.188000pt;}
.x15c_c00003{left:264.787450pt;}
.x2e_c00003{left:266.400000pt;}
.xe5_c00003{left:268.148713pt;}
.x2d_c00003{left:269.280000pt;}
.xfd_c00003{left:271.028000pt;}
.x58_c00003{left:272.437333pt;}
.x35_c00003{left:273.920000pt;}
.x1be_c00003{left:275.506667pt;}
.xc7_c00003{left:276.468000pt;}
.x50_c00003{left:277.397333pt;}
.x207_c00003{left:278.388000pt;}
.x2c_c00003{left:279.360000pt;}
.x1c3_c00003{left:280.948000pt;}
.x3f_c00003{left:282.357333pt;}
.x1ea_c00003{left:283.830667pt;}
.x1de_c00003{left:285.268000pt;}
.x1fb_c00003{left:286.706667pt;}
.x22b_c00003{left:287.669546pt;}
.x1e3_c00003{left:289.748000pt;}
.x205_c00003{left:291.348000pt;}
.x16f_c00003{left:292.309570pt;}
.x1d_c00003{left:293.440000pt;}
.x22f_c00003{left:294.869333pt;}
.x269_c00003{left:295.830667pt;}
.x16d_c00003{left:296.949648pt;}
.x26d_c00003{left:298.228000pt;}
.x304_c00003{left:300.000000pt;}
.x24b_c00003{left:301.110151pt;}
.x22e_c00003{left:302.069333pt;}
.x188_c00003{left:303.506667pt;}
.x2f6_c00003{left:304.800000pt;}
.x16e_c00003{left:306.069957pt;}
.x179_c00003{left:307.028000pt;}
.x24f_c00003{left:308.309333pt;}
.x18_c00003{left:310.240000pt;}
.x184_c00003{left:311.668000pt;}
.x59_c00003{left:312.757333pt;}
.x2fe_c00003{left:313.760000pt;}
.x24_c00003{left:314.880000pt;}
.x19b_c00003{left:316.306667pt;}
.x40_c00003{left:317.717333pt;}
.x20c_c00003{left:319.509049pt;}
.x23a_c00003{left:321.269333pt;}
.x220_c00003{left:322.229333pt;}
.x23b_c00003{left:323.186667pt;}
.x19f_c00003{left:324.630479pt;}
.x9c_c00003{left:325.809092pt;}
.x9d_c00003{left:327.564000pt;}
.x2dd_c00003{left:328.866667pt;}
.x165_c00003{left:330.232479pt;}
.x2ce_c00003{left:331.266667pt;}
.x232_c00003{left:332.306667pt;}
.x110_c00003{left:333.266667pt;}
.xaf_c00003{left:334.547736pt;}
.x302_c00003{left:336.000000pt;}
.xb0_c00003{left:337.267519pt;}
.x211_c00003{left:338.706667pt;}
.x111_c00003{left:340.469469pt;}
.x142_c00003{left:341.426667pt;}
.xa8_c00003{left:343.108000pt;}
.x301_c00003{left:344.000000pt;}
.x12e_c00003{left:344.948000pt;}
.x29e_c00003{left:345.906667pt;}
.x219_c00003{left:347.506667pt;}
.x11e_c00003{left:348.472083pt;}
.x13f_c00003{left:349.426667pt;}
.x14c_c00003{left:350.386667pt;}
.x15e_c00003{left:351.348000pt;}
.xad_c00003{left:352.627464pt;}
.xb1_c00003{left:354.387826pt;}
.x22c_c00003{left:355.349333pt;}
.x10f_c00003{left:356.472019pt;}
.x1e7_c00003{left:357.426667pt;}
.x155_c00003{left:358.866667pt;}
.x25_c00003{left:360.320000pt;}
.x29b_c00003{left:361.266667pt;}
.x2f5_c00003{left:362.560000pt;}
.xf7_c00003{left:363.666667pt;}
.x1b5_c00003{left:365.109229pt;}
.xd7_c00003{left:367.026667pt;}
.xe6_c00003{left:368.628883pt;}
.xec_c00003{left:369.586667pt;}
.xfe_c00003{left:371.506667pt;}
.xbf_c00003{left:372.466667pt;}
.x10b_c00003{left:373.586667pt;}
.x1c6_c00003{left:374.548000pt;}
.x98_c00003{left:376.006667pt;}
.xae_c00003{left:377.429013pt;}
.x270_c00003{left:378.389333pt;}
.xa6_c00003{left:379.524000pt;}
.x310_c00003{left:380.414280pt;}
.x95_c00003{left:381.506667pt;}
.xa2_c00003{left:382.561333pt;}
.x198_c00003{left:383.506667pt;}
.x1ee_c00003{left:384.786667pt;}
.x5a_c00003{left:385.718667pt;}
.x1e4_c00003{left:387.506667pt;}
.x206_c00003{left:389.426667pt;}
.x51_c00003{left:390.678667pt;}
.x18e_c00003{left:391.666667pt;}
.x193_c00003{left:393.591278pt;}
.x221_c00003{left:394.706667pt;}
.x41_c00003{left:395.638667pt;}
.x97_c00003{left:396.866667pt;}
.x24c_c00003{left:398.070101pt;}
.x20f_c00003{left:399.026667pt;}
.x18c_c00003{left:400.786667pt;}
.x17a_c00003{left:401.906667pt;}
.x2ef_c00003{left:403.040000pt;}
.x20e_c00003{left:404.150667pt;}
.x233_c00003{left:405.266667pt;}
.x21e_c00003{left:406.548000pt;}
.x309_c00003{left:407.453360pt;}
.x21d_c00003{left:408.468221pt;}
.x1b2_c00003{left:409.429333pt;}
.x2a6_c00003{left:410.706667pt;}
.x166_c00003{left:411.671446pt;}
.x1e_c00003{left:412.960000pt;}
.x20d_c00003{left:414.388206pt;}
.x275_c00003{left:415.348000pt;}
.x11f_c00003{left:416.632512pt;}
.x21_c00003{left:418.400000pt;}
.x281_c00003{left:420.150667pt;}
.x213_c00003{left:421.586667pt;}
.x143_c00003{left:422.706667pt;}
.x215_c00003{left:424.306667pt;}
.x120_c00003{left:425.272621pt;}
.x12f_c00003{left:426.226667pt;}
.x218_c00003{left:427.986667pt;}
.x121_c00003{left:429.752306pt;}
.x140_c00003{left:430.706667pt;}
.x14d_c00003{left:431.826667pt;}
.x15f_c00003{left:432.786667pt;}
.x113_c00003{left:434.226667pt;}
.x162_c00003{left:435.348000pt;}
.x118_c00003{left:436.310667pt;}
.xb4_c00003{left:437.748758pt;}
.x30a_c00003{left:438.720400pt;}
.x114_c00003{left:439.669469pt;}
.x209_c00003{left:440.949079pt;}
.x5b_c00003{left:442.358667pt;}
.x24d_c00003{left:443.670067pt;}
.x283_c00003{left:445.106667pt;}
.x231_c00003{left:446.070667pt;}
.x52_c00003{left:447.318667pt;}
.x19c_c00003{left:448.469333pt;}
.x173_c00003{left:449.750667pt;}
.x27f_c00003{left:451.348000pt;}
.x42_c00003{left:452.278667pt;}
.x23c_c00003{left:453.748000pt;}
.x2ff_c00003{left:454.720000pt;}
.x112_c00003{left:455.669419pt;}
.x1e9_c00003{left:456.626667pt;}
.x199_c00003{left:458.386667pt;}
.xce_c00003{left:459.348000pt;}
.x170_c00003{left:460.948000pt;}
.xb2_c00003{left:461.908645pt;}
.x1e8_c00003{left:463.349291pt;}
.x2f9_c00003{left:464.480000pt;}
.x43_c00003{left:465.558667pt;}
.x18f_c00003{left:466.548000pt;}
.xe7_c00003{left:467.829337pt;}
.x103_c00003{left:469.266667pt;}
.xff_c00003{left:470.706667pt;}
.xc0_c00003{left:471.666667pt;}
.x116_c00003{left:472.626667pt;}
.x1b9_c00003{left:474.226667pt;}
.x18d_c00003{left:475.666667pt;}
.xb3_c00003{left:476.628932pt;}
.x1db_c00003{left:478.226667pt;}
.x1cf_c00003{left:479.666667pt;}
.x1df_c00003{left:480.786667pt;}
.x2a2_c00003{left:481.748000pt;}
.x1b3_c00003{left:482.709333pt;}
.x1a2_c00003{left:483.990667pt;}
.x2a0_c00003{left:485.106667pt;}
.x71_c00003{left:486.358667pt;}
.x1f4_c00003{left:487.666667pt;}
.x1f3_c00003{left:488.786667pt;}
.x1fc_c00003{left:489.748000pt;}
.x30e_c00003{left:490.946400pt;}
.x2fd_c00003{left:491.840000pt;}
.x167_c00003{left:492.950663pt;}
.x1a0_c00003{left:494.548000pt;}
.x30c_c00003{left:495.706520pt;}
.x21a_c00003{left:496.626667pt;}
.x122_c00003{left:498.072026pt;}
.x124_c00003{left:499.512140pt;}
.x174_c00003{left:500.786667pt;}
.x1ac_c00003{left:502.386667pt;}
.x144_c00003{left:504.148000pt;}
.x168_c00003{left:505.750667pt;}
.x123_c00003{left:506.712135pt;}
.x130_c00003{left:507.666667pt;}
.x192_c00003{left:509.267604pt;}
.x2b0_c00003{left:510.226667pt;}
.x125_c00003{left:511.191820pt;}
.x14a_c00003{left:512.148000pt;}
.x14e_c00003{left:513.106667pt;}
.x160_c00003{left:514.066667pt;}
.x11c_c00003{left:515.830667pt;}
.xa9_c00003{left:516.789333pt;}
.xaa_c00003{left:518.709644pt;}
.x21f_c00003{left:520.469434pt;}
.x246_c00003{left:521.429333pt;}
.x29c_c00003{left:522.548000pt;}
.x28d_c00003{left:523.506667pt;}
.x175_c00003{left:524.629333pt;}
.x2b7_c00003{left:525.586667pt;}
.x23d_c00003{left:526.709440pt;}
.x247_c00003{left:527.669333pt;}
.x2a3_c00003{left:528.786667pt;}
.x119_c00003{left:530.548000pt;}
.x280_c00003{left:531.506667pt;}
.x274_c00003{left:532.469333pt;}
.x11a_c00003{left:534.070667pt;}
.xb8_c00003{left:535.828907pt;}
.x115_c00003{left:537.269463pt;}
.x2a8_c00003{left:538.706667pt;}
.xb5_c00003{left:539.668994pt;}
.x90_c00003{left:540.598667pt;}
.x72_c00003{left:541.558667pt;}
.x8a_c00003{left:542.998667pt;}
.x171_c00003{left:544.789333pt;}
.x2f0_c00003{left:546.080000pt;}
.x185_c00003{left:547.026667pt;}
.x1d0_c00003{left:548.466667pt;}
.x2a9_c00003{left:549.426667pt;}
.xb9_c00003{left:551.188853pt;}
.x2b6_c00003{left:552.148000pt;}
.x44_c00003{left:553.238667pt;}
.xfc_c00003{left:555.029073pt;}
.x300_c00003{left:556.160000pt;}
.xcf_c00003{left:557.106667pt;}
.x53_c00003{left:558.198667pt;}
.xb6_c00003{left:559.508550pt;}
.xf8_c00003{left:560.466667pt;}
.x11b_c00003{left:561.586667pt;}
.x282_c00003{left:562.706667pt;}
.xd8_c00003{left:563.986667pt;}
.xe8_c00003{left:565.589190pt;}
.x104_c00003{left:567.026667pt;}
.x100_c00003{left:568.466667pt;}
.xca_c00003{left:569.426667pt;}
.xd4_c00003{left:570.386667pt;}
.x164_c00003{left:572.309333pt;}
.x23e_c00003{left:573.269287pt;}
.xb7_c00003{left:574.228837pt;}
.x176_c00003{left:575.666667pt;}
.x1a1_c00003{left:576.789333pt;}
.x216_c00003{left:577.906667pt;}
.x1aa_c00003{left:579.186667pt;}
.x1f7_c00003{left:580.306667pt;}
.x15d_c00003{left:581.906667pt;}
.x1a5_c00003{left:583.666667pt;}
.x295_c00003{left:584.786667pt;}
.x1ff_c00003{left:585.906667pt;}
.x1ef_c00003{left:587.026667pt;}
.x163_c00003{left:588.948000pt;}
.x151_c00003{left:589.906667pt;}
.x2a1_c00003{left:591.026667pt;}
.x73_c00003{left:592.278667pt;}
.x145_c00003{left:593.426667pt;}
.x2c2_c00003{left:594.548000pt;}
.x139_c00003{left:595.506667pt;}
.x94_c00003{left:597.238667pt;}
.x14f_c00003{left:599.026667pt;}
.x131_c00003{left:599.986667pt;}
.x210_c00003{left:601.748000pt;}
.x30d_c00003{left:602.786387pt;}
.x25e_c00003{left:603.990667pt;}
.x249_c00003{left:605.910667pt;}
.x1a3_c00003{left:607.186667pt;}
.x194_c00003{left:608.632895pt;}
.x45_c00003{left:609.878667pt;}
.x1eb_c00003{left:611.186667pt;}
.x1d4_c00003{left:612.150667pt;}
.x1b6_c00003{left:613.429333pt;}
.x54_c00003{left:614.838667pt;}
.x257_c00003{left:616.469291pt;}
.x181_c00003{left:618.226667pt;}
.x18b_c00003{left:619.826667pt;}
.x28a_c00003{left:620.786667pt;}
.x186_c00003{left:621.906667pt;}
.x128_c00003{left:623.506667pt;}
.x189_c00003{left:625.426667pt;}
.x17b_c00003{left:626.548000pt;}
.x262_c00003{left:627.509333pt;}
.x1d3_c00003{left:628.786667pt;}
.x17e_c00003{left:630.548000pt;}
.x1c4_c00003{left:631.826667pt;}
.x1c1_c00003{left:633.266667pt;}
.x180_c00003{left:634.226667pt;}
.x65_c00003{left:635.476812pt;}
.x172_c00003{left:636.950667pt;}
.x101_c00003{left:638.706667pt;}
.x195_c00003{left:640.469333pt;}
.x1dc_c00003{left:641.748000pt;}
.x276_c00003{left:642.869333pt;}
.x1d9_c00003{left:643.826667pt;}
.x10c_c00003{left:645.586667pt;}
.xef_c00003{left:646.548000pt;}
.x2b3_c00003{left:647.666667pt;}
.x105_c00003{left:648.626667pt;}
.xd0_c00003{left:650.066667pt;}
.x15_c00003{left:651.506667pt;}
.x1ab_c00003{left:652.466667pt;}
.x1f9_c00003{left:653.586667pt;}
.x303_c00003{left:654.560000pt;}
.xed_c00003{left:655.506667pt;}
.xd9_c00003{left:656.466667pt;}
.xc_c00003{left:658.080000pt;}
.x2ae_c00003{left:659.348000pt;}
.x1a7_c00003{left:660.948000pt;}
.x1f0_c00003{left:661.906667pt;}
.x91_c00003{left:662.998667pt;}
.x7c_c00003{left:663.958667pt;}
.x74_c00003{left:665.558667pt;}
.x146_c00003{left:666.706667pt;}
.x2a4_c00003{left:667.826667pt;}
.x13a_c00003{left:668.786667pt;}
.x1ae_c00003{left:670.550667pt;}
.x150_c00003{left:672.306667pt;}
.x132_c00003{left:673.266667pt;}
.x29f_c00003{left:675.026667pt;}
.x26c_c00003{left:675.990667pt;}
.x2c6_c00003{left:677.426667pt;}
.x222_c00003{left:678.389333pt;}
.xde_c00003{left:679.666667pt;}
.x196_c00003{left:681.589331pt;}
.x258_c00003{left:683.669333pt;}
.x2c0_c00003{left:685.426667pt;}
.x1b7_c00003{left:686.710667pt;}
.x22d_c00003{left:688.470867pt;}
.x46_c00003{left:689.878667pt;}
.x182_c00003{left:693.106667pt;}
.x55_c00003{left:694.838667pt;}
.xdf_c00003{left:695.829333pt;}
.x129_c00003{left:696.786667pt;}
.x223_c00003{left:698.549270pt;}
.x17c_c00003{left:700.306667pt;}
.x1d1_c00003{left:701.586667pt;}
.x1c8_c00003{left:703.026667pt;}
.xba_c00003{left:704.466667pt;}
.x17f_c00003{left:705.426667pt;}
.x1c7_c00003{left:706.548000pt;}
.x259_c00003{left:707.669333pt;}
.x1c0_c00003{left:708.626667pt;}
.x1e5_c00003{left:710.066667pt;}
.x10d_c00003{left:711.026667pt;}
.xf0_c00003{left:711.986667pt;}
.x1ba_c00003{left:713.106667pt;}
.xd5_c00003{left:714.066667pt;}
.x66_c00003{left:715.478667pt;}
.xc1_c00003{left:717.426667pt;}
.x2f7_c00003{left:718.560000pt;}
.x1ad_c00003{left:719.826667pt;}
.xee_c00003{left:720.948000pt;}
.xda_c00003{left:721.906667pt;}
.x1a4_c00003{left:723.669333pt;}
.x2aa_c00003{left:724.786667pt;}
.x1a9_c00003{left:725.750667pt;}
.x24a_c00003{left:726.872000pt;}
.x2b8_c00003{left:727.826667pt;}
.x1a6_c00003{left:729.266667pt;}
.x2b4_c00003{left:730.226667pt;}
.x214_c00003{left:731.186667pt;}
.x1f5_c00003{left:732.148000pt;}
.x23f_c00003{left:733.109333pt;}
.x1a8_c00003{left:734.226667pt;}
.x7d_c00003{left:735.158667pt;}
.x75_c00003{left:736.758667pt;}
.x13b_c00003{left:738.548000pt;}
.x126_c00003{left:739.669333pt;}
.x141_c00003{left:742.066667pt;}
.x2c3_c00003{left:743.986667pt;}
.xe0_c00003{left:745.106667pt;}
.x133_c00003{left:746.548000pt;}
.x224_c00003{left:747.990664pt;}
.x230_c00003{left:748.948000pt;}
.xfa_c00003{left:749.910300pt;}
.x234_c00003{left:751.350667pt;}
.x47_c00003{left:752.278667pt;}
.x69_c00003{left:754.357333pt;}
.x2a5_c00003{left:755.826667pt;}
.x56_c00003{left:757.238667pt;}
.x227_c00003{left:758.548000pt;}
.x1b8_c00003{left:759.990667pt;}
.xe1_c00003{left:761.269333pt;}
.x273_c00003{left:762.386667pt;}
.x225_c00003{left:763.350667pt;}
.x237_c00003{left:764.309333pt;}
.x240_c00003{left:765.269333pt;}
.x248_c00003{left:766.230667pt;}
.x25a_c00003{left:767.669333pt;}
.x1cb_c00003{left:768.952780pt;}
.x12a_c00003{left:770.066667pt;}
.x255_c00003{left:771.029333pt;}
.x253_c00003{left:772.466667pt;}
.x25b_c00003{left:773.910667pt;}
.x1d2_c00003{left:774.866667pt;}
.x106_c00003{left:775.986667pt;}
.xf1_c00003{left:777.426667pt;}
.x1af_c00003{left:778.710455pt;}
.xbb_c00003{left:779.669333pt;}
.x265_c00003{left:780.629333pt;}
.x6a_c00003{left:781.717333pt;}
.xc8_c00003{left:782.866667pt;}
.x1ec_c00003{left:784.469333pt;}
.x1c2_c00003{left:785.426667pt;}
.xd1_c00003{left:786.386667pt;}
.xdb_c00003{left:787.348000pt;}
.x67_c00003{left:789.077293pt;}
.x68_c00003{left:790.197606pt;}
.x25f_c00003{left:791.190667pt;}
.x212_c00003{left:792.466667pt;}
.x12b_c00003{left:793.429333pt;}
.x1d5_c00003{left:794.866667pt;}
.x183_c00003{left:796.148000pt;}
.x190_c00003{left:797.266667pt;}
.x1b0_c00003{left:798.712000pt;}
.x17d_c00003{left:799.666667pt;}
.x235_c00003{left:800.790667pt;}
.x157_c00003{left:802.397161pt;}
.x92_c00003{left:803.958667pt;}
.x1fd_c00003{left:804.948000pt;}
.x85_c00003{left:805.878667pt;}
.x1f6_c00003{left:807.026667pt;}
.x161_c00003{left:808.306667pt;}
.x6b_c00003{left:809.557333pt;}
.x7e_c00003{left:810.838667pt;}
.x13c_c00003{left:811.826667pt;}
.x152_c00003{left:812.948000pt;}
.x76_c00003{left:813.878667pt;}
.x6c_c00003{left:814.997333pt;}
.x29d_c00003{left:816.306667pt;}
.x147_c00003{left:818.866667pt;}
.x134_c00003{left:819.826667pt;}
.x1f8_c00003{left:821.426667pt;}
.x6d_c00003{left:822.517333pt;}
.x136_c00003{left:823.826667pt;}
.x201_c00003{left:825.590667pt;}
.xe2_c00003{left:826.712000pt;}
.x2a7_c00003{left:827.669333pt;}
.x149_c00003{left:829.266667pt;}
.x127_c00003{left:830.230667pt;}
.x251_c00003{left:831.990667pt;}
.x158_c00003{left:833.430667pt;}
.x6e_c00003{left:834.517333pt;}
.xe9_c00003{left:835.670419pt;}
.x102_c00003{left:836.948000pt;}
.x1cc_c00003{left:840.310455pt;}
.x107_c00003{left:841.426667pt;}
.x12c_c00003{left:843.348000pt;}
.xc2_c00003{left:844.948000pt;}
.xf2_c00003{left:845.906667pt;}
.x260_c00003{left:847.350579pt;}
.xc9_c00003{left:848.306667pt;}
.x1c9_c00003{left:849.266667pt;}
.x263_c00003{left:850.706667pt;}
.xd2_c00003{left:851.826667pt;}
.xdc_c00003{left:852.786667pt;}
.x1bd_c00003{left:855.190667pt;}
.xc5_c00003{left:856.626667pt;}
.x1e0_c00003{left:857.748000pt;}
.x1bb_c00003{left:858.706667pt;}
.xbc_c00003{left:860.148000pt;}
.xcb_c00003{left:862.066667pt;}
.x108_c00003{left:863.506667pt;}
.x228_c00003{left:864.629333pt;}
.x239_c00003{left:865.590667pt;}
.x1d6_c00003{left:867.186667pt;}
.x25c_c00003{left:868.466667pt;}
.x290_c00003{left:869.748000pt;}
.x245_c00003{left:870.869162pt;}
.x1d8_c00003{left:872.148000pt;}
.x159_c00003{left:873.749642pt;}
.xe3_c00003{left:875.986667pt;}
.x2bb_c00003{left:877.106667pt;}
.x1f2_c00003{left:878.226667pt;}
.x1ed_c00003{left:879.830667pt;}
.x2c7_c00003{left:881.586667pt;}
.x153_c00003{left:882.706667pt;}
.x1e2_c00003{left:883.669333pt;}
.x13d_c00003{left:885.106667pt;}
.x12d_c00003{left:886.552000pt;}
.x278_c00003{left:887.509333pt;}
.x138_c00003{left:888.629333pt;}
.x1f1_c00003{left:890.548000pt;}
.x3b_c00003{left:891.958667pt;}
.x266_c00003{left:893.910347pt;}
.x2bc_c00003{left:894.866667pt;}
.x137_c00003{left:897.106667pt;}
.xea_c00003{left:898.070466pt;}
.x261_c00003{left:900.150615pt;}
.x1fe_c00003{left:901.266667pt;}
.x202_c00003{left:902.552000pt;}
.x264_c00003{left:903.506667pt;}
.x2ad_c00003{left:904.626667pt;}
.xf3_c00003{left:906.866667pt;}
.x1cd_c00003{left:908.149642pt;}
.xc3_c00003{left:909.266667pt;}
.xcc_c00003{left:910.712000pt;}
.xbd_c00003{left:912.790667pt;}
.x2b1_c00003{left:914.066667pt;}
.xc6_c00003{left:916.150667pt;}
.x238_c00003{left:917.906667pt;}
.x1c5_c00003{left:919.348000pt;}
.xe4_c00003{left:921.106667pt;}
.x24e_c00003{left:923.190636pt;}
.x1bf_c00003{left:924.948000pt;}
.x1ca_c00003{left:926.066667pt;}
.x57_c00003{left:927.158667pt;}
.x1bc_c00003{left:928.466667pt;}
.x28b_c00003{left:929.586667pt;}
.xf5_c00003{left:931.348000pt;}
.x1da_c00003{left:933.426667pt;}
.x1e1_c00003{left:934.548000pt;}
.x203_c00003{left:935.830151pt;}
.x1d7_c00003{left:936.948000pt;}
.x2af_c00003{left:937.906667pt;}
.x298_c00003{left:939.186667pt;}
.x1dd_c00003{left:940.466667pt;}
.x15a_c00003{left:941.589642pt;}
.x296_c00003{left:942.706667pt;}
.x288_c00003{left:944.626667pt;}
.x1fa_c00003{left:947.506667pt;}
.x267_c00003{left:950.550421pt;}
.x14b_c00003{left:952.786667pt;}
.x1ce_c00003{left:954.072000pt;}
.x2b9_c00003{left:955.026667pt;}
.xeb_c00003{left:955.989641pt;}
.x13e_c00003{left:958.386667pt;}
.x154_c00003{left:959.506667pt;}
.x135_c00003{left:961.906667pt;}
.x236_c00003{left:963.030338pt;}
.x2b2_c00003{left:963.986667pt;}
.x148_c00003{left:965.426667pt;}
.xd6_c00003{left:967.186667pt;}
.x28f_c00003{left:968.948000pt;}
.x25d_c00003{left:971.186667pt;}
.xc4_c00003{left:972.626667pt;}
.xf4_c00003{left:973.748000pt;}
.xdd_c00003{left:976.148000pt;}
.x297_c00003{left:978.386667pt;}
.xd3_c00003{left:979.506667pt;}
.x254_c00003{left:980.786667pt;}
.x204_c00003{left:983.030667pt;}
.x27a_c00003{left:984.950667pt;}
.x2b5_c00003{left:985.906667pt;}
.x15b_c00003{left:987.509333pt;}
.x2be_c00003{left:989.426667pt;}
.x284_c00003{left:992.306667pt;}
.x2bd_c00003{left:994.066667pt;}
.x7f_c00003{left:995.478667pt;}
.x1b1_c00003{left:996.951995pt;}
.x2c4_c00003{left:999.348000pt;}
.x286_c00003{left:1001.748000pt;}
.x291_c00003{left:1004.306667pt;}
.x268_c00003{left:1007.190495pt;}
.x26f_c00003{left:1008.148000pt;}
.x299_c00003{left:1009.106667pt;}
.x27c_c00003{left:1011.026667pt;}
.x26e_c00003{left:1012.950667pt;}
.x2c1_c00003{left:1015.826667pt;}
.x2ba_c00003{left:1016.786667pt;}
.x27d_c00003{left:1018.226667pt;}
.x156_c00003{left:1020.151183pt;}
.xf9_c00003{left:1022.230667pt;}
.x2bf_c00003{left:1024.786667pt;}
.x37_c00003{left:1030.038667pt;}
.x33a_c00003{left:1033.240497pt;}
.x343_c00003{left:1035.638624pt;}
.x32e_c00003{left:1038.998667pt;}
.x8d_c00003{left:1044.438667pt;}
.x77_c00003{left:1046.998667pt;}
.x80_c00003{left:1048.758667pt;}
.x5c_c00003{left:1051.158667pt;}
.x5f_c00003{left:1052.278667pt;}
.x48_c00003{left:1053.398667pt;}
.x32f_c00003{left:1081.398667pt;}
.x78_c00003{left:1093.398667pt;}
.x38_c00003{left:1101.878667pt;}
.x312_c00003{left:1102.973333pt;}
.x8e_c00003{left:1104.438667pt;}
.x49_c00003{left:1108.758667pt;}
.x89_c00003{left:1113.718667pt;}
.x3c_c00003{left:1116.118667pt;}
.x330_c00003{left:1139.478667pt;}
.x79_c00003{left:1152.438667pt;}
.x319_c00003{left:1157.852000pt;}
.x81_c00003{left:1164.118667pt;}
.x4a_c00003{left:1165.398667pt;}
.x88_c00003{left:1166.678667pt;}
.x93_c00003{left:1169.078667pt;}
.x33b_c00003{left:1175.640994pt;}
.x344_c00003{left:1178.038588pt;}
.x31d_c00003{left:1187.452000pt;}
.x33c_c00003{left:1189.080118pt;}
.x345_c00003{left:1191.478645pt;}
.x7a_c00003{left:1214.838667pt;}
.x4b_c00003{left:1222.038667pt;}
.x86_c00003{left:1224.278667pt;}
.x87_c00003{left:1225.238667pt;}
.x82_c00003{left:1226.358667pt;}
.x313_c00003{left:1239.494667pt;}
.x331_c00003{left:1254.998667pt;}
.x7b_c00003{left:1265.078667pt;}
.x83_c00003{left:1276.118667pt;}
.x4c_c00003{left:1278.678667pt;}
.x84_c00003{left:1324.278667pt;}
.x31a_c00003{left:1325.574667pt;}
.x4d_c00003{left:1343.960000pt;}
.x5d_c00003{left:1345.400000pt;}
.x33d_c00003{left:1357.560284pt;}
.x31e_c00003{left:1360.133333pt;}
.x33f_c00003{left:1362.520184pt;}
.x346_c00003{left:1364.920044pt;}
.x334_c00003{left:1369.401678pt;}
.x33e_c00003{left:1370.839972pt;}
.x336_c00003{left:1373.242308pt;}
.x314_c00003{left:1375.973333pt;}
.x335_c00003{left:1379.802201pt;}
.x323_c00003{left:1384.272066pt;}
.x325_c00003{left:1387.793414pt;}
.x332_c00003{left:1390.360000pt;}
.x324_c00003{left:1393.552267pt;}
.x329_c00003{left:1396.920840pt;}
.x32b_c00003{left:1400.759373pt;}
.x32a_c00003{left:1406.839585pt;}
.x337_c00003{left:1416.763163pt;}
.x341_c00003{left:1418.841479pt;}
.x347_c00003{left:1421.240299pt;}
.x340_c00003{left:1424.120131pt;}
.x338_c00003{left:1425.723061pt;}
.x326_c00003{left:1427.792406pt;}
.x327_c00003{left:1445.232476pt;}
.x32c_c00003{left:1453.879195pt;}
.x39_c00003{left:1456.760000pt;}
.x4e_c00003{left:1466.040000pt;}
.x333_c00003{left:1471.000000pt;}
.x61_c00003{left:1475.640000pt;}
.x342_c00003{left:1481.240000pt;}
.x339_c00003{left:1490.200000pt;}
.x32d_c00003{left:1491.480000pt;}
.x328_c00003{left:1493.240000pt;}
}




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